From 9d803b23d52b16d19a7e6c7992d7d9d6872630dd Mon Sep 17 00:00:00 2001 From: ThatKev <65928584+thatkev@users.noreply.github.com> Date: Tue, 9 Jul 2024 06:25:53 +0930 Subject: [PATCH 01/19] Update validate-commands.yml --- .github/workflows/validate-commands.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/validate-commands.yml b/.github/workflows/validate-commands.yml index 8e4e829..b8af54a 100644 --- a/.github/workflows/validate-commands.yml +++ b/.github/workflows/validate-commands.yml @@ -1,6 +1,11 @@ name: File validation -on: [push, pull_request, workflow_dispatch] +on: + push: + branches: + - '!weblate' + pull_request: + workflow_dispatch: jobs: validate-json: From cb460910f4fcb1fcb6b8fcc5cbac1384af1385e9 Mon Sep 17 00:00:00 2001 From: ThatKev <65928584+thatkev@users.noreply.github.com> Date: Tue, 9 Jul 2024 06:27:42 +0930 Subject: [PATCH 02/19] Update validate-commands.yml --- .github/workflows/validate-commands.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate-commands.yml b/.github/workflows/validate-commands.yml index b8af54a..20640c3 100644 --- a/.github/workflows/validate-commands.yml +++ b/.github/workflows/validate-commands.yml @@ -2,8 +2,8 @@ name: File validation on: push: - branches: - - '!weblate' + branches-ignore: + - weblate pull_request: workflow_dispatch: From ae0d68780a0de4fd2bd87db20b75558b40dfb094 Mon Sep 17 00:00:00 2001 From: JuanQP Date: Sun, 21 Jul 2024 16:16:07 +0200 Subject: [PATCH 03/19] add spanish language --- bot/es_es/access_token.json | 4 + bot/es_es/buttons.json | 9 + bot/es_es/channel_types.json | 13 ++ bot/es_es/channel_update_types.json | 3 + bot/es_es/command_responses.json | 207 +++++++++++++++++++ bot/es_es/emoji_update_types.json | 3 + bot/es_es/gui_constants.json | 41 ++++ bot/es_es/guild_update_types.json | 30 +++ bot/es_es/ignore_options.json | 12 ++ bot/es_es/log_categories.json | 13 ++ bot/es_es/log_formats.json | 7 + bot/es_es/permissions.json | 49 +++++ bot/es_es/role_update_types.json | 5 + bot/es_es/slash_commands/ban.json | 18 ++ bot/es_es/slash_commands/commands.json | 4 + bot/es_es/slash_commands/config.json | 18 ++ bot/es_es/slash_commands/dashboard.json | 4 + bot/es_es/slash_commands/debug.json | 10 + bot/es_es/slash_commands/export.json | 26 +++ bot/es_es/slash_commands/help.json | 14 ++ bot/es_es/slash_commands/initialReactor.json | 3 + bot/es_es/slash_commands/invite.json | 4 + bot/es_es/slash_commands/kick.json | 14 ++ bot/es_es/slash_commands/language.json | 10 + bot/es_es/slash_commands/mute.json | 33 +++ bot/es_es/slash_commands/ping.json | 4 + bot/es_es/slash_commands/premium.json | 4 + bot/es_es/slash_commands/privacy.json | 4 + bot/es_es/slash_commands/purge.json | 10 + bot/es_es/slash_commands/reason.json | 14 ++ bot/es_es/slash_commands/serverlog.json | 58 ++++++ bot/es_es/slash_commands/tags.json | 66 ++++++ bot/es_es/slash_commands/unban.json | 14 ++ bot/es_es/slash_commands/unmute.json | 14 ++ bot/es_es/standard/channelEvents.json | 62 ++++++ bot/es_es/standard/generalEvents.json | 30 +++ bot/es_es/standard/modlog.json | 20 ++ bot/es_es/standard/quarkEvents.json | 64 ++++++ bot/es_es/standard/roleEvents.json | 32 +++ bot/es_es/standard/serverActions.json | 53 +++++ bot/es_es/standard/serverEvents.json | 70 +++++++ bot/es_es/standard/textEvents.json | 92 +++++++++ bot/es_es/standard/voiceEvents.json | 104 ++++++++++ bot/es_es/tags_responses.json | 26 +++ bot/es_es/time.json | 16 ++ bot/languages.json | 3 +- 46 files changed, 1313 insertions(+), 1 deletion(-) create mode 100644 bot/es_es/access_token.json create mode 100644 bot/es_es/buttons.json create mode 100644 bot/es_es/channel_types.json create mode 100644 bot/es_es/channel_update_types.json create mode 100644 bot/es_es/command_responses.json create mode 100644 bot/es_es/emoji_update_types.json create mode 100644 bot/es_es/gui_constants.json create mode 100644 bot/es_es/guild_update_types.json create mode 100644 bot/es_es/ignore_options.json create mode 100644 bot/es_es/log_categories.json create mode 100644 bot/es_es/log_formats.json create mode 100644 bot/es_es/permissions.json create mode 100644 bot/es_es/role_update_types.json create mode 100644 bot/es_es/slash_commands/ban.json create mode 100644 bot/es_es/slash_commands/commands.json create mode 100644 bot/es_es/slash_commands/config.json create mode 100644 bot/es_es/slash_commands/dashboard.json create mode 100644 bot/es_es/slash_commands/debug.json create mode 100644 bot/es_es/slash_commands/export.json create mode 100644 bot/es_es/slash_commands/help.json create mode 100644 bot/es_es/slash_commands/initialReactor.json create mode 100644 bot/es_es/slash_commands/invite.json create mode 100644 bot/es_es/slash_commands/kick.json create mode 100644 bot/es_es/slash_commands/language.json create mode 100644 bot/es_es/slash_commands/mute.json create mode 100644 bot/es_es/slash_commands/ping.json create mode 100644 bot/es_es/slash_commands/premium.json create mode 100644 bot/es_es/slash_commands/privacy.json create mode 100644 bot/es_es/slash_commands/purge.json create mode 100644 bot/es_es/slash_commands/reason.json create mode 100644 bot/es_es/slash_commands/serverlog.json create mode 100644 bot/es_es/slash_commands/tags.json create mode 100644 bot/es_es/slash_commands/unban.json create mode 100644 bot/es_es/slash_commands/unmute.json create mode 100644 bot/es_es/standard/channelEvents.json create mode 100644 bot/es_es/standard/generalEvents.json create mode 100644 bot/es_es/standard/modlog.json create mode 100644 bot/es_es/standard/quarkEvents.json create mode 100644 bot/es_es/standard/roleEvents.json create mode 100644 bot/es_es/standard/serverActions.json create mode 100644 bot/es_es/standard/serverEvents.json create mode 100644 bot/es_es/standard/textEvents.json create mode 100644 bot/es_es/standard/voiceEvents.json create mode 100644 bot/es_es/tags_responses.json create mode 100644 bot/es_es/time.json diff --git a/bot/es_es/access_token.json b/bot/es_es/access_token.json new file mode 100644 index 0000000..b7ca20a --- /dev/null +++ b/bot/es_es/access_token.json @@ -0,0 +1,4 @@ +{ + "1": "Administración", + "2": "Básico" + } \ No newline at end of file diff --git a/bot/es_es/buttons.json b/bot/es_es/buttons.json new file mode 100644 index 0000000..d3914fc --- /dev/null +++ b/bot/es_es/buttons.json @@ -0,0 +1,9 @@ +{ + "userID": "ID de usuario", + "supportServer": "Servidor de soporte", + "customise": "Personalizar", + "overview": "Descripción general", + "serverlog": "Registro del servidor", + "dashboard": "Panel", + "pro": "Quark Pro" + } \ No newline at end of file diff --git a/bot/es_es/channel_types.json b/bot/es_es/channel_types.json new file mode 100644 index 0000000..20a1a55 --- /dev/null +++ b/bot/es_es/channel_types.json @@ -0,0 +1,13 @@ +{ + "0": "Texto", + "2": "Voz", + "4": "Categoría", + "5": "Anuncio", + "10": "Hilo de anuncio", + "11": "Hilo público", + "12": "Hilo privado", + "13": "Escenario", + "14": "Directorio", + "15": "Foro", + "16": "Medios de comunicación" + } \ No newline at end of file diff --git a/bot/es_es/channel_update_types.json b/bot/es_es/channel_update_types.json new file mode 100644 index 0000000..506110a --- /dev/null +++ b/bot/es_es/channel_update_types.json @@ -0,0 +1,3 @@ +{ + "none": "ninguno" + } \ No newline at end of file diff --git a/bot/es_es/command_responses.json b/bot/es_es/command_responses.json new file mode 100644 index 0000000..880e65e --- /dev/null +++ b/bot/es_es/command_responses.json @@ -0,0 +1,207 @@ +{ + "disable": "Desactivar", + "enable": "Permitir", + "error-401-0": "Error de comando", + "error-401-1-type-0": "No puedo banear a ese usuario", + "error-401-1-type-1": "No puedo expulsar a ese usuario.", + "error-401-1-type-2": "No puedo silenciar a ese usuario.", + "error-401-1-type-3": "No puedo reactivar el silencio de ese usuario.", + "error-403-0": "Permisos insuficientes", + "error-403-1-type-0": "Asegúrese de tener el permiso `BAN_MEMBERS`", + "error-403-1-type-1": "Asegúrese de tener el permiso `KICK_MEMBERS`", + "error-403-1-type-2": "Asegúrese de tener el permiso `MANAGE_ROLES` y de que el rol `Silenciado` esté por debajo de mi rol más alto.", + "error-403-1-type-3": "Asegúrese de tener el permiso `MANAGE_MESSAGES`", + "error-404-0": "Usuario no encontrado", + "error-404-1": "@mencione a un usuario, pegue su ID o escriba su nombre de usuario.", + "error-405-0": "¿Disculpe?", + "error-405-1": "No voy a hacer eso jajaja", + "error-406-0": "no tienes permiso", + "error-407-0": "No tienes el poder para hacer esto.", + "error-409-0-type-0": "Ese usuario ya está baneado.", + "error-409-0-type-1": "Ese usuario ya está silenciado.", + "error-409-0-type-2": "Ese usuario ya está desbaneado", + "error-409-0-type-3": "Ese usuario ya no está silenciado.", + "error-429-0": "Número invalido", + "error-429-1": "Ingrese un número entero válido que esté dentro del rango (1-100)", + "error-430-0": "Ningún mensaje", + "error-430-1": "No se encontraron mensajes para purgar", + "error-431-0": "Enlace de mensaje no válido", + "error-431-1": "Por favor ingrese un enlace de mensaje válido", + "error-432-0": "No es un registro de Quark", + "error-432-1": "Este mensaje no es un registro de Quark válido.", + "error-433-0": "Mensajes de inicio y fin no válidos", + "error-433-1": "El mensaje inicial debe ser anterior al mensaje final.", + "error-434-0": "Diferentes canales", + "error-434-1": "El mensaje inicial y el mensaje final deben pertenecer al mismo canal.", + "error-435-0": "Enfriamiento activo", + "error-435-1": "Este comando sólo se puede utilizar cada 15 minutos.", + "error-try-help-again": "Intente ejecutar el comando de ayuda nuevamente...", + "error-no-modlog": "Sin canal modlog", + "error-invalid-log": "Caso Modlog no encontrado", + "error-timeout-period-too-long-0": "Periodo de tiempo de espera demasiado largo", + "error-timeout-period-too-long-1": "El período de tiempo de espera debe ser inferior a 28 días.", + "response-ban": "Prohibido", + "response-kick": "Golpeado", + "response-mute": "Apagado", + "response-unmute": "no silenciado", + "response-unban": "no prohibido", + "response-purge": "{count} mensajes eliminados", + "response-customise-dash": "¡La configuración de personalización se ha trasladado al [panel web] de Quark!", + "response-customise-1": "Registre mensajes de hasta 2 semanas de antigüedad, personalice registros y mucho más con Quark Pro...", + "response-customise-2": "[Reino Unido, EE. UU., UE] ¡Haz clic en mi perfil para actualizar!", + "response-customise-3": "Ver suscripciones... {proLink}", + "response-customise-4": "Pruebe la personalización del color de forma gratuita en {inventoryLink}", + "response-case-updated": "¡Caso actualizado!", + "response-debug": "¡Registro de depuración enviado!", + "response-status-enabled": "¡Actualizaciones del canal de estado habilitadas!", + "response-status-disabled": "¡Actualizaciones del canal de estado deshabilitadas!", + "target0-command": "objetivo", + "target1-command": "objetivos", + "message0-command": "mensaje", + "executor0-command": "ejecutor", + "executor1-command": "ejecutores", + "channel0-command": "canal", + "channel1-command": "canales", + "serverlog-web-promote": "... ¡o consulte nuestro panel web!", + "serverlog-select": "Seleccione el canal de registro del servidor", + "serverlog-unset": "Canal desarmado", + "serverlog-set": "conjunto de canales", + "serverlog-setchannel": "Canal configurado en {channel}", + "setserverlog-confirm0-set": "Conjunto de canales de registro del servidor", + "setserverlog-confirm0-unset": "Canal de registro del servidor no configurado", + "setserverlog-confirm1-set": "Todos los eventos de registro del servidor ahora se registrarán en este canal.\n\n", + "setserverlog-confirm1-unset": "Ya no recibirá mensajes sobre eventos que ocurran en este servidor a menos que tenga otros canales configurados para enviar los eventos.", + "setserverlog-confirm0-options-set": "Conjunto de canales de registro de servidor {type}", + "setserverlog-confirm0-options-unset": "Canal de registro de servidor {type} no configurado", + "setserverlog-confirm0-options-stoplog": "Registro del servidor {type} Registro detenido", + "setserverlog-confirm1-options-set": "El servidor {type} ahora se grabará en este canal.\n\n", + "setserverlog-confirm1-options-unset": "El servidor {type} ya no se grabará en este canal.\n\n", + "setserverlog-confirm1-options-stoplog": "El servidor {type} ahora seguirá registrado en el canal principal de registro del servidor (si hay uno configurado).\n\n", + "setserverlog-type-members-0": "Miembros", + "setserverlog-type-members-1": "miembros", + "setserverlog-type-actions-0": "Comportamiento", + "setserverlog-type-actions-1": "comportamiento", + "setserverlog-type-text-0": "Eventos de canal de texto", + "setserverlog-type-text-1": "eventos del canal de texto", + "setserverlog-type-voice-0": "Eventos del canal de voz", + "setserverlog-type-voice-1": "eventos del canal de voz", + "setserverlog-type-files-0": "Archivos", + "setserverlog-type-files-1": "archivos", + "setserverlog-type-server-0": "Servidor", + "setserverlog-type-server-1": "servidor", + "setserverlog-type-roles-0": "Eventos de rol", + "setserverlog-type-roles-1": "eventos de rol", + "setserverlog-type-channels-0": "Eventos del canal", + "setserverlog-type-channels-1": "eventos del canal", + "setserverlog-type-modlogs-0": "Modlogs", + "setserverlog-type-modlogs-1": "modlogs", + "setserverlog-type-quark-0": "Eventos de quarks", + "setserverlog-type-quark-1": "eventos de quarks", + "setserverlog-spoilers": "Spoilers", + "setserverlog-spoilers-0": "Spoilers del registro del servidor configurados en {result}", + "setserverlog-enable-status-updates": "¡Habilite las actualizaciones de estado!", + "setserverlog-enable-status-updates-desc": "¡Reciba notificaciones sobre las últimas actualizaciones, tiempos de inactividad y otras comunicaciones importantes de los desarrolladores!", + "setserverlog-enable-status-updates-desc-1": "¡Le recomendamos encarecidamente que habilite esto en uno de sus canales!", + "setserverlog-check-permissions": "Asegúrese de que Quark tenga permiso para enviar mensajes en este canal; de lo contrario, el canal se desactivará.", + "festive-title": "¡Regalo festivo gratis!", + "festive-claim": "¡Reclama tu regalo gratis!", + "help-overview-website-description": "¡Configure y administre Quark fácilmente desde el [panel web]!", + "help-overview-inventory-description": "¡Administre sus suscripciones u obtenga algunas funciones de [Quark Pro] gratis!", + "help-overview-view-inv": "Ver inventario", + "help-overview-help": "Ayuda", + "help-overview-website": "Sitio web", + "help-overview-serverlog": "Registro del servidor", + "help-overview-modlog": "Modlog", + "help-overview-commands": "Comandos", + "help-overview-language": "Idioma", + "help-overview-premium": "De primera calidad", + "help-overview-inventory": "Inventario", + "help-overview-channel-isset": "Canal configurado en {channel}", + "help-overview-channel-isnotset": "Ejecute {command} en el canal deseado", + "help-overview-view-options": "Ejecute {command} para ver opciones", + "help-overview-view-options-and-statuses": "Ejecute {command} para ver estados y opciones", + "help-overview-view-all-commands": "Ejecute {command} para ver los comandos", + "help-overview-change-channel": "Cambie esto ejecutando {command} en el canal deseado.", + "help-overview-manage-premium": "Ejecute {command} para administrar premium", + "language-set": "Establecer idioma en {language}", + "help-serverlog-help": "Ayuda de registro del servidor", + "help-serverlog-0": "Restricciones de canales", + "help-serverlog-1": "Ignorar opciones", + "help-serverlog-2": "Spoilers", + "help-serverlog-0-desc": "Para obtener más control sobre los registros, como seleccionar diferentes canales para diferentes tipos de registros, visite [panel web de Quark]", + "help-serverlog-1-desc": "Para evitar que se registren ciertos canales, usuarios o mensajes, ejecute:\n", + "help-serverlog-2-desc": "Para alternar si se aplican spoilers a todos los medios enviados en el registro del servidor, ejecute: {command}", + "help-serverlog-2-on": "Los spoilers están habilitados.", + "help-serverlog-2-off": "Los spoilers están desactivados.", + "help-commands-help": "Ayuda de comandos", + "help-commands-moderation": "Moderación", + "help-commands-tags": "Etiquetas", + "help-commands-notes": "Notas", + "help-commands-other": "Otro", + "help-notes-help": "Ayuda de notas", + "help-tags-help": "Etiquetas Ayuda", + "help-commands-desc": "Llave:\n``[opcional]`\n", + "help-info": "¿Aún necesitas una mano? ", + "need-to-vote-title": "¡Debes votar para usar este comando!", + "need-to-vote": "Haga clic aquí para votar", + "need-to-vote-footer": "Los votos tardan hasta un minuto en registrarse.", + "initialreactors-expired": "venció", + "initialreactors-notfound": "No se encontraron reacciones", + "configCommand": { + "title": "Configuración del registro del servidor", + "selection": "Seleccione una categoría en el menú para ver la configuración.", + "serverLogDesc": "Canal principal de registro del servidor", + "notSet": "No establecido", + "selectACategory": "Seleccione una categoría", + "overview": "Descripción general", + "formats": { + "log_channels": "Canales de registro", + "configurable_events": "Eventos configurables" + }, + "categories": { + "serverEvents": { + "title": "Miembros", + "description": "Acciones de los miembros (unirse/salir, roles, apodos)" + }, + "textEvents": { + "title": "Mensajes", + "description": "Acciones de mensajes (eliminaciones, ediciones, pines, reacciones)" + }, + "voiceEvents": { + "title": "Voz", + "description": "Acciones del canal de voz (unirse/salir, transmitir, silenciar/ensordecer)" + }, + "serverActions": { + "title": "Acciones del servidor", + "description": "Acciones del servidor (creación/eliminación de invitaciones, emojis)" + }, + "channelEvents": { + "title": "Canales", + "description": "Acciones del canal (creaciones/eliminaciones, permisos)" + }, + "generalEvents": { + "title": "Eventos del servidor", + "description": "Acciones generales (modificaciones del servidor)" + }, + "roleEvents": { + "title": "Roles", + "description": "Acciones de rol (creaciones/eliminaciones, permisos)" + }, + "modLog": { + "title": "Registros de modificación", + "description": "Acciones de moderación (baneos, patadas, silenciamientos)" + }, + "overview": { + "title": "Descripción general", + "description": "Descripción general de las opciones de la categoría principal" + }, + "quarkEvents": { + "title": "Configuración de quarks", + "description": "Cambios realizados en la configuración de Quark para este servidor." + }, + "fileEvents": { + "title": "Archivos" + } + } + } + } \ No newline at end of file diff --git a/bot/es_es/emoji_update_types.json b/bot/es_es/emoji_update_types.json new file mode 100644 index 0000000..506110a --- /dev/null +++ b/bot/es_es/emoji_update_types.json @@ -0,0 +1,3 @@ +{ + "none": "ninguno" + } \ No newline at end of file diff --git a/bot/es_es/gui_constants.json b/bot/es_es/gui_constants.json new file mode 100644 index 0000000..1d60a0d --- /dev/null +++ b/bot/es_es/gui_constants.json @@ -0,0 +1,41 @@ +{ + "channelModificationTypes": { + "name": "Nombre", + "type": "Tipo", + "position": "Posición", + "topic": "Tema", + "rate_limit_per_user": "Modo lento", + "parent_id": "Categoría", + "bitrate": "tasa de bits", + "user_limit": "Límite de usuarios", + "rtc_region": "Región", + "nsfw": "NSFW" + }, + "roleModificationTypes": { + "name": "Nombre", + "color": "Color", + "hoist": "izado", + "managed": "Administrado", + "mentionable": "Mencionable", + "unicode_emoji": "emojis" + }, + "emojiModificationTypes": { + "name": "Nombre" + }, + "guildModificationTypes": { + "name": "Nombre", + "description": "Descripción", + "system_channel_id": "Canal del sistema", + "rules_channel_id": "Canal de reglas", + "mfa_level": "Se requiere MFA", + "verification_level": "Nivel de verificación", + "default_message_notifications": "Notificaciones por defecto", + "explicit_content_filter": "Filtro de contenido explícito", + "nsfw_level": "Nivel NSFW", + "premium_progress_bar_enabled": "Barra de progreso" + }, + "webhookModificationTypes": { + "name": "Nombre", + "channel_id": "Canal" + } + } \ No newline at end of file diff --git a/bot/es_es/guild_update_types.json b/bot/es_es/guild_update_types.json new file mode 100644 index 0000000..929a5ea --- /dev/null +++ b/bot/es_es/guild_update_types.json @@ -0,0 +1,30 @@ +{ + "none": "ninguno", + "system_channel_id": [], + "verification_level": [ + "ninguno", + "bajo", + "medio", + "alto", + "muy_alto" + ], + "default_message_notifications": [ + "todos los mensajes", + "solo menciona" + ], + "explicit_content_filter": [ + "desactivado", + "miembros sin roles", + "todos los miembros" + ], + "nsfw_level": [ + "por defecto", + "explícito", + "seguro", + "edad restringida" + ], + "premium_progress_bar_enabled": { + "true": "activado", + "false": "desactivado" + } + } \ No newline at end of file diff --git a/bot/es_es/ignore_options.json b/bot/es_es/ignore_options.json new file mode 100644 index 0000000..a1e8443 --- /dev/null +++ b/bot/es_es/ignore_options.json @@ -0,0 +1,12 @@ +{ + "ignoreTargets": "Ignorar usuarios objetivo", + "ignoreExecutors": "Ignorar a los ejecutores objetivo", + "specificMessageContent": "Ignorar contenido de mensaje específico", + "ignoreChannels": "Ignorar canales", + "ignoreBotExecutors": "Ignorar a los ejecutores de bots", + "ignoreBotTargets": "Ignorar objetivos de bot", + "ignoreExecutorRoles": "Ignorar roles de ejecutor", + "ignoreTargetRoles": "Ignorar roles objetivo", + "ignoreCategories": "Ignorar categorías", + "activeIgnore": "Ignorar activo" + } \ No newline at end of file diff --git a/bot/es_es/log_categories.json b/bot/es_es/log_categories.json new file mode 100644 index 0000000..5d80022 --- /dev/null +++ b/bot/es_es/log_categories.json @@ -0,0 +1,13 @@ +{ + "serverEvents": "Miembros", + "serverActions": "Comportamiento", + "textEvents": "Mensajes", + "voiceEvents": "Voz", + "fileEvents": "Archivos", + "generalEvents": "Servidor", + "roleEvents": "Roles", + "channelEvents": "Canales", + "quarkEvents": "Configuración de quarks", + "modLog": "Modlogs", + "main": "Principal" + } \ No newline at end of file diff --git a/bot/es_es/log_formats.json b/bot/es_es/log_formats.json new file mode 100644 index 0000000..d848407 --- /dev/null +++ b/bot/es_es/log_formats.json @@ -0,0 +1,7 @@ +{ + "0": "Estándar", + "1": "Compacto", + "2": "Estándar (sin embed)", + "3": "Compacto (sin embed)", + "4": "json" + } \ No newline at end of file diff --git a/bot/es_es/permissions.json b/bot/es_es/permissions.json new file mode 100644 index 0000000..c88e19f --- /dev/null +++ b/bot/es_es/permissions.json @@ -0,0 +1,49 @@ +{ + "CREATE_INSTANT_INVITE": "Crear Invitación Instantánea", + "KICK_MEMBERS": "Expulsar Miembros", + "BAN_MEMBERS": "Banear Miembros", + "ADMINISTRATOR": "Administrador", + "MANAGE_CHANNELS": "Gestionar Canales", + "MANAGE_GUILD": "Gestionar Servidor", + "ADD_REACTIONS": "Añadir Reacciones", + "VIEW_AUDIT_LOG": "Ver Registro De Auditoría", + "PRIORITY_SPEAKER": "Prioridad De Voz", + "STREAM": "Transmitir", + "VIEW_CHANNEL": "Ver Canal", + "SEND_MESSAGES": "Enviar Mensajes", + "SEND_TTS_MESSAGES": "Enviar Mensajes De Texto A Voz", + "MANAGE_MESSAGES": "Gestionar Mensajes", + "EMBED_LINKS": "Insertar Enlaces", + "ATTACH_FILES": "Adjuntar Archivos", + "READ_MESSAGE_HISTORY": "Leer Historial De Mensajes", + "MENTION_EVERYONE": "Mencionar A Todos", + "USE_EXTERNAL_EMOJIS": "Usar Emojis Externos", + "VIEW_GUILD_INSIGHTS": "Ver Información Del Servidor", + "CONNECT": "Conectar", + "SPEAK": "Hablar", + "MUTE_MEMBERS": "Silenciar Miembros", + "DEAFEN_MEMBERS": "Ensordecer Miembros", + "MOVE_MEMBERS": "Mover Miembros", + "USE_VAD": "Usar Actividad De Voz", + "CHANGE_NICKNAME": "Cambiar Apodo", + "MANAGE_NICKNAMES": "Gestionar Apodos", + "MANAGE_ROLES": "Gestionar Roles", + "MANAGE_WEBHOOKS": "Gestionar Webhooks", + "MANAGE_EMOJIS": "Gestionar Emojis", + "USE_SLASH_COMMANDS": "Usar Comandos De Barra", + "REQUEST_TO_SPEAK": "Solicitar Hablar", + "MANAGE_THREADS": "Gestionar Hilos", + "USE_PUBLIC_THREADS": "Usar Hilos Públicos", + "USE_PRIVATE_THREADS": "Usar Hilos Privados", + "USE_EXTERNAL_STICKERS": "Usar Stickers Externos", + "SEND_MESSAGES_IN_THREADS": "Enviar Mensajes En Hilos", + "USE_EMBEDDED_ACTIVITIES": "Usar Actividades Integradas", + "MODERATE_MEMBERS": "Moderar Miembros", + "VIEW_CREATOR_MONETIZATION_ANALYTICS": "Ver Análisis De Monetización De Creadores", + "USE_SOUNDBOARD": "Usar Tablero De Sonidos", + "CREATE_GUILD_EXPRESSIONS": "Crear Expresiones Del Servidor", + "CREATE_EVENTS": "Crear Eventos", + "USE_EXTERNAL_SOUNDS": "Usar Sonidos Externos", + "SEND_VOICE_MESSAGES": "Enviar Mensajes De Voz", + "SEND_POLLS": "Enviar Encuestas" + } \ No newline at end of file diff --git a/bot/es_es/role_update_types.json b/bot/es_es/role_update_types.json new file mode 100644 index 0000000..b722cba --- /dev/null +++ b/bot/es_es/role_update_types.json @@ -0,0 +1,5 @@ +{ + "enabled": "activado", + "disabled": "desactivado", + "none": "ninguno" + } \ No newline at end of file diff --git a/bot/es_es/slash_commands/ban.json b/bot/es_es/slash_commands/ban.json new file mode 100644 index 0000000..c0033b0 --- /dev/null +++ b/bot/es_es/slash_commands/ban.json @@ -0,0 +1,18 @@ +{ + "name": "ban", + "description": "Prohibir a un usuario", + "commandOptions": { + "userOption": { + "name": "usuario", + "description": "El usuario a prohibir" + }, + "reasonOption": { + "name": "razón", + "description": "El motivo de la prohibición del usuario." + }, + "deleteMessageDaysOption": { + "name": "borrar", + "description": "Número de días de mensajes de usuario para eliminar" + } + } + } \ No newline at end of file diff --git a/bot/es_es/slash_commands/commands.json b/bot/es_es/slash_commands/commands.json new file mode 100644 index 0000000..7d1d198 --- /dev/null +++ b/bot/es_es/slash_commands/commands.json @@ -0,0 +1,4 @@ +{ + "name": "commands", + "description": "Ver una lista de comandos de Quark" + } \ No newline at end of file diff --git a/bot/es_es/slash_commands/config.json b/bot/es_es/slash_commands/config.json new file mode 100644 index 0000000..51a1d5e --- /dev/null +++ b/bot/es_es/slash_commands/config.json @@ -0,0 +1,18 @@ +{ + "name": "config", + "description": "Ver la configuración de Quark para su servidor", + "commandOptions": { + "format": { + "name": "formato", + "description": "El tipo de configuración que desea ver", + "choices": { + "log_channels": { + "label": "Canales de registro" + }, + "configurable_events": { + "label": "Eventos configurables" + } + } + } + } + } \ No newline at end of file diff --git a/bot/es_es/slash_commands/dashboard.json b/bot/es_es/slash_commands/dashboard.json new file mode 100644 index 0000000..0c08d1c --- /dev/null +++ b/bot/es_es/slash_commands/dashboard.json @@ -0,0 +1,4 @@ +{ + "name": "dashboard", + "description": "Visite el panel web de Quark" + } \ No newline at end of file diff --git a/bot/es_es/slash_commands/debug.json b/bot/es_es/slash_commands/debug.json new file mode 100644 index 0000000..c9e41e2 --- /dev/null +++ b/bot/es_es/slash_commands/debug.json @@ -0,0 +1,10 @@ +{ + "name": "debug", + "description": "Generar un informe de depuración para este servidor", + "commandOptions": { + "shareOption": { + "name": "compartir", + "description": "Elija si desea compartir este informe de depuración con los desarrolladores" + } + } + } \ No newline at end of file diff --git a/bot/es_es/slash_commands/export.json b/bot/es_es/slash_commands/export.json new file mode 100644 index 0000000..e803b01 --- /dev/null +++ b/bot/es_es/slash_commands/export.json @@ -0,0 +1,26 @@ +{ + "name": "export", + "description": "Exportar un grupo de registros", + "commandOptions": { + "startOption": { + "name": "comenzar", + "description": "El enlace del mensaje del primer registro desde el que comenzar a exportar" + }, + "endOption": { + "name": "fin", + "description": "El enlace del mensaje del último registro desde el que exportar" + }, + "formatOption": { + "name": "formato", + "description": "El formato de los registros exportados.", + "choices": { + "json": { + "name": "json" + }, + "pretty": { + "name": "bonito" + } + } + } + } + } \ No newline at end of file diff --git a/bot/es_es/slash_commands/help.json b/bot/es_es/slash_commands/help.json new file mode 100644 index 0000000..c829680 --- /dev/null +++ b/bot/es_es/slash_commands/help.json @@ -0,0 +1,14 @@ +{ + "name": "help", + "description": "Obtenga ayuda con Quark", + "commandOptions": { + "overviewOption": { + "name": "descripción general", + "description": "Ver información de ayuda general" + }, + "serverlogOption": { + "name": "registro del servidor", + "description": "Obtenga ayuda con los registros del servidor de Quark" + } + } + } \ No newline at end of file diff --git a/bot/es_es/slash_commands/initialReactor.json b/bot/es_es/slash_commands/initialReactor.json new file mode 100644 index 0000000..e3e43c6 --- /dev/null +++ b/bot/es_es/slash_commands/initialReactor.json @@ -0,0 +1,3 @@ +{ + "name": "Ver reactores iniciales" + } \ No newline at end of file diff --git a/bot/es_es/slash_commands/invite.json b/bot/es_es/slash_commands/invite.json new file mode 100644 index 0000000..967d57c --- /dev/null +++ b/bot/es_es/slash_commands/invite.json @@ -0,0 +1,4 @@ +{ + "name": "invite", + "description": "Invita a Quark a tu servidor" + } \ No newline at end of file diff --git a/bot/es_es/slash_commands/kick.json b/bot/es_es/slash_commands/kick.json new file mode 100644 index 0000000..39e8f7e --- /dev/null +++ b/bot/es_es/slash_commands/kick.json @@ -0,0 +1,14 @@ +{ + "name": "kick", + "description": "Expulsar a un usuario", + "commandOptions": { + "userOption": { + "name": "usuario", + "description": "El usuario a expulsar" + }, + "reasonOption": { + "name": "razón", + "description": "El motivo de expulsar al usuario." + } + } + } \ No newline at end of file diff --git a/bot/es_es/slash_commands/language.json b/bot/es_es/slash_commands/language.json new file mode 100644 index 0000000..b7f31e0 --- /dev/null +++ b/bot/es_es/slash_commands/language.json @@ -0,0 +1,10 @@ +{ + "name": "language", + "description": "Cambiar el idioma de Quark", + "commandOptions": { + "languageOption": { + "name": "idioma", + "description": "Establecer el idioma del bot para este servidor" + } + } + } \ No newline at end of file diff --git a/bot/es_es/slash_commands/mute.json b/bot/es_es/slash_commands/mute.json new file mode 100644 index 0000000..26b1612 --- /dev/null +++ b/bot/es_es/slash_commands/mute.json @@ -0,0 +1,33 @@ +{ + "name": "mute", + "description": "Silenciar a un usuario", + "commandOptions": { + "userOption": { + "name": "usuario", + "description": "El usuario a silenciar" + }, + "timeOption": { + "name": "tiempo", + "description": "Período de tiempo para el tiempo de espera del usuario. " + }, + "typeOption": { + "name": "tipo", + "description": "Unidades para el campo \"tiempo\". ", + "choices": { + "minutes": { + "name": "minutos" + }, + "hours": { + "name": "horas" + }, + "days": { + "name": "días" + } + } + }, + "reasonOption": { + "name": "razón", + "description": "El motivo para silenciar al usuario." + } + } + } \ No newline at end of file diff --git a/bot/es_es/slash_commands/ping.json b/bot/es_es/slash_commands/ping.json new file mode 100644 index 0000000..f2ea1af --- /dev/null +++ b/bot/es_es/slash_commands/ping.json @@ -0,0 +1,4 @@ +{ + "name": "ping", + "description": "Pong?" +} diff --git a/bot/es_es/slash_commands/premium.json b/bot/es_es/slash_commands/premium.json new file mode 100644 index 0000000..0477266 --- /dev/null +++ b/bot/es_es/slash_commands/premium.json @@ -0,0 +1,4 @@ +{ + "name": "premium", + "description": "Obtén información sobre las suscripciones premium que tiene Quark" + } \ No newline at end of file diff --git a/bot/es_es/slash_commands/privacy.json b/bot/es_es/slash_commands/privacy.json new file mode 100644 index 0000000..6d52261 --- /dev/null +++ b/bot/es_es/slash_commands/privacy.json @@ -0,0 +1,4 @@ +{ + "name": "privacy", + "description": "Ver la política de privacidad de Quark" + } \ No newline at end of file diff --git a/bot/es_es/slash_commands/purge.json b/bot/es_es/slash_commands/purge.json new file mode 100644 index 0000000..c94e67b --- /dev/null +++ b/bot/es_es/slash_commands/purge.json @@ -0,0 +1,10 @@ +{ + "name": "purge", + "description": "Purgar mensajes del canal", + "commandOptions": { + "countOption": { + "name": "contar", + "description": "Número de mensajes para eliminar (2-100)" + } + } + } \ No newline at end of file diff --git a/bot/es_es/slash_commands/reason.json b/bot/es_es/slash_commands/reason.json new file mode 100644 index 0000000..42663c4 --- /dev/null +++ b/bot/es_es/slash_commands/reason.json @@ -0,0 +1,14 @@ +{ + "name": "reason", + "description": "Modificar el motivo en un modlog", + "commandOptions": { + "caseOption": { + "name": "caso", + "description": "ID de mensaje del modlog a modificar" + }, + "reasonOption": { + "name": "razón", + "description": "La nueva razón para actualizar el caso modlog con" + } + } + } \ No newline at end of file diff --git a/bot/es_es/slash_commands/serverlog.json b/bot/es_es/slash_commands/serverlog.json new file mode 100644 index 0000000..bba89e5 --- /dev/null +++ b/bot/es_es/slash_commands/serverlog.json @@ -0,0 +1,58 @@ +{ + "name": "serverlog", + "description": "Registro del servidor", + "commandOptions": { + "channelOptionAllChannel": { + "name": "canal", + "description": "Seleccione el canal de registro" + }, + "channelOptionAll": { + "name": "todo", + "description": "Alternar canal para que no registre todos los tipos de registros" + }, + "channelOption": { + "name": "canal", + "description": "Establecer el canal de registro del servidor" + }, + "targetUserOption": { + "name": "usuario", + "description": "Seleccione un objetivo" + }, + "ignoreOptionTarget": { + "name": "objetivo", + "description": "Los objetivos son las personas que realizan la acción." + }, + "messageContentOption": { + "name": "contenido", + "description": "Agregar o eliminar un mensaje de la lista de ignorados" + }, + "ignoreOptionMessage": { + "name": "mensaje", + "description": "Los mensajes con este contenido exacto no se registran en el registro del servidor." + }, + "executorUserOption": { + "name": "usuario", + "description": "Seleccione un ejecutor" + }, + "ignoreOptionExecutor": { + "name": "ejecutor", + "description": "Los ejecutores son personas que llevan a cabo la acción." + }, + "ignoreOptionsChannelChannel": { + "name": "canal", + "description": "Agregar o eliminar un canal de la lista de ignorados" + }, + "ignoreOptionChannel": { + "name": "canal", + "description": "Los mensajes en este canal no se registran en el registro del servidor." + }, + "ignoreOption": { + "name": "ignorar", + "description": "Ignorar opciones" + }, + "spoilersOption": { + "name": "spoilers", + "description": "Spoiler todos los medios enviados al serverlog" + } + } + } \ No newline at end of file diff --git a/bot/es_es/slash_commands/tags.json b/bot/es_es/slash_commands/tags.json new file mode 100644 index 0000000..56ab6bf --- /dev/null +++ b/bot/es_es/slash_commands/tags.json @@ -0,0 +1,66 @@ +{ + "name": "tags", + "description": "Etiquetas", + "commandOptions": { + "sendOptionTag": { + "name": "etiqueta", + "description": "Nombre de la etiqueta a enviar" + }, + "sendOptionUser": { + "name": "usuario", + "description": "Menciona a un usuario para una mejor visibilidad." + }, + "sendOption": { + "name": "enviar", + "description": "Enviar una etiqueta" + }, + "editOptionTag": { + "name": "etiqueta", + "description": "Nombre de la etiqueta a editar" + }, + "editOptionText": { + "name": "texto", + "description": "Texto para mostrar en la etiqueta" + }, + "editOptionColour": { + "name": "color", + "description": "El código de color hexadecimal para la etiqueta." + }, + "editOptionImage": { + "name": "imagen", + "description": "Una URL para que una imagen se muestre en la etiqueta" + }, + "editOption": { + "name": "editar", + "description": "Editar una etiqueta" + }, + "createOptionTag": { + "name": "etiqueta", + "description": "Nombre de la etiqueta a crear" + }, + "createOptionText": { + "name": "texto", + "description": "Texto para mostrar en la etiqueta" + }, + "createOption": { + "name": "crear", + "description": "Crear una etiqueta" + }, + "deleteOptionTag": { + "name": "etiqueta", + "description": "Nombre de la etiqueta a eliminar" + }, + "deleteOption": { + "name": "borrar", + "description": "Eliminar una etiqueta" + }, + "listOption": { + "name": "lista", + "description": "Listar todas las etiquetas" + }, + "helpOption": { + "name": "ayuda", + "description": "Obtén ayuda con las etiquetas" + } + } + } \ No newline at end of file diff --git a/bot/es_es/slash_commands/unban.json b/bot/es_es/slash_commands/unban.json new file mode 100644 index 0000000..fa287ad --- /dev/null +++ b/bot/es_es/slash_commands/unban.json @@ -0,0 +1,14 @@ +{ + "name": "unban", + "description": "Desbanear a un usuario", + "commandOptions": { + "userOption": { + "name": "ID de usuario", + "description": "El ID del usuario a desbanear" + }, + "reasonOption": { + "name": "razón", + "description": "El motivo para desbanear al usuario." + } + } + } \ No newline at end of file diff --git a/bot/es_es/slash_commands/unmute.json b/bot/es_es/slash_commands/unmute.json new file mode 100644 index 0000000..c928c38 --- /dev/null +++ b/bot/es_es/slash_commands/unmute.json @@ -0,0 +1,14 @@ +{ + "name": "unmute", + "description": "Dejar de silenciar a un usuario", + "commandOptions": { + "userOption": { + "name": "usuario", + "description": "El usuario para activar el silencio." + }, + "reasonOption": { + "name": "razón", + "description": "El motivo para reactivar el silencio del usuario." + } + } + } \ No newline at end of file diff --git a/bot/es_es/standard/channelEvents.json b/bot/es_es/standard/channelEvents.json new file mode 100644 index 0000000..3f6c6df --- /dev/null +++ b/bot/es_es/standard/channelEvents.json @@ -0,0 +1,62 @@ +{ + "channelCreated": { + "title": "{type} Canal creado", + "description": "{channel} fue creado por {executor}", + "descriptionWithCategory": "{channel} fue creado por {executor} en la categoría {categoría}." + }, + "channelDeleted": { + "title": "{type} Canal eliminado", + "description": "{channel_name} fue eliminado por {executor}", + "channel": "Canal" + }, + "channelUpdated": { + "title": "{type} Canal modificado", + "description": "{channel} fue modificado por {executor}" + }, + "channelOverwriteCreate": { + "title": "{type} Permisos de canal agregados", + "description": "{executor} agregó permisos a {channel} para {special}" + }, + "channelOverwriteDelete": { + "title": "{type} Permisos de canal eliminados", + "description": "{executor} eliminó permisos de {channel} para {especial}" + }, + "channelOverwriteUpdate": { + "title": "{type} Permisos de canal actualizados", + "description": "{executor} permisos actualizados para {channel} para {special}", + "newPermissions": "Nuevos permisos", + "viewFullNewPermissions": "Ver permisos nuevos completos" + }, + "webhookCreate": { + "title": "Webhook creado", + "description": "{executor} creó un webhook {webhook} en {channel}" + }, + "webhookDelete": { + "title": "Webhook eliminado", + "description": "{executor} eliminó el webhook {webhook}" + }, + "webhookUpdate": { + "title": "Webhook modificado", + "description": "{executor} modificó el webhook {webhook}" + }, + "webhookAvatarUpdate": { + "title": "Avatar de webhook actualizado", + "description": "{executor} actualizó el avatar de {webhook}", + "description_added": "{executor} agregó un avatar para {webhook}", + "description_removed": "{executor} eliminó el avatar de {webhook}", + "linkToOldAvatar": "Enlace al avatar antiguo", + "linkToNewAvatar": "Enlace al nuevo avatar" + }, + "statusChannelFollowed": { + "title": "Canal seguido", + "description": "{executor} siguió el canal {name} en {channel}" + }, + "statusChannelUnfollowed": { + "title": "Canal no seguido", + "description": "{executor} dejó de seguir el canal {name}" + }, + "statusChannelUpdated": { + "title": "Canal seguido actualizado", + "description": "{executor} actualizó el canal seguido {name}" + } + } \ No newline at end of file diff --git a/bot/es_es/standard/generalEvents.json b/bot/es_es/standard/generalEvents.json new file mode 100644 index 0000000..b71033e --- /dev/null +++ b/bot/es_es/standard/generalEvents.json @@ -0,0 +1,30 @@ +{ + "serverModified": { + "title": "Servidor modificado", + "description": "Este servidor fue modificado por {executor}" + }, + "serverIconUpdated": { + "title": "Icono del servidor actualizado", + "description": "{executor} actualizó el ícono del servidor", + "description_added": "{executor} agregó un ícono de servidor", + "description_removed": "{executor} eliminó el icono del servidor", + "linkToOldIcon": "Enlace al icono antiguo", + "linkToNewIcon": "Enlace al nuevo icono" + }, + "serverBoostAdd": { + "title": "Servidor impulsado", + "description": "{user} impulsó este servidor 🎉", + "description_noUser": "Alguien impulsó este servidor 🎉", + "description_withTier": "{user} impulsó este servidor al nivel {tier} 🎉", + "description_withTier_noUser": "Alguien impulsó este servidor al nivel {tier} 🎉", + "none": "ninguno" + }, + "serverBoostRemove": { + "title": "Se eliminó el impulso del servidor", + "description": "{user} dejó de impulsar este servidor", + "description_noUser": "Alguien dejó de impulsar este servidor.", + "description_withTier": "{user} dejó de impulsarse, lo que provocó que el servidor cayera al nivel {tier}", + "description_withTier_noUser": "Alguien dejó de impulsar, lo que provocó que el servidor cayera al nivel {tier}", + "none": "ninguno" + } + } \ No newline at end of file diff --git a/bot/es_es/standard/modlog.json b/bot/es_es/standard/modlog.json new file mode 100644 index 0000000..6a8d8a7 --- /dev/null +++ b/bot/es_es/standard/modlog.json @@ -0,0 +1,20 @@ +{ + "moderator": "Moderador", + "user": "Usuario", + "reason": "Razón", + "case": "Caso", + "noReason": "Moderador: ejecute {command}", + "noReasonBrief": "Ejecutar {command}", + "ban": "Prohibición", + "unban": "Desbanear", + "kick": "Patada", + "mute": "Se acabó el tiempo", + "unmute": "Tiempo de espera eliminado", + "timeoutEnds": "El tiempo de espera finaliza {time}", + "editReason": "Editar motivo", + "reasonModal": { + "label": "Razón", + "placeholder": "Estando muy mal >:(", + "title": "Modificar el motivo del modlog" + } + } \ No newline at end of file diff --git a/bot/es_es/standard/quarkEvents.json b/bot/es_es/standard/quarkEvents.json new file mode 100644 index 0000000..2c7cec9 --- /dev/null +++ b/bot/es_es/standard/quarkEvents.json @@ -0,0 +1,64 @@ +{ + "serverlogChannelUpdate": { + "title": "Canal de registro cambiado", + "description_set": "{executor} establece el canal de registro {type} en {channel}", + "description_category_disable": "{executor} deshabilitó el canal de registro {type}", + "description_unset": "{executor} desarmar el canal de registro {type}" + }, + "serverlogOptionsUpdate": { + "title": "Opciones de registro actualizadas", + "description": "{executor} establece {option} en {state}", + "pluralkitSupport": "Soporte de PluralKit", + "spoilers": "Spoilers", + "buttons": "Botones", + "formatType": "Tipo de formato" + }, + "serverlogLogUpdate": { + "title": "Registro actualizado", + "description": "{executor} actualizó el registro de {type}", + "enabled": "Activado", + "logFormat": "Formato", + "logChannel": "Canal", + "colour": "Color", + "ignoreBotExecutors": "Ignorar a los ejecutores de bots", + "ignoreBotTargets": "Ignorar objetivos de bot", + "activeIgnore": "Ignorar activo" + }, + "serverlogIgnoreUpdate": { + "title": "Ignorar opciones actualizadas", + "description_set": "{executor} habilitado {type}", + "description_unset": "{executor} deshabilitado {type}", + "description_added": "{executor} agregó {objetivo} a {type}", + "description_removed": "{executor} eliminó a {objetivo} de {type}" + }, + "languageUpdate": { + "title": "Idioma cambiado", + "description": "{executor} cambió el idioma a {language}" + }, + "reset": { + "title": "Restablecer configuración", + "description": "{executor} restablece la configuración de este servidor" + }, + "tagAdded": { + "title": "Etiqueta agregada", + "description": "{executor} creó una etiqueta {tag}" + }, + "tagUpdated": { + "title": "Etiqueta actualizada", + "description": "{executor} actualizó la etiqueta {tag}" + }, + "tagDeleted": { + "title": "Etiqueta eliminada", + "description": "{executor} eliminó la etiqueta {tag}" + }, + "tokenAdded": { + "title": "Token generado", + "description": "{executor} generó un token de acceso de Quark con permisos {permissions} para este servidor", + "unique_id": "ID de token", + "revoke": "Revocar este token" + }, + "tokenRevoked": { + "title": "Token revocado", + "description": "{executor} revocó el token de acceso de Quark con ID {token}" + } + } \ No newline at end of file diff --git a/bot/es_es/standard/roleEvents.json b/bot/es_es/standard/roleEvents.json new file mode 100644 index 0000000..54a7a69 --- /dev/null +++ b/bot/es_es/standard/roleEvents.json @@ -0,0 +1,32 @@ +{ + "roleCreated": { + "title": "Rol creado", + "description": "{role} fue creado por {executor}" + }, + "roleDeleted": { + "title": "Rol eliminado", + "description": "{role_name} fue eliminado por {executor}", + "role": "Role", + "linkToRoleIcon": "Enlace al icono de rol" + }, + "roleUpdated": { + "title": "Rol modificado", + "description": "{role} fue modificado por {executor}" + }, + "rolePermissionsUpdate": { + "title": "Permisos de rol actualizados", + "description": "Los permisos para {role} fueron actualizados por {executor}", + "newPermissions": "Nuevos permisos", + "oldPermissions": "Permisos antiguos", + "viewFullNewPermissions": "Ver permisos nuevos completos", + "viewFullOldPermissions": "Ver permisos antiguos completos" + }, + "roleIconUpdate": { + "title": "Icono de rol actualizado", + "description": "{executor} actualizó el ícono de {role}", + "description_added": "{executor} agregó un ícono para {role}", + "description_removed": "{executor} eliminó el ícono de {role}", + "linkToOldIcon": "Enlace al icono antiguo", + "linkToNewIcon": "Enlace al nuevo icono" + } + } \ No newline at end of file diff --git a/bot/es_es/standard/serverActions.json b/bot/es_es/standard/serverActions.json new file mode 100644 index 0000000..06a0671 --- /dev/null +++ b/bot/es_es/standard/serverActions.json @@ -0,0 +1,53 @@ +{ + "inviteCreate": { + "title": "Invitación creada", + "description_withInviter": "{inviter} creó una invitación {invite} para {channel}", + "description_withoutInviter": "Se creó una invitación {invite} para {channel}", + "expires": "Vence", + "never": "Nunca", + "maxUses": "Usos máximos", + "none": "ninguno" + }, + "inviteDelete": { + "title": "Invitación eliminada", + "description_withExecutor": "{executor} eliminó una invitación {invite} para {channel}", + "description_withoutExecutor": "Se eliminó una invitación {invite} para {channel}", + "used": "Usado", + "created": "Creado por", + "none": "ninguno" + }, + "emojiCreated": { + "title": "Emoji creado", + "description": "{emoji} fue agregado por {executor}" + }, + "emojiDeleted": { + "title": "Emoji eliminado", + "description": "{emoji} fue eliminado por {executor}", + "emoji": "emojis" + }, + "emojiUpdated": { + "title": "Emoji editado", + "description": "{emoji} fue editado por {executor}" + }, + "serverEventCreate": { + "title": "Evento creado", + "description_withChannel": "{executor} creó un evento {name} en {channel}", + "description_withoutChannel": "{executor} creó un evento {name}", + "eventDescription": "Descripción", + "location": "Ubicación", + "starts": "Empieza" + }, + "serverEventDelete": { + "title": "Evento eliminado", + "description": "{executor} eliminó el evento {name}", + "linkToEventImage": "Enlace a la imagen del evento" + }, + "serverEventUpdate": { + "title": "Evento actualizado", + "description": "{executor} actualizó el evento {name}", + "newEventDescription": "Nueva descripción", + "newLocation": "Nueva ubicacion", + "newChannel": "Nuevo canal", + "linkToEventImage": "Enlace a imagen antigua del evento" + } + } \ No newline at end of file diff --git a/bot/es_es/standard/serverEvents.json b/bot/es_es/standard/serverEvents.json new file mode 100644 index 0000000..3badda1 --- /dev/null +++ b/bot/es_es/standard/serverEvents.json @@ -0,0 +1,70 @@ +{ + "members": "Miembros", + "userJoined": { + "title": "Usuario unido", + "description": "{user} se unió al servidor", + "noAvatar": "La cuenta no tiene avatar.", + "newAccount": "La cuenta es nueva", + "noBadges": "La cuenta no tiene insignias", + "warning": "¡ADVERTENCIA!", + "accountCreated": "Cuenta creada", + "invite": "Invitar", + "createdBy": "creado por {user}", + "ban": "Prohibición", + "info": "Información", + "rejoined": "Cuenta reincorporada" + }, + "userLeft": { + "title": "Usuario izquierdo", + "description": "{user} abandonó el servidor", + "joined": "Unido", + "roles": "Roles", + "serverProfilePicture": "Enlace al avatar del servidor" + }, + "botAdded": { + "title": "Bot agregado", + "description": "{bot} fue agregado al servidor por {executor}", + "descriptionne": "{bot} fue agregado al servidor" + }, + "botRemoved": { + "title": "Bot eliminado", + "description": "{bot} fue eliminado del servidor por {executor}", + "descriptionne": "{bot} fue eliminado del servidor" + }, + "nicknameUpdate": { + "title": "Apodo actualizado", + "description": "El apodo de {user} se cambió de {oldNickname} a {newNickname}", + "setNick": "El apodo de {user} se estableció en **{newNickname}**", + "nickRemoved": "Se eliminó el apodo de {user}, **{oldNickname}**", + "changedBy": "Cambiado por" + }, + "memberRoleAdd": { + "title": "Rol asignado", + "title_multiple": "Roles asignados", + "description": "A {user} se le asignó el rol {role}", + "description_multiple": "A {user} se le asignaron múltiples roles", + "givenBy": "Dada por", + "roles": "Roles" + }, + "memberRoleRemove": { + "title": "Rol asumido", + "title_multiple": "Roles asumidos", + "description": "El rol {role} fue eliminado de {user}", + "description_multiple": "Se eliminaron varios roles de {user}", + "removedBy": "Eliminado por", + "roles": "Roles" + }, + "memberPrune": { + "title": "Miembros podados", + "description": "{count} miembros con al menos {time} días de inactividad fueron eliminados por {executor}" + }, + "avatarUpdate": { + "title": "Avatar del servidor cambiado", + "description": "{user} cambió su avatar de servidor", + "description_added": "{user} agregó un avatar de servidor", + "description_removed": "{user} eliminó su avatar del servidor", + "changedBy": "Cambiado por", + "linkToOldAvatar": "Enlace al avatar antiguo", + "linkToNewAvatar": "Enlace al nuevo avatar" + } + } \ No newline at end of file diff --git a/bot/es_es/standard/textEvents.json b/bot/es_es/standard/textEvents.json new file mode 100644 index 0000000..0f7674a --- /dev/null +++ b/bot/es_es/standard/textEvents.json @@ -0,0 +1,92 @@ +{ + "polls": { + "poll": "Encuesta", + "pollDescriptor": "[encuesta]", + "status": "La encuesta tiene estado.", + "ended": "terminó", + "notEnded": "no terminó", + "multiselect": "Selección múltiple", + "enabled": "activado", + "disabled": "desactivado", + "ends": "Termina", + "vote": "votar", + "votes": "votos", + "noResponses": "Sin respuestas" + }, + "messageDeleted": { + "title": "Mensaje borrado", + "author": "Autor del mensaje", + "channel": "Canal", + "deletedBy": "Eliminado por", + "jumpToContext": "Saltar al contexto", + "warning": "¡ADVERTENCIA!", + "linksToEmojis": "Enlaces a emojis", + "linksToFiles": "Enlaces a archivos", + "inviteDetected": "Invitación al servidor detectada", + "ghostpingDetected": "Imágenes fantasma detectadas", + "file": "archivo", + "files": "archivos", + "fileExpired": "archivo demasiado grande o caducado", + "filesExpired": "archivos demasiado grandes o caducados", + "sticker": "pegatina", + "noContent": "sin contenido", + "embed": "empotrar", + "thread": "Hilo", + "initialReactor": "reactor inicial" + }, + "messagesBulkDeleted": { + "title": "Varios mensajes eliminados", + "deletedBy": "Eliminado por", + "channel": "Canal", + "more": "más", + "uncachedUser": "usuario sin caché", + "uncachedChannel": "canal sin caché", + "uncachedMessage": "mensaje sin caché", + "embed": "empotrar", + "errorFile": "Hubo un problema con la recuperación de los archivos. ", + "errorText": "Hubo un problema con la creación de un archivo de texto. " + }, + "messageUpdate": { + "title": "Mensaje editado", + "author": "Autor del mensaje", + "channel": "Canal", + "jumpToMessage": "Saltar al mensaje", + "afterEdit": "Después de editar", + "diff": "Ediciones", + "diffError": "No se pueden calcular las ediciones.", + "cannotRetrieveOriginal": "No se puede recuperar el mensaje original", + "noContent": "sin contenido", + "thread": "Hilo" + }, + "attachmentDeleted": { + "title": "Adjunto eliminado" + }, + "messagePin": { + "title": "Mensaje fijado", + "description": "{executor} fijó un mensaje" + }, + "messageUnpin": { + "title": "Mensaje no fijado", + "description": "{executor} desanuló un mensaje" + }, + "threadCreate": { + "thread": "Hilo", + "channel": "Canal", + "jumpToContext": "Saltar al contexto", + "title": "Hilo creado", + "description": "{member} creó un nuevo hilo {thread}" + }, + "threadDelete": { + "thread": "Hilo", + "channel": "Canal", + "title": "Hilo eliminado", + "description": "{executor} eliminó un hilo {thread}" + }, + "messageReactionRemove": { + "title": "Reacción eliminada", + "description": "{executor} eliminó una reacción de un mensaje", + "emoji": "emojis", + "linkToEmoji": "Enlace a emojis", + "jumpToMessage": "Saltar al mensaje" + } + } \ No newline at end of file diff --git a/bot/es_es/standard/voiceEvents.json b/bot/es_es/standard/voiceEvents.json new file mode 100644 index 0000000..4dda310 --- /dev/null +++ b/bot/es_es/standard/voiceEvents.json @@ -0,0 +1,104 @@ +{ + "streamStart": { + "title": "Transmisión iniciada", + "description": "{user} comenzó a transmitir en el canal de voz {channel}" + }, + "streamStop": { + "title": "Transmisión finalizada", + "description": "{user} dejó de transmitir en el canal de voz {channel}" + }, + "videoStart": { + "title": "Vídeo iniciado", + "description": "{user} comenzó su video en el canal de voz {channel}" + }, + "videoStop": { + "title": "Vídeo detenido", + "description": "{user} detuvo su video en el canal de voz {channel}" + }, + "voiceSwitch": { + "title": "Canal cambiado", + "description": "{user} pasó del canal de voz {channel_old} al canal de voz {channel_new}" + }, + "voiceMove": { + "title": "Movido", + "description": "{user} fue movido del canal de voz {channel_old} al canal de voz {channel_new}", + "movedBy": "Llevado por" + }, + "voiceJoin": { + "title": "Canal unido", + "description": "{user} se unió al canal de voz {channel}" + }, + "voiceLeave": { + "title": "Canal izquierdo", + "description": "{user} abandonó el canal de voz {channel}", + "joined": "Unido", + "joinedValue": "{relative} para {relative_fixed}" + }, + "voiceDisconnect": { + "title": "Desconectado", + "description": "{user} fue desconectado", + "disconnectedBy": "Desconectado por", + "voiceChannel": "Canal de voz" + }, + "serverDeafen": { + "title": "ensordecido", + "description": "{user} quedó sordo", + "deafenedBy": "ensordecido por", + "voiceChannel": "Canal de voz" + }, + "serverMute": { + "title": "Apagado", + "description": "{user} fue silenciado", + "mutedBy": "Silenciado por", + "voiceChannel": "Canal de voz" + }, + "serverUndeafen": { + "title": "sordos", + "description": "{user} estaba sordo", + "undeafenedBy": "Ensordecido por", + "voiceChannel": "Canal de voz" + }, + "serverUnmute": { + "title": "no silenciado", + "description": "{user} fue activado", + "unmutedBy": "No silenciado por", + "voiceChannel": "Canal de voz" + }, + "channelStatusUpdate": { + "title": "Estado del canal de voz actualizado", + "description": "{executor} establece el estado de {channel}", + "status": "Estado", + "linksToEmojis": "Enlaces a emojis" + }, + "stageStarted": { + "title": "Etapa iniciada", + "description": "{executor} inició una etapa en {channel}", + "topic": "Tema" + }, + "stageEnded": { + "title": "Etapa terminada", + "description": "La etapa en {channel} fue finalizada por {executor}", + "description_noExecutor": "La etapa en {channel} terminó", + "topic": "Tema", + "none": "ninguno" + }, + "stageUpdated": { + "title": "Etapa actualizada", + "description": "La etapa en {channel} fue actualizada por {executor}", + "oldTopic": "Tema antiguo", + "newTopic": "Nuevo tema" + }, + "stageSpeakerAdd": { + "title": "Nuevo altavoz de escenario", + "description": "{user} se convirtió en orador en el canal del escenario {channel}", + "description_inviteAccepted": "{user} aceptó la invitación para convertirse en orador en el canal del escenario {channel}" + }, + "stageSpeakerRemove": { + "title": "dejó de hablar", + "description": "{user} ya no es un orador en el canal de escenario {channel}" + }, + "stageSpeakerInvited": { + "title": "Orador invitado", + "description": "{user} fue invitado a hablar en el canal del escenario {channel}" + } + } \ No newline at end of file diff --git a/bot/es_es/tags_responses.json b/bot/es_es/tags_responses.json new file mode 100644 index 0000000..54bf873 --- /dev/null +++ b/bot/es_es/tags_responses.json @@ -0,0 +1,26 @@ +{ + "tags-help-description": "Las etiquetas son una forma de presentar información frecuente a los usuarios de manera fácil y eficiente mediante el uso de sus propios comandos.", + "create-success": "¡Etiqueta creada! ", + "edit-success": "Etiqueta editada! ", + "delete-success": "¡Etiqueta {tag} eliminada! ¡Usa {commandList} para ver todas tus etiquetas restantes!", + "notags-list-command": "Hmmm... no hay etiquetas. ", + "tags-list-title": "Etiquetas disponibles", + "tags-embedoptions-title": "Opciones de inserción:", + "tags-embedoptions-description": "**-c** - Color hexadecimal a usar para la inserción (ej. -c #0000FF) \n ", + "tags-usageoptions-title": "Opciones de uso de etiquetas:", + "tags-usageoptions-description": "**-d**: elimina el mensaje original que activó la etiqueta. \n", + "tags-display-title": "Mostrar etiquetas", + "tag-error-noname-0": "Sin nombre de etiqueta", + "tag-error-noname-1": "Por favor especifique el nombre de la etiqueta", + "tag-error-nocontent-0": "Sin contenido de etiqueta", + "tag-error-nocontent-1": "Incluya el contenido que debe enviarse en la etiqueta.", + "tag-error-invalidname-0": "Nombre de etiqueta no válido", + "tag-error-invalidname-1": "No se puede crear una etiqueta con este nombre", + "tag-error-doesnotexist-0": "La etiqueta no existe", + "tag-error-doesnotexist-1": "Por favor ingresa un nombre de etiqueta válido", + "tag-error-alreadyexists-0": "Nombre de etiqueta no válido", + "tag-error-alreadyexists-1": "Ya existe una etiqueta con este nombre", + "tag-error-limitreached-0": "Límite de etiquetas alcanzado", + "tag-error-limitreached-1": "Este servidor ha alcanzado el límite de 25 etiquetas.", + "tag-createdby": "Creado por {user}" + } \ No newline at end of file diff --git a/bot/es_es/time.json b/bot/es_es/time.json new file mode 100644 index 0000000..a110e59 --- /dev/null +++ b/bot/es_es/time.json @@ -0,0 +1,16 @@ +{ + "second": "{time} segundo", + "second-plural": "{time} segundos", + "minute": "{time} minuto", + "minute-plural": "{time} minutos", + "hour": "{time} hora", + "hour-plural": "{time} horas", + "day": "{time} día", + "day-plural": "{time} días", + "week": "{time} semana", + "week-plural": "{time} semanas", + "month": "{time} mes", + "month-plural": "{time} meses", + "year": "{time} año", + "year-plural": "{time} años" + } \ No newline at end of file diff --git a/bot/languages.json b/bot/languages.json index 9ea9c22..69fbf55 100644 --- a/bot/languages.json +++ b/bot/languages.json @@ -5,5 +5,6 @@ "vi": "vi", "en-PR": "en_pr", "pl": "pl", - "nl": "nl" + "nl": "nl", + "es-ES": "es_es" } From a60558ffd777ca2f46fadcb16329eb798f750303 Mon Sep 17 00:00:00 2001 From: JuanQP Date: Sun, 21 Jul 2024 16:38:57 +0200 Subject: [PATCH 04/19] error correction --- bot/es_es/standard/channelEvents.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/es_es/standard/channelEvents.json b/bot/es_es/standard/channelEvents.json index 3f6c6df..034ff13 100644 --- a/bot/es_es/standard/channelEvents.json +++ b/bot/es_es/standard/channelEvents.json @@ -2,7 +2,7 @@ "channelCreated": { "title": "{type} Canal creado", "description": "{channel} fue creado por {executor}", - "descriptionWithCategory": "{channel} fue creado por {executor} en la categoría {categoría}." + "descriptionWithCategory": "{channel} fue creado por {executor} en la categoría {category}." }, "channelDeleted": { "title": "{type} Canal eliminado", @@ -19,7 +19,7 @@ }, "channelOverwriteDelete": { "title": "{type} Permisos de canal eliminados", - "description": "{executor} eliminó permisos de {channel} para {especial}" + "description": "{executor} eliminó permisos de {channel} para {special}" }, "channelOverwriteUpdate": { "title": "{type} Permisos de canal actualizados", From cd837dc97400db9ee1aa2edfdc64a8330ef5c191 Mon Sep 17 00:00:00 2001 From: neya <54977492+ayyneya@users.noreply.github.com> Date: Mon, 22 Jul 2024 11:34:16 +0200 Subject: [PATCH 05/19] Update & Fixes --- bot/nl/access_token.json | 4 ++ bot/nl/channel_update_types.json | 3 ++ bot/nl/command_responses.json | 2 + bot/nl/emoji_update_types.json | 3 ++ bot/nl/ignore_options.json | 12 +++++ bot/nl/log_categories.json | 13 +++++ bot/nl/log_formats.json | 7 +++ bot/nl/slash_commands/dashboard.json | 4 ++ bot/nl/slash_commands/initialReactor.json | 3 ++ bot/nl/slash_commands/premium.json | 4 ++ bot/nl/standard/quarkEvents.json | 64 +++++++++++++++++++++++ bot/nl/time.json | 16 ++++++ 12 files changed, 135 insertions(+) create mode 100644 bot/nl/access_token.json create mode 100644 bot/nl/channel_update_types.json create mode 100644 bot/nl/emoji_update_types.json create mode 100644 bot/nl/ignore_options.json create mode 100644 bot/nl/log_categories.json create mode 100644 bot/nl/log_formats.json create mode 100644 bot/nl/slash_commands/dashboard.json create mode 100644 bot/nl/slash_commands/initialReactor.json create mode 100644 bot/nl/slash_commands/premium.json create mode 100644 bot/nl/standard/quarkEvents.json create mode 100644 bot/nl/time.json diff --git a/bot/nl/access_token.json b/bot/nl/access_token.json new file mode 100644 index 0000000..65300a7 --- /dev/null +++ b/bot/nl/access_token.json @@ -0,0 +1,4 @@ +{ + "1": "Beheerder", + "2": "Basic" +} diff --git a/bot/nl/channel_update_types.json b/bot/nl/channel_update_types.json new file mode 100644 index 0000000..f058463 --- /dev/null +++ b/bot/nl/channel_update_types.json @@ -0,0 +1,3 @@ +{ + "none": "geen" +} \ No newline at end of file diff --git a/bot/nl/command_responses.json b/bot/nl/command_responses.json index a85532f..cc5bd86 100644 --- a/bot/nl/command_responses.json +++ b/bot/nl/command_responses.json @@ -100,6 +100,8 @@ "setserverlog-type-channels-1": "kanaal gebeurtenissen", "setserverlog-type-modlogs-0": "Modlogs", "setserverlog-type-modlogs-1": "modlogs", + "setserverlog-type-quark-0": "Quark Evenementen", + "setserverlog-type-quark-1": "quark evenementen", "setserverlog-spoilers": "Spoilers", "setserverlog-spoilers-0": "Serverlog spoilers ingesteld op {result}", "setserverlog-enable-status-updates": "Statusupdates inschakelen!", diff --git a/bot/nl/emoji_update_types.json b/bot/nl/emoji_update_types.json new file mode 100644 index 0000000..f058463 --- /dev/null +++ b/bot/nl/emoji_update_types.json @@ -0,0 +1,3 @@ +{ + "none": "geen" +} \ No newline at end of file diff --git a/bot/nl/ignore_options.json b/bot/nl/ignore_options.json new file mode 100644 index 0000000..a53ee23 --- /dev/null +++ b/bot/nl/ignore_options.json @@ -0,0 +1,12 @@ +{ + "ignoreTargets": "Negeer Doelgebruikers", + "ignoreExecutors": "Negeer Doeluitvoerders", + "specificMessageContent": "Negeer Specifieke Berichtinhoud", + "ignoreChannels": "Negeer Kanalen", + "ignoreBotExecutors": "Negeer Botuitvoerders", + "ignoreBotTargets": "Negeer Botdoelen", + "ignoreExecutorRoles": "Negeer Uitvoerdersrollen", + "ignoreTargetRoles": "Negeer Doelrollen", + "ignoreCategories": "Negeer Categorieën", + "activeIgnore": "Actieve Negeer" +} \ No newline at end of file diff --git a/bot/nl/log_categories.json b/bot/nl/log_categories.json new file mode 100644 index 0000000..856c7db --- /dev/null +++ b/bot/nl/log_categories.json @@ -0,0 +1,13 @@ +{ + "serverEvents": "Leden", + "serverActions": "Acties", + "textEvents": "Berichten", + "voiceEvents": "Stem", + "fileEvents": "Bestanden", + "generalEvents": "Server", + "roleEvents": "Rollen", + "channelEvents": "Kanalen", + "quarkEvents": "Quark Configuratie", + "modLog": "Modlogs", + "main": "Primair" +} \ No newline at end of file diff --git a/bot/nl/log_formats.json b/bot/nl/log_formats.json new file mode 100644 index 0000000..90f1ecf --- /dev/null +++ b/bot/nl/log_formats.json @@ -0,0 +1,7 @@ +{ + "0": "Standaard", + "1": "Compact", + "2": "Standaard (geen embed)", + "3": "Compact (geen embed)", + "4": "json" +} \ No newline at end of file diff --git a/bot/nl/slash_commands/dashboard.json b/bot/nl/slash_commands/dashboard.json new file mode 100644 index 0000000..69294e3 --- /dev/null +++ b/bot/nl/slash_commands/dashboard.json @@ -0,0 +1,4 @@ +{ + "name": "dashboard", + "description": "Bezoek Quark's webdashboard" +} \ No newline at end of file diff --git a/bot/nl/slash_commands/initialReactor.json b/bot/nl/slash_commands/initialReactor.json new file mode 100644 index 0000000..8277c2b --- /dev/null +++ b/bot/nl/slash_commands/initialReactor.json @@ -0,0 +1,3 @@ +{ + "name": "Bekijk eerste reageerders" +} \ No newline at end of file diff --git a/bot/nl/slash_commands/premium.json b/bot/nl/slash_commands/premium.json new file mode 100644 index 0000000..cb9e18a --- /dev/null +++ b/bot/nl/slash_commands/premium.json @@ -0,0 +1,4 @@ +{ + "name": "premium", + "description": "Krijg informatie over de premium abonnementen van Quark" +} \ No newline at end of file diff --git a/bot/nl/standard/quarkEvents.json b/bot/nl/standard/quarkEvents.json new file mode 100644 index 0000000..d5984e8 --- /dev/null +++ b/bot/nl/standard/quarkEvents.json @@ -0,0 +1,64 @@ +{ + "serverlogChannelUpdate": { + "title": "Logkanaal Gewijzigd", + "description_set": "{executor} heeft het {type} logkanaal ingesteld op {channel}", + "description_category_disable": "{executor} heeft het {type} logkanaal uitgeschakeld", + "description_unset": "{executor} heeft het {type} logkanaal uitgeschakeld" + }, + "serverlogOptionsUpdate": { + "title": "Logopties Bijgewerkt", + "description": "{executor} heeft {option} ingesteld op {state}", + "pluralkitSupport": "PluralKit Ondersteuning", + "spoilers": "Spoilers", + "buttons": "Knoppen", + "formatType": "Formaat Type" + }, + "serverlogLogUpdate": { + "title": "Log Bijgewerkt", + "description": "{executor} heeft de {type} log bijgewerkt", + "enabled": "Ingeschakeld", + "logFormat": "Formaat", + "logChannel": "Kanaal", + "colour": "Kleur", + "ignoreBotExecutors": "Negeer Botuitvoerders", + "ignoreBotTargets": "Negeer Botdoelen", + "activeIgnore": "Actieve Negeer" + }, + "serverlogIgnoreUpdate": { + "title": "Negeeropties Bijgewerkt", + "description_set": "{executor} heeft {type} ingeschakeld", + "description_unset": "{executor} heeft {type} uitgeschakeld", + "description_added": "{executor} heeft {target} toegevoegd aan {type}", + "description_removed": "{executor} heeft {target} verwijderd uit {type}" + }, + "languageUpdate": { + "title": "Taal Gewijzigd", + "description": "{executor} heeft de taal gewijzigd naar {language}" + }, + "reset": { + "title": "Configuratie Resetten", + "description": "{executor} heeft de configuratie voor deze server gereset" + }, + "tagAdded": { + "title": "Tag Toegevoegd", + "description": "{executor} heeft een tag {tag} gecreëerd" + }, + "tagUpdated": { + "title": "Tag Bijgewerkt", + "description": "{executor} heeft de tag {tag} bijgewerkt" + }, + "tagDeleted": { + "title": "Tag Verwijderd", + "description": "{executor} heeft de tag {tag} verwijderd" + }, + "tokenAdded": { + "title": "Token Gegenereerd", + "description": "{executor} heeft een Quark-toegangstoken gegenereerd met {permissions} machtigingen voor deze server", + "unique_id": "Token ID", + "revoke": "Herroep deze token" + }, + "tokenRevoked": { + "title": "Token Intrekken", + "description": "{executor} heeft de Quark-toegangstoken met ID {token} ingetrokken" + } +} \ No newline at end of file diff --git a/bot/nl/time.json b/bot/nl/time.json new file mode 100644 index 0000000..13460e4 --- /dev/null +++ b/bot/nl/time.json @@ -0,0 +1,16 @@ +{ + "second": "{time} seconde", + "second-plural": "{time} seconden", + "minute": "{time} minuut", + "minute-plural": "{time} minuten", + "hour": "{time} uur", + "hour-plural": "{time} uren", + "day": "{time} dag", + "day-plural": "{time} dagen", + "week": "{time} week", + "week-plural": "{time} weken", + "month": "{time} maand", + "month-plural": "{time} maanden", + "year": "{time} jaar", + "year-plural": "{time} jaren" +} \ No newline at end of file From 74188e5316d15fc6a65c8366ed0669b4baff15ee Mon Sep 17 00:00:00 2001 From: Prefill add-on Date: Tue, 30 Jul 2024 11:23:15 +0000 Subject: [PATCH 06/19] Translated using Weblate (Dutch) Currently translated at 92.6% (164 of 177 strings) Translation: Quark Bot/Command Responses Translate-URL: https://languages.quark.bot/projects/quark-bot/misc/command-responses/nl/ --- bot/nl/command_responses.json | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/bot/nl/command_responses.json b/bot/nl/command_responses.json index cc5bd86..facdfdb 100644 --- a/bot/nl/command_responses.json +++ b/bot/nl/command_responses.json @@ -213,7 +213,18 @@ }, "fileEvents": { "title": "Bestanden" + }, + "quarkEvents": { + "title": "Quark Config", + "description": "Changes made to Quark's configuration for this server" } } - } -} \ No newline at end of file + }, + "setserverlog-type-quark-0": "Quark Events", + "setserverlog-type-quark-1": "quark events", + "setserverlog-check-permissions": "Please ensure Quark has permission to send messages in this channel, or the channel will be unset.", + "festive-title": "Free Festive Gift!", + "festive-claim": "Claim your free gift!", + "initialreactors-expired": "expired", + "initialreactors-notfound": "No reactions found" +} From c4d0548c7956f725bdc02fa51ecb02267873a9fe Mon Sep 17 00:00:00 2001 From: Prefill add-on Date: Tue, 30 Jul 2024 11:23:15 +0000 Subject: [PATCH 07/19] Translated using Weblate (Polish) Currently translated at 94.3% (167 of 177 strings) Translation: Quark Bot/Command Responses Translate-URL: https://languages.quark.bot/projects/quark-bot/misc/command-responses/pl/ --- bot/pl/command_responses.json | 421 +++++++++++++++++----------------- 1 file changed, 207 insertions(+), 214 deletions(-) diff --git a/bot/pl/command_responses.json b/bot/pl/command_responses.json index fa2efae..1577c69 100644 --- a/bot/pl/command_responses.json +++ b/bot/pl/command_responses.json @@ -1,214 +1,207 @@ -{ - "disable": "Wyłącz", - "enable": "Włącz", - - "error-401-0": "Niepowodzenie polecenia", - "error-401-1-type-0": "Nie mogę zbanować tego użytkownika", - "error-401-1-type-1": "Nie mogę wyrzucić tego użytkownika", - "error-401-1-type-2": "Nie mogę wyciszyć tego użytkownika", - "error-401-1-type-3": "Nie mogę odciszyć tego użytkownika", - "error-403-0": "Brak wystarczających uprawnień", - "error-403-1-type-0": "Upewnij się, że mam uprawnienia `BAN_MEMBERS`", - "error-403-1-type-1": "Upewnij się, że mam uprawnienia `KICK_MEMBERS`", - "error-403-1-type-2": "Upewnij się, że mam uprawnienia `MANAGE_ROLES` i że rola `Muted` jest niżej niż moja najwyższa rola", - "error-403-1-type-3": "Upewnij się, że mam uprawnienia `MANAGE_MESSAGES`", - "error-404-0": "Nie znaleziono użytkownika", - "error-404-1": "Proszę oznaczyć użytkownika, wkleić jego ID lub wpisać jego nazwę użytkownika", - "error-405-0": "Słucham?", - "error-405-1": "Nie zrobię tego lol", - "error-406-0": "Nie masz uprawnień", - "error-407-0": "Nie masz władzy, aby to zrobić", - "error-409-0-type-0": "Ten użytkownik jest już zbanowany", - "error-409-0-type-1": "Ten użytkownik jest już wyciszony", - "error-409-0-type-2": "Ten użytkownik jest już odbanowany", - "error-409-0-type-3": "Ten użytkownik jest już odciszony", - "error-429-0": "Nieprawidłowy numer", - "error-429-1": "Wprowadź prawidłową liczbę całkowitą w zakresie (1-100)", - "error-430-0": "Brak wiadomości", - "error-430-1": "Nie znaleziono wiadomości do usunięcia", - "error-431-0": "Nieprawidłowy link do wiadomości", - "error-431-1": "Wprowadź prawidłowy link do wiadomości", - "error-432-0": "Nieprawidłowy log Quark", - "error-432-1": "Ta wiadomość nie jest prawidłowym logiem Quark", - "error-433-0": "Nieprawidłowe wiadomości początkowe i końcowe", - "error-433-1": "Wiadomość początkowa musi być starsza niż wiadomość końcowa", - "error-434-0": "Różne kanały", - "error-434-1": "Wiadomość początkowa i końcowa muszą należeć do tego samego kanału", - "error-435-0": "Aktywny czas oczekiwania", - "error-435-1": "To polecenie można używać tylko co 15 minut", - "error-try-help-again": "Spróbuj ponownie uruchomić polecenie pomocy...", - "error-no-modlog": "Brak kanału modlog", - "error-invalid-log": "Nie znaleziono sprawy modlog", - - "error-timeout-period-too-long-0": "Okres czasu oczekiwania jest zbyt długi", - "error-timeout-period-too-long-1": "Okres czasu oczekiwania musi być krótszy niż 28 dni", - - "response-ban": "Zbanowany", - "response-kick": "Wyrzucony", - "response-mute": "Wyciszony", - "response-unmute": "Odciszony", - "response-unban": "Odbanowany", - "response-purge": "Usunięto {count} wiadomości", - - "response-customise-dash": "Ustawienia personalizacji zostały przeniesione na nasz [web dashboard]!", - "response-customise-1": "Loguj wiadomości do 2 tygodni wstecz, personalizuj logi i wiele więcej z Quark Pro...", - "response-customise-2": "[UK, US, EU] Kliknij na mój profil, aby przejść na wyższy poziom!", - "response-customise-3": "Lub... {proLink}", - "response-customise-4": "Wypróbuj personalizację kolorów za darmo na {inventoryLink}", - - "response-case-updated": "Przypadek zaktualizowany!", - - "response-debug": "Wysłano log debugowania!", - - "response-status-enabled": "Aktualizacje kanału statusu włączone!", - "response-status-disabled": "Aktualizacje kanału statusu wyłączone!", - - "target0-command": "cel", - "target1-command": "cele", - "message0-command": "wiadomość", - "executor0-command": "wykonawca", - "executor1-command": "wykonawcy", - "channel0-command": "kanał", - "channel1-command": "kanały", - - "serverlog-web-promote": "...lub sprawdź nasz web dashboard!", - "serverlog-select": "Wybierz kanał serverlog", - "serverlog-unset": "Kanał niezdefiniowany", - "serverlog-set": "Kanał ustawiony", - "serverlog-setchannel": "Kanał ustawiony na {channel}", - "setserverlog-confirm0-set": "Kanał Server-Log ustawiony", - "setserverlog-confirm0-unset": "Kanał Server-Log niezdefiniowany", - "setserverlog-confirm1-set": "Wszystkie wydarzenia server-log będą teraz rejestrowane w tym kanale.\n\n[**Odwiedź web dashboard Quark, aby uzyskać więcej opcji konfiguracji!**]({quark_website_url}/dashboard/{guild_id})", - "setserverlog-confirm1-unset": "Nie będziesz już otrzymywać wiadomości o wydarzeniach, które występują na tym serwerze, chyba że masz ustawione inne kanały do wyjścia tych wydarzeń.", - "setserverlog-confirm0-options-set": "Kanał Server-Log {type} ustawiony", - "setserverlog-confirm0-options-unset": "Kanał Server-Log {type} niezdefiniowany", - "setserverlog-confirm0-options-stoplog": "Logowanie Server-Log {type} zatrzymane", - "setserverlog-confirm1-options-set": "Server {type} będzie teraz rejestrowany w tym kanale.\n\nAby usunąć ten kanał, uruchom ponownie polecenie w tym kanale.", - "setserverlog-confirm1-options-unset": "Server {type} nie będzie już rejestrowany w tym kanale.\n\nAby ustawić ten kanał, uruchom ponownie polecenie w tym kanale.", - "setserverlog-confirm1-options-stoplog": "Server {type} będzie teraz nadal rejestrowany w głównym kanale serverlog (jeśli jest ustawiony).\n\nAby to cofnąć, uruchom ponownie polecenie tutaj.", - "setserverlog-type-members-0": "Członkowie", - "setserverlog-type-members-1": "członkowie", - "setserverlog-type-actions-0": "Akcje", - "setserverlog-type-actions-1": "akcje", - "setserverlog-type-text-0": "Wydarzenia kanału tekstowego", - "setserverlog-type-text-1": "wydarzenia kanału tekstowego", - "setserverlog-type-voice-0": "Wydarzenia kanału głosowego", - "setserverlog-type-voice-1": "wydarzenia kanału głosowego", - "setserverlog-type-files-0": "Pliki", - "setserverlog-type-files-1": "pliki", - "setserverlog-type-server-0": "Serwer", - "setserverlog-type-server-1": "serwer", - "setserverlog-type-roles-0": "Wydarzenia roli", - "setserverlog-type-roles-1": "wydarzenia roli", - "setserverlog-type-channels-0": "Wydarzenia kanału", - "setserverlog-type-channels-1": "wydarzenia kanału", - "setserverlog-type-modlogs-0": "Modlogi", - "setserverlog-type-modlogs-1": "modlogi", - "setserverlog-spoilers": "Spojlery", - "setserverlog-spoilers-0": "Spojlery serverlog ustawione na {result}", - "setserverlog-enable-status-updates": "Włącz aktualizacje statusu!", - "setserverlog-enable-status-updates-desc": "Otrzymuj powiadomienia o wszystkich najnowszych aktualizacjach, przestojach i innych ważnych komunikatach od deweloperów!", - "setserverlog-enable-status-updates-desc-1": "Zalecamy włączenie tego w jednym z twoich kanałów!", - "setserverlog-check-permissions": "Proszę, upewnij się że Quark ma uprawnienia do wysyłania wiadomości na tym kanale, albo kanał nie będzie ustawiony.", - - "festive-title": "Free Festive Gift!", - "festive-claim": "Claim your free gift!", - - "help-overview-website-description": "Łatwo skonfiguruj i zarządzaj Quark z [web dashboard]!", - "help-overview-inventory-description": "Zarządzaj swoimi subskrypcjami lub uzyskaj niektóre funkcje [Quark Pro] za darmo!", - "help-overview-view-inv": "Wyświetl inwentarz", - "help-overview-help": "Pomoc", - "help-overview-website": "Strona internetowa", - "help-overview-serverlog": "Serverlog", - "help-overview-modlog": "Modlog", - "help-overview-commands": "Polecenia", - "help-overview-language": "Język", - "help-overview-premium": "Premium", - "help-overview-inventory": "Inwentarz", - "help-overview-channel-isset": "Kanał ustawiony na {channel}", - "help-overview-channel-isnotset": "Uruchom {command} na żądanym kanale", - "help-overview-view-options": "Uruchom {command}, aby zobaczyć opcje", - "help-overview-view-options-and-statuses": "Uruchom {command}, aby zobaczyć statusy i opcje", - "help-overview-view-all-commands": "Uruchom {command}, aby zobaczyć polecenia", - "help-overview-change-channel": "Zmień to, uruchamiając {command} na żądanym kanale.", - "help-overview-manage-premium": "Uruchom {command}, aby zarządzać premium", - "language-set": "Ustaw język na {language}", - - "help-serverlog-help": "Pomoc Serverlog", - "help-serverlog-0": "Ograniczenia kanału", - "help-serverlog-1": "Opcje ignorowania", - "help-serverlog-2": "Spojlery", - "help-serverlog-0-desc": "Aby uzyskać większą kontrolę nad logami, np. wybór różnych kanałów dla różnych typów logów, odwiedź [web dashboard Quark]", - "help-serverlog-1-desc": "Aby zapobiec rejestrowaniu niektórych kanałów, użytkowników lub wiadomości, uruchom:\n{ignorecommand}", - "help-serverlog-2-desc": "Aby przełączać, czy spoilery są stosowane do wszystkich mediów wysyłanych w serverlog, uruchom: {command}", - "help-serverlog-2-on": "Spojlery są włączone.", - "help-serverlog-2-off": "Spojlery są wyłączone.", - - "help-commands-help": "Pomoc poleceń", - "help-commands-moderation": "Moderacja", - "help-commands-tags": "Tagi", - "help-commands-notes": "Notatki", - "help-commands-other": "Inne", - "help-notes-help": "Pomoc notatek", - "help-tags-help": "Pomoc tagów", - "help-commands-desc": "Klucz:\n`` `[opcjonalne]`\nTo nie jest lista wszystkich poleceń", - "help-info": "Nadal potrzebujesz pomocy? **Dołącz do serwera wsparcia Quark!**", - - "need-to-vote-title": "Musisz zagłosować, aby użyć tego polecenia!", - "need-to-vote": "Kliknij tutaj, aby zagłosować", - "need-to-vote-footer": "Głosy są rejestrowane do minuty", - - "configCommand": { - "title": "Konfiguracja Serverlog", - "selection": "Wybierz kategorię w menu, aby wyświetlić konfigurację.", - "serverLogDesc": "Główny kanał Serverlog", - "notSet": "Niezdefiniowany", - "selectACategory": "Wybierz kategorię", - "overview": "Przegląd", - "formats": { - "log_channels": "Kanały logów", - "configurable_events": "Konfigurowalne wydarzenia" - }, - "categories": { - "serverEvents": { - "title": "Członkowie", - "description": "Akcje członków (dołączenie/wyjście, role, pseudonimy)" - }, - "textEvents": { - "title": "Wiadomości", - "description": "Akcje wiadomości (usunięcia, edycje, przypięcia, reakcje)" - }, - "voiceEvents": { - "title": "Głos", - "description": "Akcje kanału głosowego (dołączenie/wyjście, transmisje, wyciszenie/ogłuszenie)" - }, - "serverActions": { - "title": "Akcje serwera", - "description": "Akcje serwera (tworzenie/usuwanie zaproszeń, emotikony)" - }, - "channelEvents": { - "title": "Kanały", - "description": "Akcje kanału (tworzenie/usuwanie, uprawnienia)" - }, - "generalEvents": { - "title": "Wydarzenia serwera", - "description": "Ogólne akcje (modyfikacje serwera)" - }, - "roleEvents": { - "title": "Role", - "description": "Akcje ról (tworzenie/usuwanie, uprawnienia)" - }, - "modLog": { - "title": "Logi moderatorów", - "description": "Akcje moderacji (bany, wyrzucenia, wyciszenia)" - }, - "overview": { - "title": "Przegląd", - "description": "Przegląd głównych opcji kategorii" - }, - "fileEvents": { - "title": "Pliki" - } - } - } -} \ No newline at end of file +{ + "disable": "Wyłącz", + "enable": "Włącz", + "error-401-0": "Niepowodzenie polecenia", + "error-401-1-type-0": "Nie mogę zbanować tego użytkownika", + "error-401-1-type-1": "Nie mogę wyrzucić tego użytkownika", + "error-401-1-type-2": "Nie mogę wyciszyć tego użytkownika", + "error-401-1-type-3": "Nie mogę odciszyć tego użytkownika", + "error-403-0": "Brak wystarczających uprawnień", + "error-403-1-type-0": "Upewnij się, że mam uprawnienia `BAN_MEMBERS`", + "error-403-1-type-1": "Upewnij się, że mam uprawnienia `KICK_MEMBERS`", + "error-403-1-type-2": "Upewnij się, że mam uprawnienia `MANAGE_ROLES` i że rola `Muted` jest niżej niż moja najwyższa rola", + "error-403-1-type-3": "Upewnij się, że mam uprawnienia `MANAGE_MESSAGES`", + "error-404-0": "Nie znaleziono użytkownika", + "error-404-1": "Proszę oznaczyć użytkownika, wkleić jego ID lub wpisać jego nazwę użytkownika", + "error-405-0": "Słucham?", + "error-405-1": "Nie zrobię tego lol", + "error-406-0": "Nie masz uprawnień", + "error-407-0": "Nie masz władzy, aby to zrobić", + "error-409-0-type-0": "Ten użytkownik jest już zbanowany", + "error-409-0-type-1": "Ten użytkownik jest już wyciszony", + "error-409-0-type-2": "Ten użytkownik jest już odbanowany", + "error-409-0-type-3": "Ten użytkownik jest już odciszony", + "error-429-0": "Nieprawidłowy numer", + "error-429-1": "Wprowadź prawidłową liczbę całkowitą w zakresie (1-100)", + "error-430-0": "Brak wiadomości", + "error-430-1": "Nie znaleziono wiadomości do usunięcia", + "error-431-0": "Nieprawidłowy link do wiadomości", + "error-431-1": "Wprowadź prawidłowy link do wiadomości", + "error-432-0": "Nieprawidłowy log Quark", + "error-432-1": "Ta wiadomość nie jest prawidłowym logiem Quark", + "error-433-0": "Nieprawidłowe wiadomości początkowe i końcowe", + "error-433-1": "Wiadomość początkowa musi być starsza niż wiadomość końcowa", + "error-434-0": "Różne kanały", + "error-434-1": "Wiadomość początkowa i końcowa muszą należeć do tego samego kanału", + "error-435-0": "Aktywny czas oczekiwania", + "error-435-1": "To polecenie można używać tylko co 15 minut", + "error-try-help-again": "Spróbuj ponownie uruchomić polecenie pomocy...", + "error-no-modlog": "Brak kanału modlog", + "error-invalid-log": "Nie znaleziono sprawy modlog", + "error-timeout-period-too-long-0": "Okres czasu oczekiwania jest zbyt długi", + "error-timeout-period-too-long-1": "Okres czasu oczekiwania musi być krótszy niż 28 dni", + "response-ban": "Zbanowany", + "response-kick": "Wyrzucony", + "response-mute": "Wyciszony", + "response-unmute": "Odciszony", + "response-unban": "Odbanowany", + "response-purge": "Usunięto {count} wiadomości", + "response-customise-dash": "Ustawienia personalizacji zostały przeniesione na nasz [web dashboard]!", + "response-customise-1": "Loguj wiadomości do 2 tygodni wstecz, personalizuj logi i wiele więcej z Quark Pro...", + "response-customise-2": "[UK, US, EU] Kliknij na mój profil, aby przejść na wyższy poziom!", + "response-customise-3": "Lub... {proLink}", + "response-customise-4": "Wypróbuj personalizację kolorów za darmo na {inventoryLink}", + "response-case-updated": "Przypadek zaktualizowany!", + "response-debug": "Wysłano log debugowania!", + "response-status-enabled": "Aktualizacje kanału statusu włączone!", + "response-status-disabled": "Aktualizacje kanału statusu wyłączone!", + "target0-command": "cel", + "target1-command": "cele", + "message0-command": "wiadomość", + "executor0-command": "wykonawca", + "executor1-command": "wykonawcy", + "channel0-command": "kanał", + "channel1-command": "kanały", + "serverlog-web-promote": "...lub sprawdź nasz web dashboard!", + "serverlog-select": "Wybierz kanał serverlog", + "serverlog-unset": "Kanał niezdefiniowany", + "serverlog-set": "Kanał ustawiony", + "serverlog-setchannel": "Kanał ustawiony na {channel}", + "setserverlog-confirm0-set": "Kanał Server-Log ustawiony", + "setserverlog-confirm0-unset": "Kanał Server-Log niezdefiniowany", + "setserverlog-confirm1-set": "Wszystkie wydarzenia server-log będą teraz rejestrowane w tym kanale.\n\n[**Odwiedź web dashboard Quark, aby uzyskać więcej opcji konfiguracji!**]({quark_website_url}/dashboard/{guild_id})", + "setserverlog-confirm1-unset": "Nie będziesz już otrzymywać wiadomości o wydarzeniach, które występują na tym serwerze, chyba że masz ustawione inne kanały do wyjścia tych wydarzeń.", + "setserverlog-confirm0-options-set": "Kanał Server-Log {type} ustawiony", + "setserverlog-confirm0-options-unset": "Kanał Server-Log {type} niezdefiniowany", + "setserverlog-confirm0-options-stoplog": "Logowanie Server-Log {type} zatrzymane", + "setserverlog-confirm1-options-set": "Server {type} będzie teraz rejestrowany w tym kanale.\n\nAby usunąć ten kanał, uruchom ponownie polecenie w tym kanale.", + "setserverlog-confirm1-options-unset": "Server {type} nie będzie już rejestrowany w tym kanale.\n\nAby ustawić ten kanał, uruchom ponownie polecenie w tym kanale.", + "setserverlog-confirm1-options-stoplog": "Server {type} będzie teraz nadal rejestrowany w głównym kanale serverlog (jeśli jest ustawiony).\n\nAby to cofnąć, uruchom ponownie polecenie tutaj.", + "setserverlog-type-members-0": "Członkowie", + "setserverlog-type-members-1": "członkowie", + "setserverlog-type-actions-0": "Akcje", + "setserverlog-type-actions-1": "akcje", + "setserverlog-type-text-0": "Wydarzenia kanału tekstowego", + "setserverlog-type-text-1": "wydarzenia kanału tekstowego", + "setserverlog-type-voice-0": "Wydarzenia kanału głosowego", + "setserverlog-type-voice-1": "wydarzenia kanału głosowego", + "setserverlog-type-files-0": "Pliki", + "setserverlog-type-files-1": "pliki", + "setserverlog-type-server-0": "Serwer", + "setserverlog-type-server-1": "serwer", + "setserverlog-type-roles-0": "Wydarzenia roli", + "setserverlog-type-roles-1": "wydarzenia roli", + "setserverlog-type-channels-0": "Wydarzenia kanału", + "setserverlog-type-channels-1": "wydarzenia kanału", + "setserverlog-type-modlogs-0": "Modlogi", + "setserverlog-type-modlogs-1": "modlogi", + "setserverlog-spoilers": "Spojlery", + "setserverlog-spoilers-0": "Spojlery serverlog ustawione na {result}", + "setserverlog-enable-status-updates": "Włącz aktualizacje statusu!", + "setserverlog-enable-status-updates-desc": "Otrzymuj powiadomienia o wszystkich najnowszych aktualizacjach, przestojach i innych ważnych komunikatach od deweloperów!", + "setserverlog-enable-status-updates-desc-1": "Zalecamy włączenie tego w jednym z twoich kanałów!", + "setserverlog-check-permissions": "Proszę, upewnij się że Quark ma uprawnienia do wysyłania wiadomości na tym kanale, albo kanał nie będzie ustawiony.", + "festive-title": "Free Festive Gift!", + "festive-claim": "Claim your free gift!", + "help-overview-website-description": "Łatwo skonfiguruj i zarządzaj Quark z [web dashboard]!", + "help-overview-inventory-description": "Zarządzaj swoimi subskrypcjami lub uzyskaj niektóre funkcje [Quark Pro] za darmo!", + "help-overview-view-inv": "Wyświetl inwentarz", + "help-overview-help": "Pomoc", + "help-overview-website": "Strona internetowa", + "help-overview-serverlog": "Serverlog", + "help-overview-modlog": "Modlog", + "help-overview-commands": "Polecenia", + "help-overview-language": "Język", + "help-overview-premium": "Premium", + "help-overview-inventory": "Inwentarz", + "help-overview-channel-isset": "Kanał ustawiony na {channel}", + "help-overview-channel-isnotset": "Uruchom {command} na żądanym kanale", + "help-overview-view-options": "Uruchom {command}, aby zobaczyć opcje", + "help-overview-view-options-and-statuses": "Uruchom {command}, aby zobaczyć statusy i opcje", + "help-overview-view-all-commands": "Uruchom {command}, aby zobaczyć polecenia", + "help-overview-change-channel": "Zmień to, uruchamiając {command} na żądanym kanale.", + "help-overview-manage-premium": "Uruchom {command}, aby zarządzać premium", + "language-set": "Ustaw język na {language}", + "help-serverlog-help": "Pomoc Serverlog", + "help-serverlog-0": "Ograniczenia kanału", + "help-serverlog-1": "Opcje ignorowania", + "help-serverlog-2": "Spojlery", + "help-serverlog-0-desc": "Aby uzyskać większą kontrolę nad logami, np. wybór różnych kanałów dla różnych typów logów, odwiedź [web dashboard Quark]", + "help-serverlog-1-desc": "Aby zapobiec rejestrowaniu niektórych kanałów, użytkowników lub wiadomości, uruchom:\n{ignorecommand}", + "help-serverlog-2-desc": "Aby przełączać, czy spoilery są stosowane do wszystkich mediów wysyłanych w serverlog, uruchom: {command}", + "help-serverlog-2-on": "Spojlery są włączone.", + "help-serverlog-2-off": "Spojlery są wyłączone.", + "help-commands-help": "Pomoc poleceń", + "help-commands-moderation": "Moderacja", + "help-commands-tags": "Tagi", + "help-commands-notes": "Notatki", + "help-commands-other": "Inne", + "help-notes-help": "Pomoc notatek", + "help-tags-help": "Pomoc tagów", + "help-commands-desc": "Klucz:\n`` `[opcjonalne]`\nTo nie jest lista wszystkich poleceń", + "help-info": "Nadal potrzebujesz pomocy? **Dołącz do serwera wsparcia Quark!**", + "need-to-vote-title": "Musisz zagłosować, aby użyć tego polecenia!", + "need-to-vote": "Kliknij tutaj, aby zagłosować", + "need-to-vote-footer": "Głosy są rejestrowane do minuty", + "configCommand": { + "title": "Konfiguracja Serverlog", + "selection": "Wybierz kategorię w menu, aby wyświetlić konfigurację.", + "serverLogDesc": "Główny kanał Serverlog", + "notSet": "Niezdefiniowany", + "selectACategory": "Wybierz kategorię", + "overview": "Przegląd", + "formats": { + "log_channels": "Kanały logów", + "configurable_events": "Konfigurowalne wydarzenia" + }, + "categories": { + "serverEvents": { + "title": "Członkowie", + "description": "Akcje członków (dołączenie/wyjście, role, pseudonimy)" + }, + "textEvents": { + "title": "Wiadomości", + "description": "Akcje wiadomości (usunięcia, edycje, przypięcia, reakcje)" + }, + "voiceEvents": { + "title": "Głos", + "description": "Akcje kanału głosowego (dołączenie/wyjście, transmisje, wyciszenie/ogłuszenie)" + }, + "serverActions": { + "title": "Akcje serwera", + "description": "Akcje serwera (tworzenie/usuwanie zaproszeń, emotikony)" + }, + "channelEvents": { + "title": "Kanały", + "description": "Akcje kanału (tworzenie/usuwanie, uprawnienia)" + }, + "generalEvents": { + "title": "Wydarzenia serwera", + "description": "Ogólne akcje (modyfikacje serwera)" + }, + "roleEvents": { + "title": "Role", + "description": "Akcje ról (tworzenie/usuwanie, uprawnienia)" + }, + "modLog": { + "title": "Logi moderatorów", + "description": "Akcje moderacji (bany, wyrzucenia, wyciszenia)" + }, + "overview": { + "title": "Przegląd", + "description": "Przegląd głównych opcji kategorii" + }, + "fileEvents": { + "title": "Pliki" + }, + "quarkEvents": { + "title": "Quark Config", + "description": "Changes made to Quark's configuration for this server" + } + } + }, + "setserverlog-type-quark-0": "Quark Events", + "setserverlog-type-quark-1": "quark events", + "initialreactors-expired": "expired", + "initialreactors-notfound": "No reactions found" +} From 4e85180aa1efb349a9e626f5cf3f26ff5a7af96c Mon Sep 17 00:00:00 2001 From: Prefill add-on Date: Tue, 30 Jul 2024 11:23:15 +0000 Subject: [PATCH 08/19] Translated using Weblate (Turkish) Currently translated at 93.7% (166 of 177 strings) Translation: Quark Bot/Command Responses Translate-URL: https://languages.quark.bot/projects/quark-bot/misc/command-responses/tr/ --- bot/tr/command_responses.json | 30 ++++++++++++------------------ 1 file changed, 12 insertions(+), 18 deletions(-) diff --git a/bot/tr/command_responses.json b/bot/tr/command_responses.json index c23608a..e473c61 100644 --- a/bot/tr/command_responses.json +++ b/bot/tr/command_responses.json @@ -1,7 +1,6 @@ { "disable": "Disable", "enable": "Enable", - "error-401-0": "Command failed", "error-401-1-type-0": "I am unable to ban that user", "error-401-1-type-1": "I am unable to kick that user", @@ -39,30 +38,23 @@ "error-try-help-again": "Try running the help command again...", "error-no-modlog": "No modlog channel", "error-invalid-log": "Modlog case not found", - "error-timeout-period-too-long-0": "Timeout period too long", "error-timeout-period-too-long-1": "Timeout period must be less than 28 days", - "response-ban": "Banned", "response-kick": "Kicked", "response-mute": "Muted", "response-unmute": "Unmuted", "response-unban": "Unbanned", "response-purge": "Purged {count} messages", - "response-customise-dash": "Customisation settings have moved to our [web dashboard]!", "response-customise-1": "Log messages up to 2 weeks old, customise logs, and so much more with Quark Pro...", "response-customise-2": "[UK, US, EU] Click onto my profile to upgrade!", "response-customise-3": "Or... {proLink}", "response-customise-4": "Try out colour customisation for free at {inventoryLink}", - "response-case-updated": "Case updated!", - "response-debug": "Debug log sent!", - "response-status-enabled": "Status channel updates enabled!", "response-status-disabled": "Status channel updates disabled!", - "target0-command": "target", "target1-command": "targets", "message0-command": "message", @@ -70,7 +62,6 @@ "executor1-command": "executors", "channel0-command": "channel", "channel1-command": "channels", - "serverlog-web-promote": "...or check out our web dashboard!", "serverlog-select": "Select serverlog channel", "serverlog-unset": "Channel unset", @@ -110,10 +101,8 @@ "setserverlog-enable-status-updates-desc": "Get notified of all the latest updates, downtime, and other important communications from the developers!", "setserverlog-enable-status-updates-desc-1": "We highly recommend you enable this in one of your channels!", "setserverlog-check-permissions": "Please ensure Quark has permission to send messages in this channel, or the channel will be unset.", - "festive-title": "Free Festive Gift!", "festive-claim": "Claim your free gift!", - "help-overview-website-description": "Easily set up and manage Quark from the [web dashboard]!", "help-overview-inventory-description": "Manage your subscriptions or get some [Quark Pro] features for free!", "help-overview-view-inv": "View Inventory", @@ -133,7 +122,6 @@ "help-overview-change-channel": "Change this by running {command} in the desired channel.", "help-overview-manage-premium": "Run {command} to manage premium", "language-set": "Set language to {language}", - "help-serverlog-help": "Serverlog Help", "help-serverlog-0": "Channel Restrictions", "help-serverlog-1": "Ignore Options", @@ -143,7 +131,6 @@ "help-serverlog-2-desc": "To toggle whether spoilers are applied to all media sent in the serverlog, run: {command}", "help-serverlog-2-on": "Spoilers are enabled.", "help-serverlog-2-off": "Spoilers are disabled.", - "help-commands-help": "Commands Help", "help-commands-moderation": "Moderation", "help-commands-tags": "Tags", @@ -153,11 +140,9 @@ "help-tags-help": "Tags Help", "help-commands-desc": "Key:\n`` `[optional]`\nThis is not a list of every command", "help-info": "Still need a hand? **Join Quark's support server!**", - "need-to-vote-title": "You must vote to use this command!", "need-to-vote": "Click here to vote", "need-to-vote-footer": "Votes take up to a minute to be registered", - "configCommand": { "title": "Serverlog Configuration", "selection": "Select a category in the menu to view configuration.", @@ -207,7 +192,16 @@ }, "fileEvents": { "title": "Files" + }, + "quarkEvents": { + "title": "Quark Config", + "description": "Changes made to Quark's configuration for this server" } - } - } -} \ No newline at end of file + }, + "overview": "Overview" + }, + "setserverlog-type-quark-0": "Quark Events", + "setserverlog-type-quark-1": "quark events", + "initialreactors-expired": "expired", + "initialreactors-notfound": "No reactions found" +} From 29b677da845dc4169f13544cf8852dca759257c8 Mon Sep 17 00:00:00 2001 From: Prefill add-on Date: Tue, 30 Jul 2024 11:23:15 +0000 Subject: [PATCH 09/19] Translated using Weblate (Vietnamese) Currently translated at 93.7% (166 of 177 strings) Translation: Quark Bot/Command Responses Translate-URL: https://languages.quark.bot/projects/quark-bot/misc/command-responses/vi/ --- bot/vi/command_responses.json | 30 ++++++++++++------------------ 1 file changed, 12 insertions(+), 18 deletions(-) diff --git a/bot/vi/command_responses.json b/bot/vi/command_responses.json index 9140ace..b909fdf 100644 --- a/bot/vi/command_responses.json +++ b/bot/vi/command_responses.json @@ -1,7 +1,6 @@ { "disable": "Tắt", "enable": "Bật", - "error-401-0": "Lệnh thất bại", "error-401-1-type-0": "Tôi không thể cấm người dùng đó", "error-401-1-type-1": "Tôi không thể đá người dùng đó", @@ -39,30 +38,23 @@ "error-try-help-again": "Try running the help command again...", "error-no-modlog": "No modlog channel", "error-invalid-log": "Modlog case not found", - "error-timeout-period-too-long-0": "Thời gian chờ quá lâu", "error-timeout-period-too-long-1": "Thời gian chờ phải nhỏ hơn 28 ngày", - "response-ban": "Đã cấm", "response-kick": "Đã đuổi", "response-mute": "Đã tắt tiếng", "response-unmute": "Đã bỏ tắt tiếng", "response-unban": "Đã bỏ cấm", "response-purge": "Đã xóa {count} tin nhắn", - "response-customise-dash": "Cài đặt tùy chỉnh đã được chuyển đến [bảng điều khiển web]!", "response-customise-1": "Ghi lại tin nhắn lên đến 2 tuần trước, tùy chỉnh ghi nhật ký và nhiều hơn nữa với Quark Pro...", "response-customise-2": "[UK, US, EU] Nhấp vào hồ sơ của tôi để nâng cấp!", "response-customise-3": "Hoặc... {proLink}", "response-customise-4": "Thử tùy chỉnh màu sắc miễn phí tại {inventoryLink}", - "response-case-updated": "Cập nhật trạng thái thành công!", - "response-debug": "Gửi log gỡ lỗi thành công!", - "response-status-enabled": "Bật cập nhật kênh trạng thái thành công!", "response-status-disabled": "Tắt cập nhật kênh trạng thái thành công!", - "target0-command": "mục tiêu", "target1-command": "mục tiêu", "message0-command": "tin nhắn", @@ -70,7 +62,6 @@ "executor1-command": "thực thi", "channel0-command": "kênh", "channel1-command": "kênh", - "serverlog-web-promote": "...hoặc truy cập bảng điều khiển web của chúng tôi!", "serverlog-select": "Chọn kênh serverlog", "serverlog-unset": "Kênh không được đặt", @@ -110,10 +101,8 @@ "setserverlog-enable-status-updates-desc": "Nhận thông báo về tất cả các cập nhật mới nhất, thời gian chạy và các thông tin quan trọng khác từ các nhà phát triển!", "setserverlog-enable-status-updates-desc-1": "Chúng tôi rất khuyến nghị bạn bật tính năng này trong một trong các kênh của bạn!", "setserverlog-check-permissions": "Vui lòng đảm bảo Quark có quyền gửi tin nhắn trong kênh này, hoặc kênh sẽ bị hủy đặt.", - "festive-title": "Quà miễn phí trong mùa lễ!", "festive-claim": "Nhận quà miễn phí của bạn!", - "help-overview-website-description": "Dễ dàng thiết lập và quản lý Quark từ [bảng điều khiển web]!", "help-overview-inventory-description": "Quản lý các đăng ký của bạn hoặc nhận một số tính năng [Quark Pro] miễn phí!", "help-overview-view-inv": "Xem Kho hàng", @@ -133,7 +122,6 @@ "help-overview-change-channel": "Thay đổi bằng cách chạy {command} trong kênh mong muốn.", "help-overview-manage-premium": "Chạy {command} để quản lý premium", "language-set": "Ngôn ngữ đã được đặt thành {language}", - "help-serverlog-help": "Trợ giúp Ghi nhật ký máy chủ", "help-serverlog-0": "Hạn chế Kênh", "help-serverlog-1": "Tùy chọn Bỏ qua", @@ -143,7 +131,6 @@ "help-serverlog-2-desc": "Để bật/tắt việc ẩn thông tin về các phương tiện được gửi trong ghi nhật ký máy chủ, chạy: {command}", "help-serverlog-2-on": "Đã bật ẩn thông tin.", "help-serverlog-2-off": "Đã tắt ẩn thông tin.", - "help-commands-help": "Trợ giúp Lệnh", "help-commands-moderation": "Quản lý", "help-commands-tags": "Thẻ", @@ -153,11 +140,9 @@ "help-tags-help": "Trợ giúp Thẻ", "help-commands-desc": "Chú thích:\n`` `[tùy chọn]`\nĐây không phải là danh sách của tất cả các lệnh", "help-info": "Cần thêm sự trợ giúp? **Tham gia máy chủ hỗ trợ của chúng tôi!**", - "need-to-vote-title": "Bạn phải bỏ phiếu để sử dụng lệnh này!", "need-to-vote": "Nhấp vào đây để bỏ phiếu", "need-to-vote-footer": "Việc bỏ phiếu mất tối đa một phút để được đăng ký", - "configCommand": { "title": "Serverlog Configuration", "selection": "Select a category in the menu to view configuration.", @@ -207,7 +192,16 @@ }, "fileEvents": { "title": "Files" + }, + "quarkEvents": { + "title": "Quark Config", + "description": "Changes made to Quark's configuration for this server" } - } - } -} \ No newline at end of file + }, + "overview": "Overview" + }, + "setserverlog-type-quark-0": "Quark Events", + "setserverlog-type-quark-1": "quark events", + "initialreactors-expired": "expired", + "initialreactors-notfound": "No reactions found" +} From 60b5daacf63edb414f0e931902f8e2f995118ef7 Mon Sep 17 00:00:00 2001 From: JuanQP Date: Tue, 30 Jul 2024 15:47:49 +0200 Subject: [PATCH 10/19] solved --- bot/es_es/slash_commands/help.json | 4 ++-- bot/es_es/slash_commands/unban.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bot/es_es/slash_commands/help.json b/bot/es_es/slash_commands/help.json index c829680..44ac0c4 100644 --- a/bot/es_es/slash_commands/help.json +++ b/bot/es_es/slash_commands/help.json @@ -3,11 +3,11 @@ "description": "Obtenga ayuda con Quark", "commandOptions": { "overviewOption": { - "name": "descripción general", + "name": "descripción-general", "description": "Ver información de ayuda general" }, "serverlogOption": { - "name": "registro del servidor", + "name": "registro-del-servidor", "description": "Obtenga ayuda con los registros del servidor de Quark" } } diff --git a/bot/es_es/slash_commands/unban.json b/bot/es_es/slash_commands/unban.json index fa287ad..9c2717c 100644 --- a/bot/es_es/slash_commands/unban.json +++ b/bot/es_es/slash_commands/unban.json @@ -3,7 +3,7 @@ "description": "Desbanear a un usuario", "commandOptions": { "userOption": { - "name": "ID de usuario", + "name": "id-de-usuario", "description": "El ID del usuario a desbanear" }, "reasonOption": { From 04fb445c9421866b289e3abee719d61310fd5a6a Mon Sep 17 00:00:00 2001 From: JuanQP Date: Tue, 30 Jul 2024 15:52:35 +0200 Subject: [PATCH 11/19] solved2 --- bot/es_es/slash_commands/help.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/es_es/slash_commands/help.json b/bot/es_es/slash_commands/help.json index 44ac0c4..bda6616 100644 --- a/bot/es_es/slash_commands/help.json +++ b/bot/es_es/slash_commands/help.json @@ -3,11 +3,11 @@ "description": "Obtenga ayuda con Quark", "commandOptions": { "overviewOption": { - "name": "descripción-general", + "name": "resumen", "description": "Ver información de ayuda general" }, "serverlogOption": { - "name": "registro-del-servidor", + "name": "registros", "description": "Obtenga ayuda con los registros del servidor de Quark" } } From 5eb0ab81deea4dd921ba12a26bbc08d2fc3e5eae Mon Sep 17 00:00:00 2001 From: lis0ownik <97831192+lis0ownik@users.noreply.github.com> Date: Wed, 31 Jul 2024 19:44:23 +0200 Subject: [PATCH 12/19] Grammar Fixes, read_me.txt file out --- bot/pl/read_me.txt | 1 - bot/pl/standard/modlog.json | 8 ++++---- bot/pl/standard/serverActions.json | 2 +- bot/pl/standard/serverEvents.json | 14 +++++++------- bot/pl/standard/textEvents.json | 4 ++-- bot/pl/standard/voiceEvents.json | 20 ++++++++++---------- 6 files changed, 24 insertions(+), 25 deletions(-) delete mode 100644 bot/pl/read_me.txt diff --git a/bot/pl/read_me.txt b/bot/pl/read_me.txt deleted file mode 100644 index 242d7a8..0000000 --- a/bot/pl/read_me.txt +++ /dev/null @@ -1 +0,0 @@ -Translations from English to Polish are 100% complete> ( You can delete this ) \ No newline at end of file diff --git a/bot/pl/standard/modlog.json b/bot/pl/standard/modlog.json index 0af8694..3c98589 100644 --- a/bot/pl/standard/modlog.json +++ b/bot/pl/standard/modlog.json @@ -6,11 +6,11 @@ "noReason": "Moderator: proszę uruchomić {command}", "noReasonBrief": "Uruchom {command}", - "ban": "Zbanuj", - "unban": "Odbanuj", - "kick": "Wyrzuć", + "ban": "Ban", + "unban": "Unban", + "kick": "wyrzucenie", "mute": "Przerwa", - "unmute": "Przerwa została zdjętą", + "unmute": "Przerwa została zdjęta", "timeoutEnds": "Przerwa kończy się {time}", diff --git a/bot/pl/standard/serverActions.json b/bot/pl/standard/serverActions.json index 934090d..7116df1 100644 --- a/bot/pl/standard/serverActions.json +++ b/bot/pl/standard/serverActions.json @@ -20,7 +20,7 @@ "description": "{emoji} została dodana przez {executor}" }, "emojiDeleted": { - "title": "Emotka usunięte", + "title": "Usunięto emotkę", "description": "{emoji} została usunięta przez {executor}", "emoji": "Emoji" }, diff --git a/bot/pl/standard/serverEvents.json b/bot/pl/standard/serverEvents.json index 6ba8db5..d48b688 100644 --- a/bot/pl/standard/serverEvents.json +++ b/bot/pl/standard/serverEvents.json @@ -55,16 +55,16 @@ "roles": "Role" }, "memberPrune": { - "title": "Members Pruned", - "description": "{count} members with at least {time} days of inactivity were pruned by {executor}" + "title": "Członkowie usunięci", + "description": "{count} Członkowie z co najmniej {time} dniami nieaktywności zostali usunięci przez {executor}" }, "avatarUpdate": { "title": "Zmieniono Awatar Serwera", - "description": "{user} zmienił swojego awatara serwera", - "description_added": "{user} dodał awatar serwera", - "description_removed": "{user} usunął swojego awatara serwera", + "description": "{user} zmienił ikonę serwera", + "description_added": "{user} dodał ikonę serwera", + "description_removed": "{user} usunął ikonę serwera", "changedBy": "Zmienione przez", - "linkToOldAvatar": "Link do starego awatara", - "linkToNewAvatar": "Link do nowego awatara" + "linkToOldAvatar": "Link do starej ikony", + "linkToNewAvatar": "Link do nowej ikony" } } \ No newline at end of file diff --git a/bot/pl/standard/textEvents.json b/bot/pl/standard/textEvents.json index 1574e1a..6a52a9b 100644 --- a/bot/pl/standard/textEvents.json +++ b/bot/pl/standard/textEvents.json @@ -1,7 +1,7 @@ { "polls": { "poll": "Ankieta", - "pollDescriptor": "[poll]", + "pollDescriptor": "[ankieta]", "status": "Status ankiety.", "ended": "zakończona", "notEnded": "nie zakończona", @@ -65,7 +65,7 @@ "description": "Wiadomość została przypięta przez {executor}" }, "messageUnpin": { - "title": "Wiadomość Odepnięta", + "title": "Wiadomość Odpięta", "description": "Wiadomość została odepnięta przez {executor}" }, "threadCreate": { diff --git a/bot/pl/standard/voiceEvents.json b/bot/pl/standard/voiceEvents.json index 526a606..0efd23d 100644 --- a/bot/pl/standard/voiceEvents.json +++ b/bot/pl/standard/voiceEvents.json @@ -16,24 +16,24 @@ "description": "{user} zakończył wideo na kanale głosowym {channel}" }, "voiceSwitch": { - "title": "Zmiana Kanału", + "title": "Zmiana Kanału Głosowego", "description": "{user} przeszedł z kanału głosowego {channel_old} na kanał {channel_new}" }, "voiceMove": { - "title": "Przeniesienie", + "title": "Przeniesienie z Kanału Głosowego", "description": "{user} został przeniesiony z kanału głosowego {channel_old} na kanał głosowy {channel_new}", "movedBy": "Przeniesiony przez" }, "voiceJoin": { - "title": "Dołączenie do Kanału", + "title": "Dołączenie do Kanału Głosowego", "description": "{user} dołączył do kanału głosowego {channel}" }, "voiceLeave": { - "title": "Opuśczenie Kanału", + "title": "Opuszczenie Kanału Głosowego", "description": "{user} opuścił kanał głosowy {channel}" }, "voiceDisconnect": { - "title": "Rozłączenie", + "title": "Rozłączenie z Kanału Głosowego", "description": "{user} został rozłączony", "disconnectedBy": "Rozłączony przez", "voiceChannel": "Kanał głosowy" @@ -45,8 +45,8 @@ "voiceChannel": "Kanał głosowy" }, "serverMute": { - "title": "Odciszenie Mikrofonu", - "description": "{user} został wyciszony mikrofon", + "title": "Wyciszenie Mikrofonu", + "description": "{user} został wyciszony", "mutedBy": "Wyciszony mikrofon przez", "voiceChannel": "Kanał głosowy" }, @@ -57,8 +57,8 @@ "voiceChannel": "Kanał głosowy" }, "serverUnmute": { - "title": "Odciszonie Mikrofonu", - "description": "{user} został odciszony mikrofon", + "title": "Odciszenie Mikrofonu", + "description": "{user} został odciszony", "unmutedBy": "Odciszony przez", "voiceChannel": "Kanał głosowy" }, @@ -66,6 +66,6 @@ "title": "Zaktualizowano Status Kanału Głosowego", "description": "{executor} ustawił status dla kanału {channel}", "status": "Status", - "linksToEmojis": "Linki do emoji" + "linksToEmojis": "Linki do emotki" } } \ No newline at end of file From a005b46579a85cc1ae475e3a30a935b630f09324 Mon Sep 17 00:00:00 2001 From: lis0ownik <97831192+lis0ownik@users.noreply.github.com> Date: Wed, 31 Jul 2024 19:47:07 +0200 Subject: [PATCH 13/19] another grammar fix --- bot/pl/standard/serverEvents.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/pl/standard/serverEvents.json b/bot/pl/standard/serverEvents.json index d48b688..9fc9878 100644 --- a/bot/pl/standard/serverEvents.json +++ b/bot/pl/standard/serverEvents.json @@ -59,11 +59,11 @@ "description": "{count} Członkowie z co najmniej {time} dniami nieaktywności zostali usunięci przez {executor}" }, "avatarUpdate": { - "title": "Zmieniono Awatar Serwera", + "title": "Zmieniono Ikonę Serwera", "description": "{user} zmienił ikonę serwera", "description_added": "{user} dodał ikonę serwera", "description_removed": "{user} usunął ikonę serwera", - "changedBy": "Zmienione przez", + "changedBy": "Zmieniona przez", "linkToOldAvatar": "Link do starej ikony", "linkToNewAvatar": "Link do nowej ikony" } From c25e69dc85fff8c4ab957d4be6218e28b11518fb Mon Sep 17 00:00:00 2001 From: Weblate Admin Date: Fri, 2 Aug 2024 10:59:12 +0000 Subject: [PATCH 14/19] Translated using Weblate (English) Currently translated at 100.0% (8 of 8 strings) Translation: Quark Bot/Ban Translate-URL: https://languages.quark.bot/projects/quark-bot/slash-commands/ban/en/ --- bot/en_us/slash_commands/ban.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/bot/en_us/slash_commands/ban.json b/bot/en_us/slash_commands/ban.json index 39e94b3..c0c2577 100644 --- a/bot/en_us/slash_commands/ban.json +++ b/bot/en_us/slash_commands/ban.json @@ -1,18 +1,15 @@ { "name": "ban", "description": "Ban a user", - "commandOptions": { "userOption": { "name": "user", "description": "The user to ban" }, - "reasonOption": { "name": "reason", "description": "The reason for banning the user" }, - "deleteMessageDaysOption": { "name": "delete", "description": "Number of days of user messages to delete" From 90286d6e73a864c7711261681e0fb0a1aad8d774 Mon Sep 17 00:00:00 2001 From: Weblate Admin Date: Fri, 2 Aug 2024 10:59:12 +0000 Subject: [PATCH 15/19] Translated using Weblate (English (United Kingdom)) Currently translated at 100.0% (8 of 8 strings) Translation: Quark Bot/Ban Translate-URL: https://languages.quark.bot/projects/quark-bot/slash-commands/ban/en_GB/ --- bot/en_gb/slash_commands/ban.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/bot/en_gb/slash_commands/ban.json b/bot/en_gb/slash_commands/ban.json index 39e94b3..c0c2577 100644 --- a/bot/en_gb/slash_commands/ban.json +++ b/bot/en_gb/slash_commands/ban.json @@ -1,18 +1,15 @@ { "name": "ban", "description": "Ban a user", - "commandOptions": { "userOption": { "name": "user", "description": "The user to ban" }, - "reasonOption": { "name": "reason", "description": "The reason for banning the user" }, - "deleteMessageDaysOption": { "name": "delete", "description": "Number of days of user messages to delete" From eaed4d80ccf8f06b2792e960010e042ea5a7390d Mon Sep 17 00:00:00 2001 From: Weblate Admin Date: Fri, 2 Aug 2024 10:59:12 +0000 Subject: [PATCH 16/19] Translated using Weblate (Spanish) Currently translated at 100.0% (8 of 8 strings) Translation: Quark Bot/Ban Translate-URL: https://languages.quark.bot/projects/quark-bot/slash-commands/ban/es/ --- bot/es_es/slash_commands/ban.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/bot/es_es/slash_commands/ban.json b/bot/es_es/slash_commands/ban.json index c0033b0..2f76331 100644 --- a/bot/es_es/slash_commands/ban.json +++ b/bot/es_es/slash_commands/ban.json @@ -2,17 +2,17 @@ "name": "ban", "description": "Prohibir a un usuario", "commandOptions": { - "userOption": { - "name": "usuario", - "description": "El usuario a prohibir" - }, - "reasonOption": { - "name": "razón", - "description": "El motivo de la prohibición del usuario." - }, - "deleteMessageDaysOption": { - "name": "borrar", - "description": "Número de días de mensajes de usuario para eliminar" - } + "userOption": { + "name": "usuario", + "description": "El usuario a prohibir" + }, + "reasonOption": { + "name": "razón", + "description": "El motivo de la prohibición del usuario." + }, + "deleteMessageDaysOption": { + "name": "borrar", + "description": "Número de días de mensajes de usuario para eliminar" + } } - } \ No newline at end of file +} From 22907b42eacd1a19117732a138df2391288aa72b Mon Sep 17 00:00:00 2001 From: Weblate Admin Date: Fri, 2 Aug 2024 10:59:12 +0000 Subject: [PATCH 17/19] Translated using Weblate (Dutch) Currently translated at 100.0% (8 of 8 strings) Translation: Quark Bot/Ban Translate-URL: https://languages.quark.bot/projects/quark-bot/slash-commands/ban/nl/ --- bot/nl/slash_commands/ban.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/bot/nl/slash_commands/ban.json b/bot/nl/slash_commands/ban.json index 1f18713..3b62199 100644 --- a/bot/nl/slash_commands/ban.json +++ b/bot/nl/slash_commands/ban.json @@ -1,21 +1,18 @@ { "name": "verbannen", "description": "Een gebruiker verbannen", - "commandOptions": { "userOption": { "name": "gebruiker", "description": "De gebruiker om te verbannen" }, - "reasonOption": { "name": "reden", "description": "De reden voor het verbannen van de gebruiker" }, - "deleteMessageDaysOption": { "name": "verwijderen", "description": "Aantal dagen van gebruikersberichten om te verwijderen" } } -} \ No newline at end of file +} From b4afc0d7944690812dd5425c8c374a6f380f5dc4 Mon Sep 17 00:00:00 2001 From: Weblate Admin Date: Fri, 2 Aug 2024 10:59:12 +0000 Subject: [PATCH 18/19] Translated using Weblate (Polish) Currently translated at 100.0% (8 of 8 strings) Translation: Quark Bot/Ban Translate-URL: https://languages.quark.bot/projects/quark-bot/slash-commands/ban/pl/ --- bot/pl/slash_commands/ban.json | 39 ++++++++++++++++------------------ 1 file changed, 18 insertions(+), 21 deletions(-) diff --git a/bot/pl/slash_commands/ban.json b/bot/pl/slash_commands/ban.json index 3e71d52..7828c48 100644 --- a/bot/pl/slash_commands/ban.json +++ b/bot/pl/slash_commands/ban.json @@ -1,21 +1,18 @@ -{ - "name": "ban", - "description": "Zbanuj użytkownika", - - "commandOptions": { - "userOption": { - "name": "użytkownik", - "description": "Użytkownik do zbanowania" - }, - - "reasonOption": { - "name": "powód", - "description": "Powód bana" - }, - - "deleteMessageDaysOption": { - "name": "wiadomości", - "description": "Liczba dni wiadomości użytkownika do usunięcia" - } - } -} \ No newline at end of file +{ + "name": "ban", + "description": "Zbanuj użytkownika", + "commandOptions": { + "userOption": { + "name": "użytkownik", + "description": "Użytkownik do zbanowania" + }, + "reasonOption": { + "name": "powód", + "description": "Powód bana" + }, + "deleteMessageDaysOption": { + "name": "wiadomości", + "description": "Liczba dni wiadomości użytkownika do usunięcia" + } + } +} From 3db5cb5b879d2e7e353f479a0f526f1c67610a5d Mon Sep 17 00:00:00 2001 From: Weblate Admin Date: Fri, 2 Aug 2024 10:59:12 +0000 Subject: [PATCH 19/19] Translated using Weblate (Vietnamese) Currently translated at 100.0% (8 of 8 strings) Translation: Quark Bot/Ban Translate-URL: https://languages.quark.bot/projects/quark-bot/slash-commands/ban/vi/ --- bot/vi/slash_commands/ban.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/bot/vi/slash_commands/ban.json b/bot/vi/slash_commands/ban.json index 42f5d64..b7fc3be 100644 --- a/bot/vi/slash_commands/ban.json +++ b/bot/vi/slash_commands/ban.json @@ -1,18 +1,15 @@ { "name": "cấm", "description": "Cấm một người dùng", - "commandOptions": { "userOption": { "name": "người_dùng", "description": "Người dùng bị cấm" }, - "reasonOption": { "name": "lý_do", "description": "Lý do cấm người dùng" }, - "deleteMessageDaysOption": { "name": "xóa", "description": "Số ngày xóa tin nhắn của người dùng"