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" + ] +} 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}." + ] +} 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}?" + ] +}