From c4cfa178ff6e436f5003cc6cf7df13d27481cc96 Mon Sep 17 00:00:00 2001 From: Pandipipas <62224708+Pandipipas@users.noreply.github.com> Date: Tue, 17 Feb 2026 14:08:57 +0100 Subject: [PATCH] Translate ScoreboardPanel game label to English --- README.md | 26 +++++++------- package.json | 2 +- .../components/ScoreboardPanel.vue | 2 +- src/dashboard/scoreko-dev/views/About.vue | 34 +++++++++---------- 4 files changed, 32 insertions(+), 32 deletions(-) diff --git a/README.md b/README.md index ddef6da..886f23a 100644 --- a/README.md +++ b/README.md @@ -1,26 +1,26 @@ # scoreko-dev -Bundle de NodeCG para producción de overlays de fighting games. +NodeCG bundle for producing fighting game overlays. -## Proyecto +## Project -- Repositorio: https://github.com/Pandipipas/scoreko-dev -- Stack: NodeCG, Vue 3, TypeScript, Quasar y Vite. +- Repository: https://github.com/Pandipipas/scoreko-dev +- Stack: NodeCG, Vue 3, TypeScript, Quasar, and Vite. -## Requisitos +## Requirements - Node.js 22+ - NodeCG 2.3+ ## Scripts -- `npm run autofix`: corrige errores de lint automáticamente. -- `npm run build`: compila dashboard/graphics y extensión. -- `npm run lint`: valida linting del proyecto. -- `npm run schema-types`: genera tipos desde schemas. -- `npm run start`: inicia NodeCG. -- `npm run watch`: modo desarrollo con watch. +- `npm run autofix`: automatically fixes lint errors. +- `npm run build`: builds dashboard/graphics and extension. +- `npm run lint`: validates project linting. +- `npm run schema-types`: generates types from schemas. +- `npm run start`: starts NodeCG. +- `npm run watch`: development mode with watch. -## Versión +## Version -Versión inicial del proyecto: `0.1.0`. +Initial project version: `0.1.0`. diff --git a/package.json b/package.json index 8211c02..75f5021 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "scoreko-dev", "version": "0.1.0", - "description": "Bundle de NodeCG para overlays de fighting games.", + "description": "NodeCG bundle for fighting game overlays.", "homepage": "https://github.com/Pandipipas/scoreko-dev#readme", "bugs": { "url": "https://github.com/Pandipipas/scoreko-dev/issues" diff --git a/src/dashboard/scoreko-dev/components/ScoreboardPanel.vue b/src/dashboard/scoreko-dev/components/ScoreboardPanel.vue index 7be36b0..32d3928 100644 --- a/src/dashboard/scoreko-dev/components/ScoreboardPanel.vue +++ b/src/dashboard/scoreko-dev/components/ScoreboardPanel.vue @@ -848,7 +848,7 @@ watch( v-model="scoreboardStore.scoreboard.game" v-model:input-value="gameInput" :options="fightingGameOptions" - label="Juego" + label="Game" dense emit-value map-options diff --git a/src/dashboard/scoreko-dev/views/About.vue b/src/dashboard/scoreko-dev/views/About.vue index 7d08377..68bd93a 100644 --- a/src/dashboard/scoreko-dev/views/About.vue +++ b/src/dashboard/scoreko-dev/views/About.vue @@ -25,7 +25,7 @@ const latestRelease = ref(null); const collaborators = [ { name: 'Pandipipas', - role: 'Desarrollo y mantenimiento de Scoreko-dev', + role: 'Development and maintenance of Scoreko-dev', url: 'https://github.com/Pandipipas/scoreko-dev' }, { @@ -104,13 +104,13 @@ async function checkForUpdates() { ); if (!response.ok) { - throw new Error(`GitHub respondió con estado ${response.status}.`); + throw new Error(`GitHub responded with status ${response.status}.`); } latestRelease.value = await response.json() as ReleaseResponse; } catch (error) { latestRelease.value = null; - updateError.value = error instanceof Error ? error.message : 'Error desconocido revisando releases.'; + updateError.value = error instanceof Error ? error.message : 'Unknown error while checking releases.'; } finally { checkingUpdates.value = false; } @@ -148,7 +148,7 @@ onMounted(() => { {{ appName }}
- Versión {{ currentVersion }} + Version {{ currentVersion }}
@@ -157,7 +157,7 @@ onMounted(() => {

- Dashboard para producción de overlays de fighting games usando NodeCG, Vue y Quasar. + Dashboard for producing fighting game overlays using NodeCG, Vue, and Quasar.

{ target="_blank" rel="noopener noreferrer" icon="open_in_new" - label="Repositorio en GitHub" + label="GitHub Repository" color="primary" flat no-caps @@ -189,7 +189,7 @@ onMounted(() => {
- Colaboradores y agradecimientos + Collaborators and acknowledgments
{ >
- Sistema de updates (GitHub Releases) + Update system (GitHub Releases)
- Este chequeo consulta el último release del repo y lo compara con la versión actual. + This check fetches the latest release from the repository and compares it with the current version.
@@ -243,7 +243,7 @@ onMounted(() => { /> { />
- Último release: {{ releaseLabel }} + Latest release: {{ releaseLabel }}
- Publicado: {{ new Date(latestRelease.published_at).toLocaleString() }} + Published: {{ new Date(latestRelease.published_at).toLocaleString() }}
- {{ hasUpdate ? 'Hay una versión más nueva disponible.' : 'Tu versión está actualizada frente al último release.' }} + {{ hasUpdate ? 'A newer version is available.' : 'Your version is up to date with the latest release.' }}