This repository has been archived on 2023-06-09. You can view files and clone it, but cannot push or open issues or pull requests.
jarvis-server/jarvis/skills/daily/date_and_time/lang/en-en.json

38 lines
691 B
JSON
Raw Normal View History

2021-07-26 18:23:32 +02:00
{
"what_time_is_it": {
"patterns": [
"What time is it",
"Show me the time",
"Tell me the time",
"What's the time",
"What is the time"
],
"responses": [
"It is {time}",
"It's {time} right now",
"The time is {time}"
]
},
"what_day_is_it": {
"patterns": [
"What's the day",
"Tell me the day of the week. ",
"What day are we"
],
2021-07-26 22:07:51 +02:00
"responses": [
2021-07-26 18:23:32 +02:00
"{day}",
"Today is {day}"
]
2021-07-26 22:07:51 +02:00
},
"others": {
"days_of_week": {
"0": "Monday",
"1": "Tuesday",
"2": "Wednesday",
"3": "Thursday",
"4:": "Friday",
"5": "Saturday",
"6": "Sunday"
}
2021-07-26 18:23:32 +02:00
}
}