Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions locale/es/skill.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"examples": [
"Muéstrame el color verde"
]
}
20 changes: 20 additions & 0 deletions translations/es/dialogs.json
Original file line number Diff line number Diff line change
@@ -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}."
]
}
15 changes: 15 additions & 0 deletions translations/es/intents.json
Original file line number Diff line number Diff line change
@@ -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}?"
]
}
Loading