-
Notifications
You must be signed in to change notification settings - Fork 525
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:home-assistant/intents into basque
- Loading branch information
Showing
543 changed files
with
11,234 additions
and
4,028 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
hassil==1.7.4 | ||
hassil==2.0.0 | ||
PyYAML==6.0.2 | ||
voluptuous==0.15.2 | ||
regex==2024.9.11 | ||
regex==2024.11.6 | ||
jinja2==3.1.4 | ||
|
||
black==24.10.0 | ||
flake8==7.1.1 | ||
isort==5.13.2 | ||
mypy==1.12.1 | ||
mypy==1.13.0 | ||
pylint==3.3.1 | ||
pytest==8.3.3 | ||
pytest-xdist[psutil]==3.6.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
language: ar | ||
responses: | ||
intents: | ||
HassGetCurrentDate: | ||
default: > | ||
{% set months = { | ||
1: 'يناير', | ||
2: 'فبراير', | ||
3: 'مارس', | ||
4: 'أبريل', | ||
5: 'مايو', | ||
6: 'يونيو', | ||
7: 'يوليو', | ||
8: 'أغسطس', | ||
9: 'سبتمبر', | ||
10: 'أكتوبر', | ||
11: 'نوفمبر', | ||
12: 'ديسمبر' | ||
} %} | ||
{% set ordinal = { | ||
1: 'الأول', | ||
2: 'الثاني', | ||
3: 'الثالث', | ||
4: 'الرابع', | ||
5: 'الخامس', | ||
6: 'السادس', | ||
7: 'السابع', | ||
8: 'الثامن', | ||
9: 'التاسع', | ||
10: 'العاشر', | ||
11: 'الحادي عشر', | ||
12: 'الثاني عشر', | ||
13: 'الثالث عشر', | ||
14: 'الرابع عشر', | ||
15: 'الخامس عشر', | ||
16: 'السادس عشر', | ||
17: 'السابع عشر', | ||
18: 'الثامن عشر', | ||
19: 'التاسع عشر', | ||
20: 'العشرون', | ||
21: 'الواحد والعشرون', | ||
22: 'الثاني والعشرون', | ||
23: 'الثالث والعشرون', | ||
24: 'الرابع والعشرون', | ||
25: 'الخامس والعشرون', | ||
26: 'السادس والعشرون', | ||
27: 'السابع والعشرون', | ||
28: 'الثامن والعشرون', | ||
29: 'التاسع والعشرون', | ||
30: 'الثلاثون', | ||
31: 'الواحد والثلاثون' | ||
} %} | ||
{{ ordinal[slots.date.day] }} من {{ months[slots.date.month] }} {{ slots.date.year }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
language: ar | ||
responses: | ||
intents: | ||
HassGetCurrentTime: | ||
default: > | ||
{% set minute_str = '{0:02d}'.format(slots.time.minute) %} | ||
{% if slots.time.hour <= 12: %} | ||
{{ slots.time.hour }}:{{ minute_str }} صباحا | ||
{% else: %} | ||
{{ slots.time.hour - 12 }}:{{ minute_str }} مساءا | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
language: ar | ||
responses: | ||
intents: | ||
HassRespond: | ||
hello: "اهلا وسهلا" | ||
listening: "لا، فقط في حال قلت كلمة التنشيط" | ||
data: "بياناتك الخاصة يتم ارسالها فقط إلى خادم البيت الذكي الخاص بك" | ||
commands: "لمعرفة ما يمكنك السؤال عنه، قم بزيارة موقعنا الإلكتروني" | ||
creator: "لقد تم إنشائي من قبل المجتمع الرائع للبيت الذكي، والذي يتكون من عباقرة في جميع أنحاء العالم" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
language: ar | ||
responses: | ||
intents: | ||
HassSetPosition: | ||
default: "تم التحريك" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
language: ar | ||
responses: | ||
intents: | ||
HassShoppingListAddItem: | ||
item_added: "تم اضافة {{ slots.item }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
language: bg | ||
responses: | ||
intents: | ||
HassGetCurrentDate: | ||
default: > | ||
{% set months = { | ||
1: 'Януари', | ||
2: 'Февруари', | ||
3: 'Март', | ||
4: 'Април', | ||
5: 'Май', | ||
6: 'Юни', | ||
7: 'Юли', | ||
8: 'Август', | ||
9: 'Септември', | ||
10: 'Октомври', | ||
11: 'Ноември', | ||
12: 'Декември', | ||
} %} | ||
{% set ordinal = { | ||
1: 'първи', | ||
2: 'втори', | ||
3: 'трети', | ||
4: 'четвърти', | ||
5: 'пети', | ||
6: 'шести', | ||
7: 'седми', | ||
8: 'осми', | ||
9: 'девети', | ||
10: 'десети', | ||
11: 'единадесети', | ||
12: 'дванадесети', | ||
13: 'тринадесети', | ||
14: 'четиринадесети', | ||
15: 'петнадесети', | ||
16: 'шестнадесети', | ||
17: 'седемнадесети', | ||
18: 'осемнадесети', | ||
19: 'деветнадесети', | ||
20: 'двадесети', | ||
21: 'двадесет и първи', | ||
22: 'двадесет и втори', | ||
23: 'двадесет и трети', | ||
24: 'двадесет и четвърти', | ||
25: 'двадесет и пети', | ||
26: 'двадесет и шести', | ||
27: 'двадесет и седми', | ||
28: 'двадесет и осми', | ||
29: 'двадесет и девети', | ||
30: 'тридесети', | ||
31: 'тридесет и първи', | ||
} %} | ||
{% set weekday = [ 'понеделник', 'вторник', 'сряда', 'четвъртък', 'петък', 'събота', 'неделя' ] %} | ||
{{ weekday[slots.date.weekday()] }}, {{ ordinal[slots.date.day] }} {{ months[slots.date.month] }} {{ slots.date.year }}-та |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
language: bg | ||
responses: | ||
intents: | ||
HassGetCurrentTime: | ||
default: > | ||
{{ slots.time.hour }} часа | ||
{% if slots.time.minute > 0: %} | ||
и | ||
{{ slots.time.minute }} {{ 'минута' if slots.time.minute == 1 else 'минути' }} | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
language: bg | ||
responses: | ||
intents: | ||
HassShoppingListAddItem: | ||
item_added: "Добавих {{ slots.item }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
language: ca | ||
responses: | ||
intents: | ||
HassCancelTimer: | ||
default: "Temporitzador cancel·lat" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
language: ca | ||
responses: | ||
intents: | ||
HassDecreaseTimer: | ||
default: Canvio el temporitzador |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
language: ca | ||
responses: | ||
intents: | ||
HassGetCurrentDate: | ||
default: > | ||
{% set months = { | ||
1: 'gener', | ||
2: 'febrer', | ||
3: 'març', | ||
4: 'abril', | ||
5: 'maig', | ||
6: 'juny', | ||
7: 'juliol', | ||
8: 'agost', | ||
9: 'setembre', | ||
10: 'octubre', | ||
11: 'novembre', | ||
12: 'desembre', | ||
} %} | ||
{% set weekday = [ 'dilluns', 'dimarts', 'dimecres', 'dijous', 'divendres', 'dissabte', 'diumenge' ] %} | ||
És {{ weekday[slots.date.weekday()] }}, {{slots.date.day}} | ||
{% if slots.date.month in [4,8,10]: %} | ||
d'{{ months[slots.date.month] }} | ||
{% else %} | ||
de {{ months[slots.date.month] }} | ||
{% endif %} | ||
del {{ slots.date.year }} |
Oops, something went wrong.