From 841d0f23b930d4128281805a3e0291879083fcc1 Mon Sep 17 00:00:00 2001 From: paulaarnasbsc Date: Mon, 19 Jan 2026 08:21:49 +0000 Subject: [PATCH 1/3] Translate skill.json via GitLocalize --- locale/es/skill.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 locale/es/skill.json diff --git a/locale/es/skill.json b/locale/es/skill.json new file mode 100644 index 0000000..35e1e8a --- /dev/null +++ b/locale/es/skill.json @@ -0,0 +1,5 @@ +{ + "examples": [ + "Muéstrame el color verde" + ] +} From fea31da75f31e8d359fab37085ca82a8553073a0 Mon Sep 17 00:00:00 2001 From: paulaarnasbsc Date: Mon, 19 Jan 2026 08:21:51 +0000 Subject: [PATCH 2/3] Translate dialogs.json via GitLocalize --- translations/es/dialogs.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 translations/es/dialogs.json diff --git a/translations/es/dialogs.json b/translations/es/dialogs.json new file mode 100644 index 0000000..d3697c5 --- /dev/null +++ b/translations/es/dialogs.json @@ -0,0 +1,20 @@ +{ + "/dialog/report-color-by-rgb-name-not-known.dialog": [ + "Ese color tiene un valor hexadecimal de {hex_code}" + ], + "/dialog/color-not-found.dialog": [ + "No he podido encontrar ese color" + ], + "/dialog/report-color-by-rgb-name-known.dialog": [ + "{color_name} tiene un valor hexadecimal de {hex_code}" + ], + "/dialog/report-color-by-hex-name-not-known.dialog": [ + "Los valores RGB para este color son: Rojo {red_value}, Verde {green_value}, Azul {blue_value}" + ], + "/dialog/report-color-by-hex-name-known.dialog": [ + "Esto es {color_name}. Sus valores RGB son: Rojo {red_value}, Verde {green_value}, Azul {blue_value}." + ], + "/dialog/report-color-by-name.dialog": [ + "{color_name} tiene un valor hexadecimal de {hex_code}. En RGB, esto es Rojo {red_value}, Verde {green_value}, Azul {blue_value}." + ] +} From 88d74042c1fe739649ce78bfd0832ae64a9780ff Mon Sep 17 00:00:00 2001 From: paulaarnasbsc Date: Mon, 19 Jan 2026 08:21:54 +0000 Subject: [PATCH 3/3] Translate intents.json via GitLocalize --- translations/es/intents.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 translations/es/intents.json diff --git a/translations/es/intents.json b/translations/es/intents.json new file mode 100644 index 0000000..f7b192a --- /dev/null +++ b/translations/es/intents.json @@ -0,0 +1,15 @@ +{ + "/intents/request-color-by-name.intent": [ + "Muéstrame el color {color}", + "¿Cómo (es|se ve) el color {color}?" + ], + "/intents/request-color-by-rgb.intent": [ + "¿Qué color tiene un valor RGB de {rgb}?" + ], + "/intents/request-color.intent": [ + "¿De qué color es {requested_color}?" + ], + "/intents/request-color-by-hex.intent": [ + "¿Qué color tiene un código hexadecimal de {hex_code}?" + ] +}