From b2afeb162a172e647934e39053a2721d49e1a98e Mon Sep 17 00:00:00 2001 From: Bansal <118830821+Abhinav-Bansal751@users.noreply.github.com> Date: Wed, 20 Nov 2024 11:02:54 +0530 Subject: [PATCH 1/2] Update es.js --- src/gui/src/i18n/translations/es.js | 30 ++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/gui/src/i18n/translations/es.js b/src/gui/src/i18n/translations/es.js index 76a058396..d36388aea 100644 --- a/src/gui/src/i18n/translations/es.js +++ b/src/gui/src/i18n/translations/es.js @@ -356,22 +356,22 @@ const es = { // *********************************** // Missing translations // *********************************** - "change": undefined, // In English: "Change" - "clock_visibility": undefined, // In English: "Clock Visibility" - "reading": undefined, // In English: "Reading %strong%" - "writing": undefined, // In English: "Writing %strong%" - "unzipping": undefined, // In English: "Unzipping %strong%" - "sequencing": undefined, // In English: "Sequencing %strong%" - "zipping": undefined, // In English: "Zipping %strong%" - "Editor": undefined, // In English: "Editor" - "Viewer": undefined, // In English: "Viewer" - "People with access": undefined, // In English: "People with access" - "Share With…": undefined, // In English: "Share With…" - "Owner": undefined, // In English: "Owner" - "You can't share with yourself.": undefined, // In English: "You can't share with yourself." - "This user already has access to this item": undefined, // In English: "This user already has access to this item" + "change": 'cambiar', // In English: "Change" + "clock_visibility": 'visibilidad_reloj', // In English: "Clock Visibility" + "reading": 'lectura', // In English: "Reading %strong%" + "writing": 'escribiendo', // In English: "Writing %strong%" + "unzipping": 'descomprimiendo', // In English: "Unzipping %strong%" + "sequencing": 'secuenciación', // In English: "Sequencing %strong%" + "zipping": 'comprimir', // In English: "Zipping %strong%" + "Editor": 'Editor', // In English: "Editor" + "Viewer": 'Espectador', // In English: "Viewer" + "People with access": 'personas con acceso', // In English: "People with access" + "Share With…": 'Compartir con…', // In English: "Share With…" + "Owner": 'Dueño', // In English: "Owner" + "You can't share with yourself.": 'No puedes compartir contigo mismo.', // In English: "You can't share with yourself." + "This user already has access to this item": 'Este usuario ya tiene acceso a este elemento.', // In English: "This user already has access to this item" } }; -export default es; \ No newline at end of file +export default es; From 2c862403994ff6385144841db07dcc94c5c2fc2e Mon Sep 17 00:00:00 2001 From: jelveh Date: Tue, 19 Nov 2024 21:42:29 -0800 Subject: [PATCH 2/2] fix: add placeholders --- src/gui/src/i18n/translations/es.js | 33 +++++++++++++---------------- 1 file changed, 15 insertions(+), 18 deletions(-) diff --git a/src/gui/src/i18n/translations/es.js b/src/gui/src/i18n/translations/es.js index d36388aea..63cf1b16e 100644 --- a/src/gui/src/i18n/translations/es.js +++ b/src/gui/src/i18n/translations/es.js @@ -353,24 +353,21 @@ const es = { login2fa_recovery_back: 'Atras', login2fa_recovery_placeholder: 'XXXXXXXX', - // *********************************** - // Missing translations - // *********************************** - "change": 'cambiar', // In English: "Change" - "clock_visibility": 'visibilidad_reloj', // In English: "Clock Visibility" - "reading": 'lectura', // In English: "Reading %strong%" - "writing": 'escribiendo', // In English: "Writing %strong%" - "unzipping": 'descomprimiendo', // In English: "Unzipping %strong%" - "sequencing": 'secuenciación', // In English: "Sequencing %strong%" - "zipping": 'comprimir', // In English: "Zipping %strong%" - "Editor": 'Editor', // In English: "Editor" - "Viewer": 'Espectador', // In English: "Viewer" - "People with access": 'personas con acceso', // In English: "People with access" - "Share With…": 'Compartir con…', // In English: "Share With…" - "Owner": 'Dueño', // In English: "Owner" - "You can't share with yourself.": 'No puedes compartir contigo mismo.', // In English: "You can't share with yourself." - "This user already has access to this item": 'Este usuario ya tiene acceso a este elemento.', // In English: "This user already has access to this item" - + "change": "cambiar", // In English: "Change" + "clock_visibility": "visibilidadReloj", // In English: "Clock Visibility" + "reading": "lectura %strong%", // In English: "Reading %strong%" + "writing": "escribiendo %strong%", // In English: "Writing %strong%" + "unzipping": "descomprimiendo %strong%", // In English: "Unzipping %strong%" + "sequencing": "secuenciación %strong%", // In English: "Sequencing %strong%" + "zipping": "comprimiendo %strong%", // In English: "Zipping %strong%" + "Editor": "Editor", // In English: "Editor" + "Viewer": "Espectador", // In English: "Viewer" + "People with access": "Personas con acceso", // In English: "People with access" + "Share With…": "Compartir con…", // In English: "Share With…" + "Owner": "Propietario", // In English: "Owner" + "You can't share with yourself.": "No puedes compartir contigo mismo.", // In English: "You can't share with yourself." + "This user already has access to this item": "Este usuario ya tiene acceso a este elemento." // In English: "This user already has access to this item" + } };