Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FI] Added new error messages #1918

Merged
merged 2 commits into from
Feb 2, 2024
Merged
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
31 changes: 25 additions & 6 deletions sentences/fi/_common.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,31 @@
language: "fi"
responses:
errors:
no_intent: "Olen pahoillani, en ymmärrä mitä tarkoitat"
no_area: "Ei ole aluetta nimellä {{ area }}"
no_domain_in_area: "{{ area }} ei sisällä {{ domain }}"
no_device_class_in_area: "{{ area }} ei sisällä {{ device_class }}"
no_entity: "Ei laitetta tai kohdetta nimellä {{ entity }}"
handle_error: "Asian käsittelyssä tapahtui odottamaton ongelma"
# General errors
no_intent: "Pahoittelut, en ymmärtänyt"
handle_error: "Odottamaton virhe tapahtui"

# Errors for when user is not logged in
no_area: "Aluetta {{ area }} ei löydy"
no_domain: "Pahoittelut, yhtäkään {{ domain }} ei löydy"
no_domain_in_area: "Pahoittelut, yhtäkään {{ domain }} ei löydy alueelta {{ area }}"
no_device_class: "Pahoittelut, yhtäkään {{ device_class }} ei löydy"
no_device_class_in_area: "Pahoittelut, yhtäkään {{ device_class }} ei löydy alueelta {{ area }}"
no_entity: "Pahoittelut, en löydä laitetta tai kohdetta nimellä {{ entity }}"
no_entity_in_area: "Pahoittelut, en löydä laitetta nimellä {{ entity }} alueelta {{ area }}"

# Errors for when user is logged in and we can give more information
no_entity_exposed: "Pahoittelut, {{ entity }} ei ole asetettu näkyviin"
no_entity_in_area_exposed: "Pahoittelut, {{ entity }} alueella {{ area }} ei ole asetettu näkyviin"
no_domain_exposed: "Pahoittelut, yhtäkään {{ domain }} ei ole asetettu näkyviin"
no_domain_in_area_exposed: "Pahoittelut, yhtäkään {{ domain }} alueella {{ area }} ei ole asetettu näkyviin"
no_device_class_exposed: "Pahoittelut, yhtäkään {{ device_class }} ei ole asetettu näkyviin"
no_device_class_in_area_exposed: "Pahoittelut, yhtäkään {{ device_class }} alueella {{ area }} ei ole asetettu näkyviin"

# Used when multiple (exposed) devices have the same name
duplicate_entities: "Pahoittelut, useita laitteita nimeltä {{ entity }} löytyi"
duplicate_entities_in_area: "Pahoittelut, useita laitteita nimeltä {{ entity }} löytyi alueelta {{ area }}"

lists:
color:
values:
Expand Down