From 4d6650a67c60cd36001ae8cfff87c5f74a5e4e76 Mon Sep 17 00:00:00 2001 From: eliyya Date: Thu, 10 Aug 2023 02:46:02 -0600 Subject: [PATCH 01/88] create embed --- locales/en-US.json | 9 +- locales/es-ES.json | 9 +- locales/ja.json | 9 +- src/cache/autocomplete.ts | 2 +- src/cache/buttons.ts | 22 +- src/cache/commands.ts | 2 +- src/cache/events.ts | 22 +- src/cache/modals.ts | 25 + src/events/client/interactionCreate.ts | 9 +- src/handlers/commands.ts | 77 +- src/slash/autocompletes/embed.ts | 106 ++ .../play/play.ts | 0 src/slash/buttons/embed.ts | 59 + .../Informaci\303\263n y Utilidad/embed.ts" | 294 +--- src/slash/modals/embed.ts | 32 + src/structures/Autocomplete.ts | 11 +- src/structures/Button.ts | 17 +- src/structures/Modal.ts | 30 + src/utils/locales.ts | 1514 +++++++++-------- 19 files changed, 1185 insertions(+), 1064 deletions(-) create mode 100644 src/cache/modals.ts create mode 100644 src/slash/autocompletes/embed.ts rename src/slash/{autocomplete => autocompletes}/play/play.ts (100%) create mode 100644 src/slash/buttons/embed.ts create mode 100644 src/slash/modals/embed.ts create mode 100644 src/structures/Modal.ts diff --git a/locales/en-US.json b/locales/en-US.json index ed9fcf9..998ccea 100644 --- a/locales/en-US.json +++ b/locales/en-US.json @@ -22,7 +22,14 @@ "was": "Was the impostor", "was_not": "Was not the impostor" }, - "embed_successfully": "Embed created and sent successfully.", + "embed": { + "successfully": "Embed created and sent successfully.", + "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "modal": { + "title_label": "Title", + "description_label": "Description" + } + }, "github": { "write_username": "Please write an username.", "name": "🧑 Name:", diff --git a/locales/es-ES.json b/locales/es-ES.json index 414bdd3..0841807 100644 --- a/locales/es-ES.json +++ b/locales/es-ES.json @@ -22,7 +22,14 @@ "was": "¿Fue el impostor", "was_not": "¿No era el impostor" }, - "embed_successfully": "Incrustación creada y enviada correctamente.", + "embed": { + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "modal": { + "title_label": "Título", + "description_label": "Descripción" + } + }, "github": { "write_username": "Por favor, escriba un nombre de usuario.", "name": "🧑 Nombre:", diff --git a/locales/ja.json b/locales/ja.json index 72c63bf..0d1f45d 100644 --- a/locales/ja.json +++ b/locales/ja.json @@ -22,7 +22,14 @@ "was": "詐欺師だったのか?", "was_not": "詐欺師ではなかった" }, - "embed_successfully": "エンベッドが作成され、正常に送信された。", + "embed": { + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", + "modal": { + "title_label": "タイトル", + "description_label": "記述" + } + }, "github": { "write_username": "ユーザー名を書いてください。", "name": "🧑 名前:", diff --git a/src/cache/autocomplete.ts b/src/cache/autocomplete.ts index b27cacb..2a571bf 100644 --- a/src/cache/autocomplete.ts +++ b/src/cache/autocomplete.ts @@ -1,5 +1,5 @@ import { Collection } from 'discord.js' -import Autocomplete from '../structures/Autocomplete' +import Autocomplete from '#structures/Autocomplete.js' class AutocompleteCache { private static instance: AutocompleteCache diff --git a/src/cache/buttons.ts b/src/cache/buttons.ts index c4b5bbb..74532c3 100644 --- a/src/cache/buttons.ts +++ b/src/cache/buttons.ts @@ -1,24 +1,24 @@ import { Collection } from 'discord.js' -import Button from '../structures/Button' +import Button from '#structures/Button.js' -class buttonCache { - private static instance: buttonCache - private cache: Collection +class ButtonCache { + private static instance: ButtonCache + private readonly cache: Collection - private constructor() { + private constructor () { this.cache = new Collection() } - public static getInstance(): buttonCache { - if (!buttonCache.instance) { - buttonCache.instance = new buttonCache() + public static getInstance (): ButtonCache { + if (!ButtonCache.instance) { + ButtonCache.instance = new ButtonCache() } - return buttonCache.instance + return ButtonCache.instance } - public getCache(): Collection { + public getCache (): Collection { return this.cache } } -export default buttonCache.getInstance() +export default ButtonCache.getInstance() diff --git a/src/cache/commands.ts b/src/cache/commands.ts index 0643f83..566d8f6 100644 --- a/src/cache/commands.ts +++ b/src/cache/commands.ts @@ -1,6 +1,6 @@ // commands.ts import { Collection } from 'discord.js' -import Command from '../structures/Command' +import Command from '#structures/Command.js' class CommandCache { private static instance: CommandCache diff --git a/src/cache/events.ts b/src/cache/events.ts index 2ecdcc4..7f96b5d 100644 --- a/src/cache/events.ts +++ b/src/cache/events.ts @@ -1,24 +1,24 @@ // commands.ts import { Collection } from 'discord.js' -import { BaseEvent } from '../structures/Events' -class eventCache { - private static instance: eventCache - private cache: Collection +import { BaseEvent } from '#structures/Events.js' +class EventCache { + private static instance: EventCache + private readonly cache: Collection - private constructor() { + private constructor () { this.cache = new Collection() } - public static getInstance(): eventCache { - if (!eventCache.instance) { - eventCache.instance = new eventCache() + public static getInstance (): EventCache { + if (!EventCache.instance) { + EventCache.instance = new EventCache() } - return eventCache.instance + return EventCache.instance } - public getCache(): Collection { + public getCache (): Collection { return this.cache } } -export default eventCache.getInstance() +export default EventCache.getInstance() diff --git a/src/cache/modals.ts b/src/cache/modals.ts new file mode 100644 index 0000000..ab1cef4 --- /dev/null +++ b/src/cache/modals.ts @@ -0,0 +1,25 @@ +// commands.ts +import { Collection } from 'discord.js' +import Modal from '#structures/Modal.js' + +class ModalCache { + private static instance: ModalCache + private readonly cache: Collection + + private constructor () { + this.cache = new Collection() + } + + public static getInstance (): ModalCache { + if (!ModalCache.instance) { + ModalCache.instance = new ModalCache() + } + return ModalCache.instance + } + + public getCache (): Collection { + return this.cache + } +} + +export default ModalCache.getInstance() diff --git a/src/events/client/interactionCreate.ts b/src/events/client/interactionCreate.ts index 27fc009..4941dee 100644 --- a/src/events/client/interactionCreate.ts +++ b/src/events/client/interactionCreate.ts @@ -1,4 +1,4 @@ -import { AutocompleteInteraction, ButtonInteraction, ChatInputCommandInteraction, Interaction } from 'discord.js' +import { AutocompleteInteraction, ButtonInteraction, ChatInputCommandInteraction, Interaction, ModalSubmitInteraction } from 'discord.js' import autocomplete from '#cache/autocomplete.js' import buttons from '#cache/buttons.js' import commands from '#cache/commands.js' @@ -7,10 +7,10 @@ import { Timer as PerformanceMeter } from '../../handlers/performanceMeter.js' import Client from '#structures/Client.js' import { BaseEvent } from '../../structures/Events.js' import logger from '#utils/logger.js' +import modals from '#cache/modals.js' export class interactionCreate extends BaseEvent { async run (client: Client, interaction: Interaction) { - console.log('interaction recibed') if (process.env.TESTINGGUILD) { if (interaction.guild?.id !== process.env.TESTINGGUILD) return } @@ -23,6 +23,7 @@ export class interactionCreate extends BaseEvent { if (interaction.isChatInputCommand()) return await this.processChatImputCommand(interaction) else if (interaction.isButton()) return await this.processButtonInteraction(interaction) else if (interaction.isAutocomplete()) return await this.processAutocompleteInteraction(interaction) + else if (interaction.isModalSubmit()) return await this.processModalSubmitInteraction(interaction) } async processChatImputCommand (interaction: ChatInputCommandInteraction) { @@ -77,4 +78,8 @@ export class interactionCreate extends BaseEvent { async processAutocompleteInteraction (interaction: AutocompleteInteraction) { autocomplete.getCache().filter(b => b.match(interaction.commandName)).map(async i => await i.run(interaction)) } + + async processModalSubmitInteraction (interaction: ModalSubmitInteraction) { + modals.getCache().filter(b => b.match(interaction.customId)).map(async i => await i.run(interaction)) + } } diff --git a/src/handlers/commands.ts b/src/handlers/commands.ts index 0d8b3f6..432557a 100644 --- a/src/handlers/commands.ts +++ b/src/handlers/commands.ts @@ -1,56 +1,33 @@ -import Autocomplete from '#structures/Autocomplete.js' -import autoCompleteCache from '#cache/autocomplete.js' -import Button from '#structures/Button.js' -import commands from '#cache/commands.js' import { readdir } from 'node:fs/promises' -import buttons from '#cache/buttons.js' +import { Collection } from 'discord.js' import logger from '#utils/logger.js' +import { join } from 'node:path' +// caches +import autocompletes from '#cache/autocomplete.js' +import commands from '#cache/commands.js' +import buttons from '#cache/buttons.js' +import modals from '#cache/modals.js' -// cache commands -for (const dir of await readdir('./build/slash/commands')) { - for (const file of await readdir(`./build/slash/commands/${dir}`)) { - if (file.endsWith('.js')) { - const { default: CommandFile } = await import(`../../build/slash/commands/${dir}/${file}`) - if (typeof CommandFile === 'function') { - try { - const command = new CommandFile() - if (!commands.getCache().has(command.name)) commands.getCache().set(command.name, command) - } catch (e) { - logger.error(CommandFile, e) - } - } - } - } -} -// cache buttons -for (const dir of await readdir('./build/slash/buttons')) { - for (const file of await readdir(`./build/slash/buttons/${dir}`)) { - if (file.endsWith('.js')) { - const { default: ButtonFile } = await import(`../../build/slash/buttons/${dir}/${file}`) - if (typeof ButtonFile === 'function') { - try { - const button = new ButtonFile() as Button - if (!buttons.getCache().has(button.pattern)) buttons.getCache().set(button.pattern, button) - } catch (e) { - logger.error(ButtonFile, e) - } - } - } - } -} -// cache autocomplete -for (const dir of await readdir('./build/slash/autocomplete')) { - for (const file of await readdir(`./build/slash/autocomplete/${dir}`)) { - if (file.endsWith('.js')) { - const { default: AutocompleteFile } = await import(`../../build/slash/autocomplete/${dir}/${file}`) - if (typeof AutocompleteFile === 'function') { - try { - const autocomplete = new AutocompleteFile() as Autocomplete - if (!autoCompleteCache.getCache().has(autocomplete.pattern)) autoCompleteCache.getCache().set(autocomplete.pattern, autocomplete) - } catch (e) { - logger.error(AutocompleteFile, e) - } - } +// load commands +await loadCache(commands.getCache(), join(process.cwd(), 'build', 'slash', 'commands')) +// load buttons +await loadCache(buttons.getCache(), join(process.cwd(), 'build', 'slash', 'buttons')) +// load autocompletes +await loadCache(autocompletes.getCache(), join(process.cwd(), 'build', 'slash', 'autocompletes')) +// load modals +await loadCache(modals.getCache(), join(process.cwd(), 'build', 'slash', 'modals')) + +// generic function to load cache +async function loadCache (cache: Collection, dir: string) { + const files = await readdir(join(dir), { recursive: true, withFileTypes: true }) + for (const file of files.filter(f => f.isFile() && f.name.endsWith('.js'))) { + const { default: File } = await import(join(file.path, file.name)) + if (typeof File !== 'function') continue + try { + const instance = new File() + if (!cache.has(instance.name)) cache.set(instance.name, instance) + } catch (error) { + logger.error(join(file.path, file.name), error) } } } diff --git a/src/slash/autocompletes/embed.ts b/src/slash/autocompletes/embed.ts new file mode 100644 index 0000000..745448c --- /dev/null +++ b/src/slash/autocompletes/embed.ts @@ -0,0 +1,106 @@ +import Autocomplete from '#structures/Autocomplete.js' +import logger from '#utils/logger.js' +import { AutocompleteInteraction, Colors } from 'discord.js' + +export default class Embed extends Autocomplete { + constructor () { + super('embed') + } + + override async run (interaction: AutocompleteInteraction) { + const focused = interaction.options.getFocused()?.trim() + if (!focused) { + return await interaction.respond([ + { name: 'Default', value: `${Colors.Default}` }, + { name: '#000', value: `${Colors.Default}` }, + { name: '#ffffff', value: `${Colors.White}` }, + { name: '0x000000', value: `${Colors.Default}` }, + { name: 'rgb(0, 255, 0)', value: `${Colors.White}` }, + ]).catch(logger.error) + } else if (focused.startsWith('#')) { + if (focused.length > 7) { + return await interaction.respond([ + { name: 'invalid color', value: `${Colors.Default}` }, + ]) + } + if (focused.length < 7 && focused.length > 4) { + return await interaction.respond([ + { name: 'invalid color', value: `${Colors.Default}` }, + ]) + } + if (focused.length === 1) { + return await interaction.respond([ + { name: '#000000', value: `${Colors.Default}` }, + ]) + } + if (/[^A-Fa-f0-9]/.test(focused.slice(1))) { + return await interaction.respond([ + { name: 'invalid color', value: `${Colors.Default}` }, + ]) + } + if (focused.length === 4) { + return await interaction.respond([ + { name: focused + focused.slice(1), value: focused + focused.slice(1) }, + ]) + } + return await interaction.respond([ + { name: focused, value: focused }, + ]) + } else if (focused.startsWith('0x')) { + if (focused.length > 8) { + return await interaction.respond([ + { name: 'invalid color', value: `${Colors.Default}` }, + ]) + } + if (focused.length < 8 && focused.length > 5) { + return await interaction.respond([ + { name: 'invalid color', value: `${Colors.Default}` }, + ]) + } + if (focused.length === 2) { + return await interaction.respond([ + { name: '0x000000', value: `${Colors.Default}` }, + ]) + } + if (/[^A-Fa-f0-9]/.test(focused.slice(2))) { + return await interaction.respond([ + { name: 'invalid color', value: `${Colors.Default}` }, + ]) + } + if (focused.length === 5) { + return await interaction.respond([ + { name: focused + focused.slice(2), value: focused + focused.slice(2) }, + ]) + } + return await interaction.respond([ + { name: focused, value: focused }, + ]) + } else if (focused.startsWith('rgb')) { + const rgb = focused.slice(3).trim().replace(/\(|\)/g, '').split(',').map(n => Number(n.trim())) + if (rgb.length !== 3) { + return await interaction.respond([ + { name: 'invalid color', value: `${Colors.Default}` }, + ]) + } + if (rgb.some(n => isNaN(n))) { + return await interaction.respond([ + { name: 'invalid color', value: `${Colors.Default}` }, + ]) + } + if (rgb.some(n => n < 0 || n > 255)) { + return await interaction.respond([ + { name: 'invalid color', value: `${Colors.Default}` }, + ]) + } + return await interaction.respond([ + { name: focused, value: focused }, + ]) + } else { + const colors = Object.entries(Colors) + const response = colors.filter(([name]) => name.toLowerCase().includes(focused.toLowerCase())) + response.push(...colors.filter(([key]) => response.some(([name]) => name !== key))) + if (response.length > 25) response.length = 25 + return await interaction.respond(response.map(([name, value]) => ({ name, value: `${value}` }))).catch(logger.error) + } + } +} diff --git a/src/slash/autocomplete/play/play.ts b/src/slash/autocompletes/play/play.ts similarity index 100% rename from src/slash/autocomplete/play/play.ts rename to src/slash/autocompletes/play/play.ts diff --git a/src/slash/buttons/embed.ts b/src/slash/buttons/embed.ts new file mode 100644 index 0000000..35aea1b --- /dev/null +++ b/src/slash/buttons/embed.ts @@ -0,0 +1,59 @@ +import Button from '#structures/Button.js' +import Client from '#structures/Client.js' +import Translator, { keys } from '#utils/Translator.js' + +import { ActionRowBuilder, ButtonInteraction, ModalBuilder, TextChannel, TextInputBuilder, TextInputStyle } from 'discord.js' + +export default class Embed extends Button { + constructor () { + super(/embed:(e)|(p):\d*/) + } + + override async run (interaction: ButtonInteraction): Promise { + const [,option] = interaction.customId.split(':') + if (option === 'e') return await this.edit(interaction) + if (option === 'p') return await this.publish(interaction) + } + + async edit (interaction: ButtonInteraction): Promise { + const translate = Translator(interaction) + const { data: embed } = interaction.message.embeds[0] + return await interaction.showModal(new ModalBuilder().setCustomId('embed:edit').setTitle('Embed').setComponents( + new ActionRowBuilder().setComponents( + new TextInputBuilder() + .setCustomId('title') + .setPlaceholder('My Awesome Embed') + .setLabel(translate(keys.embed.modal.title_label)) + .setMaxLength(256) + .setStyle(TextInputStyle.Short) + .setValue(embed.title ?? '') + .setRequired(false), + ), + new ActionRowBuilder().setComponents( + new TextInputBuilder() + .setCustomId('description') + .setPlaceholder('This is my awesome embed!') + .setLabel(translate(keys.embed.modal.description_label)) + .setStyle(TextInputStyle.Paragraph) + .setValue(embed.description ?? '') + .setRequired(false), + ), + )) + } + + async publish (interaction: ButtonInteraction): Promise { + const [,, channelId] = interaction.customId.split(':') + const translate = Translator(interaction) + const client = interaction.client as Client + const { data: embed } = interaction.message.embeds[0] + const channel = await client.channels.fetch(channelId) as TextChannel + channel?.send({ embeds: [embed] }) + .then(async () => await interaction.reply({ content: 'Embed published!', ephemeral: true })) + .catch(async () => await interaction.reply({ + content: translate(keys.GENERICERROR, { + inviteURL: client.officialServerURL, + }), + ephemeral: true, + })) + } +} diff --git "a/src/slash/commands/Informaci\303\263n y Utilidad/embed.ts" "b/src/slash/commands/Informaci\303\263n y Utilidad/embed.ts" index a3fea0c..f1887f6 100644 --- "a/src/slash/commands/Informaci\303\263n y Utilidad/embed.ts" +++ "b/src/slash/commands/Informaci\303\263n y Utilidad/embed.ts" @@ -1,13 +1,18 @@ import { ApplicationCommandOptionType, - ChannelType, ChatInputCommandInteraction, - Colors, - EmbedBuilder, PermissionsBitField, + PermissionFlagsBits, + TextInputBuilder, + ActionRowBuilder, + TextInputStyle, + ModalBuilder, + ChannelType, + GuildMember, } from 'discord.js' -import Command from '#structures/Command.js' import Translator, { keys } from '#utils/Translator.js' +import Command from '#structures/Command.js' +import Client from '#structures/Client.js' export default class embed extends Command { constructor () { @@ -29,237 +34,74 @@ export default class embed extends Command { name: 'channel', channel_types: [ChannelType.GuildText], description: 'Channel where the embed will be sent.', - required: true, }, { - type: ApplicationCommandOptionType.Number, + type: ApplicationCommandOptionType.String, name: 'color', description: 'Color of the embed', - choices: getColorChoices(), - required: true, - }, - { - type: ApplicationCommandOptionType.String, - name: 'title', - description: 'Title of the embed', - required: true, - }, - { - type: ApplicationCommandOptionType.String, - name: 'description', - description: 'Description of the embed', - required: true, + autocomplete: true, }, + // { + // type: ApplicationCommandOptionType.String, + // name: 'title', + // description: 'Title of the embed', + // required: true, + // }, + // { + // type: ApplicationCommandOptionType.String, + // name: 'description', + // description: 'Description of the embed', + // required: true, + // }, ], }) } override async run (interaction: ChatInputCommandInteraction) { - // TODO: Add more colors && make it work with hex colors - const canal = interaction.options.getChannel('channel', true, [ChannelType.GuildText]) - const descripcion = interaction.options.getString('description', true) - const color = interaction.options.getNumber('color', true) - const titulo = interaction.options.getString('title', true) - const embed = new EmbedBuilder().setDescription(`${descripcion}`).setColor(color).setTitle(titulo) - - canal.send({ embeds: [embed] }) - return await interaction.reply(Translator(interaction)(keys.embed_successfully)) + const translate = Translator(interaction) + const client = interaction.client as Client + if (!interaction.inCachedGuild()) { + return await interaction.reply({ + content: translate(keys.GENERICERROR, { + inviteURL: client.officialServerURL, + }), + ephemeral: true, + }) + } + const channel = interaction.options.getChannel('channel', false, [ChannelType.GuildText]) ?? interaction.channel + if (!channel?.permissionsFor(interaction.guild.members.me as GuildMember).has([PermissionFlagsBits.SendMessages, PermissionFlagsBits.EmbedLinks])) { + return await interaction.reply({ + content: Translator(interaction)(keys.embed.missing_permissions, { + permisions: new PermissionsBitField([PermissionFlagsBits.SendMessages, PermissionFlagsBits.EmbedLinks]) + .toArray() + .map(p => p.replace(/([A-Z])/g, ' $&').trim()) + .join(', '), + }), + ephemeral: true, + }) + } + return await interaction.showModal( + new ModalBuilder() + .setCustomId('embed:n:' + channel.id) + .setTitle('Embed') + .setComponents( + new ActionRowBuilder().setComponents( + new TextInputBuilder() + .setCustomId('title') + .setPlaceholder('My Awesome Embed') + .setLabel(translate(keys.embed.modal.title_label)) + .setMaxLength(256) + .setStyle(TextInputStyle.Short) + .setRequired(false), + ), + new ActionRowBuilder().setComponents( + new TextInputBuilder() + .setCustomId('description') + .setPlaceholder('This is my awesome embed!') + .setLabel(translate(keys.embed.modal.description_label)) + .setStyle(TextInputStyle.Paragraph) + .setRequired(false), + ), + )) } } - -function getColorChoices () { - return [ - { - name: 'Default', - name_localizations: { - 'es-ES': 'Defecto', - 'en-US': 'Default', - }, - value: Colors.Default, - }, - { - name: 'Aqua', - name_localizations: { - 'es-ES': 'Agua', - 'en-US': 'Aqua', - }, - value: Colors.Aqua, - }, - { - name: 'Dark Aqua', - name_localizations: { - 'es-ES': 'Agua Oscuro', - 'en-US': 'Dark Aqua', - }, - value: Colors.DarkAqua, - }, - { - name: 'Green', - name_localizations: { - 'es-ES': 'Verde', - 'en-US': 'Green', - }, - value: Colors.Green, - }, - { - name: 'Dark Green', - name_localizations: { - 'es-ES': 'Verde Oscuro', - 'en-US': 'Dark Green', - }, - value: Colors.DarkGreen, - }, - { - name: 'Blue', - name_localizations: { - 'es-ES': 'Azul', - 'en-US': 'Blue', - }, - value: Colors.Blue, - }, - { - name: 'Dark Blue', - name_localizations: { - 'es-ES': 'Azul Oscuro', - 'en-US': 'Dark Blue', - }, - value: Colors.DarkBlue, - }, - { - name: 'Purple', - name_localizations: { - 'es-ES': 'Morado', - 'en-US': 'Purple', - }, - value: Colors.Purple, - }, - { - name: 'Dark Purple', - name_localizations: { - 'es-ES': 'Morado Oscuro', - 'en-US': 'Dark Purple', - }, - value: Colors.DarkPurple, - }, - { - name: 'Lumious Vivid Pink', - name_localizations: { - 'es-ES': 'Rosa Brillante', - 'en-US': 'Lumious Vivid Pink', - }, - value: Colors.LuminousVividPink, - }, - { - name: 'Dark Vivid Pink', - name_localizations: { - 'es-ES': 'Rosa Brillante Oscuro', - 'en-US': 'Dark Vivid Pink', - }, - value: Colors.DarkVividPink, - }, - { - name: 'Gold', - name_localizations: { - 'es-ES': 'Oro', - 'en-US': 'Gold', - }, - value: Colors.Gold, - }, - { - name: 'Dark Gold', - name_localizations: { - 'es-ES': 'Oro Oscuro', - 'en-US': 'Dark Gold', - }, - value: Colors.DarkGold, - }, - { - name: 'Orange', - name_localizations: { - 'es-ES': 'Naranja', - 'en-US': 'Orange', - }, - value: Colors.Orange, - }, - { - name: 'Dark Orange', - name_localizations: { - 'es-ES': 'Naranja Oscuro', - 'en-US': 'Dark Orange', - }, - value: Colors.DarkOrange, - }, - { - name: 'Red', - name_localizations: { - 'es-ES': 'Rojo', - 'en-US': 'Red', - }, - value: Colors.Red, - }, - { - name: 'Dark Red', - name_localizations: { - 'es-ES': 'Rojo Oscuro', - 'en-US': 'Dark Red', - }, - value: Colors.DarkRed, - }, - { - name: 'Grey', - name_localizations: { - 'es-ES': 'Gris', - 'en-US': 'Grey', - }, - value: Colors.Grey, - }, - { - name: 'Dark Grey', - name_localizations: { - 'es-ES': 'Gris Oscuro', - 'en-US': 'Dark Grey', - }, - value: Colors.DarkGrey, - }, - { - name: 'Darker Grey', - name_localizations: { - 'es-ES': 'Gris Oscuro', - 'en-US': 'Darker Grey', - }, - value: Colors.DarkerGrey, - }, - { - name: 'Light Grey', - name_localizations: { - 'es-ES': 'Gris Claro', - 'en-US': 'Light Grey', - }, - value: Colors.LightGrey, - }, - { - name: 'Navy', - name_localizations: { - 'es-ES': 'Azul Marino', - 'en-US': 'Navy', - }, - value: Colors.Navy, - }, - { - name: 'Dark Navy', - name_localizations: { - 'es-ES': 'Azul Marino Oscuro', - 'en-US': 'Dark Navy', - }, - value: Colors.DarkNavy, - }, - { - name: 'Yellow', - name_localizations: { - 'es-ES': 'Amarillo', - 'en-US': 'Yellow', - }, - value: Colors.Yellow, - }, - ] -} diff --git a/src/slash/modals/embed.ts b/src/slash/modals/embed.ts new file mode 100644 index 0000000..783b863 --- /dev/null +++ b/src/slash/modals/embed.ts @@ -0,0 +1,32 @@ +import { ModalSubmitInteraction, CacheType, EmbedBuilder, ActionRowBuilder, ButtonBuilder, ButtonStyle } from 'discord.js' +import Modal from '#structures/Modal.js' + +export default class Embed extends Modal { + constructor () { + super(/embed:(n)|(e):\d*/) + } + + override async run (interaction: ModalSubmitInteraction): Promise { + const [,option, channelId] = interaction.customId.split(':') + const title = interaction.fields.getTextInputValue('title') + const description = interaction.fields.getTextInputValue('description') + if (!title && !description) return // ignore if no title or description + const embed = new EmbedBuilder() + if (title) embed.setTitle(title) + if (description) embed.setDescription(description) + if (option === 'n') { + return await interaction.reply({ + embeds: [embed], + ephemeral: true, + components: [ + new ActionRowBuilder().setComponents( + new ButtonBuilder().setCustomId('embed:e:' + channelId).setLabel('Edit').setStyle(ButtonStyle.Primary), + new ButtonBuilder().setCustomId('embed:p:' + channelId).setLabel('Publish').setStyle(ButtonStyle.Success), + ), + ], + }) + } + if (interaction.isFromMessage()) return await interaction.update({ embeds: [embed], components: interaction.message?.components }) + interaction.deferUpdate() + } +} diff --git a/src/structures/Autocomplete.ts b/src/structures/Autocomplete.ts index a17c054..cd18080 100644 --- a/src/structures/Autocomplete.ts +++ b/src/structures/Autocomplete.ts @@ -6,21 +6,22 @@ export default class Autocomplete { this.#pattern = pattern } - get pattern () { + get name () { return this.#pattern } async run (interaction: AutocompleteInteraction): Promise { + const v = interaction.options.getFocused() return await interaction.respond([ { - name: 'notImplemented', - value: 'This autocomplete is not yet implemented.', + name: v, + value: v, }, ]) } match (id: string) { - if (typeof this.pattern === 'string') return this.pattern === id - else return this.pattern.test(id) + if (typeof this.#pattern === 'string') return this.#pattern === id + else return this.#pattern.test(id) } } diff --git a/src/structures/Button.ts b/src/structures/Button.ts index 796e909..f4b7284 100644 --- a/src/structures/Button.ts +++ b/src/structures/Button.ts @@ -1,4 +1,6 @@ +import Translator, { keys } from '#utils/Translator.js' import { ButtonInteraction } from 'discord.js' +import Client from './Client.js' export default class Button { #pattern: string | RegExp @@ -6,16 +8,23 @@ export default class Button { this.#pattern = pattern } - get pattern () { + get name () { return this.#pattern } async run (interaction: ButtonInteraction): Promise { - return await interaction.reply('This button is not yet implemented.') + const translate = Translator(interaction) + const client = interaction.client as Client + return await interaction.reply({ + content: translate(keys.GENERICERROR, { + inviteURL: client.officialServerURL, + }), + ephemeral: true, + }) } match (id: string) { - if (typeof this.pattern === 'string') return this.pattern === id - else return this.pattern.test(id) + if (typeof this.#pattern === 'string') return this.#pattern === id + else return this.#pattern.test(id) } } diff --git a/src/structures/Modal.ts b/src/structures/Modal.ts new file mode 100644 index 0000000..b248aed --- /dev/null +++ b/src/structures/Modal.ts @@ -0,0 +1,30 @@ +import { ModalSubmitInteraction } from 'discord.js' +import Translator, { keys } from '#utils/Translator.js' +import Client from './Client.js' + +export default class Modal { + #pattern: string | RegExp + constructor (pattern: string | RegExp) { + this.#pattern = pattern + } + + get name () { + return this.#pattern + } + + async run (interaction: ModalSubmitInteraction): Promise { + const translate = Translator(interaction) + const client = interaction.client as Client + return await interaction.reply({ + content: translate(keys.GENERICERROR, { + inviteURL: client.officialServerURL, + }), + ephemeral: true, + }) + } + + match (id: string) { + if (typeof this.#pattern === 'string') return this.#pattern === id + else return this.#pattern.test(id) + } +} diff --git a/src/utils/locales.ts b/src/utils/locales.ts index d56d374..c923e9d 100644 --- a/src/utils/locales.ts +++ b/src/utils/locales.ts @@ -1,817 +1,831 @@ export default { - 247: { - enabled: '247.enabled', - disabled: '247.disabled', + '247': { + 'enabled': "247.enabled", + 'disabled': "247.disabled", + }, + 'question_ball': { + 'no_question': "question_ball.no_question", + 'question': "question_ball.question", + 'response': "question_ball.response", + 'possibles': { + '0': "question_ball.possibles.0", + '1': "question_ball.possibles.1", + '2': "question_ball.possibles.2", + '3': "question_ball.possibles.3", + '4': "question_ball.possibles.4", + '5': "question_ball.possibles.5", + '6': "question_ball.possibles.6", + '7': "question_ball.possibles.7", + '8': "question_ball.possibles.8", + '9': "question_ball.possibles.9", + '10': "question_ball.possibles.10", + '11': "question_ball.possibles.11", }, - question_ball: { - no_question: 'question_ball.no_question', - question: 'question_ball.question', - response: 'question_ball.response', - possibles: { - 0: 'question_ball.possibles.0', - 1: 'question_ball.possibles.1', - 2: 'question_ball.possibles.2', - 3: 'question_ball.possibles.3', - 4: 'question_ball.possibles.4', - 5: 'question_ball.possibles.5', - 6: 'question_ball.possibles.6', - 7: 'question_ball.possibles.7', - 8: 'question_ball.possibles.8', - 9: 'question_ball.possibles.9', - 10: 'question_ball.possibles.10', - 11: 'question_ball.possibles.11', - }, - }, - impostor: { - was: 'impostor.was', - was_not: 'impostor.was_not', - }, - embed_successfully: 'embed_successfully', - github: { - write_username: 'github.write_username', - name: 'github.name', - account: 'github.account', - organization: 'github.organization', - link: 'github.link', - location: 'github.location', - email: 'github.email', - biography: 'github.biography', - twitter: 'github.twitter', - repositories: 'github.repositories', - followers: 'github.followers', - analizing: 'github.analizing', - unknow: 'github.unknow', + }, + 'impostor': { + 'was': "impostor.was", + 'was_not': "impostor.was_not", + }, + 'embed': { + 'successfully': "embed.successfully", + 'missing_permissions': "embed.missing_permissions", + 'modal': { + 'title_label': "embed.modal.title_label", + 'description_label': "embed.modal.description_label", }, - help: { - presentation: 'help.presentation', - how_use: 'help.how_use', - how_use_answer: 'help.how_use_answer', - need_support: 'help.need_support', - need_support_answer: 'help.need_support_answer', - how_vote: 'help.how_vote', - how_vote_answer: 'help.how_vote_answer', - title: 'help.title', + }, + 'github': { + 'write_username': "github.write_username", + 'name': "github.name", + 'account': "github.account", + 'organization': "github.organization", + 'link': "github.link", + 'location': "github.location", + 'email': "github.email", + 'biography': "github.biography", + 'twitter': "github.twitter", + 'repositories': "github.repositories", + 'followers': "github.followers", + 'analizing': "github.analizing", + 'unknow': "github.unknow", + }, + 'help': { + 'presentation': "help.presentation", + 'how_use': "help.how_use", + 'how_use_answer': "help.how_use_answer", + 'need_support': "help.need_support", + 'need_support_answer': "help.need_support_answer", + 'how_vote': "help.how_vote", + 'how_vote_answer': "help.how_vote_answer", + 'title': "help.title", + }, + 'avatar': "avatar", + 'mchistory': { + 'dont': "mchistory.dont", + 'names': "mchistory.names", + 'first': "mchistory.first", + }, + 'ping': { + 'global': "ping.global", + 'internal': "ping.internal", + }, + 'roleinfo': { + 'managed': "roleinfo.managed", + }, + 'serverinfo': { + 'verification': { + 'no': "serverinfo.verification.no", + 'low': "serverinfo.verification.low", + 'medium': "serverinfo.verification.medium", + 'high': "serverinfo.verification.high", + 'extreme': "serverinfo.verification.extreme", }, - avatar: 'avatar', - mchistory: { - dont: 'mchistory.dont', - names: 'mchistory.names', - first: 'mchistory.first', + 'explicit': { + 'disabled': "serverinfo.explicit.disabled", + 'members_without_role': "serverinfo.explicit.members_without_role", + 'all_members': "serverinfo.explicit.all_members", }, - ping: { - global: 'ping.global', - internal: 'ping.internal', + 'emoji_count': "serverinfo.emoji_count", + 'tier_level': "serverinfo.tier_level", + 'verification_level': "serverinfo.verification_level", + 'explicit_filter': "serverinfo.explicit_filter", + }, + 'ban': { + 'not_found': "ban.not_found", + 'self': "ban.self", + 'owner': "ban.owner", + 'higher': "ban.higher", + 'ban': "ban.ban", + 'unbannable': "ban.unbannable", + }, + 'skip': { + 'messages': { + '0': "skip.messages.0", + '1': "skip.messages.1", + '2': "skip.messages.2", }, - roleinfo: { - managed: 'roleinfo.managed', + 'no_same': "skip.no_same", + 'skiped': "skip.skiped", + }, + 'queue': { + 'no_queue': "queue.no_queue", + 'current': "queue.current", + 'queue': "queue.queue", + 'no_page': "queue.no_page", + 'total': "queue.total", + }, + 'play': { + 'same': "play.same", + 'not_voice': "play.not_voice", + 'not_reproducible': "play.not_reproducible", + 'added': "play.added", + }, + 'reboot': { + 'all': "reboot.all", + 'shard': "reboot.shard", + }, + 'stop': { + 'resumed': "stop.resumed", + 'paused': "stop.paused", + 'success': "stop.success", + }, + 'paused': "paused", + 'resumed': "resumed", + 'voice_update': { + 'leaving': "voice_update.leaving", + 'alone': "voice_update.alone", + }, + 'automix': { + 'generated': "automix.generated", + 'disabled': "automix.disabled", + }, + 'twitch': { + 'no_streamer_found': "twitch.no_streamer_found", + 'already_following': "twitch.already_following", + 'now_following': "twitch.now_following", + 'unfollowed': "twitch.unfollowed", + 'role_mention': "twitch.role_mention", + 'now_live': "twitch.now_live", + }, + 'loop': { + 'queue': "loop.queue", + 'song': "loop.song", + 'disabled': "loop.disabled", + }, + 'ERROREMBED': "ERROREMBED", + 'SUCCESSEMBED': "SUCCESSEMBED", + 'PAUSE': "PAUSE", + 'RESUME': "RESUME", + 'STOP': "STOP", + 'SKIP': "SKIP", + 'NEXT': "NEXT", + 'QUEUE': "QUEUE", + 'TITLE': "TITLE", + 'MEMBERS': "MEMBERS", + 'REGULAR': "REGULAR", + 'ANIMATED': "ANIMATED", + 'CHANNELS': "CHANNELS", + 'ROLES': "ROLES", + 'CATEGORIES': "CATEGORIES", + 'SONGS': "SONGS", + 'TEXT': "TEXT", + 'VOICE': "VOICE", + 'BOOSTERS': "BOOSTERS", + 'REGION': "REGION", + 'TIER': "TIER", + 'CREATED_AT': "CREATED_AT", + 'OWNER': "OWNER", + 'AUTHOR': "AUTHOR", + 'REQUESTER': "REQUESTER", + 'DURATION': "DURATION", + 'NO': "NO", + 'API': "API", + 'PING': "PING", + 'NAME': "NAME", + 'ID': "ID", + 'POSITION': "POSITION", + 'COLOR': "COLOR", + 'MENTIONABLE': "MENTIONABLE", + 'SEPARATED': "SEPARATED", + 'YES': "YES", + 'PLAYING': "PLAYING", + 'GENERICERROR': "GENERICERROR", + 'commands': { + '247': { + 'name': "commands.247.name", + 'description': "commands.247.description", }, - serverinfo: { - verification: { - no: 'serverinfo.verification.no', - low: 'serverinfo.verification.low', - medium: 'serverinfo.verification.medium', - high: 'serverinfo.verification.high', - extreme: 'serverinfo.verification.extreme', - }, - explicit: { - disabled: 'serverinfo.explicit.disabled', - members_without_role: 'serverinfo.explicit.members_without_role', - all_members: 'serverinfo.explicit.all_members', + 'reboot': { + 'name': "commands.reboot.name", + 'description': "commands.reboot.description", + 'options': { + 'shard': { + 'name': "commands.reboot.options.shard.name", + 'description': "commands.reboot.options.shard.description", }, - emoji_count: 'serverinfo.emoji_count', - tier_level: 'serverinfo.tier_level', - verification_level: 'serverinfo.verification_level', - explicit_filter: 'serverinfo.explicit_filter', - }, - ban: { - not_found: 'ban.not_found', - self: 'ban.self', - owner: 'ban.owner', - higher: 'ban.higher', - ban: 'ban.ban', - unbannable: 'ban.unbannable', + }, }, - skip: { - messages: { - 0: 'skip.messages.0', - 1: 'skip.messages.1', - 2: 'skip.messages.2', + '8ball': { + 'name': "commands.8ball.name", + 'description': "commands.8ball.description", + 'options': { + 'question': { + 'name': "commands.8ball.options.question.name", + 'description': "commands.8ball.options.question.description", }, - no_same: 'skip.no_same', - skiped: 'skip.skiped', - }, - queue: { - no_queue: 'queue.no_queue', - current: 'queue.current', - queue: 'queue.queue', - no_page: 'queue.no_page', - total: 'queue.total', - }, - play: { - same: 'play.same', - not_voice: 'play.not_voice', - not_reproducible: 'play.not_reproducible', - added: 'play.added', - }, - reboot: { - all: 'reboot.all', - shard: 'reboot.shard', + }, }, - stop: { - resumed: 'stop.resumed', - paused: 'stop.paused', - success: 'stop.success', - }, - paused: 'paused', - resumed: 'resumed', - voice_update: { - leaving: 'voice_update.leaving', - alone: 'voice_update.alone', - }, - automix: { - generated: 'automix.generated', - disabled: 'automix.disabled', - }, - twitch: { - no_streamer_found: 'twitch.no_streamer_found', - already_following: 'twitch.already_following', - now_following: 'twitch.now_following', - unfollowed: 'twitch.unfollowed', - role_mention: 'twitch.role_mention', - now_live: 'twitch.now_live', - }, - loop: { - queue: 'loop.queue', - song: 'loop.song', - disabled: 'loop.disabled', - }, - ERROREMBED: 'ERROREMBED', - SUCCESSEMBED: 'SUCCESSEMBED', - PAUSE: 'PAUSE', - RESUME: 'RESUME', - STOP: 'STOP', - SKIP: 'SKIP', - NEXT: 'NEXT', - QUEUE: 'QUEUE', - TITLE: 'TITLE', - MEMBERS: 'MEMBERS', - REGULAR: 'REGULAR', - ANIMATED: 'ANIMATED', - CHANNELS: 'CHANNELS', - ROLES: 'ROLES', - CATEGORIES: 'CATEGORIES', - SONGS: 'SONGS', - TEXT: 'TEXT', - VOICE: 'VOICE', - BOOSTERS: 'BOOSTERS', - REGION: 'REGION', - TIER: 'TIER', - CREATED_AT: 'CREATED_AT', - OWNER: 'OWNER', - AUTHOR: 'AUTHOR', - REQUESTER: 'REQUESTER', - DURATION: 'DURATION', - NO: 'NO', - API: 'API', - PING: 'PING', - NAME: 'NAME', - ID: 'ID', - POSITION: 'POSITION', - COLOR: 'COLOR', - MENTIONABLE: 'MENTIONABLE', - SEPARATED: 'SEPARATED', - YES: 'YES', - PLAYING: 'PLAYING', - GENERICERROR: 'GENERICERROR', - commands: { - 247: { - name: 'commands.247.name', - description: 'commands.247.description', - }, - reboot: { - name: 'commands.reboot.name', - description: 'commands.reboot.description', - options: { - shard: { - name: 'commands.reboot.options.shard.name', - description: 'commands.reboot.options.shard.description', - }, - }, - }, - '8ball': { - name: 'commands.8ball.name', - description: 'commands.8ball.description', - options: { - question: { - name: 'commands.8ball.options.question.name', - description: 'commands.8ball.options.question.description', - }, - }, - }, - impostor: { - name: 'commands.impostor.name', - description: 'commands.impostor.description', - options: { - user: { - name: 'commands.impostor.options.user.name', - description: 'commands.impostor.options.user.description', - }, - }, + 'impostor': { + 'name': "commands.impostor.name", + 'description': "commands.impostor.description", + 'options': { + 'user': { + 'name': "commands.impostor.options.user.name", + 'description': "commands.impostor.options.user.description", }, - avatar: { - name: 'commands.avatar.name', - description: 'commands.avatar.description', - options: { - user: { - name: 'commands.avatar.options.user.name', - description: 'commands.avatar.options.user.description', - }, - }, + }, + }, + 'avatar': { + 'name': "commands.avatar.name", + 'description': "commands.avatar.description", + 'options': { + 'user': { + 'name': "commands.avatar.options.user.name", + 'description': "commands.avatar.options.user.description", }, - twitch: { - name: 'commands.twitch.name', - description: 'commands.twitch.description', - options: { - add: { - name: 'commands.twitch.options.add.name', - description: 'commands.twitch.options.add.description', - options: { - streamer: { - name: 'commands.twitch.options.add.options.streamer.name', - description: 'commands.twitch.options.add.options.streamer.description', - }, - channel: { - name: 'commands.twitch.options.add.options.channel.name', - description: 'commands.twitch.options.add.options.channel.description', - }, - role: { - name: 'commands.twitch.options.add.options.role.name', - description: 'commands.twitch.options.add.options.role.description', - }, - }, - }, - remove: { - name: 'commands.twitch.options.remove.name', - description: 'commands.twitch.options.remove.description', - options: { - streamer: { - name: 'commands.twitch.options.remove.options.streamer.name', - description: 'commands.twitch.options.remove.options.streamer.description', - }, - }, - }, + }, + }, + 'twitch': { + 'name': "commands.twitch.name", + 'description': "commands.twitch.description", + 'options': { + 'add': { + 'name': "commands.twitch.options.add.name", + 'description': "commands.twitch.options.add.description", + 'options': { + 'streamer': { + 'name': "commands.twitch.options.add.options.streamer.name", + 'description': "commands.twitch.options.add.options.streamer.description", }, - }, - shards: { - name: 'commands.shards.name', - description: 'commands.shards.description', - }, - serverinfo: { - name: 'commands.serverinfo.name', - description: 'commands.serverinfo.description', - }, - roleinfo: { - name: 'commands.roleinfo.name', - description: 'commands.roleinfo.description', - options: { - role: { - name: 'commands.roleinfo.options.role.name', - description: 'commands.roleinfo.options.role.description', - }, + 'channel': { + 'name': "commands.twitch.options.add.options.channel.name", + 'description': "commands.twitch.options.add.options.channel.description", }, - }, - ping: { - name: 'commands.ping.name', - description: 'commands.ping.description', - }, - mcserver: { - name: 'commands.mcserver.name', - description: 'commands.mcserver.description', - options: { - server: { - name: 'commands.mcserver.options.server.name', - description: 'commands.mcserver.options.server.description', - }, + 'role': { + 'name': "commands.twitch.options.add.options.role.name", + 'description': "commands.twitch.options.add.options.role.description", }, + }, }, - mchistory: { - name: 'commands.mchistory.name', - description: 'commands.mchistory.description', - options: { - account: { - name: 'commands.mchistory.options.account.name', - description: 'commands.mchistory.options.account.description', - }, + 'remove': { + 'name': "commands.twitch.options.remove.name", + 'description': "commands.twitch.options.remove.description", + 'options': { + 'streamer': { + 'name': "commands.twitch.options.remove.options.streamer.name", + 'description': "commands.twitch.options.remove.options.streamer.description", }, + }, }, - help: { - name: 'commands.help.name', - description: 'commands.help.description', + }, + }, + 'shards': { + 'name': "commands.shards.name", + 'description': "commands.shards.description", + }, + 'serverinfo': { + 'name': "commands.serverinfo.name", + 'description': "commands.serverinfo.description", + }, + 'roleinfo': { + 'name': "commands.roleinfo.name", + 'description': "commands.roleinfo.description", + 'options': { + 'role': { + 'name': "commands.roleinfo.options.role.name", + 'description': "commands.roleinfo.options.role.description", }, - github: { - name: 'commands.github.name', - description: 'commands.github.description', - options: { - account: { - name: 'commands.github.options.account.name', - description: 'commands.github.options.account.description', - }, - }, + }, + }, + 'ping': { + 'name': "commands.ping.name", + 'description': "commands.ping.description", + }, + 'mcserver': { + 'name': "commands.mcserver.name", + 'description': "commands.mcserver.description", + 'options': { + 'server': { + 'name': "commands.mcserver.options.server.name", + 'description': "commands.mcserver.options.server.description", }, - embed: { - name: 'commands.embed.name', - description: 'commands.embed.description', - options: { - channel: { - name: 'commands.embed.options.channel.name', - description: 'commands.embed.options.channel.description', - }, - color: { - name: 'commands.embed.options.color.name', - description: 'commands.embed.options.color.description', - }, - title: { - name: 'commands.embed.options.title.name', - description: 'commands.embed.options.title.description', - }, - description: { - name: 'commands.embed.options.description.name', - description: 'commands.embed.options.description.description', - }, - }, + }, + }, + 'mchistory': { + 'name': "commands.mchistory.name", + 'description': "commands.mchistory.description", + 'options': { + 'account': { + 'name': "commands.mchistory.options.account.name", + 'description': "commands.mchistory.options.account.description", }, - ban: { - name: 'commands.ban.name', - description: 'commands.ban.description', - options: { - user: { - name: 'commands.ban.options.user.name', - description: 'commands.ban.options.user.description', - }, - reason: { - name: 'commands.ban.options.reason.name', - description: 'commands.ban.options.reason.description', - }, - days: { - name: 'commands.ban.options.days.name', - description: 'commands.ban.options.days.description', - }, - }, + }, + }, + 'help': { + 'name': "commands.help.name", + 'description': "commands.help.description", + }, + 'github': { + 'name': "commands.github.name", + 'description': "commands.github.description", + 'options': { + 'account': { + 'name': "commands.github.options.account.name", + 'description': "commands.github.options.account.description", }, - play: { - name: 'commands.play.name', - description: 'commands.play.description', - options: { - song: { - name: 'commands.play.options.song.name', - description: 'commands.play.options.song.description', - }, - }, + }, + }, + 'embed': { + 'name': "commands.embed.name", + 'description': "commands.embed.description", + 'options': { + 'channel': { + 'name': "commands.embed.options.channel.name", + 'description': "commands.embed.options.channel.description", }, - stop: { - name: 'commands.stop.name', - description: 'commands.stop.description', + 'color': { + 'name': "commands.embed.options.color.name", + 'description': "commands.embed.options.color.description", }, - skip: { - name: 'commands.skip.name', - description: 'commands.skip.description', + 'title': { + 'name': "commands.embed.options.title.name", + 'description': "commands.embed.options.title.description", }, - resume: { - name: 'commands.resume.name', - description: 'commands.resume.description', + 'description': { + 'name': "commands.embed.options.description.name", + 'description': "commands.embed.options.description.description", }, - queue: { - name: 'commands.queue.name', - description: 'commands.queue.description', + }, + }, + 'ban': { + 'name': "commands.ban.name", + 'description': "commands.ban.description", + 'options': { + 'user': { + 'name': "commands.ban.options.user.name", + 'description': "commands.ban.options.user.description", }, - pause: { - name: 'commands.pause.name', - description: 'commands.pause.description', + 'reason': { + 'name': "commands.ban.options.reason.name", + 'description': "commands.ban.options.reason.description", }, - nowplaying: { - name: 'commands.nowplaying.name', - description: 'commands.nowplaying.description', + 'days': { + 'name': "commands.ban.options.days.name", + 'description': "commands.ban.options.days.description", }, - loop: { - name: 'commands.loop.name', - description: 'commands.loop.description', + }, + }, + 'play': { + 'name': "commands.play.name", + 'description': "commands.play.description", + 'options': { + 'song': { + 'name': "commands.play.options.song.name", + 'description': "commands.play.options.song.description", }, + }, + }, + 'stop': { + 'name': "commands.stop.name", + 'description': "commands.stop.description", + }, + 'skip': { + 'name': "commands.skip.name", + 'description': "commands.skip.description", }, - nowplaying: { - 1: 'nowplaying.1', - 2: 'nowplaying.2', - 3: 'nowplaying.3', - 4: 'nowplaying.4', - 5: 'nowplaying.5', - 6: 'nowplaying.6', - 7: 'nowplaying.7', + 'resume': { + 'name': "commands.resume.name", + 'description': "commands.resume.description", + }, + 'queue': { + 'name': "commands.queue.name", + 'description': "commands.queue.description", + }, + 'pause': { + 'name': "commands.pause.name", + 'description': "commands.pause.description", + }, + 'nowplaying': { + 'name': "commands.nowplaying.name", + 'description': "commands.nowplaying.description", + }, + 'loop': { + 'name': "commands.loop.name", + 'description': "commands.loop.description", }, + }, + 'nowplaying': { + '1': "nowplaying.1", + '2': "nowplaying.2", + '3': "nowplaying.3", + '4': "nowplaying.4", + '5': "nowplaying.5", + '6': "nowplaying.6", + '7': "nowplaying.7", + }, } satisfies { - '247': { - 'enabled': string - 'disabled': string + '247': { + 'enabled': string + 'disabled': string + } + 'question_ball': { + 'no_question': string + 'question': string + 'response': string + 'possibles': { + '0': string + '1': string + '2': string + '3': string + '4': string + '5': string + '6': string + '7': string + '8': string + '9': string + '10': string + '11': string } - 'question_ball': { - 'no_question': string - 'question': string - 'response': string - 'possibles': { - '0': string - '1': string - '2': string - '3': string - '4': string - '5': string - '6': string - '7': string - '8': string - '9': string - '10': string - '11': string - } + } + 'impostor': { + 'was': string + 'was_not': string + } + 'embed': { + 'successfully': string + 'missing_permissions': string + 'modal': { + 'title_label': string + 'description_label': string } - 'impostor': { - 'was': string - 'was_not': string + } + 'github': { + 'write_username': string + 'name': string + 'account': string + 'organization': string + 'link': string + 'location': string + 'email': string + 'biography': string + 'twitter': string + 'repositories': string + 'followers': string + 'analizing': string + 'unknow': string + } + 'help': { + 'presentation': string + 'how_use': string + 'how_use_answer': string + 'need_support': string + 'need_support_answer': string + 'how_vote': string + 'how_vote_answer': string + 'title': string + } + 'avatar': string + 'mchistory': { + 'dont': string + 'names': string + 'first': string + } + 'ping': { + 'global': string + 'internal': string + } + 'roleinfo': { + 'managed': string + } + 'serverinfo': { + 'verification': { + 'no': string + 'low': string + 'medium': string + 'high': string + 'extreme': string } - 'embed_successfully': string - 'github': { - 'write_username': string - 'name': string - 'account': string - 'organization': string - 'link': string - 'location': string - 'email': string - 'biography': string - 'twitter': string - 'repositories': string - 'followers': string - 'analizing': string - 'unknow': string + 'explicit': { + 'disabled': string + 'members_without_role': string + 'all_members': string } - 'help': { - 'presentation': string - 'how_use': string - 'how_use_answer': string - 'need_support': string - 'need_support_answer': string - 'how_vote': string - 'how_vote_answer': string - 'title': string - } - 'avatar': string - 'mchistory': { - 'dont': string - 'names': string - 'first': string - } - 'ping': { - 'global': string - 'internal': string + 'emoji_count': string + 'tier_level': string + 'verification_level': string + 'explicit_filter': string + } + 'ban': { + 'not_found': string + 'self': string + 'owner': string + 'higher': string + 'ban': string + 'unbannable': string + } + 'skip': { + 'messages': { + '0': string + '1': string + '2': string } - 'roleinfo': { - 'managed': string + 'no_same': string + 'skiped': string + } + 'queue': { + 'no_queue': string + 'current': string + 'queue': string + 'no_page': string + 'total': string + } + 'play': { + 'same': string + 'not_voice': string + 'not_reproducible': string + 'added': string + } + 'reboot': { + 'all': string + 'shard': string + } + 'stop': { + 'resumed': string + 'paused': string + 'success': string + } + 'paused': string + 'resumed': string + 'voice_update': { + 'leaving': string + 'alone': string + } + 'automix': { + 'generated': string + 'disabled': string + } + 'twitch': { + 'no_streamer_found': string + 'already_following': string + 'now_following': string + 'unfollowed': string + 'role_mention': string + 'now_live': string + } + 'loop': { + 'queue': string + 'song': string + 'disabled': string + } + 'ERROREMBED': string + 'SUCCESSEMBED': string + 'PAUSE': string + 'RESUME': string + 'STOP': string + 'SKIP': string + 'NEXT': string + 'QUEUE': string + 'TITLE': string + 'MEMBERS': string + 'REGULAR': string + 'ANIMATED': string + 'CHANNELS': string + 'ROLES': string + 'CATEGORIES': string + 'SONGS': string + 'TEXT': string + 'VOICE': string + 'BOOSTERS': string + 'REGION': string + 'TIER': string + 'CREATED_AT': string + 'OWNER': string + 'AUTHOR': string + 'REQUESTER': string + 'DURATION': string + 'NO': string + 'API': string + 'PING': string + 'NAME': string + 'ID': string + 'POSITION': string + 'COLOR': string + 'MENTIONABLE': string + 'SEPARATED': string + 'YES': string + 'PLAYING': string + 'GENERICERROR': string + 'commands': { + '247': { + 'name': string + 'description': string } - 'serverinfo': { - 'verification': { - 'no': string - 'low': string - 'medium': string - 'high': string - 'extreme': string - } - 'explicit': { - 'disabled': string - 'members_without_role': string - 'all_members': string + 'reboot': { + 'name': string + 'description': string + 'options': { + 'shard': { + 'name': string + 'description': string } - 'emoji_count': string - 'tier_level': string - 'verification_level': string - 'explicit_filter': string + } } - 'ban': { - 'not_found': string - 'self': string - 'owner': string - 'higher': string - 'ban': string - 'unbannable': string - } - 'skip': { - 'messages': { - '0': string - '1': string - '2': string + '8ball': { + 'name': string + 'description': string + 'options': { + 'question': { + 'name': string + 'description': string } - 'no_same': string - 'skiped': string + } } - 'queue': { - 'no_queue': string - 'current': string - 'queue': string - 'no_page': string - 'total': string - } - 'play': { - 'same': string - 'not_voice': string - 'not_reproducible': string - 'added': string - } - 'reboot': { - 'all': string - 'shard': string - } - 'stop': { - 'resumed': string - 'paused': string - 'success': string - } - 'paused': string - 'resumed': string - 'voice_update': { - 'leaving': string - 'alone': string + 'impostor': { + 'name': string + 'description': string + 'options': { + 'user': { + 'name': string + 'description': string + } + } } - 'automix': { - 'generated': string - 'disabled': string + 'avatar': { + 'name': string + 'description': string + 'options': { + 'user': { + 'name': string + 'description': string + } + } } 'twitch': { - 'no_streamer_found': string - 'already_following': string - 'now_following': string - 'unfollowed': string - 'role_mention': string - 'now_live': string - } - 'loop': { - 'queue': string - 'song': string - 'disabled': string - } - 'ERROREMBED': string - 'SUCCESSEMBED': string - 'PAUSE': string - 'RESUME': string - 'STOP': string - 'SKIP': string - 'NEXT': string - 'QUEUE': string - 'TITLE': string - 'MEMBERS': string - 'REGULAR': string - 'ANIMATED': string - 'CHANNELS': string - 'ROLES': string - 'CATEGORIES': string - 'SONGS': string - 'TEXT': string - 'VOICE': string - 'BOOSTERS': string - 'REGION': string - 'TIER': string - 'CREATED_AT': string - 'OWNER': string - 'AUTHOR': string - 'REQUESTER': string - 'DURATION': string - 'NO': string - 'API': string - 'PING': string - 'NAME': string - 'ID': string - 'POSITION': string - 'COLOR': string - 'MENTIONABLE': string - 'SEPARATED': string - 'YES': string - 'PLAYING': string - 'GENERICERROR': string - 'commands': { - '247': { - 'name': string - 'description': string - } - 'reboot': { - 'name': string - 'description': string - 'options': { - 'shard': { - 'name': string - 'description': string - } - } - } - '8ball': { - 'name': string - 'description': string - 'options': { - 'question': { - 'name': string - 'description': string - } + 'name': string + 'description': string + 'options': { + 'add': { + 'name': string + 'description': string + 'options': { + 'streamer': { + 'name': string + 'description': string } - } - 'impostor': { - 'name': string - 'description': string - 'options': { - 'user': { - 'name': string - 'description': string - } + 'channel': { + 'name': string + 'description': string } - } - 'avatar': { - 'name': string - 'description': string - 'options': { - 'user': { - 'name': string - 'description': string - } + 'role': { + 'name': string + 'description': string } + } } - 'twitch': { - 'name': string - 'description': string - 'options': { - 'add': { - 'name': string - 'description': string - 'options': { - 'streamer': { - 'name': string - 'description': string - } - 'channel': { - 'name': string - 'description': string - } - 'role': { - 'name': string - 'description': string - } - } - } - 'remove': { - 'name': string - 'description': string - 'options': { - 'streamer': { - 'name': string - 'description': string - } - } - } + 'remove': { + 'name': string + 'description': string + 'options': { + 'streamer': { + 'name': string + 'description': string } + } } - 'shards': { - 'name': string - 'description': string - } - 'serverinfo': { - 'name': string - 'description': string - } - 'roleinfo': { - 'name': string - 'description': string - 'options': { - 'role': { - 'name': string - 'description': string - } - } - } - 'ping': { - 'name': string - 'description': string - } - 'mcserver': { - 'name': string - 'description': string - 'options': { - 'server': { - 'name': string - 'description': string - } - } - } - 'mchistory': { - 'name': string - 'description': string - 'options': { - 'account': { - 'name': string - 'description': string - } - } - } - 'help': { - 'name': string - 'description': string + } + } + 'shards': { + 'name': string + 'description': string + } + 'serverinfo': { + 'name': string + 'description': string + } + 'roleinfo': { + 'name': string + 'description': string + 'options': { + 'role': { + 'name': string + 'description': string } - 'github': { - 'name': string - 'description': string - 'options': { - 'account': { - 'name': string - 'description': string - } - } + } + } + 'ping': { + 'name': string + 'description': string + } + 'mcserver': { + 'name': string + 'description': string + 'options': { + 'server': { + 'name': string + 'description': string } - 'embed': { - 'name': string - 'description': string - 'options': { - 'channel': { - 'name': string - 'description': string - } - 'color': { - 'name': string - 'description': string - } - 'title': { - 'name': string - 'description': string - } - 'description': { - 'name': string - 'description': string - } - } + } + } + 'mchistory': { + 'name': string + 'description': string + 'options': { + 'account': { + 'name': string + 'description': string } - 'ban': { - 'name': string - 'description': string - 'options': { - 'user': { - 'name': string - 'description': string - } - 'reason': { - 'name': string - 'description': string - } - 'days': { - 'name': string - 'description': string - } - } + } + } + 'help': { + 'name': string + 'description': string + } + 'github': { + 'name': string + 'description': string + 'options': { + 'account': { + 'name': string + 'description': string } - 'play': { - 'name': string - 'description': string - 'options': { - 'song': { - 'name': string - 'description': string - } - } + } + } + 'embed': { + 'name': string + 'description': string + 'options': { + 'channel': { + 'name': string + 'description': string } - 'stop': { - 'name': string - 'description': string + 'color': { + 'name': string + 'description': string } - 'skip': { - 'name': string - 'description': string + 'title': { + 'name': string + 'description': string } - 'resume': { - 'name': string - 'description': string + 'description': { + 'name': string + 'description': string } - 'queue': { - 'name': string - 'description': string + } + } + 'ban': { + 'name': string + 'description': string + 'options': { + 'user': { + 'name': string + 'description': string } - 'pause': { - 'name': string - 'description': string + 'reason': { + 'name': string + 'description': string } - 'nowplaying': { - 'name': string - 'description': string + 'days': { + 'name': string + 'description': string } - 'loop': { - 'name': string - 'description': string + } + } + 'play': { + 'name': string + 'description': string + 'options': { + 'song': { + 'name': string + 'description': string } + } + } + 'stop': { + 'name': string + 'description': string + } + 'skip': { + 'name': string + 'description': string } - 'nowplaying'?: { - '1'?: string - '2'?: string - '3'?: string - '4'?: string - '5'?: string - '6'?: string - '7'?: string + 'resume': { + 'name': string + 'description': string + } + 'queue': { + 'name': string + 'description': string + } + 'pause': { + 'name': string + 'description': string + } + 'nowplaying': { + 'name': string + 'description': string + } + 'loop': { + 'name': string + 'description': string } -} + } + 'nowplaying'?: { + '1'?: string + '2'?: string + '3'?: string + '4'?: string + '5'?: string + '6'?: string + '7'?: string + } +} \ No newline at end of file From afbe7175418776f6f30c0aba68a65dd8feeb1fcf Mon Sep 17 00:00:00 2001 From: eliyya Date: Thu, 10 Aug 2023 14:06:41 -0600 Subject: [PATCH 02/88] color suggestions in autocomplete --- src/slash/autocompletes/embed.ts | 119 +++++++++++-------------------- 1 file changed, 40 insertions(+), 79 deletions(-) diff --git a/src/slash/autocompletes/embed.ts b/src/slash/autocompletes/embed.ts index 745448c..49d4b79 100644 --- a/src/slash/autocompletes/embed.ts +++ b/src/slash/autocompletes/embed.ts @@ -9,98 +9,59 @@ export default class Embed extends Autocomplete { override async run (interaction: AutocompleteInteraction) { const focused = interaction.options.getFocused()?.trim() + const suggestions: Array<{ name: string, value: string }> = [] if (!focused) { return await interaction.respond([ { name: 'Default', value: `${Colors.Default}` }, { name: '#000', value: `${Colors.Default}` }, - { name: '#ffffff', value: `${Colors.White}` }, { name: '0x000000', value: `${Colors.Default}` }, - { name: 'rgb(0, 255, 0)', value: `${Colors.White}` }, + { name: 'rgb(0, 0, 0)', value: `${Colors.Default}` }, + { name: 'White', value: `${Colors.White}` }, + { name: '#ffffff', value: `${Colors.White}` }, + { name: '0xffffff', value: `${Colors.White}` }, + { name: 'rgb(255, 255, 255)', value: `${Colors.White}` }, + { name: 'Red', value: `${Colors.Red}` }, + { name: '#FF0000', value: `${Colors.Red}` }, + { name: '0xFF0000', value: `${Colors.Red}` }, + { name: 'rgb 255, 0, 0', value: `${Colors.Red}` }, + { name: 'Green', value: `${Colors.Green}` }, + { name: '#00FF00', value: `${Colors.Green}` }, + { name: '0x00FF00', value: `${Colors.Green}` }, + { name: 'rgb(0 255 0)', value: `${Colors.Green}` }, + { name: 'Blue', value: `${Colors.Blue}` }, + { name: '#0000FF', value: `${Colors.Blue}` }, + { name: '0x0000ff', value: `${Colors.Blue}` }, + { name: 'rgb 0 0 255', value: `${Colors.Blue}` }, ]).catch(logger.error) } else if (focused.startsWith('#')) { - if (focused.length > 7) { - return await interaction.respond([ - { name: 'invalid color', value: `${Colors.Default}` }, - ]) - } - if (focused.length < 7 && focused.length > 4) { - return await interaction.respond([ - { name: 'invalid color', value: `${Colors.Default}` }, - ]) - } - if (focused.length === 1) { - return await interaction.respond([ - { name: '#000000', value: `${Colors.Default}` }, - ]) - } - if (/[^A-Fa-f0-9]/.test(focused.slice(1))) { - return await interaction.respond([ - { name: 'invalid color', value: `${Colors.Default}` }, - ]) - } - if (focused.length === 4) { - return await interaction.respond([ - { name: focused + focused.slice(1), value: focused + focused.slice(1) }, - ]) - } - return await interaction.respond([ - { name: focused, value: focused }, - ]) + if (!/^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/.test(focused)) { suggestions.push({ name: 'invalid input', value: '#000000' }) } + const values = Object.values(Colors) + for (let i = 0, random = Math.floor(Math.random() * values.length); i < 24; i++, random = Math.floor(Math.random() * values.length)) { suggestions.push({ name: `#${values[random].toString(16)}`, value: `${values[random]}` }) } } else if (focused.startsWith('0x')) { - if (focused.length > 8) { - return await interaction.respond([ - { name: 'invalid color', value: `${Colors.Default}` }, - ]) - } - if (focused.length < 8 && focused.length > 5) { - return await interaction.respond([ - { name: 'invalid color', value: `${Colors.Default}` }, - ]) - } - if (focused.length === 2) { - return await interaction.respond([ - { name: '0x000000', value: `${Colors.Default}` }, - ]) - } - if (/[^A-Fa-f0-9]/.test(focused.slice(2))) { - return await interaction.respond([ - { name: 'invalid color', value: `${Colors.Default}` }, - ]) - } - if (focused.length === 5) { - return await interaction.respond([ - { name: focused + focused.slice(2), value: focused + focused.slice(2) }, - ]) - } - return await interaction.respond([ - { name: focused, value: focused }, - ]) + if (!/^0x([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/.test(focused)) { suggestions.push({ name: 'invalid input', value: '0x000000' }) } + const values = Object.values(Colors) + for (let i = 0, random = Math.floor(Math.random() * values.length); i < 24; i++, random = Math.floor(Math.random() * values.length)) { suggestions.push({ name: `0x${values[random].toString(16)}`, value: `${values[random]}` }) } } else if (focused.startsWith('rgb')) { - const rgb = focused.slice(3).trim().replace(/\(|\)/g, '').split(',').map(n => Number(n.trim())) - if (rgb.length !== 3) { - return await interaction.respond([ - { name: 'invalid color', value: `${Colors.Default}` }, - ]) + const rgbMatch = focused.match(/^rgb\(?\s?(?\d{1,3}),?\s*(?\d{1,3}),?\s*(?\d{1,3})\)?$/) + if (!rgbMatch) { suggestions.push({ name: 'invalid input', value: 'rgb(0, 0, 0)' }) } + const matches = rgbMatch?.groups ?? {} + const r = parseInt(matches.r) + const g = parseInt(matches.g) + const b = parseInt(matches.b) + if (!(r >= 0 && r <= 255 && g >= 0 && g <= 255 && b >= 0 && b <= 255)) { + suggestions.push({ name: 'invalid RGB input', value: 'rgb(0, 0, 0)' }) } - if (rgb.some(n => isNaN(n))) { - return await interaction.respond([ - { name: 'invalid color', value: `${Colors.Default}` }, - ]) + const values = Object.values(Colors) + for (let i = 0, random = Math.floor(Math.random() * values.length); i < 24; i++, random = Math.floor(Math.random() * values.length)) { + const [r, g, b] = values[random].toString(16).match(/[0-9A-Za-z]{2}/g) ?? [] + suggestions.push({ name: `rgb(${r ?? 0}, ${g ?? 0}, ${b ?? 0})`, value: `rgb(${r ?? 0}, ${g ?? 0}, ${b ?? 0})` }) } - if (rgb.some(n => n < 0 || n > 255)) { - return await interaction.respond([ - { name: 'invalid color', value: `${Colors.Default}` }, - ]) - } - return await interaction.respond([ - { name: focused, value: focused }, - ]) } else { const colors = Object.entries(Colors) - const response = colors.filter(([name]) => name.toLowerCase().includes(focused.toLowerCase())) - response.push(...colors.filter(([key]) => response.some(([name]) => name !== key))) - if (response.length > 25) response.length = 25 - return await interaction.respond(response.map(([name, value]) => ({ name, value: `${value}` }))).catch(logger.error) + suggestions.push(...colors.filter(([name]) => name.toLowerCase().includes(focused.toLowerCase())).map(([name, value]) => ({ name, value: `${value}` }))) + suggestions.push(...colors.filter(([key]) => suggestions.some(({ name }) => name !== key)).map(([name, value]) => ({ name, value: `${value}` }))) } + if (suggestions.length > 25) suggestions.length = 25 + return await interaction.respond(suggestions).catch(logger.error) } } From ffbd56b51e560c89d120ac25caf89aac36720930 Mon Sep 17 00:00:00 2001 From: eliyya Date: Thu, 10 Aug 2023 18:14:10 -0600 Subject: [PATCH 03/88] fix autocomplete play --- src/slash/autocompletes/play/play.ts | 29 ++++++++++++++++------------ 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/src/slash/autocompletes/play/play.ts b/src/slash/autocompletes/play/play.ts index 7c04d63..0915c27 100644 --- a/src/slash/autocompletes/play/play.ts +++ b/src/slash/autocompletes/play/play.ts @@ -1,7 +1,8 @@ import { AutocompleteInteraction } from 'discord.js' -import Client from '../../../structures/Client' -import logger from '#utils/logger.js' +// import Client from '../../../structures/Client' +// import logger from '#utils/logger.js' import Autocomplete from '#structures/Autocomplete.js' +import yasha from 'yasha' export default class Repeat extends Autocomplete { constructor () { @@ -9,16 +10,20 @@ export default class Repeat extends Autocomplete { } override async run (interaction: AutocompleteInteraction) { - try { - const client = interaction.client as Client - if (!interaction.options.getFocused()) return - const result = await (await client.music.youtubei).music.getSearchSuggestions(interaction.options.getFocused()) + const query = interaction.options.getFocused() + const search = await yasha.Source.Youtube.search(query) + if (search.length > 25) search.length = 25 + interaction.respond(search.map(r => ({ name: r.title ?? '', value: r.author ?? '' }))) + // try { + // const client = interaction.client as Client + // if (!interaction.options.getFocused()) return + // const result = await (await client.music.youtubei).music.getSearchSuggestions(interaction.options.getFocused()) - // TODO: Remove this any - interaction.respond(result.map((choice: any) => ({ name: choice.suggestion?.text, value: choice.suggestion?.text }))) - } catch (e) { - logger.error(e) - } - return true + // // TODO: Remove this any + // interaction.respond(result.map((choice: any) => ({ name: choice.suggestion?.text, value: choice.suggestion?.text }))) + // } catch (e) { + // logger.error(e) + // } + // return true } } From 9d0fb72cecd9b23025cdce931f604d67af36cc8e Mon Sep 17 00:00:00 2001 From: eliyya Date: Thu, 10 Aug 2023 18:14:36 -0600 Subject: [PATCH 04/88] fix embed color rgb suggestion --- locales/en-US.json | 6 +- locales/es-ES.json | 6 +- locales/ja.json | 6 +- src/events/client/interactionCreate.ts | 6 +- src/slash/autocompletes/embed.ts | 29 +++--- src/slash/buttons/embed.ts | 13 ++- .../Informaci\303\263n y Utilidad/embed.ts" | 26 +++--- src/slash/modals/embed.ts | 15 +++- src/structures/Color.ts | 89 +++++++++++++++++++ src/utils/locales.ts | 4 + 10 files changed, 157 insertions(+), 43 deletions(-) create mode 100644 src/structures/Color.ts diff --git a/locales/en-US.json b/locales/en-US.json index 998ccea..cc50ea6 100644 --- a/locales/en-US.json +++ b/locales/en-US.json @@ -27,8 +27,10 @@ "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", "modal": { "title_label": "Title", - "description_label": "Description" - } + "description_label": "Description", + "color_label": "Color" + }, + "invalid_input": "Invalid input" }, "github": { "write_username": "Please write an username.", diff --git a/locales/es-ES.json b/locales/es-ES.json index 0841807..d109475 100644 --- a/locales/es-ES.json +++ b/locales/es-ES.json @@ -27,8 +27,10 @@ "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { "title_label": "Título", - "description_label": "Descripción" - } + "description_label": "Descripción", + "color_label": "Color" + }, + "invalid_input": "Entrada no válida" }, "github": { "write_username": "Por favor, escriba un nombre de usuario.", diff --git a/locales/ja.json b/locales/ja.json index 0d1f45d..085b6fa 100644 --- a/locales/ja.json +++ b/locales/ja.json @@ -27,8 +27,10 @@ "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { "title_label": "タイトル", - "description_label": "記述" - } + "description_label": "記述", + "color_label": "色" + }, + "invalid_input": "無効な入力" }, "github": { "write_username": "ユーザー名を書いてください。", diff --git a/src/events/client/interactionCreate.ts b/src/events/client/interactionCreate.ts index 4941dee..81e978e 100644 --- a/src/events/client/interactionCreate.ts +++ b/src/events/client/interactionCreate.ts @@ -72,14 +72,14 @@ export class interactionCreate extends BaseEvent { async processButtonInteraction (interaction: ButtonInteraction) { logger.debug(`Button ${interaction.customId} pressed | ${interaction.user.username}`) - buttons.getCache().filter(b => b.match(interaction.customId)).map(async i => await i.run(interaction)) + buttons.getCache().filter(b => b.match(interaction.customId)).map(async i => await i.run(interaction).catch(logger.error)) } async processAutocompleteInteraction (interaction: AutocompleteInteraction) { - autocomplete.getCache().filter(b => b.match(interaction.commandName)).map(async i => await i.run(interaction)) + autocomplete.getCache().filter(b => b.match(interaction.commandName)).map(async i => await i.run(interaction).catch(logger.error)) } async processModalSubmitInteraction (interaction: ModalSubmitInteraction) { - modals.getCache().filter(b => b.match(interaction.customId)).map(async i => await i.run(interaction)) + modals.getCache().filter(b => b.match(interaction.customId)).map(async i => await i.run(interaction).catch(logger.error)) } } diff --git a/src/slash/autocompletes/embed.ts b/src/slash/autocompletes/embed.ts index 49d4b79..6c78103 100644 --- a/src/slash/autocompletes/embed.ts +++ b/src/slash/autocompletes/embed.ts @@ -1,4 +1,6 @@ import Autocomplete from '#structures/Autocomplete.js' +import Color from '#structures/Color.js' +import Translator, { keys } from '#utils/Translator.js' import logger from '#utils/logger.js' import { AutocompleteInteraction, Colors } from 'discord.js' @@ -8,8 +10,11 @@ export default class Embed extends Autocomplete { } override async run (interaction: AutocompleteInteraction) { + const translate = Translator(interaction) + const invalidInput = translate(keys.embed.invalid_input) const focused = interaction.options.getFocused()?.trim() const suggestions: Array<{ name: string, value: string }> = [] + const values = Object.values(Colors) if (!focused) { return await interaction.respond([ { name: 'Default', value: `${Colors.Default}` }, @@ -34,27 +39,17 @@ export default class Embed extends Autocomplete { { name: 'rgb 0 0 255', value: `${Colors.Blue}` }, ]).catch(logger.error) } else if (focused.startsWith('#')) { - if (!/^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/.test(focused)) { suggestions.push({ name: 'invalid input', value: '#000000' }) } - const values = Object.values(Colors) + if (!Color.isHex(focused)) { suggestions.push({ name: invalidInput, value: '#000000' }) } for (let i = 0, random = Math.floor(Math.random() * values.length); i < 24; i++, random = Math.floor(Math.random() * values.length)) { suggestions.push({ name: `#${values[random].toString(16)}`, value: `${values[random]}` }) } } else if (focused.startsWith('0x')) { - if (!/^0x([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/.test(focused)) { suggestions.push({ name: 'invalid input', value: '0x000000' }) } - const values = Object.values(Colors) + if (!Color.isHex0x(focused)) { suggestions.push({ name: invalidInput, value: '0x000000' }) } for (let i = 0, random = Math.floor(Math.random() * values.length); i < 24; i++, random = Math.floor(Math.random() * values.length)) { suggestions.push({ name: `0x${values[random].toString(16)}`, value: `${values[random]}` }) } } else if (focused.startsWith('rgb')) { - const rgbMatch = focused.match(/^rgb\(?\s?(?\d{1,3}),?\s*(?\d{1,3}),?\s*(?\d{1,3})\)?$/) - if (!rgbMatch) { suggestions.push({ name: 'invalid input', value: 'rgb(0, 0, 0)' }) } - const matches = rgbMatch?.groups ?? {} - const r = parseInt(matches.r) - const g = parseInt(matches.g) - const b = parseInt(matches.b) - if (!(r >= 0 && r <= 255 && g >= 0 && g <= 255 && b >= 0 && b <= 255)) { - suggestions.push({ name: 'invalid RGB input', value: 'rgb(0, 0, 0)' }) - } - const values = Object.values(Colors) - for (let i = 0, random = Math.floor(Math.random() * values.length); i < 24; i++, random = Math.floor(Math.random() * values.length)) { - const [r, g, b] = values[random].toString(16).match(/[0-9A-Za-z]{2}/g) ?? [] - suggestions.push({ name: `rgb(${r ?? 0}, ${g ?? 0}, ${b ?? 0})`, value: `rgb(${r ?? 0}, ${g ?? 0}, ${b ?? 0})` }) + if (!Color.isRGB(focused)) { suggestions.push({ name: invalidInput, value: 'rgb(0, 0, 0)' }) } + for (let i = 0; i < 24; i++) { + const random = Math.floor(Math.random() * values.length) + const [r, g, b] = new Color(`${values[random]}`).rgb + suggestions.push({ name: `rgb(${r}, ${g}, ${b})`, value: `rgb(${r ?? 0}, ${g ?? 0}, ${b ?? 0})` }) } } else { const colors = Object.entries(Colors) diff --git a/src/slash/buttons/embed.ts b/src/slash/buttons/embed.ts index 35aea1b..46851b6 100644 --- a/src/slash/buttons/embed.ts +++ b/src/slash/buttons/embed.ts @@ -1,5 +1,6 @@ import Button from '#structures/Button.js' import Client from '#structures/Client.js' +import Color from '#structures/Color.js' import Translator, { keys } from '#utils/Translator.js' import { ActionRowBuilder, ButtonInteraction, ModalBuilder, TextChannel, TextInputBuilder, TextInputStyle } from 'discord.js' @@ -16,9 +17,10 @@ export default class Embed extends Button { } async edit (interaction: ButtonInteraction): Promise { + const [,, channelId] = interaction.customId.split(':') const translate = Translator(interaction) const { data: embed } = interaction.message.embeds[0] - return await interaction.showModal(new ModalBuilder().setCustomId('embed:edit').setTitle('Embed').setComponents( + return await interaction.showModal(new ModalBuilder().setCustomId('embed:e:' + channelId).setTitle('Embed').setComponents( new ActionRowBuilder().setComponents( new TextInputBuilder() .setCustomId('title') @@ -38,6 +40,15 @@ export default class Embed extends Button { .setValue(embed.description ?? '') .setRequired(false), ), + new ActionRowBuilder().setComponents( + new TextInputBuilder() + .setCustomId('color') + .setPlaceholder('#0F99A7') + .setLabel(translate(keys.embed.modal.color_label)) + .setStyle(TextInputStyle.Short) + .setValue(new Color(`${embed.color}` ?? '#000000').hex) + .setRequired(false), + ), )) } diff --git "a/src/slash/commands/Informaci\303\263n y Utilidad/embed.ts" "b/src/slash/commands/Informaci\303\263n y Utilidad/embed.ts" index f1887f6..8e111f7 100644 --- "a/src/slash/commands/Informaci\303\263n y Utilidad/embed.ts" +++ "b/src/slash/commands/Informaci\303\263n y Utilidad/embed.ts" @@ -9,10 +9,12 @@ import { ModalBuilder, ChannelType, GuildMember, + Colors, } from 'discord.js' import Translator, { keys } from '#utils/Translator.js' import Command from '#structures/Command.js' import Client from '#structures/Client.js' +import Color from '#structures/Color.js' export default class embed extends Command { constructor () { @@ -41,18 +43,6 @@ export default class embed extends Command { description: 'Color of the embed', autocomplete: true, }, - // { - // type: ApplicationCommandOptionType.String, - // name: 'title', - // description: 'Title of the embed', - // required: true, - // }, - // { - // type: ApplicationCommandOptionType.String, - // name: 'description', - // description: 'Description of the embed', - // required: true, - // }, ], }) } @@ -80,6 +70,9 @@ export default class embed extends Command { ephemeral: true, }) } + const colorInput = interaction.options.getString('color') + let color = new Color(`${Colors.Default}`) + if (colorInput && Color.isColor(colorInput)) color = new Color(colorInput) return await interaction.showModal( new ModalBuilder() .setCustomId('embed:n:' + channel.id) @@ -102,6 +95,15 @@ export default class embed extends Command { .setStyle(TextInputStyle.Paragraph) .setRequired(false), ), + new ActionRowBuilder().setComponents( + new TextInputBuilder() + .setCustomId('color') + .setPlaceholder('#0F99A7') + .setLabel(translate(keys.embed.modal.color_label)) + .setStyle(TextInputStyle.Short) + .setRequired(true) + .setValue(color.hex), + ), )) } } diff --git a/src/slash/modals/embed.ts b/src/slash/modals/embed.ts index 783b863..cf01d84 100644 --- a/src/slash/modals/embed.ts +++ b/src/slash/modals/embed.ts @@ -1,21 +1,28 @@ -import { ModalSubmitInteraction, CacheType, EmbedBuilder, ActionRowBuilder, ButtonBuilder, ButtonStyle } from 'discord.js' +import { ModalSubmitInteraction, EmbedBuilder, ActionRowBuilder, ButtonBuilder, ButtonStyle } from 'discord.js' import Modal from '#structures/Modal.js' +import Color from '#structures/Color.js' +import Translator, { keys } from '#utils/Translator.js' +import logger from '#utils/logger.js' export default class Embed extends Modal { constructor () { super(/embed:(n)|(e):\d*/) } - override async run (interaction: ModalSubmitInteraction): Promise { + override async run (interaction: ModalSubmitInteraction): Promise { + const translate = Translator(interaction) const [,option, channelId] = interaction.customId.split(':') const title = interaction.fields.getTextInputValue('title') const description = interaction.fields.getTextInputValue('description') + const color = interaction.fields.getTextInputValue('color') if (!title && !description) return // ignore if no title or description const embed = new EmbedBuilder() if (title) embed.setTitle(title) if (description) embed.setDescription(description) + if (color && Color.isColor(color)) embed.setColor(new Color(color).hex) if (option === 'n') { return await interaction.reply({ + content: !Color.isColor(color) ? translate(keys.embed.invalid_input) : undefined, embeds: [embed], ephemeral: true, components: [ @@ -24,9 +31,9 @@ export default class Embed extends Modal { new ButtonBuilder().setCustomId('embed:p:' + channelId).setLabel('Publish').setStyle(ButtonStyle.Success), ), ], - }) + }).catch(logger.error) } - if (interaction.isFromMessage()) return await interaction.update({ embeds: [embed], components: interaction.message?.components }) + if (interaction.isFromMessage()) return await interaction.update({ embeds: [embed], components: interaction.message?.components }).catch(logger.error) interaction.deferUpdate() } } diff --git a/src/structures/Color.ts b/src/structures/Color.ts new file mode 100644 index 0000000..a1ea3c4 --- /dev/null +++ b/src/structures/Color.ts @@ -0,0 +1,89 @@ +import { Colors } from 'discord.js' + +export default class Color { + #rgb!: [number, number, number] + constructor (color: string) { + if (!Color.isColor(color)) { + throw new TypeError('Invalid color') + } + if (Color.isHex(color)) { + if (color.length === 4) color = `#${color[1]}${color[1]}${color[2]}${color[2]}${color[3]}${color[3]}` + const match = color.match(/^#(?[A-Fa-f0-9]{2})(?[A-Fa-f0-9]{2})(?[A-Fa-f0-9]{2})$/) + const { r, g, b } = match?.groups ?? {} + this.#rgb = [parseInt(r, 16), parseInt(g, 16), parseInt(b, 16)] + } + if (Color.isHex0x(color)) { + if (color.length === 5) color = `0x${color[1]}${color[1]}${color[2]}${color[2]}${color[3]}${color[3]}` + const match = color.match(/^0x(?[A-Fa-f0-9]{2})(?[A-Fa-f0-9]{2})(?[A-Fa-f0-9]{2})$/) + const { r, g, b } = match?.groups ?? {} + this.#rgb = [parseInt(r, 16), parseInt(g, 16), parseInt(b, 16)] + } + if (Color.isRGB(color)) { + const match = color.match(/^rgb\(?\s?(?\d{1,3}),?\s*(?\d{1,3}),?\s*(?\d{1,3})\)?$/) + const { r, g, b } = match?.groups ?? {} + this.#rgb = [parseInt(r), parseInt(g), parseInt(b)] + } + if (Color.isName(color)) { + const match = Colors[color as keyof typeof Colors].toString(16).match(/[0-9A-Za-z]{2}/g) ?? [] + const [r, g, b] = match + this.#rgb = [parseInt(r ?? '0', 16), parseInt(g ?? '0', 16), parseInt(b ?? '0', 16)] + } + if (Color.isNumber(color)) { + const match = parseInt(color).toString(16).match(/[0-9A-Za-z]{2}/g) ?? [] + const [r, g, b] = match + this.#rgb = [parseInt(r ?? '0', 16), parseInt(g ?? '0', 16), parseInt(b ?? '0', 16)] + } + } + + get hex (): `#${string}` { + const [r, g, b] = this.#rgb.map(n => n.toString(16)) + return `#${r.length === 1 ? '0' + r : r}${g.length === 1 ? '0' + g : g}${b.length === 1 ? '0' + b : b}` + } + + get hex0x (): `0x${string}` { + const [r, g, b] = this.#rgb.map(n => n.toString(16)) + return `0x${r.length === 1 ? '0' + r : r}${g.length === 1 ? '0' + g : g}${b.length === 1 ? '0' + b : b}` + } + + get rgbString (): `rgb(${number}, ${number}, ${number})` { + return `rgb(${this.#rgb.join(', ')})` as `rgb(${number}, ${number}, ${number})` + } + + get rgb (): [number, number, number] { + return this.#rgb + } + + get number (): number { + const [r, g, b] = this.#rgb + return parseInt(`${r}${g}${b}`, 16) + } + + static isColor (color: string): boolean { + return Color.isHex(color) || + Color.isHex0x(color) || + Color.isRGB(color) || + Color.isName(color) || + Color.isNumber(color) + } + + static isHex (color: string): boolean { + return /^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/.test(color) + } + + static isHex0x (color: string): boolean { + return /^0x([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/.test(color) + } + + static isRGB (color: string): boolean { + return /^rgb\(?\s?(?\d{1,3}),?\s*(?\d{1,3}),?\s*(?\d{1,3})\)?$/.test(color) + } + + static isName (color: string): boolean { + return Object.keys(Colors).some(c => c === color) + } + + static isNumber (color: string): boolean { + if (color === '0') return true + return /^([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/.test(parseInt(color).toString(16)) + } +} diff --git a/src/utils/locales.ts b/src/utils/locales.ts index c923e9d..c36d5ca 100644 --- a/src/utils/locales.ts +++ b/src/utils/locales.ts @@ -32,7 +32,9 @@ export default { 'modal': { 'title_label': "embed.modal.title_label", 'description_label': "embed.modal.description_label", + 'color_label': "embed.modal.color_label", }, + 'invalid_input': "embed.invalid_input", }, 'github': { 'write_username': "github.write_username", @@ -447,7 +449,9 @@ export default { 'modal': { 'title_label': string 'description_label': string + 'color_label': string } + 'invalid_input': string } 'github': { 'write_username': string From 46189f86cee76653812dc0806aea04a8e7279c45 Mon Sep 17 00:00:00 2001 From: eliyya Date: Thu, 10 Aug 2023 18:14:10 -0600 Subject: [PATCH 05/88] fix autocomplete play --- src/slash/autocomplete/play/play.ts | 29 +++++++++++++++++------------ 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/src/slash/autocomplete/play/play.ts b/src/slash/autocomplete/play/play.ts index 7c04d63..0915c27 100644 --- a/src/slash/autocomplete/play/play.ts +++ b/src/slash/autocomplete/play/play.ts @@ -1,7 +1,8 @@ import { AutocompleteInteraction } from 'discord.js' -import Client from '../../../structures/Client' -import logger from '#utils/logger.js' +// import Client from '../../../structures/Client' +// import logger from '#utils/logger.js' import Autocomplete from '#structures/Autocomplete.js' +import yasha from 'yasha' export default class Repeat extends Autocomplete { constructor () { @@ -9,16 +10,20 @@ export default class Repeat extends Autocomplete { } override async run (interaction: AutocompleteInteraction) { - try { - const client = interaction.client as Client - if (!interaction.options.getFocused()) return - const result = await (await client.music.youtubei).music.getSearchSuggestions(interaction.options.getFocused()) + const query = interaction.options.getFocused() + const search = await yasha.Source.Youtube.search(query) + if (search.length > 25) search.length = 25 + interaction.respond(search.map(r => ({ name: r.title ?? '', value: r.author ?? '' }))) + // try { + // const client = interaction.client as Client + // if (!interaction.options.getFocused()) return + // const result = await (await client.music.youtubei).music.getSearchSuggestions(interaction.options.getFocused()) - // TODO: Remove this any - interaction.respond(result.map((choice: any) => ({ name: choice.suggestion?.text, value: choice.suggestion?.text }))) - } catch (e) { - logger.error(e) - } - return true + // // TODO: Remove this any + // interaction.respond(result.map((choice: any) => ({ name: choice.suggestion?.text, value: choice.suggestion?.text }))) + // } catch (e) { + // logger.error(e) + // } + // return true } } From f781308af07d09402852f34d3408032d8fc26bc3 Mon Sep 17 00:00:00 2001 From: eliyya Date: Fri, 11 Aug 2023 12:38:18 -0600 Subject: [PATCH 06/88] fix suggestion return --- src/handlers/commands.ts | 6 +++--- src/slash/{autocomplete => autocompletes}/play/play.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) rename src/slash/{autocomplete => autocompletes}/play/play.ts (97%) diff --git a/src/handlers/commands.ts b/src/handlers/commands.ts index 0d8b3f6..dc8673d 100644 --- a/src/handlers/commands.ts +++ b/src/handlers/commands.ts @@ -39,10 +39,10 @@ for (const dir of await readdir('./build/slash/buttons')) { } } // cache autocomplete -for (const dir of await readdir('./build/slash/autocomplete')) { - for (const file of await readdir(`./build/slash/autocomplete/${dir}`)) { +for (const dir of await readdir('./build/slash/autocompletes')) { + for (const file of await readdir(`./build/slash/autocompletes/${dir}`)) { if (file.endsWith('.js')) { - const { default: AutocompleteFile } = await import(`../../build/slash/autocomplete/${dir}/${file}`) + const { default: AutocompleteFile } = await import(`../../build/slash/autocompletes/${dir}/${file}`) if (typeof AutocompleteFile === 'function') { try { const autocomplete = new AutocompleteFile() as Autocomplete diff --git a/src/slash/autocomplete/play/play.ts b/src/slash/autocompletes/play/play.ts similarity index 97% rename from src/slash/autocomplete/play/play.ts rename to src/slash/autocompletes/play/play.ts index 0915c27..5a27dfa 100644 --- a/src/slash/autocomplete/play/play.ts +++ b/src/slash/autocompletes/play/play.ts @@ -13,7 +13,7 @@ export default class Repeat extends Autocomplete { const query = interaction.options.getFocused() const search = await yasha.Source.Youtube.search(query) if (search.length > 25) search.length = 25 - interaction.respond(search.map(r => ({ name: r.title ?? '', value: r.author ?? '' }))) + interaction.respond(search.map(r => ({ name: r.title ?? '', value: r.url ?? '' }))) // try { // const client = interaction.client as Client // if (!interaction.options.getFocused()) return From 6e2e94e7412c9b152475408a8619bc9eb9197c7e Mon Sep 17 00:00:00 2001 From: eliyya Date: Fri, 11 Aug 2023 13:52:40 -0600 Subject: [PATCH 07/88] command info debug on error --- src/events/client/interactionCreate.ts | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/src/events/client/interactionCreate.ts b/src/events/client/interactionCreate.ts index 9725acc..b4e37fd 100644 --- a/src/events/client/interactionCreate.ts +++ b/src/events/client/interactionCreate.ts @@ -61,7 +61,24 @@ export class interactionCreate extends BaseEvent { // TODO: Add COOLDOWN functionality } - await cmd.run(interaction) + await cmd.run(interaction).catch(e => { + logger.error(e, '\x1b[33mCommand Info\x1b[0m', { + cmd: cmd.name, + options: JSON.stringify(interaction.options.data, (key, value) => { + if (key === 'client') return undefined + if (key === 'channel') return undefined + if (key === 'guild') return undefined + if (key === 'user') return undefined + if (key === 'member') return undefined + if (key === 'role') return undefined + return value + }), + }) + interaction.reply({ + content: 'Ha ocurrido un error al ejecutar el comando, por favor, intenta de nuevo más tarde', + ephemeral: true, + }) + }) await performanceMeters.get('interaction_' + interaction.id)?.stop() // the ping command stop the process return performanceMeters.delete('interaction_' + interaction.id) } catch (e) { From 271e752982fdb4dfbe969c5cf8b1aa1d256d238c Mon Sep 17 00:00:00 2001 From: eliyya Date: Fri, 11 Aug 2023 14:22:28 -0600 Subject: [PATCH 08/88] handle search returns null --- "src/slash/commands/M\303\272sica/play.ts" | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git "a/src/slash/commands/M\303\272sica/play.ts" "b/src/slash/commands/M\303\272sica/play.ts" index 170f3e4..6c18f3f 100644 --- "a/src/slash/commands/M\303\272sica/play.ts" +++ "b/src/slash/commands/M\303\272sica/play.ts" @@ -79,8 +79,21 @@ export default class play extends Command { const songs2 = songs.filter((song: any) => song.item_type === 'song') const randomIndex = Math.floor(Math.random() * songs2.length) const song3 = songs2[randomIndex] - // @ts-expect-error - search = await client.music.search(song3.id, interaction.member, source) + try { + // @ts-expect-error + search = await client.music.search(song3.id, interaction.member, source) + if (!search) throw new Error('No se ha encontrado la canción') + } catch (e) { + logger.error(e) + return await interaction.editReply({ + embeds: [ + new EmbedBuilder().setColor(15548997).setFooter({ + text: translate(keys.play.not_reproducible), + iconURL: client.user?.displayAvatarURL(), + }), + ], + }) + } // search = await client.music.search(song3.id, interaction.member, source) // const playlist = await (await player.youtubei).getPlaylist() // if(playlist) { @@ -89,6 +102,7 @@ export default class play extends Command { } else { try { search = await client.music.search(song, interaction.member, source) + if (!search) throw new Error('No se ha encontrado la canción') } catch (e) { logger.error(e) return await interaction.editReply({ From e3634f612e0ded7b28195fc25c2e184005e1f685 Mon Sep 17 00:00:00 2001 From: eliyya Date: Fri, 11 Aug 2023 14:57:25 -0600 Subject: [PATCH 09/88] update voiceStateUpdate --- src/events/voice/voiceStateUpdate.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/events/voice/voiceStateUpdate.ts b/src/events/voice/voiceStateUpdate.ts index 0fc6a64..4e02834 100644 --- a/src/events/voice/voiceStateUpdate.ts +++ b/src/events/voice/voiceStateUpdate.ts @@ -18,6 +18,8 @@ export default class VoiceStateUpdate extends BaseEvent { await player.destroy() return } + const vc = player.voiceChannel + if (newUserVoiceChannel.id !== vc.id) return // Check if there are more than 1 user in the voice channel, if not, pause the music if (newUserVoiceChannel.members.filter(member => !member.user.bot).size >= 1) { From 8b06fda90b8bbd977eab964fa541bf1318333f50 Mon Sep 17 00:00:00 2001 From: eliyya Date: Fri, 11 Aug 2023 14:59:06 -0600 Subject: [PATCH 10/88] clister chunk size 2 --- src/structures/NodeManager.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structures/NodeManager.ts b/src/structures/NodeManager.ts index 454da52..21f21f6 100644 --- a/src/structures/NodeManager.ts +++ b/src/structures/NodeManager.ts @@ -56,7 +56,7 @@ export default class NodeManager extends ClusterManager { const shardList = [...Array(data).keys()] // * Divide los shards en bloques - clusterList = chunk(shardList, 6) + clusterList = chunk(shardList, 2) this.queue.queue.shift() this.totalClusters = 0 @@ -150,7 +150,7 @@ export default class NodeManager extends ClusterManager { let shardList = [...Array(data).keys()] if (data === 1) shardList = [0] // * Divide los shards en bloques - const clusterList = chunk(shardList, 6) + const clusterList = chunk(shardList, 2) for (let i = 0; i < clusterList.length; i++) { const clusterIndex = this.totalClusters + 1 From f5912cf578dfb146ce2ba4a8d7c97228cc0ae78b Mon Sep 17 00:00:00 2001 From: eliyya Date: Fri, 11 Aug 2023 15:27:28 -0600 Subject: [PATCH 11/88] embed translates --- locales/en-US.json | 7 ++ locales/es-ES.json | 7 ++ locales/ja.json | 7 ++ src/slash/buttons/embed.ts | 66 ++++++++++--------- .../Informaci\303\263n y Utilidad/embed.ts" | 6 +- src/utils/locales.ts | 14 ++++ 6 files changed, 73 insertions(+), 34 deletions(-) diff --git a/locales/en-US.json b/locales/en-US.json index cc50ea6..782d155 100644 --- a/locales/en-US.json +++ b/locales/en-US.json @@ -26,10 +26,17 @@ "successfully": "Embed created and sent successfully.", "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", "modal": { + "title": "Embed Creator", "title_label": "Title", + "title_placeholder": "My Awesome Embed", "description_label": "Description", + "description_placeholder": "This is my awesome embed!", "color_label": "Color" }, + "buttons": { + "send": "Send", + "edit": "Edit" + }, "invalid_input": "Invalid input" }, "github": { diff --git a/locales/es-ES.json b/locales/es-ES.json index d109475..e58a955 100644 --- a/locales/es-ES.json +++ b/locales/es-ES.json @@ -26,10 +26,17 @@ "successfully": "Embed creado y enviado correctamente.", "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { + "title": "Creador de embed", "title_label": "Título", + "title_placeholder": "El mejor embed", "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", "color_label": "Color" }, + "buttons": { + "send": "Enviar", + "edit": "Editar" + }, "invalid_input": "Entrada no válida" }, "github": { diff --git a/locales/ja.json b/locales/ja.json index 085b6fa..1096cb1 100644 --- a/locales/ja.json +++ b/locales/ja.json @@ -26,10 +26,17 @@ "successfully": "エンベッドが作成され、正常に送信された。", "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { + "title": "埋め込みを作成する", "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", "color_label": "色" }, + "buttons": { + "send": "送信", + "edit": "編集" + }, "invalid_input": "無効な入力" }, "github": { diff --git a/src/slash/buttons/embed.ts b/src/slash/buttons/embed.ts index 46851b6..d04aaa6 100644 --- a/src/slash/buttons/embed.ts +++ b/src/slash/buttons/embed.ts @@ -20,36 +20,40 @@ export default class Embed extends Button { const [,, channelId] = interaction.customId.split(':') const translate = Translator(interaction) const { data: embed } = interaction.message.embeds[0] - return await interaction.showModal(new ModalBuilder().setCustomId('embed:e:' + channelId).setTitle('Embed').setComponents( - new ActionRowBuilder().setComponents( - new TextInputBuilder() - .setCustomId('title') - .setPlaceholder('My Awesome Embed') - .setLabel(translate(keys.embed.modal.title_label)) - .setMaxLength(256) - .setStyle(TextInputStyle.Short) - .setValue(embed.title ?? '') - .setRequired(false), - ), - new ActionRowBuilder().setComponents( - new TextInputBuilder() - .setCustomId('description') - .setPlaceholder('This is my awesome embed!') - .setLabel(translate(keys.embed.modal.description_label)) - .setStyle(TextInputStyle.Paragraph) - .setValue(embed.description ?? '') - .setRequired(false), - ), - new ActionRowBuilder().setComponents( - new TextInputBuilder() - .setCustomId('color') - .setPlaceholder('#0F99A7') - .setLabel(translate(keys.embed.modal.color_label)) - .setStyle(TextInputStyle.Short) - .setValue(new Color(`${embed.color}` ?? '#000000').hex) - .setRequired(false), - ), - )) + return await interaction.showModal( + new ModalBuilder() + .setCustomId('embed:e:' + channelId) + .setTitle(translate(keys.embed.modal.title)) + .setComponents( + new ActionRowBuilder().setComponents( + new TextInputBuilder() + .setCustomId('title') + .setPlaceholder(translate(keys.embed.modal.title_placeholder)) + .setLabel(translate(keys.embed.modal.title_label)) + .setMaxLength(256) + .setStyle(TextInputStyle.Short) + .setValue(embed.title ?? '') + .setRequired(false), + ), + new ActionRowBuilder().setComponents( + new TextInputBuilder() + .setCustomId('description') + .setPlaceholder(translate(keys.embed.modal.description_placeholder)) + .setLabel(translate(keys.embed.modal.description_label)) + .setStyle(TextInputStyle.Paragraph) + .setValue(embed.description ?? '') + .setRequired(false), + ), + new ActionRowBuilder().setComponents( + new TextInputBuilder() + .setCustomId('color') + .setPlaceholder('#0F99A7') + .setLabel(translate(keys.embed.modal.color_label)) + .setStyle(TextInputStyle.Short) + .setValue(new Color(`${embed.color}` ?? '#000000').hex) + .setRequired(false), + ), + )) } async publish (interaction: ButtonInteraction): Promise { @@ -59,7 +63,7 @@ export default class Embed extends Button { const { data: embed } = interaction.message.embeds[0] const channel = await client.channels.fetch(channelId) as TextChannel channel?.send({ embeds: [embed] }) - .then(async () => await interaction.reply({ content: 'Embed published!', ephemeral: true })) + .then(async () => await interaction.reply({ content: translate(keys.embed.successfully), ephemeral: true })) .catch(async () => await interaction.reply({ content: translate(keys.GENERICERROR, { inviteURL: client.officialServerURL, diff --git "a/src/slash/commands/Informaci\303\263n y Utilidad/embed.ts" "b/src/slash/commands/Informaci\303\263n y Utilidad/embed.ts" index 8e111f7..36c0ba7 100644 --- "a/src/slash/commands/Informaci\303\263n y Utilidad/embed.ts" +++ "b/src/slash/commands/Informaci\303\263n y Utilidad/embed.ts" @@ -76,12 +76,12 @@ export default class embed extends Command { return await interaction.showModal( new ModalBuilder() .setCustomId('embed:n:' + channel.id) - .setTitle('Embed') + .setTitle(translate(keys.embed.modal.title)) .setComponents( new ActionRowBuilder().setComponents( new TextInputBuilder() .setCustomId('title') - .setPlaceholder('My Awesome Embed') + .setPlaceholder(translate(keys.embed.modal.title_placeholder)) .setLabel(translate(keys.embed.modal.title_label)) .setMaxLength(256) .setStyle(TextInputStyle.Short) @@ -90,7 +90,7 @@ export default class embed extends Command { new ActionRowBuilder().setComponents( new TextInputBuilder() .setCustomId('description') - .setPlaceholder('This is my awesome embed!') + .setPlaceholder(translate(keys.embed.modal.description_placeholder)) .setLabel(translate(keys.embed.modal.description_label)) .setStyle(TextInputStyle.Paragraph) .setRequired(false), diff --git a/src/utils/locales.ts b/src/utils/locales.ts index c36d5ca..85f4e47 100644 --- a/src/utils/locales.ts +++ b/src/utils/locales.ts @@ -30,10 +30,17 @@ export default { 'successfully': "embed.successfully", 'missing_permissions': "embed.missing_permissions", 'modal': { + 'title': "embed.modal.title", 'title_label': "embed.modal.title_label", + 'title_placeholder': "embed.modal.title_placeholder", 'description_label': "embed.modal.description_label", + 'description_placeholder': "embed.modal.description_placeholder", 'color_label': "embed.modal.color_label", }, + 'buttons': { + 'send': "embed.buttons.send", + 'edit': "embed.buttons.edit", + }, 'invalid_input': "embed.invalid_input", }, 'github': { @@ -447,10 +454,17 @@ export default { 'successfully': string 'missing_permissions': string 'modal': { + 'title': string 'title_label': string + 'title_placeholder': string 'description_label': string + 'description_placeholder': string 'color_label': string } + 'buttons': { + 'send': string + 'edit': string + } 'invalid_input': string } 'github': { From 1ffa5441a50663d6db4becc84e52a565191b1a5e Mon Sep 17 00:00:00 2001 From: eliyya Date: Fri, 11 Aug 2023 18:37:46 -0600 Subject: [PATCH 12/88] autocomplete interactions cached --- src/cache/autocomplete.ts | 24 ----------------- src/cache/autocompletes.ts | 37 ++++++++++++++++++++++++++ src/cache/buttons.ts | 10 +++---- src/cache/commands.ts | 10 +++---- src/cache/events.ts | 10 +++---- src/cache/modals.ts | 10 +++---- src/deleteSlashCommands.ts | 2 +- src/events/client/interactionCreate.ts | 12 +++++---- src/events/client/ready.ts | 2 +- src/handlers/commands.ts | 10 +++---- src/slash/autocompletes/embed.ts | 8 ++++-- src/slash/autocompletes/play/play.ts | 18 +++---------- src/structures/Autocomplete.ts | 15 +++++++++-- 13 files changed, 94 insertions(+), 74 deletions(-) delete mode 100644 src/cache/autocomplete.ts create mode 100644 src/cache/autocompletes.ts diff --git a/src/cache/autocomplete.ts b/src/cache/autocomplete.ts deleted file mode 100644 index 2a571bf..0000000 --- a/src/cache/autocomplete.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { Collection } from 'discord.js' -import Autocomplete from '#structures/Autocomplete.js' - -class AutocompleteCache { - private static instance: AutocompleteCache - private readonly cache: Collection - - private constructor () { - this.cache = new Collection() - } - - public static getInstance (): AutocompleteCache { - if (!AutocompleteCache.instance) { - AutocompleteCache.instance = new AutocompleteCache() - } - return AutocompleteCache.instance - } - - public getCache (): Collection { - return this.cache - } -} - -export default AutocompleteCache.getInstance() diff --git a/src/cache/autocompletes.ts b/src/cache/autocompletes.ts new file mode 100644 index 0000000..7655d06 --- /dev/null +++ b/src/cache/autocompletes.ts @@ -0,0 +1,37 @@ +import { Collection, Snowflake } from 'discord.js' +import Autocomplete from '#structures/Autocomplete.js' + +class AutocompleteCache { + private static instance: AutocompleteCache + #cache: Collection + #interactions = new Collection() + + private constructor () { + this.#cache = new Collection() + } + + static getInstance (): AutocompleteCache { + if (!AutocompleteCache.instance) { + AutocompleteCache.instance = new AutocompleteCache() + } + return AutocompleteCache.instance + } + + get cache (): Collection { + return this.#cache + } + + canProced (userId: Snowflake, interactionId: Snowflake): boolean { + return this.#interactions.get(userId) === interactionId + } + + registerInteraction (userId: Snowflake, interactionId: Snowflake): void { + this.#interactions.set(userId, interactionId) + } + + removeInteraction (userId: Snowflake): void { + this.#interactions.delete(userId) + } +} + +export default AutocompleteCache.getInstance() diff --git a/src/cache/buttons.ts b/src/cache/buttons.ts index 74532c3..9717853 100644 --- a/src/cache/buttons.ts +++ b/src/cache/buttons.ts @@ -3,21 +3,21 @@ import Button from '#structures/Button.js' class ButtonCache { private static instance: ButtonCache - private readonly cache: Collection + #cache: Collection private constructor () { - this.cache = new Collection() + this.#cache = new Collection() } - public static getInstance (): ButtonCache { + static getInstance (): ButtonCache { if (!ButtonCache.instance) { ButtonCache.instance = new ButtonCache() } return ButtonCache.instance } - public getCache (): Collection { - return this.cache + get cache (): Collection { + return this.#cache } } diff --git a/src/cache/commands.ts b/src/cache/commands.ts index 566d8f6..5a4245b 100644 --- a/src/cache/commands.ts +++ b/src/cache/commands.ts @@ -4,21 +4,21 @@ import Command from '#structures/Command.js' class CommandCache { private static instance: CommandCache - private readonly cache: Collection + #cache: Collection private constructor () { - this.cache = new Collection() + this.#cache = new Collection() } - public static getInstance (): CommandCache { + static getInstance (): CommandCache { if (!CommandCache.instance) { CommandCache.instance = new CommandCache() } return CommandCache.instance } - public getCache (): Collection { - return this.cache + get cache (): Collection { + return this.#cache } } diff --git a/src/cache/events.ts b/src/cache/events.ts index 7f96b5d..cb0903a 100644 --- a/src/cache/events.ts +++ b/src/cache/events.ts @@ -3,21 +3,21 @@ import { Collection } from 'discord.js' import { BaseEvent } from '#structures/Events.js' class EventCache { private static instance: EventCache - private readonly cache: Collection + #cache: Collection private constructor () { - this.cache = new Collection() + this.#cache = new Collection() } - public static getInstance (): EventCache { + static getInstance (): EventCache { if (!EventCache.instance) { EventCache.instance = new EventCache() } return EventCache.instance } - public getCache (): Collection { - return this.cache + get cache (): Collection { + return this.#cache } } diff --git a/src/cache/modals.ts b/src/cache/modals.ts index ab1cef4..44af136 100644 --- a/src/cache/modals.ts +++ b/src/cache/modals.ts @@ -4,21 +4,21 @@ import Modal from '#structures/Modal.js' class ModalCache { private static instance: ModalCache - private readonly cache: Collection + #cache: Collection private constructor () { - this.cache = new Collection() + this.#cache = new Collection() } - public static getInstance (): ModalCache { + static getInstance (): ModalCache { if (!ModalCache.instance) { ModalCache.instance = new ModalCache() } return ModalCache.instance } - public getCache (): Collection { - return this.cache + get cache (): Collection { + return this.#cache } } diff --git a/src/deleteSlashCommands.ts b/src/deleteSlashCommands.ts index 341de65..81c0604 100644 --- a/src/deleteSlashCommands.ts +++ b/src/deleteSlashCommands.ts @@ -1,5 +1,5 @@ import cachedCommands from './cache/commands.js' -let body = cachedCommands.getCache().each((command) => { return command }) +const body = cachedCommands.cache.each((command) => { return command }) console.log(body) fetch('https://discord.com/api/v9/applications/834164602694139985/guilds/862635336165097483/commands', { method: 'PUT', diff --git a/src/events/client/interactionCreate.ts b/src/events/client/interactionCreate.ts index b4e37fd..5952fb0 100644 --- a/src/events/client/interactionCreate.ts +++ b/src/events/client/interactionCreate.ts @@ -1,4 +1,4 @@ -import autocomplete from '#cache/autocomplete.js' +import autocomplete from '#cache/autocompletes.js' import buttons from '#cache/buttons.js' import commands from '#cache/commands.js' import performanceMeters from '#cache/performanceMeters.js' @@ -29,7 +29,7 @@ export class interactionCreate extends BaseEvent { try { performanceMeters.set('interaction_' + interaction.id, new PerformanceMeter()) performanceMeters.get('interaction_' + interaction.id).start() - const cmd = commands.getCache().find(c => c.name === interaction.commandName) + const cmd = commands.cache.find(c => c.name === interaction.commandName) if (!cmd) return if (interaction.guild && cmd?.only_dm) return // <-- return statement here @@ -88,14 +88,16 @@ export class interactionCreate extends BaseEvent { async processButtonInteraction (interaction: ButtonInteraction) { logger.debug(`Button ${interaction.customId} pressed | ${interaction.user.username}`) - buttons.getCache().filter(b => b.match(interaction.customId)).map(async i => await i.run(interaction).catch(logger.error)) + await buttons.cache.find(b => b.match(interaction.customId))?.run(interaction).catch(logger.error) } async processAutocompleteInteraction (interaction: AutocompleteInteraction) { - autocomplete.getCache().filter(b => b.match(interaction.commandName)).map(async i => await i.run(interaction).catch(logger.error)) + autocomplete.registerInteraction(interaction.user.id, interaction.id) + const respond = await autocomplete.cache.find(b => b.match(interaction.commandName))?.run(interaction).catch(logger.error) + if (respond) autocomplete.removeInteraction(interaction.user.id) } async processModalSubmitInteraction (interaction: ModalSubmitInteraction) { - modals.getCache().filter(b => b.match(interaction.customId)).map(async i => await i.run(interaction).catch(logger.error)) + await modals.cache.find(b => b.match(interaction.customId))?.run(interaction).catch(logger.error) } } diff --git a/src/events/client/ready.ts b/src/events/client/ready.ts index cb035f8..61029a1 100644 --- a/src/events/client/ready.ts +++ b/src/events/client/ready.ts @@ -24,7 +24,7 @@ export default class Ready extends BaseEvent { // cluster // client.cluster.triggerReady() const arr: Command[] = [] - for (const [,command] of commands.getCache()) arr.push(command) + for (const [,command] of commands.cache) arr.push(command) if (process.env.TESTINGGUILD) { const guild = await client.guilds.fetch(process.env.TESTINGGUILD) guild.commands.set(arr).catch(logger.error) diff --git a/src/handlers/commands.ts b/src/handlers/commands.ts index 432557a..9aad4ae 100644 --- a/src/handlers/commands.ts +++ b/src/handlers/commands.ts @@ -3,19 +3,19 @@ import { Collection } from 'discord.js' import logger from '#utils/logger.js' import { join } from 'node:path' // caches -import autocompletes from '#cache/autocomplete.js' +import autocompletes from '#cache/autocompletes.js' import commands from '#cache/commands.js' import buttons from '#cache/buttons.js' import modals from '#cache/modals.js' // load commands -await loadCache(commands.getCache(), join(process.cwd(), 'build', 'slash', 'commands')) +await loadCache(commands.cache, join(process.cwd(), 'build', 'slash', 'commands')) // load buttons -await loadCache(buttons.getCache(), join(process.cwd(), 'build', 'slash', 'buttons')) +await loadCache(buttons.cache, join(process.cwd(), 'build', 'slash', 'buttons')) // load autocompletes -await loadCache(autocompletes.getCache(), join(process.cwd(), 'build', 'slash', 'autocompletes')) +await loadCache(autocompletes.cache, join(process.cwd(), 'build', 'slash', 'autocompletes')) // load modals -await loadCache(modals.getCache(), join(process.cwd(), 'build', 'slash', 'modals')) +await loadCache(modals.cache, join(process.cwd(), 'build', 'slash', 'modals')) // generic function to load cache async function loadCache (cache: Collection, dir: string) { diff --git a/src/slash/autocompletes/embed.ts b/src/slash/autocompletes/embed.ts index 6c78103..106e85c 100644 --- a/src/slash/autocompletes/embed.ts +++ b/src/slash/autocompletes/embed.ts @@ -16,7 +16,8 @@ export default class Embed extends Autocomplete { const suggestions: Array<{ name: string, value: string }> = [] const values = Object.values(Colors) if (!focused) { - return await interaction.respond([ + if (!this.canProced(interaction.user.id, interaction.id)) return false + await interaction.respond([ { name: 'Default', value: `${Colors.Default}` }, { name: '#000', value: `${Colors.Default}` }, { name: '0x000000', value: `${Colors.Default}` }, @@ -38,6 +39,7 @@ export default class Embed extends Autocomplete { { name: '0x0000ff', value: `${Colors.Blue}` }, { name: 'rgb 0 0 255', value: `${Colors.Blue}` }, ]).catch(logger.error) + return true } else if (focused.startsWith('#')) { if (!Color.isHex(focused)) { suggestions.push({ name: invalidInput, value: '#000000' }) } for (let i = 0, random = Math.floor(Math.random() * values.length); i < 24; i++, random = Math.floor(Math.random() * values.length)) { suggestions.push({ name: `#${values[random].toString(16)}`, value: `${values[random]}` }) } @@ -57,6 +59,8 @@ export default class Embed extends Autocomplete { suggestions.push(...colors.filter(([key]) => suggestions.some(({ name }) => name !== key)).map(([name, value]) => ({ name, value: `${value}` }))) } if (suggestions.length > 25) suggestions.length = 25 - return await interaction.respond(suggestions).catch(logger.error) + if (!this.canProced(interaction.user.id, interaction.id)) return false + await interaction.respond(suggestions).catch(logger.error) + return true } } diff --git a/src/slash/autocompletes/play/play.ts b/src/slash/autocompletes/play/play.ts index 5a27dfa..b4ea95c 100644 --- a/src/slash/autocompletes/play/play.ts +++ b/src/slash/autocompletes/play/play.ts @@ -1,8 +1,7 @@ import { AutocompleteInteraction } from 'discord.js' -// import Client from '../../../structures/Client' -// import logger from '#utils/logger.js' import Autocomplete from '#structures/Autocomplete.js' import yasha from 'yasha' +import logger from '#utils/logger.js' export default class Repeat extends Autocomplete { constructor () { @@ -13,17 +12,8 @@ export default class Repeat extends Autocomplete { const query = interaction.options.getFocused() const search = await yasha.Source.Youtube.search(query) if (search.length > 25) search.length = 25 - interaction.respond(search.map(r => ({ name: r.title ?? '', value: r.url ?? '' }))) - // try { - // const client = interaction.client as Client - // if (!interaction.options.getFocused()) return - // const result = await (await client.music.youtubei).music.getSearchSuggestions(interaction.options.getFocused()) - - // // TODO: Remove this any - // interaction.respond(result.map((choice: any) => ({ name: choice.suggestion?.text, value: choice.suggestion?.text }))) - // } catch (e) { - // logger.error(e) - // } - // return true + if (this.canProced(interaction.user.id, interaction.id)) return false + interaction.respond(search.map(r => ({ name: r.title ?? '', value: r.url ?? '' }))).catch(logger.error) + return true } } diff --git a/src/structures/Autocomplete.ts b/src/structures/Autocomplete.ts index cd18080..8e84da2 100644 --- a/src/structures/Autocomplete.ts +++ b/src/structures/Autocomplete.ts @@ -1,3 +1,4 @@ +import autocompletes from '#cache/autocompletes.js' import { AutocompleteInteraction } from 'discord.js' export default class Autocomplete { @@ -10,18 +11,28 @@ export default class Autocomplete { return this.#pattern } - async run (interaction: AutocompleteInteraction): Promise { + /** + * Run the autocomplete and return if it was responded or not + * @param {AutocompleteInteraction} interaction + * @returns {Promise} + */ + async run (interaction: AutocompleteInteraction): Promise { const v = interaction.options.getFocused() - return await interaction.respond([ + await interaction.respond([ { name: v, value: v, }, ]) + return true } match (id: string) { if (typeof this.#pattern === 'string') return this.#pattern === id else return this.#pattern.test(id) } + + canProced (userId: string, interactionId: string): boolean { + return autocompletes.canProced(userId, interactionId) + } } From b4e6b5b5ea69f3e345713e9e5d2113c665bd562d Mon Sep 17 00:00:00 2001 From: eliyya Date: Fri, 11 Aug 2023 19:02:43 -0600 Subject: [PATCH 13/88] autorun type:locales on buikd --- package.json | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index 86fc065..639bfe4 100644 --- a/package.json +++ b/package.json @@ -22,9 +22,8 @@ "scripts": { "start": "doppler run -- node build/index.js", "run": "node build/index.js", - "build": "tsc && doppler run --", + "build": "npm run type:locales && tsc && doppler run --", "dev": "concurrently \"tsc -w\" \"nodemon doppler run -- node build/index.js\"", - "tsc": "tsc", "tsc:watch": "nodemon --watch src --exec tsc", "type:locales": "cd locales && type-locales && mv locales.ts ../src/utils/locales.ts && cd .. && node build/utils/testLocales.js" }, @@ -32,12 +31,12 @@ "license": "ISC", "dependencies": { "@sentry/node": "7.61.0", - "@sentry/profiling-node": "^1.1.2", + "@sentry/profiling-node": "1.1.2", "bindings": "1.5.0", "canvas": "2.11.2", "cors": "2.8.5", - "datadog-metrics": "^0.11.0", - "dd-trace": "^4.11.1", + "datadog-metrics": "0.11.0", + "dd-trace": "4.11.1", "discord-hybrid-sharding": "github:meister03/discord-hybrid-sharding", "discord.js": "14.12.1", "dotenv": "16.3.1", @@ -46,11 +45,11 @@ "i18n": "0.15.1", "jsonwebtoken": "9.0.1", "moment": "2.29.4", - "mongoose": "7.4.1", + "mongoose": "7.4.3", "mongoose-encryption": "2.1.2", "signale": "1.4.0", "statcord.js": "3.4.3", - "stripe": "12.16.0", + "stripe": "12.18.0", "yasha": "github:eliyya/ts-yasha#node", "youtubei.js": "5.8.0" }, From 769c1c4e5762cc59edf36f6a3dd4c39cf5ae89fe Mon Sep 17 00:00:00 2001 From: eliyya Date: Fri, 11 Aug 2023 21:59:13 -0600 Subject: [PATCH 14/88] player.playing state --- src/structures/Player.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/structures/Player.ts b/src/structures/Player.ts index c775fa6..fa35d00 100644 --- a/src/structures/Player.ts +++ b/src/structures/Player.ts @@ -55,6 +55,8 @@ export default class Player extends yasha.TrackPlayer { if (this.guild.members.me?.permissionsIn(channel).has([PermissionFlagsBits.EmbedLinks, PermissionFlagsBits.SendMessages]) === false) return this.#textChannelId = options.textChannelId }).catch(() => null) + this.on('finish', () => (this.playing = false)) + this.on('error', (error: any) => (this.playing = false && logger.error(error))) } async connect () { @@ -72,6 +74,7 @@ export default class Player extends yasha.TrackPlayer { } override async play (track?: any) { + this.playing = true // TODO: Check if this code works if (!track && this.queue.current) super.play(this.queue.current) else super.play(track) From 3ee28ec7519792ab19620d9f9d917082c99838a1 Mon Sep 17 00:00:00 2001 From: eliyya Date: Sat, 12 Aug 2023 15:28:13 -0600 Subject: [PATCH 15/88] cooldown & refactor /play --- locales/en-US.json | 3 +- locales/es-ES.json | 3 +- locales/ja.json | 3 +- package.json | 9 +- src/cache/cooldowns.ts | 41 +++ src/cache/modals.ts | 10 +- src/cache/performanceMeters.ts | 3 +- src/events/client/interactionCreate.ts | 53 ++-- src/handlers/performanceMeter.ts | 2 +- .../Informaci\303\263n y Utilidad/shards.ts" | 83 ++++-- "src/slash/commands/M\303\272sica/play.ts" | 258 +++++++----------- src/structures/Autocomplete.ts | 7 - src/structures/MusicManager.ts | 49 ++-- .../M\303\272sica/functions/bot1missing.ts" | 37 --- .../M\303\272sica/functions/bot2missing.ts" | 37 --- .../M\303\272sica/functions/bot3missing.ts" | 37 --- .../M\303\272sica/functions/bot4missing.ts" | 96 ------- "src/structures/M\303\272sica/info.ts" | 50 ---- src/structures/NodeManager.ts | 2 +- src/structures/Player.ts | 4 +- src/utils/locales.ts | 2 + tsconfig.json | 119 ++------ 22 files changed, 293 insertions(+), 615 deletions(-) create mode 100644 src/cache/cooldowns.ts delete mode 100644 "src/structures/M\303\272sica/functions/bot1missing.ts" delete mode 100644 "src/structures/M\303\272sica/functions/bot2missing.ts" delete mode 100644 "src/structures/M\303\272sica/functions/bot3missing.ts" delete mode 100644 "src/structures/M\303\272sica/functions/bot4missing.ts" delete mode 100644 "src/structures/M\303\272sica/info.ts" diff --git a/locales/en-US.json b/locales/en-US.json index 782d155..03c5527 100644 --- a/locales/en-US.json +++ b/locales/en-US.json @@ -127,7 +127,8 @@ "same": "You need to be on the same voice channel as the bot to execute this command.", "not_voice": "You need to be on a voice channel to execute this command.", "not_reproducible": "The attached link does not contain reproducible content.", - "added": "{song} added to the list" + "added": "{song} added to the list", + "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." }, "reboot": { "all": "Rebooting all shards...", diff --git a/locales/es-ES.json b/locales/es-ES.json index e58a955..16a9156 100644 --- a/locales/es-ES.json +++ b/locales/es-ES.json @@ -136,7 +136,8 @@ "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista" + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { "all": "Reiniciando todos los fragmentos...", diff --git a/locales/ja.json b/locales/ja.json index 1096cb1..9ef9e7a 100644 --- a/locales/ja.json +++ b/locales/ja.json @@ -127,7 +127,8 @@ "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", "not_voice": "音声チャンネルに入ってください。", "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", - "added": "リストに{song}を追加" + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { "all": "すべてのシャードを再起動...", diff --git a/package.json b/package.json index 639bfe4..b26cb9f 100644 --- a/package.json +++ b/package.json @@ -22,9 +22,9 @@ "scripts": { "start": "doppler run -- node build/index.js", "run": "node build/index.js", - "build": "npm run type:locales && tsc && doppler run --", - "dev": "concurrently \"tsc -w\" \"nodemon doppler run -- node build/index.js\"", - "tsc:watch": "nodemon --watch src --exec tsc", + "build": "npm run type:locales && tsc", + "dev": "nodemon -e ts --exec \"npm start\"", + "tsc:watch": "nodemon -e ts --exec tsc", "type:locales": "cd locales && type-locales && mv locales.ts ../src/utils/locales.ts && cd .. && node build/utils/testLocales.js" }, "author": "", @@ -108,7 +108,8 @@ "@typescript-eslint/no-floating-promises": "off", "@typescript-eslint/restrict-plus-operands": "off", "@typescript-eslint/restrict-template-expressions": "off", - "@typescript-eslint/no-base-to-string": "off" + "@typescript-eslint/no-base-to-string": "off", + "curly": ["error", "multi"] } }, "prettier": { diff --git a/src/cache/cooldowns.ts b/src/cache/cooldowns.ts new file mode 100644 index 0000000..0357e48 --- /dev/null +++ b/src/cache/cooldowns.ts @@ -0,0 +1,41 @@ +import { Collection, Snowflake } from 'discord.js' +import commands from './commands.js' + +class CooldownCache { + private static instance: CooldownCache + #cache = new Collection() + + static getInstance (): CooldownCache { + if (!CooldownCache.instance) + CooldownCache.instance = new CooldownCache() + + return CooldownCache.instance + } + + get cache (): Collection { + return this.#cache + } + + canProced (userId: Snowflake, interactionName: string): boolean { + if (!this.#cache.has(`${userId}:${interactionName}`)) return true + const commandCooldown = commands.cache.find(c => c.name === interactionName)?.cooldown ?? 0 + if (!commandCooldown) return true + const cooldown = this.#cache.get(`${userId}:${interactionName}`) ?? Date.now() + if (Date.now() - cooldown > (commandCooldown * 1000)) return true + return false + } + + registerInteraction (userId: Snowflake, interactionName: string): void { + this.#cache.set(`${userId}:${interactionName}`, Date.now()) + } + + leftTime (userId: Snowflake, interactionName: string): number { + if (!this.#cache.has(`${userId}:${interactionName}`)) return 0 + const commandCooldown = commands.cache.find(c => c.name === interactionName)?.cooldown ?? 0 + if (!commandCooldown) return 0 + const cooldown = this.#cache.get(`${userId}:${interactionName}`) ?? Date.now() + return (commandCooldown * 1000) - (Date.now() - cooldown) + } +} + +export default CooldownCache.getInstance() diff --git a/src/cache/modals.ts b/src/cache/modals.ts index 44af136..1d82a38 100644 --- a/src/cache/modals.ts +++ b/src/cache/modals.ts @@ -4,16 +4,12 @@ import Modal from '#structures/Modal.js' class ModalCache { private static instance: ModalCache - #cache: Collection - - private constructor () { - this.#cache = new Collection() - } + #cache = new Collection() static getInstance (): ModalCache { - if (!ModalCache.instance) { + if (!ModalCache.instance) ModalCache.instance = new ModalCache() - } + return ModalCache.instance } diff --git a/src/cache/performanceMeters.ts b/src/cache/performanceMeters.ts index 7a4f12f..7c651f6 100644 --- a/src/cache/performanceMeters.ts +++ b/src/cache/performanceMeters.ts @@ -1,3 +1,4 @@ import { Collection } from 'discord.js' +import { PerformanceMeter } from '../handlers/performanceMeter.js' -export default new Collection() +export default new Collection() diff --git a/src/events/client/interactionCreate.ts b/src/events/client/interactionCreate.ts index 5952fb0..db970aa 100644 --- a/src/events/client/interactionCreate.ts +++ b/src/events/client/interactionCreate.ts @@ -5,18 +5,19 @@ import performanceMeters from '#cache/performanceMeters.js' import Client from '#structures/Client.js' import logger from '#utils/logger.js' import { AutocompleteInteraction, ButtonInteraction, ChatInputCommandInteraction, Interaction, ModalSubmitInteraction } from 'discord.js' -import { Timer as PerformanceMeter } from '../../handlers/performanceMeter.js' +import { PerformanceMeter as PerformanceMeter } from '../../handlers/performanceMeter.js' import { BaseEvent } from '../../structures/Events.js' import modals from '#cache/modals.js' +import cooldowns from '#cache/cooldowns.js' export class interactionCreate extends BaseEvent { async run (client: Client, interaction: Interaction) { - if (process.env.TESTINGGUILD) { + if (process.env.TESTINGGUILD) if (interaction.guild?.id !== process.env.TESTINGGUILD) return - } + if (interaction.member?.user.bot) return // return false if something went wrong, true if everything was okey - if (client.settings.debug === 'true' && interaction.type !== 2) { logger.debug('Interaction, type: ' + interaction.type + ' | ' + interaction.guild?.name ?? 'No guild' + ' | ' + interaction.user.username) } + if (client.settings.debug === 'true' && interaction.type !== 2) logger.debug('Interaction, type: ' + interaction.type + ' | ' + interaction.guild?.name ?? 'No guild' + ' | ' + interaction.user.username) if (!client.isReady()) return // <-- return statement here if (interaction.isChatInputCommand()) return await this.processChatImputCommand(interaction) @@ -37,50 +38,46 @@ export class interactionCreate extends BaseEvent { if (cmd.permissions) { // Check if the command is only for devs - if (cmd.permissions.dev && !(interaction.client as Client).devs.includes(interaction.user.id)) { + if (cmd.permissions.dev && !(interaction.client as Client).devs.includes(interaction.user.id)) return await interaction.reply({ content: 'Comando exclusivo para devs', ephemeral: true, }) - } + // Check if the bot has the needed permissions to run the command if (cmd.permissions.botPermissions) { const botMember = await interaction.guild?.members.fetchMe() const missingPermissions = botMember?.permissions.missing(cmd.permissions.botPermissions) // If there are missing permissions, return an error message - if (missingPermissions?.length) { + if (missingPermissions?.length) return await interaction.reply({ content: `No tengo los permisos necesarios para ejecutar este comando, Permisos necesarios: **${missingPermissions.join( ', ', )}**`, ephemeral: true, }) - } } - - // TODO: Add COOLDOWN functionality } - await cmd.run(interaction).catch(e => { - logger.error(e, '\x1b[33mCommand Info\x1b[0m', { - cmd: cmd.name, - options: JSON.stringify(interaction.options.data, (key, value) => { - if (key === 'client') return undefined - if (key === 'channel') return undefined - if (key === 'guild') return undefined - if (key === 'user') return undefined - if (key === 'member') return undefined - if (key === 'role') return undefined - return value - }), + if (!cooldowns.canProced(interaction.user.id, interaction.commandName)) return await interaction.reply({ + content: `Debes esperar ${Math.round(cooldowns.leftTime(interaction.user.id, interaction.commandName) / 1000)} segundos para volver a ejecutar este comando`, + }) + return await cmd.run(interaction) + .catch(e => { + logger.error(e, '\x1b[33mCommand Info\x1b[0m', { + cmd: cmd.name, + options: JSON.stringify(interaction.options.data, (key, value) => !['client', 'channel', 'guild', 'user', 'member', 'role'].includes(key) ? value : undefined, 4), + }) + interaction.reply({ + content: 'Ha ocurrido un error al ejecutar el comando, por favor, intenta de nuevo más tarde', + ephemeral: true, + }) }) - interaction.reply({ - content: 'Ha ocurrido un error al ejecutar el comando, por favor, intenta de nuevo más tarde', - ephemeral: true, + .finally(() => { + cooldowns.registerInteraction(interaction.user.id, interaction.commandName) + performanceMeters.get('interaction_' + interaction.id)?.stop() + performanceMeters.delete('interaction_' + interaction.id) }) - }) - await performanceMeters.get('interaction_' + interaction.id)?.stop() // the ping command stop the process - return performanceMeters.delete('interaction_' + interaction.id) } catch (e) { return logger.error(e) } diff --git a/src/handlers/performanceMeter.ts b/src/handlers/performanceMeter.ts index 8308184..bfa8180 100644 --- a/src/handlers/performanceMeter.ts +++ b/src/handlers/performanceMeter.ts @@ -1,5 +1,5 @@ -export class Timer { +export class PerformanceMeter { private startTime!: number private readonly endTime!: number diff --git "a/src/slash/commands/Informaci\303\263n y Utilidad/shards.ts" "b/src/slash/commands/Informaci\303\263n y Utilidad/shards.ts" index 777eb39..bc442d8 100644 --- "a/src/slash/commands/Informaci\303\263n y Utilidad/shards.ts" +++ "b/src/slash/commands/Informaci\303\263n y Utilidad/shards.ts" @@ -1,6 +1,7 @@ -import Client from '#structures/Client.js' -import Command from '#structures/Command.js' import { ChatInputCommandInteraction, EmbedBuilder } from 'discord.js' +import Command from '#structures/Command.js' +import Client from '#structures/Client.js' +import logger from '#utils/logger.js' export default class shards extends Command { constructor () { @@ -11,34 +12,13 @@ export default class shards extends Command { }) } - /** - * @param {Client} client - * @param {CommandInteraction} interaction - * @param {String[]} args - */ override async run (interaction: ChatInputCommandInteraction<'cached'>) { await interaction.deferReply() const client = interaction.client as Client const embeds = [] - const membersCount = await client.cluster.broadcastEval(c => c.guilds.cache.reduce((prev, guild) => prev + guild.memberCount, 0)) - const totalMembers = membersCount.reduce((prev, guildCount) => prev + guildCount, 0) - const guildCount = await client.cluster.fetchClientValues('guilds.cache.size') - const totalGuilds = guildCount.reduce((prev: any, guildCount: any) => prev + guildCount, 0) - const shardInfo = await client.cluster.broadcastEval((c) => ({ - id: c.cluster.id, - status: c.cluster.client.user.presence.status, - guilds: c.guilds.cache.size, - channels: c.channels.cache.size, - members: c.guilds.cache.reduce( - (prev, guild) => prev + guild.memberCount, - 0, - ), - memoryUsage: (process.memoryUsage().heapUsed / 1024 / 1024).toFixed(2), - players: c.music?.players?.size ?? 0, - playingPlayers: c.music?.players?.filter((p) => p.playing).size ?? 0, - ping: c.ws.ping, - } - )) + const totalMembers = await this.getMembersCount(client) + const totalGuilds = await this.getGuildsCount(client) + const shardInfo = await this.shardInfo(client) let totalPlayers = 0 let totalPlayingPlayers = 0 const totalMemory = shardInfo.reduce((prev, s) => prev + parseInt(s.memoryUsage), 0) @@ -82,6 +62,55 @@ export default class shards extends Command { ]) .setTimestamp(), ) - return await interaction.editReply({ embeds }) + try { + await interaction.editReply({ embeds }) + } catch (error) { + logger.error(error) + } + } + + async getMembersCount (client: Client) { + try { + const membersCount = await client.cluster.broadcastEval(c => c.guilds.cache.reduce((prev, guild) => prev + guild.memberCount, 0)) + const totalMembers = membersCount.reduce((prev, guildCount) => prev + guildCount, 0) + return totalMembers + } catch (error) { + logger.error(error) + return 0 + } + } + + async getGuildsCount (client: Client) { + try { + const guildCount = await client.cluster.fetchClientValues('guilds.cache.size') + const totalGuilds = guildCount.reduce((prev: any, guildCount: any) => prev + guildCount, 0) + return totalGuilds + } catch (error) { + logger.error(error) + return 0 + } + } + + async shardInfo (client: Client) { + try { + const shardInfo = await client.cluster.broadcastEval((c) => ({ + id: c.cluster.id, + status: c.cluster.client.user.presence.status, + guilds: c.guilds.cache.size, + channels: c.channels.cache.size, + members: c.guilds.cache.reduce( + (prev, guild) => prev + guild.memberCount, + 0, + ), + memoryUsage: (process.memoryUsage().heapUsed / 1024 / 1024).toFixed(2), + players: c.music?.players?.size ?? 0, + playingPlayers: c.music?.players?.filter((p) => p.playing).size ?? 0, + ping: c.ws.ping, + })) + return shardInfo + } catch (error) { + logger.error(error) + return [] + } } }; diff --git "a/src/slash/commands/M\303\272sica/play.ts" "b/src/slash/commands/M\303\272sica/play.ts" index 6c18f3f..2abff43 100644 --- "a/src/slash/commands/M\303\272sica/play.ts" +++ "b/src/slash/commands/M\303\272sica/play.ts" @@ -1,16 +1,19 @@ import { ApplicationCommandOptionType, ChatInputCommandInteraction, - Colors, EmbedBuilder, VoiceChannel, + GuildMember, + Colors, } from 'discord.js' -import { MusicCarouselShelf } from 'youtubei.js/dist/src/parser/nodes.js' +import { MusicCarouselShelf, MusicResponsiveListItem } from 'youtubei.js/dist/src/parser/nodes.js' import performanceMeters from '#cache/performanceMeters.js' -import Client from '#structures/Client.js' -import Command from '#structures/Command.js' import Translator, { keys } from '#utils/Translator.js' import formatTime from '#utils/formatTime.js' +import Command from '#structures/Command.js' +import Client from '#structures/Client.js' +import Player from '#structures/Player.js' +import { randomInt } from 'node:crypto' import logger from '#utils/logger.js' export default class play extends Command { @@ -35,8 +38,7 @@ export default class play extends Command { override async run (interaction: ChatInputCommandInteraction<'cached'>) { const client = interaction.client as Client const translate = Translator(interaction) - let player = client.music.players.get(interaction.guildId) - if (!interaction.member.voice.channelId) { + if (!interaction.member.voice.channelId) return await interaction.reply({ embeds: [ new EmbedBuilder().setColor(Colors.Red).setFooter({ @@ -46,15 +48,27 @@ export default class play extends Command { ], ephemeral: true, }) - } + let player = client.music.players.get(interaction.guildId) if (!player) { player = await client.music.createNewPlayer( interaction.member.voice.channel as VoiceChannel, interaction.channelId, ) - await player.connect() + try { + await player.connect() + } catch (error) { + return await interaction.reply({ + embeds: [ + new EmbedBuilder().setColor(Colors.Red).setFooter({ + text: translate(keys.play.cant_join), + iconURL: client.user?.displayAvatarURL(), + }), + ], + ephemeral: true, + }) + } } - if (player.voiceChannel.id !== interaction.member.voice.channelId) { + if (player.voiceChannel.id !== interaction.member.voice.channelId) return await interaction.reply({ embeds: [ new EmbedBuilder().setColor(Colors.Red).setFooter({ @@ -63,170 +77,75 @@ export default class play extends Command { }), ], ephemeral: true, - }) - } + }).catch(logger.error) + player.textChannelId = interaction.channelId // Si el usuario está en el mismo canal de voz que el bot try { await interaction.deferReply() - let search - const source = 'Youtube' const song = interaction.options.getString('song', false) - if (!song) { - const songs = ((await (await player.youtubei).music.getHomeFeed()).sections?.[0] as MusicCarouselShelf) - .contents - const songs2 = songs.filter((song: any) => song.item_type === 'song') - const randomIndex = Math.floor(Math.random() * songs2.length) - const song3 = songs2[randomIndex] - try { - // @ts-expect-error - search = await client.music.search(song3.id, interaction.member, source) - if (!search) throw new Error('No se ha encontrado la canción') - } catch (e) { - logger.error(e) - return await interaction.editReply({ - embeds: [ - new EmbedBuilder().setColor(15548997).setFooter({ - text: translate(keys.play.not_reproducible), - iconURL: client.user?.displayAvatarURL(), - }), - ], - }) - } - // search = await client.music.search(song3.id, interaction.member, source) - // const playlist = await (await player.youtubei).getPlaylist() - // if(playlist) { - // search = playlist - // } - } else { - try { - search = await client.music.search(song, interaction.member, source) - if (!search) throw new Error('No se ha encontrado la canción') - } catch (e) { - logger.error(e) - return await interaction.editReply({ - embeds: [ - new EmbedBuilder().setColor(15548997).setFooter({ - text: translate(keys.play.not_reproducible), - iconURL: client.user?.displayAvatarURL(), - }), - ], - }) - } - } - // console.log(typeof search) - - // if (search instanceof TrackPlaylist) { - // const firstTrack = search.first_track; - // let list = []; - - // if (firstTrack) list.push - - // while (search && search.length) { - // if (firstTrack) { - // for (let i = 0; i < search.length; i++) { - // if (search[i].equals(firstTrack)) { - // search.splice(i, 1); - // break; - // } - // } - // } - // list = list.concat(search); - // try { - // search = await search.next(); - // } - // catch (e) { - // logger.error(e); - // throw e; - // } - // } - - // if (list.length) { - // for (const track of list) { - // if (!track.requester) track.requester = interaction.member; - // player.queue.add(track); - // } - // } - - // const totalDuration = list.reduce((acc, cur) => acc + cur.duration, 0); - - // if (!player.playing && !player.paused) player.play(); - - // const e = new MessageEmbed() - // .setTitle(interaction.language.PLAY[11]) - // .setColor("GREEN") - // .addField(interaction.language.PLAY[12], `${search.title}`, true) - // .addField( - // interaction.language.PLAY[13], - // `\`${list.length}\``, - // true - // ) - // .addField( - // interaction.language.PLAY[5], - // interaction.user.tag, - // true - // ) - // .addField(interaction.language.PLAY[6], `${totalDuration}`, true) - // if (search.platform === 'Youtube') { - // e.setThumbnail( - // `https://img.youtube.com/vi/${search.id}/maxresdefault.jpg` - // ) - // } else if (search.platform === 'Spotify') { - // if (search.thumbnails[0]) - // e.setThumbnail(search.thumbnails[0]) - // } - // interaction.reply({ embeds: [e], content: '' }) - // } + const search = song ? await this.search(song, interaction.member) : await this.getRecomended(player) + if (!search) return await interaction.editReply({ + embeds: [ + new EmbedBuilder().setColor(Colors.Red).setFooter({ + text: translate(keys.play.not_reproducible), + iconURL: client.user?.displayAvatarURL(), + }), + ], + }).catch(logger.error) // TODO: Add streaming support - if (search.streams?.live) { + if (search.streams?.live) return await interaction.editReply({ content: 'We are currently working on supporting Live Streaming videos. :D', - }) - } + }).catch(logger.error) + player.queue.add(search) - if (!player.playing && !player.paused) player.play() - const embed = new EmbedBuilder().setColor(client.settings.color).setFields( - { - name: translate(keys.AUTHOR), - value: search.author ?? '', - inline: true, - }, - { - name: translate(keys.REQUESTER), - value: interaction.user.toString(), - inline: true, - }, - { - name: translate(keys.DURATION), - value: formatTime(Math.trunc(search.duration ?? 0), false), - inline: true, - }, - ) + if (!player.playing || player.paused) player.play() + const embed = new EmbedBuilder() + .setColor(client.settings.color) + .setFields( + { + name: translate(keys.AUTHOR), + value: search.author ?? '', + inline: true, + }, + { + name: translate(keys.REQUESTER), + value: interaction.user.toString(), + inline: true, + }, + { + name: translate(keys.DURATION), + value: formatTime(Math.trunc(search.duration ?? 0), false), + inline: true, + }, + ) if (client.settings.mode === 'development') { - let executionTime = await performanceMeters.get('interaction_' + interaction.id) - executionTime = executionTime?.stop() + const execution = performanceMeters.get('interaction_' + interaction.id) + const executionTime = execution?.stop() const finaltext = 'Internal execution time: ' + executionTime + 'ms' embed.setFooter({ text: finaltext }) } - if (source === 'Youtube') { - embed.setThumbnail(`https://img.youtube.com/vi/${search.id}/maxresdefault.jpg`) - embed.setDescription( - `**${translate(keys.play.added, { - song: `[${search.title}](https://www.youtube.com/watch?v=${search.id})`, - })}** <:pepeblink:967941236029788160>`, - ) - } else if (source === 'Spotify') { - if (search.thumbnails?.[0]) { - embed.setDescription( - `**${translate(keys.play.added, { - song: `[${search.title}](https://open.spotify.com/track/${search.id})`, - })}** <:pepeblink:967941236029788160>`, - ) - } - embed.setThumbnail(search.thumbnails?.[0].url ?? null) - } - interaction.editReply({ embeds: [embed] }) + // if (source === 'Youtube') { + embed.setThumbnail(`https://img.youtube.com/vi/${search.id}/maxresdefault.jpg`) + embed.setDescription( + `**${translate(keys.play.added, { + song: `[${search.title}](https://www.youtube.com/watch?v=${search.id})`, + })}** <:pepeblink:967941236029788160>`, + ) + // } + // else if (source === 'Spotify') { + // if (search.thumbnails?.[0]) + // embed.setDescription( + // `**${translate(keys.play.added, { + // song: `[${search.title}](https://open.spotify.com/track/${search.id})`, + // })}** <:pepeblink:967941236029788160>`, + // ) + + // embed.setThumbnail(search.thumbnails?.[0].url ?? null) + // } + await interaction.editReply({ embeds: [embed] }).catch(logger.error) } catch (e) { logger.error(e) interaction.editReply({ @@ -238,6 +157,27 @@ export default class play extends Command { return true } + async getRecomended (player: Player) { + try { + const home = await player.youtubei.music.getHomeFeed() + const songs = home.sections?.[0] as MusicCarouselShelf + return songs.contents?.[randomInt(songs.contents.length)] as MusicResponsiveListItem + } catch (error) { + logger.error(error) + return undefined + } + } + + async search (query: string, member: GuildMember) { + try { + const client = member.client as Client + return await client.music.search(query, member, 'Youtube') + } catch (error) { + logger.error(error) + return undefined + } + } + // override async autocomplete (interaction: AutocompleteInteraction): Promise { // const query = interaction.options.getFocused() // const search = await Source.Youtube.search(query) diff --git a/src/structures/Autocomplete.ts b/src/structures/Autocomplete.ts index 8e84da2..7747750 100644 --- a/src/structures/Autocomplete.ts +++ b/src/structures/Autocomplete.ts @@ -17,13 +17,6 @@ export default class Autocomplete { * @returns {Promise} */ async run (interaction: AutocompleteInteraction): Promise { - const v = interaction.options.getFocused() - await interaction.respond([ - { - name: v, - value: v, - }, - ]) return true } diff --git a/src/structures/MusicManager.ts b/src/structures/MusicManager.ts index 317f04c..5a3c86e 100644 --- a/src/structures/MusicManager.ts +++ b/src/structures/MusicManager.ts @@ -46,6 +46,7 @@ export default class MusicManager extends EventEmitter { voiceChannel: vc, textChannelId, volume, + innertube: await Innertube.create(), }) // Imprime un mensaje de depuración // logger.debug('Sign in successful: ', credentials); @@ -91,24 +92,23 @@ export default class MusicManager extends EventEmitter { const actionRowComponents = player.message.components[0]?.components if (actionRowComponents) { const pauseButton = actionRowComponents.find((c) => c.customId === 'pauseMusic' && c.type === ComponentType.Button) - if (pauseButton && pauseButton.type === 2) { // Make sure it's a button component - if (player.playing) { + if (pauseButton && pauseButton.type === 2) // Make sure it's a button component + if (player.playing) (pauseButton.data.emoji as Writeable) = { name: client.settings.emojis.white.pause.name.toString(), id: client.settings.emojis.white.pause.id.toString(), animated: pauseButton.data.emoji?.animated, } - } else { + else (pauseButton.data.emoji as Writeable) = { name: client.settings.emojis.white.play.name.toString(), id: client.settings.emojis.white.play.id.toString(), animated: pauseButton.data.emoji?.animated, } - } - } } } - if (player.message) { return await player.message.edit({ components: player.message.components, embeds: [updatedEmbed2] }) } else return false + if (player.message) return await player.message.edit({ components: player.message.components, embeds: [updatedEmbed2] }) + else return false } async trackStart (player: Player) { @@ -148,7 +148,7 @@ export default class MusicManager extends EventEmitter { ) const embed = new EmbedBuilder().setColor(client.settings.color) - if (song.platform === 'Youtube') { + if (song.platform === 'Youtube') embed .setImage(song.thumbnails[0].url) .setDescription( @@ -156,17 +156,17 @@ export default class MusicManager extends EventEmitter { song.id })** [${formatDuration(song.duration ?? 0)}] • ${song.requester.toString()}`, ) - } else if (song.platform === 'Spotify') { + else if (song.platform === 'Spotify') if (song.thumbnails?.[0]) { embed.setDescription( `**${translate(keys.PLAYING)}\n[${song.title}](https://open.spotify.com/track/${song.id})**`, ) embed.setImage(song.thumbnails[0].url) } - } + // ^ Si no tenemos un mensaje ya enviado, lo enviamos, y si lo tenemos, borramos el anterior y enviamos uno nuevo <3 player.message?.delete() - if (client.settings.debug === 'true') { + if (client.settings.debug === 'true') logger.music( 'Playing | ' + player.queue.current?.title + @@ -175,7 +175,7 @@ export default class MusicManager extends EventEmitter { ' | ' + player.queue.current?.requester.displayName, ) - } + return (player.message = await (await player.getTextChannel())?.send({ embeds: [embed], components: [row], @@ -283,9 +283,8 @@ export default class MusicManager extends EventEmitter { embeds: [e], content: '', }) - } else { + } else return await this.destroy(player.guild) - } } get (guild: Guild) { @@ -306,7 +305,7 @@ export default class MusicManager extends EventEmitter { async search (query: any, requester: any, source: 'Spotify' | 'Youtube' | 'Soundcloud') { let track - if (requester.youtubei) { + if (requester.youtubei) if (requester.youtubei.session.logged_in) { const rawData = await (await requester.youtubei.music.search(query, { limit: 1 })).sections[0] track = rawData.contents[0].id @@ -314,21 +313,21 @@ export default class MusicManager extends EventEmitter { (await requester.youtubei) track = await (await yasha.Source.Youtube.search(query))[0] } - } else track = await (await yasha.Source.Youtube.search(query))[0] + else track = await (await yasha.Source.Youtube.search(query))[0] track = await yasha.Source.resolve( track ? `https://www.youtube.com/watch?v=${track.id ? track.id : track}` : query, ) if (!track) logger.debug('No track found') - else { - // logger.log('track: ', track) - // if (track instanceof TrackPlaylist) { - // track.forEach(t => { - // t.requester = requester; - // t.icon = null; - // t.thumbnail; - // }); - // } else { + else + // logger.log('track: ', track) + // if (track instanceof TrackPlaylist) { + // track.forEach(t => { + // t.requester = requester; + // t.icon = null; + // t.thumbnail; + // }); + // } else { /* if (track.streams) { // console.log(track.streams) const stream = getMax(track.streams, 'bitrate') @@ -336,7 +335,7 @@ export default class MusicManager extends EventEmitter { } */ track.requester = requester // track.icon = null - } + return track // } } diff --git "a/src/structures/M\303\272sica/functions/bot1missing.ts" "b/src/structures/M\303\272sica/functions/bot1missing.ts" deleted file mode 100644 index 5701c5d..0000000 --- "a/src/structures/M\303\272sica/functions/bot1missing.ts" +++ /dev/null @@ -1,37 +0,0 @@ -import bot2missing from '../../../slash/commands/Música/functions/bot2missing'; -export default async function bot1missing(client, interaction, data, reqEndpoint) { - let bot2Availability; - let addToQueue2; - await interaction.guild.members - .fetch(process.env.bot2id) - .then(member => { - member.voice.channel ? (bot2Availability = false) : (bot2Availability = true); - if (member.voice.channel && member.voice.channel != interaction.member.voice.channel) - bot2Availability = false; - if (member.voice.channel && member.voice.channel == interaction.member.voice.channel) addToQueue2 = true; - }) - .catch(e => { - bot2Availability = false; - }); - - if (bot2Availability || addToQueue2) { - fetch(`http://${process.env.IP}:${process.env.bot2Port}/api/v1/${reqEndpoint}`, { - method: 'POST', - body: JSON.stringify(data), - headers: { - 'Content-Type': 'application/json', - }, - }) - .then(response => response.json()) - .then(embed => { - interaction.editReply({ - embeds: [embed], - }); - }) - .catch(() => { - bot2missing(client, interaction, data, reqEndpoint); - }); - } else { - bot2missing(client, interaction, data, reqEndpoint); - } -} diff --git "a/src/structures/M\303\272sica/functions/bot2missing.ts" "b/src/structures/M\303\272sica/functions/bot2missing.ts" deleted file mode 100644 index b23a2cd..0000000 --- "a/src/structures/M\303\272sica/functions/bot2missing.ts" +++ /dev/null @@ -1,37 +0,0 @@ -import bot3missing from '../../../slash/commands/Música/functions/bot3missing'; -export default async function bot1missing(client, interaction, data, reqEndpoint) { - let bot3Availability; - let addToQueue3; - await interaction.guild.members - .fetch(process.env.bot3id) - .then(member => { - member.voice.channel ? (bot3Availability = false) : (bot3Availability = true); - if (member.voice.channel && member.voice.channel != interaction.member.voice.channel) - bot3Availability = false; - if (member.voice.channel && member.voice.channel == interaction.member.voice.channel) addToQueue3 = true; - }) - .catch(e => { - bot3Availability = false; - }); - - if (bot3Availability || addToQueue3) { - fetch(`http://${process.env.IP}:${process.env.bot3Port}/api/v1/${reqEndpoint}`, { - method: 'POST', - body: JSON.stringify(data), - headers: { - 'Content-Type': 'application/json', - }, - }) - .then(response => response.json()) - .then(embed => { - interaction.editReply({ - embeds: [embed], - }); - }) - .catch(() => { - bot3missing(client, interaction, data, reqEndpoint); - }); - } else { - bot3missing(client, interaction, data, reqEndpoint); - } -} diff --git "a/src/structures/M\303\272sica/functions/bot3missing.ts" "b/src/structures/M\303\272sica/functions/bot3missing.ts" deleted file mode 100644 index 3a3ff15..0000000 --- "a/src/structures/M\303\272sica/functions/bot3missing.ts" +++ /dev/null @@ -1,37 +0,0 @@ -import bot4missing from '../../../slash/commands/Música/functions/bot4missing'; -export default async function bot1missing(client, interaction, data, reqEndpoint) { - let bot4Availability; - let addToQueue4; - await interaction.guild.members - .fetch(process.env.bot4id) - .then(member => { - member.voice.channel ? (bot4Availability = false) : (bot4Availability = true); - if (member.voice.channel && member.voice.channel != interaction.member.voice.channel) - bot4Availability = false; - if (member.voice.channel && member.voice.channel == interaction.member.voice.channel) addToQueue4 = true; - }) - .catch(e => { - bot4Availability = false; - }); - - if (bot4Availability || addToQueue4) { - fetch(`http://${process.env.IP}:${process.env.bot4Port}/api/v1/${reqEndpoint}`, { - method: 'POST', - body: JSON.stringify(data), - headers: { - 'Content-Type': 'application/json', - }, - }) - .then(response => response.json()) - .then(embed => { - interaction.editReply({ - embeds: [embed], - }); - }) - .catch(() => { - bot4missing(client, interaction, data, reqEndpoint); - }); - } else { - bot4missing(client, interaction, data, reqEndpoint); - } -} diff --git "a/src/structures/M\303\272sica/functions/bot4missing.ts" "b/src/structures/M\303\272sica/functions/bot4missing.ts" deleted file mode 100644 index dd11c45..0000000 --- "a/src/structures/M\303\272sica/functions/bot4missing.ts" +++ /dev/null @@ -1,96 +0,0 @@ -import { ColorResolvable, MessageActionRow, MessageButton, EmbedBuilder } from 'discord.js' -export default async function bot4missing(client, interaction, data, reqEndpoint) { - const embed = new EmbedBuilder().setColor(process.env.bot1Embed_Color as ColorResolvable) - - const desc = interaction.language.NOMUSICBOTS - const row = new MessageActionRow().addComponents( - new MessageButton().setStyle('PRIMARY').setLabel(`Leer más`).setCustomId('readMore'), - ) - - new Promise((resolve, reject) => { - interaction.guild.members - .fetch(process.env.bot2id) - .then(() => { - interaction.guild.members - .fetch(process.env.bot3id) - .then(() => { - interaction.guild.members - .fetch(process.env.bot4id) - .then(() => { - embed.setDescription(desc) - resolve(embed) - }) - .catch(() => { - embed.setDescription( - desc + - '[Node4 <:logonodeazul:968094477866659850>](https://discord.com/api/oauth2/authorize?client_id=853888393917497384&permissions=137475966272&scope=bot)', - ) - resolve(embed) - }) - }) - .catch(() => { - interaction.guild.members - .fetch(process.env.bot4id) - .then(() => { - embed.setDescription( - desc + - '[Node3 <:logonodenaranja:968094477019402292>](https://discord.com/api/oauth2/authorize?client_id=963954741837201540&permissions=137475966272&scope=bot)', - ) - resolve(embed) - }) - .catch(() => { - embed.setDescription( - desc + - '[Node3 <:logonodenaranja:968094477019402292>](https://discord.com/api/oauth2/authorize?client_id=963954741837201540&permissions=137475966272&scope=bot)\n\n[Node4 <:logonodeazul:968094477866659850>](https://discord.com/api/oauth2/authorize?client_id=853888393917497384&permissions=137475966272&scope=bot)', - ) - resolve(embed) - }) - }) - }) - .catch(() => { - interaction.guild.members - .fetch(process.env.bot3id) - .then(() => { - interaction.guild.members - .fetch(process.env.bot4id) - .then(() => { - embed.setDescription( - desc + - '[Node2 <:logonodemorado:968094477480771584>](https://discord.com/api/oauth2/authorize?client_id=963496530818506802&permissions=137475966272&scope=bot)', - ) - resolve(embed) - }) - .catch(() => { - embed.setDescription( - desc + - '[Node2 <:logonodemorado:968094477480771584>](https://discord.com/api/oauth2/authorize?client_id=963496530818506802&permissions=137475966272&scope=bot)\n\n[Node4 <:logonodeazul:968094477866659850>](https://discord.com/api/oauth2/authorize?client_id=853888393917497384&permissions=137475966272&scope=bot)', - ) - resolve(embed) - }) - }) - .catch(() => { - interaction.guild.members - .fetch(process.env.bot4id) - .then(() => { - embed.setDescription( - desc + - '[Node2 <:logonodemorado:968094477480771584>](https://discord.com/api/oauth2/authorize?client_id=963496530818506802&permissions=137475966272&scope=bot)\n\n[Node3 <:logonodenaranja:968094477019402292>](https://discord.com/api/oauth2/authorize?client_id=963954741837201540&permissions=137475966272&scope=bot)', - ) - resolve(embed) - }) - .catch(() => { - embed.setDescription( - desc + - '[Node2 <:logonodemorado:968094477480771584>](https://discord.com/api/oauth2/authorize?client_id=963496530818506802&permissions=137475966272&scope=bot)\n\n[Node3 <:logonodenaranja:968094477019402292>](https://discord.com/api/oauth2/authorize?client_id=963954741837201540&permissions=137475966272&scope=bot)\n\n[Node4 <:logonodeazul:968094477866659850>](https://discord.com/api/oauth2/authorize?client_id=853888393917497384&permissions=137475966272&scope=bot)', - ) - resolve(embed) - }) - }) - }) - }).then(resEmbed => { - interaction.editReply({ - embeds: [resEmbed], - components: [row], - }) - }) -} diff --git "a/src/structures/M\303\272sica/info.ts" "b/src/structures/M\303\272sica/info.ts" deleted file mode 100644 index 76b7207..0000000 --- "a/src/structures/M\303\272sica/info.ts" +++ /dev/null @@ -1,50 +0,0 @@ -import { Client, CommandInteraction, EmbedBuilder, ColorResolvable } from 'discord.js' -import Command from '#structures/Command.js' -module.exports = class info extends Command { - constructor(client) { - super(client, { - name: 'info', - description: 'Information about the multibot system.', - name_localizations: { - 'es-ES': 'info', - }, - description_localizations: { - 'es-ES': 'Información sobre el sistema multibot.', - }, - cooldown: 5, - }) - } - /**, - * @param {Client} client - * @param {CommandInteraction} interaction - * @param {String[]} args - */ - async run(client, interaction, args) { - const embed = new EmbedBuilder() - .setColor(process.env.bot1Embed_Color as ColorResolvable) - .setDescription( - `**¡Hola! ¿Buscabas una explicación verdad? Has llegado al sitio correcto **`, - ) - .addField( - '¿En qué consiste? <:monkaThink:969921099867508796>', - `Node dispone de un sistema de 4 bots, los cuales son gestionados desde una sola instancia. De esta manera, nosotros nos encargamos de gestionar vuestras solicitudes de escuchar música y que tengais un bot disponible.`, - ) - .addField( - '¿Por qué los 4 bots no tienen comandos? ', - 'Porque los bots son gestionados desde uno de ellos (normalmente Node Principal). Por lo tanto, no es necesario que cada bot tenga un comando para escuchar música.', - ) - .addField( - '¿Que ventajas me aporta? <:peepoBusinessTux:969921198181990440>', - `Gracias a este sistema, siempre usarás el mismo comando y nosotros elegiremos el bot que esté disponible. De esta manera evitamos que tengas que fijarte en qué bot está disponible para saber qué comando ejecutar.`, - ) - .setThumbnail( - interaction.member.displayAvatarURL({ - dynamic: true, - }), - ) - await interaction.editReply({ - embeds: [embed], - components: [], - }) - } -} diff --git a/src/structures/NodeManager.ts b/src/structures/NodeManager.ts index 21f21f6..b32c0c6 100644 --- a/src/structures/NodeManager.ts +++ b/src/structures/NodeManager.ts @@ -41,7 +41,7 @@ export default class NodeManager extends ClusterManager { this.players = new Collection() // eslint-disable-next-line @typescript-eslint/no-unused-vars let clusterList: any[] - if (!process.env.TOKEN) { throw new Error('No pudimos encontrar tu token, asegurate de añadirlo al .env con el nombre de TOKEN!') } + if (!process.env.TOKEN) throw new Error('No pudimos encontrar tu token, asegurate de añadirlo al .env con el nombre de TOKEN!') // Inicializa las colecciones para los clusters de diferentes nodos this.clustersArray.set('node', []) diff --git a/src/structures/Player.ts b/src/structures/Player.ts index fa35d00..ff608c1 100644 --- a/src/structures/Player.ts +++ b/src/structures/Player.ts @@ -28,7 +28,7 @@ export default class Player extends yasha.TrackPlayer { previouslyPaused = false pausedUser?: User resumedUser?: User - youtubei = Innertube.create() + youtubei: Innertube waitingMessage?: Message constructor (options: { musicManager: MusicManager @@ -38,12 +38,14 @@ export default class Player extends yasha.TrackPlayer { voiceChannel: VoiceChannel textChannelId: Snowflake guild?: Guild + innertube: Innertube }) { super({ external_packet_send: false, external_encrypt: false, normalize_volume: true, }) + this.youtubei = options.innertube this.manager = options.musicManager this.bitrate = options.bitrate this.volume = options.volume ?? 100 diff --git a/src/utils/locales.ts b/src/utils/locales.ts index 85f4e47..d89967e 100644 --- a/src/utils/locales.ts +++ b/src/utils/locales.ts @@ -128,6 +128,7 @@ export default { 'not_voice': "play.not_voice", 'not_reproducible': "play.not_reproducible", 'added': "play.added", + 'cant_join': "play.cant_join", }, 'reboot': { 'all': "reboot.all", @@ -552,6 +553,7 @@ export default { 'not_voice': string 'not_reproducible': string 'added': string + 'cant_join': string } 'reboot': { 'all': string diff --git a/tsconfig.json b/tsconfig.json index 8123501..816ef0f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,103 +1,34 @@ { - "exclude": [ - "src/structures/Música/*", - "build" - ], + "exclude": [ "src/structures/Música/*" ], "compilerOptions": { - /* Visit https://aka.ms/tsconfig.json to read more about this file */ - /* Projects */ - // "experimentalDecorators": true, - // "incremental": true, /* Enable incremental compilation */ - // "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */ - // "tsBuildInfoFile": "./", /* Specify the folder for .tsbuildinfo incremental compilation files. */ - // "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects */ - // "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */ - // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */ - /* Language and Environment */ - // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ - // "jsx": "preserve", /* Specify what JSX code is generated. */ - // "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */ - // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */ - // "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h' */ - // "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */ - // "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx*`.` */ - // "reactNamespace": "", /* Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit. */ - // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */ - // "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */ - /* Modules */ - "target": "esnext" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */, - "module": "ESNext" /* Specify what module code is generated. */, - "rootDir": "./src" /* Specify the root folder within your source files. */, - "moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. */, - "baseUrl": ".", /* Specify the base directory to resolve non-relative module names. */ + "target": "esnext", + "module": "ESNext", + "rootDir": "./src", + "moduleResolution": "node", + "baseUrl": ".", "paths": { "#structures/*": ["./src/structures/*"], "#utils/*": ["./src/utils/*"], "#cache/*": ["./src/cache/*"], "#models/*": ["./src/models/*"] - }, /* Specify a set of entries that re-map imports to additional lookup locations. */ - "outDir": "./build" /* Specify an output folder for all emitted files. */, - // "rootDirs": ["/src", "/locales"], /* Allow multiple folders to be treated as one when resolving modules. */ - // "typeRoots": [], /* Specify multiple folders that act like `./node_modules/@types`. */ - // "types": [], /* Specify type package names to be included without being referenced in a source file. */ - // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ - // "resolveJsonModule": true /* Enable importing .json files */, - // "noResolve": true, /* Disallow `import`s, `require`s or ``s from expanding the number of files TypeScript should add to a project. */ - /* JavaScript Support */ - // "allowJs": true /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */, - // "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */ - // "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`. */ - /* Emit */ - // "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ - // "declarationMap": true, /* Create sourcemaps for d.ts files. */ - // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */ - "sourceMap": true /* Create source map files for emitted JavaScript files. */, - // "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output. */ - "removeComments": true /* Disable emitting comments. */, - // "noEmit": true, /* Disable emitting files from a compilation. */ - // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */ - // "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types */ - // "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */ - // "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */ - // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ - // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */ - "inlineSources": true /* Include source code in the sourcemaps inside the emitted JavaScript. */, - // "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */ - // "newLine": "crlf", /* Set the newline character for emitting files. */ - // "stripInternal": true, /* Disable emitting declarations that have `@internal` in their JSDoc comments. */ - // "noEmitHelpers": true, /* Disable generating custom helper functions like `__extends` in compiled output. */ - "noEmitOnError": true /* Disable emitting files if any type checking errors are reported. */, - // "preserveConstEnums": true, /* Disable erasing `const enum` declarations in generated code. */ - // "declarationDir": "./", /* Specify the output directory for generated declaration files. */ - // "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */ - /* Interop Constraints */ - // "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */ - // "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */ - "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */, - // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */ - "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */, - /* Type Checking */ - "strict": true /* Enable all strict type-checking options. */, - "noImplicitAny": true /* Enable error reporting for expressions and declarations with an implied `any` type.. */, - // "strictNullChecks": true, /* When type checking, take into account `null` and `undefined`. */ - "strictFunctionTypes": true /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */, - // "strictBindCallApply": true, /* Check that the arguments for `bind`, `call`, and `apply` methods match the original function. */ - "strictPropertyInitialization": true /* Check for class properties that are declared but not set in the constructor. */, - "noImplicitThis": true /* Enable error reporting when `this` is given the type `any`. */, - "useUnknownInCatchVariables": true /* Type catch clause variables as 'unknown' instead of 'any'. */, - "alwaysStrict": true /* Ensure 'use strict' is always emitted. */, - // "noUnusedLocals": true, /* Enable error reporting when a local variables aren't read. */ - // "noUnusedParameters": true, /* Raise an error when a function parameter isn't read */ - // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */ - "noImplicitReturns": true /* Enable error reporting for codepaths that do not explicitly return in a function. */, - "noFallthroughCasesInSwitch": true /* Enable error reporting for fallthrough cases in switch statements. */, - // "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */ - "noImplicitOverride": true /* Ensure overriding members in derived classes are marked with an override modifier. */, - // "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type */ - // "allowUnusedLabels": true, /* Disable error reporting for unused labels. */ - // "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */ - /* Completeness */ - // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ - "skipLibCheck": true /* Skip type checking all .d.ts files. */ + }, + "outDir": "./build", + "sourceMap": true, + "removeComments": true, + "inlineSources": true, + "noEmitOnError": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "strict": true, + "noImplicitAny": true, + "strictFunctionTypes": true, + "strictPropertyInitialization": true, + "noImplicitThis": true, + "useUnknownInCatchVariables": true, + "alwaysStrict": true, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true, + "noImplicitOverride": true, + "skipLibCheck": true } } From 544b844cc47ff57a109a958f79a52711ca27ce18 Mon Sep 17 00:00:00 2001 From: eliyya Date: Sat, 12 Aug 2023 17:52:11 -0600 Subject: [PATCH 16/88] Music commands error handled --- package.json | 4 +- src/events/client/ready.ts | 14 ++-- src/handlers/antiCrash.ts | 55 ++++++------ "src/slash/commands/M\303\272sica/247.ts" | 49 ++++++----- "src/slash/commands/M\303\272sica/loop.ts" | 26 +++--- .../commands/M\303\272sica/nowplaying.ts" | 5 +- "src/slash/commands/M\303\272sica/pause.ts" | 30 +++---- "src/slash/commands/M\303\272sica/play.ts" | 5 +- "src/slash/commands/M\303\272sica/queue.ts" | 61 ++++++++------ "src/slash/commands/M\303\272sica/resume.ts" | 26 +++--- "src/slash/commands/M\303\272sica/skip.ts" | 84 ++++++++++--------- "src/slash/commands/M\303\272sica/stop.ts" | 22 ++--- src/structures/Client.ts | 2 +- 13 files changed, 208 insertions(+), 175 deletions(-) diff --git a/package.json b/package.json index b26cb9f..4779b5d 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "", "main": "build/index.js", "engines": { - "node": ">=18.12.0" + "node": ">=18.17.0" }, "signale": { "displayScope": true, @@ -113,7 +113,7 @@ } }, "prettier": { - "printWidth": 120, + "printWidth": 80, "tabWidth": 4, "useTabs": false, "semi": false, diff --git a/src/events/client/ready.ts b/src/events/client/ready.ts index 61029a1..d66e928 100644 --- a/src/events/client/ready.ts +++ b/src/events/client/ready.ts @@ -14,13 +14,13 @@ export default class Ready extends BaseEvent { // ... //* ADD DATABASE CONNECTION - if (process.env.MONGOURL) { + if (process.env.MONGOURL) connect(process.env.MONGOURL.toString(), { // @ts-expect-error useUnifiedTopology: true, useNewUrlParser: true, }).then(() => logger.db('Se ha conectado la base de datos correctamente.')) - } + // cluster // client.cluster.triggerReady() const arr: Command[] = [] @@ -28,12 +28,12 @@ export default class Ready extends BaseEvent { if (process.env.TESTINGGUILD) { const guild = await client.guilds.fetch(process.env.TESTINGGUILD) guild.commands.set(arr).catch(logger.error) - } else if (!process.env.TESTINGUILD) { + } else if (!process.env.TESTINGUILD) client.application?.commands.set(arr).catch(logger.error) - } + client.cluster.on('message', async (message2: any) => { const message = (message2 as IPCMessage).raw - if (message.content === 'statistics') { + if (message.content === 'statistics') try { // logger.debug(`Cluster's ${client.cluster.id} received statistics`) client.cluster @@ -72,13 +72,11 @@ export default class Ready extends BaseEvent { status: 500, }) } - } }) - if (!process.env.TESTINGUILD) { + if (!process.env.TESTINGUILD) setInterval(() => { updateStatus() }, 300000) - } async function updateStatus () { const promises = [ diff --git a/src/handlers/antiCrash.ts b/src/handlers/antiCrash.ts index efaaf81..eb724a9 100644 --- a/src/handlers/antiCrash.ts +++ b/src/handlers/antiCrash.ts @@ -7,7 +7,7 @@ import { EmbedBuilder, WebhookClient } from 'discord.js' class ErrorManager { client: Client - services: { sentry: { loggedIn: boolean } } + services = { sentry: { loggedIn: false } } webhookClient: WebhookClient constructor (client: Client) { this.client = client @@ -24,20 +24,10 @@ class ErrorManager { environment: process.env.NODE_ENV, tracesSampleRate: 0.5, }) - this.services = { - sentry: { - loggedIn: true, - }, - } + this.services.sentry.loggedIn = true Logger.log('Connected to Sentry') - } else { - this.services = { - sentry: { - loggedIn: false, - }, - } + } else Logger.warn('Sentry DSN missing or not in production environment.') - } this.webhookClient = new WebhookClient({ id: process.env.ERROR_WEBHOOK_ID ?? '', @@ -57,14 +47,13 @@ class ErrorManager { .setFields( { name: 'Razón', value: '```' + (await reason) + '```' }, { name: 'Error', value: '```' + (await p) + '```' }, - { name: 'Bot', value: this.client.user ? this.client.user.displayName : 'Unknown' }, + { name: 'Bot', value: this.client.user?.displayName ?? 'Unknown' }, ), ], }) - if (this.services.sentry.loggedIn) { + if (this.services.sentry.loggedIn) Sentry.captureException(p) - } Logger.warn(' [antiCrash] :: Unhandled Rejection/Catch') Logger.error(reason, p) @@ -79,14 +68,13 @@ class ErrorManager { name: 'Error', value: '```' + err + '```', }, - { name: 'Bot', value: this.client.user ? this.client.user.displayName : 'Unknown' }, + { name: 'Bot', value: this.client.user?.displayName ?? 'Unknown' }, ), ], }) - if (this.services.sentry.loggedIn) { + if (this.services.sentry.loggedIn) Sentry.captureException(err) - } Logger.warn(' [antiCrash] :: Uncaught Exception/Catch') Logger.error(err, origin) @@ -101,14 +89,13 @@ class ErrorManager { name: 'Error', value: '```' + err + '```', }, - { name: 'Bot', value: this.client.user ? this.client.user.displayName : 'Unknown' }, + { name: 'Bot', value: this.client.user?.displayName ?? 'Unknown' }, ), ], }) - if (this.services.sentry.loggedIn) { + if (this.services.sentry.loggedIn) Sentry.captureException(err) - } Logger.warn(' [antiCrash] :: Uncaught Exception/Catch (MONITOR)') Logger.error(err, origin) @@ -124,13 +111,33 @@ class ErrorManager { ], }) - if (this.services.sentry.loggedIn) { + if (this.services.sentry.loggedIn) Sentry.captureMessage('Multiple Resolves: ' + reason) - } Logger.warn(' [antiCrash] :: Multiple Resolves') Logger.error(reason) } + + captureException (error: Error) { + if (this.services.sentry.loggedIn) + Sentry.captureException(error) + const origin = error.stack?.split('\n')[1].trim().split(' ')[1] + const reason = error.stack?.split('\n')[0].trim() + this.webhookClient.send({ + embeds: [ + new EmbedBuilder() + .setColor(15548997) + .setFields( + { name: 'Origen', value: '```' + origin + '```' }, + { + name: 'Razón', + value: '```' + reason + '```', + }, + { name: 'Bot', value: this.client.user?.displayName ?? 'Unknown' }) + .setDescription('```\n' + error.stack + '\n```'), + ], + }) + } } export default ErrorManager diff --git "a/src/slash/commands/M\303\272sica/247.ts" "b/src/slash/commands/M\303\272sica/247.ts" index af874da..07f10bc 100644 --- "a/src/slash/commands/M\303\272sica/247.ts" +++ "b/src/slash/commands/M\303\272sica/247.ts" @@ -1,9 +1,8 @@ -import { MessageHelper } from '../../../handlers/messageHandler.js' -import Client from '#structures/Client.js' -import Command from '#structures/Command.js' -import Translator, { keys, randomMessage } from '../../../utils/Translator.js' - +import Translator, { keys, randomMessage } from '#utils/Translator.js' import { ChatInputCommandInteraction, EmbedBuilder } from 'discord.js' +import Command from '#structures/Command.js' +import Client from '#structures/Client.js' +import logger from '#utils/logger.js' export default class stayinvoice extends Command { constructor () { @@ -15,14 +14,14 @@ export default class stayinvoice extends Command { }) } - override async run (interaction: ChatInputCommandInteraction<'cached'>) { + override async run (interaction: ChatInputCommandInteraction) { + if (!interaction.inCachedGuild()) return const client = interaction.client as Client const translate = Translator(interaction) const msgr = randomMessage(translate, keys.skip.messages) - const message = new MessageHelper(interaction) const player = client.music.players.get(interaction.guild.id) - if (!player) { - return await message.sendMessage( + if (!player) + return await interaction.reply( { embeds: [ new EmbedBuilder().setColor(client.settings.color).setFooter({ @@ -30,23 +29,33 @@ export default class stayinvoice extends Command { iconURL: interaction.user.displayAvatarURL(), }), ], + ephemeral: true, }, ) - } + .catch(logger.error) + if (player.stayInVc) { player.stayInVc = false - const embed = new EmbedBuilder() - .setColor(client.settings.color) - .setAuthor({ iconURL: interaction.user.displayAvatarURL(), name: interaction.user.displayName }) - .setTitle(translate(keys[247].disabled)) - return await message.sendMessage({ embeds: [embed] }) + return await interaction.reply({ + embeds: [ + new EmbedBuilder() + .setColor(client.settings.color) + .setAuthor({ iconURL: interaction.user.displayAvatarURL(), name: interaction.user.displayName }) + .setTitle(translate(keys[247].disabled)), + ], + }) + .catch(logger.error) } else { player.stayInVc = true - const embed = new EmbedBuilder() - .setColor(client.settings.color) - .setAuthor({ iconURL: interaction.user.displayAvatarURL(), name: interaction.user.displayName }) - .setTitle(translate(keys[247].enabled)) - return await message.sendMessage({ embeds: [embed] }) + return await interaction.reply({ + embeds: [ + new EmbedBuilder() + .setColor(client.settings.color) + .setAuthor({ iconURL: interaction.user.displayAvatarURL(), name: interaction.user.displayName }) + .setTitle(translate(keys[247].enabled)), + ], + }) + .catch(logger.error) } } } diff --git "a/src/slash/commands/M\303\272sica/loop.ts" "b/src/slash/commands/M\303\272sica/loop.ts" index 9356815..faf6b86 100644 --- "a/src/slash/commands/M\303\272sica/loop.ts" +++ "b/src/slash/commands/M\303\272sica/loop.ts" @@ -13,11 +13,12 @@ export default class Loop extends Command { }) } - override async run (interaction: ChatInputCommandInteraction<'cached'>) { + override async run (interaction: ChatInputCommandInteraction) { + if (!interaction.inCachedGuild()) return const client = interaction.client as Client const translate = Translator(interaction) const player = client.music.players.get(interaction.guild.id) - if (!player) { + if (!player) return await interaction.reply({ embeds: [ new EmbedBuilder().setColor(client.settings.color).setFooter({ @@ -27,10 +28,9 @@ export default class Loop extends Command { ], ephemeral: true, }) - } - await interaction.deferReply() + .catch(logger.error) - if (!interaction.member.voice) { + if (!interaction.member.voice) return await interaction.reply({ embeds: [ new EmbedBuilder().setColor(Colors.Red).setFooter({ @@ -40,9 +40,9 @@ export default class Loop extends Command { ], ephemeral: true, }) - .catch(e => logger.debug(e)) - } - if (interaction.member.voice.channelId !== player.voiceChannel.id) { + .catch(logger.error) + + if (interaction.member.voice.channelId !== player.voiceChannel.id) return await interaction.reply({ embeds: [ new EmbedBuilder().setColor(Colors.Red).setFooter({ @@ -52,9 +52,9 @@ export default class Loop extends Command { ], ephemeral: true, }) - .catch(e => logger.debug(e)) - } - if (!player.queue.current) { + .catch(logger.error) + + if (!player.queue.current) return await interaction.reply({ embeds: [ new EmbedBuilder().setColor(client.settings.color).setFooter({ @@ -64,7 +64,8 @@ export default class Loop extends Command { ], ephemeral: true, }) - } + .catch(logger.error) + if (!player.trackRepeat) { player.setQueueRepeat(true) player.setTrackRepeat(false) @@ -79,5 +80,6 @@ export default class Loop extends Command { }), ], }) + .catch(logger.error) } } diff --git "a/src/slash/commands/M\303\272sica/nowplaying.ts" "b/src/slash/commands/M\303\272sica/nowplaying.ts" index f871282..873b265 100644 --- "a/src/slash/commands/M\303\272sica/nowplaying.ts" +++ "b/src/slash/commands/M\303\272sica/nowplaying.ts" @@ -1,5 +1,6 @@ -import Command from '#structures/Command.js' import { ChatInputCommandInteraction } from 'discord.js' +import Command from '#structures/Command.js' +import logger from '#utils/logger.js' // import Client from '#structures/Client.js' // import Translator, { keys } from '#utils/Translator.js' // import { MessageHelper } from '../../../handlers/messageHandler.js' @@ -30,7 +31,7 @@ export default class NowPlaying extends Command { ], }, true) } */ - return await interaction.reply({ content: 'En desarrollo, comando no disponible' }) + return await interaction.reply({ content: 'En desarrollo, comando no disponible' }).catch(logger.error) // const song = player.queue.current // const parsedCurrentDuration = moment // .duration(player.position, 'milliseconds') diff --git "a/src/slash/commands/M\303\272sica/pause.ts" "b/src/slash/commands/M\303\272sica/pause.ts" index 7089dcc..c12195c 100644 --- "a/src/slash/commands/M\303\272sica/pause.ts" +++ "b/src/slash/commands/M\303\272sica/pause.ts" @@ -1,8 +1,7 @@ import { ChatInputCommandInteraction, Colors, EmbedBuilder } from 'discord.js' -import Client from '#structures/Client.js' -import Command from '#structures/Command.js' import Translator, { keys } from '#utils/Translator.js' - +import Command from '#structures/Command.js' +import Client from '#structures/Client.js' import logger from '#utils/logger.js' export default class Pause extends Command { @@ -15,11 +14,12 @@ export default class Pause extends Command { }) } - override async run (interaction: ChatInputCommandInteraction<'cached'>) { + override async run (interaction: ChatInputCommandInteraction) { + if (!interaction.inCachedGuild()) return const client = interaction.client as Client const translate = Translator(interaction) const player = client.music.players.get(interaction.guild.id) - if (!player) { + if (!player) return await interaction.reply({ embeds: [ new EmbedBuilder().setColor(client.settings.color).setFooter({ @@ -29,9 +29,9 @@ export default class Pause extends Command { ], ephemeral: true, }) - } + .catch(logger.error) - if (!interaction.member.voice) { + if (!interaction.member.voice) return await interaction.reply({ embeds: [ new EmbedBuilder().setColor(Colors.Red).setFooter({ @@ -41,11 +41,10 @@ export default class Pause extends Command { ], ephemeral: true, }) - .catch(e => logger.debug(e)) - } + .catch(logger.error) const vc = player.voiceChannel - if (interaction.member.voice.channelId !== vc.id) { + if (interaction.member.voice.channelId !== vc.id) return await interaction.reply({ embeds: [ new EmbedBuilder().setColor(Colors.Red).setFooter({ @@ -55,10 +54,9 @@ export default class Pause extends Command { ], ephemeral: true, }) - .catch(e => logger.debug(e)) - } + .catch(logger.error) - if (!player.queue.current) { + if (!player.queue.current) return await interaction.reply({ embeds: [ new EmbedBuilder().setColor(client.settings.color).setFooter({ @@ -68,7 +66,8 @@ export default class Pause extends Command { ], ephemeral: true, }) - } + .catch(logger.error) + client.music.trackPause(player, interaction) return await interaction.reply({ @@ -81,6 +80,7 @@ export default class Pause extends Command { ) .setFooter({ text: interaction.user.username, iconURL: interaction.user.displayAvatarURL() }), ], - }).catch(e => logger.debug(e)) + }) + .catch(logger.error) } } diff --git "a/src/slash/commands/M\303\272sica/play.ts" "b/src/slash/commands/M\303\272sica/play.ts" index 2abff43..00e948e 100644 --- "a/src/slash/commands/M\303\272sica/play.ts" +++ "b/src/slash/commands/M\303\272sica/play.ts" @@ -158,22 +158,25 @@ export default class play extends Command { } async getRecomended (player: Player) { + const client = player.guild.client as Client try { const home = await player.youtubei.music.getHomeFeed() const songs = home.sections?.[0] as MusicCarouselShelf return songs.contents?.[randomInt(songs.contents.length)] as MusicResponsiveListItem } catch (error) { logger.error(error) + client.errorHandler.captureException(error as Error) return undefined } } async search (query: string, member: GuildMember) { + const client = member.client as Client try { - const client = member.client as Client return await client.music.search(query, member, 'Youtube') } catch (error) { logger.error(error) + client.errorHandler.captureException(error as Error) return undefined } } diff --git "a/src/slash/commands/M\303\272sica/queue.ts" "b/src/slash/commands/M\303\272sica/queue.ts" index 62c1615..d13db71 100644 --- "a/src/slash/commands/M\303\272sica/queue.ts" +++ "b/src/slash/commands/M\303\272sica/queue.ts" @@ -1,9 +1,9 @@ import { ChatInputCommandInteraction, EmbedBuilder } from 'discord.js' -import { MessageHelper } from '../../../handlers/messageHandler.js' -import Client from '#structures/Client.js' -import Command from '#structures/Command.js' import Translator, { keys } from '#utils/Translator.js' import formatTime from '#utils/formatTime.js' +import Command from '#structures/Command.js' +import Client from '#structures/Client.js' +import logger from '#utils/logger.js' export default class Queue extends Command { constructor () { @@ -18,35 +18,39 @@ export default class Queue extends Command { override async run (interaction: ChatInputCommandInteraction<'cached'>) { const client = interaction.client as Client const translate = Translator(interaction) - const message = new MessageHelper(interaction) const player = client.music.players.get(interaction.guild.id) - if (!player) { - return await message.sendMessage({ + if (!player) + return await interaction.reply({ embeds: [ - new EmbedBuilder().setColor(client.settings.color).setFooter({ - text: translate(keys.queue.no_queue), - iconURL: interaction.user.displayAvatarURL(), - }), + new EmbedBuilder() + .setColor(client.settings.color) + .setFooter({ + text: translate(keys.queue.no_queue), + iconURL: interaction.user.displayAvatarURL(), + }), ], - }) - } - if (!player.queue.current) { + ephemeral: true, + }).catch(logger.error) + + if (!player.queue.current) return await interaction.reply({ embeds: [ - new EmbedBuilder().setColor(client.settings.color).setFooter({ - text: translate(keys.queue.no_queue), - iconURL: interaction.user.displayAvatarURL(), - }), + new EmbedBuilder() + .setColor(client.settings.color) + .setFooter({ + text: translate(keys.queue.no_queue), + iconURL: interaction.user.displayAvatarURL(), + }), ], + ephemeral: true, }) - } const { title } = player.queue.current const { queue } = player player.queue.retrieve(1) - if (!player.queue[0] && player.queue.current) { + if (!player.queue[0] && player.queue.current) return await interaction.reply({ embeds: [ new EmbedBuilder() @@ -68,7 +72,7 @@ export default class Queue extends Command { .setColor(client.settings.color), ], }) - } + .catch(logger.error) const x = 10 let i = -1 @@ -86,16 +90,18 @@ export default class Queue extends Command { ) .join('\n') - if (!queuelist) { + if (!queuelist) return await interaction.reply({ embeds: [ - new EmbedBuilder().setColor(client.settings.color).setFooter({ - text: translate(keys.queue.no_page), - iconURL: interaction.user.displayAvatarURL(), - }), + new EmbedBuilder() + .setColor(client.settings.color) + .setFooter({ + text: translate(keys.queue.no_page), + iconURL: interaction.user.displayAvatarURL(), + }), ], }) - } + .catch(logger.error) return await interaction.reply({ embeds: [ @@ -113,7 +119,7 @@ export default class Queue extends Command { .setThumbnail(client.user.displayAvatarURL()) .setAuthor({ name: `${translate(keys.queue.queue, { - name: interaction.user.username ?? 'Unknown', + name: interaction.user.username, })} (${Math.floor(x / 10)} / ${Math.floor((player.queue.slice(1).length + 10) / 10)})`, iconURL: 'https://i.imgur.com/CCqeomm.gif', }) @@ -124,5 +130,6 @@ export default class Queue extends Command { .setColor(client.settings.color), ], }) + .catch(logger.error) } } diff --git "a/src/slash/commands/M\303\272sica/resume.ts" "b/src/slash/commands/M\303\272sica/resume.ts" index b59733b..9494673 100644 --- "a/src/slash/commands/M\303\272sica/resume.ts" +++ "b/src/slash/commands/M\303\272sica/resume.ts" @@ -14,11 +14,12 @@ export default class Resume extends Command { }) } - override async run (interaction: ChatInputCommandInteraction<'cached'>) { + override async run (interaction: ChatInputCommandInteraction) { + if (!interaction.inCachedGuild()) return const client = interaction.client as Client const translate = Translator(interaction) const player = client.music.players.get(interaction.guild.id) - if (!player) { + if (!player) return await interaction.reply({ embeds: [ new EmbedBuilder().setColor(client.settings.color).setFooter({ @@ -28,10 +29,11 @@ export default class Resume extends Command { ], ephemeral: true, }) - } + .catch(logger.error) + await interaction.deferReply() - if (!interaction.member.voice) { + if (!interaction.member.voice) return await interaction.reply({ embeds: [ new EmbedBuilder().setColor(Colors.Red).setFooter({ @@ -41,11 +43,10 @@ export default class Resume extends Command { ], ephemeral: true, }) - .catch(e => logger.debug(e)) - } + .catch(logger.error) const vc = player.voiceChannel - if (interaction.member.voice.channelId !== vc.id) { + if (interaction.member.voice.channelId !== vc.id) return await interaction.reply({ embeds: [ new EmbedBuilder().setColor(Colors.Red).setFooter({ @@ -55,10 +56,9 @@ export default class Resume extends Command { ], ephemeral: true, }) - .catch(e => logger.debug(e)) - } + .catch(logger.error) - if (!player.queue.current) { + if (!player.queue.current) return await interaction.reply({ embeds: [ new EmbedBuilder().setColor(client.settings.color).setFooter({ @@ -68,7 +68,8 @@ export default class Resume extends Command { ], ephemeral: true, }) - } + .catch(logger.error) + player.pause(false) interaction.reply({ @@ -81,7 +82,8 @@ export default class Resume extends Command { ) .setFooter({ text: interaction.user.username, iconURL: interaction.user.displayAvatarURL() }), ], - }).catch(e => logger.debug(e)) + }) + .catch(logger.error) return player.skip() } } diff --git "a/src/slash/commands/M\303\272sica/skip.ts" "b/src/slash/commands/M\303\272sica/skip.ts" index 22faa9b..059e13b 100644 --- "a/src/slash/commands/M\303\272sica/skip.ts" +++ "b/src/slash/commands/M\303\272sica/skip.ts" @@ -1,5 +1,4 @@ import { ChatInputCommandInteraction, Colors, EmbedBuilder } from 'discord.js' -import { MessageHelper } from '../../../handlers/messageHandler.js' import Client from '#structures/Client.js' import Command from '#structures/Command.js' import Translator, { keys } from '#utils/Translator.js' @@ -19,60 +18,63 @@ export default class skip extends Command { override async run (interaction: ChatInputCommandInteraction<'cached'>) { const client = interaction.client as Client const translate = Translator(interaction) - const message = new MessageHelper(interaction) const player = client.music.players.get(interaction.guild.id) - if (!player) { - return await message.sendMessage({ + if (!player) + return await interaction.reply({ embeds: [ - new EmbedBuilder().setColor(client.settings.color).setFooter({ - text: translate(keys.queue.no_queue), - iconURL: interaction.user.displayAvatarURL(), - }), + new EmbedBuilder() + .setColor(client.settings.color) + .setFooter({ + text: translate(keys.queue.no_queue), + iconURL: interaction.user.displayAvatarURL(), + }), ], + ephemeral: true, }) - } + .catch(logger.error) - if (!interaction.member.voice) { - return await message - .sendMessage({ - embeds: [ - new EmbedBuilder().setColor(Colors.Red).setFooter({ + if (!interaction.member.voice) + return await interaction.reply({ + embeds: [ + new EmbedBuilder() + .setColor(Colors.Red) + .setFooter({ text: translate(keys.skip.no_same), iconURL: interaction.user.displayAvatarURL(), }), - ], - }) - .catch(e => logger.debug(e)) - } + ], + ephemeral: true, + }) + .catch(console.error) const vc = player.voiceChannel - if (interaction.member.voice.channelId !== vc.id) { - return await message - .sendMessage({ - embeds: [ - new EmbedBuilder().setColor(Colors.Red).setFooter({ - text: translate(keys.skip.no_same), - iconURL: interaction.user.displayAvatarURL(), - }), - ], - }) - .catch(e => logger.debug(e)) - } + if (interaction.member.voice.channelId !== vc.id) + return await interaction.reply({ + embeds: [ + new EmbedBuilder().setColor(Colors.Red).setFooter({ + text: translate(keys.skip.no_same), + iconURL: interaction.user.displayAvatarURL(), + }), + ], + ephemeral: true, + }) + .catch(logger.error) if (!player.queue.current) return if (player.trackRepeat) player.setTrackRepeat(false) if (player.queueRepeat) player.setQueueRepeat(false) - - const embed = new EmbedBuilder() - .setColor(client.settings.color) - .setTitle(translate(keys.SUCCESSEMBED)) - .setDescription( - translate(keys.skip.skiped, { - song: player.queue.current.title, - }), - ) - .setFooter({ text: interaction.user.username, iconURL: interaction.user.displayAvatarURL() }) - message.sendMessage({ embeds: [embed] }).catch(e => logger.debug(e)) + interaction.reply({ + embeds: [ + new EmbedBuilder() + .setColor(client.settings.color) + .setTitle(translate(keys.SUCCESSEMBED)) + .setDescription( + translate(keys.skip.skiped, { + song: player.queue.current.title, + }), + ) + .setFooter({ text: interaction.user.username, iconURL: interaction.user.displayAvatarURL() })], + }).catch(logger.error) return player.skip() } } diff --git "a/src/slash/commands/M\303\272sica/stop.ts" "b/src/slash/commands/M\303\272sica/stop.ts" index 591c6a9..d397848 100644 --- "a/src/slash/commands/M\303\272sica/stop.ts" +++ "b/src/slash/commands/M\303\272sica/stop.ts" @@ -1,5 +1,4 @@ import { ChatInputCommandInteraction, EmbedBuilder } from 'discord.js' -import { MessageHelper } from '../../../handlers/messageHandler.js' import Client from '#structures/Client.js' import Command from '#structures/Command.js' import Translator, { keys } from '#utils/Translator.js' @@ -18,10 +17,9 @@ export default class Stop extends Command { override async run (interaction: ChatInputCommandInteraction<'cached'>) { const client = interaction.client as Client const translate = Translator(interaction) - const message = new MessageHelper(interaction) const player = client.music.players.get(interaction.guild.id) - if (!player) { - return await message.sendMessage({ + if (!player) + return await interaction.reply({ embeds: [ new EmbedBuilder().setColor(client.settings.color).setFooter({ text: translate(keys.queue.no_queue), @@ -29,9 +27,9 @@ export default class Stop extends Command { }), ], }) - } + .catch(logger.error) - if (!player?.queue.current) { + if (!player?.queue.current) return await interaction.reply({ embeds: [ new EmbedBuilder().setColor(client.settings.color).setFooter({ @@ -39,13 +37,16 @@ export default class Stop extends Command { iconURL: interaction.user.displayAvatarURL(), }), ], - ephemeral: true, }) - } + .catch(logger.error) if (player.trackRepeat) player.setTrackRepeat(false) if (player.queueRepeat) player.setQueueRepeat(false) - await client.music.queueEnd(player) + try { + await client.music.queueEnd(player) + } catch (error) { + client.errorHandler.captureException(error as Error) + } return await interaction.reply({ embeds: [ @@ -57,6 +58,7 @@ export default class Stop extends Command { ) .setFooter({ text: interaction.user.username, iconURL: interaction.user.displayAvatarURL() }), ], - }).catch(e => logger.debug(e)) + }) + .catch(logger.error) } } diff --git a/src/structures/Client.ts b/src/structures/Client.ts index 0b8c173..66b5e18 100644 --- a/src/structures/Client.ts +++ b/src/structures/Client.ts @@ -143,7 +143,7 @@ export default class Client extends ClientBase { shards: getInfo().SHARD_LIST, shardCount: getInfo().TOTAL_SHARDS, }) - if (!process.env.DEVS) { throw new Error('Add developers to the .env file, expected input (example): devs=123456789,987654321 ') } + if (!process.env.DEVS) throw new Error('Add developers to the .env file, expected input (example): devs=123456789,987654321 ') this.devs = process.env.DEVS.split(',') } From 110d266f3956f83c38f7385479d99e37910993ec Mon Sep 17 00:00:00 2001 From: eliyya Date: Sat, 12 Aug 2023 18:08:25 -0600 Subject: [PATCH 17/88] /ping fixed --- .../commands/Informaci\303\263n y Utilidad/ping.ts" | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git "a/src/slash/commands/Informaci\303\263n y Utilidad/ping.ts" "b/src/slash/commands/Informaci\303\263n y Utilidad/ping.ts" index bb64075..0938027 100644 --- "a/src/slash/commands/Informaci\303\263n y Utilidad/ping.ts" +++ "b/src/slash/commands/Informaci\303\263n y Utilidad/ping.ts" @@ -26,11 +26,11 @@ export default class ping extends Command { { cluster: client.cluster.id }, ) .then(async (results: any) => { - let performance = await performanceMeters.get('interaction_' + interaction.id) - if (performance) { - performance = await performance.stop() + const performance = performanceMeters.get('interaction_' + interaction.id) + const time = performance?.stop() ?? 0 + if (performance) performanceMeters.delete('interaction_' + interaction.id) - } + // Todo: process.env.mode === 'development' return await interaction .reply({ @@ -39,7 +39,7 @@ export default class ping extends Command { .setColor(Colors.Green) .setFields( { name: translate(keys.API), value: `${results[0].ping}ms`, inline: true }, - { name: translate(keys.ping.internal), value: performance + 'ms' }, + { name: translate(keys.ping.internal), value: time + 'ms' }, { name: translate(keys.ping.global), value: `${ping}ms`, inline: true }, ) .setTitle(translate(keys.PING)) From fa3309aacbb3b5a212c0562c7e6c16313612f924 Mon Sep 17 00:00:00 2001 From: eliyya Date: Sat, 12 Aug 2023 18:09:51 -0600 Subject: [PATCH 18/88] undefined handled --- src/events/client/interactionCreate.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/events/client/interactionCreate.ts b/src/events/client/interactionCreate.ts index db970aa..55decd0 100644 --- a/src/events/client/interactionCreate.ts +++ b/src/events/client/interactionCreate.ts @@ -5,7 +5,7 @@ import performanceMeters from '#cache/performanceMeters.js' import Client from '#structures/Client.js' import logger from '#utils/logger.js' import { AutocompleteInteraction, ButtonInteraction, ChatInputCommandInteraction, Interaction, ModalSubmitInteraction } from 'discord.js' -import { PerformanceMeter as PerformanceMeter } from '../../handlers/performanceMeter.js' +import { PerformanceMeter } from '../../handlers/performanceMeter.js' import { BaseEvent } from '../../structures/Events.js' import modals from '#cache/modals.js' import cooldowns from '#cache/cooldowns.js' @@ -29,7 +29,7 @@ export class interactionCreate extends BaseEvent { async processChatImputCommand (interaction: ChatInputCommandInteraction) { try { performanceMeters.set('interaction_' + interaction.id, new PerformanceMeter()) - performanceMeters.get('interaction_' + interaction.id).start() + performanceMeters.get('interaction_' + interaction.id)?.start() const cmd = commands.cache.find(c => c.name === interaction.commandName) if (!cmd) return if (interaction.guild && cmd?.only_dm) return // <-- return statement here From 4cddaf1cbc9fb7983fb883de16b969168baf832f Mon Sep 17 00:00:00 2001 From: eliyya Date: Sat, 12 Aug 2023 18:23:44 -0600 Subject: [PATCH 19/88] fix canProced autocomplete --- src/slash/autocompletes/play/play.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slash/autocompletes/play/play.ts b/src/slash/autocompletes/play/play.ts index b4ea95c..ab0208b 100644 --- a/src/slash/autocompletes/play/play.ts +++ b/src/slash/autocompletes/play/play.ts @@ -12,7 +12,7 @@ export default class Repeat extends Autocomplete { const query = interaction.options.getFocused() const search = await yasha.Source.Youtube.search(query) if (search.length > 25) search.length = 25 - if (this.canProced(interaction.user.id, interaction.id)) return false + if (!this.canProced(interaction.user.id, interaction.id)) return false interaction.respond(search.map(r => ({ name: r.title ?? '', value: r.url ?? '' }))).catch(logger.error) return true } From 25658b622b41db5069454f42d5b5976cf0948c5e Mon Sep 17 00:00:00 2001 From: eliyya Date: Sat, 12 Aug 2023 21:04:17 -0600 Subject: [PATCH 20/88] defer first in /play --- "src/slash/commands/M\303\272sica/play.ts" | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git "a/src/slash/commands/M\303\272sica/play.ts" "b/src/slash/commands/M\303\272sica/play.ts" index 00e948e..0a1c51f 100644 --- "a/src/slash/commands/M\303\272sica/play.ts" +++ "b/src/slash/commands/M\303\272sica/play.ts" @@ -37,16 +37,20 @@ export default class play extends Command { override async run (interaction: ChatInputCommandInteraction<'cached'>) { const client = interaction.client as Client + try { + await interaction.deferReply() + } catch (error) { + return client.errorHandler.captureException(error as Error) + } const translate = Translator(interaction) if (!interaction.member.voice.channelId) - return await interaction.reply({ + return await interaction.editReply({ embeds: [ new EmbedBuilder().setColor(Colors.Red).setFooter({ text: translate(keys.play.not_voice), iconURL: client.user?.displayAvatarURL(), }), ], - ephemeral: true, }) let player = client.music.players.get(interaction.guildId) if (!player) { @@ -57,33 +61,30 @@ export default class play extends Command { try { await player.connect() } catch (error) { - return await interaction.reply({ + return await interaction.editReply({ embeds: [ new EmbedBuilder().setColor(Colors.Red).setFooter({ text: translate(keys.play.cant_join), iconURL: client.user?.displayAvatarURL(), }), ], - ephemeral: true, }) } } if (player.voiceChannel.id !== interaction.member.voice.channelId) - return await interaction.reply({ + return await interaction.editReply({ embeds: [ new EmbedBuilder().setColor(Colors.Red).setFooter({ text: translate(keys.play.same), iconURL: client.user?.displayAvatarURL(), }), ], - ephemeral: true, }).catch(logger.error) player.textChannelId = interaction.channelId // Si el usuario está en el mismo canal de voz que el bot try { - await interaction.deferReply() const song = interaction.options.getString('song', false) const search = song ? await this.search(song, interaction.member) : await this.getRecomended(player) if (!search) return await interaction.editReply({ From 997ba60450edd7d64f37c02d477d89d598d192fe Mon Sep 17 00:00:00 2001 From: eliyya Date: Sat, 12 Aug 2023 21:10:27 -0600 Subject: [PATCH 21/88] await handled in autocomplete /play --- src/slash/autocompletes/play/play.ts | 20 ++++++++++++++------ "src/slash/commands/M\303\272sica/play.ts" | 1 + 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/src/slash/autocompletes/play/play.ts b/src/slash/autocompletes/play/play.ts index ab0208b..e1ce603 100644 --- a/src/slash/autocompletes/play/play.ts +++ b/src/slash/autocompletes/play/play.ts @@ -2,6 +2,7 @@ import { AutocompleteInteraction } from 'discord.js' import Autocomplete from '#structures/Autocomplete.js' import yasha from 'yasha' import logger from '#utils/logger.js' +import Client from '#structures/Client.js' export default class Repeat extends Autocomplete { constructor () { @@ -9,11 +10,18 @@ export default class Repeat extends Autocomplete { } override async run (interaction: AutocompleteInteraction) { - const query = interaction.options.getFocused() - const search = await yasha.Source.Youtube.search(query) - if (search.length > 25) search.length = 25 - if (!this.canProced(interaction.user.id, interaction.id)) return false - interaction.respond(search.map(r => ({ name: r.title ?? '', value: r.url ?? '' }))).catch(logger.error) - return true + const client = interaction.client as Client + try { + const query = interaction.options.getFocused() + const search = await yasha.Source.Youtube.search(query) + if (search.length > 25) search.length = 25 + if (!this.canProced(interaction.user.id, interaction.id)) return false + interaction.respond(search.map(r => ({ name: r.title ?? '', value: r.url ?? '' }))).catch(logger.error) + return true + } catch (error) { + logger.error(error) + client.errorHandler.captureException(error as Error) + return true + } } } diff --git "a/src/slash/commands/M\303\272sica/play.ts" "b/src/slash/commands/M\303\272sica/play.ts" index 0a1c51f..ae37df0 100644 --- "a/src/slash/commands/M\303\272sica/play.ts" +++ "b/src/slash/commands/M\303\272sica/play.ts" @@ -40,6 +40,7 @@ export default class play extends Command { try { await interaction.deferReply() } catch (error) { + logger.error(error) return client.errorHandler.captureException(error as Error) } const translate = Translator(interaction) From 23b693e36c8cd1effe12931a684fd695d29b87dd Mon Sep 17 00:00:00 2001 From: eliyya Date: Sat, 12 Aug 2023 21:37:47 -0600 Subject: [PATCH 22/88] restrict long in autocomplete --- src/slash/autocompletes/play/play.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/slash/autocompletes/play/play.ts b/src/slash/autocompletes/play/play.ts index e1ce603..355b320 100644 --- a/src/slash/autocompletes/play/play.ts +++ b/src/slash/autocompletes/play/play.ts @@ -16,7 +16,14 @@ export default class Repeat extends Autocomplete { const search = await yasha.Source.Youtube.search(query) if (search.length > 25) search.length = 25 if (!this.canProced(interaction.user.id, interaction.id)) return false - interaction.respond(search.map(r => ({ name: r.title ?? '', value: r.url ?? '' }))).catch(logger.error) + await interaction.respond(search.map(r => { + const title = r.title ?? '' + const url = r.url ?? '' + return { + name: title.length > 100 ? title.slice(0, 95) + '...' : title, + value: url.length > 100 ? url.slice(0, 95) + '...' : url, + } + })).catch(logger.error) return true } catch (error) { logger.error(error) From 2343ccef2affe8a8043dbff11ec4db49da6dbd85 Mon Sep 17 00:00:00 2001 From: eliyya Date: Sat, 12 Aug 2023 21:44:24 -0600 Subject: [PATCH 23/88] handled more await's --- src/slash/autocompletes/embed.ts | 10 +++++----- .../slash/commands/Diversi\303\263n/8ball.ts" | 8 ++++---- .../commands/Diversi\303\263n/impostor.ts" | 3 ++- src/slash/commands/dev/reboot.ts | 20 ++++++++++++------- src/slash/modals/embed.ts | 8 ++++---- 5 files changed, 28 insertions(+), 21 deletions(-) diff --git a/src/slash/autocompletes/embed.ts b/src/slash/autocompletes/embed.ts index 106e85c..575e646 100644 --- a/src/slash/autocompletes/embed.ts +++ b/src/slash/autocompletes/embed.ts @@ -41,13 +41,13 @@ export default class Embed extends Autocomplete { ]).catch(logger.error) return true } else if (focused.startsWith('#')) { - if (!Color.isHex(focused)) { suggestions.push({ name: invalidInput, value: '#000000' }) } - for (let i = 0, random = Math.floor(Math.random() * values.length); i < 24; i++, random = Math.floor(Math.random() * values.length)) { suggestions.push({ name: `#${values[random].toString(16)}`, value: `${values[random]}` }) } + if (!Color.isHex(focused)) suggestions.push({ name: invalidInput, value: '#000000' }) + for (let i = 0, random = Math.floor(Math.random() * values.length); i < 24; i++, random = Math.floor(Math.random() * values.length)) suggestions.push({ name: `#${values[random].toString(16)}`, value: `${values[random]}` }) } else if (focused.startsWith('0x')) { - if (!Color.isHex0x(focused)) { suggestions.push({ name: invalidInput, value: '0x000000' }) } - for (let i = 0, random = Math.floor(Math.random() * values.length); i < 24; i++, random = Math.floor(Math.random() * values.length)) { suggestions.push({ name: `0x${values[random].toString(16)}`, value: `${values[random]}` }) } + if (!Color.isHex0x(focused)) suggestions.push({ name: invalidInput, value: '0x000000' }) + for (let i = 0, random = Math.floor(Math.random() * values.length); i < 24; i++, random = Math.floor(Math.random() * values.length)) suggestions.push({ name: `0x${values[random].toString(16)}`, value: `${values[random]}` }) } else if (focused.startsWith('rgb')) { - if (!Color.isRGB(focused)) { suggestions.push({ name: invalidInput, value: 'rgb(0, 0, 0)' }) } + if (!Color.isRGB(focused)) suggestions.push({ name: invalidInput, value: 'rgb(0, 0, 0)' }) for (let i = 0; i < 24; i++) { const random = Math.floor(Math.random() * values.length) const [r, g, b] = new Color(`${values[random]}`).rgb diff --git "a/src/slash/commands/Diversi\303\263n/8ball.ts" "b/src/slash/commands/Diversi\303\263n/8ball.ts" index da638d9..1c6a701 100644 --- "a/src/slash/commands/Diversi\303\263n/8ball.ts" +++ "b/src/slash/commands/Diversi\303\263n/8ball.ts" @@ -2,6 +2,7 @@ import { ApplicationCommandOptionType, ChatInputCommandInteraction, Colors, Embe import Client from '#structures/Client.js' import Command from '#structures/Command.js' import Translator, { keys } from '#utils/Translator.js' +import logger from '#utils/logger.js' export default class ball extends Command { constructor () { @@ -24,7 +25,7 @@ export default class ball extends Command { const translate = Translator(interaction) const client = interaction.client as Client const question = interaction.options.getString('question', true) - if (!question.endsWith('?')) { + if (!question.endsWith('?')) return await interaction.reply({ embeds: [ new EmbedBuilder() @@ -36,8 +37,7 @@ export default class ball extends Command { iconURL: interaction.user.displayAvatarURL({ extension: 'png' }), }), ], - }) - } + }).catch(logger.error) return await interaction.reply({ embeds: [ @@ -54,6 +54,6 @@ export default class ball extends Command { ) .setColor(client.settings.color), ], - }) + }).catch(logger.error) } } diff --git "a/src/slash/commands/Diversi\303\263n/impostor.ts" "b/src/slash/commands/Diversi\303\263n/impostor.ts" index 1a6f070..f357010 100644 --- "a/src/slash/commands/Diversi\303\263n/impostor.ts" +++ "b/src/slash/commands/Diversi\303\263n/impostor.ts" @@ -2,6 +2,7 @@ import { ApplicationCommandOptionType, ChatInputCommandInteraction } from 'discord.js' import Command from '#structures/Command.js' import Translator, { keys } from '#utils/Translator.js' +import logger from '#utils/logger.js' export default class impostor extends Command { constructor () { @@ -36,6 +37,6 @@ export default class impostor extends Command {   '        。 , ゚ , ゚ . , . , -   ゚   .   . ,    .  .`) +   ゚   .   . ,    .  .`).catch(logger.error) } } diff --git a/src/slash/commands/dev/reboot.ts b/src/slash/commands/dev/reboot.ts index dc164e8..bcc7f83 100644 --- a/src/slash/commands/dev/reboot.ts +++ b/src/slash/commands/dev/reboot.ts @@ -2,6 +2,7 @@ import { ApplicationCommandOptionType, ChatInputCommandInteraction } from 'disco import Client from '#structures/Client.js' import Command from '#structures/Command.js' import Translator, { keys } from '#utils/Translator.js' +import logger from '#utils/logger.js' export default class reboot extends Command { constructor () { @@ -24,14 +25,19 @@ export default class reboot extends Command { override async run (interaction: ChatInputCommandInteraction) { // TODO: Change reboot system - const translate = Translator(interaction) const client = interaction.client as Client - const shard = interaction.options.getNumber('shard') - if (!shard) { - await interaction.reply(translate(keys.reboot.all)) - return await client.cluster.send({ type: 'reboot', shard: 'all' }) + try { + const translate = Translator(interaction) + const shard = interaction.options.getNumber('shard') + if (!shard) { + await interaction.reply(translate(keys.reboot.all)) + return await client.cluster.send({ type: 'reboot', shard: 'all' }) + } + await interaction.reply(translate(keys.reboot.shard, { shard })) + await client.cluster.send({ type: 'reboot', shard }) + } catch (error) { + logger.error(error) + client.errorHandler.captureException(error as Error) } - await interaction.reply(translate(keys.reboot.shard, { shard })) - client.cluster.send({ type: 'reboot', shard }) } } diff --git a/src/slash/modals/embed.ts b/src/slash/modals/embed.ts index cf01d84..1329279 100644 --- a/src/slash/modals/embed.ts +++ b/src/slash/modals/embed.ts @@ -1,7 +1,7 @@ import { ModalSubmitInteraction, EmbedBuilder, ActionRowBuilder, ButtonBuilder, ButtonStyle } from 'discord.js' +import Translator, { keys } from '#utils/Translator.js' import Modal from '#structures/Modal.js' import Color from '#structures/Color.js' -import Translator, { keys } from '#utils/Translator.js' import logger from '#utils/logger.js' export default class Embed extends Modal { @@ -20,7 +20,7 @@ export default class Embed extends Modal { if (title) embed.setTitle(title) if (description) embed.setDescription(description) if (color && Color.isColor(color)) embed.setColor(new Color(color).hex) - if (option === 'n') { + if (option === 'n') return await interaction.reply({ content: !Color.isColor(color) ? translate(keys.embed.invalid_input) : undefined, embeds: [embed], @@ -32,8 +32,8 @@ export default class Embed extends Modal { ), ], }).catch(logger.error) - } + if (interaction.isFromMessage()) return await interaction.update({ embeds: [embed], components: interaction.message?.components }).catch(logger.error) - interaction.deferUpdate() + await interaction.deferUpdate().catch(logger.error) } } From 152829698030105b1f752652773c3c54a76fff71 Mon Sep 17 00:00:00 2001 From: eliyya Date: Sun, 13 Aug 2023 00:35:43 -0600 Subject: [PATCH 24/88] minor fixes --- src/cache/autocompletes.ts | 17 +++++++++---- src/events/client/interactionCreate.ts | 4 ---- "src/slash/commands/M\303\272sica/play.ts" | 28 +++++++++++++--------- 3 files changed, 29 insertions(+), 20 deletions(-) diff --git a/src/cache/autocompletes.ts b/src/cache/autocompletes.ts index 7655d06..2c9ede2 100644 --- a/src/cache/autocompletes.ts +++ b/src/cache/autocompletes.ts @@ -4,16 +4,19 @@ import Autocomplete from '#structures/Autocomplete.js' class AutocompleteCache { private static instance: AutocompleteCache #cache: Collection - #interactions = new Collection() + #interactions = new Collection() private constructor () { this.#cache = new Collection() } static getInstance (): AutocompleteCache { - if (!AutocompleteCache.instance) { + if (!AutocompleteCache.instance) AutocompleteCache.instance = new AutocompleteCache() - } + return AutocompleteCache.instance } @@ -22,11 +25,15 @@ class AutocompleteCache { } canProced (userId: Snowflake, interactionId: Snowflake): boolean { - return this.#interactions.get(userId) === interactionId + const auto = this.#interactions.get(userId) + if (!auto) return true + if (auto.interactionId !== interactionId) return true + if (Date.now() - auto.timestamp < 3000) return true + return false } registerInteraction (userId: Snowflake, interactionId: Snowflake): void { - this.#interactions.set(userId, interactionId) + this.#interactions.set(userId, { interactionId, timestamp: Date.now() }) } removeInteraction (userId: Snowflake): void { diff --git a/src/events/client/interactionCreate.ts b/src/events/client/interactionCreate.ts index 55decd0..8498d04 100644 --- a/src/events/client/interactionCreate.ts +++ b/src/events/client/interactionCreate.ts @@ -68,10 +68,6 @@ export class interactionCreate extends BaseEvent { cmd: cmd.name, options: JSON.stringify(interaction.options.data, (key, value) => !['client', 'channel', 'guild', 'user', 'member', 'role'].includes(key) ? value : undefined, 4), }) - interaction.reply({ - content: 'Ha ocurrido un error al ejecutar el comando, por favor, intenta de nuevo más tarde', - ephemeral: true, - }) }) .finally(() => { cooldowns.registerInteraction(interaction.user.id, interaction.commandName) diff --git "a/src/slash/commands/M\303\272sica/play.ts" "b/src/slash/commands/M\303\272sica/play.ts" index ae37df0..5e4d2be 100644 --- "a/src/slash/commands/M\303\272sica/play.ts" +++ "b/src/slash/commands/M\303\272sica/play.ts" @@ -90,10 +90,12 @@ export default class play extends Command { const search = song ? await this.search(song, interaction.member) : await this.getRecomended(player) if (!search) return await interaction.editReply({ embeds: [ - new EmbedBuilder().setColor(Colors.Red).setFooter({ - text: translate(keys.play.not_reproducible), - iconURL: client.user?.displayAvatarURL(), - }), + new EmbedBuilder() + .setColor(Colors.Red) + .setFooter({ + text: translate(keys.play.not_reproducible), + iconURL: client.user?.displayAvatarURL(), + }), ], }).catch(logger.error) // TODO: Add streaming support @@ -106,17 +108,19 @@ export default class play extends Command { if (!player.playing || player.paused) player.play() const embed = new EmbedBuilder() .setColor(client.settings.color) - .setFields( + .addFields( { name: translate(keys.AUTHOR), - value: search.author ?? '', - inline: true, - }, - { - name: translate(keys.REQUESTER), - value: interaction.user.toString(), + value: search.author ?? 'unknown', inline: true, }, + ) + .addFields({ + name: translate(keys.REQUESTER), + value: `${interaction.user}`, + inline: true, + }) + .addFields( { name: translate(keys.DURATION), value: formatTime(Math.trunc(search.duration ?? 0), false), @@ -150,6 +154,8 @@ export default class play extends Command { await interaction.editReply({ embeds: [embed] }).catch(logger.error) } catch (e) { logger.error(e) + // @ts-expect-error + if (e.errors) logger.error(e.errors) interaction.editReply({ content: translate(keys.GENERICERROR, { inviteURL: client.officialServerURL, From 4b6814d58f5a0fc5a7eaeb8b2d404822f2063513 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:37:16 +0000 Subject: [PATCH 25/88] Update Crowdin configuration file --- crowdin.yml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 crowdin.yml diff --git a/crowdin.yml b/crowdin.yml new file mode 100644 index 0000000..efe86b4 --- /dev/null +++ b/crowdin.yml @@ -0,0 +1,3 @@ +files: + - source: /locales/en-US.json + translation: /locales/%locale%.%file_extension% From 65667721f9370a10b12a95c7078744c098bf51ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:37:38 +0000 Subject: [PATCH 26/88] New translations en-US.json (French) --- locales/fr-FR.json | 417 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 417 insertions(+) create mode 100644 locales/fr-FR.json diff --git a/locales/fr-FR.json b/locales/fr-FR.json new file mode 100644 index 0000000..c4de708 --- /dev/null +++ b/locales/fr-FR.json @@ -0,0 +1,417 @@ +{ + "question_ball": { + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", + "possibles": { + "0": "Yes", + "1": "No", + "2": "Maybe", + "3": "Obviously", + "4": "I say yes", + "5": "I say no", + "6": "Probably", + "7": "I have my doubts...", + "8": "Do not even doubt it", + "9": "You didn't even need to ask ;)", + "10": "Not at all...", + "11": "I don `t believe..." + } + }, + "impostor": { + "was": "Was the impostor", + "was_not": "Was not the impostor" + }, + "embed": { + "successfully": "Embed created and sent successfully.", + "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "modal": { + "title": "Embed Creator", + "title_label": "Title", + "title_placeholder": "My Awesome Embed", + "description_label": "Description", + "description_placeholder": "This is my awesome embed!", + "color_label": "Color" + }, + "buttons": { + "send": "Send", + "edit": "Edit" + }, + "invalid_input": "Invalid input" + }, + "github": { + "write_username": "Please write an username.", + "name": "🧑 Name:", + "account": " Account Type:", + "organization": "🏢 Organization:", + "link": "☁️ Link", + "location": "🗺 Location:", + "email": "📩 Email", + "biography": "📃 Biography", + "twitter": "🐦 Twitter:", + "repositories": "📂 Public Repositories", + "followers": "🧍 Followers", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" + }, + "help": { + "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", + "how_use": "How do I see the commands?", + "how_use_answer": "Easy, you just have to write", + "need_support": "If I need support, how can I contact with the support team", + "need_support_answer": "You can ask in our [support server!]({inviteURL})", + "how_vote": "How can I vote for the bot?", + "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", + "title": "✨ - Help menu" + }, + "avatar": "here you have the avatar of {user}", + "mchistory": { + "dont": "The username doesn't exist", + "names": "Name's historical", + "first": "First Name" + }, + "ping": { + "global": "Global ping", + "internal": "Internal Processing (database + processing)" + }, + "roleinfo": { + "managed": "Managed by Discord" + }, + "serverinfo": { + "verification": { + "no": "No verification.", + "low": "Low (Verified account).", + "medium": "Medium (Verified account for +5 minutes).", + "high": "High (Verified account for +10 minutes).", + "extreme": "Extreme (Verified account y verified phone number linked)." + }, + "explicit": { + "disabled": "No messages are scanned.", + "members_without_role": "Scan users without a role.", + "all_members": "Scan every message." + }, + "emoji_count": "Emoji Count", + "tier_level": "Tier Level", + "verification_level": "Verification Level", + "explicit_filter": "Explicit Content Filter Level" + }, + "ban": { + "not_found": "Member not found", + "self": "You can't ban yourself", + "owner": "You can't ban the owner", + "higher": "You can't ban a member with a higher role than you", + "ban": "Banned successfully", + "unbannable": "I can't ban this member" + }, + "skip": { + "messages": { + "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", + "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", + "2": "What are you doing that you don't listen to music? Add a song now :)" + }, + "no_same": "You are not within my voice channel.", + "skiped": "{song} has been skipped" + }, + "queue": { + "no_queue": "There aren't songs being played on this server. Why don't you add one?", + "current": "Currently playing:", + "queue": "{name}'s queue", + "no_page": "¡The page does not exist!", + "total": "Total songs queue:" + }, + "247": { + "enabled": "24/7 mode is enabled ", + "disabled": "24/7 mode is disabled" + }, + "play": { + "same": "You need to be on the same voice channel as the bot to execute this command.", + "not_voice": "You need to be on a voice channel to execute this command.", + "not_reproducible": "The attached link does not contain reproducible content.", + "added": "{song} added to the list", + "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + }, + "reboot": { + "all": "Rebooting all shards...", + "shard": "Rebooting shard {shard}..." + }, + "stop": { + "resumed": "Music resumed by {user}", + "paused": "Music paused by {user}", + "success": "Music stopped" + }, + "paused": "Music paused", + "resumed": "Music resumed", + "voice_update": { + "leaving": "Leaving {channel} in {time} minutes", + "alone": "I was alone, and I left {channel}" + }, + "automix": { + "generated": "Auto-Mix has been generated!", + "disabled": "AutoMix disabled" + }, + "twitch": { + "no_streamer_found": "The streamer was not found", + "already_following": "You are already following this streamer", + "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", + "unfollowed": "You have stopped following {streamer}.", + "role_mention": "Mention will be made to {role}.", + "now_live": "{streamer} is now live!" + }, + "loop": { + "queue": "Queue loop", + "song": "Song loop", + "disabled": "Loop disabled" + }, + "ERROREMBED": "Error", + "SUCCESSEMBED": "Success", + "PAUSE": "Pause", + "RESUME": "Resume", + "STOP": "Stop", + "SKIP": "Skip", + "NEXT": "Next", + "QUEUE": "Queue", + "TITLE": "Title", + "MEMBERS": "Members", + "REGULAR": "Regular", + "ANIMATED": "Animated", + "CHANNELS": "Channels", + "ROLES": "Roles", + "CATEGORIES": "Categories", + "SONGS": "Songs", + "TEXT": "Text", + "VOICE": "Voice", + "BOOSTERS": "Boosters", + "REGION": "Region", + "TIER": "Tier", + "CREATED_AT": "Created at", + "OWNER": "Owner", + "AUTHOR": "Author", + "REQUESTER": "Requester", + "DURATION": "Duration", + "NO": "No", + "API": "API", + "PING": "Ping", + "NAME": "Name", + "ID": "ID", + "POSITION": "Position", + "COLOR": "Color", + "MENTIONABLE": "Mentionable", + "SEPARATED": "Separated", + "YES": "Yes", + "PLAYING": "Playing", + "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "commands": { + "reboot": { + "name": "reboot", + "description": "Reboot a shard or all shards", + "options": { + "shard": { + "name": "shard", + "description": "Shard to reboot" + } + } + }, + "8ball": { + "name": "8ball", + "description": "Ask a question to the magic ball", + "options": { + "question": { + "name": "question", + "description": "What do you want to ask?" + } + } + }, + "impostor": { + "name": "impostor", + "description": "Are you the impostor? SUS", + "options": { + "user": { + "name": "user", + "description": "Are this user the impostor? SUS na na na na na na na" + } + } + }, + "avatar": { + "name": "avatar", + "description": "Send your avatar or the other user one!", + "options": { + "user": { + "name": "user", + "description": "User to get the avatar" + } + } + }, + "twitch": { + "name": "twitch", + "description": "Set a notification for when a streamer goes live!", + "options": { + "add": { + "name": "add", + "description": "Add a streamer to the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to add" + }, + "channel": { + "name": "channel", + "description": "Channel to send the notification" + }, + "role": { + "name": "role", + "description": "Role to mention" + } + } + }, + "remove": { + "name": "remove", + "description": "Remove a streamer from the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to remove" + } + } + } + } + }, + "shards": { + "name": "shards", + "description": "Get information about shards" + }, + "serverinfo": { + "name": "serverinfo", + "description": "Get information about the server" + }, + "roleinfo": { + "name": "roleinfo", + "description": "Get information about a role", + "options": { + "role": { + "name": "role", + "description": "Role to get information" + } + } + }, + "ping": { + "name": "ping", + "description": "Shows the bot latency" + }, + "mcserver": { + "name": "mcserver", + "description": "Send a image of a Minecraft server", + "options": { + "server": { + "name": "server", + "description": "Server to get information" + } + } + }, + "mchistory": { + "name": "mchistory", + "description": "Show the history of a Minecraft account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "help": { + "name": "help", + "description": "Show information about me" + }, + "github": { + "name": "github", + "description": "Show information about a GitHub account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "embed": { + "name": "embed", + "description": "Send a embed", + "options": { + "channel": { + "name": "channel", + "description": "Channel to send the embed" + }, + "color": { + "name": "color", + "description": "Color of the embed" + }, + "title": { + "name": "title", + "description": "Title of the embed" + }, + "description": { + "name": "description", + "description": "Description of the embed" + } + } + }, + "ban": { + "name": "ban", + "description": "Ban a member", + "options": { + "user": { + "name": "usuario", + "description": "Usuario a banear" + }, + "reason": { + "name": "razon", + "description": "Razon del ban" + }, + "days": { + "name": "dias", + "description": "Días para borrar mensajes del usuario" + } + } + }, + "play": { + "name": "play", + "description": "Play the song that you want with the name or a youtube/spotify link", + "options": { + "song": { + "name": "song", + "description": "Song to play" + } + } + }, + "stop": { + "name": "stop", + "description": "Stop the player" + }, + "skip": { + "name": "skip", + "description": "Skip the current song" + }, + "resume": { + "name": "resume", + "description": "Resume the current song!" + }, + "queue": { + "name": "queue", + "description": "Show the queue" + }, + "pause": { + "name": "pause", + "description": "Pause the current song" + }, + "nowplaying": { + "name": "nowplaying", + "description": "Show the current song" + }, + "loop": { + "name": "loop", + "description": "Repeats the current queue/song" + }, + "247": { + "name": "247", + "description": "Stay 24/7 in a voice channel" + } + } +} From 61f66ac38794692510f921f6615f609d045ef9e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:37:39 +0000 Subject: [PATCH 27/88] New translations en-US.json (Spanish) --- locales/es-ES.json | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/locales/es-ES.json b/locales/es-ES.json index 16a9156..af2db33 100644 --- a/locales/es-ES.json +++ b/locales/es-ES.json @@ -77,15 +77,6 @@ "roleinfo": { "managed": "Gestionado por Discord" }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" - }, "serverinfo": { "verification": { "no": "No hay verificación.", @@ -148,8 +139,8 @@ "paused": "Música pausada por {user}", "success": "Música detenida" }, - "paused":"Música pausada", - "resumed":"Música reanudada", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { "leaving": "Saliendo de {channel} en {time} minutos", "alone": "Estaba solo, y me fui {channel}" @@ -423,4 +414,4 @@ "description": "Mantente 24/7 en un canal de voz" } } -} \ No newline at end of file +} From 3dd8f938f580513564a5d910b28617172017ddfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:37:39 +0000 Subject: [PATCH 28/88] New translations en-US.json (Arabic) --- locales/ar-SA.json | 417 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 417 insertions(+) create mode 100644 locales/ar-SA.json diff --git a/locales/ar-SA.json b/locales/ar-SA.json new file mode 100644 index 0000000..c4de708 --- /dev/null +++ b/locales/ar-SA.json @@ -0,0 +1,417 @@ +{ + "question_ball": { + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", + "possibles": { + "0": "Yes", + "1": "No", + "2": "Maybe", + "3": "Obviously", + "4": "I say yes", + "5": "I say no", + "6": "Probably", + "7": "I have my doubts...", + "8": "Do not even doubt it", + "9": "You didn't even need to ask ;)", + "10": "Not at all...", + "11": "I don `t believe..." + } + }, + "impostor": { + "was": "Was the impostor", + "was_not": "Was not the impostor" + }, + "embed": { + "successfully": "Embed created and sent successfully.", + "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "modal": { + "title": "Embed Creator", + "title_label": "Title", + "title_placeholder": "My Awesome Embed", + "description_label": "Description", + "description_placeholder": "This is my awesome embed!", + "color_label": "Color" + }, + "buttons": { + "send": "Send", + "edit": "Edit" + }, + "invalid_input": "Invalid input" + }, + "github": { + "write_username": "Please write an username.", + "name": "🧑 Name:", + "account": " Account Type:", + "organization": "🏢 Organization:", + "link": "☁️ Link", + "location": "🗺 Location:", + "email": "📩 Email", + "biography": "📃 Biography", + "twitter": "🐦 Twitter:", + "repositories": "📂 Public Repositories", + "followers": "🧍 Followers", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" + }, + "help": { + "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", + "how_use": "How do I see the commands?", + "how_use_answer": "Easy, you just have to write", + "need_support": "If I need support, how can I contact with the support team", + "need_support_answer": "You can ask in our [support server!]({inviteURL})", + "how_vote": "How can I vote for the bot?", + "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", + "title": "✨ - Help menu" + }, + "avatar": "here you have the avatar of {user}", + "mchistory": { + "dont": "The username doesn't exist", + "names": "Name's historical", + "first": "First Name" + }, + "ping": { + "global": "Global ping", + "internal": "Internal Processing (database + processing)" + }, + "roleinfo": { + "managed": "Managed by Discord" + }, + "serverinfo": { + "verification": { + "no": "No verification.", + "low": "Low (Verified account).", + "medium": "Medium (Verified account for +5 minutes).", + "high": "High (Verified account for +10 minutes).", + "extreme": "Extreme (Verified account y verified phone number linked)." + }, + "explicit": { + "disabled": "No messages are scanned.", + "members_without_role": "Scan users without a role.", + "all_members": "Scan every message." + }, + "emoji_count": "Emoji Count", + "tier_level": "Tier Level", + "verification_level": "Verification Level", + "explicit_filter": "Explicit Content Filter Level" + }, + "ban": { + "not_found": "Member not found", + "self": "You can't ban yourself", + "owner": "You can't ban the owner", + "higher": "You can't ban a member with a higher role than you", + "ban": "Banned successfully", + "unbannable": "I can't ban this member" + }, + "skip": { + "messages": { + "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", + "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", + "2": "What are you doing that you don't listen to music? Add a song now :)" + }, + "no_same": "You are not within my voice channel.", + "skiped": "{song} has been skipped" + }, + "queue": { + "no_queue": "There aren't songs being played on this server. Why don't you add one?", + "current": "Currently playing:", + "queue": "{name}'s queue", + "no_page": "¡The page does not exist!", + "total": "Total songs queue:" + }, + "247": { + "enabled": "24/7 mode is enabled ", + "disabled": "24/7 mode is disabled" + }, + "play": { + "same": "You need to be on the same voice channel as the bot to execute this command.", + "not_voice": "You need to be on a voice channel to execute this command.", + "not_reproducible": "The attached link does not contain reproducible content.", + "added": "{song} added to the list", + "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + }, + "reboot": { + "all": "Rebooting all shards...", + "shard": "Rebooting shard {shard}..." + }, + "stop": { + "resumed": "Music resumed by {user}", + "paused": "Music paused by {user}", + "success": "Music stopped" + }, + "paused": "Music paused", + "resumed": "Music resumed", + "voice_update": { + "leaving": "Leaving {channel} in {time} minutes", + "alone": "I was alone, and I left {channel}" + }, + "automix": { + "generated": "Auto-Mix has been generated!", + "disabled": "AutoMix disabled" + }, + "twitch": { + "no_streamer_found": "The streamer was not found", + "already_following": "You are already following this streamer", + "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", + "unfollowed": "You have stopped following {streamer}.", + "role_mention": "Mention will be made to {role}.", + "now_live": "{streamer} is now live!" + }, + "loop": { + "queue": "Queue loop", + "song": "Song loop", + "disabled": "Loop disabled" + }, + "ERROREMBED": "Error", + "SUCCESSEMBED": "Success", + "PAUSE": "Pause", + "RESUME": "Resume", + "STOP": "Stop", + "SKIP": "Skip", + "NEXT": "Next", + "QUEUE": "Queue", + "TITLE": "Title", + "MEMBERS": "Members", + "REGULAR": "Regular", + "ANIMATED": "Animated", + "CHANNELS": "Channels", + "ROLES": "Roles", + "CATEGORIES": "Categories", + "SONGS": "Songs", + "TEXT": "Text", + "VOICE": "Voice", + "BOOSTERS": "Boosters", + "REGION": "Region", + "TIER": "Tier", + "CREATED_AT": "Created at", + "OWNER": "Owner", + "AUTHOR": "Author", + "REQUESTER": "Requester", + "DURATION": "Duration", + "NO": "No", + "API": "API", + "PING": "Ping", + "NAME": "Name", + "ID": "ID", + "POSITION": "Position", + "COLOR": "Color", + "MENTIONABLE": "Mentionable", + "SEPARATED": "Separated", + "YES": "Yes", + "PLAYING": "Playing", + "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "commands": { + "reboot": { + "name": "reboot", + "description": "Reboot a shard or all shards", + "options": { + "shard": { + "name": "shard", + "description": "Shard to reboot" + } + } + }, + "8ball": { + "name": "8ball", + "description": "Ask a question to the magic ball", + "options": { + "question": { + "name": "question", + "description": "What do you want to ask?" + } + } + }, + "impostor": { + "name": "impostor", + "description": "Are you the impostor? SUS", + "options": { + "user": { + "name": "user", + "description": "Are this user the impostor? SUS na na na na na na na" + } + } + }, + "avatar": { + "name": "avatar", + "description": "Send your avatar or the other user one!", + "options": { + "user": { + "name": "user", + "description": "User to get the avatar" + } + } + }, + "twitch": { + "name": "twitch", + "description": "Set a notification for when a streamer goes live!", + "options": { + "add": { + "name": "add", + "description": "Add a streamer to the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to add" + }, + "channel": { + "name": "channel", + "description": "Channel to send the notification" + }, + "role": { + "name": "role", + "description": "Role to mention" + } + } + }, + "remove": { + "name": "remove", + "description": "Remove a streamer from the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to remove" + } + } + } + } + }, + "shards": { + "name": "shards", + "description": "Get information about shards" + }, + "serverinfo": { + "name": "serverinfo", + "description": "Get information about the server" + }, + "roleinfo": { + "name": "roleinfo", + "description": "Get information about a role", + "options": { + "role": { + "name": "role", + "description": "Role to get information" + } + } + }, + "ping": { + "name": "ping", + "description": "Shows the bot latency" + }, + "mcserver": { + "name": "mcserver", + "description": "Send a image of a Minecraft server", + "options": { + "server": { + "name": "server", + "description": "Server to get information" + } + } + }, + "mchistory": { + "name": "mchistory", + "description": "Show the history of a Minecraft account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "help": { + "name": "help", + "description": "Show information about me" + }, + "github": { + "name": "github", + "description": "Show information about a GitHub account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "embed": { + "name": "embed", + "description": "Send a embed", + "options": { + "channel": { + "name": "channel", + "description": "Channel to send the embed" + }, + "color": { + "name": "color", + "description": "Color of the embed" + }, + "title": { + "name": "title", + "description": "Title of the embed" + }, + "description": { + "name": "description", + "description": "Description of the embed" + } + } + }, + "ban": { + "name": "ban", + "description": "Ban a member", + "options": { + "user": { + "name": "usuario", + "description": "Usuario a banear" + }, + "reason": { + "name": "razon", + "description": "Razon del ban" + }, + "days": { + "name": "dias", + "description": "Días para borrar mensajes del usuario" + } + } + }, + "play": { + "name": "play", + "description": "Play the song that you want with the name or a youtube/spotify link", + "options": { + "song": { + "name": "song", + "description": "Song to play" + } + } + }, + "stop": { + "name": "stop", + "description": "Stop the player" + }, + "skip": { + "name": "skip", + "description": "Skip the current song" + }, + "resume": { + "name": "resume", + "description": "Resume the current song!" + }, + "queue": { + "name": "queue", + "description": "Show the queue" + }, + "pause": { + "name": "pause", + "description": "Pause the current song" + }, + "nowplaying": { + "name": "nowplaying", + "description": "Show the current song" + }, + "loop": { + "name": "loop", + "description": "Repeats the current queue/song" + }, + "247": { + "name": "247", + "description": "Stay 24/7 in a voice channel" + } + } +} From 5899e0a8f33839760985790c8dbe0cc902e66332 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:37:40 +0000 Subject: [PATCH 29/88] New translations en-US.json (German) --- locales/de-DE.json | 417 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 417 insertions(+) create mode 100644 locales/de-DE.json diff --git a/locales/de-DE.json b/locales/de-DE.json new file mode 100644 index 0000000..c4de708 --- /dev/null +++ b/locales/de-DE.json @@ -0,0 +1,417 @@ +{ + "question_ball": { + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", + "possibles": { + "0": "Yes", + "1": "No", + "2": "Maybe", + "3": "Obviously", + "4": "I say yes", + "5": "I say no", + "6": "Probably", + "7": "I have my doubts...", + "8": "Do not even doubt it", + "9": "You didn't even need to ask ;)", + "10": "Not at all...", + "11": "I don `t believe..." + } + }, + "impostor": { + "was": "Was the impostor", + "was_not": "Was not the impostor" + }, + "embed": { + "successfully": "Embed created and sent successfully.", + "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "modal": { + "title": "Embed Creator", + "title_label": "Title", + "title_placeholder": "My Awesome Embed", + "description_label": "Description", + "description_placeholder": "This is my awesome embed!", + "color_label": "Color" + }, + "buttons": { + "send": "Send", + "edit": "Edit" + }, + "invalid_input": "Invalid input" + }, + "github": { + "write_username": "Please write an username.", + "name": "🧑 Name:", + "account": " Account Type:", + "organization": "🏢 Organization:", + "link": "☁️ Link", + "location": "🗺 Location:", + "email": "📩 Email", + "biography": "📃 Biography", + "twitter": "🐦 Twitter:", + "repositories": "📂 Public Repositories", + "followers": "🧍 Followers", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" + }, + "help": { + "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", + "how_use": "How do I see the commands?", + "how_use_answer": "Easy, you just have to write", + "need_support": "If I need support, how can I contact with the support team", + "need_support_answer": "You can ask in our [support server!]({inviteURL})", + "how_vote": "How can I vote for the bot?", + "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", + "title": "✨ - Help menu" + }, + "avatar": "here you have the avatar of {user}", + "mchistory": { + "dont": "The username doesn't exist", + "names": "Name's historical", + "first": "First Name" + }, + "ping": { + "global": "Global ping", + "internal": "Internal Processing (database + processing)" + }, + "roleinfo": { + "managed": "Managed by Discord" + }, + "serverinfo": { + "verification": { + "no": "No verification.", + "low": "Low (Verified account).", + "medium": "Medium (Verified account for +5 minutes).", + "high": "High (Verified account for +10 minutes).", + "extreme": "Extreme (Verified account y verified phone number linked)." + }, + "explicit": { + "disabled": "No messages are scanned.", + "members_without_role": "Scan users without a role.", + "all_members": "Scan every message." + }, + "emoji_count": "Emoji Count", + "tier_level": "Tier Level", + "verification_level": "Verification Level", + "explicit_filter": "Explicit Content Filter Level" + }, + "ban": { + "not_found": "Member not found", + "self": "You can't ban yourself", + "owner": "You can't ban the owner", + "higher": "You can't ban a member with a higher role than you", + "ban": "Banned successfully", + "unbannable": "I can't ban this member" + }, + "skip": { + "messages": { + "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", + "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", + "2": "What are you doing that you don't listen to music? Add a song now :)" + }, + "no_same": "You are not within my voice channel.", + "skiped": "{song} has been skipped" + }, + "queue": { + "no_queue": "There aren't songs being played on this server. Why don't you add one?", + "current": "Currently playing:", + "queue": "{name}'s queue", + "no_page": "¡The page does not exist!", + "total": "Total songs queue:" + }, + "247": { + "enabled": "24/7 mode is enabled ", + "disabled": "24/7 mode is disabled" + }, + "play": { + "same": "You need to be on the same voice channel as the bot to execute this command.", + "not_voice": "You need to be on a voice channel to execute this command.", + "not_reproducible": "The attached link does not contain reproducible content.", + "added": "{song} added to the list", + "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + }, + "reboot": { + "all": "Rebooting all shards...", + "shard": "Rebooting shard {shard}..." + }, + "stop": { + "resumed": "Music resumed by {user}", + "paused": "Music paused by {user}", + "success": "Music stopped" + }, + "paused": "Music paused", + "resumed": "Music resumed", + "voice_update": { + "leaving": "Leaving {channel} in {time} minutes", + "alone": "I was alone, and I left {channel}" + }, + "automix": { + "generated": "Auto-Mix has been generated!", + "disabled": "AutoMix disabled" + }, + "twitch": { + "no_streamer_found": "The streamer was not found", + "already_following": "You are already following this streamer", + "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", + "unfollowed": "You have stopped following {streamer}.", + "role_mention": "Mention will be made to {role}.", + "now_live": "{streamer} is now live!" + }, + "loop": { + "queue": "Queue loop", + "song": "Song loop", + "disabled": "Loop disabled" + }, + "ERROREMBED": "Error", + "SUCCESSEMBED": "Success", + "PAUSE": "Pause", + "RESUME": "Resume", + "STOP": "Stop", + "SKIP": "Skip", + "NEXT": "Next", + "QUEUE": "Queue", + "TITLE": "Title", + "MEMBERS": "Members", + "REGULAR": "Regular", + "ANIMATED": "Animated", + "CHANNELS": "Channels", + "ROLES": "Roles", + "CATEGORIES": "Categories", + "SONGS": "Songs", + "TEXT": "Text", + "VOICE": "Voice", + "BOOSTERS": "Boosters", + "REGION": "Region", + "TIER": "Tier", + "CREATED_AT": "Created at", + "OWNER": "Owner", + "AUTHOR": "Author", + "REQUESTER": "Requester", + "DURATION": "Duration", + "NO": "No", + "API": "API", + "PING": "Ping", + "NAME": "Name", + "ID": "ID", + "POSITION": "Position", + "COLOR": "Color", + "MENTIONABLE": "Mentionable", + "SEPARATED": "Separated", + "YES": "Yes", + "PLAYING": "Playing", + "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "commands": { + "reboot": { + "name": "reboot", + "description": "Reboot a shard or all shards", + "options": { + "shard": { + "name": "shard", + "description": "Shard to reboot" + } + } + }, + "8ball": { + "name": "8ball", + "description": "Ask a question to the magic ball", + "options": { + "question": { + "name": "question", + "description": "What do you want to ask?" + } + } + }, + "impostor": { + "name": "impostor", + "description": "Are you the impostor? SUS", + "options": { + "user": { + "name": "user", + "description": "Are this user the impostor? SUS na na na na na na na" + } + } + }, + "avatar": { + "name": "avatar", + "description": "Send your avatar or the other user one!", + "options": { + "user": { + "name": "user", + "description": "User to get the avatar" + } + } + }, + "twitch": { + "name": "twitch", + "description": "Set a notification for when a streamer goes live!", + "options": { + "add": { + "name": "add", + "description": "Add a streamer to the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to add" + }, + "channel": { + "name": "channel", + "description": "Channel to send the notification" + }, + "role": { + "name": "role", + "description": "Role to mention" + } + } + }, + "remove": { + "name": "remove", + "description": "Remove a streamer from the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to remove" + } + } + } + } + }, + "shards": { + "name": "shards", + "description": "Get information about shards" + }, + "serverinfo": { + "name": "serverinfo", + "description": "Get information about the server" + }, + "roleinfo": { + "name": "roleinfo", + "description": "Get information about a role", + "options": { + "role": { + "name": "role", + "description": "Role to get information" + } + } + }, + "ping": { + "name": "ping", + "description": "Shows the bot latency" + }, + "mcserver": { + "name": "mcserver", + "description": "Send a image of a Minecraft server", + "options": { + "server": { + "name": "server", + "description": "Server to get information" + } + } + }, + "mchistory": { + "name": "mchistory", + "description": "Show the history of a Minecraft account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "help": { + "name": "help", + "description": "Show information about me" + }, + "github": { + "name": "github", + "description": "Show information about a GitHub account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "embed": { + "name": "embed", + "description": "Send a embed", + "options": { + "channel": { + "name": "channel", + "description": "Channel to send the embed" + }, + "color": { + "name": "color", + "description": "Color of the embed" + }, + "title": { + "name": "title", + "description": "Title of the embed" + }, + "description": { + "name": "description", + "description": "Description of the embed" + } + } + }, + "ban": { + "name": "ban", + "description": "Ban a member", + "options": { + "user": { + "name": "usuario", + "description": "Usuario a banear" + }, + "reason": { + "name": "razon", + "description": "Razon del ban" + }, + "days": { + "name": "dias", + "description": "Días para borrar mensajes del usuario" + } + } + }, + "play": { + "name": "play", + "description": "Play the song that you want with the name or a youtube/spotify link", + "options": { + "song": { + "name": "song", + "description": "Song to play" + } + } + }, + "stop": { + "name": "stop", + "description": "Stop the player" + }, + "skip": { + "name": "skip", + "description": "Skip the current song" + }, + "resume": { + "name": "resume", + "description": "Resume the current song!" + }, + "queue": { + "name": "queue", + "description": "Show the queue" + }, + "pause": { + "name": "pause", + "description": "Pause the current song" + }, + "nowplaying": { + "name": "nowplaying", + "description": "Show the current song" + }, + "loop": { + "name": "loop", + "description": "Repeats the current queue/song" + }, + "247": { + "name": "247", + "description": "Stay 24/7 in a voice channel" + } + } +} From 049841711d90f4929928caeca353c3d5074e85f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:37:41 +0000 Subject: [PATCH 30/88] New translations en-US.json (Irish) --- locales/ga-IE.json | 417 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 417 insertions(+) create mode 100644 locales/ga-IE.json diff --git a/locales/ga-IE.json b/locales/ga-IE.json new file mode 100644 index 0000000..c4de708 --- /dev/null +++ b/locales/ga-IE.json @@ -0,0 +1,417 @@ +{ + "question_ball": { + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", + "possibles": { + "0": "Yes", + "1": "No", + "2": "Maybe", + "3": "Obviously", + "4": "I say yes", + "5": "I say no", + "6": "Probably", + "7": "I have my doubts...", + "8": "Do not even doubt it", + "9": "You didn't even need to ask ;)", + "10": "Not at all...", + "11": "I don `t believe..." + } + }, + "impostor": { + "was": "Was the impostor", + "was_not": "Was not the impostor" + }, + "embed": { + "successfully": "Embed created and sent successfully.", + "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "modal": { + "title": "Embed Creator", + "title_label": "Title", + "title_placeholder": "My Awesome Embed", + "description_label": "Description", + "description_placeholder": "This is my awesome embed!", + "color_label": "Color" + }, + "buttons": { + "send": "Send", + "edit": "Edit" + }, + "invalid_input": "Invalid input" + }, + "github": { + "write_username": "Please write an username.", + "name": "🧑 Name:", + "account": " Account Type:", + "organization": "🏢 Organization:", + "link": "☁️ Link", + "location": "🗺 Location:", + "email": "📩 Email", + "biography": "📃 Biography", + "twitter": "🐦 Twitter:", + "repositories": "📂 Public Repositories", + "followers": "🧍 Followers", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" + }, + "help": { + "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", + "how_use": "How do I see the commands?", + "how_use_answer": "Easy, you just have to write", + "need_support": "If I need support, how can I contact with the support team", + "need_support_answer": "You can ask in our [support server!]({inviteURL})", + "how_vote": "How can I vote for the bot?", + "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", + "title": "✨ - Help menu" + }, + "avatar": "here you have the avatar of {user}", + "mchistory": { + "dont": "The username doesn't exist", + "names": "Name's historical", + "first": "First Name" + }, + "ping": { + "global": "Global ping", + "internal": "Internal Processing (database + processing)" + }, + "roleinfo": { + "managed": "Managed by Discord" + }, + "serverinfo": { + "verification": { + "no": "No verification.", + "low": "Low (Verified account).", + "medium": "Medium (Verified account for +5 minutes).", + "high": "High (Verified account for +10 minutes).", + "extreme": "Extreme (Verified account y verified phone number linked)." + }, + "explicit": { + "disabled": "No messages are scanned.", + "members_without_role": "Scan users without a role.", + "all_members": "Scan every message." + }, + "emoji_count": "Emoji Count", + "tier_level": "Tier Level", + "verification_level": "Verification Level", + "explicit_filter": "Explicit Content Filter Level" + }, + "ban": { + "not_found": "Member not found", + "self": "You can't ban yourself", + "owner": "You can't ban the owner", + "higher": "You can't ban a member with a higher role than you", + "ban": "Banned successfully", + "unbannable": "I can't ban this member" + }, + "skip": { + "messages": { + "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", + "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", + "2": "What are you doing that you don't listen to music? Add a song now :)" + }, + "no_same": "You are not within my voice channel.", + "skiped": "{song} has been skipped" + }, + "queue": { + "no_queue": "There aren't songs being played on this server. Why don't you add one?", + "current": "Currently playing:", + "queue": "{name}'s queue", + "no_page": "¡The page does not exist!", + "total": "Total songs queue:" + }, + "247": { + "enabled": "24/7 mode is enabled ", + "disabled": "24/7 mode is disabled" + }, + "play": { + "same": "You need to be on the same voice channel as the bot to execute this command.", + "not_voice": "You need to be on a voice channel to execute this command.", + "not_reproducible": "The attached link does not contain reproducible content.", + "added": "{song} added to the list", + "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + }, + "reboot": { + "all": "Rebooting all shards...", + "shard": "Rebooting shard {shard}..." + }, + "stop": { + "resumed": "Music resumed by {user}", + "paused": "Music paused by {user}", + "success": "Music stopped" + }, + "paused": "Music paused", + "resumed": "Music resumed", + "voice_update": { + "leaving": "Leaving {channel} in {time} minutes", + "alone": "I was alone, and I left {channel}" + }, + "automix": { + "generated": "Auto-Mix has been generated!", + "disabled": "AutoMix disabled" + }, + "twitch": { + "no_streamer_found": "The streamer was not found", + "already_following": "You are already following this streamer", + "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", + "unfollowed": "You have stopped following {streamer}.", + "role_mention": "Mention will be made to {role}.", + "now_live": "{streamer} is now live!" + }, + "loop": { + "queue": "Queue loop", + "song": "Song loop", + "disabled": "Loop disabled" + }, + "ERROREMBED": "Error", + "SUCCESSEMBED": "Success", + "PAUSE": "Pause", + "RESUME": "Resume", + "STOP": "Stop", + "SKIP": "Skip", + "NEXT": "Next", + "QUEUE": "Queue", + "TITLE": "Title", + "MEMBERS": "Members", + "REGULAR": "Regular", + "ANIMATED": "Animated", + "CHANNELS": "Channels", + "ROLES": "Roles", + "CATEGORIES": "Categories", + "SONGS": "Songs", + "TEXT": "Text", + "VOICE": "Voice", + "BOOSTERS": "Boosters", + "REGION": "Region", + "TIER": "Tier", + "CREATED_AT": "Created at", + "OWNER": "Owner", + "AUTHOR": "Author", + "REQUESTER": "Requester", + "DURATION": "Duration", + "NO": "No", + "API": "API", + "PING": "Ping", + "NAME": "Name", + "ID": "ID", + "POSITION": "Position", + "COLOR": "Color", + "MENTIONABLE": "Mentionable", + "SEPARATED": "Separated", + "YES": "Yes", + "PLAYING": "Playing", + "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "commands": { + "reboot": { + "name": "reboot", + "description": "Reboot a shard or all shards", + "options": { + "shard": { + "name": "shard", + "description": "Shard to reboot" + } + } + }, + "8ball": { + "name": "8ball", + "description": "Ask a question to the magic ball", + "options": { + "question": { + "name": "question", + "description": "What do you want to ask?" + } + } + }, + "impostor": { + "name": "impostor", + "description": "Are you the impostor? SUS", + "options": { + "user": { + "name": "user", + "description": "Are this user the impostor? SUS na na na na na na na" + } + } + }, + "avatar": { + "name": "avatar", + "description": "Send your avatar or the other user one!", + "options": { + "user": { + "name": "user", + "description": "User to get the avatar" + } + } + }, + "twitch": { + "name": "twitch", + "description": "Set a notification for when a streamer goes live!", + "options": { + "add": { + "name": "add", + "description": "Add a streamer to the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to add" + }, + "channel": { + "name": "channel", + "description": "Channel to send the notification" + }, + "role": { + "name": "role", + "description": "Role to mention" + } + } + }, + "remove": { + "name": "remove", + "description": "Remove a streamer from the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to remove" + } + } + } + } + }, + "shards": { + "name": "shards", + "description": "Get information about shards" + }, + "serverinfo": { + "name": "serverinfo", + "description": "Get information about the server" + }, + "roleinfo": { + "name": "roleinfo", + "description": "Get information about a role", + "options": { + "role": { + "name": "role", + "description": "Role to get information" + } + } + }, + "ping": { + "name": "ping", + "description": "Shows the bot latency" + }, + "mcserver": { + "name": "mcserver", + "description": "Send a image of a Minecraft server", + "options": { + "server": { + "name": "server", + "description": "Server to get information" + } + } + }, + "mchistory": { + "name": "mchistory", + "description": "Show the history of a Minecraft account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "help": { + "name": "help", + "description": "Show information about me" + }, + "github": { + "name": "github", + "description": "Show information about a GitHub account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "embed": { + "name": "embed", + "description": "Send a embed", + "options": { + "channel": { + "name": "channel", + "description": "Channel to send the embed" + }, + "color": { + "name": "color", + "description": "Color of the embed" + }, + "title": { + "name": "title", + "description": "Title of the embed" + }, + "description": { + "name": "description", + "description": "Description of the embed" + } + } + }, + "ban": { + "name": "ban", + "description": "Ban a member", + "options": { + "user": { + "name": "usuario", + "description": "Usuario a banear" + }, + "reason": { + "name": "razon", + "description": "Razon del ban" + }, + "days": { + "name": "dias", + "description": "Días para borrar mensajes del usuario" + } + } + }, + "play": { + "name": "play", + "description": "Play the song that you want with the name or a youtube/spotify link", + "options": { + "song": { + "name": "song", + "description": "Song to play" + } + } + }, + "stop": { + "name": "stop", + "description": "Stop the player" + }, + "skip": { + "name": "skip", + "description": "Skip the current song" + }, + "resume": { + "name": "resume", + "description": "Resume the current song!" + }, + "queue": { + "name": "queue", + "description": "Show the queue" + }, + "pause": { + "name": "pause", + "description": "Pause the current song" + }, + "nowplaying": { + "name": "nowplaying", + "description": "Show the current song" + }, + "loop": { + "name": "loop", + "description": "Repeats the current queue/song" + }, + "247": { + "name": "247", + "description": "Stay 24/7 in a voice channel" + } + } +} From 256f01cfa4d90690aaa83756b992b19bb2f41826 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:37:41 +0000 Subject: [PATCH 31/88] New translations en-US.json (Italian) --- locales/it-IT.json | 417 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 417 insertions(+) create mode 100644 locales/it-IT.json diff --git a/locales/it-IT.json b/locales/it-IT.json new file mode 100644 index 0000000..c4de708 --- /dev/null +++ b/locales/it-IT.json @@ -0,0 +1,417 @@ +{ + "question_ball": { + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", + "possibles": { + "0": "Yes", + "1": "No", + "2": "Maybe", + "3": "Obviously", + "4": "I say yes", + "5": "I say no", + "6": "Probably", + "7": "I have my doubts...", + "8": "Do not even doubt it", + "9": "You didn't even need to ask ;)", + "10": "Not at all...", + "11": "I don `t believe..." + } + }, + "impostor": { + "was": "Was the impostor", + "was_not": "Was not the impostor" + }, + "embed": { + "successfully": "Embed created and sent successfully.", + "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "modal": { + "title": "Embed Creator", + "title_label": "Title", + "title_placeholder": "My Awesome Embed", + "description_label": "Description", + "description_placeholder": "This is my awesome embed!", + "color_label": "Color" + }, + "buttons": { + "send": "Send", + "edit": "Edit" + }, + "invalid_input": "Invalid input" + }, + "github": { + "write_username": "Please write an username.", + "name": "🧑 Name:", + "account": " Account Type:", + "organization": "🏢 Organization:", + "link": "☁️ Link", + "location": "🗺 Location:", + "email": "📩 Email", + "biography": "📃 Biography", + "twitter": "🐦 Twitter:", + "repositories": "📂 Public Repositories", + "followers": "🧍 Followers", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" + }, + "help": { + "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", + "how_use": "How do I see the commands?", + "how_use_answer": "Easy, you just have to write", + "need_support": "If I need support, how can I contact with the support team", + "need_support_answer": "You can ask in our [support server!]({inviteURL})", + "how_vote": "How can I vote for the bot?", + "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", + "title": "✨ - Help menu" + }, + "avatar": "here you have the avatar of {user}", + "mchistory": { + "dont": "The username doesn't exist", + "names": "Name's historical", + "first": "First Name" + }, + "ping": { + "global": "Global ping", + "internal": "Internal Processing (database + processing)" + }, + "roleinfo": { + "managed": "Managed by Discord" + }, + "serverinfo": { + "verification": { + "no": "No verification.", + "low": "Low (Verified account).", + "medium": "Medium (Verified account for +5 minutes).", + "high": "High (Verified account for +10 minutes).", + "extreme": "Extreme (Verified account y verified phone number linked)." + }, + "explicit": { + "disabled": "No messages are scanned.", + "members_without_role": "Scan users without a role.", + "all_members": "Scan every message." + }, + "emoji_count": "Emoji Count", + "tier_level": "Tier Level", + "verification_level": "Verification Level", + "explicit_filter": "Explicit Content Filter Level" + }, + "ban": { + "not_found": "Member not found", + "self": "You can't ban yourself", + "owner": "You can't ban the owner", + "higher": "You can't ban a member with a higher role than you", + "ban": "Banned successfully", + "unbannable": "I can't ban this member" + }, + "skip": { + "messages": { + "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", + "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", + "2": "What are you doing that you don't listen to music? Add a song now :)" + }, + "no_same": "You are not within my voice channel.", + "skiped": "{song} has been skipped" + }, + "queue": { + "no_queue": "There aren't songs being played on this server. Why don't you add one?", + "current": "Currently playing:", + "queue": "{name}'s queue", + "no_page": "¡The page does not exist!", + "total": "Total songs queue:" + }, + "247": { + "enabled": "24/7 mode is enabled ", + "disabled": "24/7 mode is disabled" + }, + "play": { + "same": "You need to be on the same voice channel as the bot to execute this command.", + "not_voice": "You need to be on a voice channel to execute this command.", + "not_reproducible": "The attached link does not contain reproducible content.", + "added": "{song} added to the list", + "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + }, + "reboot": { + "all": "Rebooting all shards...", + "shard": "Rebooting shard {shard}..." + }, + "stop": { + "resumed": "Music resumed by {user}", + "paused": "Music paused by {user}", + "success": "Music stopped" + }, + "paused": "Music paused", + "resumed": "Music resumed", + "voice_update": { + "leaving": "Leaving {channel} in {time} minutes", + "alone": "I was alone, and I left {channel}" + }, + "automix": { + "generated": "Auto-Mix has been generated!", + "disabled": "AutoMix disabled" + }, + "twitch": { + "no_streamer_found": "The streamer was not found", + "already_following": "You are already following this streamer", + "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", + "unfollowed": "You have stopped following {streamer}.", + "role_mention": "Mention will be made to {role}.", + "now_live": "{streamer} is now live!" + }, + "loop": { + "queue": "Queue loop", + "song": "Song loop", + "disabled": "Loop disabled" + }, + "ERROREMBED": "Error", + "SUCCESSEMBED": "Success", + "PAUSE": "Pause", + "RESUME": "Resume", + "STOP": "Stop", + "SKIP": "Skip", + "NEXT": "Next", + "QUEUE": "Queue", + "TITLE": "Title", + "MEMBERS": "Members", + "REGULAR": "Regular", + "ANIMATED": "Animated", + "CHANNELS": "Channels", + "ROLES": "Roles", + "CATEGORIES": "Categories", + "SONGS": "Songs", + "TEXT": "Text", + "VOICE": "Voice", + "BOOSTERS": "Boosters", + "REGION": "Region", + "TIER": "Tier", + "CREATED_AT": "Created at", + "OWNER": "Owner", + "AUTHOR": "Author", + "REQUESTER": "Requester", + "DURATION": "Duration", + "NO": "No", + "API": "API", + "PING": "Ping", + "NAME": "Name", + "ID": "ID", + "POSITION": "Position", + "COLOR": "Color", + "MENTIONABLE": "Mentionable", + "SEPARATED": "Separated", + "YES": "Yes", + "PLAYING": "Playing", + "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "commands": { + "reboot": { + "name": "reboot", + "description": "Reboot a shard or all shards", + "options": { + "shard": { + "name": "shard", + "description": "Shard to reboot" + } + } + }, + "8ball": { + "name": "8ball", + "description": "Ask a question to the magic ball", + "options": { + "question": { + "name": "question", + "description": "What do you want to ask?" + } + } + }, + "impostor": { + "name": "impostor", + "description": "Are you the impostor? SUS", + "options": { + "user": { + "name": "user", + "description": "Are this user the impostor? SUS na na na na na na na" + } + } + }, + "avatar": { + "name": "avatar", + "description": "Send your avatar or the other user one!", + "options": { + "user": { + "name": "user", + "description": "User to get the avatar" + } + } + }, + "twitch": { + "name": "twitch", + "description": "Set a notification for when a streamer goes live!", + "options": { + "add": { + "name": "add", + "description": "Add a streamer to the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to add" + }, + "channel": { + "name": "channel", + "description": "Channel to send the notification" + }, + "role": { + "name": "role", + "description": "Role to mention" + } + } + }, + "remove": { + "name": "remove", + "description": "Remove a streamer from the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to remove" + } + } + } + } + }, + "shards": { + "name": "shards", + "description": "Get information about shards" + }, + "serverinfo": { + "name": "serverinfo", + "description": "Get information about the server" + }, + "roleinfo": { + "name": "roleinfo", + "description": "Get information about a role", + "options": { + "role": { + "name": "role", + "description": "Role to get information" + } + } + }, + "ping": { + "name": "ping", + "description": "Shows the bot latency" + }, + "mcserver": { + "name": "mcserver", + "description": "Send a image of a Minecraft server", + "options": { + "server": { + "name": "server", + "description": "Server to get information" + } + } + }, + "mchistory": { + "name": "mchistory", + "description": "Show the history of a Minecraft account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "help": { + "name": "help", + "description": "Show information about me" + }, + "github": { + "name": "github", + "description": "Show information about a GitHub account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "embed": { + "name": "embed", + "description": "Send a embed", + "options": { + "channel": { + "name": "channel", + "description": "Channel to send the embed" + }, + "color": { + "name": "color", + "description": "Color of the embed" + }, + "title": { + "name": "title", + "description": "Title of the embed" + }, + "description": { + "name": "description", + "description": "Description of the embed" + } + } + }, + "ban": { + "name": "ban", + "description": "Ban a member", + "options": { + "user": { + "name": "usuario", + "description": "Usuario a banear" + }, + "reason": { + "name": "razon", + "description": "Razon del ban" + }, + "days": { + "name": "dias", + "description": "Días para borrar mensajes del usuario" + } + } + }, + "play": { + "name": "play", + "description": "Play the song that you want with the name or a youtube/spotify link", + "options": { + "song": { + "name": "song", + "description": "Song to play" + } + } + }, + "stop": { + "name": "stop", + "description": "Stop the player" + }, + "skip": { + "name": "skip", + "description": "Skip the current song" + }, + "resume": { + "name": "resume", + "description": "Resume the current song!" + }, + "queue": { + "name": "queue", + "description": "Show the queue" + }, + "pause": { + "name": "pause", + "description": "Pause the current song" + }, + "nowplaying": { + "name": "nowplaying", + "description": "Show the current song" + }, + "loop": { + "name": "loop", + "description": "Repeats the current queue/song" + }, + "247": { + "name": "247", + "description": "Stay 24/7 in a voice channel" + } + } +} From 66ca85fa386d03ee3f355df6a256f3bb0e7d2a80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:37:42 +0000 Subject: [PATCH 32/88] New translations en-US.json (Dutch) --- locales/nl-NL.json | 417 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 417 insertions(+) create mode 100644 locales/nl-NL.json diff --git a/locales/nl-NL.json b/locales/nl-NL.json new file mode 100644 index 0000000..c4de708 --- /dev/null +++ b/locales/nl-NL.json @@ -0,0 +1,417 @@ +{ + "question_ball": { + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", + "possibles": { + "0": "Yes", + "1": "No", + "2": "Maybe", + "3": "Obviously", + "4": "I say yes", + "5": "I say no", + "6": "Probably", + "7": "I have my doubts...", + "8": "Do not even doubt it", + "9": "You didn't even need to ask ;)", + "10": "Not at all...", + "11": "I don `t believe..." + } + }, + "impostor": { + "was": "Was the impostor", + "was_not": "Was not the impostor" + }, + "embed": { + "successfully": "Embed created and sent successfully.", + "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "modal": { + "title": "Embed Creator", + "title_label": "Title", + "title_placeholder": "My Awesome Embed", + "description_label": "Description", + "description_placeholder": "This is my awesome embed!", + "color_label": "Color" + }, + "buttons": { + "send": "Send", + "edit": "Edit" + }, + "invalid_input": "Invalid input" + }, + "github": { + "write_username": "Please write an username.", + "name": "🧑 Name:", + "account": " Account Type:", + "organization": "🏢 Organization:", + "link": "☁️ Link", + "location": "🗺 Location:", + "email": "📩 Email", + "biography": "📃 Biography", + "twitter": "🐦 Twitter:", + "repositories": "📂 Public Repositories", + "followers": "🧍 Followers", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" + }, + "help": { + "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", + "how_use": "How do I see the commands?", + "how_use_answer": "Easy, you just have to write", + "need_support": "If I need support, how can I contact with the support team", + "need_support_answer": "You can ask in our [support server!]({inviteURL})", + "how_vote": "How can I vote for the bot?", + "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", + "title": "✨ - Help menu" + }, + "avatar": "here you have the avatar of {user}", + "mchistory": { + "dont": "The username doesn't exist", + "names": "Name's historical", + "first": "First Name" + }, + "ping": { + "global": "Global ping", + "internal": "Internal Processing (database + processing)" + }, + "roleinfo": { + "managed": "Managed by Discord" + }, + "serverinfo": { + "verification": { + "no": "No verification.", + "low": "Low (Verified account).", + "medium": "Medium (Verified account for +5 minutes).", + "high": "High (Verified account for +10 minutes).", + "extreme": "Extreme (Verified account y verified phone number linked)." + }, + "explicit": { + "disabled": "No messages are scanned.", + "members_without_role": "Scan users without a role.", + "all_members": "Scan every message." + }, + "emoji_count": "Emoji Count", + "tier_level": "Tier Level", + "verification_level": "Verification Level", + "explicit_filter": "Explicit Content Filter Level" + }, + "ban": { + "not_found": "Member not found", + "self": "You can't ban yourself", + "owner": "You can't ban the owner", + "higher": "You can't ban a member with a higher role than you", + "ban": "Banned successfully", + "unbannable": "I can't ban this member" + }, + "skip": { + "messages": { + "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", + "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", + "2": "What are you doing that you don't listen to music? Add a song now :)" + }, + "no_same": "You are not within my voice channel.", + "skiped": "{song} has been skipped" + }, + "queue": { + "no_queue": "There aren't songs being played on this server. Why don't you add one?", + "current": "Currently playing:", + "queue": "{name}'s queue", + "no_page": "¡The page does not exist!", + "total": "Total songs queue:" + }, + "247": { + "enabled": "24/7 mode is enabled ", + "disabled": "24/7 mode is disabled" + }, + "play": { + "same": "You need to be on the same voice channel as the bot to execute this command.", + "not_voice": "You need to be on a voice channel to execute this command.", + "not_reproducible": "The attached link does not contain reproducible content.", + "added": "{song} added to the list", + "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + }, + "reboot": { + "all": "Rebooting all shards...", + "shard": "Rebooting shard {shard}..." + }, + "stop": { + "resumed": "Music resumed by {user}", + "paused": "Music paused by {user}", + "success": "Music stopped" + }, + "paused": "Music paused", + "resumed": "Music resumed", + "voice_update": { + "leaving": "Leaving {channel} in {time} minutes", + "alone": "I was alone, and I left {channel}" + }, + "automix": { + "generated": "Auto-Mix has been generated!", + "disabled": "AutoMix disabled" + }, + "twitch": { + "no_streamer_found": "The streamer was not found", + "already_following": "You are already following this streamer", + "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", + "unfollowed": "You have stopped following {streamer}.", + "role_mention": "Mention will be made to {role}.", + "now_live": "{streamer} is now live!" + }, + "loop": { + "queue": "Queue loop", + "song": "Song loop", + "disabled": "Loop disabled" + }, + "ERROREMBED": "Error", + "SUCCESSEMBED": "Success", + "PAUSE": "Pause", + "RESUME": "Resume", + "STOP": "Stop", + "SKIP": "Skip", + "NEXT": "Next", + "QUEUE": "Queue", + "TITLE": "Title", + "MEMBERS": "Members", + "REGULAR": "Regular", + "ANIMATED": "Animated", + "CHANNELS": "Channels", + "ROLES": "Roles", + "CATEGORIES": "Categories", + "SONGS": "Songs", + "TEXT": "Text", + "VOICE": "Voice", + "BOOSTERS": "Boosters", + "REGION": "Region", + "TIER": "Tier", + "CREATED_AT": "Created at", + "OWNER": "Owner", + "AUTHOR": "Author", + "REQUESTER": "Requester", + "DURATION": "Duration", + "NO": "No", + "API": "API", + "PING": "Ping", + "NAME": "Name", + "ID": "ID", + "POSITION": "Position", + "COLOR": "Color", + "MENTIONABLE": "Mentionable", + "SEPARATED": "Separated", + "YES": "Yes", + "PLAYING": "Playing", + "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "commands": { + "reboot": { + "name": "reboot", + "description": "Reboot a shard or all shards", + "options": { + "shard": { + "name": "shard", + "description": "Shard to reboot" + } + } + }, + "8ball": { + "name": "8ball", + "description": "Ask a question to the magic ball", + "options": { + "question": { + "name": "question", + "description": "What do you want to ask?" + } + } + }, + "impostor": { + "name": "impostor", + "description": "Are you the impostor? SUS", + "options": { + "user": { + "name": "user", + "description": "Are this user the impostor? SUS na na na na na na na" + } + } + }, + "avatar": { + "name": "avatar", + "description": "Send your avatar or the other user one!", + "options": { + "user": { + "name": "user", + "description": "User to get the avatar" + } + } + }, + "twitch": { + "name": "twitch", + "description": "Set a notification for when a streamer goes live!", + "options": { + "add": { + "name": "add", + "description": "Add a streamer to the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to add" + }, + "channel": { + "name": "channel", + "description": "Channel to send the notification" + }, + "role": { + "name": "role", + "description": "Role to mention" + } + } + }, + "remove": { + "name": "remove", + "description": "Remove a streamer from the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to remove" + } + } + } + } + }, + "shards": { + "name": "shards", + "description": "Get information about shards" + }, + "serverinfo": { + "name": "serverinfo", + "description": "Get information about the server" + }, + "roleinfo": { + "name": "roleinfo", + "description": "Get information about a role", + "options": { + "role": { + "name": "role", + "description": "Role to get information" + } + } + }, + "ping": { + "name": "ping", + "description": "Shows the bot latency" + }, + "mcserver": { + "name": "mcserver", + "description": "Send a image of a Minecraft server", + "options": { + "server": { + "name": "server", + "description": "Server to get information" + } + } + }, + "mchistory": { + "name": "mchistory", + "description": "Show the history of a Minecraft account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "help": { + "name": "help", + "description": "Show information about me" + }, + "github": { + "name": "github", + "description": "Show information about a GitHub account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "embed": { + "name": "embed", + "description": "Send a embed", + "options": { + "channel": { + "name": "channel", + "description": "Channel to send the embed" + }, + "color": { + "name": "color", + "description": "Color of the embed" + }, + "title": { + "name": "title", + "description": "Title of the embed" + }, + "description": { + "name": "description", + "description": "Description of the embed" + } + } + }, + "ban": { + "name": "ban", + "description": "Ban a member", + "options": { + "user": { + "name": "usuario", + "description": "Usuario a banear" + }, + "reason": { + "name": "razon", + "description": "Razon del ban" + }, + "days": { + "name": "dias", + "description": "Días para borrar mensajes del usuario" + } + } + }, + "play": { + "name": "play", + "description": "Play the song that you want with the name or a youtube/spotify link", + "options": { + "song": { + "name": "song", + "description": "Song to play" + } + } + }, + "stop": { + "name": "stop", + "description": "Stop the player" + }, + "skip": { + "name": "skip", + "description": "Skip the current song" + }, + "resume": { + "name": "resume", + "description": "Resume the current song!" + }, + "queue": { + "name": "queue", + "description": "Show the queue" + }, + "pause": { + "name": "pause", + "description": "Pause the current song" + }, + "nowplaying": { + "name": "nowplaying", + "description": "Show the current song" + }, + "loop": { + "name": "loop", + "description": "Repeats the current queue/song" + }, + "247": { + "name": "247", + "description": "Stay 24/7 in a voice channel" + } + } +} From 23edb5529d7dbcb956a29fe467d7efa15cb7a87b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:37:43 +0000 Subject: [PATCH 33/88] New translations en-US.json (Russian) --- locales/ru-RU.json | 417 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 417 insertions(+) create mode 100644 locales/ru-RU.json diff --git a/locales/ru-RU.json b/locales/ru-RU.json new file mode 100644 index 0000000..c4de708 --- /dev/null +++ b/locales/ru-RU.json @@ -0,0 +1,417 @@ +{ + "question_ball": { + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", + "possibles": { + "0": "Yes", + "1": "No", + "2": "Maybe", + "3": "Obviously", + "4": "I say yes", + "5": "I say no", + "6": "Probably", + "7": "I have my doubts...", + "8": "Do not even doubt it", + "9": "You didn't even need to ask ;)", + "10": "Not at all...", + "11": "I don `t believe..." + } + }, + "impostor": { + "was": "Was the impostor", + "was_not": "Was not the impostor" + }, + "embed": { + "successfully": "Embed created and sent successfully.", + "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "modal": { + "title": "Embed Creator", + "title_label": "Title", + "title_placeholder": "My Awesome Embed", + "description_label": "Description", + "description_placeholder": "This is my awesome embed!", + "color_label": "Color" + }, + "buttons": { + "send": "Send", + "edit": "Edit" + }, + "invalid_input": "Invalid input" + }, + "github": { + "write_username": "Please write an username.", + "name": "🧑 Name:", + "account": " Account Type:", + "organization": "🏢 Organization:", + "link": "☁️ Link", + "location": "🗺 Location:", + "email": "📩 Email", + "biography": "📃 Biography", + "twitter": "🐦 Twitter:", + "repositories": "📂 Public Repositories", + "followers": "🧍 Followers", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" + }, + "help": { + "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", + "how_use": "How do I see the commands?", + "how_use_answer": "Easy, you just have to write", + "need_support": "If I need support, how can I contact with the support team", + "need_support_answer": "You can ask in our [support server!]({inviteURL})", + "how_vote": "How can I vote for the bot?", + "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", + "title": "✨ - Help menu" + }, + "avatar": "here you have the avatar of {user}", + "mchistory": { + "dont": "The username doesn't exist", + "names": "Name's historical", + "first": "First Name" + }, + "ping": { + "global": "Global ping", + "internal": "Internal Processing (database + processing)" + }, + "roleinfo": { + "managed": "Managed by Discord" + }, + "serverinfo": { + "verification": { + "no": "No verification.", + "low": "Low (Verified account).", + "medium": "Medium (Verified account for +5 minutes).", + "high": "High (Verified account for +10 minutes).", + "extreme": "Extreme (Verified account y verified phone number linked)." + }, + "explicit": { + "disabled": "No messages are scanned.", + "members_without_role": "Scan users without a role.", + "all_members": "Scan every message." + }, + "emoji_count": "Emoji Count", + "tier_level": "Tier Level", + "verification_level": "Verification Level", + "explicit_filter": "Explicit Content Filter Level" + }, + "ban": { + "not_found": "Member not found", + "self": "You can't ban yourself", + "owner": "You can't ban the owner", + "higher": "You can't ban a member with a higher role than you", + "ban": "Banned successfully", + "unbannable": "I can't ban this member" + }, + "skip": { + "messages": { + "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", + "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", + "2": "What are you doing that you don't listen to music? Add a song now :)" + }, + "no_same": "You are not within my voice channel.", + "skiped": "{song} has been skipped" + }, + "queue": { + "no_queue": "There aren't songs being played on this server. Why don't you add one?", + "current": "Currently playing:", + "queue": "{name}'s queue", + "no_page": "¡The page does not exist!", + "total": "Total songs queue:" + }, + "247": { + "enabled": "24/7 mode is enabled ", + "disabled": "24/7 mode is disabled" + }, + "play": { + "same": "You need to be on the same voice channel as the bot to execute this command.", + "not_voice": "You need to be on a voice channel to execute this command.", + "not_reproducible": "The attached link does not contain reproducible content.", + "added": "{song} added to the list", + "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + }, + "reboot": { + "all": "Rebooting all shards...", + "shard": "Rebooting shard {shard}..." + }, + "stop": { + "resumed": "Music resumed by {user}", + "paused": "Music paused by {user}", + "success": "Music stopped" + }, + "paused": "Music paused", + "resumed": "Music resumed", + "voice_update": { + "leaving": "Leaving {channel} in {time} minutes", + "alone": "I was alone, and I left {channel}" + }, + "automix": { + "generated": "Auto-Mix has been generated!", + "disabled": "AutoMix disabled" + }, + "twitch": { + "no_streamer_found": "The streamer was not found", + "already_following": "You are already following this streamer", + "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", + "unfollowed": "You have stopped following {streamer}.", + "role_mention": "Mention will be made to {role}.", + "now_live": "{streamer} is now live!" + }, + "loop": { + "queue": "Queue loop", + "song": "Song loop", + "disabled": "Loop disabled" + }, + "ERROREMBED": "Error", + "SUCCESSEMBED": "Success", + "PAUSE": "Pause", + "RESUME": "Resume", + "STOP": "Stop", + "SKIP": "Skip", + "NEXT": "Next", + "QUEUE": "Queue", + "TITLE": "Title", + "MEMBERS": "Members", + "REGULAR": "Regular", + "ANIMATED": "Animated", + "CHANNELS": "Channels", + "ROLES": "Roles", + "CATEGORIES": "Categories", + "SONGS": "Songs", + "TEXT": "Text", + "VOICE": "Voice", + "BOOSTERS": "Boosters", + "REGION": "Region", + "TIER": "Tier", + "CREATED_AT": "Created at", + "OWNER": "Owner", + "AUTHOR": "Author", + "REQUESTER": "Requester", + "DURATION": "Duration", + "NO": "No", + "API": "API", + "PING": "Ping", + "NAME": "Name", + "ID": "ID", + "POSITION": "Position", + "COLOR": "Color", + "MENTIONABLE": "Mentionable", + "SEPARATED": "Separated", + "YES": "Yes", + "PLAYING": "Playing", + "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "commands": { + "reboot": { + "name": "reboot", + "description": "Reboot a shard or all shards", + "options": { + "shard": { + "name": "shard", + "description": "Shard to reboot" + } + } + }, + "8ball": { + "name": "8ball", + "description": "Ask a question to the magic ball", + "options": { + "question": { + "name": "question", + "description": "What do you want to ask?" + } + } + }, + "impostor": { + "name": "impostor", + "description": "Are you the impostor? SUS", + "options": { + "user": { + "name": "user", + "description": "Are this user the impostor? SUS na na na na na na na" + } + } + }, + "avatar": { + "name": "avatar", + "description": "Send your avatar or the other user one!", + "options": { + "user": { + "name": "user", + "description": "User to get the avatar" + } + } + }, + "twitch": { + "name": "twitch", + "description": "Set a notification for when a streamer goes live!", + "options": { + "add": { + "name": "add", + "description": "Add a streamer to the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to add" + }, + "channel": { + "name": "channel", + "description": "Channel to send the notification" + }, + "role": { + "name": "role", + "description": "Role to mention" + } + } + }, + "remove": { + "name": "remove", + "description": "Remove a streamer from the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to remove" + } + } + } + } + }, + "shards": { + "name": "shards", + "description": "Get information about shards" + }, + "serverinfo": { + "name": "serverinfo", + "description": "Get information about the server" + }, + "roleinfo": { + "name": "roleinfo", + "description": "Get information about a role", + "options": { + "role": { + "name": "role", + "description": "Role to get information" + } + } + }, + "ping": { + "name": "ping", + "description": "Shows the bot latency" + }, + "mcserver": { + "name": "mcserver", + "description": "Send a image of a Minecraft server", + "options": { + "server": { + "name": "server", + "description": "Server to get information" + } + } + }, + "mchistory": { + "name": "mchistory", + "description": "Show the history of a Minecraft account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "help": { + "name": "help", + "description": "Show information about me" + }, + "github": { + "name": "github", + "description": "Show information about a GitHub account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "embed": { + "name": "embed", + "description": "Send a embed", + "options": { + "channel": { + "name": "channel", + "description": "Channel to send the embed" + }, + "color": { + "name": "color", + "description": "Color of the embed" + }, + "title": { + "name": "title", + "description": "Title of the embed" + }, + "description": { + "name": "description", + "description": "Description of the embed" + } + } + }, + "ban": { + "name": "ban", + "description": "Ban a member", + "options": { + "user": { + "name": "usuario", + "description": "Usuario a banear" + }, + "reason": { + "name": "razon", + "description": "Razon del ban" + }, + "days": { + "name": "dias", + "description": "Días para borrar mensajes del usuario" + } + } + }, + "play": { + "name": "play", + "description": "Play the song that you want with the name or a youtube/spotify link", + "options": { + "song": { + "name": "song", + "description": "Song to play" + } + } + }, + "stop": { + "name": "stop", + "description": "Stop the player" + }, + "skip": { + "name": "skip", + "description": "Skip the current song" + }, + "resume": { + "name": "resume", + "description": "Resume the current song!" + }, + "queue": { + "name": "queue", + "description": "Show the queue" + }, + "pause": { + "name": "pause", + "description": "Pause the current song" + }, + "nowplaying": { + "name": "nowplaying", + "description": "Show the current song" + }, + "loop": { + "name": "loop", + "description": "Repeats the current queue/song" + }, + "247": { + "name": "247", + "description": "Stay 24/7 in a voice channel" + } + } +} From c9558eb47b2af4b06ea7b2dc3522b2988518586f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:37:44 +0000 Subject: [PATCH 34/88] New translations en-US.json (Turkish) --- locales/tr-TR.json | 417 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 417 insertions(+) create mode 100644 locales/tr-TR.json diff --git a/locales/tr-TR.json b/locales/tr-TR.json new file mode 100644 index 0000000..c4de708 --- /dev/null +++ b/locales/tr-TR.json @@ -0,0 +1,417 @@ +{ + "question_ball": { + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", + "possibles": { + "0": "Yes", + "1": "No", + "2": "Maybe", + "3": "Obviously", + "4": "I say yes", + "5": "I say no", + "6": "Probably", + "7": "I have my doubts...", + "8": "Do not even doubt it", + "9": "You didn't even need to ask ;)", + "10": "Not at all...", + "11": "I don `t believe..." + } + }, + "impostor": { + "was": "Was the impostor", + "was_not": "Was not the impostor" + }, + "embed": { + "successfully": "Embed created and sent successfully.", + "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "modal": { + "title": "Embed Creator", + "title_label": "Title", + "title_placeholder": "My Awesome Embed", + "description_label": "Description", + "description_placeholder": "This is my awesome embed!", + "color_label": "Color" + }, + "buttons": { + "send": "Send", + "edit": "Edit" + }, + "invalid_input": "Invalid input" + }, + "github": { + "write_username": "Please write an username.", + "name": "🧑 Name:", + "account": " Account Type:", + "organization": "🏢 Organization:", + "link": "☁️ Link", + "location": "🗺 Location:", + "email": "📩 Email", + "biography": "📃 Biography", + "twitter": "🐦 Twitter:", + "repositories": "📂 Public Repositories", + "followers": "🧍 Followers", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" + }, + "help": { + "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", + "how_use": "How do I see the commands?", + "how_use_answer": "Easy, you just have to write", + "need_support": "If I need support, how can I contact with the support team", + "need_support_answer": "You can ask in our [support server!]({inviteURL})", + "how_vote": "How can I vote for the bot?", + "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", + "title": "✨ - Help menu" + }, + "avatar": "here you have the avatar of {user}", + "mchistory": { + "dont": "The username doesn't exist", + "names": "Name's historical", + "first": "First Name" + }, + "ping": { + "global": "Global ping", + "internal": "Internal Processing (database + processing)" + }, + "roleinfo": { + "managed": "Managed by Discord" + }, + "serverinfo": { + "verification": { + "no": "No verification.", + "low": "Low (Verified account).", + "medium": "Medium (Verified account for +5 minutes).", + "high": "High (Verified account for +10 minutes).", + "extreme": "Extreme (Verified account y verified phone number linked)." + }, + "explicit": { + "disabled": "No messages are scanned.", + "members_without_role": "Scan users without a role.", + "all_members": "Scan every message." + }, + "emoji_count": "Emoji Count", + "tier_level": "Tier Level", + "verification_level": "Verification Level", + "explicit_filter": "Explicit Content Filter Level" + }, + "ban": { + "not_found": "Member not found", + "self": "You can't ban yourself", + "owner": "You can't ban the owner", + "higher": "You can't ban a member with a higher role than you", + "ban": "Banned successfully", + "unbannable": "I can't ban this member" + }, + "skip": { + "messages": { + "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", + "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", + "2": "What are you doing that you don't listen to music? Add a song now :)" + }, + "no_same": "You are not within my voice channel.", + "skiped": "{song} has been skipped" + }, + "queue": { + "no_queue": "There aren't songs being played on this server. Why don't you add one?", + "current": "Currently playing:", + "queue": "{name}'s queue", + "no_page": "¡The page does not exist!", + "total": "Total songs queue:" + }, + "247": { + "enabled": "24/7 mode is enabled ", + "disabled": "24/7 mode is disabled" + }, + "play": { + "same": "You need to be on the same voice channel as the bot to execute this command.", + "not_voice": "You need to be on a voice channel to execute this command.", + "not_reproducible": "The attached link does not contain reproducible content.", + "added": "{song} added to the list", + "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + }, + "reboot": { + "all": "Rebooting all shards...", + "shard": "Rebooting shard {shard}..." + }, + "stop": { + "resumed": "Music resumed by {user}", + "paused": "Music paused by {user}", + "success": "Music stopped" + }, + "paused": "Music paused", + "resumed": "Music resumed", + "voice_update": { + "leaving": "Leaving {channel} in {time} minutes", + "alone": "I was alone, and I left {channel}" + }, + "automix": { + "generated": "Auto-Mix has been generated!", + "disabled": "AutoMix disabled" + }, + "twitch": { + "no_streamer_found": "The streamer was not found", + "already_following": "You are already following this streamer", + "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", + "unfollowed": "You have stopped following {streamer}.", + "role_mention": "Mention will be made to {role}.", + "now_live": "{streamer} is now live!" + }, + "loop": { + "queue": "Queue loop", + "song": "Song loop", + "disabled": "Loop disabled" + }, + "ERROREMBED": "Error", + "SUCCESSEMBED": "Success", + "PAUSE": "Pause", + "RESUME": "Resume", + "STOP": "Stop", + "SKIP": "Skip", + "NEXT": "Next", + "QUEUE": "Queue", + "TITLE": "Title", + "MEMBERS": "Members", + "REGULAR": "Regular", + "ANIMATED": "Animated", + "CHANNELS": "Channels", + "ROLES": "Roles", + "CATEGORIES": "Categories", + "SONGS": "Songs", + "TEXT": "Text", + "VOICE": "Voice", + "BOOSTERS": "Boosters", + "REGION": "Region", + "TIER": "Tier", + "CREATED_AT": "Created at", + "OWNER": "Owner", + "AUTHOR": "Author", + "REQUESTER": "Requester", + "DURATION": "Duration", + "NO": "No", + "API": "API", + "PING": "Ping", + "NAME": "Name", + "ID": "ID", + "POSITION": "Position", + "COLOR": "Color", + "MENTIONABLE": "Mentionable", + "SEPARATED": "Separated", + "YES": "Yes", + "PLAYING": "Playing", + "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "commands": { + "reboot": { + "name": "reboot", + "description": "Reboot a shard or all shards", + "options": { + "shard": { + "name": "shard", + "description": "Shard to reboot" + } + } + }, + "8ball": { + "name": "8ball", + "description": "Ask a question to the magic ball", + "options": { + "question": { + "name": "question", + "description": "What do you want to ask?" + } + } + }, + "impostor": { + "name": "impostor", + "description": "Are you the impostor? SUS", + "options": { + "user": { + "name": "user", + "description": "Are this user the impostor? SUS na na na na na na na" + } + } + }, + "avatar": { + "name": "avatar", + "description": "Send your avatar or the other user one!", + "options": { + "user": { + "name": "user", + "description": "User to get the avatar" + } + } + }, + "twitch": { + "name": "twitch", + "description": "Set a notification for when a streamer goes live!", + "options": { + "add": { + "name": "add", + "description": "Add a streamer to the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to add" + }, + "channel": { + "name": "channel", + "description": "Channel to send the notification" + }, + "role": { + "name": "role", + "description": "Role to mention" + } + } + }, + "remove": { + "name": "remove", + "description": "Remove a streamer from the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to remove" + } + } + } + } + }, + "shards": { + "name": "shards", + "description": "Get information about shards" + }, + "serverinfo": { + "name": "serverinfo", + "description": "Get information about the server" + }, + "roleinfo": { + "name": "roleinfo", + "description": "Get information about a role", + "options": { + "role": { + "name": "role", + "description": "Role to get information" + } + } + }, + "ping": { + "name": "ping", + "description": "Shows the bot latency" + }, + "mcserver": { + "name": "mcserver", + "description": "Send a image of a Minecraft server", + "options": { + "server": { + "name": "server", + "description": "Server to get information" + } + } + }, + "mchistory": { + "name": "mchistory", + "description": "Show the history of a Minecraft account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "help": { + "name": "help", + "description": "Show information about me" + }, + "github": { + "name": "github", + "description": "Show information about a GitHub account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "embed": { + "name": "embed", + "description": "Send a embed", + "options": { + "channel": { + "name": "channel", + "description": "Channel to send the embed" + }, + "color": { + "name": "color", + "description": "Color of the embed" + }, + "title": { + "name": "title", + "description": "Title of the embed" + }, + "description": { + "name": "description", + "description": "Description of the embed" + } + } + }, + "ban": { + "name": "ban", + "description": "Ban a member", + "options": { + "user": { + "name": "usuario", + "description": "Usuario a banear" + }, + "reason": { + "name": "razon", + "description": "Razon del ban" + }, + "days": { + "name": "dias", + "description": "Días para borrar mensajes del usuario" + } + } + }, + "play": { + "name": "play", + "description": "Play the song that you want with the name or a youtube/spotify link", + "options": { + "song": { + "name": "song", + "description": "Song to play" + } + } + }, + "stop": { + "name": "stop", + "description": "Stop the player" + }, + "skip": { + "name": "skip", + "description": "Skip the current song" + }, + "resume": { + "name": "resume", + "description": "Resume the current song!" + }, + "queue": { + "name": "queue", + "description": "Show the queue" + }, + "pause": { + "name": "pause", + "description": "Pause the current song" + }, + "nowplaying": { + "name": "nowplaying", + "description": "Show the current song" + }, + "loop": { + "name": "loop", + "description": "Repeats the current queue/song" + }, + "247": { + "name": "247", + "description": "Stay 24/7 in a voice channel" + } + } +} From 8acc893fb486217f0a99c7006ff4c2c568355685 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:37:44 +0000 Subject: [PATCH 35/88] New translations en-US.json (Ukrainian) --- locales/uk-UA.json | 417 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 417 insertions(+) create mode 100644 locales/uk-UA.json diff --git a/locales/uk-UA.json b/locales/uk-UA.json new file mode 100644 index 0000000..c4de708 --- /dev/null +++ b/locales/uk-UA.json @@ -0,0 +1,417 @@ +{ + "question_ball": { + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", + "possibles": { + "0": "Yes", + "1": "No", + "2": "Maybe", + "3": "Obviously", + "4": "I say yes", + "5": "I say no", + "6": "Probably", + "7": "I have my doubts...", + "8": "Do not even doubt it", + "9": "You didn't even need to ask ;)", + "10": "Not at all...", + "11": "I don `t believe..." + } + }, + "impostor": { + "was": "Was the impostor", + "was_not": "Was not the impostor" + }, + "embed": { + "successfully": "Embed created and sent successfully.", + "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "modal": { + "title": "Embed Creator", + "title_label": "Title", + "title_placeholder": "My Awesome Embed", + "description_label": "Description", + "description_placeholder": "This is my awesome embed!", + "color_label": "Color" + }, + "buttons": { + "send": "Send", + "edit": "Edit" + }, + "invalid_input": "Invalid input" + }, + "github": { + "write_username": "Please write an username.", + "name": "🧑 Name:", + "account": " Account Type:", + "organization": "🏢 Organization:", + "link": "☁️ Link", + "location": "🗺 Location:", + "email": "📩 Email", + "biography": "📃 Biography", + "twitter": "🐦 Twitter:", + "repositories": "📂 Public Repositories", + "followers": "🧍 Followers", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" + }, + "help": { + "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", + "how_use": "How do I see the commands?", + "how_use_answer": "Easy, you just have to write", + "need_support": "If I need support, how can I contact with the support team", + "need_support_answer": "You can ask in our [support server!]({inviteURL})", + "how_vote": "How can I vote for the bot?", + "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", + "title": "✨ - Help menu" + }, + "avatar": "here you have the avatar of {user}", + "mchistory": { + "dont": "The username doesn't exist", + "names": "Name's historical", + "first": "First Name" + }, + "ping": { + "global": "Global ping", + "internal": "Internal Processing (database + processing)" + }, + "roleinfo": { + "managed": "Managed by Discord" + }, + "serverinfo": { + "verification": { + "no": "No verification.", + "low": "Low (Verified account).", + "medium": "Medium (Verified account for +5 minutes).", + "high": "High (Verified account for +10 minutes).", + "extreme": "Extreme (Verified account y verified phone number linked)." + }, + "explicit": { + "disabled": "No messages are scanned.", + "members_without_role": "Scan users without a role.", + "all_members": "Scan every message." + }, + "emoji_count": "Emoji Count", + "tier_level": "Tier Level", + "verification_level": "Verification Level", + "explicit_filter": "Explicit Content Filter Level" + }, + "ban": { + "not_found": "Member not found", + "self": "You can't ban yourself", + "owner": "You can't ban the owner", + "higher": "You can't ban a member with a higher role than you", + "ban": "Banned successfully", + "unbannable": "I can't ban this member" + }, + "skip": { + "messages": { + "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", + "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", + "2": "What are you doing that you don't listen to music? Add a song now :)" + }, + "no_same": "You are not within my voice channel.", + "skiped": "{song} has been skipped" + }, + "queue": { + "no_queue": "There aren't songs being played on this server. Why don't you add one?", + "current": "Currently playing:", + "queue": "{name}'s queue", + "no_page": "¡The page does not exist!", + "total": "Total songs queue:" + }, + "247": { + "enabled": "24/7 mode is enabled ", + "disabled": "24/7 mode is disabled" + }, + "play": { + "same": "You need to be on the same voice channel as the bot to execute this command.", + "not_voice": "You need to be on a voice channel to execute this command.", + "not_reproducible": "The attached link does not contain reproducible content.", + "added": "{song} added to the list", + "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + }, + "reboot": { + "all": "Rebooting all shards...", + "shard": "Rebooting shard {shard}..." + }, + "stop": { + "resumed": "Music resumed by {user}", + "paused": "Music paused by {user}", + "success": "Music stopped" + }, + "paused": "Music paused", + "resumed": "Music resumed", + "voice_update": { + "leaving": "Leaving {channel} in {time} minutes", + "alone": "I was alone, and I left {channel}" + }, + "automix": { + "generated": "Auto-Mix has been generated!", + "disabled": "AutoMix disabled" + }, + "twitch": { + "no_streamer_found": "The streamer was not found", + "already_following": "You are already following this streamer", + "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", + "unfollowed": "You have stopped following {streamer}.", + "role_mention": "Mention will be made to {role}.", + "now_live": "{streamer} is now live!" + }, + "loop": { + "queue": "Queue loop", + "song": "Song loop", + "disabled": "Loop disabled" + }, + "ERROREMBED": "Error", + "SUCCESSEMBED": "Success", + "PAUSE": "Pause", + "RESUME": "Resume", + "STOP": "Stop", + "SKIP": "Skip", + "NEXT": "Next", + "QUEUE": "Queue", + "TITLE": "Title", + "MEMBERS": "Members", + "REGULAR": "Regular", + "ANIMATED": "Animated", + "CHANNELS": "Channels", + "ROLES": "Roles", + "CATEGORIES": "Categories", + "SONGS": "Songs", + "TEXT": "Text", + "VOICE": "Voice", + "BOOSTERS": "Boosters", + "REGION": "Region", + "TIER": "Tier", + "CREATED_AT": "Created at", + "OWNER": "Owner", + "AUTHOR": "Author", + "REQUESTER": "Requester", + "DURATION": "Duration", + "NO": "No", + "API": "API", + "PING": "Ping", + "NAME": "Name", + "ID": "ID", + "POSITION": "Position", + "COLOR": "Color", + "MENTIONABLE": "Mentionable", + "SEPARATED": "Separated", + "YES": "Yes", + "PLAYING": "Playing", + "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "commands": { + "reboot": { + "name": "reboot", + "description": "Reboot a shard or all shards", + "options": { + "shard": { + "name": "shard", + "description": "Shard to reboot" + } + } + }, + "8ball": { + "name": "8ball", + "description": "Ask a question to the magic ball", + "options": { + "question": { + "name": "question", + "description": "What do you want to ask?" + } + } + }, + "impostor": { + "name": "impostor", + "description": "Are you the impostor? SUS", + "options": { + "user": { + "name": "user", + "description": "Are this user the impostor? SUS na na na na na na na" + } + } + }, + "avatar": { + "name": "avatar", + "description": "Send your avatar or the other user one!", + "options": { + "user": { + "name": "user", + "description": "User to get the avatar" + } + } + }, + "twitch": { + "name": "twitch", + "description": "Set a notification for when a streamer goes live!", + "options": { + "add": { + "name": "add", + "description": "Add a streamer to the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to add" + }, + "channel": { + "name": "channel", + "description": "Channel to send the notification" + }, + "role": { + "name": "role", + "description": "Role to mention" + } + } + }, + "remove": { + "name": "remove", + "description": "Remove a streamer from the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to remove" + } + } + } + } + }, + "shards": { + "name": "shards", + "description": "Get information about shards" + }, + "serverinfo": { + "name": "serverinfo", + "description": "Get information about the server" + }, + "roleinfo": { + "name": "roleinfo", + "description": "Get information about a role", + "options": { + "role": { + "name": "role", + "description": "Role to get information" + } + } + }, + "ping": { + "name": "ping", + "description": "Shows the bot latency" + }, + "mcserver": { + "name": "mcserver", + "description": "Send a image of a Minecraft server", + "options": { + "server": { + "name": "server", + "description": "Server to get information" + } + } + }, + "mchistory": { + "name": "mchistory", + "description": "Show the history of a Minecraft account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "help": { + "name": "help", + "description": "Show information about me" + }, + "github": { + "name": "github", + "description": "Show information about a GitHub account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "embed": { + "name": "embed", + "description": "Send a embed", + "options": { + "channel": { + "name": "channel", + "description": "Channel to send the embed" + }, + "color": { + "name": "color", + "description": "Color of the embed" + }, + "title": { + "name": "title", + "description": "Title of the embed" + }, + "description": { + "name": "description", + "description": "Description of the embed" + } + } + }, + "ban": { + "name": "ban", + "description": "Ban a member", + "options": { + "user": { + "name": "usuario", + "description": "Usuario a banear" + }, + "reason": { + "name": "razon", + "description": "Razon del ban" + }, + "days": { + "name": "dias", + "description": "Días para borrar mensajes del usuario" + } + } + }, + "play": { + "name": "play", + "description": "Play the song that you want with the name or a youtube/spotify link", + "options": { + "song": { + "name": "song", + "description": "Song to play" + } + } + }, + "stop": { + "name": "stop", + "description": "Stop the player" + }, + "skip": { + "name": "skip", + "description": "Skip the current song" + }, + "resume": { + "name": "resume", + "description": "Resume the current song!" + }, + "queue": { + "name": "queue", + "description": "Show the queue" + }, + "pause": { + "name": "pause", + "description": "Pause the current song" + }, + "nowplaying": { + "name": "nowplaying", + "description": "Show the current song" + }, + "loop": { + "name": "loop", + "description": "Repeats the current queue/song" + }, + "247": { + "name": "247", + "description": "Stay 24/7 in a voice channel" + } + } +} From 16dd3b9e7c0fbecc714b8a3d9b6826f4fca729f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:37:45 +0000 Subject: [PATCH 36/88] New translations en-US.json (Chinese Simplified) --- locales/zh-CN.json | 417 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 417 insertions(+) create mode 100644 locales/zh-CN.json diff --git a/locales/zh-CN.json b/locales/zh-CN.json new file mode 100644 index 0000000..c4de708 --- /dev/null +++ b/locales/zh-CN.json @@ -0,0 +1,417 @@ +{ + "question_ball": { + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", + "possibles": { + "0": "Yes", + "1": "No", + "2": "Maybe", + "3": "Obviously", + "4": "I say yes", + "5": "I say no", + "6": "Probably", + "7": "I have my doubts...", + "8": "Do not even doubt it", + "9": "You didn't even need to ask ;)", + "10": "Not at all...", + "11": "I don `t believe..." + } + }, + "impostor": { + "was": "Was the impostor", + "was_not": "Was not the impostor" + }, + "embed": { + "successfully": "Embed created and sent successfully.", + "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "modal": { + "title": "Embed Creator", + "title_label": "Title", + "title_placeholder": "My Awesome Embed", + "description_label": "Description", + "description_placeholder": "This is my awesome embed!", + "color_label": "Color" + }, + "buttons": { + "send": "Send", + "edit": "Edit" + }, + "invalid_input": "Invalid input" + }, + "github": { + "write_username": "Please write an username.", + "name": "🧑 Name:", + "account": " Account Type:", + "organization": "🏢 Organization:", + "link": "☁️ Link", + "location": "🗺 Location:", + "email": "📩 Email", + "biography": "📃 Biography", + "twitter": "🐦 Twitter:", + "repositories": "📂 Public Repositories", + "followers": "🧍 Followers", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" + }, + "help": { + "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", + "how_use": "How do I see the commands?", + "how_use_answer": "Easy, you just have to write", + "need_support": "If I need support, how can I contact with the support team", + "need_support_answer": "You can ask in our [support server!]({inviteURL})", + "how_vote": "How can I vote for the bot?", + "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", + "title": "✨ - Help menu" + }, + "avatar": "here you have the avatar of {user}", + "mchistory": { + "dont": "The username doesn't exist", + "names": "Name's historical", + "first": "First Name" + }, + "ping": { + "global": "Global ping", + "internal": "Internal Processing (database + processing)" + }, + "roleinfo": { + "managed": "Managed by Discord" + }, + "serverinfo": { + "verification": { + "no": "No verification.", + "low": "Low (Verified account).", + "medium": "Medium (Verified account for +5 minutes).", + "high": "High (Verified account for +10 minutes).", + "extreme": "Extreme (Verified account y verified phone number linked)." + }, + "explicit": { + "disabled": "No messages are scanned.", + "members_without_role": "Scan users without a role.", + "all_members": "Scan every message." + }, + "emoji_count": "Emoji Count", + "tier_level": "Tier Level", + "verification_level": "Verification Level", + "explicit_filter": "Explicit Content Filter Level" + }, + "ban": { + "not_found": "Member not found", + "self": "You can't ban yourself", + "owner": "You can't ban the owner", + "higher": "You can't ban a member with a higher role than you", + "ban": "Banned successfully", + "unbannable": "I can't ban this member" + }, + "skip": { + "messages": { + "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", + "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", + "2": "What are you doing that you don't listen to music? Add a song now :)" + }, + "no_same": "You are not within my voice channel.", + "skiped": "{song} has been skipped" + }, + "queue": { + "no_queue": "There aren't songs being played on this server. Why don't you add one?", + "current": "Currently playing:", + "queue": "{name}'s queue", + "no_page": "¡The page does not exist!", + "total": "Total songs queue:" + }, + "247": { + "enabled": "24/7 mode is enabled ", + "disabled": "24/7 mode is disabled" + }, + "play": { + "same": "You need to be on the same voice channel as the bot to execute this command.", + "not_voice": "You need to be on a voice channel to execute this command.", + "not_reproducible": "The attached link does not contain reproducible content.", + "added": "{song} added to the list", + "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + }, + "reboot": { + "all": "Rebooting all shards...", + "shard": "Rebooting shard {shard}..." + }, + "stop": { + "resumed": "Music resumed by {user}", + "paused": "Music paused by {user}", + "success": "Music stopped" + }, + "paused": "Music paused", + "resumed": "Music resumed", + "voice_update": { + "leaving": "Leaving {channel} in {time} minutes", + "alone": "I was alone, and I left {channel}" + }, + "automix": { + "generated": "Auto-Mix has been generated!", + "disabled": "AutoMix disabled" + }, + "twitch": { + "no_streamer_found": "The streamer was not found", + "already_following": "You are already following this streamer", + "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", + "unfollowed": "You have stopped following {streamer}.", + "role_mention": "Mention will be made to {role}.", + "now_live": "{streamer} is now live!" + }, + "loop": { + "queue": "Queue loop", + "song": "Song loop", + "disabled": "Loop disabled" + }, + "ERROREMBED": "Error", + "SUCCESSEMBED": "Success", + "PAUSE": "Pause", + "RESUME": "Resume", + "STOP": "Stop", + "SKIP": "Skip", + "NEXT": "Next", + "QUEUE": "Queue", + "TITLE": "Title", + "MEMBERS": "Members", + "REGULAR": "Regular", + "ANIMATED": "Animated", + "CHANNELS": "Channels", + "ROLES": "Roles", + "CATEGORIES": "Categories", + "SONGS": "Songs", + "TEXT": "Text", + "VOICE": "Voice", + "BOOSTERS": "Boosters", + "REGION": "Region", + "TIER": "Tier", + "CREATED_AT": "Created at", + "OWNER": "Owner", + "AUTHOR": "Author", + "REQUESTER": "Requester", + "DURATION": "Duration", + "NO": "No", + "API": "API", + "PING": "Ping", + "NAME": "Name", + "ID": "ID", + "POSITION": "Position", + "COLOR": "Color", + "MENTIONABLE": "Mentionable", + "SEPARATED": "Separated", + "YES": "Yes", + "PLAYING": "Playing", + "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "commands": { + "reboot": { + "name": "reboot", + "description": "Reboot a shard or all shards", + "options": { + "shard": { + "name": "shard", + "description": "Shard to reboot" + } + } + }, + "8ball": { + "name": "8ball", + "description": "Ask a question to the magic ball", + "options": { + "question": { + "name": "question", + "description": "What do you want to ask?" + } + } + }, + "impostor": { + "name": "impostor", + "description": "Are you the impostor? SUS", + "options": { + "user": { + "name": "user", + "description": "Are this user the impostor? SUS na na na na na na na" + } + } + }, + "avatar": { + "name": "avatar", + "description": "Send your avatar or the other user one!", + "options": { + "user": { + "name": "user", + "description": "User to get the avatar" + } + } + }, + "twitch": { + "name": "twitch", + "description": "Set a notification for when a streamer goes live!", + "options": { + "add": { + "name": "add", + "description": "Add a streamer to the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to add" + }, + "channel": { + "name": "channel", + "description": "Channel to send the notification" + }, + "role": { + "name": "role", + "description": "Role to mention" + } + } + }, + "remove": { + "name": "remove", + "description": "Remove a streamer from the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to remove" + } + } + } + } + }, + "shards": { + "name": "shards", + "description": "Get information about shards" + }, + "serverinfo": { + "name": "serverinfo", + "description": "Get information about the server" + }, + "roleinfo": { + "name": "roleinfo", + "description": "Get information about a role", + "options": { + "role": { + "name": "role", + "description": "Role to get information" + } + } + }, + "ping": { + "name": "ping", + "description": "Shows the bot latency" + }, + "mcserver": { + "name": "mcserver", + "description": "Send a image of a Minecraft server", + "options": { + "server": { + "name": "server", + "description": "Server to get information" + } + } + }, + "mchistory": { + "name": "mchistory", + "description": "Show the history of a Minecraft account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "help": { + "name": "help", + "description": "Show information about me" + }, + "github": { + "name": "github", + "description": "Show information about a GitHub account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "embed": { + "name": "embed", + "description": "Send a embed", + "options": { + "channel": { + "name": "channel", + "description": "Channel to send the embed" + }, + "color": { + "name": "color", + "description": "Color of the embed" + }, + "title": { + "name": "title", + "description": "Title of the embed" + }, + "description": { + "name": "description", + "description": "Description of the embed" + } + } + }, + "ban": { + "name": "ban", + "description": "Ban a member", + "options": { + "user": { + "name": "usuario", + "description": "Usuario a banear" + }, + "reason": { + "name": "razon", + "description": "Razon del ban" + }, + "days": { + "name": "dias", + "description": "Días para borrar mensajes del usuario" + } + } + }, + "play": { + "name": "play", + "description": "Play the song that you want with the name or a youtube/spotify link", + "options": { + "song": { + "name": "song", + "description": "Song to play" + } + } + }, + "stop": { + "name": "stop", + "description": "Stop the player" + }, + "skip": { + "name": "skip", + "description": "Skip the current song" + }, + "resume": { + "name": "resume", + "description": "Resume the current song!" + }, + "queue": { + "name": "queue", + "description": "Show the queue" + }, + "pause": { + "name": "pause", + "description": "Pause the current song" + }, + "nowplaying": { + "name": "nowplaying", + "description": "Show the current song" + }, + "loop": { + "name": "loop", + "description": "Repeats the current queue/song" + }, + "247": { + "name": "247", + "description": "Stay 24/7 in a voice channel" + } + } +} From 1b5de61f9998110f0d697880ae10029137e449f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:37:46 +0000 Subject: [PATCH 37/88] New translations en-US.json (Portuguese, Brazilian) --- locales/pt-BR.json | 417 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 417 insertions(+) create mode 100644 locales/pt-BR.json diff --git a/locales/pt-BR.json b/locales/pt-BR.json new file mode 100644 index 0000000..c4de708 --- /dev/null +++ b/locales/pt-BR.json @@ -0,0 +1,417 @@ +{ + "question_ball": { + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", + "possibles": { + "0": "Yes", + "1": "No", + "2": "Maybe", + "3": "Obviously", + "4": "I say yes", + "5": "I say no", + "6": "Probably", + "7": "I have my doubts...", + "8": "Do not even doubt it", + "9": "You didn't even need to ask ;)", + "10": "Not at all...", + "11": "I don `t believe..." + } + }, + "impostor": { + "was": "Was the impostor", + "was_not": "Was not the impostor" + }, + "embed": { + "successfully": "Embed created and sent successfully.", + "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "modal": { + "title": "Embed Creator", + "title_label": "Title", + "title_placeholder": "My Awesome Embed", + "description_label": "Description", + "description_placeholder": "This is my awesome embed!", + "color_label": "Color" + }, + "buttons": { + "send": "Send", + "edit": "Edit" + }, + "invalid_input": "Invalid input" + }, + "github": { + "write_username": "Please write an username.", + "name": "🧑 Name:", + "account": " Account Type:", + "organization": "🏢 Organization:", + "link": "☁️ Link", + "location": "🗺 Location:", + "email": "📩 Email", + "biography": "📃 Biography", + "twitter": "🐦 Twitter:", + "repositories": "📂 Public Repositories", + "followers": "🧍 Followers", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" + }, + "help": { + "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", + "how_use": "How do I see the commands?", + "how_use_answer": "Easy, you just have to write", + "need_support": "If I need support, how can I contact with the support team", + "need_support_answer": "You can ask in our [support server!]({inviteURL})", + "how_vote": "How can I vote for the bot?", + "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", + "title": "✨ - Help menu" + }, + "avatar": "here you have the avatar of {user}", + "mchistory": { + "dont": "The username doesn't exist", + "names": "Name's historical", + "first": "First Name" + }, + "ping": { + "global": "Global ping", + "internal": "Internal Processing (database + processing)" + }, + "roleinfo": { + "managed": "Managed by Discord" + }, + "serverinfo": { + "verification": { + "no": "No verification.", + "low": "Low (Verified account).", + "medium": "Medium (Verified account for +5 minutes).", + "high": "High (Verified account for +10 minutes).", + "extreme": "Extreme (Verified account y verified phone number linked)." + }, + "explicit": { + "disabled": "No messages are scanned.", + "members_without_role": "Scan users without a role.", + "all_members": "Scan every message." + }, + "emoji_count": "Emoji Count", + "tier_level": "Tier Level", + "verification_level": "Verification Level", + "explicit_filter": "Explicit Content Filter Level" + }, + "ban": { + "not_found": "Member not found", + "self": "You can't ban yourself", + "owner": "You can't ban the owner", + "higher": "You can't ban a member with a higher role than you", + "ban": "Banned successfully", + "unbannable": "I can't ban this member" + }, + "skip": { + "messages": { + "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", + "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", + "2": "What are you doing that you don't listen to music? Add a song now :)" + }, + "no_same": "You are not within my voice channel.", + "skiped": "{song} has been skipped" + }, + "queue": { + "no_queue": "There aren't songs being played on this server. Why don't you add one?", + "current": "Currently playing:", + "queue": "{name}'s queue", + "no_page": "¡The page does not exist!", + "total": "Total songs queue:" + }, + "247": { + "enabled": "24/7 mode is enabled ", + "disabled": "24/7 mode is disabled" + }, + "play": { + "same": "You need to be on the same voice channel as the bot to execute this command.", + "not_voice": "You need to be on a voice channel to execute this command.", + "not_reproducible": "The attached link does not contain reproducible content.", + "added": "{song} added to the list", + "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + }, + "reboot": { + "all": "Rebooting all shards...", + "shard": "Rebooting shard {shard}..." + }, + "stop": { + "resumed": "Music resumed by {user}", + "paused": "Music paused by {user}", + "success": "Music stopped" + }, + "paused": "Music paused", + "resumed": "Music resumed", + "voice_update": { + "leaving": "Leaving {channel} in {time} minutes", + "alone": "I was alone, and I left {channel}" + }, + "automix": { + "generated": "Auto-Mix has been generated!", + "disabled": "AutoMix disabled" + }, + "twitch": { + "no_streamer_found": "The streamer was not found", + "already_following": "You are already following this streamer", + "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", + "unfollowed": "You have stopped following {streamer}.", + "role_mention": "Mention will be made to {role}.", + "now_live": "{streamer} is now live!" + }, + "loop": { + "queue": "Queue loop", + "song": "Song loop", + "disabled": "Loop disabled" + }, + "ERROREMBED": "Error", + "SUCCESSEMBED": "Success", + "PAUSE": "Pause", + "RESUME": "Resume", + "STOP": "Stop", + "SKIP": "Skip", + "NEXT": "Next", + "QUEUE": "Queue", + "TITLE": "Title", + "MEMBERS": "Members", + "REGULAR": "Regular", + "ANIMATED": "Animated", + "CHANNELS": "Channels", + "ROLES": "Roles", + "CATEGORIES": "Categories", + "SONGS": "Songs", + "TEXT": "Text", + "VOICE": "Voice", + "BOOSTERS": "Boosters", + "REGION": "Region", + "TIER": "Tier", + "CREATED_AT": "Created at", + "OWNER": "Owner", + "AUTHOR": "Author", + "REQUESTER": "Requester", + "DURATION": "Duration", + "NO": "No", + "API": "API", + "PING": "Ping", + "NAME": "Name", + "ID": "ID", + "POSITION": "Position", + "COLOR": "Color", + "MENTIONABLE": "Mentionable", + "SEPARATED": "Separated", + "YES": "Yes", + "PLAYING": "Playing", + "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "commands": { + "reboot": { + "name": "reboot", + "description": "Reboot a shard or all shards", + "options": { + "shard": { + "name": "shard", + "description": "Shard to reboot" + } + } + }, + "8ball": { + "name": "8ball", + "description": "Ask a question to the magic ball", + "options": { + "question": { + "name": "question", + "description": "What do you want to ask?" + } + } + }, + "impostor": { + "name": "impostor", + "description": "Are you the impostor? SUS", + "options": { + "user": { + "name": "user", + "description": "Are this user the impostor? SUS na na na na na na na" + } + } + }, + "avatar": { + "name": "avatar", + "description": "Send your avatar or the other user one!", + "options": { + "user": { + "name": "user", + "description": "User to get the avatar" + } + } + }, + "twitch": { + "name": "twitch", + "description": "Set a notification for when a streamer goes live!", + "options": { + "add": { + "name": "add", + "description": "Add a streamer to the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to add" + }, + "channel": { + "name": "channel", + "description": "Channel to send the notification" + }, + "role": { + "name": "role", + "description": "Role to mention" + } + } + }, + "remove": { + "name": "remove", + "description": "Remove a streamer from the notification list", + "options": { + "streamer": { + "name": "streamer", + "description": "Streamer to remove" + } + } + } + } + }, + "shards": { + "name": "shards", + "description": "Get information about shards" + }, + "serverinfo": { + "name": "serverinfo", + "description": "Get information about the server" + }, + "roleinfo": { + "name": "roleinfo", + "description": "Get information about a role", + "options": { + "role": { + "name": "role", + "description": "Role to get information" + } + } + }, + "ping": { + "name": "ping", + "description": "Shows the bot latency" + }, + "mcserver": { + "name": "mcserver", + "description": "Send a image of a Minecraft server", + "options": { + "server": { + "name": "server", + "description": "Server to get information" + } + } + }, + "mchistory": { + "name": "mchistory", + "description": "Show the history of a Minecraft account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "help": { + "name": "help", + "description": "Show information about me" + }, + "github": { + "name": "github", + "description": "Show information about a GitHub account", + "options": { + "account": { + "name": "account", + "description": "Account to get information" + } + } + }, + "embed": { + "name": "embed", + "description": "Send a embed", + "options": { + "channel": { + "name": "channel", + "description": "Channel to send the embed" + }, + "color": { + "name": "color", + "description": "Color of the embed" + }, + "title": { + "name": "title", + "description": "Title of the embed" + }, + "description": { + "name": "description", + "description": "Description of the embed" + } + } + }, + "ban": { + "name": "ban", + "description": "Ban a member", + "options": { + "user": { + "name": "usuario", + "description": "Usuario a banear" + }, + "reason": { + "name": "razon", + "description": "Razon del ban" + }, + "days": { + "name": "dias", + "description": "Días para borrar mensajes del usuario" + } + } + }, + "play": { + "name": "play", + "description": "Play the song that you want with the name or a youtube/spotify link", + "options": { + "song": { + "name": "song", + "description": "Song to play" + } + } + }, + "stop": { + "name": "stop", + "description": "Stop the player" + }, + "skip": { + "name": "skip", + "description": "Skip the current song" + }, + "resume": { + "name": "resume", + "description": "Resume the current song!" + }, + "queue": { + "name": "queue", + "description": "Show the queue" + }, + "pause": { + "name": "pause", + "description": "Pause the current song" + }, + "nowplaying": { + "name": "nowplaying", + "description": "Show the current song" + }, + "loop": { + "name": "loop", + "description": "Repeats the current queue/song" + }, + "247": { + "name": "247", + "description": "Stay 24/7 in a voice channel" + } + } +} From 118d75b71f9105559269be59e9bfd7858d3af746 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:41:43 +0000 Subject: [PATCH 38/88] New translations es-ES.json (French) --- locales/fr-FR.json | 433 +++++++++++++++++++++++---------------------- 1 file changed, 221 insertions(+), 212 deletions(-) diff --git a/locales/fr-FR.json b/locales/fr-FR.json index c4de708..2fd2c59 100644 --- a/locales/fr-FR.json +++ b/locales/fr-FR.json @@ -4,414 +4,423 @@ "question": "A su pregunta", "response": "Mi respuesta es", "possibles": { - "0": "Yes", + "0": "Sí", "1": "No", - "2": "Maybe", - "3": "Obviously", - "4": "I say yes", - "5": "I say no", - "6": "Probably", - "7": "I have my doubts...", - "8": "Do not even doubt it", - "9": "You didn't even need to ask ;)", - "10": "Not at all...", - "11": "I don `t believe..." + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "Was the impostor", - "was_not": "Was not the impostor" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "Embed created and sent successfully.", - "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "Embed Creator", - "title_label": "Title", - "title_placeholder": "My Awesome Embed", - "description_label": "Description", - "description_placeholder": "This is my awesome embed!", + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", "color_label": "Color" }, "buttons": { - "send": "Send", - "edit": "Edit" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "Invalid input" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "Please write an username.", - "name": "🧑 Name:", - "account": " Account Type:", - "organization": "🏢 Organization:", - "link": "☁️ Link", - "location": "🗺 Location:", - "email": "📩 Email", - "biography": "📃 Biography", + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", "twitter": "🐦 Twitter:", - "repositories": "📂 Public Repositories", - "followers": "🧍 Followers", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", "analizing": "Analizando cuenta, por favor espera...", "unknow": "El usuario no se encontró" }, "help": { - "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", - "how_use": "How do I see the commands?", - "how_use_answer": "Easy, you just have to write", - "need_support": "If I need support, how can I contact with the support team", - "need_support_answer": "You can ask in our [support server!]({inviteURL})", - "how_vote": "How can I vote for the bot?", - "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", - "title": "✨ - Help menu" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "here you have the avatar of {user}", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "The username doesn't exist", - "names": "Name's historical", - "first": "First Name" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "Global ping", - "internal": "Internal Processing (database + processing)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Managed by Discord" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "No verification.", - "low": "Low (Verified account).", - "medium": "Medium (Verified account for +5 minutes).", - "high": "High (Verified account for +10 minutes).", - "extreme": "Extreme (Verified account y verified phone number linked)." + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "No messages are scanned.", - "members_without_role": "Scan users without a role.", - "all_members": "Scan every message." + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "Emoji Count", - "tier_level": "Tier Level", - "verification_level": "Verification Level", - "explicit_filter": "Explicit Content Filter Level" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "Member not found", - "self": "You can't ban yourself", - "owner": "You can't ban the owner", - "higher": "You can't ban a member with a higher role than you", - "ban": "Banned successfully", - "unbannable": "I can't ban this member" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", - "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", - "2": "What are you doing that you don't listen to music? Add a song now :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "You are not within my voice channel.", - "skiped": "{song} has been skipped" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "There aren't songs being played on this server. Why don't you add one?", - "current": "Currently playing:", + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", "queue": "{name}'s queue", - "no_page": "¡The page does not exist!", - "total": "Total songs queue:" + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24/7 mode is enabled ", - "disabled": "24/7 mode is disabled" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "You need to be on the same voice channel as the bot to execute this command.", - "not_voice": "You need to be on a voice channel to execute this command.", - "not_reproducible": "The attached link does not contain reproducible content.", - "added": "{song} added to the list", - "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "Rebooting all shards...", - "shard": "Rebooting shard {shard}..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "Music resumed by {user}", - "paused": "Music paused by {user}", - "success": "Music stopped" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "Music paused", - "resumed": "Music resumed", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "Leaving {channel} in {time} minutes", - "alone": "I was alone, and I left {channel}" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "Auto-Mix has been generated!", - "disabled": "AutoMix disabled" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "The streamer was not found", - "already_following": "You are already following this streamer", - "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", - "unfollowed": "You have stopped following {streamer}.", - "role_mention": "Mention will be made to {role}.", - "now_live": "{streamer} is now live!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "Queue loop", - "song": "Song loop", - "disabled": "Loop disabled" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pause", - "RESUME": "Resume", + "PAUSE": "Pausa", + "RESUME": "Currículum", "STOP": "Stop", - "SKIP": "Skip", - "NEXT": "Next", - "QUEUE": "Queue", - "TITLE": "Title", - "MEMBERS": "Members", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", "REGULAR": "Regular", - "ANIMATED": "Animated", - "CHANNELS": "Channels", - "ROLES": "Roles", - "CATEGORIES": "Categories", - "SONGS": "Songs", - "TEXT": "Text", - "VOICE": "Voice", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", "BOOSTERS": "Boosters", - "REGION": "Region", - "TIER": "Tier", - "CREATED_AT": "Created at", - "OWNER": "Owner", - "AUTHOR": "Author", - "REQUESTER": "Requester", - "DURATION": "Duration", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", "NO": "No", "API": "API", "PING": "Ping", - "NAME": "Name", + "NAME": "Nombre", "ID": "ID", - "POSITION": "Position", + "POSITION": "Posición", "COLOR": "Color", - "MENTIONABLE": "Mentionable", - "SEPARATED": "Separated", - "YES": "Yes", - "PLAYING": "Playing", - "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "reboot", - "description": "Reboot a shard or all shards", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "shard", - "description": "Shard to reboot" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "8ball", - "description": "Ask a question to the magic ball", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "question", - "description": "What do you want to ask?" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { "name": "impostor", - "description": "Are you the impostor? SUS", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "user", - "description": "Are this user the impostor? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { "name": "avatar", - "description": "Send your avatar or the other user one!", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "user", - "description": "User to get the avatar" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "Set a notification for when a streamer goes live!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "add", - "description": "Add a streamer to the notification list", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to add" + "description": "El nombre del streamer" }, "channel": { - "name": "channel", - "description": "Channel to send the notification" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "role", - "description": "Role to mention" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "remove", - "description": "Remove a streamer from the notification list", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to remove" + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "shards", - "description": "Get information about shards" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "serverinfo", - "description": "Get information about the server" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "roleinfo", - "description": "Get information about a role", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "role", - "description": "Role to get information" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { "name": "ping", - "description": "Shows the bot latency" + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "mcserver", - "description": "Send a image of a Minecraft server", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "server", - "description": "Server to get information" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "mchistory", - "description": "Show the history of a Minecraft account", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "help", - "description": "Show information about me" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { "name": "github", - "description": "Show information about a GitHub account", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { "name": "embed", - "description": "Send a embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "channel", - "description": "Channel to send the embed" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { "name": "color", - "description": "Color of the embed" + "description": "El color del embed" }, "title": { - "name": "title", - "description": "Title of the embed" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "description", - "description": "Description of the embed" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { "name": "ban", - "description": "Ban a member", + "description": "Banea a un usuario", "options": { "user": { - "name": "usuario", - "description": "Usuario a banear" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "razon", - "description": "Razon del ban" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "dias", - "description": "Días para borrar mensajes del usuario" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "play", - "description": "Play the song that you want with the name or a youtube/spotify link", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "song", - "description": "Song to play" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "stop", - "description": "Stop the player" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "skip", - "description": "Skip the current song" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "resume", - "description": "Resume the current song!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "queue", - "description": "Show the queue" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "pause", - "description": "Pause the current song" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "nowplaying", - "description": "Show the current song" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "loop", - "description": "Repeats the current queue/song" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "Stay 24/7 in a voice channel" + "description": "Mantente 24/7 en un canal de voz" } } -} +} \ No newline at end of file From f3b68619654a8ba8d9af6e8c41604f4358eb66ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:41:44 +0000 Subject: [PATCH 39/88] New translations es-ES.json (Spanish) --- locales/es-ES.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/locales/es-ES.json b/locales/es-ES.json index af2db33..2fd2c59 100644 --- a/locales/es-ES.json +++ b/locales/es-ES.json @@ -77,6 +77,15 @@ "roleinfo": { "managed": "Gestionado por Discord" }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" + }, "serverinfo": { "verification": { "no": "No hay verificación.", @@ -414,4 +423,4 @@ "description": "Mantente 24/7 en un canal de voz" } } -} +} \ No newline at end of file From ba351ccee341d0033f5589aa4cd15e894d9f2c85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:41:45 +0000 Subject: [PATCH 40/88] New translations es-ES.json (Arabic) --- locales/ar-SA.json | 433 +++++++++++++++++++++++---------------------- 1 file changed, 221 insertions(+), 212 deletions(-) diff --git a/locales/ar-SA.json b/locales/ar-SA.json index c4de708..2fd2c59 100644 --- a/locales/ar-SA.json +++ b/locales/ar-SA.json @@ -4,414 +4,423 @@ "question": "A su pregunta", "response": "Mi respuesta es", "possibles": { - "0": "Yes", + "0": "Sí", "1": "No", - "2": "Maybe", - "3": "Obviously", - "4": "I say yes", - "5": "I say no", - "6": "Probably", - "7": "I have my doubts...", - "8": "Do not even doubt it", - "9": "You didn't even need to ask ;)", - "10": "Not at all...", - "11": "I don `t believe..." + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "Was the impostor", - "was_not": "Was not the impostor" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "Embed created and sent successfully.", - "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "Embed Creator", - "title_label": "Title", - "title_placeholder": "My Awesome Embed", - "description_label": "Description", - "description_placeholder": "This is my awesome embed!", + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", "color_label": "Color" }, "buttons": { - "send": "Send", - "edit": "Edit" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "Invalid input" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "Please write an username.", - "name": "🧑 Name:", - "account": " Account Type:", - "organization": "🏢 Organization:", - "link": "☁️ Link", - "location": "🗺 Location:", - "email": "📩 Email", - "biography": "📃 Biography", + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", "twitter": "🐦 Twitter:", - "repositories": "📂 Public Repositories", - "followers": "🧍 Followers", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", "analizing": "Analizando cuenta, por favor espera...", "unknow": "El usuario no se encontró" }, "help": { - "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", - "how_use": "How do I see the commands?", - "how_use_answer": "Easy, you just have to write", - "need_support": "If I need support, how can I contact with the support team", - "need_support_answer": "You can ask in our [support server!]({inviteURL})", - "how_vote": "How can I vote for the bot?", - "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", - "title": "✨ - Help menu" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "here you have the avatar of {user}", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "The username doesn't exist", - "names": "Name's historical", - "first": "First Name" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "Global ping", - "internal": "Internal Processing (database + processing)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Managed by Discord" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "No verification.", - "low": "Low (Verified account).", - "medium": "Medium (Verified account for +5 minutes).", - "high": "High (Verified account for +10 minutes).", - "extreme": "Extreme (Verified account y verified phone number linked)." + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "No messages are scanned.", - "members_without_role": "Scan users without a role.", - "all_members": "Scan every message." + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "Emoji Count", - "tier_level": "Tier Level", - "verification_level": "Verification Level", - "explicit_filter": "Explicit Content Filter Level" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "Member not found", - "self": "You can't ban yourself", - "owner": "You can't ban the owner", - "higher": "You can't ban a member with a higher role than you", - "ban": "Banned successfully", - "unbannable": "I can't ban this member" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", - "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", - "2": "What are you doing that you don't listen to music? Add a song now :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "You are not within my voice channel.", - "skiped": "{song} has been skipped" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "There aren't songs being played on this server. Why don't you add one?", - "current": "Currently playing:", + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", "queue": "{name}'s queue", - "no_page": "¡The page does not exist!", - "total": "Total songs queue:" + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24/7 mode is enabled ", - "disabled": "24/7 mode is disabled" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "You need to be on the same voice channel as the bot to execute this command.", - "not_voice": "You need to be on a voice channel to execute this command.", - "not_reproducible": "The attached link does not contain reproducible content.", - "added": "{song} added to the list", - "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "Rebooting all shards...", - "shard": "Rebooting shard {shard}..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "Music resumed by {user}", - "paused": "Music paused by {user}", - "success": "Music stopped" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "Music paused", - "resumed": "Music resumed", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "Leaving {channel} in {time} minutes", - "alone": "I was alone, and I left {channel}" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "Auto-Mix has been generated!", - "disabled": "AutoMix disabled" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "The streamer was not found", - "already_following": "You are already following this streamer", - "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", - "unfollowed": "You have stopped following {streamer}.", - "role_mention": "Mention will be made to {role}.", - "now_live": "{streamer} is now live!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "Queue loop", - "song": "Song loop", - "disabled": "Loop disabled" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pause", - "RESUME": "Resume", + "PAUSE": "Pausa", + "RESUME": "Currículum", "STOP": "Stop", - "SKIP": "Skip", - "NEXT": "Next", - "QUEUE": "Queue", - "TITLE": "Title", - "MEMBERS": "Members", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", "REGULAR": "Regular", - "ANIMATED": "Animated", - "CHANNELS": "Channels", - "ROLES": "Roles", - "CATEGORIES": "Categories", - "SONGS": "Songs", - "TEXT": "Text", - "VOICE": "Voice", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", "BOOSTERS": "Boosters", - "REGION": "Region", - "TIER": "Tier", - "CREATED_AT": "Created at", - "OWNER": "Owner", - "AUTHOR": "Author", - "REQUESTER": "Requester", - "DURATION": "Duration", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", "NO": "No", "API": "API", "PING": "Ping", - "NAME": "Name", + "NAME": "Nombre", "ID": "ID", - "POSITION": "Position", + "POSITION": "Posición", "COLOR": "Color", - "MENTIONABLE": "Mentionable", - "SEPARATED": "Separated", - "YES": "Yes", - "PLAYING": "Playing", - "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "reboot", - "description": "Reboot a shard or all shards", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "shard", - "description": "Shard to reboot" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "8ball", - "description": "Ask a question to the magic ball", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "question", - "description": "What do you want to ask?" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { "name": "impostor", - "description": "Are you the impostor? SUS", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "user", - "description": "Are this user the impostor? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { "name": "avatar", - "description": "Send your avatar or the other user one!", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "user", - "description": "User to get the avatar" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "Set a notification for when a streamer goes live!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "add", - "description": "Add a streamer to the notification list", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to add" + "description": "El nombre del streamer" }, "channel": { - "name": "channel", - "description": "Channel to send the notification" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "role", - "description": "Role to mention" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "remove", - "description": "Remove a streamer from the notification list", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to remove" + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "shards", - "description": "Get information about shards" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "serverinfo", - "description": "Get information about the server" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "roleinfo", - "description": "Get information about a role", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "role", - "description": "Role to get information" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { "name": "ping", - "description": "Shows the bot latency" + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "mcserver", - "description": "Send a image of a Minecraft server", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "server", - "description": "Server to get information" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "mchistory", - "description": "Show the history of a Minecraft account", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "help", - "description": "Show information about me" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { "name": "github", - "description": "Show information about a GitHub account", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { "name": "embed", - "description": "Send a embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "channel", - "description": "Channel to send the embed" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { "name": "color", - "description": "Color of the embed" + "description": "El color del embed" }, "title": { - "name": "title", - "description": "Title of the embed" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "description", - "description": "Description of the embed" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { "name": "ban", - "description": "Ban a member", + "description": "Banea a un usuario", "options": { "user": { - "name": "usuario", - "description": "Usuario a banear" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "razon", - "description": "Razon del ban" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "dias", - "description": "Días para borrar mensajes del usuario" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "play", - "description": "Play the song that you want with the name or a youtube/spotify link", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "song", - "description": "Song to play" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "stop", - "description": "Stop the player" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "skip", - "description": "Skip the current song" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "resume", - "description": "Resume the current song!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "queue", - "description": "Show the queue" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "pause", - "description": "Pause the current song" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "nowplaying", - "description": "Show the current song" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "loop", - "description": "Repeats the current queue/song" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "Stay 24/7 in a voice channel" + "description": "Mantente 24/7 en un canal de voz" } } -} +} \ No newline at end of file From 362150c27fcf73f1e6667fca6cfda12983789ef7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:41:46 +0000 Subject: [PATCH 41/88] New translations es-ES.json (German) --- locales/de-DE.json | 433 +++++++++++++++++++++++---------------------- 1 file changed, 221 insertions(+), 212 deletions(-) diff --git a/locales/de-DE.json b/locales/de-DE.json index c4de708..2fd2c59 100644 --- a/locales/de-DE.json +++ b/locales/de-DE.json @@ -4,414 +4,423 @@ "question": "A su pregunta", "response": "Mi respuesta es", "possibles": { - "0": "Yes", + "0": "Sí", "1": "No", - "2": "Maybe", - "3": "Obviously", - "4": "I say yes", - "5": "I say no", - "6": "Probably", - "7": "I have my doubts...", - "8": "Do not even doubt it", - "9": "You didn't even need to ask ;)", - "10": "Not at all...", - "11": "I don `t believe..." + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "Was the impostor", - "was_not": "Was not the impostor" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "Embed created and sent successfully.", - "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "Embed Creator", - "title_label": "Title", - "title_placeholder": "My Awesome Embed", - "description_label": "Description", - "description_placeholder": "This is my awesome embed!", + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", "color_label": "Color" }, "buttons": { - "send": "Send", - "edit": "Edit" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "Invalid input" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "Please write an username.", - "name": "🧑 Name:", - "account": " Account Type:", - "organization": "🏢 Organization:", - "link": "☁️ Link", - "location": "🗺 Location:", - "email": "📩 Email", - "biography": "📃 Biography", + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", "twitter": "🐦 Twitter:", - "repositories": "📂 Public Repositories", - "followers": "🧍 Followers", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", "analizing": "Analizando cuenta, por favor espera...", "unknow": "El usuario no se encontró" }, "help": { - "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", - "how_use": "How do I see the commands?", - "how_use_answer": "Easy, you just have to write", - "need_support": "If I need support, how can I contact with the support team", - "need_support_answer": "You can ask in our [support server!]({inviteURL})", - "how_vote": "How can I vote for the bot?", - "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", - "title": "✨ - Help menu" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "here you have the avatar of {user}", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "The username doesn't exist", - "names": "Name's historical", - "first": "First Name" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "Global ping", - "internal": "Internal Processing (database + processing)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Managed by Discord" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "No verification.", - "low": "Low (Verified account).", - "medium": "Medium (Verified account for +5 minutes).", - "high": "High (Verified account for +10 minutes).", - "extreme": "Extreme (Verified account y verified phone number linked)." + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "No messages are scanned.", - "members_without_role": "Scan users without a role.", - "all_members": "Scan every message." + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "Emoji Count", - "tier_level": "Tier Level", - "verification_level": "Verification Level", - "explicit_filter": "Explicit Content Filter Level" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "Member not found", - "self": "You can't ban yourself", - "owner": "You can't ban the owner", - "higher": "You can't ban a member with a higher role than you", - "ban": "Banned successfully", - "unbannable": "I can't ban this member" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", - "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", - "2": "What are you doing that you don't listen to music? Add a song now :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "You are not within my voice channel.", - "skiped": "{song} has been skipped" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "There aren't songs being played on this server. Why don't you add one?", - "current": "Currently playing:", + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", "queue": "{name}'s queue", - "no_page": "¡The page does not exist!", - "total": "Total songs queue:" + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24/7 mode is enabled ", - "disabled": "24/7 mode is disabled" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "You need to be on the same voice channel as the bot to execute this command.", - "not_voice": "You need to be on a voice channel to execute this command.", - "not_reproducible": "The attached link does not contain reproducible content.", - "added": "{song} added to the list", - "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "Rebooting all shards...", - "shard": "Rebooting shard {shard}..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "Music resumed by {user}", - "paused": "Music paused by {user}", - "success": "Music stopped" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "Music paused", - "resumed": "Music resumed", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "Leaving {channel} in {time} minutes", - "alone": "I was alone, and I left {channel}" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "Auto-Mix has been generated!", - "disabled": "AutoMix disabled" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "The streamer was not found", - "already_following": "You are already following this streamer", - "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", - "unfollowed": "You have stopped following {streamer}.", - "role_mention": "Mention will be made to {role}.", - "now_live": "{streamer} is now live!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "Queue loop", - "song": "Song loop", - "disabled": "Loop disabled" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pause", - "RESUME": "Resume", + "PAUSE": "Pausa", + "RESUME": "Currículum", "STOP": "Stop", - "SKIP": "Skip", - "NEXT": "Next", - "QUEUE": "Queue", - "TITLE": "Title", - "MEMBERS": "Members", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", "REGULAR": "Regular", - "ANIMATED": "Animated", - "CHANNELS": "Channels", - "ROLES": "Roles", - "CATEGORIES": "Categories", - "SONGS": "Songs", - "TEXT": "Text", - "VOICE": "Voice", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", "BOOSTERS": "Boosters", - "REGION": "Region", - "TIER": "Tier", - "CREATED_AT": "Created at", - "OWNER": "Owner", - "AUTHOR": "Author", - "REQUESTER": "Requester", - "DURATION": "Duration", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", "NO": "No", "API": "API", "PING": "Ping", - "NAME": "Name", + "NAME": "Nombre", "ID": "ID", - "POSITION": "Position", + "POSITION": "Posición", "COLOR": "Color", - "MENTIONABLE": "Mentionable", - "SEPARATED": "Separated", - "YES": "Yes", - "PLAYING": "Playing", - "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "reboot", - "description": "Reboot a shard or all shards", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "shard", - "description": "Shard to reboot" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "8ball", - "description": "Ask a question to the magic ball", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "question", - "description": "What do you want to ask?" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { "name": "impostor", - "description": "Are you the impostor? SUS", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "user", - "description": "Are this user the impostor? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { "name": "avatar", - "description": "Send your avatar or the other user one!", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "user", - "description": "User to get the avatar" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "Set a notification for when a streamer goes live!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "add", - "description": "Add a streamer to the notification list", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to add" + "description": "El nombre del streamer" }, "channel": { - "name": "channel", - "description": "Channel to send the notification" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "role", - "description": "Role to mention" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "remove", - "description": "Remove a streamer from the notification list", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to remove" + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "shards", - "description": "Get information about shards" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "serverinfo", - "description": "Get information about the server" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "roleinfo", - "description": "Get information about a role", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "role", - "description": "Role to get information" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { "name": "ping", - "description": "Shows the bot latency" + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "mcserver", - "description": "Send a image of a Minecraft server", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "server", - "description": "Server to get information" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "mchistory", - "description": "Show the history of a Minecraft account", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "help", - "description": "Show information about me" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { "name": "github", - "description": "Show information about a GitHub account", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { "name": "embed", - "description": "Send a embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "channel", - "description": "Channel to send the embed" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { "name": "color", - "description": "Color of the embed" + "description": "El color del embed" }, "title": { - "name": "title", - "description": "Title of the embed" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "description", - "description": "Description of the embed" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { "name": "ban", - "description": "Ban a member", + "description": "Banea a un usuario", "options": { "user": { - "name": "usuario", - "description": "Usuario a banear" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "razon", - "description": "Razon del ban" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "dias", - "description": "Días para borrar mensajes del usuario" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "play", - "description": "Play the song that you want with the name or a youtube/spotify link", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "song", - "description": "Song to play" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "stop", - "description": "Stop the player" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "skip", - "description": "Skip the current song" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "resume", - "description": "Resume the current song!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "queue", - "description": "Show the queue" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "pause", - "description": "Pause the current song" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "nowplaying", - "description": "Show the current song" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "loop", - "description": "Repeats the current queue/song" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "Stay 24/7 in a voice channel" + "description": "Mantente 24/7 en un canal de voz" } } -} +} \ No newline at end of file From d3cc6946a5f78a607104c701f0af24e698d3657b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:41:47 +0000 Subject: [PATCH 42/88] New translations es-ES.json (Irish) --- locales/ga-IE.json | 433 +++++++++++++++++++++++---------------------- 1 file changed, 221 insertions(+), 212 deletions(-) diff --git a/locales/ga-IE.json b/locales/ga-IE.json index c4de708..2fd2c59 100644 --- a/locales/ga-IE.json +++ b/locales/ga-IE.json @@ -4,414 +4,423 @@ "question": "A su pregunta", "response": "Mi respuesta es", "possibles": { - "0": "Yes", + "0": "Sí", "1": "No", - "2": "Maybe", - "3": "Obviously", - "4": "I say yes", - "5": "I say no", - "6": "Probably", - "7": "I have my doubts...", - "8": "Do not even doubt it", - "9": "You didn't even need to ask ;)", - "10": "Not at all...", - "11": "I don `t believe..." + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "Was the impostor", - "was_not": "Was not the impostor" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "Embed created and sent successfully.", - "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "Embed Creator", - "title_label": "Title", - "title_placeholder": "My Awesome Embed", - "description_label": "Description", - "description_placeholder": "This is my awesome embed!", + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", "color_label": "Color" }, "buttons": { - "send": "Send", - "edit": "Edit" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "Invalid input" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "Please write an username.", - "name": "🧑 Name:", - "account": " Account Type:", - "organization": "🏢 Organization:", - "link": "☁️ Link", - "location": "🗺 Location:", - "email": "📩 Email", - "biography": "📃 Biography", + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", "twitter": "🐦 Twitter:", - "repositories": "📂 Public Repositories", - "followers": "🧍 Followers", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", "analizing": "Analizando cuenta, por favor espera...", "unknow": "El usuario no se encontró" }, "help": { - "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", - "how_use": "How do I see the commands?", - "how_use_answer": "Easy, you just have to write", - "need_support": "If I need support, how can I contact with the support team", - "need_support_answer": "You can ask in our [support server!]({inviteURL})", - "how_vote": "How can I vote for the bot?", - "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", - "title": "✨ - Help menu" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "here you have the avatar of {user}", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "The username doesn't exist", - "names": "Name's historical", - "first": "First Name" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "Global ping", - "internal": "Internal Processing (database + processing)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Managed by Discord" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "No verification.", - "low": "Low (Verified account).", - "medium": "Medium (Verified account for +5 minutes).", - "high": "High (Verified account for +10 minutes).", - "extreme": "Extreme (Verified account y verified phone number linked)." + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "No messages are scanned.", - "members_without_role": "Scan users without a role.", - "all_members": "Scan every message." + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "Emoji Count", - "tier_level": "Tier Level", - "verification_level": "Verification Level", - "explicit_filter": "Explicit Content Filter Level" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "Member not found", - "self": "You can't ban yourself", - "owner": "You can't ban the owner", - "higher": "You can't ban a member with a higher role than you", - "ban": "Banned successfully", - "unbannable": "I can't ban this member" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", - "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", - "2": "What are you doing that you don't listen to music? Add a song now :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "You are not within my voice channel.", - "skiped": "{song} has been skipped" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "There aren't songs being played on this server. Why don't you add one?", - "current": "Currently playing:", + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", "queue": "{name}'s queue", - "no_page": "¡The page does not exist!", - "total": "Total songs queue:" + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24/7 mode is enabled ", - "disabled": "24/7 mode is disabled" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "You need to be on the same voice channel as the bot to execute this command.", - "not_voice": "You need to be on a voice channel to execute this command.", - "not_reproducible": "The attached link does not contain reproducible content.", - "added": "{song} added to the list", - "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "Rebooting all shards...", - "shard": "Rebooting shard {shard}..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "Music resumed by {user}", - "paused": "Music paused by {user}", - "success": "Music stopped" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "Music paused", - "resumed": "Music resumed", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "Leaving {channel} in {time} minutes", - "alone": "I was alone, and I left {channel}" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "Auto-Mix has been generated!", - "disabled": "AutoMix disabled" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "The streamer was not found", - "already_following": "You are already following this streamer", - "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", - "unfollowed": "You have stopped following {streamer}.", - "role_mention": "Mention will be made to {role}.", - "now_live": "{streamer} is now live!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "Queue loop", - "song": "Song loop", - "disabled": "Loop disabled" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pause", - "RESUME": "Resume", + "PAUSE": "Pausa", + "RESUME": "Currículum", "STOP": "Stop", - "SKIP": "Skip", - "NEXT": "Next", - "QUEUE": "Queue", - "TITLE": "Title", - "MEMBERS": "Members", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", "REGULAR": "Regular", - "ANIMATED": "Animated", - "CHANNELS": "Channels", - "ROLES": "Roles", - "CATEGORIES": "Categories", - "SONGS": "Songs", - "TEXT": "Text", - "VOICE": "Voice", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", "BOOSTERS": "Boosters", - "REGION": "Region", - "TIER": "Tier", - "CREATED_AT": "Created at", - "OWNER": "Owner", - "AUTHOR": "Author", - "REQUESTER": "Requester", - "DURATION": "Duration", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", "NO": "No", "API": "API", "PING": "Ping", - "NAME": "Name", + "NAME": "Nombre", "ID": "ID", - "POSITION": "Position", + "POSITION": "Posición", "COLOR": "Color", - "MENTIONABLE": "Mentionable", - "SEPARATED": "Separated", - "YES": "Yes", - "PLAYING": "Playing", - "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "reboot", - "description": "Reboot a shard or all shards", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "shard", - "description": "Shard to reboot" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "8ball", - "description": "Ask a question to the magic ball", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "question", - "description": "What do you want to ask?" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { "name": "impostor", - "description": "Are you the impostor? SUS", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "user", - "description": "Are this user the impostor? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { "name": "avatar", - "description": "Send your avatar or the other user one!", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "user", - "description": "User to get the avatar" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "Set a notification for when a streamer goes live!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "add", - "description": "Add a streamer to the notification list", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to add" + "description": "El nombre del streamer" }, "channel": { - "name": "channel", - "description": "Channel to send the notification" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "role", - "description": "Role to mention" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "remove", - "description": "Remove a streamer from the notification list", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to remove" + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "shards", - "description": "Get information about shards" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "serverinfo", - "description": "Get information about the server" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "roleinfo", - "description": "Get information about a role", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "role", - "description": "Role to get information" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { "name": "ping", - "description": "Shows the bot latency" + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "mcserver", - "description": "Send a image of a Minecraft server", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "server", - "description": "Server to get information" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "mchistory", - "description": "Show the history of a Minecraft account", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "help", - "description": "Show information about me" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { "name": "github", - "description": "Show information about a GitHub account", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { "name": "embed", - "description": "Send a embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "channel", - "description": "Channel to send the embed" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { "name": "color", - "description": "Color of the embed" + "description": "El color del embed" }, "title": { - "name": "title", - "description": "Title of the embed" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "description", - "description": "Description of the embed" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { "name": "ban", - "description": "Ban a member", + "description": "Banea a un usuario", "options": { "user": { - "name": "usuario", - "description": "Usuario a banear" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "razon", - "description": "Razon del ban" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "dias", - "description": "Días para borrar mensajes del usuario" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "play", - "description": "Play the song that you want with the name or a youtube/spotify link", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "song", - "description": "Song to play" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "stop", - "description": "Stop the player" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "skip", - "description": "Skip the current song" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "resume", - "description": "Resume the current song!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "queue", - "description": "Show the queue" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "pause", - "description": "Pause the current song" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "nowplaying", - "description": "Show the current song" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "loop", - "description": "Repeats the current queue/song" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "Stay 24/7 in a voice channel" + "description": "Mantente 24/7 en un canal de voz" } } -} +} \ No newline at end of file From 5c6b4553be200b56b4da3ee2e628fc2f6910723a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:41:48 +0000 Subject: [PATCH 43/88] New translations es-ES.json (Italian) --- locales/it-IT.json | 433 +++++++++++++++++++++++---------------------- 1 file changed, 221 insertions(+), 212 deletions(-) diff --git a/locales/it-IT.json b/locales/it-IT.json index c4de708..2fd2c59 100644 --- a/locales/it-IT.json +++ b/locales/it-IT.json @@ -4,414 +4,423 @@ "question": "A su pregunta", "response": "Mi respuesta es", "possibles": { - "0": "Yes", + "0": "Sí", "1": "No", - "2": "Maybe", - "3": "Obviously", - "4": "I say yes", - "5": "I say no", - "6": "Probably", - "7": "I have my doubts...", - "8": "Do not even doubt it", - "9": "You didn't even need to ask ;)", - "10": "Not at all...", - "11": "I don `t believe..." + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "Was the impostor", - "was_not": "Was not the impostor" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "Embed created and sent successfully.", - "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "Embed Creator", - "title_label": "Title", - "title_placeholder": "My Awesome Embed", - "description_label": "Description", - "description_placeholder": "This is my awesome embed!", + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", "color_label": "Color" }, "buttons": { - "send": "Send", - "edit": "Edit" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "Invalid input" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "Please write an username.", - "name": "🧑 Name:", - "account": " Account Type:", - "organization": "🏢 Organization:", - "link": "☁️ Link", - "location": "🗺 Location:", - "email": "📩 Email", - "biography": "📃 Biography", + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", "twitter": "🐦 Twitter:", - "repositories": "📂 Public Repositories", - "followers": "🧍 Followers", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", "analizing": "Analizando cuenta, por favor espera...", "unknow": "El usuario no se encontró" }, "help": { - "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", - "how_use": "How do I see the commands?", - "how_use_answer": "Easy, you just have to write", - "need_support": "If I need support, how can I contact with the support team", - "need_support_answer": "You can ask in our [support server!]({inviteURL})", - "how_vote": "How can I vote for the bot?", - "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", - "title": "✨ - Help menu" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "here you have the avatar of {user}", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "The username doesn't exist", - "names": "Name's historical", - "first": "First Name" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "Global ping", - "internal": "Internal Processing (database + processing)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Managed by Discord" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "No verification.", - "low": "Low (Verified account).", - "medium": "Medium (Verified account for +5 minutes).", - "high": "High (Verified account for +10 minutes).", - "extreme": "Extreme (Verified account y verified phone number linked)." + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "No messages are scanned.", - "members_without_role": "Scan users without a role.", - "all_members": "Scan every message." + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "Emoji Count", - "tier_level": "Tier Level", - "verification_level": "Verification Level", - "explicit_filter": "Explicit Content Filter Level" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "Member not found", - "self": "You can't ban yourself", - "owner": "You can't ban the owner", - "higher": "You can't ban a member with a higher role than you", - "ban": "Banned successfully", - "unbannable": "I can't ban this member" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", - "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", - "2": "What are you doing that you don't listen to music? Add a song now :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "You are not within my voice channel.", - "skiped": "{song} has been skipped" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "There aren't songs being played on this server. Why don't you add one?", - "current": "Currently playing:", + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", "queue": "{name}'s queue", - "no_page": "¡The page does not exist!", - "total": "Total songs queue:" + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24/7 mode is enabled ", - "disabled": "24/7 mode is disabled" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "You need to be on the same voice channel as the bot to execute this command.", - "not_voice": "You need to be on a voice channel to execute this command.", - "not_reproducible": "The attached link does not contain reproducible content.", - "added": "{song} added to the list", - "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "Rebooting all shards...", - "shard": "Rebooting shard {shard}..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "Music resumed by {user}", - "paused": "Music paused by {user}", - "success": "Music stopped" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "Music paused", - "resumed": "Music resumed", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "Leaving {channel} in {time} minutes", - "alone": "I was alone, and I left {channel}" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "Auto-Mix has been generated!", - "disabled": "AutoMix disabled" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "The streamer was not found", - "already_following": "You are already following this streamer", - "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", - "unfollowed": "You have stopped following {streamer}.", - "role_mention": "Mention will be made to {role}.", - "now_live": "{streamer} is now live!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "Queue loop", - "song": "Song loop", - "disabled": "Loop disabled" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pause", - "RESUME": "Resume", + "PAUSE": "Pausa", + "RESUME": "Currículum", "STOP": "Stop", - "SKIP": "Skip", - "NEXT": "Next", - "QUEUE": "Queue", - "TITLE": "Title", - "MEMBERS": "Members", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", "REGULAR": "Regular", - "ANIMATED": "Animated", - "CHANNELS": "Channels", - "ROLES": "Roles", - "CATEGORIES": "Categories", - "SONGS": "Songs", - "TEXT": "Text", - "VOICE": "Voice", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", "BOOSTERS": "Boosters", - "REGION": "Region", - "TIER": "Tier", - "CREATED_AT": "Created at", - "OWNER": "Owner", - "AUTHOR": "Author", - "REQUESTER": "Requester", - "DURATION": "Duration", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", "NO": "No", "API": "API", "PING": "Ping", - "NAME": "Name", + "NAME": "Nombre", "ID": "ID", - "POSITION": "Position", + "POSITION": "Posición", "COLOR": "Color", - "MENTIONABLE": "Mentionable", - "SEPARATED": "Separated", - "YES": "Yes", - "PLAYING": "Playing", - "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "reboot", - "description": "Reboot a shard or all shards", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "shard", - "description": "Shard to reboot" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "8ball", - "description": "Ask a question to the magic ball", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "question", - "description": "What do you want to ask?" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { "name": "impostor", - "description": "Are you the impostor? SUS", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "user", - "description": "Are this user the impostor? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { "name": "avatar", - "description": "Send your avatar or the other user one!", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "user", - "description": "User to get the avatar" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "Set a notification for when a streamer goes live!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "add", - "description": "Add a streamer to the notification list", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to add" + "description": "El nombre del streamer" }, "channel": { - "name": "channel", - "description": "Channel to send the notification" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "role", - "description": "Role to mention" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "remove", - "description": "Remove a streamer from the notification list", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to remove" + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "shards", - "description": "Get information about shards" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "serverinfo", - "description": "Get information about the server" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "roleinfo", - "description": "Get information about a role", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "role", - "description": "Role to get information" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { "name": "ping", - "description": "Shows the bot latency" + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "mcserver", - "description": "Send a image of a Minecraft server", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "server", - "description": "Server to get information" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "mchistory", - "description": "Show the history of a Minecraft account", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "help", - "description": "Show information about me" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { "name": "github", - "description": "Show information about a GitHub account", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { "name": "embed", - "description": "Send a embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "channel", - "description": "Channel to send the embed" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { "name": "color", - "description": "Color of the embed" + "description": "El color del embed" }, "title": { - "name": "title", - "description": "Title of the embed" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "description", - "description": "Description of the embed" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { "name": "ban", - "description": "Ban a member", + "description": "Banea a un usuario", "options": { "user": { - "name": "usuario", - "description": "Usuario a banear" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "razon", - "description": "Razon del ban" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "dias", - "description": "Días para borrar mensajes del usuario" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "play", - "description": "Play the song that you want with the name or a youtube/spotify link", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "song", - "description": "Song to play" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "stop", - "description": "Stop the player" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "skip", - "description": "Skip the current song" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "resume", - "description": "Resume the current song!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "queue", - "description": "Show the queue" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "pause", - "description": "Pause the current song" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "nowplaying", - "description": "Show the current song" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "loop", - "description": "Repeats the current queue/song" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "Stay 24/7 in a voice channel" + "description": "Mantente 24/7 en un canal de voz" } } -} +} \ No newline at end of file From 152bb3682fe126b0c645db755de76bce0b99ef15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:41:48 +0000 Subject: [PATCH 44/88] New translations es-ES.json (Dutch) --- locales/nl-NL.json | 433 +++++++++++++++++++++++---------------------- 1 file changed, 221 insertions(+), 212 deletions(-) diff --git a/locales/nl-NL.json b/locales/nl-NL.json index c4de708..2fd2c59 100644 --- a/locales/nl-NL.json +++ b/locales/nl-NL.json @@ -4,414 +4,423 @@ "question": "A su pregunta", "response": "Mi respuesta es", "possibles": { - "0": "Yes", + "0": "Sí", "1": "No", - "2": "Maybe", - "3": "Obviously", - "4": "I say yes", - "5": "I say no", - "6": "Probably", - "7": "I have my doubts...", - "8": "Do not even doubt it", - "9": "You didn't even need to ask ;)", - "10": "Not at all...", - "11": "I don `t believe..." + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "Was the impostor", - "was_not": "Was not the impostor" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "Embed created and sent successfully.", - "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "Embed Creator", - "title_label": "Title", - "title_placeholder": "My Awesome Embed", - "description_label": "Description", - "description_placeholder": "This is my awesome embed!", + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", "color_label": "Color" }, "buttons": { - "send": "Send", - "edit": "Edit" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "Invalid input" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "Please write an username.", - "name": "🧑 Name:", - "account": " Account Type:", - "organization": "🏢 Organization:", - "link": "☁️ Link", - "location": "🗺 Location:", - "email": "📩 Email", - "biography": "📃 Biography", + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", "twitter": "🐦 Twitter:", - "repositories": "📂 Public Repositories", - "followers": "🧍 Followers", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", "analizing": "Analizando cuenta, por favor espera...", "unknow": "El usuario no se encontró" }, "help": { - "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", - "how_use": "How do I see the commands?", - "how_use_answer": "Easy, you just have to write", - "need_support": "If I need support, how can I contact with the support team", - "need_support_answer": "You can ask in our [support server!]({inviteURL})", - "how_vote": "How can I vote for the bot?", - "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", - "title": "✨ - Help menu" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "here you have the avatar of {user}", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "The username doesn't exist", - "names": "Name's historical", - "first": "First Name" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "Global ping", - "internal": "Internal Processing (database + processing)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Managed by Discord" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "No verification.", - "low": "Low (Verified account).", - "medium": "Medium (Verified account for +5 minutes).", - "high": "High (Verified account for +10 minutes).", - "extreme": "Extreme (Verified account y verified phone number linked)." + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "No messages are scanned.", - "members_without_role": "Scan users without a role.", - "all_members": "Scan every message." + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "Emoji Count", - "tier_level": "Tier Level", - "verification_level": "Verification Level", - "explicit_filter": "Explicit Content Filter Level" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "Member not found", - "self": "You can't ban yourself", - "owner": "You can't ban the owner", - "higher": "You can't ban a member with a higher role than you", - "ban": "Banned successfully", - "unbannable": "I can't ban this member" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", - "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", - "2": "What are you doing that you don't listen to music? Add a song now :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "You are not within my voice channel.", - "skiped": "{song} has been skipped" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "There aren't songs being played on this server. Why don't you add one?", - "current": "Currently playing:", + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", "queue": "{name}'s queue", - "no_page": "¡The page does not exist!", - "total": "Total songs queue:" + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24/7 mode is enabled ", - "disabled": "24/7 mode is disabled" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "You need to be on the same voice channel as the bot to execute this command.", - "not_voice": "You need to be on a voice channel to execute this command.", - "not_reproducible": "The attached link does not contain reproducible content.", - "added": "{song} added to the list", - "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "Rebooting all shards...", - "shard": "Rebooting shard {shard}..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "Music resumed by {user}", - "paused": "Music paused by {user}", - "success": "Music stopped" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "Music paused", - "resumed": "Music resumed", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "Leaving {channel} in {time} minutes", - "alone": "I was alone, and I left {channel}" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "Auto-Mix has been generated!", - "disabled": "AutoMix disabled" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "The streamer was not found", - "already_following": "You are already following this streamer", - "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", - "unfollowed": "You have stopped following {streamer}.", - "role_mention": "Mention will be made to {role}.", - "now_live": "{streamer} is now live!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "Queue loop", - "song": "Song loop", - "disabled": "Loop disabled" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pause", - "RESUME": "Resume", + "PAUSE": "Pausa", + "RESUME": "Currículum", "STOP": "Stop", - "SKIP": "Skip", - "NEXT": "Next", - "QUEUE": "Queue", - "TITLE": "Title", - "MEMBERS": "Members", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", "REGULAR": "Regular", - "ANIMATED": "Animated", - "CHANNELS": "Channels", - "ROLES": "Roles", - "CATEGORIES": "Categories", - "SONGS": "Songs", - "TEXT": "Text", - "VOICE": "Voice", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", "BOOSTERS": "Boosters", - "REGION": "Region", - "TIER": "Tier", - "CREATED_AT": "Created at", - "OWNER": "Owner", - "AUTHOR": "Author", - "REQUESTER": "Requester", - "DURATION": "Duration", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", "NO": "No", "API": "API", "PING": "Ping", - "NAME": "Name", + "NAME": "Nombre", "ID": "ID", - "POSITION": "Position", + "POSITION": "Posición", "COLOR": "Color", - "MENTIONABLE": "Mentionable", - "SEPARATED": "Separated", - "YES": "Yes", - "PLAYING": "Playing", - "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "reboot", - "description": "Reboot a shard or all shards", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "shard", - "description": "Shard to reboot" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "8ball", - "description": "Ask a question to the magic ball", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "question", - "description": "What do you want to ask?" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { "name": "impostor", - "description": "Are you the impostor? SUS", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "user", - "description": "Are this user the impostor? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { "name": "avatar", - "description": "Send your avatar or the other user one!", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "user", - "description": "User to get the avatar" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "Set a notification for when a streamer goes live!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "add", - "description": "Add a streamer to the notification list", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to add" + "description": "El nombre del streamer" }, "channel": { - "name": "channel", - "description": "Channel to send the notification" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "role", - "description": "Role to mention" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "remove", - "description": "Remove a streamer from the notification list", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to remove" + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "shards", - "description": "Get information about shards" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "serverinfo", - "description": "Get information about the server" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "roleinfo", - "description": "Get information about a role", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "role", - "description": "Role to get information" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { "name": "ping", - "description": "Shows the bot latency" + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "mcserver", - "description": "Send a image of a Minecraft server", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "server", - "description": "Server to get information" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "mchistory", - "description": "Show the history of a Minecraft account", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "help", - "description": "Show information about me" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { "name": "github", - "description": "Show information about a GitHub account", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { "name": "embed", - "description": "Send a embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "channel", - "description": "Channel to send the embed" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { "name": "color", - "description": "Color of the embed" + "description": "El color del embed" }, "title": { - "name": "title", - "description": "Title of the embed" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "description", - "description": "Description of the embed" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { "name": "ban", - "description": "Ban a member", + "description": "Banea a un usuario", "options": { "user": { - "name": "usuario", - "description": "Usuario a banear" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "razon", - "description": "Razon del ban" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "dias", - "description": "Días para borrar mensajes del usuario" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "play", - "description": "Play the song that you want with the name or a youtube/spotify link", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "song", - "description": "Song to play" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "stop", - "description": "Stop the player" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "skip", - "description": "Skip the current song" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "resume", - "description": "Resume the current song!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "queue", - "description": "Show the queue" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "pause", - "description": "Pause the current song" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "nowplaying", - "description": "Show the current song" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "loop", - "description": "Repeats the current queue/song" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "Stay 24/7 in a voice channel" + "description": "Mantente 24/7 en un canal de voz" } } -} +} \ No newline at end of file From 555e468d103d2ecc6258732a7eb3c5fbb42e23e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:41:49 +0000 Subject: [PATCH 45/88] New translations es-ES.json (Russian) --- locales/ru-RU.json | 433 +++++++++++++++++++++++---------------------- 1 file changed, 221 insertions(+), 212 deletions(-) diff --git a/locales/ru-RU.json b/locales/ru-RU.json index c4de708..2fd2c59 100644 --- a/locales/ru-RU.json +++ b/locales/ru-RU.json @@ -4,414 +4,423 @@ "question": "A su pregunta", "response": "Mi respuesta es", "possibles": { - "0": "Yes", + "0": "Sí", "1": "No", - "2": "Maybe", - "3": "Obviously", - "4": "I say yes", - "5": "I say no", - "6": "Probably", - "7": "I have my doubts...", - "8": "Do not even doubt it", - "9": "You didn't even need to ask ;)", - "10": "Not at all...", - "11": "I don `t believe..." + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "Was the impostor", - "was_not": "Was not the impostor" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "Embed created and sent successfully.", - "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "Embed Creator", - "title_label": "Title", - "title_placeholder": "My Awesome Embed", - "description_label": "Description", - "description_placeholder": "This is my awesome embed!", + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", "color_label": "Color" }, "buttons": { - "send": "Send", - "edit": "Edit" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "Invalid input" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "Please write an username.", - "name": "🧑 Name:", - "account": " Account Type:", - "organization": "🏢 Organization:", - "link": "☁️ Link", - "location": "🗺 Location:", - "email": "📩 Email", - "biography": "📃 Biography", + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", "twitter": "🐦 Twitter:", - "repositories": "📂 Public Repositories", - "followers": "🧍 Followers", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", "analizing": "Analizando cuenta, por favor espera...", "unknow": "El usuario no se encontró" }, "help": { - "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", - "how_use": "How do I see the commands?", - "how_use_answer": "Easy, you just have to write", - "need_support": "If I need support, how can I contact with the support team", - "need_support_answer": "You can ask in our [support server!]({inviteURL})", - "how_vote": "How can I vote for the bot?", - "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", - "title": "✨ - Help menu" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "here you have the avatar of {user}", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "The username doesn't exist", - "names": "Name's historical", - "first": "First Name" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "Global ping", - "internal": "Internal Processing (database + processing)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Managed by Discord" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "No verification.", - "low": "Low (Verified account).", - "medium": "Medium (Verified account for +5 minutes).", - "high": "High (Verified account for +10 minutes).", - "extreme": "Extreme (Verified account y verified phone number linked)." + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "No messages are scanned.", - "members_without_role": "Scan users without a role.", - "all_members": "Scan every message." + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "Emoji Count", - "tier_level": "Tier Level", - "verification_level": "Verification Level", - "explicit_filter": "Explicit Content Filter Level" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "Member not found", - "self": "You can't ban yourself", - "owner": "You can't ban the owner", - "higher": "You can't ban a member with a higher role than you", - "ban": "Banned successfully", - "unbannable": "I can't ban this member" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", - "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", - "2": "What are you doing that you don't listen to music? Add a song now :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "You are not within my voice channel.", - "skiped": "{song} has been skipped" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "There aren't songs being played on this server. Why don't you add one?", - "current": "Currently playing:", + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", "queue": "{name}'s queue", - "no_page": "¡The page does not exist!", - "total": "Total songs queue:" + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24/7 mode is enabled ", - "disabled": "24/7 mode is disabled" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "You need to be on the same voice channel as the bot to execute this command.", - "not_voice": "You need to be on a voice channel to execute this command.", - "not_reproducible": "The attached link does not contain reproducible content.", - "added": "{song} added to the list", - "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "Rebooting all shards...", - "shard": "Rebooting shard {shard}..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "Music resumed by {user}", - "paused": "Music paused by {user}", - "success": "Music stopped" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "Music paused", - "resumed": "Music resumed", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "Leaving {channel} in {time} minutes", - "alone": "I was alone, and I left {channel}" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "Auto-Mix has been generated!", - "disabled": "AutoMix disabled" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "The streamer was not found", - "already_following": "You are already following this streamer", - "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", - "unfollowed": "You have stopped following {streamer}.", - "role_mention": "Mention will be made to {role}.", - "now_live": "{streamer} is now live!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "Queue loop", - "song": "Song loop", - "disabled": "Loop disabled" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pause", - "RESUME": "Resume", + "PAUSE": "Pausa", + "RESUME": "Currículum", "STOP": "Stop", - "SKIP": "Skip", - "NEXT": "Next", - "QUEUE": "Queue", - "TITLE": "Title", - "MEMBERS": "Members", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", "REGULAR": "Regular", - "ANIMATED": "Animated", - "CHANNELS": "Channels", - "ROLES": "Roles", - "CATEGORIES": "Categories", - "SONGS": "Songs", - "TEXT": "Text", - "VOICE": "Voice", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", "BOOSTERS": "Boosters", - "REGION": "Region", - "TIER": "Tier", - "CREATED_AT": "Created at", - "OWNER": "Owner", - "AUTHOR": "Author", - "REQUESTER": "Requester", - "DURATION": "Duration", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", "NO": "No", "API": "API", "PING": "Ping", - "NAME": "Name", + "NAME": "Nombre", "ID": "ID", - "POSITION": "Position", + "POSITION": "Posición", "COLOR": "Color", - "MENTIONABLE": "Mentionable", - "SEPARATED": "Separated", - "YES": "Yes", - "PLAYING": "Playing", - "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "reboot", - "description": "Reboot a shard or all shards", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "shard", - "description": "Shard to reboot" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "8ball", - "description": "Ask a question to the magic ball", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "question", - "description": "What do you want to ask?" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { "name": "impostor", - "description": "Are you the impostor? SUS", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "user", - "description": "Are this user the impostor? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { "name": "avatar", - "description": "Send your avatar or the other user one!", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "user", - "description": "User to get the avatar" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "Set a notification for when a streamer goes live!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "add", - "description": "Add a streamer to the notification list", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to add" + "description": "El nombre del streamer" }, "channel": { - "name": "channel", - "description": "Channel to send the notification" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "role", - "description": "Role to mention" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "remove", - "description": "Remove a streamer from the notification list", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to remove" + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "shards", - "description": "Get information about shards" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "serverinfo", - "description": "Get information about the server" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "roleinfo", - "description": "Get information about a role", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "role", - "description": "Role to get information" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { "name": "ping", - "description": "Shows the bot latency" + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "mcserver", - "description": "Send a image of a Minecraft server", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "server", - "description": "Server to get information" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "mchistory", - "description": "Show the history of a Minecraft account", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "help", - "description": "Show information about me" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { "name": "github", - "description": "Show information about a GitHub account", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { "name": "embed", - "description": "Send a embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "channel", - "description": "Channel to send the embed" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { "name": "color", - "description": "Color of the embed" + "description": "El color del embed" }, "title": { - "name": "title", - "description": "Title of the embed" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "description", - "description": "Description of the embed" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { "name": "ban", - "description": "Ban a member", + "description": "Banea a un usuario", "options": { "user": { - "name": "usuario", - "description": "Usuario a banear" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "razon", - "description": "Razon del ban" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "dias", - "description": "Días para borrar mensajes del usuario" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "play", - "description": "Play the song that you want with the name or a youtube/spotify link", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "song", - "description": "Song to play" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "stop", - "description": "Stop the player" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "skip", - "description": "Skip the current song" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "resume", - "description": "Resume the current song!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "queue", - "description": "Show the queue" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "pause", - "description": "Pause the current song" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "nowplaying", - "description": "Show the current song" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "loop", - "description": "Repeats the current queue/song" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "Stay 24/7 in a voice channel" + "description": "Mantente 24/7 en un canal de voz" } } -} +} \ No newline at end of file From 1183aa44b60692862493449dceaa6ae31fc72677 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:41:50 +0000 Subject: [PATCH 46/88] New translations es-ES.json (Turkish) --- locales/tr-TR.json | 433 +++++++++++++++++++++++---------------------- 1 file changed, 221 insertions(+), 212 deletions(-) diff --git a/locales/tr-TR.json b/locales/tr-TR.json index c4de708..2fd2c59 100644 --- a/locales/tr-TR.json +++ b/locales/tr-TR.json @@ -4,414 +4,423 @@ "question": "A su pregunta", "response": "Mi respuesta es", "possibles": { - "0": "Yes", + "0": "Sí", "1": "No", - "2": "Maybe", - "3": "Obviously", - "4": "I say yes", - "5": "I say no", - "6": "Probably", - "7": "I have my doubts...", - "8": "Do not even doubt it", - "9": "You didn't even need to ask ;)", - "10": "Not at all...", - "11": "I don `t believe..." + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "Was the impostor", - "was_not": "Was not the impostor" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "Embed created and sent successfully.", - "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "Embed Creator", - "title_label": "Title", - "title_placeholder": "My Awesome Embed", - "description_label": "Description", - "description_placeholder": "This is my awesome embed!", + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", "color_label": "Color" }, "buttons": { - "send": "Send", - "edit": "Edit" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "Invalid input" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "Please write an username.", - "name": "🧑 Name:", - "account": " Account Type:", - "organization": "🏢 Organization:", - "link": "☁️ Link", - "location": "🗺 Location:", - "email": "📩 Email", - "biography": "📃 Biography", + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", "twitter": "🐦 Twitter:", - "repositories": "📂 Public Repositories", - "followers": "🧍 Followers", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", "analizing": "Analizando cuenta, por favor espera...", "unknow": "El usuario no se encontró" }, "help": { - "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", - "how_use": "How do I see the commands?", - "how_use_answer": "Easy, you just have to write", - "need_support": "If I need support, how can I contact with the support team", - "need_support_answer": "You can ask in our [support server!]({inviteURL})", - "how_vote": "How can I vote for the bot?", - "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", - "title": "✨ - Help menu" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "here you have the avatar of {user}", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "The username doesn't exist", - "names": "Name's historical", - "first": "First Name" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "Global ping", - "internal": "Internal Processing (database + processing)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Managed by Discord" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "No verification.", - "low": "Low (Verified account).", - "medium": "Medium (Verified account for +5 minutes).", - "high": "High (Verified account for +10 minutes).", - "extreme": "Extreme (Verified account y verified phone number linked)." + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "No messages are scanned.", - "members_without_role": "Scan users without a role.", - "all_members": "Scan every message." + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "Emoji Count", - "tier_level": "Tier Level", - "verification_level": "Verification Level", - "explicit_filter": "Explicit Content Filter Level" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "Member not found", - "self": "You can't ban yourself", - "owner": "You can't ban the owner", - "higher": "You can't ban a member with a higher role than you", - "ban": "Banned successfully", - "unbannable": "I can't ban this member" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", - "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", - "2": "What are you doing that you don't listen to music? Add a song now :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "You are not within my voice channel.", - "skiped": "{song} has been skipped" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "There aren't songs being played on this server. Why don't you add one?", - "current": "Currently playing:", + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", "queue": "{name}'s queue", - "no_page": "¡The page does not exist!", - "total": "Total songs queue:" + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24/7 mode is enabled ", - "disabled": "24/7 mode is disabled" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "You need to be on the same voice channel as the bot to execute this command.", - "not_voice": "You need to be on a voice channel to execute this command.", - "not_reproducible": "The attached link does not contain reproducible content.", - "added": "{song} added to the list", - "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "Rebooting all shards...", - "shard": "Rebooting shard {shard}..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "Music resumed by {user}", - "paused": "Music paused by {user}", - "success": "Music stopped" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "Music paused", - "resumed": "Music resumed", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "Leaving {channel} in {time} minutes", - "alone": "I was alone, and I left {channel}" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "Auto-Mix has been generated!", - "disabled": "AutoMix disabled" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "The streamer was not found", - "already_following": "You are already following this streamer", - "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", - "unfollowed": "You have stopped following {streamer}.", - "role_mention": "Mention will be made to {role}.", - "now_live": "{streamer} is now live!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "Queue loop", - "song": "Song loop", - "disabled": "Loop disabled" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pause", - "RESUME": "Resume", + "PAUSE": "Pausa", + "RESUME": "Currículum", "STOP": "Stop", - "SKIP": "Skip", - "NEXT": "Next", - "QUEUE": "Queue", - "TITLE": "Title", - "MEMBERS": "Members", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", "REGULAR": "Regular", - "ANIMATED": "Animated", - "CHANNELS": "Channels", - "ROLES": "Roles", - "CATEGORIES": "Categories", - "SONGS": "Songs", - "TEXT": "Text", - "VOICE": "Voice", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", "BOOSTERS": "Boosters", - "REGION": "Region", - "TIER": "Tier", - "CREATED_AT": "Created at", - "OWNER": "Owner", - "AUTHOR": "Author", - "REQUESTER": "Requester", - "DURATION": "Duration", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", "NO": "No", "API": "API", "PING": "Ping", - "NAME": "Name", + "NAME": "Nombre", "ID": "ID", - "POSITION": "Position", + "POSITION": "Posición", "COLOR": "Color", - "MENTIONABLE": "Mentionable", - "SEPARATED": "Separated", - "YES": "Yes", - "PLAYING": "Playing", - "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "reboot", - "description": "Reboot a shard or all shards", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "shard", - "description": "Shard to reboot" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "8ball", - "description": "Ask a question to the magic ball", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "question", - "description": "What do you want to ask?" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { "name": "impostor", - "description": "Are you the impostor? SUS", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "user", - "description": "Are this user the impostor? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { "name": "avatar", - "description": "Send your avatar or the other user one!", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "user", - "description": "User to get the avatar" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "Set a notification for when a streamer goes live!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "add", - "description": "Add a streamer to the notification list", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to add" + "description": "El nombre del streamer" }, "channel": { - "name": "channel", - "description": "Channel to send the notification" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "role", - "description": "Role to mention" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "remove", - "description": "Remove a streamer from the notification list", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to remove" + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "shards", - "description": "Get information about shards" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "serverinfo", - "description": "Get information about the server" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "roleinfo", - "description": "Get information about a role", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "role", - "description": "Role to get information" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { "name": "ping", - "description": "Shows the bot latency" + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "mcserver", - "description": "Send a image of a Minecraft server", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "server", - "description": "Server to get information" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "mchistory", - "description": "Show the history of a Minecraft account", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "help", - "description": "Show information about me" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { "name": "github", - "description": "Show information about a GitHub account", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { "name": "embed", - "description": "Send a embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "channel", - "description": "Channel to send the embed" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { "name": "color", - "description": "Color of the embed" + "description": "El color del embed" }, "title": { - "name": "title", - "description": "Title of the embed" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "description", - "description": "Description of the embed" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { "name": "ban", - "description": "Ban a member", + "description": "Banea a un usuario", "options": { "user": { - "name": "usuario", - "description": "Usuario a banear" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "razon", - "description": "Razon del ban" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "dias", - "description": "Días para borrar mensajes del usuario" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "play", - "description": "Play the song that you want with the name or a youtube/spotify link", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "song", - "description": "Song to play" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "stop", - "description": "Stop the player" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "skip", - "description": "Skip the current song" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "resume", - "description": "Resume the current song!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "queue", - "description": "Show the queue" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "pause", - "description": "Pause the current song" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "nowplaying", - "description": "Show the current song" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "loop", - "description": "Repeats the current queue/song" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "Stay 24/7 in a voice channel" + "description": "Mantente 24/7 en un canal de voz" } } -} +} \ No newline at end of file From 5ae81517cff7fa6ee6ef287167d127cc2d82c194 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:41:51 +0000 Subject: [PATCH 47/88] New translations es-ES.json (Ukrainian) --- locales/uk-UA.json | 433 +++++++++++++++++++++++---------------------- 1 file changed, 221 insertions(+), 212 deletions(-) diff --git a/locales/uk-UA.json b/locales/uk-UA.json index c4de708..2fd2c59 100644 --- a/locales/uk-UA.json +++ b/locales/uk-UA.json @@ -4,414 +4,423 @@ "question": "A su pregunta", "response": "Mi respuesta es", "possibles": { - "0": "Yes", + "0": "Sí", "1": "No", - "2": "Maybe", - "3": "Obviously", - "4": "I say yes", - "5": "I say no", - "6": "Probably", - "7": "I have my doubts...", - "8": "Do not even doubt it", - "9": "You didn't even need to ask ;)", - "10": "Not at all...", - "11": "I don `t believe..." + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "Was the impostor", - "was_not": "Was not the impostor" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "Embed created and sent successfully.", - "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "Embed Creator", - "title_label": "Title", - "title_placeholder": "My Awesome Embed", - "description_label": "Description", - "description_placeholder": "This is my awesome embed!", + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", "color_label": "Color" }, "buttons": { - "send": "Send", - "edit": "Edit" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "Invalid input" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "Please write an username.", - "name": "🧑 Name:", - "account": " Account Type:", - "organization": "🏢 Organization:", - "link": "☁️ Link", - "location": "🗺 Location:", - "email": "📩 Email", - "biography": "📃 Biography", + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", "twitter": "🐦 Twitter:", - "repositories": "📂 Public Repositories", - "followers": "🧍 Followers", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", "analizing": "Analizando cuenta, por favor espera...", "unknow": "El usuario no se encontró" }, "help": { - "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", - "how_use": "How do I see the commands?", - "how_use_answer": "Easy, you just have to write", - "need_support": "If I need support, how can I contact with the support team", - "need_support_answer": "You can ask in our [support server!]({inviteURL})", - "how_vote": "How can I vote for the bot?", - "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", - "title": "✨ - Help menu" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "here you have the avatar of {user}", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "The username doesn't exist", - "names": "Name's historical", - "first": "First Name" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "Global ping", - "internal": "Internal Processing (database + processing)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Managed by Discord" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "No verification.", - "low": "Low (Verified account).", - "medium": "Medium (Verified account for +5 minutes).", - "high": "High (Verified account for +10 minutes).", - "extreme": "Extreme (Verified account y verified phone number linked)." + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "No messages are scanned.", - "members_without_role": "Scan users without a role.", - "all_members": "Scan every message." + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "Emoji Count", - "tier_level": "Tier Level", - "verification_level": "Verification Level", - "explicit_filter": "Explicit Content Filter Level" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "Member not found", - "self": "You can't ban yourself", - "owner": "You can't ban the owner", - "higher": "You can't ban a member with a higher role than you", - "ban": "Banned successfully", - "unbannable": "I can't ban this member" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", - "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", - "2": "What are you doing that you don't listen to music? Add a song now :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "You are not within my voice channel.", - "skiped": "{song} has been skipped" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "There aren't songs being played on this server. Why don't you add one?", - "current": "Currently playing:", + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", "queue": "{name}'s queue", - "no_page": "¡The page does not exist!", - "total": "Total songs queue:" + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24/7 mode is enabled ", - "disabled": "24/7 mode is disabled" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "You need to be on the same voice channel as the bot to execute this command.", - "not_voice": "You need to be on a voice channel to execute this command.", - "not_reproducible": "The attached link does not contain reproducible content.", - "added": "{song} added to the list", - "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "Rebooting all shards...", - "shard": "Rebooting shard {shard}..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "Music resumed by {user}", - "paused": "Music paused by {user}", - "success": "Music stopped" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "Music paused", - "resumed": "Music resumed", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "Leaving {channel} in {time} minutes", - "alone": "I was alone, and I left {channel}" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "Auto-Mix has been generated!", - "disabled": "AutoMix disabled" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "The streamer was not found", - "already_following": "You are already following this streamer", - "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", - "unfollowed": "You have stopped following {streamer}.", - "role_mention": "Mention will be made to {role}.", - "now_live": "{streamer} is now live!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "Queue loop", - "song": "Song loop", - "disabled": "Loop disabled" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pause", - "RESUME": "Resume", + "PAUSE": "Pausa", + "RESUME": "Currículum", "STOP": "Stop", - "SKIP": "Skip", - "NEXT": "Next", - "QUEUE": "Queue", - "TITLE": "Title", - "MEMBERS": "Members", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", "REGULAR": "Regular", - "ANIMATED": "Animated", - "CHANNELS": "Channels", - "ROLES": "Roles", - "CATEGORIES": "Categories", - "SONGS": "Songs", - "TEXT": "Text", - "VOICE": "Voice", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", "BOOSTERS": "Boosters", - "REGION": "Region", - "TIER": "Tier", - "CREATED_AT": "Created at", - "OWNER": "Owner", - "AUTHOR": "Author", - "REQUESTER": "Requester", - "DURATION": "Duration", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", "NO": "No", "API": "API", "PING": "Ping", - "NAME": "Name", + "NAME": "Nombre", "ID": "ID", - "POSITION": "Position", + "POSITION": "Posición", "COLOR": "Color", - "MENTIONABLE": "Mentionable", - "SEPARATED": "Separated", - "YES": "Yes", - "PLAYING": "Playing", - "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "reboot", - "description": "Reboot a shard or all shards", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "shard", - "description": "Shard to reboot" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "8ball", - "description": "Ask a question to the magic ball", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "question", - "description": "What do you want to ask?" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { "name": "impostor", - "description": "Are you the impostor? SUS", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "user", - "description": "Are this user the impostor? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { "name": "avatar", - "description": "Send your avatar or the other user one!", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "user", - "description": "User to get the avatar" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "Set a notification for when a streamer goes live!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "add", - "description": "Add a streamer to the notification list", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to add" + "description": "El nombre del streamer" }, "channel": { - "name": "channel", - "description": "Channel to send the notification" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "role", - "description": "Role to mention" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "remove", - "description": "Remove a streamer from the notification list", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to remove" + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "shards", - "description": "Get information about shards" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "serverinfo", - "description": "Get information about the server" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "roleinfo", - "description": "Get information about a role", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "role", - "description": "Role to get information" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { "name": "ping", - "description": "Shows the bot latency" + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "mcserver", - "description": "Send a image of a Minecraft server", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "server", - "description": "Server to get information" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "mchistory", - "description": "Show the history of a Minecraft account", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "help", - "description": "Show information about me" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { "name": "github", - "description": "Show information about a GitHub account", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { "name": "embed", - "description": "Send a embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "channel", - "description": "Channel to send the embed" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { "name": "color", - "description": "Color of the embed" + "description": "El color del embed" }, "title": { - "name": "title", - "description": "Title of the embed" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "description", - "description": "Description of the embed" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { "name": "ban", - "description": "Ban a member", + "description": "Banea a un usuario", "options": { "user": { - "name": "usuario", - "description": "Usuario a banear" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "razon", - "description": "Razon del ban" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "dias", - "description": "Días para borrar mensajes del usuario" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "play", - "description": "Play the song that you want with the name or a youtube/spotify link", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "song", - "description": "Song to play" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "stop", - "description": "Stop the player" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "skip", - "description": "Skip the current song" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "resume", - "description": "Resume the current song!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "queue", - "description": "Show the queue" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "pause", - "description": "Pause the current song" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "nowplaying", - "description": "Show the current song" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "loop", - "description": "Repeats the current queue/song" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "Stay 24/7 in a voice channel" + "description": "Mantente 24/7 en un canal de voz" } } -} +} \ No newline at end of file From 1a139530ec625e0bba35d2284f39c0407881c10d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:41:52 +0000 Subject: [PATCH 48/88] New translations es-ES.json (Chinese Simplified) --- locales/zh-CN.json | 433 +++++++++++++++++++++++---------------------- 1 file changed, 221 insertions(+), 212 deletions(-) diff --git a/locales/zh-CN.json b/locales/zh-CN.json index c4de708..2fd2c59 100644 --- a/locales/zh-CN.json +++ b/locales/zh-CN.json @@ -4,414 +4,423 @@ "question": "A su pregunta", "response": "Mi respuesta es", "possibles": { - "0": "Yes", + "0": "Sí", "1": "No", - "2": "Maybe", - "3": "Obviously", - "4": "I say yes", - "5": "I say no", - "6": "Probably", - "7": "I have my doubts...", - "8": "Do not even doubt it", - "9": "You didn't even need to ask ;)", - "10": "Not at all...", - "11": "I don `t believe..." + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "Was the impostor", - "was_not": "Was not the impostor" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "Embed created and sent successfully.", - "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "Embed Creator", - "title_label": "Title", - "title_placeholder": "My Awesome Embed", - "description_label": "Description", - "description_placeholder": "This is my awesome embed!", + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", "color_label": "Color" }, "buttons": { - "send": "Send", - "edit": "Edit" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "Invalid input" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "Please write an username.", - "name": "🧑 Name:", - "account": " Account Type:", - "organization": "🏢 Organization:", - "link": "☁️ Link", - "location": "🗺 Location:", - "email": "📩 Email", - "biography": "📃 Biography", + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", "twitter": "🐦 Twitter:", - "repositories": "📂 Public Repositories", - "followers": "🧍 Followers", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", "analizing": "Analizando cuenta, por favor espera...", "unknow": "El usuario no se encontró" }, "help": { - "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", - "how_use": "How do I see the commands?", - "how_use_answer": "Easy, you just have to write", - "need_support": "If I need support, how can I contact with the support team", - "need_support_answer": "You can ask in our [support server!]({inviteURL})", - "how_vote": "How can I vote for the bot?", - "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", - "title": "✨ - Help menu" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "here you have the avatar of {user}", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "The username doesn't exist", - "names": "Name's historical", - "first": "First Name" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "Global ping", - "internal": "Internal Processing (database + processing)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Managed by Discord" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "No verification.", - "low": "Low (Verified account).", - "medium": "Medium (Verified account for +5 minutes).", - "high": "High (Verified account for +10 minutes).", - "extreme": "Extreme (Verified account y verified phone number linked)." + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "No messages are scanned.", - "members_without_role": "Scan users without a role.", - "all_members": "Scan every message." + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "Emoji Count", - "tier_level": "Tier Level", - "verification_level": "Verification Level", - "explicit_filter": "Explicit Content Filter Level" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "Member not found", - "self": "You can't ban yourself", - "owner": "You can't ban the owner", - "higher": "You can't ban a member with a higher role than you", - "ban": "Banned successfully", - "unbannable": "I can't ban this member" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", - "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", - "2": "What are you doing that you don't listen to music? Add a song now :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "You are not within my voice channel.", - "skiped": "{song} has been skipped" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "There aren't songs being played on this server. Why don't you add one?", - "current": "Currently playing:", + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", "queue": "{name}'s queue", - "no_page": "¡The page does not exist!", - "total": "Total songs queue:" + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24/7 mode is enabled ", - "disabled": "24/7 mode is disabled" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "You need to be on the same voice channel as the bot to execute this command.", - "not_voice": "You need to be on a voice channel to execute this command.", - "not_reproducible": "The attached link does not contain reproducible content.", - "added": "{song} added to the list", - "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "Rebooting all shards...", - "shard": "Rebooting shard {shard}..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "Music resumed by {user}", - "paused": "Music paused by {user}", - "success": "Music stopped" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "Music paused", - "resumed": "Music resumed", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "Leaving {channel} in {time} minutes", - "alone": "I was alone, and I left {channel}" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "Auto-Mix has been generated!", - "disabled": "AutoMix disabled" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "The streamer was not found", - "already_following": "You are already following this streamer", - "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", - "unfollowed": "You have stopped following {streamer}.", - "role_mention": "Mention will be made to {role}.", - "now_live": "{streamer} is now live!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "Queue loop", - "song": "Song loop", - "disabled": "Loop disabled" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pause", - "RESUME": "Resume", + "PAUSE": "Pausa", + "RESUME": "Currículum", "STOP": "Stop", - "SKIP": "Skip", - "NEXT": "Next", - "QUEUE": "Queue", - "TITLE": "Title", - "MEMBERS": "Members", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", "REGULAR": "Regular", - "ANIMATED": "Animated", - "CHANNELS": "Channels", - "ROLES": "Roles", - "CATEGORIES": "Categories", - "SONGS": "Songs", - "TEXT": "Text", - "VOICE": "Voice", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", "BOOSTERS": "Boosters", - "REGION": "Region", - "TIER": "Tier", - "CREATED_AT": "Created at", - "OWNER": "Owner", - "AUTHOR": "Author", - "REQUESTER": "Requester", - "DURATION": "Duration", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", "NO": "No", "API": "API", "PING": "Ping", - "NAME": "Name", + "NAME": "Nombre", "ID": "ID", - "POSITION": "Position", + "POSITION": "Posición", "COLOR": "Color", - "MENTIONABLE": "Mentionable", - "SEPARATED": "Separated", - "YES": "Yes", - "PLAYING": "Playing", - "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "reboot", - "description": "Reboot a shard or all shards", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "shard", - "description": "Shard to reboot" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "8ball", - "description": "Ask a question to the magic ball", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "question", - "description": "What do you want to ask?" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { "name": "impostor", - "description": "Are you the impostor? SUS", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "user", - "description": "Are this user the impostor? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { "name": "avatar", - "description": "Send your avatar or the other user one!", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "user", - "description": "User to get the avatar" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "Set a notification for when a streamer goes live!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "add", - "description": "Add a streamer to the notification list", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to add" + "description": "El nombre del streamer" }, "channel": { - "name": "channel", - "description": "Channel to send the notification" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "role", - "description": "Role to mention" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "remove", - "description": "Remove a streamer from the notification list", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to remove" + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "shards", - "description": "Get information about shards" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "serverinfo", - "description": "Get information about the server" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "roleinfo", - "description": "Get information about a role", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "role", - "description": "Role to get information" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { "name": "ping", - "description": "Shows the bot latency" + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "mcserver", - "description": "Send a image of a Minecraft server", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "server", - "description": "Server to get information" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "mchistory", - "description": "Show the history of a Minecraft account", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "help", - "description": "Show information about me" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { "name": "github", - "description": "Show information about a GitHub account", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { "name": "embed", - "description": "Send a embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "channel", - "description": "Channel to send the embed" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { "name": "color", - "description": "Color of the embed" + "description": "El color del embed" }, "title": { - "name": "title", - "description": "Title of the embed" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "description", - "description": "Description of the embed" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { "name": "ban", - "description": "Ban a member", + "description": "Banea a un usuario", "options": { "user": { - "name": "usuario", - "description": "Usuario a banear" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "razon", - "description": "Razon del ban" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "dias", - "description": "Días para borrar mensajes del usuario" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "play", - "description": "Play the song that you want with the name or a youtube/spotify link", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "song", - "description": "Song to play" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "stop", - "description": "Stop the player" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "skip", - "description": "Skip the current song" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "resume", - "description": "Resume the current song!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "queue", - "description": "Show the queue" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "pause", - "description": "Pause the current song" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "nowplaying", - "description": "Show the current song" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "loop", - "description": "Repeats the current queue/song" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "Stay 24/7 in a voice channel" + "description": "Mantente 24/7 en un canal de voz" } } -} +} \ No newline at end of file From f3063a7f01bf8fcc048076ef9e55a68d56d63d78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:41:52 +0000 Subject: [PATCH 49/88] New translations es-ES.json (Portuguese, Brazilian) --- locales/pt-BR.json | 433 +++++++++++++++++++++++---------------------- 1 file changed, 221 insertions(+), 212 deletions(-) diff --git a/locales/pt-BR.json b/locales/pt-BR.json index c4de708..2fd2c59 100644 --- a/locales/pt-BR.json +++ b/locales/pt-BR.json @@ -4,414 +4,423 @@ "question": "A su pregunta", "response": "Mi respuesta es", "possibles": { - "0": "Yes", + "0": "Sí", "1": "No", - "2": "Maybe", - "3": "Obviously", - "4": "I say yes", - "5": "I say no", - "6": "Probably", - "7": "I have my doubts...", - "8": "Do not even doubt it", - "9": "You didn't even need to ask ;)", - "10": "Not at all...", - "11": "I don `t believe..." + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "Was the impostor", - "was_not": "Was not the impostor" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "Embed created and sent successfully.", - "missing_permissions": "I don't have permissions to send messages in that channel. I need {permisions}", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "Embed Creator", - "title_label": "Title", - "title_placeholder": "My Awesome Embed", - "description_label": "Description", - "description_placeholder": "This is my awesome embed!", + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", "color_label": "Color" }, "buttons": { - "send": "Send", - "edit": "Edit" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "Invalid input" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "Please write an username.", - "name": "🧑 Name:", - "account": " Account Type:", - "organization": "🏢 Organization:", - "link": "☁️ Link", - "location": "🗺 Location:", - "email": "📩 Email", - "biography": "📃 Biography", + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", "twitter": "🐦 Twitter:", - "repositories": "📂 Public Repositories", - "followers": "🧍 Followers", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", "analizing": "Analizando cuenta, por favor espera...", "unknow": "El usuario no se encontró" }, "help": { - "presentation": " Hello, I am Node an all-in-one, multifunctional bot with innovative commands.", - "how_use": "How do I see the commands?", - "how_use_answer": "Easy, you just have to write", - "need_support": "If I need support, how can I contact with the support team", - "need_support_answer": "You can ask in our [support server!]({inviteURL})", - "how_vote": "How can I vote for the bot?", - "how_vote_answer": "u can do it using the command `/vote` or [Clicking Here](https://vote.nodebot.xyz) 'We are waiting your vote :)'", - "title": "✨ - Help menu" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "here you have the avatar of {user}", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "The username doesn't exist", - "names": "Name's historical", - "first": "First Name" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "Global ping", - "internal": "Internal Processing (database + processing)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Managed by Discord" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "No verification.", - "low": "Low (Verified account).", - "medium": "Medium (Verified account for +5 minutes).", - "high": "High (Verified account for +10 minutes).", - "extreme": "Extreme (Verified account y verified phone number linked)." + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "No messages are scanned.", - "members_without_role": "Scan users without a role.", - "all_members": "Scan every message." + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "Emoji Count", - "tier_level": "Tier Level", - "verification_level": "Verification Level", - "explicit_filter": "Explicit Content Filter Level" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "Member not found", - "self": "You can't ban yourself", - "owner": "You can't ban the owner", - "higher": "You can't ban a member with a higher role than you", - "ban": "Banned successfully", - "unbannable": "I can't ban this member" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "There are no songs playing on your voice channel. Why don't you add one? <:pepeblink:967941236029788160>", - "1": "It sounds like you're not listening to music, how about we do it? <:pepeblink:967941236029788160>", - "2": "What are you doing that you don't listen to music? Add a song now :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "You are not within my voice channel.", - "skiped": "{song} has been skipped" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "There aren't songs being played on this server. Why don't you add one?", - "current": "Currently playing:", + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", "queue": "{name}'s queue", - "no_page": "¡The page does not exist!", - "total": "Total songs queue:" + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24/7 mode is enabled ", - "disabled": "24/7 mode is disabled" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "You need to be on the same voice channel as the bot to execute this command.", - "not_voice": "You need to be on a voice channel to execute this command.", - "not_reproducible": "The attached link does not contain reproducible content.", - "added": "{song} added to the list", - "cant_join": "I can't join your voice channel, make sure I have the necessary permissions." + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "Rebooting all shards...", - "shard": "Rebooting shard {shard}..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "Music resumed by {user}", - "paused": "Music paused by {user}", - "success": "Music stopped" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "Music paused", - "resumed": "Music resumed", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "Leaving {channel} in {time} minutes", - "alone": "I was alone, and I left {channel}" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "Auto-Mix has been generated!", - "disabled": "AutoMix disabled" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "The streamer was not found", - "already_following": "You are already following this streamer", - "now_following": "You are now following {streamer}. Notifications will be sent to {channel}.", - "unfollowed": "You have stopped following {streamer}.", - "role_mention": "Mention will be made to {role}.", - "now_live": "{streamer} is now live!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "Queue loop", - "song": "Song loop", - "disabled": "Loop disabled" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pause", - "RESUME": "Resume", + "PAUSE": "Pausa", + "RESUME": "Currículum", "STOP": "Stop", - "SKIP": "Skip", - "NEXT": "Next", - "QUEUE": "Queue", - "TITLE": "Title", - "MEMBERS": "Members", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", "REGULAR": "Regular", - "ANIMATED": "Animated", - "CHANNELS": "Channels", - "ROLES": "Roles", - "CATEGORIES": "Categories", - "SONGS": "Songs", - "TEXT": "Text", - "VOICE": "Voice", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", "BOOSTERS": "Boosters", - "REGION": "Region", - "TIER": "Tier", - "CREATED_AT": "Created at", - "OWNER": "Owner", - "AUTHOR": "Author", - "REQUESTER": "Requester", - "DURATION": "Duration", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", "NO": "No", "API": "API", "PING": "Ping", - "NAME": "Name", + "NAME": "Nombre", "ID": "ID", - "POSITION": "Position", + "POSITION": "Posición", "COLOR": "Color", - "MENTIONABLE": "Mentionable", - "SEPARATED": "Separated", - "YES": "Yes", - "PLAYING": "Playing", - "GENERICERROR": "Oops, there seems to have been an error.\nYou can contact the developer to let him know at [The Official Discord]({inviteURL})", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "reboot", - "description": "Reboot a shard or all shards", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "shard", - "description": "Shard to reboot" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "8ball", - "description": "Ask a question to the magic ball", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "question", - "description": "What do you want to ask?" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { "name": "impostor", - "description": "Are you the impostor? SUS", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "user", - "description": "Are this user the impostor? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { "name": "avatar", - "description": "Send your avatar or the other user one!", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "user", - "description": "User to get the avatar" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "Set a notification for when a streamer goes live!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "add", - "description": "Add a streamer to the notification list", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to add" + "description": "El nombre del streamer" }, "channel": { - "name": "channel", - "description": "Channel to send the notification" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "role", - "description": "Role to mention" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "remove", - "description": "Remove a streamer from the notification list", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { "name": "streamer", - "description": "Streamer to remove" + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "shards", - "description": "Get information about shards" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "serverinfo", - "description": "Get information about the server" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "roleinfo", - "description": "Get information about a role", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "role", - "description": "Role to get information" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { "name": "ping", - "description": "Shows the bot latency" + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "mcserver", - "description": "Send a image of a Minecraft server", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "server", - "description": "Server to get information" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "mchistory", - "description": "Show the history of a Minecraft account", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "help", - "description": "Show information about me" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { "name": "github", - "description": "Show information about a GitHub account", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "account", - "description": "Account to get information" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { "name": "embed", - "description": "Send a embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "channel", - "description": "Channel to send the embed" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { "name": "color", - "description": "Color of the embed" + "description": "El color del embed" }, "title": { - "name": "title", - "description": "Title of the embed" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "description", - "description": "Description of the embed" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { "name": "ban", - "description": "Ban a member", + "description": "Banea a un usuario", "options": { "user": { - "name": "usuario", - "description": "Usuario a banear" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "razon", - "description": "Razon del ban" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "dias", - "description": "Días para borrar mensajes del usuario" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "play", - "description": "Play the song that you want with the name or a youtube/spotify link", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "song", - "description": "Song to play" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "stop", - "description": "Stop the player" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "skip", - "description": "Skip the current song" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "resume", - "description": "Resume the current song!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "queue", - "description": "Show the queue" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "pause", - "description": "Pause the current song" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "nowplaying", - "description": "Show the current song" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "loop", - "description": "Repeats the current queue/song" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "Stay 24/7 in a voice channel" + "description": "Mantente 24/7 en un canal de voz" } } -} +} \ No newline at end of file From bdef49212727daf17bd87cb70db01cf00bf7b0b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:41:53 +0000 Subject: [PATCH 50/88] New translations ja.json (French) --- locales/fr-FR.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/fr-FR.json b/locales/fr-FR.json index 2fd2c59..9ef9e7a 100644 --- a/locales/fr-FR.json +++ b/locales/fr-FR.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From 7f501cf00f37ec2a984695e0f8d947aa067b050a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:41:54 +0000 Subject: [PATCH 51/88] New translations ja.json (Spanish) --- locales/es-ES.json | 9 --------- 1 file changed, 9 deletions(-) diff --git a/locales/es-ES.json b/locales/es-ES.json index 2fd2c59..acf40d9 100644 --- a/locales/es-ES.json +++ b/locales/es-ES.json @@ -77,15 +77,6 @@ "roleinfo": { "managed": "Gestionado por Discord" }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" - }, "serverinfo": { "verification": { "no": "No hay verificación.", From 97100c4bae9108f5f4086581c73b48b941ec72ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:41:55 +0000 Subject: [PATCH 52/88] New translations ja.json (Arabic) --- locales/ar-SA.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/ar-SA.json b/locales/ar-SA.json index 2fd2c59..9ef9e7a 100644 --- a/locales/ar-SA.json +++ b/locales/ar-SA.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From 6ddfe59e4d4bb691783dffdc88c50015a367b955 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:41:56 +0000 Subject: [PATCH 53/88] New translations ja.json (German) --- locales/de-DE.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/de-DE.json b/locales/de-DE.json index 2fd2c59..9ef9e7a 100644 --- a/locales/de-DE.json +++ b/locales/de-DE.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From 28d1fb33c790c31baef70acb17b79c79c9d4a498 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:41:57 +0000 Subject: [PATCH 54/88] New translations ja.json (Irish) --- locales/ga-IE.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/ga-IE.json b/locales/ga-IE.json index 2fd2c59..9ef9e7a 100644 --- a/locales/ga-IE.json +++ b/locales/ga-IE.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From 71688cbb72d7212807a73fba789247cfc707da59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:41:57 +0000 Subject: [PATCH 55/88] New translations ja.json (Italian) --- locales/it-IT.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/it-IT.json b/locales/it-IT.json index 2fd2c59..9ef9e7a 100644 --- a/locales/it-IT.json +++ b/locales/it-IT.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From e7da5ab22d193db6a4b9f14b207a2de94b961068 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:41:58 +0000 Subject: [PATCH 56/88] New translations ja.json (Dutch) --- locales/nl-NL.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/nl-NL.json b/locales/nl-NL.json index 2fd2c59..9ef9e7a 100644 --- a/locales/nl-NL.json +++ b/locales/nl-NL.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From e558d8df6e6bdc927bd1c8ccb623c4303f58fd1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:41:59 +0000 Subject: [PATCH 57/88] New translations ja.json (Russian) --- locales/ru-RU.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/ru-RU.json b/locales/ru-RU.json index 2fd2c59..9ef9e7a 100644 --- a/locales/ru-RU.json +++ b/locales/ru-RU.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From 2f3916bc1787d307a1be4c4f60b2a8bb59fbde27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:42:00 +0000 Subject: [PATCH 58/88] New translations ja.json (Turkish) --- locales/tr-TR.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/tr-TR.json b/locales/tr-TR.json index 2fd2c59..9ef9e7a 100644 --- a/locales/tr-TR.json +++ b/locales/tr-TR.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From 823d5d8b8b82e7614aa845459f535e6d5719f2f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:42:01 +0000 Subject: [PATCH 59/88] New translations ja.json (Ukrainian) --- locales/uk-UA.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/uk-UA.json b/locales/uk-UA.json index 2fd2c59..9ef9e7a 100644 --- a/locales/uk-UA.json +++ b/locales/uk-UA.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From ad906505ff4891191bdc8e05c0ed2ae4a3c430eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:42:01 +0000 Subject: [PATCH 60/88] New translations ja.json (Chinese Simplified) --- locales/zh-CN.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/zh-CN.json b/locales/zh-CN.json index 2fd2c59..9ef9e7a 100644 --- a/locales/zh-CN.json +++ b/locales/zh-CN.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From a34e097fe4d1877770ac1de1c59a513d712d744c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 15:42:03 +0000 Subject: [PATCH 61/88] New translations ja.json (Portuguese, Brazilian) --- locales/pt-BR.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/pt-BR.json b/locales/pt-BR.json index 2fd2c59..9ef9e7a 100644 --- a/locales/pt-BR.json +++ b/locales/pt-BR.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From ec9f209030b316500c51e48b6fea8d2f9a0ec12d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:31 +0000 Subject: [PATCH 62/88] Update source file es-ES.json --- locales/es-ES.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/locales/es-ES.json b/locales/es-ES.json index acf40d9..16a9156 100644 --- a/locales/es-ES.json +++ b/locales/es-ES.json @@ -77,6 +77,15 @@ "roleinfo": { "managed": "Gestionado por Discord" }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" + }, "serverinfo": { "verification": { "no": "No hay verificación.", @@ -139,8 +148,8 @@ "paused": "Música pausada por {user}", "success": "Música detenida" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused":"Música pausada", + "resumed":"Música reanudada", "voice_update": { "leaving": "Saliendo de {channel} en {time} minutos", "alone": "Estaba solo, y me fui {channel}" From 1ab2c3f8fe87f05dc0bdb5831481ae59859576dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:33 +0000 Subject: [PATCH 63/88] New translations en-US.json (Spanish) --- locales/es-ES.json | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/locales/es-ES.json b/locales/es-ES.json index 16a9156..af2db33 100644 --- a/locales/es-ES.json +++ b/locales/es-ES.json @@ -77,15 +77,6 @@ "roleinfo": { "managed": "Gestionado por Discord" }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" - }, "serverinfo": { "verification": { "no": "No hay verificación.", @@ -148,8 +139,8 @@ "paused": "Música pausada por {user}", "success": "Música detenida" }, - "paused":"Música pausada", - "resumed":"Música reanudada", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { "leaving": "Saliendo de {channel} en {time} minutos", "alone": "Estaba solo, y me fui {channel}" @@ -423,4 +414,4 @@ "description": "Mantente 24/7 en un canal de voz" } } -} \ No newline at end of file +} From 0905be1eddd0bf1b2670cf01b99489c78bd3013c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:34 +0000 Subject: [PATCH 64/88] New translations es-ES.json (French) --- locales/fr-FR.json | 481 +++++++++++++++++++++++---------------------- 1 file changed, 245 insertions(+), 236 deletions(-) diff --git a/locales/fr-FR.json b/locales/fr-FR.json index 9ef9e7a..2fd2c59 100644 --- a/locales/fr-FR.json +++ b/locales/fr-FR.json @@ -1,417 +1,426 @@ { "question_ball": { - "no_question": "答えるべき質問はないのか?", - "question": "ご質問の件", - "response": "私の答えはこうだ。", + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", "possibles": { - "0": "はい", - "1": "いいえ", - "2": "たぶん", - "3": "明らかに", - "4": "はい", - "5": "断る", - "6": "おそらく", - "7": "私は疑問を持っている...。", - "8": "疑ってはいけない", - "9": "聞くまでもないだろう;)", - "10": "全然違うよ...。", - "11": "私は信じない..." + "0": "Sí", + "1": "No", + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "詐欺師だったのか?", - "was_not": "詐欺師ではなかった" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "エンベッドが作成され、正常に送信された。", - "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "埋め込みを作成する", - "title_label": "タイトル", - "title_placeholder": "私の素晴らしい埋め込み", - "description_label": "記述", - "description_placeholder": "これは私の素晴らしい埋め込みだ!", - "color_label": "色" + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", + "color_label": "Color" }, "buttons": { - "send": "送信", - "edit": "編集" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "無効な入力" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "ユーザー名を書いてください。", - "name": "🧑 名前:", - "account": "アカウントの種類", - "organization": "🏢 組織:", - "link": "☁️ リンク", - "location": "🗺 場所:", - "email": "📩 Eメール", - "biography": "バイオグラフィー", - "twitter": "ツイッター🐦:", - "repositories": "📂 公開リポジトリ", - "followers": "🧍 フォロワー", - "analizing": "アカウントを分析中です。", - "unknow": "ユーザーが見つかりません" + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", + "twitter": "🐦 Twitter:", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" }, "help": { - "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", - "how_use": "コマンドはどうやって見るのですか?", - "how_use_answer": "簡単だ。", - "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", - "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", - "how_vote": "ボットに投票するには?", - "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", - "title": "ヘルプメニュー" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "ここには{user}のアバターがある。", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "ユーザー名が存在しない", - "names": "名前の歴史", - "first": "名前" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "グローバル・ピン", - "internal": "内部処理(データベース+処理)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Discordによる管理" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "検証はしていない。", - "low": "ロー(認証済みアカウント)。", - "medium": "ミディアム(+5分の認証済みアカウント)。", - "high": "高い(+10分間、認証済みアカウント)。", - "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "メッセージはスキャンされない。", - "members_without_role": "ロールのないユーザーをスキャンします。", - "all_members": "すべてのメッセージをスキャンする。" + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "絵文字数", - "tier_level": "ティアレベル", - "verification_level": "検証レベル", - "explicit_filter": "明示的コンテンツフィルターレベル" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "メンバーが見つかりません", - "self": "自分自身を禁止することはできない", - "owner": "オーナーを追放することはできない", - "higher": "自分より上位の役割を持つメンバーを追放することはできない", - "ban": "出入り禁止に成功", - "unbannable": "このメンバーを追放することはできない" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", - "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", - "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "私の音声チャンネルには入っていない。", - "skiped": "{song}はスキップされた" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", - "current": "現在プレー中:", - "queue": "{name}のキュー", - "no_page": "ページが存在しません!", - "total": "全曲キュー:" + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", + "queue": "{name}'s queue", + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24時間365日モードが有効 ", - "disabled": "24/7モードは無効" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", - "not_voice": "音声チャンネルに入ってください。", - "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", - "added": "リストに{song}を追加", - "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "すべてのシャードを再起動...", - "shard": "シャード{shard}を再起動中..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "音楽は{user}によって再開された。", - "paused": "音楽は{user}で一時停止。", - "success": "音楽は停止された。" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "スローミュージック", - "resumed": "音楽は再開された", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "分後に{channel}を発つ{time}。", - "alone": "私は一人で、{channel}を後にした。" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "オートミックスが生成された!", - "disabled": "オートミックス無効" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "ストリーマーが見つかりません", - "already_following": "すでにこのストリーマーをフォローしています。", - "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", - "unfollowed": "あなたは{streamer}をフォローしていません。", - "role_mention": "{role}について言及しなければならない。", - "now_live": "今{streamer}はライブです!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "キューをループ", - "song": "現在の曲をループ", - "disabled": "ループ無効" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "ポーズ", - "RESUME": "履歴書", - "STOP": "ストップ", - "SKIP": "スキップ", - "NEXT": "次のページ", - "QUEUE": "テール", - "TITLE": "タイトル", - "MEMBERS": "メンバー", - "REGULAR": "レギュラー", - "ANIMATED": "アニメーション", - "CHANNELS": "チャンネル", - "ROLES": "役割", - "CATEGORIES": "カテゴリー", - "SONGS": "曲目", - "TEXT": "テキスト", - "VOICE": "声", - "BOOSTERS": "ブースター", - "REGION": "地域", - "TIER": "動物", - "CREATED_AT": "で作成された。", - "OWNER": "オーナー", - "AUTHOR": "著者", - "REQUESTER": "要求者", - "DURATION": "期間", - "NO": "いいえ", + "PAUSE": "Pausa", + "RESUME": "Currículum", + "STOP": "Stop", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", + "REGULAR": "Regular", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", + "BOOSTERS": "Boosters", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", + "NO": "No", "API": "API", - "PING": "ピン", - "NAME": "名称", - "ID": "身分証明書", - "POSITION": "ポジション", - "COLOR": "カラー", - "MENTIONABLE": "言及可能", - "SEPARATED": "分離", - "YES": "はい", - "PLAYING": "プレー", - "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", + "PING": "Ping", + "NAME": "Nombre", + "ID": "ID", + "POSITION": "Posición", + "COLOR": "Color", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "再起動", - "description": "1つまたはすべてのシャードをリセットする", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "破片", - "description": "再起動するシャード" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "ボール8", - "description": "魔球に質問する", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "質問", - "description": "質問を書いてください。" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { - "name": "食わせ物", - "description": "あなたは詐欺師? SUS", + "name": "impostor", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "ユーザー", - "description": "このユーザーは偽者なのか? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { - "name": "アバター", - "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", + "name": "avatar", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "ユーザー", - "description": "アバターを表示するユーザー" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "ストリーマーがライブを開始したときの通知を設定します!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "追加", - "description": "ストリーマーを追加する", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" }, "channel": { - "name": "チャンネル", - "description": "通知を受け取るチャンネル" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "役割", - "description": "通知を受け取る役割" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "削除", - "description": "ストリーマーを削除する", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "破片", - "description": "ボットのシャードを表示します。" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "サーバー情報", - "description": "サーバーの情報を表示します。" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "役割情報", - "description": "役割の情報を表示します。", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "役割", - "description": "役割の情報を表示します。" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { - "name": "ピン", - "description": "ボットの待ち時間を表示" + "name": "ping", + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "マインクラフトサーバー", - "description": "Minecraftサーバーから画像を送信する", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "サーバー", - "description": "サーバーのIPまたはドメイン" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "マインクラフトの歴史", - "description": "Minecraftユーザーの名前の歴史を表示します。", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "助けて", - "description": "私に関する情報を表示する" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { - "name": "ギットハブ", - "description": "GitHubユーザーの情報を表示します。", + "name": "github", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { - "name": "埋め込み", - "description": "埋め込みを作成する", + "name": "embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "チャンネル", - "description": "埋め込みを送信するチャンネル" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { - "name": "カラー", - "description": "埋め込みの色" + "name": "color", + "description": "El color del embed" }, "title": { - "name": "タイトル", - "description": "埋め込みのタイトル" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "説明", - "description": "埋め込みの説明" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { - "name": "禁止", - "description": "ユーザーを禁止する", + "name": "ban", + "description": "Banea a un usuario", "options": { "user": { - "name": "ユーザー", - "description": "禁止するユーザー" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "理由", - "description": "追放の理由" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "ディアス", - "description": "ユーザーメッセージの削除日数" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "演奏", - "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "曲", - "description": "演奏する曲" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "停止", - "description": "選手を止める!" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "スキップ", - "description": "現在の曲をスキップする" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "履歴書", - "description": "現在の曲を再開する!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "キュー", - "description": "現在のキューを表示する" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "ポーズ", - "description": "現在の曲を一時停止する" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "再生中", - "description": "現在の曲を表示する" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "ループ", - "description": "現在のキュー/曲を繰り返す" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "年中無休の音声チャンネル" + "description": "Mantente 24/7 en un canal de voz" } } } \ No newline at end of file From 5737d309c2a51a09708f468f239cbb8e1ff1e885 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:35 +0000 Subject: [PATCH 65/88] New translations es-ES.json (Spanish) --- locales/es-ES.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/locales/es-ES.json b/locales/es-ES.json index af2db33..2fd2c59 100644 --- a/locales/es-ES.json +++ b/locales/es-ES.json @@ -77,6 +77,15 @@ "roleinfo": { "managed": "Gestionado por Discord" }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" + }, "serverinfo": { "verification": { "no": "No hay verificación.", @@ -414,4 +423,4 @@ "description": "Mantente 24/7 en un canal de voz" } } -} +} \ No newline at end of file From 3a720baf6e36265e03a2f7400d3930ac70dbc572 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:36 +0000 Subject: [PATCH 66/88] New translations es-ES.json (Arabic) --- locales/ar-SA.json | 481 +++++++++++++++++++++++---------------------- 1 file changed, 245 insertions(+), 236 deletions(-) diff --git a/locales/ar-SA.json b/locales/ar-SA.json index 9ef9e7a..2fd2c59 100644 --- a/locales/ar-SA.json +++ b/locales/ar-SA.json @@ -1,417 +1,426 @@ { "question_ball": { - "no_question": "答えるべき質問はないのか?", - "question": "ご質問の件", - "response": "私の答えはこうだ。", + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", "possibles": { - "0": "はい", - "1": "いいえ", - "2": "たぶん", - "3": "明らかに", - "4": "はい", - "5": "断る", - "6": "おそらく", - "7": "私は疑問を持っている...。", - "8": "疑ってはいけない", - "9": "聞くまでもないだろう;)", - "10": "全然違うよ...。", - "11": "私は信じない..." + "0": "Sí", + "1": "No", + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "詐欺師だったのか?", - "was_not": "詐欺師ではなかった" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "エンベッドが作成され、正常に送信された。", - "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "埋め込みを作成する", - "title_label": "タイトル", - "title_placeholder": "私の素晴らしい埋め込み", - "description_label": "記述", - "description_placeholder": "これは私の素晴らしい埋め込みだ!", - "color_label": "色" + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", + "color_label": "Color" }, "buttons": { - "send": "送信", - "edit": "編集" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "無効な入力" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "ユーザー名を書いてください。", - "name": "🧑 名前:", - "account": "アカウントの種類", - "organization": "🏢 組織:", - "link": "☁️ リンク", - "location": "🗺 場所:", - "email": "📩 Eメール", - "biography": "バイオグラフィー", - "twitter": "ツイッター🐦:", - "repositories": "📂 公開リポジトリ", - "followers": "🧍 フォロワー", - "analizing": "アカウントを分析中です。", - "unknow": "ユーザーが見つかりません" + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", + "twitter": "🐦 Twitter:", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" }, "help": { - "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", - "how_use": "コマンドはどうやって見るのですか?", - "how_use_answer": "簡単だ。", - "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", - "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", - "how_vote": "ボットに投票するには?", - "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", - "title": "ヘルプメニュー" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "ここには{user}のアバターがある。", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "ユーザー名が存在しない", - "names": "名前の歴史", - "first": "名前" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "グローバル・ピン", - "internal": "内部処理(データベース+処理)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Discordによる管理" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "検証はしていない。", - "low": "ロー(認証済みアカウント)。", - "medium": "ミディアム(+5分の認証済みアカウント)。", - "high": "高い(+10分間、認証済みアカウント)。", - "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "メッセージはスキャンされない。", - "members_without_role": "ロールのないユーザーをスキャンします。", - "all_members": "すべてのメッセージをスキャンする。" + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "絵文字数", - "tier_level": "ティアレベル", - "verification_level": "検証レベル", - "explicit_filter": "明示的コンテンツフィルターレベル" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "メンバーが見つかりません", - "self": "自分自身を禁止することはできない", - "owner": "オーナーを追放することはできない", - "higher": "自分より上位の役割を持つメンバーを追放することはできない", - "ban": "出入り禁止に成功", - "unbannable": "このメンバーを追放することはできない" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", - "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", - "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "私の音声チャンネルには入っていない。", - "skiped": "{song}はスキップされた" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", - "current": "現在プレー中:", - "queue": "{name}のキュー", - "no_page": "ページが存在しません!", - "total": "全曲キュー:" + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", + "queue": "{name}'s queue", + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24時間365日モードが有効 ", - "disabled": "24/7モードは無効" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", - "not_voice": "音声チャンネルに入ってください。", - "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", - "added": "リストに{song}を追加", - "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "すべてのシャードを再起動...", - "shard": "シャード{shard}を再起動中..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "音楽は{user}によって再開された。", - "paused": "音楽は{user}で一時停止。", - "success": "音楽は停止された。" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "スローミュージック", - "resumed": "音楽は再開された", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "分後に{channel}を発つ{time}。", - "alone": "私は一人で、{channel}を後にした。" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "オートミックスが生成された!", - "disabled": "オートミックス無効" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "ストリーマーが見つかりません", - "already_following": "すでにこのストリーマーをフォローしています。", - "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", - "unfollowed": "あなたは{streamer}をフォローしていません。", - "role_mention": "{role}について言及しなければならない。", - "now_live": "今{streamer}はライブです!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "キューをループ", - "song": "現在の曲をループ", - "disabled": "ループ無効" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "ポーズ", - "RESUME": "履歴書", - "STOP": "ストップ", - "SKIP": "スキップ", - "NEXT": "次のページ", - "QUEUE": "テール", - "TITLE": "タイトル", - "MEMBERS": "メンバー", - "REGULAR": "レギュラー", - "ANIMATED": "アニメーション", - "CHANNELS": "チャンネル", - "ROLES": "役割", - "CATEGORIES": "カテゴリー", - "SONGS": "曲目", - "TEXT": "テキスト", - "VOICE": "声", - "BOOSTERS": "ブースター", - "REGION": "地域", - "TIER": "動物", - "CREATED_AT": "で作成された。", - "OWNER": "オーナー", - "AUTHOR": "著者", - "REQUESTER": "要求者", - "DURATION": "期間", - "NO": "いいえ", + "PAUSE": "Pausa", + "RESUME": "Currículum", + "STOP": "Stop", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", + "REGULAR": "Regular", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", + "BOOSTERS": "Boosters", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", + "NO": "No", "API": "API", - "PING": "ピン", - "NAME": "名称", - "ID": "身分証明書", - "POSITION": "ポジション", - "COLOR": "カラー", - "MENTIONABLE": "言及可能", - "SEPARATED": "分離", - "YES": "はい", - "PLAYING": "プレー", - "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", + "PING": "Ping", + "NAME": "Nombre", + "ID": "ID", + "POSITION": "Posición", + "COLOR": "Color", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "再起動", - "description": "1つまたはすべてのシャードをリセットする", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "破片", - "description": "再起動するシャード" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "ボール8", - "description": "魔球に質問する", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "質問", - "description": "質問を書いてください。" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { - "name": "食わせ物", - "description": "あなたは詐欺師? SUS", + "name": "impostor", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "ユーザー", - "description": "このユーザーは偽者なのか? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { - "name": "アバター", - "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", + "name": "avatar", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "ユーザー", - "description": "アバターを表示するユーザー" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "ストリーマーがライブを開始したときの通知を設定します!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "追加", - "description": "ストリーマーを追加する", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" }, "channel": { - "name": "チャンネル", - "description": "通知を受け取るチャンネル" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "役割", - "description": "通知を受け取る役割" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "削除", - "description": "ストリーマーを削除する", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "破片", - "description": "ボットのシャードを表示します。" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "サーバー情報", - "description": "サーバーの情報を表示します。" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "役割情報", - "description": "役割の情報を表示します。", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "役割", - "description": "役割の情報を表示します。" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { - "name": "ピン", - "description": "ボットの待ち時間を表示" + "name": "ping", + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "マインクラフトサーバー", - "description": "Minecraftサーバーから画像を送信する", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "サーバー", - "description": "サーバーのIPまたはドメイン" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "マインクラフトの歴史", - "description": "Minecraftユーザーの名前の歴史を表示します。", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "助けて", - "description": "私に関する情報を表示する" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { - "name": "ギットハブ", - "description": "GitHubユーザーの情報を表示します。", + "name": "github", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { - "name": "埋め込み", - "description": "埋め込みを作成する", + "name": "embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "チャンネル", - "description": "埋め込みを送信するチャンネル" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { - "name": "カラー", - "description": "埋め込みの色" + "name": "color", + "description": "El color del embed" }, "title": { - "name": "タイトル", - "description": "埋め込みのタイトル" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "説明", - "description": "埋め込みの説明" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { - "name": "禁止", - "description": "ユーザーを禁止する", + "name": "ban", + "description": "Banea a un usuario", "options": { "user": { - "name": "ユーザー", - "description": "禁止するユーザー" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "理由", - "description": "追放の理由" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "ディアス", - "description": "ユーザーメッセージの削除日数" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "演奏", - "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "曲", - "description": "演奏する曲" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "停止", - "description": "選手を止める!" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "スキップ", - "description": "現在の曲をスキップする" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "履歴書", - "description": "現在の曲を再開する!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "キュー", - "description": "現在のキューを表示する" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "ポーズ", - "description": "現在の曲を一時停止する" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "再生中", - "description": "現在の曲を表示する" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "ループ", - "description": "現在のキュー/曲を繰り返す" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "年中無休の音声チャンネル" + "description": "Mantente 24/7 en un canal de voz" } } } \ No newline at end of file From 03bba272cbb91544f7c33cac8c8c2ac4a0270b59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:37 +0000 Subject: [PATCH 67/88] New translations es-ES.json (German) --- locales/de-DE.json | 481 +++++++++++++++++++++++---------------------- 1 file changed, 245 insertions(+), 236 deletions(-) diff --git a/locales/de-DE.json b/locales/de-DE.json index 9ef9e7a..2fd2c59 100644 --- a/locales/de-DE.json +++ b/locales/de-DE.json @@ -1,417 +1,426 @@ { "question_ball": { - "no_question": "答えるべき質問はないのか?", - "question": "ご質問の件", - "response": "私の答えはこうだ。", + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", "possibles": { - "0": "はい", - "1": "いいえ", - "2": "たぶん", - "3": "明らかに", - "4": "はい", - "5": "断る", - "6": "おそらく", - "7": "私は疑問を持っている...。", - "8": "疑ってはいけない", - "9": "聞くまでもないだろう;)", - "10": "全然違うよ...。", - "11": "私は信じない..." + "0": "Sí", + "1": "No", + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "詐欺師だったのか?", - "was_not": "詐欺師ではなかった" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "エンベッドが作成され、正常に送信された。", - "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "埋め込みを作成する", - "title_label": "タイトル", - "title_placeholder": "私の素晴らしい埋め込み", - "description_label": "記述", - "description_placeholder": "これは私の素晴らしい埋め込みだ!", - "color_label": "色" + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", + "color_label": "Color" }, "buttons": { - "send": "送信", - "edit": "編集" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "無効な入力" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "ユーザー名を書いてください。", - "name": "🧑 名前:", - "account": "アカウントの種類", - "organization": "🏢 組織:", - "link": "☁️ リンク", - "location": "🗺 場所:", - "email": "📩 Eメール", - "biography": "バイオグラフィー", - "twitter": "ツイッター🐦:", - "repositories": "📂 公開リポジトリ", - "followers": "🧍 フォロワー", - "analizing": "アカウントを分析中です。", - "unknow": "ユーザーが見つかりません" + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", + "twitter": "🐦 Twitter:", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" }, "help": { - "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", - "how_use": "コマンドはどうやって見るのですか?", - "how_use_answer": "簡単だ。", - "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", - "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", - "how_vote": "ボットに投票するには?", - "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", - "title": "ヘルプメニュー" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "ここには{user}のアバターがある。", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "ユーザー名が存在しない", - "names": "名前の歴史", - "first": "名前" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "グローバル・ピン", - "internal": "内部処理(データベース+処理)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Discordによる管理" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "検証はしていない。", - "low": "ロー(認証済みアカウント)。", - "medium": "ミディアム(+5分の認証済みアカウント)。", - "high": "高い(+10分間、認証済みアカウント)。", - "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "メッセージはスキャンされない。", - "members_without_role": "ロールのないユーザーをスキャンします。", - "all_members": "すべてのメッセージをスキャンする。" + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "絵文字数", - "tier_level": "ティアレベル", - "verification_level": "検証レベル", - "explicit_filter": "明示的コンテンツフィルターレベル" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "メンバーが見つかりません", - "self": "自分自身を禁止することはできない", - "owner": "オーナーを追放することはできない", - "higher": "自分より上位の役割を持つメンバーを追放することはできない", - "ban": "出入り禁止に成功", - "unbannable": "このメンバーを追放することはできない" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", - "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", - "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "私の音声チャンネルには入っていない。", - "skiped": "{song}はスキップされた" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", - "current": "現在プレー中:", - "queue": "{name}のキュー", - "no_page": "ページが存在しません!", - "total": "全曲キュー:" + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", + "queue": "{name}'s queue", + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24時間365日モードが有効 ", - "disabled": "24/7モードは無効" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", - "not_voice": "音声チャンネルに入ってください。", - "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", - "added": "リストに{song}を追加", - "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "すべてのシャードを再起動...", - "shard": "シャード{shard}を再起動中..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "音楽は{user}によって再開された。", - "paused": "音楽は{user}で一時停止。", - "success": "音楽は停止された。" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "スローミュージック", - "resumed": "音楽は再開された", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "分後に{channel}を発つ{time}。", - "alone": "私は一人で、{channel}を後にした。" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "オートミックスが生成された!", - "disabled": "オートミックス無効" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "ストリーマーが見つかりません", - "already_following": "すでにこのストリーマーをフォローしています。", - "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", - "unfollowed": "あなたは{streamer}をフォローしていません。", - "role_mention": "{role}について言及しなければならない。", - "now_live": "今{streamer}はライブです!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "キューをループ", - "song": "現在の曲をループ", - "disabled": "ループ無効" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "ポーズ", - "RESUME": "履歴書", - "STOP": "ストップ", - "SKIP": "スキップ", - "NEXT": "次のページ", - "QUEUE": "テール", - "TITLE": "タイトル", - "MEMBERS": "メンバー", - "REGULAR": "レギュラー", - "ANIMATED": "アニメーション", - "CHANNELS": "チャンネル", - "ROLES": "役割", - "CATEGORIES": "カテゴリー", - "SONGS": "曲目", - "TEXT": "テキスト", - "VOICE": "声", - "BOOSTERS": "ブースター", - "REGION": "地域", - "TIER": "動物", - "CREATED_AT": "で作成された。", - "OWNER": "オーナー", - "AUTHOR": "著者", - "REQUESTER": "要求者", - "DURATION": "期間", - "NO": "いいえ", + "PAUSE": "Pausa", + "RESUME": "Currículum", + "STOP": "Stop", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", + "REGULAR": "Regular", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", + "BOOSTERS": "Boosters", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", + "NO": "No", "API": "API", - "PING": "ピン", - "NAME": "名称", - "ID": "身分証明書", - "POSITION": "ポジション", - "COLOR": "カラー", - "MENTIONABLE": "言及可能", - "SEPARATED": "分離", - "YES": "はい", - "PLAYING": "プレー", - "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", + "PING": "Ping", + "NAME": "Nombre", + "ID": "ID", + "POSITION": "Posición", + "COLOR": "Color", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "再起動", - "description": "1つまたはすべてのシャードをリセットする", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "破片", - "description": "再起動するシャード" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "ボール8", - "description": "魔球に質問する", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "質問", - "description": "質問を書いてください。" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { - "name": "食わせ物", - "description": "あなたは詐欺師? SUS", + "name": "impostor", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "ユーザー", - "description": "このユーザーは偽者なのか? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { - "name": "アバター", - "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", + "name": "avatar", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "ユーザー", - "description": "アバターを表示するユーザー" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "ストリーマーがライブを開始したときの通知を設定します!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "追加", - "description": "ストリーマーを追加する", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" }, "channel": { - "name": "チャンネル", - "description": "通知を受け取るチャンネル" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "役割", - "description": "通知を受け取る役割" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "削除", - "description": "ストリーマーを削除する", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "破片", - "description": "ボットのシャードを表示します。" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "サーバー情報", - "description": "サーバーの情報を表示します。" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "役割情報", - "description": "役割の情報を表示します。", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "役割", - "description": "役割の情報を表示します。" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { - "name": "ピン", - "description": "ボットの待ち時間を表示" + "name": "ping", + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "マインクラフトサーバー", - "description": "Minecraftサーバーから画像を送信する", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "サーバー", - "description": "サーバーのIPまたはドメイン" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "マインクラフトの歴史", - "description": "Minecraftユーザーの名前の歴史を表示します。", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "助けて", - "description": "私に関する情報を表示する" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { - "name": "ギットハブ", - "description": "GitHubユーザーの情報を表示します。", + "name": "github", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { - "name": "埋め込み", - "description": "埋め込みを作成する", + "name": "embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "チャンネル", - "description": "埋め込みを送信するチャンネル" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { - "name": "カラー", - "description": "埋め込みの色" + "name": "color", + "description": "El color del embed" }, "title": { - "name": "タイトル", - "description": "埋め込みのタイトル" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "説明", - "description": "埋め込みの説明" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { - "name": "禁止", - "description": "ユーザーを禁止する", + "name": "ban", + "description": "Banea a un usuario", "options": { "user": { - "name": "ユーザー", - "description": "禁止するユーザー" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "理由", - "description": "追放の理由" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "ディアス", - "description": "ユーザーメッセージの削除日数" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "演奏", - "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "曲", - "description": "演奏する曲" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "停止", - "description": "選手を止める!" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "スキップ", - "description": "現在の曲をスキップする" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "履歴書", - "description": "現在の曲を再開する!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "キュー", - "description": "現在のキューを表示する" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "ポーズ", - "description": "現在の曲を一時停止する" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "再生中", - "description": "現在の曲を表示する" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "ループ", - "description": "現在のキュー/曲を繰り返す" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "年中無休の音声チャンネル" + "description": "Mantente 24/7 en un canal de voz" } } } \ No newline at end of file From 7ffad683fef5e22181f67e452361bdf0addba42e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:38 +0000 Subject: [PATCH 68/88] New translations es-ES.json (Irish) --- locales/ga-IE.json | 481 +++++++++++++++++++++++---------------------- 1 file changed, 245 insertions(+), 236 deletions(-) diff --git a/locales/ga-IE.json b/locales/ga-IE.json index 9ef9e7a..2fd2c59 100644 --- a/locales/ga-IE.json +++ b/locales/ga-IE.json @@ -1,417 +1,426 @@ { "question_ball": { - "no_question": "答えるべき質問はないのか?", - "question": "ご質問の件", - "response": "私の答えはこうだ。", + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", "possibles": { - "0": "はい", - "1": "いいえ", - "2": "たぶん", - "3": "明らかに", - "4": "はい", - "5": "断る", - "6": "おそらく", - "7": "私は疑問を持っている...。", - "8": "疑ってはいけない", - "9": "聞くまでもないだろう;)", - "10": "全然違うよ...。", - "11": "私は信じない..." + "0": "Sí", + "1": "No", + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "詐欺師だったのか?", - "was_not": "詐欺師ではなかった" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "エンベッドが作成され、正常に送信された。", - "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "埋め込みを作成する", - "title_label": "タイトル", - "title_placeholder": "私の素晴らしい埋め込み", - "description_label": "記述", - "description_placeholder": "これは私の素晴らしい埋め込みだ!", - "color_label": "色" + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", + "color_label": "Color" }, "buttons": { - "send": "送信", - "edit": "編集" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "無効な入力" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "ユーザー名を書いてください。", - "name": "🧑 名前:", - "account": "アカウントの種類", - "organization": "🏢 組織:", - "link": "☁️ リンク", - "location": "🗺 場所:", - "email": "📩 Eメール", - "biography": "バイオグラフィー", - "twitter": "ツイッター🐦:", - "repositories": "📂 公開リポジトリ", - "followers": "🧍 フォロワー", - "analizing": "アカウントを分析中です。", - "unknow": "ユーザーが見つかりません" + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", + "twitter": "🐦 Twitter:", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" }, "help": { - "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", - "how_use": "コマンドはどうやって見るのですか?", - "how_use_answer": "簡単だ。", - "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", - "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", - "how_vote": "ボットに投票するには?", - "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", - "title": "ヘルプメニュー" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "ここには{user}のアバターがある。", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "ユーザー名が存在しない", - "names": "名前の歴史", - "first": "名前" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "グローバル・ピン", - "internal": "内部処理(データベース+処理)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Discordによる管理" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "検証はしていない。", - "low": "ロー(認証済みアカウント)。", - "medium": "ミディアム(+5分の認証済みアカウント)。", - "high": "高い(+10分間、認証済みアカウント)。", - "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "メッセージはスキャンされない。", - "members_without_role": "ロールのないユーザーをスキャンします。", - "all_members": "すべてのメッセージをスキャンする。" + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "絵文字数", - "tier_level": "ティアレベル", - "verification_level": "検証レベル", - "explicit_filter": "明示的コンテンツフィルターレベル" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "メンバーが見つかりません", - "self": "自分自身を禁止することはできない", - "owner": "オーナーを追放することはできない", - "higher": "自分より上位の役割を持つメンバーを追放することはできない", - "ban": "出入り禁止に成功", - "unbannable": "このメンバーを追放することはできない" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", - "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", - "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "私の音声チャンネルには入っていない。", - "skiped": "{song}はスキップされた" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", - "current": "現在プレー中:", - "queue": "{name}のキュー", - "no_page": "ページが存在しません!", - "total": "全曲キュー:" + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", + "queue": "{name}'s queue", + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24時間365日モードが有効 ", - "disabled": "24/7モードは無効" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", - "not_voice": "音声チャンネルに入ってください。", - "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", - "added": "リストに{song}を追加", - "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "すべてのシャードを再起動...", - "shard": "シャード{shard}を再起動中..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "音楽は{user}によって再開された。", - "paused": "音楽は{user}で一時停止。", - "success": "音楽は停止された。" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "スローミュージック", - "resumed": "音楽は再開された", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "分後に{channel}を発つ{time}。", - "alone": "私は一人で、{channel}を後にした。" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "オートミックスが生成された!", - "disabled": "オートミックス無効" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "ストリーマーが見つかりません", - "already_following": "すでにこのストリーマーをフォローしています。", - "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", - "unfollowed": "あなたは{streamer}をフォローしていません。", - "role_mention": "{role}について言及しなければならない。", - "now_live": "今{streamer}はライブです!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "キューをループ", - "song": "現在の曲をループ", - "disabled": "ループ無効" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "ポーズ", - "RESUME": "履歴書", - "STOP": "ストップ", - "SKIP": "スキップ", - "NEXT": "次のページ", - "QUEUE": "テール", - "TITLE": "タイトル", - "MEMBERS": "メンバー", - "REGULAR": "レギュラー", - "ANIMATED": "アニメーション", - "CHANNELS": "チャンネル", - "ROLES": "役割", - "CATEGORIES": "カテゴリー", - "SONGS": "曲目", - "TEXT": "テキスト", - "VOICE": "声", - "BOOSTERS": "ブースター", - "REGION": "地域", - "TIER": "動物", - "CREATED_AT": "で作成された。", - "OWNER": "オーナー", - "AUTHOR": "著者", - "REQUESTER": "要求者", - "DURATION": "期間", - "NO": "いいえ", + "PAUSE": "Pausa", + "RESUME": "Currículum", + "STOP": "Stop", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", + "REGULAR": "Regular", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", + "BOOSTERS": "Boosters", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", + "NO": "No", "API": "API", - "PING": "ピン", - "NAME": "名称", - "ID": "身分証明書", - "POSITION": "ポジション", - "COLOR": "カラー", - "MENTIONABLE": "言及可能", - "SEPARATED": "分離", - "YES": "はい", - "PLAYING": "プレー", - "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", + "PING": "Ping", + "NAME": "Nombre", + "ID": "ID", + "POSITION": "Posición", + "COLOR": "Color", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "再起動", - "description": "1つまたはすべてのシャードをリセットする", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "破片", - "description": "再起動するシャード" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "ボール8", - "description": "魔球に質問する", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "質問", - "description": "質問を書いてください。" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { - "name": "食わせ物", - "description": "あなたは詐欺師? SUS", + "name": "impostor", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "ユーザー", - "description": "このユーザーは偽者なのか? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { - "name": "アバター", - "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", + "name": "avatar", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "ユーザー", - "description": "アバターを表示するユーザー" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "ストリーマーがライブを開始したときの通知を設定します!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "追加", - "description": "ストリーマーを追加する", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" }, "channel": { - "name": "チャンネル", - "description": "通知を受け取るチャンネル" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "役割", - "description": "通知を受け取る役割" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "削除", - "description": "ストリーマーを削除する", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "破片", - "description": "ボットのシャードを表示します。" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "サーバー情報", - "description": "サーバーの情報を表示します。" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "役割情報", - "description": "役割の情報を表示します。", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "役割", - "description": "役割の情報を表示します。" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { - "name": "ピン", - "description": "ボットの待ち時間を表示" + "name": "ping", + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "マインクラフトサーバー", - "description": "Minecraftサーバーから画像を送信する", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "サーバー", - "description": "サーバーのIPまたはドメイン" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "マインクラフトの歴史", - "description": "Minecraftユーザーの名前の歴史を表示します。", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "助けて", - "description": "私に関する情報を表示する" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { - "name": "ギットハブ", - "description": "GitHubユーザーの情報を表示します。", + "name": "github", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { - "name": "埋め込み", - "description": "埋め込みを作成する", + "name": "embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "チャンネル", - "description": "埋め込みを送信するチャンネル" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { - "name": "カラー", - "description": "埋め込みの色" + "name": "color", + "description": "El color del embed" }, "title": { - "name": "タイトル", - "description": "埋め込みのタイトル" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "説明", - "description": "埋め込みの説明" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { - "name": "禁止", - "description": "ユーザーを禁止する", + "name": "ban", + "description": "Banea a un usuario", "options": { "user": { - "name": "ユーザー", - "description": "禁止するユーザー" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "理由", - "description": "追放の理由" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "ディアス", - "description": "ユーザーメッセージの削除日数" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "演奏", - "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "曲", - "description": "演奏する曲" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "停止", - "description": "選手を止める!" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "スキップ", - "description": "現在の曲をスキップする" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "履歴書", - "description": "現在の曲を再開する!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "キュー", - "description": "現在のキューを表示する" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "ポーズ", - "description": "現在の曲を一時停止する" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "再生中", - "description": "現在の曲を表示する" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "ループ", - "description": "現在のキュー/曲を繰り返す" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "年中無休の音声チャンネル" + "description": "Mantente 24/7 en un canal de voz" } } } \ No newline at end of file From 138107b415c43d5aacf00097f56a14ca48e619c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:38 +0000 Subject: [PATCH 69/88] New translations es-ES.json (Italian) --- locales/it-IT.json | 481 +++++++++++++++++++++++---------------------- 1 file changed, 245 insertions(+), 236 deletions(-) diff --git a/locales/it-IT.json b/locales/it-IT.json index 9ef9e7a..2fd2c59 100644 --- a/locales/it-IT.json +++ b/locales/it-IT.json @@ -1,417 +1,426 @@ { "question_ball": { - "no_question": "答えるべき質問はないのか?", - "question": "ご質問の件", - "response": "私の答えはこうだ。", + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", "possibles": { - "0": "はい", - "1": "いいえ", - "2": "たぶん", - "3": "明らかに", - "4": "はい", - "5": "断る", - "6": "おそらく", - "7": "私は疑問を持っている...。", - "8": "疑ってはいけない", - "9": "聞くまでもないだろう;)", - "10": "全然違うよ...。", - "11": "私は信じない..." + "0": "Sí", + "1": "No", + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "詐欺師だったのか?", - "was_not": "詐欺師ではなかった" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "エンベッドが作成され、正常に送信された。", - "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "埋め込みを作成する", - "title_label": "タイトル", - "title_placeholder": "私の素晴らしい埋め込み", - "description_label": "記述", - "description_placeholder": "これは私の素晴らしい埋め込みだ!", - "color_label": "色" + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", + "color_label": "Color" }, "buttons": { - "send": "送信", - "edit": "編集" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "無効な入力" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "ユーザー名を書いてください。", - "name": "🧑 名前:", - "account": "アカウントの種類", - "organization": "🏢 組織:", - "link": "☁️ リンク", - "location": "🗺 場所:", - "email": "📩 Eメール", - "biography": "バイオグラフィー", - "twitter": "ツイッター🐦:", - "repositories": "📂 公開リポジトリ", - "followers": "🧍 フォロワー", - "analizing": "アカウントを分析中です。", - "unknow": "ユーザーが見つかりません" + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", + "twitter": "🐦 Twitter:", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" }, "help": { - "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", - "how_use": "コマンドはどうやって見るのですか?", - "how_use_answer": "簡単だ。", - "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", - "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", - "how_vote": "ボットに投票するには?", - "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", - "title": "ヘルプメニュー" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "ここには{user}のアバターがある。", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "ユーザー名が存在しない", - "names": "名前の歴史", - "first": "名前" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "グローバル・ピン", - "internal": "内部処理(データベース+処理)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Discordによる管理" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "検証はしていない。", - "low": "ロー(認証済みアカウント)。", - "medium": "ミディアム(+5分の認証済みアカウント)。", - "high": "高い(+10分間、認証済みアカウント)。", - "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "メッセージはスキャンされない。", - "members_without_role": "ロールのないユーザーをスキャンします。", - "all_members": "すべてのメッセージをスキャンする。" + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "絵文字数", - "tier_level": "ティアレベル", - "verification_level": "検証レベル", - "explicit_filter": "明示的コンテンツフィルターレベル" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "メンバーが見つかりません", - "self": "自分自身を禁止することはできない", - "owner": "オーナーを追放することはできない", - "higher": "自分より上位の役割を持つメンバーを追放することはできない", - "ban": "出入り禁止に成功", - "unbannable": "このメンバーを追放することはできない" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", - "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", - "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "私の音声チャンネルには入っていない。", - "skiped": "{song}はスキップされた" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", - "current": "現在プレー中:", - "queue": "{name}のキュー", - "no_page": "ページが存在しません!", - "total": "全曲キュー:" + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", + "queue": "{name}'s queue", + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24時間365日モードが有効 ", - "disabled": "24/7モードは無効" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", - "not_voice": "音声チャンネルに入ってください。", - "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", - "added": "リストに{song}を追加", - "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "すべてのシャードを再起動...", - "shard": "シャード{shard}を再起動中..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "音楽は{user}によって再開された。", - "paused": "音楽は{user}で一時停止。", - "success": "音楽は停止された。" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "スローミュージック", - "resumed": "音楽は再開された", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "分後に{channel}を発つ{time}。", - "alone": "私は一人で、{channel}を後にした。" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "オートミックスが生成された!", - "disabled": "オートミックス無効" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "ストリーマーが見つかりません", - "already_following": "すでにこのストリーマーをフォローしています。", - "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", - "unfollowed": "あなたは{streamer}をフォローしていません。", - "role_mention": "{role}について言及しなければならない。", - "now_live": "今{streamer}はライブです!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "キューをループ", - "song": "現在の曲をループ", - "disabled": "ループ無効" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "ポーズ", - "RESUME": "履歴書", - "STOP": "ストップ", - "SKIP": "スキップ", - "NEXT": "次のページ", - "QUEUE": "テール", - "TITLE": "タイトル", - "MEMBERS": "メンバー", - "REGULAR": "レギュラー", - "ANIMATED": "アニメーション", - "CHANNELS": "チャンネル", - "ROLES": "役割", - "CATEGORIES": "カテゴリー", - "SONGS": "曲目", - "TEXT": "テキスト", - "VOICE": "声", - "BOOSTERS": "ブースター", - "REGION": "地域", - "TIER": "動物", - "CREATED_AT": "で作成された。", - "OWNER": "オーナー", - "AUTHOR": "著者", - "REQUESTER": "要求者", - "DURATION": "期間", - "NO": "いいえ", + "PAUSE": "Pausa", + "RESUME": "Currículum", + "STOP": "Stop", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", + "REGULAR": "Regular", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", + "BOOSTERS": "Boosters", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", + "NO": "No", "API": "API", - "PING": "ピン", - "NAME": "名称", - "ID": "身分証明書", - "POSITION": "ポジション", - "COLOR": "カラー", - "MENTIONABLE": "言及可能", - "SEPARATED": "分離", - "YES": "はい", - "PLAYING": "プレー", - "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", + "PING": "Ping", + "NAME": "Nombre", + "ID": "ID", + "POSITION": "Posición", + "COLOR": "Color", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "再起動", - "description": "1つまたはすべてのシャードをリセットする", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "破片", - "description": "再起動するシャード" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "ボール8", - "description": "魔球に質問する", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "質問", - "description": "質問を書いてください。" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { - "name": "食わせ物", - "description": "あなたは詐欺師? SUS", + "name": "impostor", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "ユーザー", - "description": "このユーザーは偽者なのか? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { - "name": "アバター", - "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", + "name": "avatar", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "ユーザー", - "description": "アバターを表示するユーザー" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "ストリーマーがライブを開始したときの通知を設定します!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "追加", - "description": "ストリーマーを追加する", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" }, "channel": { - "name": "チャンネル", - "description": "通知を受け取るチャンネル" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "役割", - "description": "通知を受け取る役割" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "削除", - "description": "ストリーマーを削除する", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "破片", - "description": "ボットのシャードを表示します。" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "サーバー情報", - "description": "サーバーの情報を表示します。" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "役割情報", - "description": "役割の情報を表示します。", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "役割", - "description": "役割の情報を表示します。" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { - "name": "ピン", - "description": "ボットの待ち時間を表示" + "name": "ping", + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "マインクラフトサーバー", - "description": "Minecraftサーバーから画像を送信する", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "サーバー", - "description": "サーバーのIPまたはドメイン" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "マインクラフトの歴史", - "description": "Minecraftユーザーの名前の歴史を表示します。", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "助けて", - "description": "私に関する情報を表示する" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { - "name": "ギットハブ", - "description": "GitHubユーザーの情報を表示します。", + "name": "github", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { - "name": "埋め込み", - "description": "埋め込みを作成する", + "name": "embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "チャンネル", - "description": "埋め込みを送信するチャンネル" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { - "name": "カラー", - "description": "埋め込みの色" + "name": "color", + "description": "El color del embed" }, "title": { - "name": "タイトル", - "description": "埋め込みのタイトル" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "説明", - "description": "埋め込みの説明" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { - "name": "禁止", - "description": "ユーザーを禁止する", + "name": "ban", + "description": "Banea a un usuario", "options": { "user": { - "name": "ユーザー", - "description": "禁止するユーザー" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "理由", - "description": "追放の理由" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "ディアス", - "description": "ユーザーメッセージの削除日数" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "演奏", - "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "曲", - "description": "演奏する曲" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "停止", - "description": "選手を止める!" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "スキップ", - "description": "現在の曲をスキップする" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "履歴書", - "description": "現在の曲を再開する!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "キュー", - "description": "現在のキューを表示する" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "ポーズ", - "description": "現在の曲を一時停止する" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "再生中", - "description": "現在の曲を表示する" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "ループ", - "description": "現在のキュー/曲を繰り返す" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "年中無休の音声チャンネル" + "description": "Mantente 24/7 en un canal de voz" } } } \ No newline at end of file From 1596ca8f4ee36a13ee97cedd9a500d81cd7c07ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:39 +0000 Subject: [PATCH 70/88] New translations es-ES.json (Dutch) --- locales/nl-NL.json | 481 +++++++++++++++++++++++---------------------- 1 file changed, 245 insertions(+), 236 deletions(-) diff --git a/locales/nl-NL.json b/locales/nl-NL.json index 9ef9e7a..2fd2c59 100644 --- a/locales/nl-NL.json +++ b/locales/nl-NL.json @@ -1,417 +1,426 @@ { "question_ball": { - "no_question": "答えるべき質問はないのか?", - "question": "ご質問の件", - "response": "私の答えはこうだ。", + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", "possibles": { - "0": "はい", - "1": "いいえ", - "2": "たぶん", - "3": "明らかに", - "4": "はい", - "5": "断る", - "6": "おそらく", - "7": "私は疑問を持っている...。", - "8": "疑ってはいけない", - "9": "聞くまでもないだろう;)", - "10": "全然違うよ...。", - "11": "私は信じない..." + "0": "Sí", + "1": "No", + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "詐欺師だったのか?", - "was_not": "詐欺師ではなかった" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "エンベッドが作成され、正常に送信された。", - "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "埋め込みを作成する", - "title_label": "タイトル", - "title_placeholder": "私の素晴らしい埋め込み", - "description_label": "記述", - "description_placeholder": "これは私の素晴らしい埋め込みだ!", - "color_label": "色" + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", + "color_label": "Color" }, "buttons": { - "send": "送信", - "edit": "編集" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "無効な入力" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "ユーザー名を書いてください。", - "name": "🧑 名前:", - "account": "アカウントの種類", - "organization": "🏢 組織:", - "link": "☁️ リンク", - "location": "🗺 場所:", - "email": "📩 Eメール", - "biography": "バイオグラフィー", - "twitter": "ツイッター🐦:", - "repositories": "📂 公開リポジトリ", - "followers": "🧍 フォロワー", - "analizing": "アカウントを分析中です。", - "unknow": "ユーザーが見つかりません" + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", + "twitter": "🐦 Twitter:", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" }, "help": { - "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", - "how_use": "コマンドはどうやって見るのですか?", - "how_use_answer": "簡単だ。", - "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", - "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", - "how_vote": "ボットに投票するには?", - "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", - "title": "ヘルプメニュー" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "ここには{user}のアバターがある。", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "ユーザー名が存在しない", - "names": "名前の歴史", - "first": "名前" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "グローバル・ピン", - "internal": "内部処理(データベース+処理)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Discordによる管理" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "検証はしていない。", - "low": "ロー(認証済みアカウント)。", - "medium": "ミディアム(+5分の認証済みアカウント)。", - "high": "高い(+10分間、認証済みアカウント)。", - "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "メッセージはスキャンされない。", - "members_without_role": "ロールのないユーザーをスキャンします。", - "all_members": "すべてのメッセージをスキャンする。" + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "絵文字数", - "tier_level": "ティアレベル", - "verification_level": "検証レベル", - "explicit_filter": "明示的コンテンツフィルターレベル" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "メンバーが見つかりません", - "self": "自分自身を禁止することはできない", - "owner": "オーナーを追放することはできない", - "higher": "自分より上位の役割を持つメンバーを追放することはできない", - "ban": "出入り禁止に成功", - "unbannable": "このメンバーを追放することはできない" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", - "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", - "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "私の音声チャンネルには入っていない。", - "skiped": "{song}はスキップされた" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", - "current": "現在プレー中:", - "queue": "{name}のキュー", - "no_page": "ページが存在しません!", - "total": "全曲キュー:" + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", + "queue": "{name}'s queue", + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24時間365日モードが有効 ", - "disabled": "24/7モードは無効" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", - "not_voice": "音声チャンネルに入ってください。", - "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", - "added": "リストに{song}を追加", - "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "すべてのシャードを再起動...", - "shard": "シャード{shard}を再起動中..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "音楽は{user}によって再開された。", - "paused": "音楽は{user}で一時停止。", - "success": "音楽は停止された。" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "スローミュージック", - "resumed": "音楽は再開された", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "分後に{channel}を発つ{time}。", - "alone": "私は一人で、{channel}を後にした。" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "オートミックスが生成された!", - "disabled": "オートミックス無効" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "ストリーマーが見つかりません", - "already_following": "すでにこのストリーマーをフォローしています。", - "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", - "unfollowed": "あなたは{streamer}をフォローしていません。", - "role_mention": "{role}について言及しなければならない。", - "now_live": "今{streamer}はライブです!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "キューをループ", - "song": "現在の曲をループ", - "disabled": "ループ無効" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "ポーズ", - "RESUME": "履歴書", - "STOP": "ストップ", - "SKIP": "スキップ", - "NEXT": "次のページ", - "QUEUE": "テール", - "TITLE": "タイトル", - "MEMBERS": "メンバー", - "REGULAR": "レギュラー", - "ANIMATED": "アニメーション", - "CHANNELS": "チャンネル", - "ROLES": "役割", - "CATEGORIES": "カテゴリー", - "SONGS": "曲目", - "TEXT": "テキスト", - "VOICE": "声", - "BOOSTERS": "ブースター", - "REGION": "地域", - "TIER": "動物", - "CREATED_AT": "で作成された。", - "OWNER": "オーナー", - "AUTHOR": "著者", - "REQUESTER": "要求者", - "DURATION": "期間", - "NO": "いいえ", + "PAUSE": "Pausa", + "RESUME": "Currículum", + "STOP": "Stop", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", + "REGULAR": "Regular", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", + "BOOSTERS": "Boosters", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", + "NO": "No", "API": "API", - "PING": "ピン", - "NAME": "名称", - "ID": "身分証明書", - "POSITION": "ポジション", - "COLOR": "カラー", - "MENTIONABLE": "言及可能", - "SEPARATED": "分離", - "YES": "はい", - "PLAYING": "プレー", - "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", + "PING": "Ping", + "NAME": "Nombre", + "ID": "ID", + "POSITION": "Posición", + "COLOR": "Color", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "再起動", - "description": "1つまたはすべてのシャードをリセットする", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "破片", - "description": "再起動するシャード" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "ボール8", - "description": "魔球に質問する", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "質問", - "description": "質問を書いてください。" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { - "name": "食わせ物", - "description": "あなたは詐欺師? SUS", + "name": "impostor", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "ユーザー", - "description": "このユーザーは偽者なのか? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { - "name": "アバター", - "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", + "name": "avatar", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "ユーザー", - "description": "アバターを表示するユーザー" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "ストリーマーがライブを開始したときの通知を設定します!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "追加", - "description": "ストリーマーを追加する", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" }, "channel": { - "name": "チャンネル", - "description": "通知を受け取るチャンネル" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "役割", - "description": "通知を受け取る役割" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "削除", - "description": "ストリーマーを削除する", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "破片", - "description": "ボットのシャードを表示します。" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "サーバー情報", - "description": "サーバーの情報を表示します。" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "役割情報", - "description": "役割の情報を表示します。", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "役割", - "description": "役割の情報を表示します。" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { - "name": "ピン", - "description": "ボットの待ち時間を表示" + "name": "ping", + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "マインクラフトサーバー", - "description": "Minecraftサーバーから画像を送信する", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "サーバー", - "description": "サーバーのIPまたはドメイン" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "マインクラフトの歴史", - "description": "Minecraftユーザーの名前の歴史を表示します。", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "助けて", - "description": "私に関する情報を表示する" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { - "name": "ギットハブ", - "description": "GitHubユーザーの情報を表示します。", + "name": "github", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { - "name": "埋め込み", - "description": "埋め込みを作成する", + "name": "embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "チャンネル", - "description": "埋め込みを送信するチャンネル" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { - "name": "カラー", - "description": "埋め込みの色" + "name": "color", + "description": "El color del embed" }, "title": { - "name": "タイトル", - "description": "埋め込みのタイトル" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "説明", - "description": "埋め込みの説明" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { - "name": "禁止", - "description": "ユーザーを禁止する", + "name": "ban", + "description": "Banea a un usuario", "options": { "user": { - "name": "ユーザー", - "description": "禁止するユーザー" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "理由", - "description": "追放の理由" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "ディアス", - "description": "ユーザーメッセージの削除日数" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "演奏", - "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "曲", - "description": "演奏する曲" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "停止", - "description": "選手を止める!" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "スキップ", - "description": "現在の曲をスキップする" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "履歴書", - "description": "現在の曲を再開する!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "キュー", - "description": "現在のキューを表示する" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "ポーズ", - "description": "現在の曲を一時停止する" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "再生中", - "description": "現在の曲を表示する" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "ループ", - "description": "現在のキュー/曲を繰り返す" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "年中無休の音声チャンネル" + "description": "Mantente 24/7 en un canal de voz" } } } \ No newline at end of file From 6d4e21b817b02e78834895d49d43f8ba309ef3c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:40 +0000 Subject: [PATCH 71/88] New translations es-ES.json (Russian) --- locales/ru-RU.json | 481 +++++++++++++++++++++++---------------------- 1 file changed, 245 insertions(+), 236 deletions(-) diff --git a/locales/ru-RU.json b/locales/ru-RU.json index 9ef9e7a..2fd2c59 100644 --- a/locales/ru-RU.json +++ b/locales/ru-RU.json @@ -1,417 +1,426 @@ { "question_ball": { - "no_question": "答えるべき質問はないのか?", - "question": "ご質問の件", - "response": "私の答えはこうだ。", + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", "possibles": { - "0": "はい", - "1": "いいえ", - "2": "たぶん", - "3": "明らかに", - "4": "はい", - "5": "断る", - "6": "おそらく", - "7": "私は疑問を持っている...。", - "8": "疑ってはいけない", - "9": "聞くまでもないだろう;)", - "10": "全然違うよ...。", - "11": "私は信じない..." + "0": "Sí", + "1": "No", + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "詐欺師だったのか?", - "was_not": "詐欺師ではなかった" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "エンベッドが作成され、正常に送信された。", - "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "埋め込みを作成する", - "title_label": "タイトル", - "title_placeholder": "私の素晴らしい埋め込み", - "description_label": "記述", - "description_placeholder": "これは私の素晴らしい埋め込みだ!", - "color_label": "色" + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", + "color_label": "Color" }, "buttons": { - "send": "送信", - "edit": "編集" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "無効な入力" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "ユーザー名を書いてください。", - "name": "🧑 名前:", - "account": "アカウントの種類", - "organization": "🏢 組織:", - "link": "☁️ リンク", - "location": "🗺 場所:", - "email": "📩 Eメール", - "biography": "バイオグラフィー", - "twitter": "ツイッター🐦:", - "repositories": "📂 公開リポジトリ", - "followers": "🧍 フォロワー", - "analizing": "アカウントを分析中です。", - "unknow": "ユーザーが見つかりません" + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", + "twitter": "🐦 Twitter:", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" }, "help": { - "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", - "how_use": "コマンドはどうやって見るのですか?", - "how_use_answer": "簡単だ。", - "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", - "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", - "how_vote": "ボットに投票するには?", - "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", - "title": "ヘルプメニュー" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "ここには{user}のアバターがある。", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "ユーザー名が存在しない", - "names": "名前の歴史", - "first": "名前" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "グローバル・ピン", - "internal": "内部処理(データベース+処理)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Discordによる管理" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "検証はしていない。", - "low": "ロー(認証済みアカウント)。", - "medium": "ミディアム(+5分の認証済みアカウント)。", - "high": "高い(+10分間、認証済みアカウント)。", - "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "メッセージはスキャンされない。", - "members_without_role": "ロールのないユーザーをスキャンします。", - "all_members": "すべてのメッセージをスキャンする。" + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "絵文字数", - "tier_level": "ティアレベル", - "verification_level": "検証レベル", - "explicit_filter": "明示的コンテンツフィルターレベル" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "メンバーが見つかりません", - "self": "自分自身を禁止することはできない", - "owner": "オーナーを追放することはできない", - "higher": "自分より上位の役割を持つメンバーを追放することはできない", - "ban": "出入り禁止に成功", - "unbannable": "このメンバーを追放することはできない" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", - "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", - "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "私の音声チャンネルには入っていない。", - "skiped": "{song}はスキップされた" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", - "current": "現在プレー中:", - "queue": "{name}のキュー", - "no_page": "ページが存在しません!", - "total": "全曲キュー:" + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", + "queue": "{name}'s queue", + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24時間365日モードが有効 ", - "disabled": "24/7モードは無効" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", - "not_voice": "音声チャンネルに入ってください。", - "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", - "added": "リストに{song}を追加", - "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "すべてのシャードを再起動...", - "shard": "シャード{shard}を再起動中..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "音楽は{user}によって再開された。", - "paused": "音楽は{user}で一時停止。", - "success": "音楽は停止された。" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "スローミュージック", - "resumed": "音楽は再開された", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "分後に{channel}を発つ{time}。", - "alone": "私は一人で、{channel}を後にした。" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "オートミックスが生成された!", - "disabled": "オートミックス無効" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "ストリーマーが見つかりません", - "already_following": "すでにこのストリーマーをフォローしています。", - "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", - "unfollowed": "あなたは{streamer}をフォローしていません。", - "role_mention": "{role}について言及しなければならない。", - "now_live": "今{streamer}はライブです!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "キューをループ", - "song": "現在の曲をループ", - "disabled": "ループ無効" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "ポーズ", - "RESUME": "履歴書", - "STOP": "ストップ", - "SKIP": "スキップ", - "NEXT": "次のページ", - "QUEUE": "テール", - "TITLE": "タイトル", - "MEMBERS": "メンバー", - "REGULAR": "レギュラー", - "ANIMATED": "アニメーション", - "CHANNELS": "チャンネル", - "ROLES": "役割", - "CATEGORIES": "カテゴリー", - "SONGS": "曲目", - "TEXT": "テキスト", - "VOICE": "声", - "BOOSTERS": "ブースター", - "REGION": "地域", - "TIER": "動物", - "CREATED_AT": "で作成された。", - "OWNER": "オーナー", - "AUTHOR": "著者", - "REQUESTER": "要求者", - "DURATION": "期間", - "NO": "いいえ", + "PAUSE": "Pausa", + "RESUME": "Currículum", + "STOP": "Stop", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", + "REGULAR": "Regular", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", + "BOOSTERS": "Boosters", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", + "NO": "No", "API": "API", - "PING": "ピン", - "NAME": "名称", - "ID": "身分証明書", - "POSITION": "ポジション", - "COLOR": "カラー", - "MENTIONABLE": "言及可能", - "SEPARATED": "分離", - "YES": "はい", - "PLAYING": "プレー", - "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", + "PING": "Ping", + "NAME": "Nombre", + "ID": "ID", + "POSITION": "Posición", + "COLOR": "Color", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "再起動", - "description": "1つまたはすべてのシャードをリセットする", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "破片", - "description": "再起動するシャード" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "ボール8", - "description": "魔球に質問する", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "質問", - "description": "質問を書いてください。" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { - "name": "食わせ物", - "description": "あなたは詐欺師? SUS", + "name": "impostor", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "ユーザー", - "description": "このユーザーは偽者なのか? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { - "name": "アバター", - "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", + "name": "avatar", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "ユーザー", - "description": "アバターを表示するユーザー" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "ストリーマーがライブを開始したときの通知を設定します!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "追加", - "description": "ストリーマーを追加する", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" }, "channel": { - "name": "チャンネル", - "description": "通知を受け取るチャンネル" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "役割", - "description": "通知を受け取る役割" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "削除", - "description": "ストリーマーを削除する", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "破片", - "description": "ボットのシャードを表示します。" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "サーバー情報", - "description": "サーバーの情報を表示します。" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "役割情報", - "description": "役割の情報を表示します。", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "役割", - "description": "役割の情報を表示します。" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { - "name": "ピン", - "description": "ボットの待ち時間を表示" + "name": "ping", + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "マインクラフトサーバー", - "description": "Minecraftサーバーから画像を送信する", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "サーバー", - "description": "サーバーのIPまたはドメイン" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "マインクラフトの歴史", - "description": "Minecraftユーザーの名前の歴史を表示します。", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "助けて", - "description": "私に関する情報を表示する" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { - "name": "ギットハブ", - "description": "GitHubユーザーの情報を表示します。", + "name": "github", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { - "name": "埋め込み", - "description": "埋め込みを作成する", + "name": "embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "チャンネル", - "description": "埋め込みを送信するチャンネル" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { - "name": "カラー", - "description": "埋め込みの色" + "name": "color", + "description": "El color del embed" }, "title": { - "name": "タイトル", - "description": "埋め込みのタイトル" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "説明", - "description": "埋め込みの説明" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { - "name": "禁止", - "description": "ユーザーを禁止する", + "name": "ban", + "description": "Banea a un usuario", "options": { "user": { - "name": "ユーザー", - "description": "禁止するユーザー" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "理由", - "description": "追放の理由" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "ディアス", - "description": "ユーザーメッセージの削除日数" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "演奏", - "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "曲", - "description": "演奏する曲" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "停止", - "description": "選手を止める!" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "スキップ", - "description": "現在の曲をスキップする" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "履歴書", - "description": "現在の曲を再開する!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "キュー", - "description": "現在のキューを表示する" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "ポーズ", - "description": "現在の曲を一時停止する" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "再生中", - "description": "現在の曲を表示する" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "ループ", - "description": "現在のキュー/曲を繰り返す" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "年中無休の音声チャンネル" + "description": "Mantente 24/7 en un canal de voz" } } } \ No newline at end of file From 50e6de6779e9c789be7b3322ff799959e64bb7b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:41 +0000 Subject: [PATCH 72/88] New translations es-ES.json (Turkish) --- locales/tr-TR.json | 481 +++++++++++++++++++++++---------------------- 1 file changed, 245 insertions(+), 236 deletions(-) diff --git a/locales/tr-TR.json b/locales/tr-TR.json index 9ef9e7a..2fd2c59 100644 --- a/locales/tr-TR.json +++ b/locales/tr-TR.json @@ -1,417 +1,426 @@ { "question_ball": { - "no_question": "答えるべき質問はないのか?", - "question": "ご質問の件", - "response": "私の答えはこうだ。", + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", "possibles": { - "0": "はい", - "1": "いいえ", - "2": "たぶん", - "3": "明らかに", - "4": "はい", - "5": "断る", - "6": "おそらく", - "7": "私は疑問を持っている...。", - "8": "疑ってはいけない", - "9": "聞くまでもないだろう;)", - "10": "全然違うよ...。", - "11": "私は信じない..." + "0": "Sí", + "1": "No", + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "詐欺師だったのか?", - "was_not": "詐欺師ではなかった" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "エンベッドが作成され、正常に送信された。", - "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "埋め込みを作成する", - "title_label": "タイトル", - "title_placeholder": "私の素晴らしい埋め込み", - "description_label": "記述", - "description_placeholder": "これは私の素晴らしい埋め込みだ!", - "color_label": "色" + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", + "color_label": "Color" }, "buttons": { - "send": "送信", - "edit": "編集" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "無効な入力" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "ユーザー名を書いてください。", - "name": "🧑 名前:", - "account": "アカウントの種類", - "organization": "🏢 組織:", - "link": "☁️ リンク", - "location": "🗺 場所:", - "email": "📩 Eメール", - "biography": "バイオグラフィー", - "twitter": "ツイッター🐦:", - "repositories": "📂 公開リポジトリ", - "followers": "🧍 フォロワー", - "analizing": "アカウントを分析中です。", - "unknow": "ユーザーが見つかりません" + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", + "twitter": "🐦 Twitter:", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" }, "help": { - "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", - "how_use": "コマンドはどうやって見るのですか?", - "how_use_answer": "簡単だ。", - "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", - "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", - "how_vote": "ボットに投票するには?", - "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", - "title": "ヘルプメニュー" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "ここには{user}のアバターがある。", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "ユーザー名が存在しない", - "names": "名前の歴史", - "first": "名前" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "グローバル・ピン", - "internal": "内部処理(データベース+処理)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Discordによる管理" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "検証はしていない。", - "low": "ロー(認証済みアカウント)。", - "medium": "ミディアム(+5分の認証済みアカウント)。", - "high": "高い(+10分間、認証済みアカウント)。", - "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "メッセージはスキャンされない。", - "members_without_role": "ロールのないユーザーをスキャンします。", - "all_members": "すべてのメッセージをスキャンする。" + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "絵文字数", - "tier_level": "ティアレベル", - "verification_level": "検証レベル", - "explicit_filter": "明示的コンテンツフィルターレベル" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "メンバーが見つかりません", - "self": "自分自身を禁止することはできない", - "owner": "オーナーを追放することはできない", - "higher": "自分より上位の役割を持つメンバーを追放することはできない", - "ban": "出入り禁止に成功", - "unbannable": "このメンバーを追放することはできない" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", - "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", - "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "私の音声チャンネルには入っていない。", - "skiped": "{song}はスキップされた" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", - "current": "現在プレー中:", - "queue": "{name}のキュー", - "no_page": "ページが存在しません!", - "total": "全曲キュー:" + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", + "queue": "{name}'s queue", + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24時間365日モードが有効 ", - "disabled": "24/7モードは無効" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", - "not_voice": "音声チャンネルに入ってください。", - "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", - "added": "リストに{song}を追加", - "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "すべてのシャードを再起動...", - "shard": "シャード{shard}を再起動中..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "音楽は{user}によって再開された。", - "paused": "音楽は{user}で一時停止。", - "success": "音楽は停止された。" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "スローミュージック", - "resumed": "音楽は再開された", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "分後に{channel}を発つ{time}。", - "alone": "私は一人で、{channel}を後にした。" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "オートミックスが生成された!", - "disabled": "オートミックス無効" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "ストリーマーが見つかりません", - "already_following": "すでにこのストリーマーをフォローしています。", - "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", - "unfollowed": "あなたは{streamer}をフォローしていません。", - "role_mention": "{role}について言及しなければならない。", - "now_live": "今{streamer}はライブです!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "キューをループ", - "song": "現在の曲をループ", - "disabled": "ループ無効" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "ポーズ", - "RESUME": "履歴書", - "STOP": "ストップ", - "SKIP": "スキップ", - "NEXT": "次のページ", - "QUEUE": "テール", - "TITLE": "タイトル", - "MEMBERS": "メンバー", - "REGULAR": "レギュラー", - "ANIMATED": "アニメーション", - "CHANNELS": "チャンネル", - "ROLES": "役割", - "CATEGORIES": "カテゴリー", - "SONGS": "曲目", - "TEXT": "テキスト", - "VOICE": "声", - "BOOSTERS": "ブースター", - "REGION": "地域", - "TIER": "動物", - "CREATED_AT": "で作成された。", - "OWNER": "オーナー", - "AUTHOR": "著者", - "REQUESTER": "要求者", - "DURATION": "期間", - "NO": "いいえ", + "PAUSE": "Pausa", + "RESUME": "Currículum", + "STOP": "Stop", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", + "REGULAR": "Regular", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", + "BOOSTERS": "Boosters", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", + "NO": "No", "API": "API", - "PING": "ピン", - "NAME": "名称", - "ID": "身分証明書", - "POSITION": "ポジション", - "COLOR": "カラー", - "MENTIONABLE": "言及可能", - "SEPARATED": "分離", - "YES": "はい", - "PLAYING": "プレー", - "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", + "PING": "Ping", + "NAME": "Nombre", + "ID": "ID", + "POSITION": "Posición", + "COLOR": "Color", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "再起動", - "description": "1つまたはすべてのシャードをリセットする", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "破片", - "description": "再起動するシャード" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "ボール8", - "description": "魔球に質問する", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "質問", - "description": "質問を書いてください。" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { - "name": "食わせ物", - "description": "あなたは詐欺師? SUS", + "name": "impostor", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "ユーザー", - "description": "このユーザーは偽者なのか? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { - "name": "アバター", - "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", + "name": "avatar", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "ユーザー", - "description": "アバターを表示するユーザー" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "ストリーマーがライブを開始したときの通知を設定します!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "追加", - "description": "ストリーマーを追加する", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" }, "channel": { - "name": "チャンネル", - "description": "通知を受け取るチャンネル" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "役割", - "description": "通知を受け取る役割" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "削除", - "description": "ストリーマーを削除する", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "破片", - "description": "ボットのシャードを表示します。" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "サーバー情報", - "description": "サーバーの情報を表示します。" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "役割情報", - "description": "役割の情報を表示します。", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "役割", - "description": "役割の情報を表示します。" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { - "name": "ピン", - "description": "ボットの待ち時間を表示" + "name": "ping", + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "マインクラフトサーバー", - "description": "Minecraftサーバーから画像を送信する", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "サーバー", - "description": "サーバーのIPまたはドメイン" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "マインクラフトの歴史", - "description": "Minecraftユーザーの名前の歴史を表示します。", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "助けて", - "description": "私に関する情報を表示する" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { - "name": "ギットハブ", - "description": "GitHubユーザーの情報を表示します。", + "name": "github", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { - "name": "埋め込み", - "description": "埋め込みを作成する", + "name": "embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "チャンネル", - "description": "埋め込みを送信するチャンネル" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { - "name": "カラー", - "description": "埋め込みの色" + "name": "color", + "description": "El color del embed" }, "title": { - "name": "タイトル", - "description": "埋め込みのタイトル" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "説明", - "description": "埋め込みの説明" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { - "name": "禁止", - "description": "ユーザーを禁止する", + "name": "ban", + "description": "Banea a un usuario", "options": { "user": { - "name": "ユーザー", - "description": "禁止するユーザー" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "理由", - "description": "追放の理由" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "ディアス", - "description": "ユーザーメッセージの削除日数" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "演奏", - "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "曲", - "description": "演奏する曲" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "停止", - "description": "選手を止める!" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "スキップ", - "description": "現在の曲をスキップする" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "履歴書", - "description": "現在の曲を再開する!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "キュー", - "description": "現在のキューを表示する" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "ポーズ", - "description": "現在の曲を一時停止する" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "再生中", - "description": "現在の曲を表示する" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "ループ", - "description": "現在のキュー/曲を繰り返す" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "年中無休の音声チャンネル" + "description": "Mantente 24/7 en un canal de voz" } } } \ No newline at end of file From 7310b40c3e5bc5a1b1d5bb61d5d14dd3dbe3072b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:42 +0000 Subject: [PATCH 73/88] New translations es-ES.json (Ukrainian) --- locales/uk-UA.json | 481 +++++++++++++++++++++++---------------------- 1 file changed, 245 insertions(+), 236 deletions(-) diff --git a/locales/uk-UA.json b/locales/uk-UA.json index 9ef9e7a..2fd2c59 100644 --- a/locales/uk-UA.json +++ b/locales/uk-UA.json @@ -1,417 +1,426 @@ { "question_ball": { - "no_question": "答えるべき質問はないのか?", - "question": "ご質問の件", - "response": "私の答えはこうだ。", + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", "possibles": { - "0": "はい", - "1": "いいえ", - "2": "たぶん", - "3": "明らかに", - "4": "はい", - "5": "断る", - "6": "おそらく", - "7": "私は疑問を持っている...。", - "8": "疑ってはいけない", - "9": "聞くまでもないだろう;)", - "10": "全然違うよ...。", - "11": "私は信じない..." + "0": "Sí", + "1": "No", + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "詐欺師だったのか?", - "was_not": "詐欺師ではなかった" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "エンベッドが作成され、正常に送信された。", - "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "埋め込みを作成する", - "title_label": "タイトル", - "title_placeholder": "私の素晴らしい埋め込み", - "description_label": "記述", - "description_placeholder": "これは私の素晴らしい埋め込みだ!", - "color_label": "色" + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", + "color_label": "Color" }, "buttons": { - "send": "送信", - "edit": "編集" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "無効な入力" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "ユーザー名を書いてください。", - "name": "🧑 名前:", - "account": "アカウントの種類", - "organization": "🏢 組織:", - "link": "☁️ リンク", - "location": "🗺 場所:", - "email": "📩 Eメール", - "biography": "バイオグラフィー", - "twitter": "ツイッター🐦:", - "repositories": "📂 公開リポジトリ", - "followers": "🧍 フォロワー", - "analizing": "アカウントを分析中です。", - "unknow": "ユーザーが見つかりません" + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", + "twitter": "🐦 Twitter:", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" }, "help": { - "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", - "how_use": "コマンドはどうやって見るのですか?", - "how_use_answer": "簡単だ。", - "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", - "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", - "how_vote": "ボットに投票するには?", - "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", - "title": "ヘルプメニュー" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "ここには{user}のアバターがある。", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "ユーザー名が存在しない", - "names": "名前の歴史", - "first": "名前" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "グローバル・ピン", - "internal": "内部処理(データベース+処理)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Discordによる管理" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "検証はしていない。", - "low": "ロー(認証済みアカウント)。", - "medium": "ミディアム(+5分の認証済みアカウント)。", - "high": "高い(+10分間、認証済みアカウント)。", - "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "メッセージはスキャンされない。", - "members_without_role": "ロールのないユーザーをスキャンします。", - "all_members": "すべてのメッセージをスキャンする。" + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "絵文字数", - "tier_level": "ティアレベル", - "verification_level": "検証レベル", - "explicit_filter": "明示的コンテンツフィルターレベル" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "メンバーが見つかりません", - "self": "自分自身を禁止することはできない", - "owner": "オーナーを追放することはできない", - "higher": "自分より上位の役割を持つメンバーを追放することはできない", - "ban": "出入り禁止に成功", - "unbannable": "このメンバーを追放することはできない" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", - "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", - "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "私の音声チャンネルには入っていない。", - "skiped": "{song}はスキップされた" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", - "current": "現在プレー中:", - "queue": "{name}のキュー", - "no_page": "ページが存在しません!", - "total": "全曲キュー:" + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", + "queue": "{name}'s queue", + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24時間365日モードが有効 ", - "disabled": "24/7モードは無効" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", - "not_voice": "音声チャンネルに入ってください。", - "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", - "added": "リストに{song}を追加", - "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "すべてのシャードを再起動...", - "shard": "シャード{shard}を再起動中..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "音楽は{user}によって再開された。", - "paused": "音楽は{user}で一時停止。", - "success": "音楽は停止された。" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "スローミュージック", - "resumed": "音楽は再開された", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "分後に{channel}を発つ{time}。", - "alone": "私は一人で、{channel}を後にした。" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "オートミックスが生成された!", - "disabled": "オートミックス無効" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "ストリーマーが見つかりません", - "already_following": "すでにこのストリーマーをフォローしています。", - "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", - "unfollowed": "あなたは{streamer}をフォローしていません。", - "role_mention": "{role}について言及しなければならない。", - "now_live": "今{streamer}はライブです!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "キューをループ", - "song": "現在の曲をループ", - "disabled": "ループ無効" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "ポーズ", - "RESUME": "履歴書", - "STOP": "ストップ", - "SKIP": "スキップ", - "NEXT": "次のページ", - "QUEUE": "テール", - "TITLE": "タイトル", - "MEMBERS": "メンバー", - "REGULAR": "レギュラー", - "ANIMATED": "アニメーション", - "CHANNELS": "チャンネル", - "ROLES": "役割", - "CATEGORIES": "カテゴリー", - "SONGS": "曲目", - "TEXT": "テキスト", - "VOICE": "声", - "BOOSTERS": "ブースター", - "REGION": "地域", - "TIER": "動物", - "CREATED_AT": "で作成された。", - "OWNER": "オーナー", - "AUTHOR": "著者", - "REQUESTER": "要求者", - "DURATION": "期間", - "NO": "いいえ", + "PAUSE": "Pausa", + "RESUME": "Currículum", + "STOP": "Stop", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", + "REGULAR": "Regular", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", + "BOOSTERS": "Boosters", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", + "NO": "No", "API": "API", - "PING": "ピン", - "NAME": "名称", - "ID": "身分証明書", - "POSITION": "ポジション", - "COLOR": "カラー", - "MENTIONABLE": "言及可能", - "SEPARATED": "分離", - "YES": "はい", - "PLAYING": "プレー", - "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", + "PING": "Ping", + "NAME": "Nombre", + "ID": "ID", + "POSITION": "Posición", + "COLOR": "Color", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "再起動", - "description": "1つまたはすべてのシャードをリセットする", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "破片", - "description": "再起動するシャード" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "ボール8", - "description": "魔球に質問する", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "質問", - "description": "質問を書いてください。" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { - "name": "食わせ物", - "description": "あなたは詐欺師? SUS", + "name": "impostor", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "ユーザー", - "description": "このユーザーは偽者なのか? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { - "name": "アバター", - "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", + "name": "avatar", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "ユーザー", - "description": "アバターを表示するユーザー" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "ストリーマーがライブを開始したときの通知を設定します!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "追加", - "description": "ストリーマーを追加する", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" }, "channel": { - "name": "チャンネル", - "description": "通知を受け取るチャンネル" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "役割", - "description": "通知を受け取る役割" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "削除", - "description": "ストリーマーを削除する", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "破片", - "description": "ボットのシャードを表示します。" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "サーバー情報", - "description": "サーバーの情報を表示します。" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "役割情報", - "description": "役割の情報を表示します。", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "役割", - "description": "役割の情報を表示します。" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { - "name": "ピン", - "description": "ボットの待ち時間を表示" + "name": "ping", + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "マインクラフトサーバー", - "description": "Minecraftサーバーから画像を送信する", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "サーバー", - "description": "サーバーのIPまたはドメイン" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "マインクラフトの歴史", - "description": "Minecraftユーザーの名前の歴史を表示します。", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "助けて", - "description": "私に関する情報を表示する" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { - "name": "ギットハブ", - "description": "GitHubユーザーの情報を表示します。", + "name": "github", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { - "name": "埋め込み", - "description": "埋め込みを作成する", + "name": "embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "チャンネル", - "description": "埋め込みを送信するチャンネル" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { - "name": "カラー", - "description": "埋め込みの色" + "name": "color", + "description": "El color del embed" }, "title": { - "name": "タイトル", - "description": "埋め込みのタイトル" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "説明", - "description": "埋め込みの説明" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { - "name": "禁止", - "description": "ユーザーを禁止する", + "name": "ban", + "description": "Banea a un usuario", "options": { "user": { - "name": "ユーザー", - "description": "禁止するユーザー" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "理由", - "description": "追放の理由" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "ディアス", - "description": "ユーザーメッセージの削除日数" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "演奏", - "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "曲", - "description": "演奏する曲" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "停止", - "description": "選手を止める!" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "スキップ", - "description": "現在の曲をスキップする" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "履歴書", - "description": "現在の曲を再開する!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "キュー", - "description": "現在のキューを表示する" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "ポーズ", - "description": "現在の曲を一時停止する" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "再生中", - "description": "現在の曲を表示する" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "ループ", - "description": "現在のキュー/曲を繰り返す" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "年中無休の音声チャンネル" + "description": "Mantente 24/7 en un canal de voz" } } } \ No newline at end of file From 305e64b28cc7367165a9c747f473154c90ee1b9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:43 +0000 Subject: [PATCH 74/88] New translations es-ES.json (Chinese Simplified) --- locales/zh-CN.json | 481 +++++++++++++++++++++++---------------------- 1 file changed, 245 insertions(+), 236 deletions(-) diff --git a/locales/zh-CN.json b/locales/zh-CN.json index 9ef9e7a..2fd2c59 100644 --- a/locales/zh-CN.json +++ b/locales/zh-CN.json @@ -1,417 +1,426 @@ { "question_ball": { - "no_question": "答えるべき質問はないのか?", - "question": "ご質問の件", - "response": "私の答えはこうだ。", + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", "possibles": { - "0": "はい", - "1": "いいえ", - "2": "たぶん", - "3": "明らかに", - "4": "はい", - "5": "断る", - "6": "おそらく", - "7": "私は疑問を持っている...。", - "8": "疑ってはいけない", - "9": "聞くまでもないだろう;)", - "10": "全然違うよ...。", - "11": "私は信じない..." + "0": "Sí", + "1": "No", + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "詐欺師だったのか?", - "was_not": "詐欺師ではなかった" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "エンベッドが作成され、正常に送信された。", - "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "埋め込みを作成する", - "title_label": "タイトル", - "title_placeholder": "私の素晴らしい埋め込み", - "description_label": "記述", - "description_placeholder": "これは私の素晴らしい埋め込みだ!", - "color_label": "色" + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", + "color_label": "Color" }, "buttons": { - "send": "送信", - "edit": "編集" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "無効な入力" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "ユーザー名を書いてください。", - "name": "🧑 名前:", - "account": "アカウントの種類", - "organization": "🏢 組織:", - "link": "☁️ リンク", - "location": "🗺 場所:", - "email": "📩 Eメール", - "biography": "バイオグラフィー", - "twitter": "ツイッター🐦:", - "repositories": "📂 公開リポジトリ", - "followers": "🧍 フォロワー", - "analizing": "アカウントを分析中です。", - "unknow": "ユーザーが見つかりません" + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", + "twitter": "🐦 Twitter:", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" }, "help": { - "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", - "how_use": "コマンドはどうやって見るのですか?", - "how_use_answer": "簡単だ。", - "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", - "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", - "how_vote": "ボットに投票するには?", - "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", - "title": "ヘルプメニュー" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "ここには{user}のアバターがある。", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "ユーザー名が存在しない", - "names": "名前の歴史", - "first": "名前" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "グローバル・ピン", - "internal": "内部処理(データベース+処理)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Discordによる管理" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "検証はしていない。", - "low": "ロー(認証済みアカウント)。", - "medium": "ミディアム(+5分の認証済みアカウント)。", - "high": "高い(+10分間、認証済みアカウント)。", - "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "メッセージはスキャンされない。", - "members_without_role": "ロールのないユーザーをスキャンします。", - "all_members": "すべてのメッセージをスキャンする。" + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "絵文字数", - "tier_level": "ティアレベル", - "verification_level": "検証レベル", - "explicit_filter": "明示的コンテンツフィルターレベル" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "メンバーが見つかりません", - "self": "自分自身を禁止することはできない", - "owner": "オーナーを追放することはできない", - "higher": "自分より上位の役割を持つメンバーを追放することはできない", - "ban": "出入り禁止に成功", - "unbannable": "このメンバーを追放することはできない" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", - "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", - "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "私の音声チャンネルには入っていない。", - "skiped": "{song}はスキップされた" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", - "current": "現在プレー中:", - "queue": "{name}のキュー", - "no_page": "ページが存在しません!", - "total": "全曲キュー:" + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", + "queue": "{name}'s queue", + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24時間365日モードが有効 ", - "disabled": "24/7モードは無効" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", - "not_voice": "音声チャンネルに入ってください。", - "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", - "added": "リストに{song}を追加", - "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "すべてのシャードを再起動...", - "shard": "シャード{shard}を再起動中..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "音楽は{user}によって再開された。", - "paused": "音楽は{user}で一時停止。", - "success": "音楽は停止された。" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "スローミュージック", - "resumed": "音楽は再開された", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "分後に{channel}を発つ{time}。", - "alone": "私は一人で、{channel}を後にした。" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "オートミックスが生成された!", - "disabled": "オートミックス無効" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "ストリーマーが見つかりません", - "already_following": "すでにこのストリーマーをフォローしています。", - "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", - "unfollowed": "あなたは{streamer}をフォローしていません。", - "role_mention": "{role}について言及しなければならない。", - "now_live": "今{streamer}はライブです!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "キューをループ", - "song": "現在の曲をループ", - "disabled": "ループ無効" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "ポーズ", - "RESUME": "履歴書", - "STOP": "ストップ", - "SKIP": "スキップ", - "NEXT": "次のページ", - "QUEUE": "テール", - "TITLE": "タイトル", - "MEMBERS": "メンバー", - "REGULAR": "レギュラー", - "ANIMATED": "アニメーション", - "CHANNELS": "チャンネル", - "ROLES": "役割", - "CATEGORIES": "カテゴリー", - "SONGS": "曲目", - "TEXT": "テキスト", - "VOICE": "声", - "BOOSTERS": "ブースター", - "REGION": "地域", - "TIER": "動物", - "CREATED_AT": "で作成された。", - "OWNER": "オーナー", - "AUTHOR": "著者", - "REQUESTER": "要求者", - "DURATION": "期間", - "NO": "いいえ", + "PAUSE": "Pausa", + "RESUME": "Currículum", + "STOP": "Stop", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", + "REGULAR": "Regular", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", + "BOOSTERS": "Boosters", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", + "NO": "No", "API": "API", - "PING": "ピン", - "NAME": "名称", - "ID": "身分証明書", - "POSITION": "ポジション", - "COLOR": "カラー", - "MENTIONABLE": "言及可能", - "SEPARATED": "分離", - "YES": "はい", - "PLAYING": "プレー", - "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", + "PING": "Ping", + "NAME": "Nombre", + "ID": "ID", + "POSITION": "Posición", + "COLOR": "Color", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "再起動", - "description": "1つまたはすべてのシャードをリセットする", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "破片", - "description": "再起動するシャード" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "ボール8", - "description": "魔球に質問する", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "質問", - "description": "質問を書いてください。" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { - "name": "食わせ物", - "description": "あなたは詐欺師? SUS", + "name": "impostor", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "ユーザー", - "description": "このユーザーは偽者なのか? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { - "name": "アバター", - "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", + "name": "avatar", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "ユーザー", - "description": "アバターを表示するユーザー" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "ストリーマーがライブを開始したときの通知を設定します!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "追加", - "description": "ストリーマーを追加する", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" }, "channel": { - "name": "チャンネル", - "description": "通知を受け取るチャンネル" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "役割", - "description": "通知を受け取る役割" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "削除", - "description": "ストリーマーを削除する", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "破片", - "description": "ボットのシャードを表示します。" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "サーバー情報", - "description": "サーバーの情報を表示します。" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "役割情報", - "description": "役割の情報を表示します。", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "役割", - "description": "役割の情報を表示します。" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { - "name": "ピン", - "description": "ボットの待ち時間を表示" + "name": "ping", + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "マインクラフトサーバー", - "description": "Minecraftサーバーから画像を送信する", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "サーバー", - "description": "サーバーのIPまたはドメイン" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "マインクラフトの歴史", - "description": "Minecraftユーザーの名前の歴史を表示します。", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "助けて", - "description": "私に関する情報を表示する" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { - "name": "ギットハブ", - "description": "GitHubユーザーの情報を表示します。", + "name": "github", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { - "name": "埋め込み", - "description": "埋め込みを作成する", + "name": "embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "チャンネル", - "description": "埋め込みを送信するチャンネル" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { - "name": "カラー", - "description": "埋め込みの色" + "name": "color", + "description": "El color del embed" }, "title": { - "name": "タイトル", - "description": "埋め込みのタイトル" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "説明", - "description": "埋め込みの説明" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { - "name": "禁止", - "description": "ユーザーを禁止する", + "name": "ban", + "description": "Banea a un usuario", "options": { "user": { - "name": "ユーザー", - "description": "禁止するユーザー" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "理由", - "description": "追放の理由" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "ディアス", - "description": "ユーザーメッセージの削除日数" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "演奏", - "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "曲", - "description": "演奏する曲" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "停止", - "description": "選手を止める!" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "スキップ", - "description": "現在の曲をスキップする" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "履歴書", - "description": "現在の曲を再開する!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "キュー", - "description": "現在のキューを表示する" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "ポーズ", - "description": "現在の曲を一時停止する" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "再生中", - "description": "現在の曲を表示する" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "ループ", - "description": "現在のキュー/曲を繰り返す" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "年中無休の音声チャンネル" + "description": "Mantente 24/7 en un canal de voz" } } } \ No newline at end of file From 30163d808e6f06db130e67fb8e33092382390ae2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:43 +0000 Subject: [PATCH 75/88] New translations es-ES.json (Portuguese, Brazilian) --- locales/pt-BR.json | 481 +++++++++++++++++++++++---------------------- 1 file changed, 245 insertions(+), 236 deletions(-) diff --git a/locales/pt-BR.json b/locales/pt-BR.json index 9ef9e7a..2fd2c59 100644 --- a/locales/pt-BR.json +++ b/locales/pt-BR.json @@ -1,417 +1,426 @@ { "question_ball": { - "no_question": "答えるべき質問はないのか?", - "question": "ご質問の件", - "response": "私の答えはこうだ。", + "no_question": "No veo ninguna pregunta a la que responder...", + "question": "A su pregunta", + "response": "Mi respuesta es", "possibles": { - "0": "はい", - "1": "いいえ", - "2": "たぶん", - "3": "明らかに", - "4": "はい", - "5": "断る", - "6": "おそらく", - "7": "私は疑問を持っている...。", - "8": "疑ってはいけない", - "9": "聞くまでもないだろう;)", - "10": "全然違うよ...。", - "11": "私は信じない..." + "0": "Sí", + "1": "No", + "2": "Tal vez", + "3": "Obviamente", + "4": "Yo digo que sí.", + "5": "Yo digo que no.", + "6": "Probablemente", + "7": "Tengo mis dudas...", + "8": "Ni lo dudes", + "9": "Ni siquiera tenías que preguntar ;)", + "10": "En absoluto...", + "11": "No creo..." } }, "impostor": { - "was": "詐欺師だったのか?", - "was_not": "詐欺師ではなかった" + "was": "¿Fue el impostor", + "was_not": "¿No era el impostor" }, "embed": { - "successfully": "エンベッドが作成され、正常に送信された。", - "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", + "successfully": "Embed creado y enviado correctamente.", + "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", "modal": { - "title": "埋め込みを作成する", - "title_label": "タイトル", - "title_placeholder": "私の素晴らしい埋め込み", - "description_label": "記述", - "description_placeholder": "これは私の素晴らしい埋め込みだ!", - "color_label": "色" + "title": "Creador de embed", + "title_label": "Título", + "title_placeholder": "El mejor embed", + "description_label": "Descripción", + "description_placeholder": "Este es el mejor embed del mundo", + "color_label": "Color" }, "buttons": { - "send": "送信", - "edit": "編集" + "send": "Enviar", + "edit": "Editar" }, - "invalid_input": "無効な入力" + "invalid_input": "Entrada no válida" }, "github": { - "write_username": "ユーザー名を書いてください。", - "name": "🧑 名前:", - "account": "アカウントの種類", - "organization": "🏢 組織:", - "link": "☁️ リンク", - "location": "🗺 場所:", - "email": "📩 Eメール", - "biography": "バイオグラフィー", - "twitter": "ツイッター🐦:", - "repositories": "📂 公開リポジトリ", - "followers": "🧍 フォロワー", - "analizing": "アカウントを分析中です。", - "unknow": "ユーザーが見つかりません" + "write_username": "Por favor, escriba un nombre de usuario.", + "name": "🧑 Nombre:", + "account": " Tipo de cuenta:", + "organization": "🏢 Organización:", + "link": "☁️ Enlace", + "location": "🗺 Ubicación:", + "email": "Correo electrónico", + "biography": "📃 Biografía", + "twitter": "🐦 Twitter:", + "repositories": "📂 Repositorios públicos", + "followers": "🧍 Seguidores", + "analizing": "Analizando cuenta, por favor espera...", + "unknow": "El usuario no se encontró" }, "help": { - "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", - "how_use": "コマンドはどうやって見るのですか?", - "how_use_answer": "簡単だ。", - "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", - "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", - "how_vote": "ボットに投票するには?", - "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", - "title": "ヘルプメニュー" + "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", + "how_use": "¿Cómo puedo ver los comandos?", + "how_use_answer": "Fácil, sólo tienes que escribir", + "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", + "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", + "how_vote": "¿Cómo puedo votar al robot?", + "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", + "title": "✨ - Menú Ayuda" }, - "avatar": "ここには{user}のアバターがある。", + "avatar": "aquí tienes el avatar de {user}", "mchistory": { - "dont": "ユーザー名が存在しない", - "names": "名前の歴史", - "first": "名前" + "dont": "El nombre de usuario no existe", + "names": "Historial del nombre", + "first": "Nombre" }, "ping": { - "global": "グローバル・ピン", - "internal": "内部処理(データベース+処理)" + "global": "Ping global", + "internal": "Procesamiento interno (base de datos + procesamiento)" }, "roleinfo": { - "managed": "Discordによる管理" + "managed": "Gestionado por Discord" + }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" }, "serverinfo": { "verification": { - "no": "検証はしていない。", - "low": "ロー(認証済みアカウント)。", - "medium": "ミディアム(+5分の認証済みアカウント)。", - "high": "高い(+10分間、認証済みアカウント)。", - "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" + "no": "No hay verificación.", + "low": "Baja (Cuenta verificada).", + "medium": "Medium (cuenta verificada durante +5 minutos).", + "high": "Alta (cuenta verificada durante +10 minutos).", + "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." }, "explicit": { - "disabled": "メッセージはスキャンされない。", - "members_without_role": "ロールのないユーザーをスキャンします。", - "all_members": "すべてのメッセージをスキャンする。" + "disabled": "No se escanea ningún mensaje.", + "members_without_role": "Escanear usuarios sin rol.", + "all_members": "Escanea cada mensaje." }, - "emoji_count": "絵文字数", - "tier_level": "ティアレベル", - "verification_level": "検証レベル", - "explicit_filter": "明示的コンテンツフィルターレベル" + "emoji_count": "Cuenta Emoji", + "tier_level": "Nivel", + "verification_level": "Nivel de verificación", + "explicit_filter": "Nivel de filtro de contenido explícito" }, "ban": { - "not_found": "メンバーが見つかりません", - "self": "自分自身を禁止することはできない", - "owner": "オーナーを追放することはできない", - "higher": "自分より上位の役割を持つメンバーを追放することはできない", - "ban": "出入り禁止に成功", - "unbannable": "このメンバーを追放することはできない" + "not_found": "Miembro no encontrado", + "self": "No puedes prohibirte a ti mismo", + "owner": "No se puede prohibir al propietario", + "higher": "No puedes banear a un miembro con un rol superior al tuyo", + "ban": "Prohibido con éxito", + "unbannable": "No puedo expulsar a este miembro" }, "skip": { "messages": { - "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", - "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", - "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" + "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", + "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", + "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" }, - "no_same": "私の音声チャンネルには入っていない。", - "skiped": "{song}はスキップされた" + "no_same": "No estás en mi canal de voz.", + "skiped": "{song} se ha omitido" }, "queue": { - "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", - "current": "現在プレー中:", - "queue": "{name}のキュー", - "no_page": "ページが存在しません!", - "total": "全曲キュー:" + "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", + "current": "Actualmente jugando:", + "queue": "{name}'s queue", + "no_page": "¡La página no existe!", + "total": "Cola total de canciones:" }, "247": { - "enabled": "24時間365日モードが有効 ", - "disabled": "24/7モードは無効" + "enabled": "El modo 24/7 está activado ", + "disabled": "El modo 24/7 está desactivado" }, "play": { - "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", - "not_voice": "音声チャンネルに入ってください。", - "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", - "added": "リストに{song}を追加", - "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" + "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", + "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", + "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", + "added": "{song} añadido a la lista", + "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" }, "reboot": { - "all": "すべてのシャードを再起動...", - "shard": "シャード{shard}を再起動中..." + "all": "Reiniciando todos los fragmentos...", + "shard": "Reiniciando shard {shard}..." }, "stop": { - "resumed": "音楽は{user}によって再開された。", - "paused": "音楽は{user}で一時停止。", - "success": "音楽は停止された。" + "resumed": "Música reanudada por {user}", + "paused": "Música pausada por {user}", + "success": "Música detenida" }, - "paused": "スローミュージック", - "resumed": "音楽は再開された", + "paused": "Música pausada", + "resumed": "Música reanudada", "voice_update": { - "leaving": "分後に{channel}を発つ{time}。", - "alone": "私は一人で、{channel}を後にした。" + "leaving": "Saliendo de {channel} en {time} minutos", + "alone": "Estaba solo, y me fui {channel}" }, "automix": { - "generated": "オートミックスが生成された!", - "disabled": "オートミックス無効" + "generated": "¡Se ha generado Auto-Mix!", + "disabled": "AutoMix desactivado" }, "twitch": { - "no_streamer_found": "ストリーマーが見つかりません", - "already_following": "すでにこのストリーマーをフォローしています。", - "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", - "unfollowed": "あなたは{streamer}をフォローしていません。", - "role_mention": "{role}について言及しなければならない。", - "now_live": "今{streamer}はライブです!" + "no_streamer_found": "No se encontró ningún canal con ese nombre.", + "already_following": "Ya estás siguiendo a este streamer.", + "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", + "unfollowed": "Ya no estás siguiendo a {streamer}.", + "role_mention": "Se mencionara a {role}.", + "now_live": "¡{streamer} está en vivo!" }, "loop": { - "queue": "キューをループ", - "song": "現在の曲をループ", - "disabled": "ループ無効" + "queue": "Bucle de cola", + "song": "Bucle de canción", + "disabled": "Bucle desactivado" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "ポーズ", - "RESUME": "履歴書", - "STOP": "ストップ", - "SKIP": "スキップ", - "NEXT": "次のページ", - "QUEUE": "テール", - "TITLE": "タイトル", - "MEMBERS": "メンバー", - "REGULAR": "レギュラー", - "ANIMATED": "アニメーション", - "CHANNELS": "チャンネル", - "ROLES": "役割", - "CATEGORIES": "カテゴリー", - "SONGS": "曲目", - "TEXT": "テキスト", - "VOICE": "声", - "BOOSTERS": "ブースター", - "REGION": "地域", - "TIER": "動物", - "CREATED_AT": "で作成された。", - "OWNER": "オーナー", - "AUTHOR": "著者", - "REQUESTER": "要求者", - "DURATION": "期間", - "NO": "いいえ", + "PAUSE": "Pausa", + "RESUME": "Currículum", + "STOP": "Stop", + "SKIP": "Saltar", + "NEXT": "Siguiente", + "QUEUE": "Cola", + "TITLE": "Título", + "MEMBERS": "Miembros", + "REGULAR": "Regular", + "ANIMATED": "Animación", + "CHANNELS": "Canales", + "ROLES": "Funciones", + "CATEGORIES": "Categorías", + "SONGS": "Canciones", + "TEXT": "Texto", + "VOICE": "Voz", + "BOOSTERS": "Boosters", + "REGION": "Región", + "TIER": "Animales", + "CREATED_AT": "Creado en", + "OWNER": "Propietario", + "AUTHOR": "Autor", + "REQUESTER": "Solicitante", + "DURATION": "Duración", + "NO": "No", "API": "API", - "PING": "ピン", - "NAME": "名称", - "ID": "身分証明書", - "POSITION": "ポジション", - "COLOR": "カラー", - "MENTIONABLE": "言及可能", - "SEPARATED": "分離", - "YES": "はい", - "PLAYING": "プレー", - "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", + "PING": "Ping", + "NAME": "Nombre", + "ID": "ID", + "POSITION": "Posición", + "COLOR": "Color", + "MENTIONABLE": "Mencionable", + "SEPARATED": "Separado", + "YES": "Sí", + "PLAYING": "Jugando a", + "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", "commands": { "reboot": { - "name": "再起動", - "description": "1つまたはすべてのシャードをリセットする", + "name": "reiniciar", + "description": "Reinicia una o todas las shards", "options": { "shard": { - "name": "破片", - "description": "再起動するシャード" + "name": "fragmento", + "description": "El fragmento que quieres reiniciar" } } }, "8ball": { - "name": "ボール8", - "description": "魔球に質問する", + "name": "bola8", + "description": "Pregúntale algo a la bola mágica", "options": { "question": { - "name": "質問", - "description": "質問を書いてください。" + "name": "pregunta", + "description": "¿Qué quieres preguntarle a la bola mágica?" } } }, "impostor": { - "name": "食わせ物", - "description": "あなたは詐欺師? SUS", + "name": "impostor", + "description": "Eres el impostor? SUS", "options": { "user": { - "name": "ユーザー", - "description": "このユーザーは偽者なのか? SUS na na na na na na na" + "name": "usuario", + "description": "¿Es este usuario un impostor? SUS na na na na na na na" } } }, "avatar": { - "name": "アバター", - "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", + "name": "avatar", + "description": "Envia tu foto de perfil o de otro usuario!", "options": { "user": { - "name": "ユーザー", - "description": "アバターを表示するユーザー" + "name": "usuario", + "description": "El usuario del que quieres obtener el avatar" } } }, "twitch": { "name": "twitch", - "description": "ストリーマーがライブを開始したときの通知を設定します!", + "description": "Establece una notificación para cuando un streamer se ponga en directo!", "options": { "add": { - "name": "追加", - "description": "ストリーマーを追加する", + "name": "añadir", + "description": "Añade una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" }, "channel": { - "name": "チャンネル", - "description": "通知を受け取るチャンネル" + "name": "canal", + "description": "El canal donde se enviarán las notificaciones" }, "role": { - "name": "役割", - "description": "通知を受け取る役割" + "name": "rol", + "description": "El rol que se mencionará cuando el streamer se ponga en directo" } } }, "remove": { - "name": "削除", - "description": "ストリーマーを削除する", + "name": "eliminar", + "description": "Elimina una notificación para un streamer", "options": { "streamer": { - "name": "ストリーマー", - "description": "通知を受け取るストリーマー" + "name": "streamer", + "description": "El nombre del streamer" } } } } }, "shards": { - "name": "破片", - "description": "ボットのシャードを表示します。" + "name": "fragmentos", + "description": "Muestra información sobre los fragmentos" }, "serverinfo": { - "name": "サーバー情報", - "description": "サーバーの情報を表示します。" + "name": "infoservidor", + "description": "Muestra información sobre el servidor" }, "roleinfo": { - "name": "役割情報", - "description": "役割の情報を表示します。", + "name": "inforol", + "description": "Muestra información sobre un rol", "options": { "role": { - "name": "役割", - "description": "役割の情報を表示します。" + "name": "rol", + "description": "El rol del que quieres obtener información" } } }, "ping": { - "name": "ピン", - "description": "ボットの待ち時間を表示" + "name": "ping", + "description": "Muestra la latencia del bot" }, "mcserver": { - "name": "マインクラフトサーバー", - "description": "Minecraftサーバーから画像を送信する", + "name": "servidormc", + "description": "Envía una imagen de un servidor de Minecraft", "options": { "server": { - "name": "サーバー", - "description": "サーバーのIPまたはドメイン" + "name": "servidor", + "description": "El servidor del que quieres obtener información" } } }, "mchistory": { - "name": "マインクラフトの歴史", - "description": "Minecraftユーザーの名前の歴史を表示します。", + "name": "historialmc", + "description": "Muestra el historial de nombres de un jugador de Minecraft", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "help": { - "name": "助けて", - "description": "私に関する情報を表示する" + "name": "ayuda", + "description": "Muestra información sobre mi" }, "github": { - "name": "ギットハブ", - "description": "GitHubユーザーの情報を表示します。", + "name": "github", + "description": "Muestra información sobre un usuario de GitHub", "options": { "account": { - "name": "アカウント", - "description": "アカウントの名前" + "name": "cuenta", + "description": "La cuenta de la que quieres obtener información" } } }, "embed": { - "name": "埋め込み", - "description": "埋め込みを作成する", + "name": "embed", + "description": "Crea un embed personalizado", "options": { "channel": { - "name": "チャンネル", - "description": "埋め込みを送信するチャンネル" + "name": "canal", + "description": "El canal donde se enviará el embed" }, "color": { - "name": "カラー", - "description": "埋め込みの色" + "name": "color", + "description": "El color del embed" }, "title": { - "name": "タイトル", - "description": "埋め込みのタイトル" + "name": "título", + "description": "El título del embed" }, "description": { - "name": "説明", - "description": "埋め込みの説明" + "name": "descripción", + "description": "La descripción del embed" } } }, "ban": { - "name": "禁止", - "description": "ユーザーを禁止する", + "name": "ban", + "description": "Banea a un usuario", "options": { "user": { - "name": "ユーザー", - "description": "禁止するユーザー" + "name": "user", + "description": "User to ban" }, "reason": { - "name": "理由", - "description": "追放の理由" + "name": "reason", + "description": "Reason of the ban" }, "days": { - "name": "ディアス", - "description": "ユーザーメッセージの削除日数" + "name": "days", + "description": "Days to delete messages from the user" } } }, "play": { - "name": "演奏", - "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", + "name": "reproducir", + "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", "options": { "song": { - "name": "曲", - "description": "演奏する曲" + "name": "canción", + "description": "El nombre de la canción o el link de youtube/spotify" } } }, "stop": { - "name": "停止", - "description": "選手を止める!" + "name": "detener", + "description": "Detiene el reproductor de música" }, "skip": { - "name": "スキップ", - "description": "現在の曲をスキップする" + "name": "saltar", + "description": "Salta la canción que se está reproduciendo" }, "resume": { - "name": "履歴書", - "description": "現在の曲を再開する!" + "name": "reanudar", + "description": "Reanuda la canción actual" }, "queue": { - "name": "キュー", - "description": "現在のキューを表示する" + "name": "cola", + "description": "Muestra la cola de canciones" }, "pause": { - "name": "ポーズ", - "description": "現在の曲を一時停止する" + "name": "pausa", + "description": "Pausa la canción actual" }, "nowplaying": { - "name": "再生中", - "description": "現在の曲を表示する" + "name": "reproduciendo", + "description": "Muestra la canción que se está reproduciendo actualmente" }, "loop": { - "name": "ループ", - "description": "現在のキュー/曲を繰り返す" + "name": "bucle", + "description": "Repite la cola/canción actual" }, "247": { "name": "247", - "description": "年中無休の音声チャンネル" + "description": "Mantente 24/7 en un canal de voz" } } } \ No newline at end of file From 98969fce9d1c1a82a6aa9516927699d95888aa9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:44 +0000 Subject: [PATCH 76/88] New translations ja.json (French) --- locales/fr-FR.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/fr-FR.json b/locales/fr-FR.json index 2fd2c59..9ef9e7a 100644 --- a/locales/fr-FR.json +++ b/locales/fr-FR.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From 99e69023d84eb0a0403919656e88aef17ad19ae5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:45 +0000 Subject: [PATCH 77/88] New translations ja.json (Spanish) --- locales/es-ES.json | 9 --------- 1 file changed, 9 deletions(-) diff --git a/locales/es-ES.json b/locales/es-ES.json index 2fd2c59..acf40d9 100644 --- a/locales/es-ES.json +++ b/locales/es-ES.json @@ -77,15 +77,6 @@ "roleinfo": { "managed": "Gestionado por Discord" }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" - }, "serverinfo": { "verification": { "no": "No hay verificación.", From ada621b41b6d119fc6f8d05ac3e30383547e0144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:46 +0000 Subject: [PATCH 78/88] New translations ja.json (Arabic) --- locales/ar-SA.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/ar-SA.json b/locales/ar-SA.json index 2fd2c59..9ef9e7a 100644 --- a/locales/ar-SA.json +++ b/locales/ar-SA.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From 8f13904573cba91e06a1150fa70fdc2d0b9a0dc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:47 +0000 Subject: [PATCH 79/88] New translations ja.json (German) --- locales/de-DE.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/de-DE.json b/locales/de-DE.json index 2fd2c59..9ef9e7a 100644 --- a/locales/de-DE.json +++ b/locales/de-DE.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From 40b445de15986ded393effba310db018e46785ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:47 +0000 Subject: [PATCH 80/88] New translations ja.json (Irish) --- locales/ga-IE.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/ga-IE.json b/locales/ga-IE.json index 2fd2c59..9ef9e7a 100644 --- a/locales/ga-IE.json +++ b/locales/ga-IE.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From c2b59b9f20615bf3276f63c673ac787cb2416436 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:48 +0000 Subject: [PATCH 81/88] New translations ja.json (Italian) --- locales/it-IT.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/it-IT.json b/locales/it-IT.json index 2fd2c59..9ef9e7a 100644 --- a/locales/it-IT.json +++ b/locales/it-IT.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From e3ac93f126b7e11b531533d1c24f2a0f32d0b188 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:49 +0000 Subject: [PATCH 82/88] New translations ja.json (Dutch) --- locales/nl-NL.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/nl-NL.json b/locales/nl-NL.json index 2fd2c59..9ef9e7a 100644 --- a/locales/nl-NL.json +++ b/locales/nl-NL.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From 40869047346f84db4bbc975138bc711b99a1969c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:50 +0000 Subject: [PATCH 83/88] New translations ja.json (Russian) --- locales/ru-RU.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/ru-RU.json b/locales/ru-RU.json index 2fd2c59..9ef9e7a 100644 --- a/locales/ru-RU.json +++ b/locales/ru-RU.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From 9000b3803ba2f0217a3494c2362b8227aaf849e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:51 +0000 Subject: [PATCH 84/88] New translations ja.json (Turkish) --- locales/tr-TR.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/tr-TR.json b/locales/tr-TR.json index 2fd2c59..9ef9e7a 100644 --- a/locales/tr-TR.json +++ b/locales/tr-TR.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From 2b5ea5bb0a1b01c8408aa8730d886b2d4b722beb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:52 +0000 Subject: [PATCH 85/88] New translations ja.json (Ukrainian) --- locales/uk-UA.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/uk-UA.json b/locales/uk-UA.json index 2fd2c59..9ef9e7a 100644 --- a/locales/uk-UA.json +++ b/locales/uk-UA.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From d16b76e9c9f924edbda6489a4ef81b60a371fb52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:52 +0000 Subject: [PATCH 86/88] New translations ja.json (Chinese Simplified) --- locales/zh-CN.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/zh-CN.json b/locales/zh-CN.json index 2fd2c59..9ef9e7a 100644 --- a/locales/zh-CN.json +++ b/locales/zh-CN.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From 50c4424dfc4d9a51e64931e3bc6c6f2c2ee2970e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Sun, 13 Aug 2023 22:47:53 +0000 Subject: [PATCH 87/88] New translations ja.json (Portuguese, Brazilian) --- locales/pt-BR.json | 481 ++++++++++++++++++++++----------------------- 1 file changed, 236 insertions(+), 245 deletions(-) diff --git a/locales/pt-BR.json b/locales/pt-BR.json index 2fd2c59..9ef9e7a 100644 --- a/locales/pt-BR.json +++ b/locales/pt-BR.json @@ -1,426 +1,417 @@ { "question_ball": { - "no_question": "No veo ninguna pregunta a la que responder...", - "question": "A su pregunta", - "response": "Mi respuesta es", + "no_question": "答えるべき質問はないのか?", + "question": "ご質問の件", + "response": "私の答えはこうだ。", "possibles": { - "0": "Sí", - "1": "No", - "2": "Tal vez", - "3": "Obviamente", - "4": "Yo digo que sí.", - "5": "Yo digo que no.", - "6": "Probablemente", - "7": "Tengo mis dudas...", - "8": "Ni lo dudes", - "9": "Ni siquiera tenías que preguntar ;)", - "10": "En absoluto...", - "11": "No creo..." + "0": "はい", + "1": "いいえ", + "2": "たぶん", + "3": "明らかに", + "4": "はい", + "5": "断る", + "6": "おそらく", + "7": "私は疑問を持っている...。", + "8": "疑ってはいけない", + "9": "聞くまでもないだろう;)", + "10": "全然違うよ...。", + "11": "私は信じない..." } }, "impostor": { - "was": "¿Fue el impostor", - "was_not": "¿No era el impostor" + "was": "詐欺師だったのか?", + "was_not": "詐欺師ではなかった" }, "embed": { - "successfully": "Embed creado y enviado correctamente.", - "missing_permissions": "No tengo permisos para enviar mensajes en este canal. Necesito {permisions}", + "successfully": "エンベッドが作成され、正常に送信された。", + "missing_permissions": "私はエンベッドを送信する権限がありません。 {permisions}つ必要だ", "modal": { - "title": "Creador de embed", - "title_label": "Título", - "title_placeholder": "El mejor embed", - "description_label": "Descripción", - "description_placeholder": "Este es el mejor embed del mundo", - "color_label": "Color" + "title": "埋め込みを作成する", + "title_label": "タイトル", + "title_placeholder": "私の素晴らしい埋め込み", + "description_label": "記述", + "description_placeholder": "これは私の素晴らしい埋め込みだ!", + "color_label": "色" }, "buttons": { - "send": "Enviar", - "edit": "Editar" + "send": "送信", + "edit": "編集" }, - "invalid_input": "Entrada no válida" + "invalid_input": "無効な入力" }, "github": { - "write_username": "Por favor, escriba un nombre de usuario.", - "name": "🧑 Nombre:", - "account": " Tipo de cuenta:", - "organization": "🏢 Organización:", - "link": "☁️ Enlace", - "location": "🗺 Ubicación:", - "email": "Correo electrónico", - "biography": "📃 Biografía", - "twitter": "🐦 Twitter:", - "repositories": "📂 Repositorios públicos", - "followers": "🧍 Seguidores", - "analizing": "Analizando cuenta, por favor espera...", - "unknow": "El usuario no se encontró" + "write_username": "ユーザー名を書いてください。", + "name": "🧑 名前:", + "account": "アカウントの種類", + "organization": "🏢 組織:", + "link": "☁️ リンク", + "location": "🗺 場所:", + "email": "📩 Eメール", + "biography": "バイオグラフィー", + "twitter": "ツイッター🐦:", + "repositories": "📂 公開リポジトリ", + "followers": "🧍 フォロワー", + "analizing": "アカウントを分析中です。", + "unknow": "ユーザーが見つかりません" }, "help": { - "presentation": " Hola, soy Node un bot todo en uno, multifuncional y con comandos innovadores.", - "how_use": "¿Cómo puedo ver los comandos?", - "how_use_answer": "Fácil, sólo tienes que escribir", - "need_support": "Si necesito ayuda, ¿cómo puedo ponerme en contacto con el equipo de asistencia?", - "need_support_answer": "Puede preguntar en nuestro [servidor de soporte]({inviteURL})", - "how_vote": "¿Cómo puedo votar al robot?", - "how_vote_answer": "u puede hacerlo utilizando el comando `/vote` o [Clicando Aquí](https://vote.nodebot.xyz) 'Estamos esperando su voto :)'", - "title": "✨ - Menú Ayuda" + "presentation": "こんにちは、私は革新的なコマンドを持つオールインワンの多機能ボット、ノードです。", + "how_use": "コマンドはどうやって見るのですか?", + "how_use_answer": "簡単だ。", + "need_support": "サポートが必要な場合、どのようにサポートチームと連絡を取ればよいですか?", + "need_support_answer": "サポートサーバー!]({inviteURL})でお尋ねください。", + "how_vote": "ボットに投票するには?", + "how_vote_answer": " `/vote`コマンドか、[ここをクリック](https://vote.nodebot.xyz) 'We are waiting your vote :)' コマンドで実行できる。", + "title": "ヘルプメニュー" }, - "avatar": "aquí tienes el avatar de {user}", + "avatar": "ここには{user}のアバターがある。", "mchistory": { - "dont": "El nombre de usuario no existe", - "names": "Historial del nombre", - "first": "Nombre" + "dont": "ユーザー名が存在しない", + "names": "名前の歴史", + "first": "名前" }, "ping": { - "global": "Ping global", - "internal": "Procesamiento interno (base de datos + procesamiento)" + "global": "グローバル・ピン", + "internal": "内部処理(データベース+処理)" }, "roleinfo": { - "managed": "Gestionado por Discord" - }, - "nowplaying": { - "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", - "2": "No se están reproduciendo canciones en este momento.", - "3": "Reproduciendo ahora", - "4": "Pausado", - "5": "Autor", - "6": "Solicitada por", - "7": "Duración" + "managed": "Discordによる管理" }, "serverinfo": { "verification": { - "no": "No hay verificación.", - "low": "Baja (Cuenta verificada).", - "medium": "Medium (cuenta verificada durante +5 minutos).", - "high": "Alta (cuenta verificada durante +10 minutos).", - "extreme": "Extreme (Cuenta verificada y número de teléfono verificado vinculados)." + "no": "検証はしていない。", + "low": "ロー(認証済みアカウント)。", + "medium": "ミディアム(+5分の認証済みアカウント)。", + "high": "高い(+10分間、認証済みアカウント)。", + "extreme": "エクストリーム(認証済みアカウントと認証済み電話番号のリンク)。" }, "explicit": { - "disabled": "No se escanea ningún mensaje.", - "members_without_role": "Escanear usuarios sin rol.", - "all_members": "Escanea cada mensaje." + "disabled": "メッセージはスキャンされない。", + "members_without_role": "ロールのないユーザーをスキャンします。", + "all_members": "すべてのメッセージをスキャンする。" }, - "emoji_count": "Cuenta Emoji", - "tier_level": "Nivel", - "verification_level": "Nivel de verificación", - "explicit_filter": "Nivel de filtro de contenido explícito" + "emoji_count": "絵文字数", + "tier_level": "ティアレベル", + "verification_level": "検証レベル", + "explicit_filter": "明示的コンテンツフィルターレベル" }, "ban": { - "not_found": "Miembro no encontrado", - "self": "No puedes prohibirte a ti mismo", - "owner": "No se puede prohibir al propietario", - "higher": "No puedes banear a un miembro con un rol superior al tuyo", - "ban": "Prohibido con éxito", - "unbannable": "No puedo expulsar a este miembro" + "not_found": "メンバーが見つかりません", + "self": "自分自身を禁止することはできない", + "owner": "オーナーを追放することはできない", + "higher": "自分より上位の役割を持つメンバーを追放することはできない", + "ban": "出入り禁止に成功", + "unbannable": "このメンバーを追放することはできない" }, "skip": { "messages": { - "0": "No hay canciones sonando en tu canal de voz. ¿Por qué no añades una? <:pepeblink:967941236029788160>", - "1": "Parece que no estás escuchando música, ¿qué tal si lo hacemos? <:pepeblink:967941236029788160>", - "2": "¿Qué haces que no escuchas música? Añade una canción ahora :)" + "0": "ボイスチャンネルに曲がありません。追加したらどうですか?<:pepeblink:967941236029788160>", + "1": "音楽聴いてないみたいだし、どうする?<:pepeblink:967941236029788160>", + "2": "音楽を聴かずに何をしている?今すぐ曲を追加してください :)" }, - "no_same": "No estás en mi canal de voz.", - "skiped": "{song} se ha omitido" + "no_same": "私の音声チャンネルには入っていない。", + "skiped": "{song}はスキップされた" }, "queue": { - "no_queue": "No se están reproduciendo canciones en este servidor. ¿Por qué no añades una?", - "current": "Actualmente jugando:", - "queue": "{name}'s queue", - "no_page": "¡La página no existe!", - "total": "Cola total de canciones:" + "no_queue": "このサーバーで演奏されている曲がありません。追加してみては?", + "current": "現在プレー中:", + "queue": "{name}のキュー", + "no_page": "ページが存在しません!", + "total": "全曲キュー:" }, "247": { - "enabled": "El modo 24/7 está activado ", - "disabled": "El modo 24/7 está desactivado" + "enabled": "24時間365日モードが有効 ", + "disabled": "24/7モードは無効" }, "play": { - "same": "Necesitas estar en el mismo canal de voz que el bot para ejecutar este comando.", - "not_voice": "Necesitas estar en un canal de voz para ejecutar este comando.", - "not_reproducible": "El enlace adjunto no contiene contenidos reproducibles.", - "added": "{song} añadido a la lista", - "cant_join": "No puedo unirme a tu canal de voz, ¿tengo permisos?" + "same": "このコマンドを実行するには、ボットと同じ音声チャンネルにいる必要があります。", + "not_voice": "音声チャンネルに入ってください。", + "not_reproducible": "添付のリンク先には再現可能なコンテンツは含まれていません。", + "added": "リストに{song}を追加", + "cant_join": "私はあなたのボイスチャンネルに参加できません。権限を確認してください。" }, "reboot": { - "all": "Reiniciando todos los fragmentos...", - "shard": "Reiniciando shard {shard}..." + "all": "すべてのシャードを再起動...", + "shard": "シャード{shard}を再起動中..." }, "stop": { - "resumed": "Música reanudada por {user}", - "paused": "Música pausada por {user}", - "success": "Música detenida" + "resumed": "音楽は{user}によって再開された。", + "paused": "音楽は{user}で一時停止。", + "success": "音楽は停止された。" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused": "スローミュージック", + "resumed": "音楽は再開された", "voice_update": { - "leaving": "Saliendo de {channel} en {time} minutos", - "alone": "Estaba solo, y me fui {channel}" + "leaving": "分後に{channel}を発つ{time}。", + "alone": "私は一人で、{channel}を後にした。" }, "automix": { - "generated": "¡Se ha generado Auto-Mix!", - "disabled": "AutoMix desactivado" + "generated": "オートミックスが生成された!", + "disabled": "オートミックス無効" }, "twitch": { - "no_streamer_found": "No se encontró ningún canal con ese nombre.", - "already_following": "Ya estás siguiendo a este streamer.", - "now_following": "Ahora estás siguiendo a {streamer}. Las notificaciones se enviarán a {channel}.", - "unfollowed": "Ya no estás siguiendo a {streamer}.", - "role_mention": "Se mencionara a {role}.", - "now_live": "¡{streamer} está en vivo!" + "no_streamer_found": "ストリーマーが見つかりません", + "already_following": "すでにこのストリーマーをフォローしています。", + "now_following": "あなたは今{streamer}をフォローしています。通知は{channel}に送信されます。", + "unfollowed": "あなたは{streamer}をフォローしていません。", + "role_mention": "{role}について言及しなければならない。", + "now_live": "今{streamer}はライブです!" }, "loop": { - "queue": "Bucle de cola", - "song": "Bucle de canción", - "disabled": "Bucle desactivado" + "queue": "キューをループ", + "song": "現在の曲をループ", + "disabled": "ループ無効" }, "ERROREMBED": "Error", "SUCCESSEMBED": "Success", - "PAUSE": "Pausa", - "RESUME": "Currículum", - "STOP": "Stop", - "SKIP": "Saltar", - "NEXT": "Siguiente", - "QUEUE": "Cola", - "TITLE": "Título", - "MEMBERS": "Miembros", - "REGULAR": "Regular", - "ANIMATED": "Animación", - "CHANNELS": "Canales", - "ROLES": "Funciones", - "CATEGORIES": "Categorías", - "SONGS": "Canciones", - "TEXT": "Texto", - "VOICE": "Voz", - "BOOSTERS": "Boosters", - "REGION": "Región", - "TIER": "Animales", - "CREATED_AT": "Creado en", - "OWNER": "Propietario", - "AUTHOR": "Autor", - "REQUESTER": "Solicitante", - "DURATION": "Duración", - "NO": "No", + "PAUSE": "ポーズ", + "RESUME": "履歴書", + "STOP": "ストップ", + "SKIP": "スキップ", + "NEXT": "次のページ", + "QUEUE": "テール", + "TITLE": "タイトル", + "MEMBERS": "メンバー", + "REGULAR": "レギュラー", + "ANIMATED": "アニメーション", + "CHANNELS": "チャンネル", + "ROLES": "役割", + "CATEGORIES": "カテゴリー", + "SONGS": "曲目", + "TEXT": "テキスト", + "VOICE": "声", + "BOOSTERS": "ブースター", + "REGION": "地域", + "TIER": "動物", + "CREATED_AT": "で作成された。", + "OWNER": "オーナー", + "AUTHOR": "著者", + "REQUESTER": "要求者", + "DURATION": "期間", + "NO": "いいえ", "API": "API", - "PING": "Ping", - "NAME": "Nombre", - "ID": "ID", - "POSITION": "Posición", - "COLOR": "Color", - "MENTIONABLE": "Mencionable", - "SEPARATED": "Separado", - "YES": "Sí", - "PLAYING": "Jugando a", - "GENERICERROR": "Oops, parece que ha habido un error.\nPuedes ponerte en contacto con el desarrollador para hacérselo saber en [The Official Discord]({inviteURL})", + "PING": "ピン", + "NAME": "名称", + "ID": "身分証明書", + "POSITION": "ポジション", + "COLOR": "カラー", + "MENTIONABLE": "言及可能", + "SEPARATED": "分離", + "YES": "はい", + "PLAYING": "プレー", + "GENERICERROR": "おっと、エラーがあったようだ。\n公式Discord]({inviteURL})で開発者に連絡してください。", "commands": { "reboot": { - "name": "reiniciar", - "description": "Reinicia una o todas las shards", + "name": "再起動", + "description": "1つまたはすべてのシャードをリセットする", "options": { "shard": { - "name": "fragmento", - "description": "El fragmento que quieres reiniciar" + "name": "破片", + "description": "再起動するシャード" } } }, "8ball": { - "name": "bola8", - "description": "Pregúntale algo a la bola mágica", + "name": "ボール8", + "description": "魔球に質問する", "options": { "question": { - "name": "pregunta", - "description": "¿Qué quieres preguntarle a la bola mágica?" + "name": "質問", + "description": "質問を書いてください。" } } }, "impostor": { - "name": "impostor", - "description": "Eres el impostor? SUS", + "name": "食わせ物", + "description": "あなたは詐欺師? SUS", "options": { "user": { - "name": "usuario", - "description": "¿Es este usuario un impostor? SUS na na na na na na na" + "name": "ユーザー", + "description": "このユーザーは偽者なのか? SUS na na na na na na na" } } }, "avatar": { - "name": "avatar", - "description": "Envia tu foto de perfil o de otro usuario!", + "name": "アバター", + "description": "あなたのプロフィール写真または他のユーザーの写真を送信します!", "options": { "user": { - "name": "usuario", - "description": "El usuario del que quieres obtener el avatar" + "name": "ユーザー", + "description": "アバターを表示するユーザー" } } }, "twitch": { "name": "twitch", - "description": "Establece una notificación para cuando un streamer se ponga en directo!", + "description": "ストリーマーがライブを開始したときの通知を設定します!", "options": { "add": { - "name": "añadir", - "description": "Añade una notificación para un streamer", + "name": "追加", + "description": "ストリーマーを追加する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" }, "channel": { - "name": "canal", - "description": "El canal donde se enviarán las notificaciones" + "name": "チャンネル", + "description": "通知を受け取るチャンネル" }, "role": { - "name": "rol", - "description": "El rol que se mencionará cuando el streamer se ponga en directo" + "name": "役割", + "description": "通知を受け取る役割" } } }, "remove": { - "name": "eliminar", - "description": "Elimina una notificación para un streamer", + "name": "削除", + "description": "ストリーマーを削除する", "options": { "streamer": { - "name": "streamer", - "description": "El nombre del streamer" + "name": "ストリーマー", + "description": "通知を受け取るストリーマー" } } } } }, "shards": { - "name": "fragmentos", - "description": "Muestra información sobre los fragmentos" + "name": "破片", + "description": "ボットのシャードを表示します。" }, "serverinfo": { - "name": "infoservidor", - "description": "Muestra información sobre el servidor" + "name": "サーバー情報", + "description": "サーバーの情報を表示します。" }, "roleinfo": { - "name": "inforol", - "description": "Muestra información sobre un rol", + "name": "役割情報", + "description": "役割の情報を表示します。", "options": { "role": { - "name": "rol", - "description": "El rol del que quieres obtener información" + "name": "役割", + "description": "役割の情報を表示します。" } } }, "ping": { - "name": "ping", - "description": "Muestra la latencia del bot" + "name": "ピン", + "description": "ボットの待ち時間を表示" }, "mcserver": { - "name": "servidormc", - "description": "Envía una imagen de un servidor de Minecraft", + "name": "マインクラフトサーバー", + "description": "Minecraftサーバーから画像を送信する", "options": { "server": { - "name": "servidor", - "description": "El servidor del que quieres obtener información" + "name": "サーバー", + "description": "サーバーのIPまたはドメイン" } } }, "mchistory": { - "name": "historialmc", - "description": "Muestra el historial de nombres de un jugador de Minecraft", + "name": "マインクラフトの歴史", + "description": "Minecraftユーザーの名前の歴史を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "help": { - "name": "ayuda", - "description": "Muestra información sobre mi" + "name": "助けて", + "description": "私に関する情報を表示する" }, "github": { - "name": "github", - "description": "Muestra información sobre un usuario de GitHub", + "name": "ギットハブ", + "description": "GitHubユーザーの情報を表示します。", "options": { "account": { - "name": "cuenta", - "description": "La cuenta de la que quieres obtener información" + "name": "アカウント", + "description": "アカウントの名前" } } }, "embed": { - "name": "embed", - "description": "Crea un embed personalizado", + "name": "埋め込み", + "description": "埋め込みを作成する", "options": { "channel": { - "name": "canal", - "description": "El canal donde se enviará el embed" + "name": "チャンネル", + "description": "埋め込みを送信するチャンネル" }, "color": { - "name": "color", - "description": "El color del embed" + "name": "カラー", + "description": "埋め込みの色" }, "title": { - "name": "título", - "description": "El título del embed" + "name": "タイトル", + "description": "埋め込みのタイトル" }, "description": { - "name": "descripción", - "description": "La descripción del embed" + "name": "説明", + "description": "埋め込みの説明" } } }, "ban": { - "name": "ban", - "description": "Banea a un usuario", + "name": "禁止", + "description": "ユーザーを禁止する", "options": { "user": { - "name": "user", - "description": "User to ban" + "name": "ユーザー", + "description": "禁止するユーザー" }, "reason": { - "name": "reason", - "description": "Reason of the ban" + "name": "理由", + "description": "追放の理由" }, "days": { - "name": "days", - "description": "Days to delete messages from the user" + "name": "ディアス", + "description": "ユーザーメッセージの削除日数" } } }, "play": { - "name": "reproducir", - "description": "Reproduce la canción que desees con su nombre o un link de youtube/spotify", + "name": "演奏", + "description": "好きな曲を、その曲名またはyoutube/spotifyのリンクとともに流す。", "options": { "song": { - "name": "canción", - "description": "El nombre de la canción o el link de youtube/spotify" + "name": "曲", + "description": "演奏する曲" } } }, "stop": { - "name": "detener", - "description": "Detiene el reproductor de música" + "name": "停止", + "description": "選手を止める!" }, "skip": { - "name": "saltar", - "description": "Salta la canción que se está reproduciendo" + "name": "スキップ", + "description": "現在の曲をスキップする" }, "resume": { - "name": "reanudar", - "description": "Reanuda la canción actual" + "name": "履歴書", + "description": "現在の曲を再開する!" }, "queue": { - "name": "cola", - "description": "Muestra la cola de canciones" + "name": "キュー", + "description": "現在のキューを表示する" }, "pause": { - "name": "pausa", - "description": "Pausa la canción actual" + "name": "ポーズ", + "description": "現在の曲を一時停止する" }, "nowplaying": { - "name": "reproduciendo", - "description": "Muestra la canción que se está reproduciendo actualmente" + "name": "再生中", + "description": "現在の曲を表示する" }, "loop": { - "name": "bucle", - "description": "Repite la cola/canción actual" + "name": "ループ", + "description": "現在のキュー/曲を繰り返す" }, "247": { "name": "247", - "description": "Mantente 24/7 en un canal de voz" + "description": "年中無休の音声チャンネル" } } } \ No newline at end of file From 8a9b4cdd0fd6ece1d8e14803a2720a37eb2c8f87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Ortiz?= Date: Mon, 14 Aug 2023 02:47:07 +0000 Subject: [PATCH 88/88] Update source file es-ES.json --- locales/es-ES.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/locales/es-ES.json b/locales/es-ES.json index acf40d9..16a9156 100644 --- a/locales/es-ES.json +++ b/locales/es-ES.json @@ -77,6 +77,15 @@ "roleinfo": { "managed": "Gestionado por Discord" }, + "nowplaying": { + "1": "Necesitas estar en un canal de voz para poder ejecutar este comando.", + "2": "No se están reproduciendo canciones en este momento.", + "3": "Reproduciendo ahora", + "4": "Pausado", + "5": "Autor", + "6": "Solicitada por", + "7": "Duración" + }, "serverinfo": { "verification": { "no": "No hay verificación.", @@ -139,8 +148,8 @@ "paused": "Música pausada por {user}", "success": "Música detenida" }, - "paused": "Música pausada", - "resumed": "Música reanudada", + "paused":"Música pausada", + "resumed":"Música reanudada", "voice_update": { "leaving": "Saliendo de {channel} en {time} minutos", "alone": "Estaba solo, y me fui {channel}"