mirror of
https://github.com/joBr99/nspanel-lovelace-ui.git
synced 2025-12-19 14:14:12 +01:00
add initial dev version of ha addon
This commit is contained in:
7
.github/dependabot.yaml
vendored
Normal file
7
.github/dependabot.yaml
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: weekly
|
||||
time: "06:00"
|
||||
111
.github/workflows/builder.yaml
vendored
Normal file
111
.github/workflows/builder.yaml
vendored
Normal file
@@ -0,0 +1,111 @@
|
||||
name: Builder
|
||||
|
||||
env:
|
||||
BUILD_ARGS: "--test"
|
||||
MONITORED_FILES: "build.yaml config.yaml Dockerfile rootfs"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
init:
|
||||
runs-on: ubuntu-latest
|
||||
name: Initialize builds
|
||||
outputs:
|
||||
changed_addons: ${{ steps.changed_addons.outputs.addons }}
|
||||
changed: ${{ steps.changed_addons.outputs.changed }}
|
||||
steps:
|
||||
- name: Check out the repository
|
||||
uses: actions/checkout@v4.1.1
|
||||
|
||||
- name: Get changed files
|
||||
id: changed_files
|
||||
uses: jitterbit/get-changed-files@v1
|
||||
|
||||
- name: Find add-on directories
|
||||
id: addons
|
||||
uses: home-assistant/actions/helpers/find-addons@master
|
||||
|
||||
- name: Get changed add-ons
|
||||
id: changed_addons
|
||||
run: |
|
||||
declare -a changed_addons
|
||||
for addon in ${{ steps.addons.outputs.addons }}; do
|
||||
if [[ "${{ steps.changed_files.outputs.all }}" =~ $addon ]]; then
|
||||
for file in ${{ env.MONITORED_FILES }}; do
|
||||
if [[ "${{ steps.changed_files.outputs.all }}" =~ $addon/$file ]]; then
|
||||
if [[ ! "${changed_addons[@]}" =~ $addon ]]; then
|
||||
changed_addons+=("\"${addon}\",");
|
||||
fi
|
||||
fi
|
||||
done
|
||||
fi
|
||||
done
|
||||
|
||||
changed=$(echo ${changed_addons[@]} | rev | cut -c 2- | rev)
|
||||
|
||||
if [[ -n ${changed} ]]; then
|
||||
echo "Changed add-ons: $changed";
|
||||
echo "changed=true" >> $GITHUB_OUTPUT;
|
||||
echo "addons=[$changed]" >> $GITHUB_OUTPUT;
|
||||
else
|
||||
echo "No add-on had any monitored files changed (${{ env.MONITORED_FILES }})";
|
||||
fi
|
||||
build:
|
||||
needs: init
|
||||
runs-on: ubuntu-latest
|
||||
if: needs.init.outputs.changed == 'true'
|
||||
name: Build ${{ matrix.arch }} ${{ matrix.addon }} add-on
|
||||
strategy:
|
||||
matrix:
|
||||
addon: ${{ fromJson(needs.init.outputs.changed_addons) }}
|
||||
arch: ["aarch64", "amd64", "armhf", "armv7", "i386"]
|
||||
|
||||
steps:
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@v4.1.1
|
||||
|
||||
- name: Get information
|
||||
id: info
|
||||
uses: home-assistant/actions/helpers/info@master
|
||||
with:
|
||||
path: "./${{ matrix.addon }}"
|
||||
|
||||
- name: Check if add-on should be built
|
||||
id: check
|
||||
run: |
|
||||
if [[ "${{ steps.info.outputs.architectures }}" =~ ${{ matrix.arch }} ]]; then
|
||||
echo "build_arch=true" >> $GITHUB_OUTPUT;
|
||||
echo "image=$(echo ${{ steps.info.outputs.image }} | cut -d'/' -f3)" >> $GITHUB_OUTPUT;
|
||||
if [[ -z "${{ github.head_ref }}" ]] && [[ "${{ github.event_name }}" == "push" ]]; then
|
||||
echo "BUILD_ARGS=" >> $GITHUB_ENV;
|
||||
fi
|
||||
else
|
||||
echo "${{ matrix.arch }} is not a valid arch for ${{ matrix.addon }}, skipping build";
|
||||
echo "build_arch=false" >> $GITHUB_OUTPUT;
|
||||
fi
|
||||
|
||||
- name: Login to GitHub Container Registry
|
||||
if: env.BUILD_ARGS != '--test'
|
||||
uses: docker/login-action@v3.0.0
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.repository_owner }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Build ${{ matrix.addon }} add-on
|
||||
if: steps.check.outputs.build_arch == 'true'
|
||||
uses: home-assistant/builder@2023.09.0
|
||||
with:
|
||||
args: |
|
||||
${{ env.BUILD_ARGS }} \
|
||||
--${{ matrix.arch }} \
|
||||
--target /data/${{ matrix.addon }} \
|
||||
--image "${{ steps.check.outputs.image }}" \
|
||||
--docker-hub "ghcr.io/${{ github.repository_owner }}" \
|
||||
--addon
|
||||
41
.github/workflows/lint.yaml
vendored
Normal file
41
.github/workflows/lint.yaml
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
name: Lint
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
schedule:
|
||||
- cron: "0 0 * * *"
|
||||
|
||||
jobs:
|
||||
find:
|
||||
name: Find add-ons
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
addons: ${{ steps.addons.outputs.addons_list }}
|
||||
steps:
|
||||
- name: ⤵️ Check out code from GitHub
|
||||
uses: actions/checkout@v4.1.1
|
||||
|
||||
- name: 🔍 Find add-on directories
|
||||
id: addons
|
||||
uses: home-assistant/actions/helpers/find-addons@master
|
||||
|
||||
lint:
|
||||
name: Lint add-on ${{ matrix.path }}
|
||||
runs-on: ubuntu-latest
|
||||
needs: find
|
||||
strategy:
|
||||
matrix:
|
||||
path: ${{ fromJson(needs.find.outputs.addons) }}
|
||||
steps:
|
||||
- name: ⤵️ Check out code from GitHub
|
||||
uses: actions/checkout@v4.1.1
|
||||
|
||||
- name: 🚀 Run Home Assistant Add-on Lint
|
||||
uses: frenck/action-addon-linter@v2.15
|
||||
with:
|
||||
path: "./${{ matrix.path }}"
|
||||
674
LICENSE
Normal file
674
LICENSE
Normal file
@@ -0,0 +1,674 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
||||
5
nspanel-lovelace-ui/CHANGELOG.md
Normal file
5
nspanel-lovelace-ui/CHANGELOG.md
Normal file
@@ -0,0 +1,5 @@
|
||||
<!-- https://developers.home-assistant.io/docs/add-ons/presentation#keeping-a-changelog -->
|
||||
|
||||
## 4.7.0
|
||||
|
||||
- Initial test of addon
|
||||
10
nspanel-lovelace-ui/DOCS.md
Normal file
10
nspanel-lovelace-ui/DOCS.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# Home Assistant Add-on: Example add-on
|
||||
|
||||
## How to use
|
||||
|
||||
This add-on really does nothing. It is just an example.
|
||||
|
||||
When started it will print the configured message or "Hello world" in the log.
|
||||
|
||||
It will also print "All done!" in `/share/example_addon_output.txt` to show
|
||||
simple example of the usage of `map` in addon config.
|
||||
12
nspanel-lovelace-ui/Dockerfile
Normal file
12
nspanel-lovelace-ui/Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
# https://developers.home-assistant.io/docs/add-ons/configuration#add-on-dockerfile
|
||||
ARG BUILD_FROM
|
||||
FROM $BUILD_FROM
|
||||
|
||||
# Execute during the build of the image
|
||||
ARG TEMPIO_VERSION BUILD_ARCH
|
||||
RUN \
|
||||
curl -sSLf -o /usr/bin/tempio \
|
||||
"https://github.com/home-assistant/tempio/releases/download/${TEMPIO_VERSION}/tempio_${BUILD_ARCH}"
|
||||
|
||||
# Copy root filesystem
|
||||
COPY rootfs /
|
||||
14
nspanel-lovelace-ui/README.md
Normal file
14
nspanel-lovelace-ui/README.md
Normal file
@@ -0,0 +1,14 @@
|
||||
# Home Assistant Add-on: NSPanel Lovelace UI
|
||||
|
||||
|
||||
![Supports aarch64 Architecture][aarch64-shield]
|
||||
![Supports amd64 Architecture][amd64-shield]
|
||||
![Supports armhf Architecture][armhf-shield]
|
||||
![Supports armv7 Architecture][armv7-shield]
|
||||
![Supports i386 Architecture][i386-shield]
|
||||
|
||||
[aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
|
||||
[amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
|
||||
[armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
|
||||
[armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
|
||||
[i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
|
||||
57
nspanel-lovelace-ui/apparmor.txt
Normal file
57
nspanel-lovelace-ui/apparmor.txt
Normal file
@@ -0,0 +1,57 @@
|
||||
#include <tunables/global>
|
||||
|
||||
profile example flags=(attach_disconnected,mediate_deleted) {
|
||||
#include <abstractions/base>
|
||||
|
||||
# Capabilities
|
||||
file,
|
||||
signal (send) set=(kill,term,int,hup,cont),
|
||||
|
||||
# S6-Overlay
|
||||
/init ix,
|
||||
/bin/** ix,
|
||||
/usr/bin/** ix,
|
||||
/run/{s6,s6-rc*,service}/** ix,
|
||||
/package/** ix,
|
||||
/command/** ix,
|
||||
/etc/services.d/** rwix,
|
||||
/etc/cont-init.d/** rwix,
|
||||
/etc/cont-finish.d/** rwix,
|
||||
/run/{,**} rwk,
|
||||
/dev/tty rw,
|
||||
|
||||
# Bashio
|
||||
/usr/lib/bashio/** ix,
|
||||
/tmp/** rwk,
|
||||
|
||||
# Access to options.json and other files within your addon
|
||||
/data/** rw,
|
||||
|
||||
# Start new profile for service
|
||||
/usr/bin/my_program cx -> my_program,
|
||||
|
||||
profile my_program flags=(attach_disconnected,mediate_deleted) {
|
||||
#include <abstractions/base>
|
||||
|
||||
# Receive signals from S6-Overlay
|
||||
signal (receive) peer=*_example,
|
||||
|
||||
# Access to options.json and other files within your addon
|
||||
/data/** rw,
|
||||
|
||||
# Access to mapped volumes specified in config.json
|
||||
/share/** rw,
|
||||
|
||||
# Access required for service functionality
|
||||
# Note: List was built by doing the following:
|
||||
# 1. Add what is obviously needed based on what is in the script
|
||||
# 2. Add `complain` as a flag to this profile temporarily and run the addon
|
||||
# 3. Review the audit log with `journalctl _TRANSPORT="audit" -g 'apparmor="ALLOWED"'` and add other access as needed
|
||||
# Remember to remove the `complain` flag when you are done
|
||||
/usr/bin/my_program r,
|
||||
/bin/bash rix,
|
||||
/bin/echo ix,
|
||||
/etc/passwd r,
|
||||
/dev/tty rw,
|
||||
}
|
||||
}
|
||||
14
nspanel-lovelace-ui/build.yaml
Normal file
14
nspanel-lovelace-ui/build.yaml
Normal file
@@ -0,0 +1,14 @@
|
||||
# https://developers.home-assistant.io/docs/add-ons/configuration#add-on-dockerfile
|
||||
build_from:
|
||||
aarch64: "ghcr.io/home-assistant/aarch64-base:3.15"
|
||||
amd64: "ghcr.io/home-assistant/amd64-base:3.15"
|
||||
armhf: "ghcr.io/home-assistant/armhf-base:3.15"
|
||||
armv7: "ghcr.io/home-assistant/armv7-base:3.15"
|
||||
i386: "ghcr.io/home-assistant/i386-base:3.15"
|
||||
labels:
|
||||
org.opencontainers.image.title: "Home Assistant Add-on: Example add-on"
|
||||
org.opencontainers.image.description: "Example add-on to use as a blueprint for new add-ons."
|
||||
org.opencontainers.image.source: "https://github.com/home-assistant/addons-example"
|
||||
org.opencontainers.image.licenses: "Apache License 2.0"
|
||||
args:
|
||||
TEMPIO_VERSION: "2021.09.0"
|
||||
20
nspanel-lovelace-ui/config.yaml
Normal file
20
nspanel-lovelace-ui/config.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
# https://developers.home-assistant.io/docs/add-ons/configuration#add-on-config
|
||||
name: NSPanel Lovelace UI Addon
|
||||
version: "4.7.0"
|
||||
slug: nspanel-lovelace-ui
|
||||
description: NSPanel Lovelace UI Addon
|
||||
url: "https://github.com/home-assistant/addons-example/tree/main/example"
|
||||
arch:
|
||||
- armhf
|
||||
- armv7
|
||||
- aarch64
|
||||
- amd64
|
||||
- i386
|
||||
init: false
|
||||
map:
|
||||
- share:rw
|
||||
options:
|
||||
message: "Hello world..."
|
||||
schema:
|
||||
message: "str?"
|
||||
image: "ghcr.io/joBr99/{arch}-addon-example"
|
||||
BIN
nspanel-lovelace-ui/icon.png
Normal file
BIN
nspanel-lovelace-ui/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
BIN
nspanel-lovelace-ui/logo.png
Normal file
BIN
nspanel-lovelace-ui/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 37 KiB |
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env bashio
|
||||
# ==============================================================================
|
||||
# Take down the S6 supervision tree when example fails
|
||||
# s6-overlay docs: https://github.com/just-containers/s6-overlay
|
||||
# ==============================================================================
|
||||
|
||||
declare APP_EXIT_CODE=${1}
|
||||
|
||||
if [[ "${APP_EXIT_CODE}" -ne 0 ]] && [[ "${APP_EXIT_CODE}" -ne 256 ]]; then
|
||||
bashio::log.warning "Halt add-on with exit code ${APP_EXIT_CODE}"
|
||||
echo "${APP_EXIT_CODE}" > /run/s6-linux-init-container-results/exitcode
|
||||
exec /run/s6/basedir/bin/halt
|
||||
fi
|
||||
|
||||
bashio::log.info "Service restart after closing"
|
||||
19
nspanel-lovelace-ui/rootfs/etc/services.d/mqtt-manager/run
Normal file
19
nspanel-lovelace-ui/rootfs/etc/services.d/mqtt-manager/run
Normal file
@@ -0,0 +1,19 @@
|
||||
#!/usr/bin/with-contenv bashio
|
||||
# ==============================================================================
|
||||
# Start the example service
|
||||
# s6-overlay docs: https://github.com/just-containers/s6-overlay
|
||||
# ==============================================================================
|
||||
|
||||
# Add your code here
|
||||
|
||||
# Declare variables
|
||||
declare message
|
||||
|
||||
## Get the 'message' key from the user config options.
|
||||
message=$(bashio::config 'message')
|
||||
|
||||
## Print the message the user supplied, defaults to "Hello World..."
|
||||
bashio::log.info "${message:="Hello World..."}"
|
||||
|
||||
## Run your program
|
||||
exec /usr/bin/mqtt-manager/run.sh
|
||||
36
nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/config.yml
Normal file
36
nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/config.yml
Normal file
@@ -0,0 +1,36 @@
|
||||
nspanels:
|
||||
tasmota_nspdev2:
|
||||
name: test
|
||||
mac: AA:BB:CC:DD:EE:FF
|
||||
panelRecvTopic: "tele/tasmota_nspdev2/RESULT"
|
||||
panelSendTopic: "cmnd/tasmota_nspdev2/CustomSend"
|
||||
timeFormat: "%H:%M"
|
||||
dateFormat: "full"
|
||||
locale: "en_US"
|
||||
screensaver:
|
||||
entities:
|
||||
- entity: switch.decorative_lights
|
||||
cards:
|
||||
- type: cardEntities
|
||||
title: Test Entities Card
|
||||
entities:
|
||||
- entity: light.bed_light
|
||||
- entity: switch.decorative_lights
|
||||
- entity: lock.front_door
|
||||
- entity: scene.test
|
||||
- type: cardEntities
|
||||
title: Test Entities Card2
|
||||
entities:
|
||||
- entity: vacuum.5_fifth_floor
|
||||
- type: cardGrid
|
||||
title: Test Entities Card3
|
||||
entities:
|
||||
- entity: vacuum.5_fifth_floor
|
||||
- entity: navigate.test
|
||||
hiddenCards:
|
||||
- type: cardEntities
|
||||
key: test
|
||||
title: Hidden Entities Card
|
||||
entities:
|
||||
- entity: light.bed_light
|
||||
- entity: switch.decorative_lights
|
||||
253
nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/ha_cards.py
Normal file
253
nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/ha_cards.py
Normal file
@@ -0,0 +1,253 @@
|
||||
import libs.home_assistant
|
||||
import ha_icons
|
||||
import ha_colors
|
||||
from libs.localization import get_translation
|
||||
import panel_cards
|
||||
|
||||
|
||||
class HAEntity(panel_cards.Entity):
|
||||
def __init__(self, locale, config, panel):
|
||||
super().__init__(locale, config, panel)
|
||||
|
||||
def render(self):
|
||||
# get data from HA
|
||||
data = libs.home_assistant.get_entity_data(self.entity_id)
|
||||
if data:
|
||||
self.state = data.get("state")
|
||||
self.attributes = data.get("attributes", [])
|
||||
print(data)
|
||||
|
||||
# HA Entities
|
||||
entity_type_panel = "text"
|
||||
icon_char = ha_icons.get_icon_ha(self.etype, self.state, self.attributes.get(
|
||||
"device_class", None), self.attributes.get("media_content_type", None))
|
||||
color = ha_colors.get_entity_color(
|
||||
self.etype, self.state, self.attributes)
|
||||
name = self.attributes.get("friendly_name", "unknown")
|
||||
value = ""
|
||||
|
||||
match self.etype:
|
||||
case 'switch' | 'input_boolean' | 'automation':
|
||||
entity_type_panel = "switch"
|
||||
value = 1 if self.state == "on" else 0
|
||||
case 'lock':
|
||||
entity_type_panel = "button"
|
||||
value = get_translation(self.locale, "frontend.ui.card.lock.lock") if self.state == "unlocked" else get_translation(
|
||||
self.locale, "frontend.ui.card.lock.unlock")
|
||||
case 'input_text':
|
||||
value = self.state
|
||||
case 'input_select' | 'select':
|
||||
entity_type_panel = "input_sel"
|
||||
value = self.state
|
||||
case 'light':
|
||||
entity_type_panel = "light"
|
||||
value = 1 if self.state == "on" else 0
|
||||
case 'fan':
|
||||
entity_type_panel = "fan"
|
||||
value = 1 if self.state == "on" else 0
|
||||
case 'button' | 'input_button':
|
||||
entity_type_panel = "button"
|
||||
value = get_translation(
|
||||
self.locale, "frontend.ui.card.button.press")
|
||||
case 'scene':
|
||||
entity_type_panel = "button"
|
||||
value = get_translation(
|
||||
self.locale, "frontend.ui.card.scene.activate")
|
||||
case 'script':
|
||||
entity_type_panel = "button"
|
||||
value = get_translation(
|
||||
self.locale, "frontend.ui.card.script.run")
|
||||
case 'number' | 'input_number':
|
||||
entity_type_panel = "number"
|
||||
min_v = self.attributes.get("min", 0)
|
||||
max_v = self.attributes.get("max", 100)
|
||||
value = f"{self.state}|{min_v}|{max_v}"
|
||||
case 'timer':
|
||||
entity_type_panel = "timer"
|
||||
value = get_translation(
|
||||
self.locale, f"backend.component.timer.state._.{self.state}")
|
||||
case 'alarm_control_panel':
|
||||
value = get_translation(
|
||||
self.locale, f"frontend.state_badge.alarm_control_panel.{self.state}")
|
||||
case 'vacuum':
|
||||
entity_type_panel = "button"
|
||||
if self.state == "docked":
|
||||
value = get_translation(
|
||||
self.locale, "frontend.ui.card.vacuum.actions.start_cleaning")
|
||||
else:
|
||||
value = get_translation(
|
||||
self.locale, "frontend.ui.card.vacuum.actions.return_to_base")
|
||||
case 'media_player':
|
||||
entity_type_panel = "media_pl"
|
||||
value = self.state
|
||||
case 'sun':
|
||||
value = get_translation(
|
||||
self.locale, f"backend.component.sun.state._.{self.state}")
|
||||
case 'person':
|
||||
value = get_translation(
|
||||
self.locale, f"backend.component.person.state._.{self.state}")
|
||||
case 'climate':
|
||||
# TODO: temp unit
|
||||
temp_unit = "celsius"
|
||||
state_value = get_translation(
|
||||
self.locale, f"backend.component.climate.state._.{self.state}")
|
||||
temperature = self.attributes.get("temperature", "")
|
||||
temperature_unit = "°C" if (temp_unit == "celsius") else "°F"
|
||||
value = f"{state_value} {temperature}{temperature_unit}"
|
||||
currently_tanslation = get_translation(
|
||||
self.locale, "frontend.ui.card.climate.currently")
|
||||
current_temperature = self.attributes.get(
|
||||
"current_temperature", "")
|
||||
value += f"\r\n{currently_tanslation}: {current_temperature}{temperature_unit}"
|
||||
case 'cover':
|
||||
entity_type_panel = "shutter"
|
||||
device_class = self.attributes.get("device_class", "window")
|
||||
icon_up = ""
|
||||
icon_stop = ""
|
||||
icon_down = ""
|
||||
icon_up_status = "disable"
|
||||
icon_stop_status = "disable"
|
||||
icon_down_status = "disable"
|
||||
bits = self.attributes.get("supported_features")
|
||||
pos = self.attributes.get("current_position")
|
||||
if pos is None:
|
||||
pos_status = self.state
|
||||
pos = "disable"
|
||||
else:
|
||||
pos_status = pos
|
||||
if bits & 0b00000001: # SUPPORT_OPEN
|
||||
if (pos != 100 and not (self.state == "open" and pos == "disable")):
|
||||
icon_up_status = "enable"
|
||||
icon_up = ha_icons.get_action_icon(
|
||||
etype=self.etype, action="open", device_class=device_class)
|
||||
if bits & 0b00000010: # SUPPORT_CLOSE
|
||||
if (pos != 0 and not (self.state == "closed" and pos == "disable")):
|
||||
icon_down_status = "enable"
|
||||
icon_down = ha_icons.get_action_icon(
|
||||
etype=self.etype, action="close", device_class=device_class)
|
||||
if bits & 0b00001000: # SUPPORT_STOP
|
||||
icon_stop = ha_icons.get_action_icon(
|
||||
etype=self.etype, action="stop", device_class=device_class)
|
||||
icon_stop_status = "enable"
|
||||
value = f"{icon_up}|{icon_stop}|{icon_down}|{icon_up_status}|{icon_stop_status}|{icon_down_status}"
|
||||
case _:
|
||||
name = "unsupported"
|
||||
|
||||
# elif entityType in ["sensor", "binary_sensor"]:
|
||||
# entityTypePanel = "text"
|
||||
# device_class = entity.attributes.get("device_class", "")
|
||||
# unit_of_measurement = entity.attributes.get(
|
||||
# "unit_of_measurement", "")
|
||||
# value = entity.state
|
||||
# # limit value to 4 chars on us-p
|
||||
# if self._config.get("model") == "us-p" and cardType == "cardEntities":
|
||||
# value = entity.state[:4]
|
||||
# if value[-1] == ".":
|
||||
# value = value[:-1]
|
||||
# if device_class != "temperature":
|
||||
# value = value + " "
|
||||
# value = value + unit_of_measurement
|
||||
# if entityType == "binary_sensor":
|
||||
# value = get_translation(
|
||||
# self._locale, f"backend.component.binary_sensor.state.{device_class}.{entity.state}")
|
||||
# if (cardType == "cardGrid" or cardType == "cardGrid2") and entityType == "sensor" and icon is None:
|
||||
# icon_id = entity.state[:4]
|
||||
# if icon_id[-1] == ".":
|
||||
# icon_id = icon_id[:-1]
|
||||
# else:
|
||||
# icon_id = get_icon_ha(entityId, overwrite=icon)
|
||||
|
||||
# elif entityType == "weather":
|
||||
# entityTypePanel = "text"
|
||||
# unit = get_attr_safe(entity, "temperature_unit", "")
|
||||
# if type(item.stype) == int and len(entity.attributes.forecast) >= item.stype:
|
||||
# fdate = dp.parse(
|
||||
# entity.attributes.forecast[item.stype]['datetime'])
|
||||
# global babel_spec
|
||||
# if babel_spec is not None:
|
||||
# dateformat = "E" if item.nameOverride is None else item.nameOverride
|
||||
# name = babel.dates.format_datetime(
|
||||
# fdate.astimezone(), dateformat, locale=self._locale)
|
||||
# else:
|
||||
# dateformat = "%a" if item.nameOverride is None else item.nameOverride
|
||||
# name = fdate.astimezone().strftime(dateformat)
|
||||
# icon_id = get_icon_ha(
|
||||
# entityId, stateOverwrite=entity.attributes.forecast[item.stype]['condition'])
|
||||
# value = f'{entity.attributes.forecast[item.stype].get("temperature", "")}{unit}'
|
||||
# color = self.get_entity_color(
|
||||
# entity, ha_type=entityType, stateOverwrite=entity.attributes.forecast[item.stype]['condition'], overwrite=colorOverride)
|
||||
# else:
|
||||
# value = f'{get_attr_safe(entity, "temperature", "")}{unit}'
|
||||
# else:
|
||||
#
|
||||
|
||||
return f"~{entity_type_panel}~iid.{self.iid}~{icon_char}~{color}~{name}~{value}"
|
||||
|
||||
|
||||
class EntitiesCard(panel_cards.Card):
|
||||
def __init__(self, locale, config, panel):
|
||||
super().__init__(locale, config, panel)
|
||||
self.entities = []
|
||||
if "entities" in config:
|
||||
for e in config.get("entities"):
|
||||
# print(e)
|
||||
iid, entity = entity_factory(locale, e, panel)
|
||||
self.entities.append(entity)
|
||||
|
||||
def get_iid_entities(self):
|
||||
return [(e.iid, e.entity_id) for e in self.entities]
|
||||
|
||||
def render(self):
|
||||
leftBtn = "delete~~~~~"
|
||||
if self.iid_prev:
|
||||
leftBtn = panel_cards.Entity(self.locale,
|
||||
{
|
||||
'entity': f'navigate.{self.iid_prev}',
|
||||
'icon': 'mdi:arrow-left-bold',
|
||||
'color': [255, 255, 255],
|
||||
}, self.panel
|
||||
).render()[1:]
|
||||
rightBtn = "delete~~~~~"
|
||||
if self.iid_next:
|
||||
rightBtn = panel_cards.Entity(self.locale,
|
||||
{
|
||||
'entity': f'navigate.{self.iid_next}',
|
||||
'icon': 'mdi:arrow-right-bold',
|
||||
'color': [255, 255, 255],
|
||||
}, self.panel
|
||||
).render()[1:]
|
||||
result = f"{self.title}~{leftBtn}~{rightBtn}"
|
||||
for e in self.entities:
|
||||
result += e.render()
|
||||
return result
|
||||
|
||||
|
||||
class Screensaver(panel_cards.Card):
|
||||
def __init__(self, locale, config, panel):
|
||||
super().__init__(locale, config, panel)
|
||||
if "entities" in config:
|
||||
for e in config.get("entities"):
|
||||
# print(e)
|
||||
HAEntity(locale, e, panel)
|
||||
# elif "entity" in config:
|
||||
|
||||
def render(self):
|
||||
return ""
|
||||
|
||||
|
||||
def card_factory(locale, settings, panel):
|
||||
match settings["type"]:
|
||||
case 'cardEntities' | 'cardGrid':
|
||||
card = EntitiesCard(locale, settings, panel)
|
||||
case _:
|
||||
card = panel_cards.Card(locale, settings, panel)
|
||||
return card.iid, card
|
||||
|
||||
|
||||
def entity_factory(locale, settings, panel):
|
||||
etype = settings["entity"].split(".")[0]
|
||||
if etype in ["delete", "navigate"]:
|
||||
entity = panel_cards.Entity(locale, settings, panel)
|
||||
else:
|
||||
entity = HAEntity(locale, settings, panel)
|
||||
return entity.iid, entity
|
||||
72
nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/ha_colors.py
Normal file
72
nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/ha_colors.py
Normal file
@@ -0,0 +1,72 @@
|
||||
from libs.helper import rgb_dec565, rgb_brightness
|
||||
|
||||
|
||||
def get_entity_color(etype, state, attr, overwrite=None):
|
||||
if overwrite is not None:
|
||||
if type(overwrite) in [str, list]:
|
||||
return rgb_dec565(overwrite)
|
||||
if type(overwrite) is dict:
|
||||
for overwrite_state, overwrite_val in overwrite.items():
|
||||
if overwrite_state == state:
|
||||
return rgb_dec565(overwrite_val)
|
||||
|
||||
default_color_on = rgb_dec565([253, 216, 53])
|
||||
default_color_off = rgb_dec565([68, 115, 158])
|
||||
icon_color = default_color_on if state in [
|
||||
"on", "unlocked", "above_horizon", "home", "active"] else default_color_off
|
||||
if etype == "alarm_control_panel":
|
||||
if state == "disarmed":
|
||||
icon_color = rgb_dec565([13, 160, 53])
|
||||
if state == "arming":
|
||||
icon_color = rgb_dec565([244, 180, 0])
|
||||
if state in ["armed_home", "armed_away", "armed_night", "armed_vacation", "pending", "triggered"]:
|
||||
icon_color = rgb_dec565([223, 76, 30])
|
||||
if etype == "climate":
|
||||
if state in ["auto", "heat_cool"]:
|
||||
icon_color = 1024
|
||||
if state == "heat":
|
||||
icon_color = 64512
|
||||
if state == "off":
|
||||
icon_color = 35921
|
||||
if state == "cool":
|
||||
icon_color = 11487
|
||||
if state == "dry":
|
||||
icon_color = 60897
|
||||
if state == "fan_only":
|
||||
icon_color = 35921
|
||||
if etype == "weather":
|
||||
if state in ["partlycloudy", "windy"]:
|
||||
icon_color = 38066 # 50% grey
|
||||
if state == "clear-night":
|
||||
icon_color = 38060 # yellow grey
|
||||
if state == "windy-variant":
|
||||
icon_color: 64495 # red grey
|
||||
if state == "cloudy":
|
||||
icon_color = 31728 # grey-blue
|
||||
if state == "exceptional":
|
||||
icon_color = 63878 # red
|
||||
if state == "fog":
|
||||
icon_color = 38066 # 75% grey
|
||||
if state in ["hail", "snowy"]:
|
||||
icon_color = 65535 # white
|
||||
if state == "lightning":
|
||||
icon_color = 65120 # golden-yellow
|
||||
if state == "lightning-rainy":
|
||||
icon_color = 50400 # dark-golden-yellow
|
||||
if state == "pouring":
|
||||
icon_color = 12703 # blue
|
||||
if state == "rainy":
|
||||
icon_color = 25375 # light-blue
|
||||
if state == "snowy-rainy":
|
||||
icon_color = 38079 # light-blue-grey
|
||||
if state == "sunny":
|
||||
icon_color = 65504 # bright-yellow
|
||||
if "rgb_color" in attr and attr.get("rgb_color"):
|
||||
color = attr.get("rgb_color")
|
||||
if "brightness" in attr and attr.get("brightness"):
|
||||
color = rgb_brightness(color, attr.get("brightness"))
|
||||
icon_color = rgb_dec565(color)
|
||||
elif "brightness" in attr and attr.get("brightness"):
|
||||
color = rgb_brightness([253, 216, 53], attr.get("brightness"))
|
||||
icon_color = rgb_dec565(color)
|
||||
return icon_color
|
||||
272
nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/ha_control.py
Normal file
272
nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/ha_control.py
Normal file
@@ -0,0 +1,272 @@
|
||||
import libs.home_assistant
|
||||
import logging
|
||||
|
||||
|
||||
def on_off(entity_id, value):
|
||||
etype = entity_id.split(".")[0]
|
||||
match etype:
|
||||
case 'light' | 'switch' | 'input_boolean' | 'automation' | 'fan':
|
||||
service = "turn_off"
|
||||
if value == "1":
|
||||
service = "turn_on"
|
||||
libs.home_assistant.call_service(
|
||||
entity_name=entity_id,
|
||||
domain=etype,
|
||||
service=service,
|
||||
service_data={}
|
||||
)
|
||||
case _:
|
||||
logging.error(
|
||||
"Control action on_off not implemented for %s", entity_id)
|
||||
|
||||
|
||||
def button_press(entity_id, value):
|
||||
etype = entity_id.split["."][0]
|
||||
match etype:
|
||||
case 'scene':
|
||||
libs.home_assistant.call_service(
|
||||
entity_name=entity_id,
|
||||
domain="scene",
|
||||
service="turn_on",
|
||||
service_data={}
|
||||
)
|
||||
|
||||
# apis.ha_api.log(
|
||||
# f"Button Press Event; entity_id: {entity_id}; button_type: {button_type}; value: {value} ")
|
||||
# # buttons with actions on HA
|
||||
# if button_type == "OnOff":
|
||||
# if value == "1":
|
||||
# apis.ha_api.turn_on(entity_id)
|
||||
# else:
|
||||
# apis.ha_api.turn_off(entity_id)
|
||||
#
|
||||
# if button_type == "number-set":
|
||||
# if entity_id.startswith('fan'):
|
||||
# entity = apis.ha_api.get_entity(entity_id)
|
||||
# value = float(value) * \
|
||||
# float(entity.attributes.get("percentage_step", 0))
|
||||
# entity.call_service("set_percentage", percentage=value)
|
||||
# else:
|
||||
# apis.ha_api.get_entity(entity_id).call_service(
|
||||
# "set_value", value=value)
|
||||
#
|
||||
# # for shutter / covers
|
||||
# if button_type == "up":
|
||||
# apis.ha_api.get_entity(entity_id).call_service("open_cover")
|
||||
# if button_type == "stop":
|
||||
# apis.ha_api.get_entity(entity_id).call_service("stop_cover")
|
||||
# if button_type == "down":
|
||||
# apis.ha_api.get_entity(entity_id).call_service("close_cover")
|
||||
# if button_type == "positionSlider":
|
||||
# pos = int(value)
|
||||
# apis.ha_api.get_entity(entity_id).call_service(
|
||||
# "set_cover_position", position=pos)
|
||||
# if button_type == "tiltOpen":
|
||||
# apis.ha_api.get_entity(entity_id).call_service("open_cover_tilt")
|
||||
# if button_type == "tiltStop":
|
||||
# apis.ha_api.get_entity(entity_id).call_service("stop_cover_tilt")
|
||||
# if button_type == "tiltClose":
|
||||
# apis.ha_api.get_entity(entity_id).call_service("close_cover_tilt")
|
||||
# if button_type == "tiltSlider":
|
||||
# pos = int(value)
|
||||
# apis.ha_api.get_entity(entity_id).call_service(
|
||||
# "set_cover_tilt_position", tilt_position=pos)
|
||||
#
|
||||
# if button_type == "button":
|
||||
# if entity_id.startswith('navigate'):
|
||||
# # internal navigation for next/prev
|
||||
# if entity_id.startswith('navigate.uuid'):
|
||||
# dstCard = self._config.get_card_by_uuid(
|
||||
# entity_id.replace('navigate.', ''))
|
||||
# # internal for navigation to nested pages
|
||||
# else:
|
||||
# dstCard = self._config.search_card(entity_id)
|
||||
# if dstCard is not None:
|
||||
# if dstCard.hidden:
|
||||
# self._previous_cards.append(self._current_card)
|
||||
# self._current_card = dstCard
|
||||
# self._pages_gen.render_card(self._current_card)
|
||||
# else:
|
||||
# apis.ha_api.log(f"No page with key {entity_id} found")
|
||||
# if entity_id.startswith('navUp'):
|
||||
# if self._previous_cards:
|
||||
# self._current_card = self._previous_cards.pop()
|
||||
# else:
|
||||
# self._current_card = self._config.get_default_card()
|
||||
# self._pages_gen.render_card(self._current_card)
|
||||
# if entity_id.startswith('navPrev'):
|
||||
# if self._current_card.uuid_prev:
|
||||
# self._current_card = self._config.get_card_by_uuid(
|
||||
# self._current_card.uuid_prev)
|
||||
# self._pages_gen.render_card(self._current_card)
|
||||
# if entity_id.startswith('navNext'):
|
||||
# if self._current_card.uuid_next:
|
||||
# self._current_card = self._config.get_card_by_uuid(
|
||||
# self._current_card.uuid_next)
|
||||
# self._pages_gen.render_card(self._current_card)
|
||||
# elif entity_id.startswith('scene'):
|
||||
# apis.ha_api.get_entity(entity_id).call_service("turn_on")
|
||||
# elif entity_id.startswith('script'):
|
||||
# apis.ha_api.get_entity(entity_id).call_service("turn_on")
|
||||
# elif entity_id.startswith('light') or entity_id.startswith('switch') or entity_id.startswith('input_boolean') or entity_id.startswith('automation') or entity_id.startswith('fan'):
|
||||
# apis.ha_api.get_entity(entity_id).call_service("toggle")
|
||||
# elif entity_id.startswith('lock'):
|
||||
# if apis.ha_api.get_entity(entity_id).state == "locked":
|
||||
# apis.ha_api.get_entity(entity_id).call_service("unlock")
|
||||
# else:
|
||||
# apis.ha_api.get_entity(entity_id).call_service("lock")
|
||||
# elif entity_id.startswith('button') or entity_id.startswith('input_button'):
|
||||
# apis.ha_api.get_entity(entity_id).call_service("press")
|
||||
# elif entity_id.startswith('input_select') or entity_id.startswith('select'):
|
||||
# apis.ha_api.get_entity(entity_id).call_service("select_next")
|
||||
# elif entity_id.startswith('vacuum'):
|
||||
# if apis.ha_api.get_entity(entity_id).state == "docked":
|
||||
# apis.ha_api.get_entity(entity_id).call_service("start")
|
||||
# else:
|
||||
# apis.ha_api.get_entity(
|
||||
# entity_id).call_service("return_to_base")
|
||||
# elif entity_id.startswith('service'):
|
||||
# apis.ha_api.call_service(entity_id.replace(
|
||||
# 'service.', '', 1).replace('.', '/', 1), **entity_config.data)
|
||||
#
|
||||
# # for media page
|
||||
# if button_type == "media-next":
|
||||
# apis.ha_api.get_entity(entity_id).call_service("media_next_track")
|
||||
# if button_type == "media-back":
|
||||
# apis.ha_api.get_entity(entity_id).call_service(
|
||||
# "media_previous_track")
|
||||
# if button_type == "media-pause":
|
||||
# apis.ha_api.get_entity(entity_id).call_service("media_play_pause")
|
||||
# if button_type == "media-OnOff":
|
||||
# if apis.ha_api.get_entity(entity_id).state == "off":
|
||||
# apis.ha_api.get_entity(entity_id).call_service("turn_on")
|
||||
# else:
|
||||
# apis.ha_api.get_entity(entity_id).call_service("turn_off")
|
||||
# if button_type == "media-shuffle":
|
||||
# suffle = not apis.ha_api.get_entity(entity_id).attributes.shuffle
|
||||
# apis.ha_api.get_entity(entity_id).call_service(
|
||||
# "shuffle_set", shuffle=suffle)
|
||||
# if button_type == "volumeSlider":
|
||||
# pos = int(value)
|
||||
# # HA wants this value between 0 and 1 as float
|
||||
# pos = pos/100
|
||||
# apis.ha_api.get_entity(entity_id).call_service(
|
||||
# "volume_set", volume_level=pos)
|
||||
# if button_type == "speaker-sel":
|
||||
# apis.ha_api.get_entity(entity_id).call_service(
|
||||
# "select_source", source=value)
|
||||
#
|
||||
# # for light detail page
|
||||
# if button_type == "brightnessSlider":
|
||||
# # scale 0-100 to ha brightness range
|
||||
# brightness = int(scale(int(value), (0, 100), (0,255)))
|
||||
# apis.ha_api.get_entity(entity_id).call_service(
|
||||
# "turn_on", brightness=brightness)
|
||||
# if button_type == "colorTempSlider":
|
||||
# entity = apis.ha_api.get_entity(entity_id)
|
||||
# # scale 0-100 from slider to color range of lamp
|
||||
# color_val = scale(int(
|
||||
# value), (0, 100), (entity.attributes.min_mireds, entity.attributes.max_mireds))
|
||||
# apis.ha_api.get_entity(entity_id).call_service(
|
||||
# "turn_on", color_temp=color_val)
|
||||
# if button_type == "colorWheel":
|
||||
# apis.ha_api.log(value)
|
||||
# value = value.split('|')
|
||||
# color = pos_to_color(int(value[0]), int(value[1]), int(value[2]))
|
||||
# apis.ha_api.log(color)
|
||||
# apis.ha_api.get_entity(entity_id).call_service(
|
||||
# "turn_on", rgb_color=color)
|
||||
#
|
||||
# # for climate page
|
||||
# if button_type == "tempUpd":
|
||||
# temp = int(value)/10
|
||||
# apis.ha_api.get_entity(entity_id).call_service(
|
||||
# "set_temperature", temperature=temp)
|
||||
# if button_type == "tempUpdHighLow":
|
||||
# value = value.split("|")
|
||||
# temp_high = int(value[0])/10
|
||||
# temp_low = int(value[1])/10
|
||||
# apis.ha_api.get_entity(entity_id).call_service(
|
||||
# "set_temperature", target_temp_high=temp_high, target_temp_low=temp_low)
|
||||
# if button_type == "hvac_action":
|
||||
# apis.ha_api.get_entity(entity_id).call_service(
|
||||
# "set_hvac_mode", hvac_mode=value)
|
||||
#
|
||||
# # for alarm page
|
||||
# if button_type in ["disarm", "arm_home", "arm_away", "arm_night", "arm_vacation"]:
|
||||
# apis.ha_api.get_entity(entity_id).call_service(
|
||||
# f"alarm_{button_type}", code=value)
|
||||
# if button_type == "opnSensorNotify":
|
||||
# msg = ""
|
||||
# entity = apis.ha_api.get_entity(entity_id)
|
||||
# if "open_sensors" in entity.attributes and entity.attributes.open_sensors is not None:
|
||||
# for e in entity.attributes.open_sensors:
|
||||
# msg += f"- {apis.ha_api.get_entity(e).attributes.friendly_name}\r\n"
|
||||
# self._pages_gen.send_message_page(
|
||||
# "opnSensorNotifyRes", "", msg, "", "")
|
||||
#
|
||||
# # for cardUnlock
|
||||
# if button_type == "cardUnlock-unlock":
|
||||
# curCard = self._config.get_card_by_uuid(
|
||||
# entity_id.replace('navigate.', ''))
|
||||
# if curCard is not None:
|
||||
# if int(curCard.raw_config.get("pin")) == int(value):
|
||||
# dstCard = self._config.search_card(
|
||||
# curCard.raw_config.get("destination"))
|
||||
# if dstCard is not None:
|
||||
# if dstCard.hidden:
|
||||
# self._previous_cards.append(self._current_card)
|
||||
# self._current_card = dstCard
|
||||
# self._pages_gen.render_card(self._current_card)
|
||||
#
|
||||
# if button_type == "mode-preset_modes":
|
||||
# entity = apis.ha_api.get_entity(entity_id)
|
||||
# preset_mode = entity.attributes.preset_modes[int(value)]
|
||||
# entity.call_service("set_preset_mode", preset_mode=preset_mode)
|
||||
#
|
||||
# if button_type == "mode-swing_modes":
|
||||
# entity = apis.ha_api.get_entity(entity_id)
|
||||
# swing_mode = entity.attributes.swing_modes[int(value)]
|
||||
# entity.call_service("set_swing_mode", swing_mode=swing_mode)
|
||||
#
|
||||
# if button_type == "mode-fan_modes":
|
||||
# entity = apis.ha_api.get_entity(entity_id)
|
||||
# fan_mode = entity.attributes.fan_modes[int(value)]
|
||||
# entity.call_service("set_fan_mode", fan_mode=fan_mode)
|
||||
#
|
||||
# if button_type in ["mode-input_select", "mode-select"]:
|
||||
# entity = apis.ha_api.get_entity(entity_id)
|
||||
# option = entity.attributes.options[int(value)]
|
||||
# entity.call_service("select_option", option=option)
|
||||
#
|
||||
# if button_type == "mode-light":
|
||||
# if entity_id.startswith('uuid'):
|
||||
# entity_config = self._config._config_entites_table.get(
|
||||
# entity_id)
|
||||
# entity_id = entity_config.entityId
|
||||
# entity = apis.ha_api.get_entity(entity_id)
|
||||
# options_list = entity_config.entity_input_config.get("effectList")
|
||||
# if options_list is not None:
|
||||
# option = options_list[int(value)]
|
||||
# else:
|
||||
# option = entity.attributes.effect_list[int(value)]
|
||||
# entity.call_service("turn_on", effect=option)
|
||||
#
|
||||
# if button_type == "mode-media_player":
|
||||
# entity = apis.ha_api.get_entity(entity_id)
|
||||
# option = entity.attributes.source_list[int(value)]
|
||||
# entity.call_service("select_source", source=option)
|
||||
#
|
||||
# # timer detail page
|
||||
# if button_type == "timer-start":
|
||||
# if value is not None:
|
||||
# apis.ha_api.get_entity(entity_id).call_service(
|
||||
# "start", duration=value)
|
||||
# else:
|
||||
# apis.ha_api.get_entity(entity_id).call_service("start")
|
||||
# if button_type == "timer-cancel":
|
||||
# apis.ha_api.get_entity(entity_id).call_service("cancel")
|
||||
# if button_type == "timer-pause":
|
||||
# apis.ha_api.get_entity(entity_id).call_service("pause")
|
||||
# if button_type == "timer-finish":
|
||||
# apis.ha_api.get_entity(entity_id).call_service("finish")
|
||||
263
nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/ha_icons.py
Normal file
263
nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/ha_icons.py
Normal file
@@ -0,0 +1,263 @@
|
||||
from libs.icon_mapping import get_icon_char
|
||||
|
||||
weather_mapping = {
|
||||
'clear-night': 'weather-night',
|
||||
'cloudy': 'weather-cloudy',
|
||||
'exceptional': 'alert-circle-outline',
|
||||
'fog': 'weather-fog',
|
||||
'hail': 'weather-hail',
|
||||
'lightning': 'weather-lightning',
|
||||
'lightning-rainy': 'weather-lightning-rainy',
|
||||
'partlycloudy': 'weather-partly-cloudy',
|
||||
'pouring': 'weather-pouring',
|
||||
'rainy': 'weather-rainy',
|
||||
'snowy': 'weather-snowy',
|
||||
'snowy-rainy': 'weather-snowy-rainy',
|
||||
'sunny': 'weather-sunny',
|
||||
'windy': 'weather-windy',
|
||||
'windy-variant': 'weather-windy-variant'
|
||||
}
|
||||
|
||||
sensor_mapping_off = {
|
||||
"battery": "battery",
|
||||
"battery_charging": "battery",
|
||||
"carbon_monoxide": "smoke-detector",
|
||||
"cold": "thermometer",
|
||||
"connectivity": "close-network-outline",
|
||||
"door": "door-closed",
|
||||
"garage_door": "garage",
|
||||
"power": "power-plug-off",
|
||||
"gas": "checkbox-marked-circle",
|
||||
"problem": "checkbox-marked-circle",
|
||||
"safety": "checkbox-marked-circle",
|
||||
"tamper": "check-circle",
|
||||
"smoke": "smoke-detector-variant",
|
||||
"heat": "thermometer",
|
||||
"light": "brightness-5",
|
||||
"lock": "lock",
|
||||
"moisture": "water-off",
|
||||
"motion": "motion-sensor-off",
|
||||
"occupancy": "home-outline",
|
||||
"opening": "square",
|
||||
"plug": "power-plug-off",
|
||||
"presence": "home-outline",
|
||||
"running": "stop",
|
||||
"sound": "music-note-off",
|
||||
"update": "package",
|
||||
"vibration": "crop-portrait",
|
||||
"window": "window-closed",
|
||||
}
|
||||
|
||||
sensor_mapping_on = {
|
||||
"battery": "battery-outline",
|
||||
"battery_charging": "battery-charging",
|
||||
"carbon_monoxide": "smoke-detector-alert",
|
||||
"cold": "snowflake",
|
||||
"connectivity": "check-network-outline",
|
||||
"door": "door-open",
|
||||
"garage_door": "garage-open",
|
||||
"power": "power-plug",
|
||||
"gas": "alert-circle",
|
||||
"problem": "alert-circle",
|
||||
"safety": "alert-circle",
|
||||
"tamper": "alert-circle",
|
||||
"smoke": "smoke-detector-variant-alert",
|
||||
"heat": "fire",
|
||||
"light": "brightness-7",
|
||||
"lock": "lock-open",
|
||||
"moisture": "water",
|
||||
"motion": "motion-sensor",
|
||||
"occupancy": "home",
|
||||
"opening": "square-outline",
|
||||
"plug": "power-plug",
|
||||
"presence": "home",
|
||||
"running": "play",
|
||||
"sound": "music-note",
|
||||
"update": "package-up",
|
||||
"vibration": "vibrate",
|
||||
"window": "window-open",
|
||||
}
|
||||
|
||||
sensor_mapping = {
|
||||
"apparent_power": "flash",
|
||||
"aqi": "smog",
|
||||
"battery": "battery",
|
||||
"carbon_dioxide": "smog",
|
||||
"carbon_monoxide": "smog",
|
||||
"current": "flash",
|
||||
"date": "calendar",
|
||||
"duration": "timer",
|
||||
"energy": "flash",
|
||||
"frequency": "chart-bell-curve",
|
||||
"gas": "gas-cylinder",
|
||||
"humidity": "air-humidifier",
|
||||
"illuminance": "light",
|
||||
"monetary": "cash",
|
||||
"nitrogen_dioxide": "smog",
|
||||
"nitrogen_monoxide": "smog",
|
||||
"nitrous_oxide": "smog",
|
||||
"ozone": "smog",
|
||||
"pm1": "smog",
|
||||
"pm10": "smog",
|
||||
"pm25": "smog",
|
||||
"power_factor": "flash",
|
||||
"power": "flash",
|
||||
"pressure": "gauge",
|
||||
"reactive_power": "flash",
|
||||
"signal_strength": "signal",
|
||||
"sulphur_dioxide": "smog",
|
||||
"temperature": "thermometer",
|
||||
"timestamp": "calendar-clock",
|
||||
"volatile_organic_compounds": "smog",
|
||||
"voltage": "flash"
|
||||
}
|
||||
|
||||
cover_mapping = {
|
||||
# "device_class": ("icon-open", "icon-closed", "icon-cover-open", "icon-cover-stop", "icon-cover-close")
|
||||
"awning": ("window-open", "window-closed", "arrow-up", "stop", "arrow-down"),
|
||||
"blind": ("blinds-open", "blinds", "arrow-up", "stop", "arrow-down"),
|
||||
"curtain": ("curtains", "curtains-closed", "arrow-expand-horizontal", "stop", "arrow-collapse-horizontal"),
|
||||
"damper": ("checkbox-blank-circle", "circle-slice-8", "arrow-up", "stop", "arrow-down"),
|
||||
"door": ("door-open", "door-closed", "arrow-expand-horizontal", "stop", "arrow-collapse-horizontal"),
|
||||
"garage": ("garage-open", "garage", "arrow-up", "stop", "arrow-down"),
|
||||
"gate": ("gate-open", "gate", "arrow-expand-horizontal", "stop", "arrow-collapse-horizontal"),
|
||||
"shade": ("blinds-open", "blinds", "arrow-up", "stop", "arrow-down"),
|
||||
"shutter": ("window-shutter-open", "window-shutter", "arrow-up", "stop", "arrow-down"),
|
||||
"window": ("window-open", "window-closed", "arrow-up", "stop", "arrow-down"),
|
||||
}
|
||||
|
||||
simple_type_mapping = {
|
||||
'button': 'gesture-tap-button',
|
||||
'navigate': 'gesture-tap-button',
|
||||
'input_button': 'gesture-tap-button',
|
||||
'input_select': 'gesture-tap-button',
|
||||
'scene': 'palette',
|
||||
'script': 'script-text',
|
||||
'switch': 'light-switch',
|
||||
'automation': 'robot',
|
||||
'number': 'ray-vertex',
|
||||
'input_number': 'ray-vertex',
|
||||
'light': 'lightbulb',
|
||||
'fan': 'fan',
|
||||
'person': 'account',
|
||||
'vacuum': 'robot-vacuum',
|
||||
'timer': 'timer-outline'
|
||||
|
||||
}
|
||||
|
||||
alarm_control_panel_mapping = {
|
||||
'disarmed': 'shield-off',
|
||||
'armed_home': 'shield-home',
|
||||
'armed_away': 'shield-lock',
|
||||
'armed_night': 'weather-night',
|
||||
'armed_vacation': 'shield-airplane',
|
||||
'arming': 'shield',
|
||||
'pending': 'shield',
|
||||
'triggered': 'bell-ring'
|
||||
}
|
||||
|
||||
climate_mapping = {
|
||||
'auto': 'calendar-sync',
|
||||
'heat_cool': 'calendar-sync',
|
||||
'heat': 'fire',
|
||||
'off': 'power',
|
||||
'cool': 'snowflake',
|
||||
'dry': 'water-percent',
|
||||
'fan_only': 'fan'
|
||||
}
|
||||
|
||||
media_content_type_mapping = {
|
||||
'music': 'music',
|
||||
'tvshow': 'movie',
|
||||
'video': 'video',
|
||||
'episode': 'alert-circle-outline',
|
||||
'channel': 'alert-circle-outline',
|
||||
'playlist': 'alert-circle-outline'
|
||||
}
|
||||
|
||||
|
||||
def get_icon(etype, overwrite=None):
|
||||
if overwrite is not None:
|
||||
if type(overwrite) is str:
|
||||
return get_icon_char(overwrite)
|
||||
|
||||
result_icon = "alert-circle-outline"
|
||||
if etype == "script":
|
||||
result_icon = "script-text"
|
||||
elif etype == "alarm-arm-fail":
|
||||
result_icon = "progress-alert"
|
||||
|
||||
return get_icon_char(result_icon)
|
||||
|
||||
|
||||
def get_action_icon(etype, action, device_class=None, overwrite=None):
|
||||
if overwrite is not None:
|
||||
return get_icon_char(overwrite)
|
||||
if etype == "cover":
|
||||
if action == "open":
|
||||
actionicon = cover_mapping[device_class][2] if device_class in cover_mapping else "alert-circle-outline"
|
||||
elif action == "close":
|
||||
actionicon = cover_mapping[device_class][4] if device_class in cover_mapping else "alert-circle-outline"
|
||||
elif action == "stop":
|
||||
actionicon = cover_mapping[device_class][3] if device_class in cover_mapping else "alert-circle-outline"
|
||||
else:
|
||||
actionicon = "alert-circle-outline"
|
||||
else:
|
||||
actionicon = "alert-circle-outline"
|
||||
return get_icon_char(actionicon)
|
||||
|
||||
|
||||
def get_icon_ha(etype, state, device_class=None, media_content_type=None, overwrite=None):
|
||||
if overwrite is not None:
|
||||
if type(overwrite) is str:
|
||||
return get_icon_char(overwrite)
|
||||
if type(overwrite) is dict:
|
||||
for overwrite_state, overwrite_icon in overwrite.items():
|
||||
if overwrite_state == state:
|
||||
return get_icon_char(overwrite_icon)
|
||||
|
||||
result_icon = "alert-circle-outline"
|
||||
|
||||
# icons only based on state
|
||||
if etype in simple_type_mapping:
|
||||
result_icon = simple_type_mapping[etype]
|
||||
elif etype == "weather":
|
||||
result_icon = weather_mapping[state] if state in weather_mapping else "alert-circle-outline"
|
||||
elif etype == "input_boolean":
|
||||
result_icon = "check-circle-outline" if state == "on" else "close-circle-outline"
|
||||
elif etype == "lock":
|
||||
result_icon = "lock-open" if state == "unlocked" else "lock"
|
||||
elif etype == "sun":
|
||||
result_icon = "weather-sunset-up" if state == "above_horizon" else "weather-sunset-down"
|
||||
elif etype == "alarm_control_panel":
|
||||
if state in alarm_control_panel_mapping:
|
||||
result_icon = alarm_control_panel_mapping[state]
|
||||
elif etype == "climate":
|
||||
if state in climate_mapping:
|
||||
result_icon = climate_mapping[state]
|
||||
# icons only based on state and device_class
|
||||
elif etype == "cover":
|
||||
if not device_class:
|
||||
device_class = "window"
|
||||
if state == "closed":
|
||||
result_icon = cover_mapping[device_class][1] if device_class in cover_mapping else "alert-circle-outline"
|
||||
else:
|
||||
result_icon = cover_mapping[device_class][0] if device_class in cover_mapping else "alert-circle-outline"
|
||||
elif etype == "sensor":
|
||||
result_icon = sensor_mapping[device_class] if device_class in sensor_mapping else "alert-circle-outline"
|
||||
elif etype == "binary_sensor":
|
||||
if state == "on":
|
||||
result_icon = "checkbox-marked-circle"
|
||||
if device_class in sensor_mapping_on:
|
||||
result_icon = sensor_mapping_on[device_class]
|
||||
else:
|
||||
result_icon = "radiobox-blank"
|
||||
if device_class in sensor_mapping_off:
|
||||
result_icon = sensor_mapping_off[device_class]
|
||||
# based on media_content_type
|
||||
elif etype == "media_player":
|
||||
result_icon = "speaker-off"
|
||||
if media_content_type in media_content_type_mapping:
|
||||
result_icon = media_content_type_mapping[media_content_type]
|
||||
|
||||
return get_icon_char(result_icon)
|
||||
@@ -0,0 +1,58 @@
|
||||
import colorsys
|
||||
import math
|
||||
import secrets
|
||||
import string
|
||||
|
||||
|
||||
def iid():
|
||||
alphabet = string.ascii_letters + string.digits
|
||||
return ''.join(secrets.choice(alphabet) for _ in range(10))
|
||||
|
||||
|
||||
def scale(val, src, dst):
|
||||
return ((val - src[0]) / (src[1]-src[0])) * (dst[1]-dst[0]) + dst[0]
|
||||
|
||||
|
||||
def hsv2rgb(h, s, v):
|
||||
hsv = colorsys.hsv_to_rgb(h, s, v)
|
||||
return tuple(round(i * 255) for i in hsv)
|
||||
|
||||
|
||||
def pos_to_color(x, y, wh):
|
||||
r = wh/2
|
||||
x = round((x - r) / r * 100) / 100
|
||||
y = round((r - y) / r * 100) / 100
|
||||
|
||||
r = math.sqrt(x*x + y*y)
|
||||
sat = 0
|
||||
if (r > 1):
|
||||
sat = 0
|
||||
else:
|
||||
sat = r
|
||||
hsv = (math.degrees(math.atan2(y, x)) % 360/360, sat, 1)
|
||||
rgb = hsv2rgb(hsv[0], hsv[1], hsv[2])
|
||||
return rgb
|
||||
|
||||
|
||||
def rgb_brightness(rgb_color, brightness):
|
||||
# brightness values are in range 0-255
|
||||
# to make sure that the color is not completly lost we need to rescale this to 70-255
|
||||
brightness = int(scale(brightness, (0, 255), (70, 255)))
|
||||
red = rgb_color[0]/255*brightness
|
||||
green = rgb_color[1]/255*brightness
|
||||
blue = rgb_color[2]/255*brightness
|
||||
return [int(red), int(green), int(blue)]
|
||||
|
||||
|
||||
def rgb_dec565(rgb_color):
|
||||
red = rgb_color[0]
|
||||
green = rgb_color[1]
|
||||
blue = rgb_color[2]
|
||||
return ((int(red >> 3) << 11) | (int(green >> 2) << 5) | (int(blue >> 3)))
|
||||
|
||||
|
||||
def convert_temperature(temp, unit):
|
||||
if unit == "fahrenheit":
|
||||
return f"{temp}°F"
|
||||
else:
|
||||
return f"{temp}°C"
|
||||
@@ -0,0 +1,276 @@
|
||||
import websocket
|
||||
import ssl
|
||||
import logging
|
||||
import json
|
||||
from threading import Thread
|
||||
import time
|
||||
import environ
|
||||
|
||||
home_assistant_url = ""
|
||||
home_assistant_token = ""
|
||||
settings = {}
|
||||
auth_ok = False
|
||||
next_id = 0
|
||||
request_all_states_id = 0
|
||||
ws_connected = False
|
||||
home_assistant_entity_state_cache = {}
|
||||
|
||||
ON_CONNECT_HANDLER = None
|
||||
ON_DISCONNECT_HANDLER = None
|
||||
|
||||
|
||||
def init(settings_from_manager, mqtt_client_from_manager):
|
||||
global home_assistant_url, home_assistant_token, settings, mqtt_client
|
||||
settings = settings_from_manager
|
||||
mqtt_client = mqtt_client_from_manager
|
||||
home_assistant_url = settings["home_assistant_address"]
|
||||
home_assistant_token = settings["home_assistant_token"]
|
||||
# Disable logging from underlying "websocket"
|
||||
logging.getLogger("websocket").propagate = False
|
||||
# Disable logging from underlying "websocket"
|
||||
logging.getLogger("websockets").propagate = False
|
||||
|
||||
|
||||
def register_on_connect_handler(handler):
|
||||
global ON_CONNECT_HANDLER
|
||||
ON_CONNECT_HANDLER = handler
|
||||
|
||||
|
||||
def register_on_disconnect_handler(handler):
|
||||
global ON_DISCONNECT_HANDLER
|
||||
ON_DISCONNECT_HANDLER = handler
|
||||
|
||||
|
||||
def on_message(ws, message):
|
||||
global auth_ok, request_all_states_id, home_assistant_entity_state_cache
|
||||
json_msg = json.loads(message)
|
||||
if json_msg["type"] == "auth_required":
|
||||
authenticate_client()
|
||||
elif json_msg["type"] == "auth_ok":
|
||||
auth_ok = True
|
||||
logging.info("Home Assistant auth OK. Requesting existing states.")
|
||||
subscribe_to_events()
|
||||
_get_all_states()
|
||||
if ON_CONNECT_HANDLER is not None:
|
||||
ON_CONNECT_HANDLER()
|
||||
elif json_msg["type"] == "event" and json_msg["event"]["event_type"] == "state_changed":
|
||||
entity_id = json_msg["event"]["data"]["entity_id"]
|
||||
home_assistant_entity_state_cache[entity_id] = json_msg["event"]["data"]["new_state"]
|
||||
send_entity_update(entity_id)
|
||||
elif json_msg["type"] == "result" and not json_msg["success"]:
|
||||
logging.error("Failed result: ")
|
||||
logging.error(json_msg)
|
||||
elif json_msg["type"] == "result" and json_msg["success"]:
|
||||
if json_msg["id"] == request_all_states_id:
|
||||
for entity in json_msg["result"]:
|
||||
# logging.debug(f"test {entity['entity_id']}")
|
||||
home_assistant_entity_state_cache[entity["entity_id"]] = entity
|
||||
# logging.debug(f"request_all_states_id {json_msg['result']}")
|
||||
return None # Ignore success result messages
|
||||
else:
|
||||
logging.debug(message)
|
||||
|
||||
|
||||
def _ws_connection_open(ws):
|
||||
global ws_connected
|
||||
ws_connected = True
|
||||
logging.info("WebSocket connection to Home Assistant opened.")
|
||||
if ON_CONNECT_HANDLER is not None:
|
||||
ON_CONNECT_HANDLER()
|
||||
|
||||
|
||||
def _ws_connection_close(ws, close_status_code, close_msg):
|
||||
global ws_connected
|
||||
ws_connected = False
|
||||
logging.error("WebSocket connection closed!")
|
||||
if ON_DISCONNECT_HANDLER is not None:
|
||||
ON_DISCONNECT_HANDLER()
|
||||
|
||||
|
||||
def connect():
|
||||
Thread(target=_do_connection, daemon=True).start()
|
||||
|
||||
|
||||
def _do_connection():
|
||||
global home_assistant_url, ws
|
||||
ws_url = home_assistant_url.replace(
|
||||
"https://", "wss://").replace("http://", "ws://")
|
||||
environment = environ.Env()
|
||||
if "IS_HOME_ASSISTANT_ADDON" in environment and environment("IS_HOME_ASSISTANT_ADDON") == "true":
|
||||
ws_url += "/core/websocket"
|
||||
else:
|
||||
ws_url += "/api/websocket"
|
||||
ws = websocket.WebSocketApp(F"{ws_url}", on_message=on_message,
|
||||
on_open=_ws_connection_open, on_close=_ws_connection_close)
|
||||
while True:
|
||||
logging.info(F"Connecting to Home Assistant at {ws_url}")
|
||||
ws.close()
|
||||
time.sleep(1)
|
||||
ws.run_forever(sslopt={"cert_reqs": ssl.CERT_NONE})
|
||||
time.sleep(10)
|
||||
|
||||
|
||||
def authenticate_client():
|
||||
global home_assistant_token
|
||||
logging.info("Sending auth to Home Assistant")
|
||||
msg = {
|
||||
"type": "auth",
|
||||
"access_token": home_assistant_token
|
||||
}
|
||||
send_message(json.dumps(msg))
|
||||
|
||||
|
||||
def subscribe_to_events():
|
||||
global next_id
|
||||
msg = {
|
||||
"id": next_id,
|
||||
"type": "subscribe_events",
|
||||
"event_type": "state_changed"
|
||||
}
|
||||
send_message(json.dumps(msg))
|
||||
|
||||
|
||||
def _get_all_states():
|
||||
global next_id, request_all_states_id
|
||||
msg = {
|
||||
"id": next_id,
|
||||
"type": "get_states",
|
||||
}
|
||||
request_all_states_id = next_id
|
||||
send_message(json.dumps(msg))
|
||||
|
||||
# Got new value from Home Assistant, publish to MQTT
|
||||
|
||||
|
||||
def send_entity_update(json_msg):
|
||||
global mqtt_client
|
||||
# Check if the light is used on any nspanel and if so, send MQTT state update
|
||||
# mqtt_client.publish(f"cmnd/tasmota_nspdev2/CustomSend", "page~screensaver")
|
||||
|
||||
|
||||
def set_entity_brightness(home_assistant_name: str, light_level: int, color_temp: int) -> bool:
|
||||
"""Set entity brightness"""
|
||||
global next_id
|
||||
try:
|
||||
# Format Home Assistant state update
|
||||
msg = None
|
||||
if home_assistant_name.startswith("light."):
|
||||
msg = {
|
||||
"id": next_id,
|
||||
"type": "call_service",
|
||||
"domain": "light",
|
||||
"service": "turn_on",
|
||||
"service_data": {
|
||||
"brightness_pct": light_level,
|
||||
},
|
||||
"target": {
|
||||
"entity_id": home_assistant_name
|
||||
}
|
||||
}
|
||||
if color_temp > 0:
|
||||
msg["service_data"]["kelvin"] = color_temp
|
||||
elif home_assistant_name.startswith("switch."):
|
||||
msg = {
|
||||
"id": next_id,
|
||||
"type": "call_service",
|
||||
"domain": "switch",
|
||||
"service": "turn_on" if light_level > 0 else "turn_off",
|
||||
"target": {
|
||||
"entity_id": home_assistant_name
|
||||
}
|
||||
}
|
||||
|
||||
if msg:
|
||||
send_message(json.dumps(msg))
|
||||
return True
|
||||
else:
|
||||
logging.error(F"{home_assistant_name} is now a recognized domain.")
|
||||
return False
|
||||
except:
|
||||
logging.exception("Failed to send entity update to Home Assisatant.")
|
||||
return False
|
||||
|
||||
|
||||
def set_entity_color_temp(entity_name: str, color_temp: int) -> bool:
|
||||
"""Set entity brightness"""
|
||||
global next_id
|
||||
try:
|
||||
# Format Home Assistant state update
|
||||
msg = {
|
||||
"id": next_id,
|
||||
"type": "call_service",
|
||||
"domain": "light",
|
||||
"service": "turn_on",
|
||||
"service_data": {
|
||||
"kelvin": color_temp
|
||||
},
|
||||
"target": {
|
||||
"entity_id": entity_name
|
||||
}
|
||||
}
|
||||
send_message(json.dumps(msg))
|
||||
return True
|
||||
except:
|
||||
logging.exception("Failed to send entity update to Home Assisatant.")
|
||||
return False
|
||||
|
||||
|
||||
def set_entity_color_saturation(entity_name: str, light_level: int, color_saturation: int, color_hue: int) -> bool:
|
||||
"""Set entity brightness"""
|
||||
global next_id
|
||||
try:
|
||||
# Format Home Assistant state update
|
||||
msg = {
|
||||
"id": next_id,
|
||||
"type": "call_service",
|
||||
"domain": "light",
|
||||
"service": "turn_on",
|
||||
"service_data": {
|
||||
"hs_color": [
|
||||
color_hue,
|
||||
color_saturation
|
||||
],
|
||||
"brightness_pct": light_level
|
||||
},
|
||||
"target": {
|
||||
"entity_id": entity_name
|
||||
}
|
||||
}
|
||||
send_message(json.dumps(msg))
|
||||
return True
|
||||
except Exception as e:
|
||||
logging.exception("Failed to send entity update to Home Assisatant.")
|
||||
return False
|
||||
|
||||
|
||||
def call_service(entity_name: str, domain: str, service: str, service_data: dict) -> bool:
|
||||
global next_id
|
||||
try:
|
||||
msg = {
|
||||
"id": next_id,
|
||||
"type": "call_service",
|
||||
"domain": domain,
|
||||
"service": service,
|
||||
"service_data": service_data,
|
||||
"target": {
|
||||
"entity_id": entity_name
|
||||
}
|
||||
}
|
||||
send_message(json.dumps(msg))
|
||||
return True
|
||||
except Exception as e:
|
||||
logging.exception("Failed to send entity update to Home Assisatant.")
|
||||
return False
|
||||
|
||||
|
||||
def get_entity_data(entity_id: str):
|
||||
if entity_id in home_assistant_entity_state_cache:
|
||||
return home_assistant_entity_state_cache[entity_id]
|
||||
else:
|
||||
return None
|
||||
|
||||
|
||||
def send_message(message):
|
||||
global ws, next_id
|
||||
next_id += 1
|
||||
ws.send(message)
|
||||
6926
nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/icon_mapping.py
Normal file
6926
nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/icon_mapping.py
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,50 @@
|
||||
import os
|
||||
import json
|
||||
|
||||
|
||||
def build_locale_filestring(locale):
|
||||
if locale in ["zh_CN", "zh_Hans_CN", "zh_Hans"]:
|
||||
locale = "zh-Hans"
|
||||
elif locale in ["zh_TW", "zh_Hant_TW", "zh_Hant"]:
|
||||
locale = "zh-Hant"
|
||||
elif locale == "en_GB":
|
||||
locale = "en-GB"
|
||||
elif locale == "pt_BR":
|
||||
locale = "pt-BR"
|
||||
else:
|
||||
locale = locale.split("_")[0]
|
||||
|
||||
filename = f"{locale}.json"
|
||||
dir_path = os.path.dirname(os.path.realpath(__file__))
|
||||
path_frontend_file = os.path.join(
|
||||
dir_path, "translations", "frontend", filename)
|
||||
path_backend_file = os.path.join(
|
||||
dir_path, "translations", "backend", filename)
|
||||
return path_frontend_file, path_backend_file
|
||||
|
||||
|
||||
def lookup(path_frontend_file, path_backend_file, lookupstr):
|
||||
if not (os.path.exists(path_frontend_file) and os.path.exists(path_backend_file)):
|
||||
return "error_fnf"
|
||||
with open(path_frontend_file, 'r') as f, open(path_backend_file, 'r') as b:
|
||||
translations = {"frontend": json.load(f), "backend": json.load(b)}
|
||||
res = translations
|
||||
for k in lookupstr.split("."):
|
||||
if k in res:
|
||||
res = res[k]
|
||||
if type(res) is not str:
|
||||
# res = "error_tnf"
|
||||
res = lookupstr.split(".")[-1]
|
||||
return res
|
||||
|
||||
|
||||
def get_translation(locale, lookupstr):
|
||||
path_frontend_file, path_backend_file = build_locale_filestring(locale)
|
||||
res = lookup(path_frontend_file, path_backend_file, lookupstr)
|
||||
if res.startswith("error"):
|
||||
path_frontend_file, path_backend_file = build_locale_filestring(
|
||||
"en_US")
|
||||
res = lookup(path_frontend_file, path_backend_file, lookupstr)
|
||||
if locale == "he_IL":
|
||||
res = res[::-1]
|
||||
return res
|
||||
@@ -0,0 +1,30 @@
|
||||
import logging
|
||||
|
||||
|
||||
def init(mqtt_client_from_manager):
|
||||
global mqtt_client
|
||||
mqtt_client = mqtt_client_from_manager
|
||||
|
||||
|
||||
def custom_send(topic, msg):
|
||||
global mqtt_client
|
||||
mqtt_client.publish(topic, msg)
|
||||
logging.debug("Sent Message to NsPanel: %s", msg)
|
||||
|
||||
|
||||
def page_type(topic, target_page):
|
||||
if target_page == "cardUnlock":
|
||||
target_page = "cardAlarm"
|
||||
custom_send(topic, f"pageType~{target_page}")
|
||||
|
||||
|
||||
def send_time(topic, time, addTimeText=""):
|
||||
custom_send(topic, f"time~{time}~{addTimeText}")
|
||||
|
||||
|
||||
def send_date(topic, date):
|
||||
custom_send(topic, f"date~{date}")
|
||||
|
||||
|
||||
def entityUpd(topic, data):
|
||||
custom_send(topic, f"entityUpd~{data}")
|
||||
@@ -0,0 +1,342 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Af",
|
||||
"on": "Aan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Af",
|
||||
"on": "Aan"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normaal",
|
||||
"on": "Laag"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normaal",
|
||||
"on": "Koud"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Ontkoppel",
|
||||
"on": "Gekoppel"
|
||||
},
|
||||
"door": {
|
||||
"off": "Toe",
|
||||
"on": "Oop"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Toe",
|
||||
"on": "Oop"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Ongemerk",
|
||||
"on": "Bespeur"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normaal",
|
||||
"on": "Warm"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Gesluit",
|
||||
"on": "Oopgesluit"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Droog",
|
||||
"on": "Nat"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Ongemerk",
|
||||
"on": "Bespeur"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Ongemerk",
|
||||
"on": "Bespeur"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Toe",
|
||||
"on": "Oop"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Elders",
|
||||
"on": "Tuis"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Probleem"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Veilige",
|
||||
"on": "Onveilige"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Ongemerk",
|
||||
"on": "Bespeur"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Ongemerk",
|
||||
"on": "Bespeur"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Ongemerk",
|
||||
"on": "Bespeur"
|
||||
},
|
||||
"window": {
|
||||
"off": "Toe",
|
||||
"on": "Oop"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Gewapen",
|
||||
"disarmed": "Ontwapen",
|
||||
"armed_home": "Gewapend tuis",
|
||||
"armed_away": "Gewapend weg",
|
||||
"armed_night": "Gewapend nag",
|
||||
"armed_custom_bypass": "Gewapende pasgemaakte omseil",
|
||||
"pending": "Hangende",
|
||||
"arming": "Bewapen Tans",
|
||||
"disarming": "Ontwapen Tans",
|
||||
"triggered": "Geaktiveer"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Af",
|
||||
"on": "Aan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Af",
|
||||
"on": "Aan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Opname",
|
||||
"streaming": "Stroming",
|
||||
"idle": "Onaktief"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Af",
|
||||
"heat": "Hitte",
|
||||
"cool": "Koel",
|
||||
"heat_cool": "Verhit/Verkoel",
|
||||
"auto": "Outo",
|
||||
"dry": "Droog",
|
||||
"fan_only": "Slegs waaier"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Stel op",
|
||||
"configured": "Opgestel"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Oop",
|
||||
"opening": "Opening",
|
||||
"closed": "Toe",
|
||||
"closing": "Sluiting",
|
||||
"stopped": "Gestop"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Tuis",
|
||||
"not_home": "Elders"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Af",
|
||||
"on": "Aan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Af",
|
||||
"on": "Aan",
|
||||
"home": "Tuis",
|
||||
"not_home": "Elders",
|
||||
"open": "Oop",
|
||||
"closed": "Toe",
|
||||
"locked": "Gesluit",
|
||||
"unlocked": "Oopgesluit",
|
||||
"ok": "OK",
|
||||
"problem": "Probleem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Af",
|
||||
"on": "Aan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Af",
|
||||
"on": "Aan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Gesluit",
|
||||
"unlocked": "Oopgesluit"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Af",
|
||||
"on": "Aan",
|
||||
"playing": "Speel Tans",
|
||||
"paused": "Onderbreek",
|
||||
"idle": "Onaktief",
|
||||
"standby": "Gereed"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Tuis",
|
||||
"not_home": "Elders"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "OK",
|
||||
"problem": "Probleem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Af",
|
||||
"on": "Aan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Af",
|
||||
"on": "Aan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Bo horison",
|
||||
"below_horizon": "Onder horison"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Af",
|
||||
"on": "Aan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Skoonmaak",
|
||||
"docked": "Vasgemeer by hawe",
|
||||
"error": "Fout",
|
||||
"idle": "Onaktief",
|
||||
"off": "Af",
|
||||
"on": "Aan",
|
||||
"paused": "Onderbreek",
|
||||
"returning": "Oppad terug hawe toe"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "aktief",
|
||||
"idle": "onaktief",
|
||||
"paused": "Onderbreek"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Helder, nag",
|
||||
"cloudy": "Bewolk",
|
||||
"fog": "Mis",
|
||||
"hail": "Hael",
|
||||
"lightning": "Weerlig",
|
||||
"lightning-rainy": "Weerlig, Re\u00ebnagtig",
|
||||
"partlycloudy": "Gedeeltelik bewolk",
|
||||
"pouring": "Stort",
|
||||
"rainy": "Re\u00ebnagtig",
|
||||
"snowy": "Sneeuagtig",
|
||||
"snowy-rainy": "Ysre\u00ebn",
|
||||
"sunny": "Sonnig",
|
||||
"windy": "Winderig",
|
||||
"windy-variant": "Winderig"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Inisialiseer",
|
||||
"dead": "Dood",
|
||||
"sleeping": "Aan die slaap",
|
||||
"ready": "Gereed"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Inisialiseer ({query_stage})",
|
||||
"dead": "Dood ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,328 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0625\u064a\u0642\u0627\u0641",
|
||||
"on": "\u0642\u064a\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0625\u064a\u0642\u0627\u0641",
|
||||
"on": "\u062a\u0634\u063a\u064a\u0644"
|
||||
},
|
||||
"battery": {
|
||||
"off": "\u0637\u0628\u064a\u0639\u064a",
|
||||
"on": "\u0645\u0646\u062e\u0641\u0636"
|
||||
},
|
||||
"cold": {
|
||||
"off": "\u0637\u0628\u064a\u0639\u064a",
|
||||
"on": "\u0628\u0627\u0631\u062f"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "\u0645\u0641\u0635\u0648\u0644",
|
||||
"on": "\u0645\u062a\u0635\u0644"
|
||||
},
|
||||
"door": {
|
||||
"off": "\u0645\u063a\u0644\u0642",
|
||||
"on": "\u0645\u0641\u062a\u0648\u062d"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "\u0645\u063a\u0644\u0642",
|
||||
"on": "\u0645\u0641\u062a\u0648\u062d"
|
||||
},
|
||||
"gas": {
|
||||
"off": "\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0643\u0634\u0641",
|
||||
"on": "\u062a\u0645 \u0627\u0644\u0643\u0634\u0641"
|
||||
},
|
||||
"heat": {
|
||||
"off": "\u0637\u0628\u064a\u0639\u064a",
|
||||
"on": "\u062d\u0627\u0631"
|
||||
},
|
||||
"lock": {
|
||||
"off": "\u0645\u0642\u0641\u0644",
|
||||
"on": "\u063a\u064a\u0631 \u0645\u0642\u0641\u0644"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "\u062c\u0627\u0641",
|
||||
"on": "\u0645\u0628\u0644\u0644"
|
||||
},
|
||||
"motion": {
|
||||
"off": "\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0643\u0634\u0641",
|
||||
"on": "\u062a\u0645 \u0627\u0644\u0643\u0634\u0641"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0643\u0634\u0641",
|
||||
"on": "\u062a\u0645 \u0627\u0644\u0643\u0634\u0641"
|
||||
},
|
||||
"opening": {
|
||||
"off": "\u0645\u0642\u0641\u0644",
|
||||
"on": "\u0645\u0641\u062a\u0648\u062d"
|
||||
},
|
||||
"presence": {
|
||||
"off": "\u062e\u0627\u0631\u062c \u0627\u0644\u0645\u0646\u0632\u0644",
|
||||
"on": "\u0641\u064a \u0627\u0644\u0645\u0646\u0632\u0644"
|
||||
},
|
||||
"problem": {
|
||||
"off": "\u0645\u0648\u0627\u0641\u0642",
|
||||
"on": "\u0639\u0637\u0644"
|
||||
},
|
||||
"safety": {
|
||||
"off": "\u0623\u0645\u0646",
|
||||
"on": "\u063a\u064a\u0631 \u0623\u0645\u0646"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0643\u0634\u0641",
|
||||
"on": "\u062a\u0645 \u0627\u0644\u0643\u0634\u0641"
|
||||
},
|
||||
"sound": {
|
||||
"off": "\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0643\u0634\u0641",
|
||||
"on": "\u062a\u0645 \u0627\u0644\u0643\u0634\u0641"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0643\u0634\u0641",
|
||||
"on": "\u062a\u0645 \u0627\u0644\u0643\u0634\u0641"
|
||||
},
|
||||
"window": {
|
||||
"off": "\u0645\u063a\u0644\u0642",
|
||||
"on": "\u0645\u0641\u062a\u0648\u062d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "\u0645\u0633\u0644\u062d",
|
||||
"disarmed": "\u063a\u064a\u0631 \u0645\u0641\u0639\u0651\u0644",
|
||||
"armed_home": "\u0645\u0641\u0639\u0651\u0644 \u0641\u064a \u0627\u0644\u0645\u0646\u0632\u0644",
|
||||
"armed_away": "\u0645\u0641\u0639\u0651\u0644 \u0641\u064a \u0627\u0644\u062e\u0627\u0631\u062c",
|
||||
"armed_night": "\u0645\u0641\u0639\u0651\u0644 \u0644\u064a\u0644",
|
||||
"armed_custom_bypass": "\u062a\u062c\u0627\u0648\u0632 \u0627\u0644\u062a\u0641\u0639\u064a\u0644",
|
||||
"pending": "\u0642\u064a\u062f \u0627\u0644\u0625\u0646\u062a\u0638\u0627\u0631",
|
||||
"arming": "\u062c\u0627\u0631\u064a \u0627\u0644\u062a\u0641\u0639\u064a\u0644",
|
||||
"disarming": "\u0625\u064a\u0642\u0627\u0641 \u0627\u0644\u0625\u0646\u0630\u0627\u0631",
|
||||
"triggered": "\u0645\u0641\u0639\u0651\u0644"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0625\u064a\u0642\u0627\u0641",
|
||||
"on": "\u062a\u0634\u063a\u064a\u0644"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0625\u064a\u0642\u0627\u0641",
|
||||
"on": "\u062a\u0634\u063a\u064a\u0644"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "\u062c\u0627\u0631\u064a \u0627\u0644\u062a\u0633\u062c\u064a\u0644",
|
||||
"streaming": "\u062c\u0627\u0631\u064a \u0627\u0644\u0628\u062b",
|
||||
"idle": "\u062e\u0627\u0645\u0644"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0625\u064a\u0642\u0627\u0641",
|
||||
"heat": "\u062a\u062f\u0641\u0626\u0629",
|
||||
"cool": "\u062a\u0628\u0631\u064a\u062f",
|
||||
"auto": "\u062a\u0644\u0642\u0627\u0626\u064a",
|
||||
"dry": "\u062c\u0627\u0641",
|
||||
"fan_only": "\u0627\u0644\u0645\u0631\u0648\u062d\u0629 \u0641\u0642\u0637"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "\u0625\u0639\u062f\u0627\u062f",
|
||||
"configured": "\u062a\u0645 \u0627\u0644\u0625\u0639\u062f\u0627\u062f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "\u0645\u0641\u062a\u0648\u062d",
|
||||
"opening": "\u062c\u0627\u0631\u064a \u0627\u0644\u0641\u062a\u062d",
|
||||
"closed": "\u0645\u063a\u0644\u0642",
|
||||
"closing": "\u062c\u0627\u0631\u064a \u0627\u0644\u0627\u063a\u0644\u0627\u0642",
|
||||
"stopped": "\u0645\u0648\u0642\u0641"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u0641\u064a \u0627\u0644\u0645\u0646\u0632\u0644",
|
||||
"not_home": "\u062e\u0627\u0631\u062c \u0627\u0644\u0645\u0646\u0632\u0644"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0625\u064a\u0642\u0627\u0641",
|
||||
"on": "\u0642\u064a\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0625\u064a\u0642\u0627\u0641",
|
||||
"on": "\u0642\u064a\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644",
|
||||
"home": "\u0641\u064a \u0627\u0644\u0645\u0646\u0632\u0644",
|
||||
"not_home": "\u0641\u064a \u0627\u0644\u062e\u0627\u0631\u062c",
|
||||
"open": "\u0645\u0641\u062a\u0648\u062d ",
|
||||
"closed": "\u0645\u063a\u0644\u0642 ",
|
||||
"locked": "\u0645\u0642\u0641\u0644 ",
|
||||
"unlocked": "\u063a\u064a\u0631 \u0645\u0642\u0641\u0644 ",
|
||||
"ok": "\u0623\u0648\u0643\u064a",
|
||||
"problem": "\u0645\u0634\u0643\u0644\u0629"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0625\u064a\u0642\u0627\u0641",
|
||||
"on": "\u0642\u064a\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0625\u064a\u0642\u0627\u0641",
|
||||
"on": "\u0642\u064a\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "\u0645\u0642\u0641\u0644",
|
||||
"unlocked": "\u0645\u0641\u062a\u0648\u062d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0625\u064a\u0642\u0627\u0641",
|
||||
"on": "\u0642\u064a\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644",
|
||||
"playing": "\u062c\u0627\u0631\u064a \u0627\u0644\u062a\u0634\u063a\u064a\u0644",
|
||||
"paused": "\u0645\u0648\u0642\u0651\u0641 \u0645\u0624\u0642\u062a\u0627",
|
||||
"idle": "\u062e\u0627\u0645\u0644",
|
||||
"standby": "\u0648\u0636\u0639 \u0627\u0644\u0625\u0646\u062a\u0638\u0627\u0631"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u0641\u064a \u0627\u0644\u0645\u0646\u0632\u0644",
|
||||
"not_home": "\u062e\u0627\u0631\u062c \u0627\u0644\u0645\u0646\u0632\u0644"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "\u0623\u0648\u0643\u064a",
|
||||
"problem": "\u0645\u0634\u0643\u0644\u0629"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0625\u064a\u0642\u0627\u0641",
|
||||
"on": "\u0642\u064a\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0625\u064a\u0642\u0627\u0641",
|
||||
"on": "\u0642\u064a\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "\u0641\u0648\u0642 \u0627\u0644\u0623\u0641\u0642",
|
||||
"below_horizon": "\u062a\u062d\u062a \u0627\u0644\u0623\u0641\u0642"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0625\u064a\u0642\u0627\u0641",
|
||||
"on": "\u0645\u064f\u0634\u064e\u063a\u0651\u0644"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "\u062a\u0646\u0638\u064a\u0641",
|
||||
"error": "\u062e\u0637\u0623",
|
||||
"off": "\u0645\u0637\u0641\u0626",
|
||||
"on": "\u0645\u0634\u063a\u0644",
|
||||
"paused": "\u0645\u0648\u0642\u0651\u0641 \u0645\u0624\u0642\u062a\u0627",
|
||||
"returning": "\u0627\u0644\u0639\u0648\u062f\u0629"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "\u0645\u0641\u0639\u0644",
|
||||
"idle": "\u062e\u0627\u0645\u0644",
|
||||
"paused": "\u0645\u0648\u0642\u0651\u0641 \u0645\u0624\u0642\u062a\u0627"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cloudy": "Bewolkt",
|
||||
"fog": "Mist",
|
||||
"sunny": "\u0645\u0634\u0645\u0633"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "\u0642\u064a\u062f \u0627\u0644\u0625\u0646\u0634\u0627\u0621",
|
||||
"dead": "\u0645\u0641\u0635\u0648\u0644",
|
||||
"sleeping": "\u0646\u0627\u0626\u0645",
|
||||
"ready": "\u062c\u0627\u0647\u0632"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "\u0642\u064a\u062f \u0627\u0644\u0625\u0646\u0634\u0627\u0621 ( {query_stage} )",
|
||||
"dead": "\u0645\u0641\u0635\u0648\u0644 ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0418\u0437\u043a\u043b\u044e\u0447\u0435\u043d",
|
||||
"on": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "\u0418\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f",
|
||||
"dead": "\u041c\u044a\u0440\u0442\u044a\u0432",
|
||||
"sleeping": "\u0421\u043f\u044f\u0449",
|
||||
"ready": "\u0413\u043e\u0442\u043e\u0432"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "\u0418\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f ( {query_stage} )",
|
||||
"dead": "\u041c\u044a\u0440\u0442\u044a\u0432 ({query_stage})"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "\u0414\u0435\u043d",
|
||||
"night": "\u041d\u043e\u0449"
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0418\u0437\u043a\u043b\u044e\u0447\u0435\u043d\u043e",
|
||||
"on": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u043e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0418\u0437\u043a\u043b\u044e\u0447\u0435\u043d",
|
||||
"on": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0418\u0437\u043a\u043b\u044e\u0447\u0435\u043d",
|
||||
"on": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d"
|
||||
},
|
||||
"battery": {
|
||||
"off": "\u041d\u043e\u0440\u043c\u0430\u043b\u043d\u0430",
|
||||
"on": "\u0418\u0437\u0442\u043e\u0449\u0435\u043d\u0430"
|
||||
},
|
||||
"cold": {
|
||||
"off": "\u041d\u043e\u0440\u043c\u0430\u043b\u043d\u043e",
|
||||
"on": "\u0421\u0442\u0443\u0434\u0435\u043d\u043e"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "\u0418\u0437\u043a\u043b\u044e\u0447\u0435\u043d",
|
||||
"on": "\u0421\u0432\u044a\u0440\u0437\u0430\u043d"
|
||||
},
|
||||
"door": {
|
||||
"off": "\u0417\u0430\u0442\u0432\u043e\u0440\u0435\u043d\u0430",
|
||||
"on": "\u041e\u0442\u0432\u043e\u0440\u0435\u043d\u0430"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "\u0417\u0430\u0442\u0432\u043e\u0440\u0435\u043d\u0430",
|
||||
"on": "\u041e\u0442\u0432\u043e\u0440\u0435\u043d\u0430"
|
||||
},
|
||||
"gas": {
|
||||
"off": "\u0427\u0438\u0441\u0442\u043e",
|
||||
"on": "\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043d"
|
||||
},
|
||||
"heat": {
|
||||
"off": "\u041d\u043e\u0440\u043c\u0430\u043b\u043d\u043e",
|
||||
"on": "\u0413\u043e\u0440\u0435\u0449\u043e"
|
||||
},
|
||||
"lock": {
|
||||
"off": "\u0417\u0430\u043a\u043b\u044e\u0447\u0435\u043d\u043e",
|
||||
"on": "\u041e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u043e"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "\u0421\u0443\u0445",
|
||||
"on": "\u041c\u043e\u043a\u044a\u0440"
|
||||
},
|
||||
"motion": {
|
||||
"off": "\u0411\u0435\u0437 \u0434\u0432\u0438\u0436\u0435\u043d\u0438\u0435",
|
||||
"on": "\u0414\u0432\u0438\u0436\u0435\u043d\u0438\u0435"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "\u0427\u0438\u0441\u0442\u043e",
|
||||
"on": "\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043d"
|
||||
},
|
||||
"opening": {
|
||||
"off": "\u0417\u0430\u0442\u0432\u043e\u0440\u0435\u043d",
|
||||
"on": "\u041e\u0442\u0432\u043e\u0440\u0435\u043d"
|
||||
},
|
||||
"presence": {
|
||||
"off": "\u041e\u0442\u0441\u044a\u0441\u0442\u0432\u0430",
|
||||
"on": "\u0412\u043a\u044a\u0449\u0438"
|
||||
},
|
||||
"problem": {
|
||||
"off": "\u041e\u041a",
|
||||
"on": "\u041f\u0440\u043e\u0431\u043b\u0435\u043c"
|
||||
},
|
||||
"safety": {
|
||||
"off": "\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u0435\u043d",
|
||||
"on": "\u041e\u043f\u0430\u0441\u043d\u043e\u0441\u0442"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "\u0427\u0438\u0441\u0442\u043e",
|
||||
"on": "\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043d"
|
||||
},
|
||||
"sound": {
|
||||
"off": "\u0427\u0438\u0441\u0442\u043e",
|
||||
"on": "\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043d"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "\u0427\u0438\u0441\u0442\u043e",
|
||||
"on": "\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043d\u0430"
|
||||
},
|
||||
"window": {
|
||||
"off": "\u0417\u0430\u0442\u0432\u043e\u0440\u0435\u043d",
|
||||
"on": "\u041e\u0442\u0432\u043e\u0440\u0435\u043d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "\u0417\u0430\u043a\u043b\u044e\u0447\u0435\u043d",
|
||||
"unlocked": "\u041e\u0442\u043a\u043b\u044e\u0447\u0435\u043d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "\u041e\u0442\u0432\u043e\u0440\u0435\u043d\u0430",
|
||||
"opening": "\u041e\u0442\u0432\u0430\u0440\u044f\u043d\u0435",
|
||||
"closed": "\u0417\u0430\u0442\u0432\u043e\u0440\u0435\u043d\u0430",
|
||||
"closing": "\u0417\u0430\u0442\u0432\u0430\u0440\u044f\u043d\u0435",
|
||||
"stopped": "\u0421\u043f\u0440\u044f\u043d\u0430"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "\u041f\u043e\u0434 \u043e\u0445\u0440\u0430\u043d\u0430",
|
||||
"disarmed": "\u0414\u0435\u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0430",
|
||||
"armed_home": "\u041f\u043e\u0434 \u043e\u0445\u0440\u0430\u043d\u0430 - \u0432\u043a\u044a\u0449\u0438",
|
||||
"armed_away": "\u041f\u043e\u0434 \u043e\u0445\u0440\u0430\u043d\u0430",
|
||||
"armed_night": "\u041f\u043e\u0434 \u043e\u0445\u0440\u0430\u043d\u0430 - \u043d\u043e\u0449",
|
||||
"armed_custom_bypass": "\u041f\u043e\u0434 \u043e\u0445\u0440\u0430\u043d\u0430",
|
||||
"pending": "\u0412 \u043e\u0447\u0430\u043a\u0432\u0430\u043d\u0435",
|
||||
"arming": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0435",
|
||||
"disarming": "\u0414\u0435\u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0435",
|
||||
"triggered": "\u0417\u0430\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u043d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0418\u0437\u043a\u043b\u044e\u0447\u0435\u043d",
|
||||
"on": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d",
|
||||
"playing": "\u0412\u044a\u0437\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435",
|
||||
"paused": "\u0412 \u043f\u0430\u0443\u0437\u0430",
|
||||
"idle": "\u041d\u0435\u0440\u0430\u0431\u043e\u0442\u0435\u0449",
|
||||
"standby": "\u0420\u0435\u0436\u0438\u043c \u043d\u0430 \u0433\u043e\u0442\u043e\u0432\u043d\u043e\u0441\u0442"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u0412\u043a\u044a\u0449\u0438",
|
||||
"not_home": "\u041e\u0442\u0441\u044a\u0441\u0442\u0432\u0430"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "\u041f\u043e\u0447\u0438\u0441\u0442\u0432\u0430\u043d\u0435",
|
||||
"docked": "\u0412 \u0431\u0430\u0437\u043e\u0432\u0430 \u0441\u0442\u0430\u043d\u0446\u0438\u044f",
|
||||
"error": "\u0413\u0440\u0435\u0448\u043a\u0430",
|
||||
"idle": "\u041d\u0435\u0440\u0430\u0431\u043e\u0442\u0435\u0449",
|
||||
"off": "\u0418\u0437\u043a\u043b\u044e\u0447\u0435\u043d",
|
||||
"on": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d",
|
||||
"paused": "\u041f\u0430\u0443\u0437\u0430",
|
||||
"returning": "\u0412\u0440\u044a\u0449\u0430\u043d\u0435 \u0432 \u0431\u0430\u0437\u043e\u0432\u0430\u0442\u0430 \u0441\u0442\u0430\u043d\u0446\u0438\u044f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0418\u0437\u043a\u043b\u044e\u0447\u0435\u043d",
|
||||
"on": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0418\u0437\u043a\u043b\u044e\u0447\u0435\u043d",
|
||||
"heat": "\u041e\u0442\u043e\u043f\u043b\u0435\u043d\u0438\u0435",
|
||||
"cool": "\u041e\u0445\u043b\u0430\u0436\u0434\u0430\u043d\u0435",
|
||||
"heat_cool": "\u041e\u0442\u043e\u043f\u043b\u0435\u043d\u0438\u0435/\u041e\u0445\u043b\u0430\u0436\u0434\u0430\u043d\u0435",
|
||||
"auto": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u043d",
|
||||
"dry": "\u0421\u0443\u0445",
|
||||
"fan_only": "\u0421\u0430\u043c\u043e \u0432\u0435\u043d\u0442\u0438\u043b\u0430\u0442\u043e\u0440"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0418\u0437\u043a\u043b\u044e\u0447\u0435\u043d",
|
||||
"on": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0418\u0437\u043a\u043b\u044e\u0447\u0435\u043d",
|
||||
"on": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "\u0417\u0430\u043f\u0438\u0441\u0432\u0430\u043d\u0435",
|
||||
"streaming": "\u041f\u0440\u0435\u0434\u0430\u0432\u0430",
|
||||
"idle": "\u041d\u0435 \u0437\u0430\u043f\u0438\u0441\u0432\u0430"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u0432\u0430\u043d\u0435",
|
||||
"configured": "\u041d\u0430\u0441\u0442\u0440\u043e\u0435\u043d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0418\u0437\u043a\u043b\u044e\u0447\u0435\u043d",
|
||||
"on": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u0430",
|
||||
"home": "\u0412\u043a\u044a\u0449\u0438",
|
||||
"not_home": "\u041e\u0442\u0441\u044a\u0441\u0442\u0432\u0430",
|
||||
"open": "\u041e\u0442\u0432\u043e\u0440\u0435\u043d\u0430",
|
||||
"closed": "\u0417\u0430\u0442\u0432\u043e\u0440\u0435\u043d\u0430",
|
||||
"locked": "\u0417\u0430\u043a\u043b\u044e\u0447\u0435\u043d\u0430",
|
||||
"unlocked": "\u041e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0430",
|
||||
"ok": "\u041e\u041a",
|
||||
"problem": "\u041f\u0440\u043e\u0431\u043b\u0435\u043c"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0418\u0437\u043a\u043b\u044e\u0447\u0435\u043d",
|
||||
"on": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u0412\u043a\u044a\u0449\u0438",
|
||||
"not_home": "\u041e\u0442\u0441\u044a\u0441\u0442\u0432\u0430"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "\u041e\u041a",
|
||||
"problem": "\u041f\u0440\u043e\u0431\u043b\u0435\u043c"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0418\u0437\u043a\u043b\u044e\u0447\u0435\u043d",
|
||||
"on": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0418\u0437\u043a\u043b\u044e\u0447\u0435\u043d",
|
||||
"on": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "\u041d\u0430\u0434 \u0445\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430",
|
||||
"below_horizon": "\u041f\u043e\u0434 \u0445\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "\u0430\u043a\u0442\u0438\u0432\u0435\u043d",
|
||||
"idle": "\u043d\u0435\u0440\u0430\u0431\u043e\u0442\u0435\u0449",
|
||||
"paused": "\u0432 \u043f\u0430\u0443\u0437\u0430"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "\u042f\u0441\u043d\u043e, \u043d\u043e\u0449",
|
||||
"cloudy": "\u041e\u0431\u043b\u0430\u0447\u043d\u043e",
|
||||
"exceptional": "\u0418\u0437\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e",
|
||||
"fog": "\u041c\u044a\u0433\u043b\u0430",
|
||||
"hail": "\u0413\u0440\u0430\u0434\u0443\u0448\u043a\u0430",
|
||||
"lightning": "\u0421\u0432\u0435\u0442\u043a\u0430\u0432\u0438\u0446\u0430",
|
||||
"lightning-rainy": "\u0421\u0432\u0435\u0442\u043a\u0430\u0432\u0438\u0446\u0430, \u0434\u044a\u0436\u0434\u043e\u0432\u043d\u043e",
|
||||
"partlycloudy": "\u0427\u0430\u0441\u0442\u0438\u0447\u043d\u0430 \u043e\u0431\u043b\u0430\u0447\u043d\u043e\u0441\u0442",
|
||||
"pouring": "\u041e\u0431\u0438\u043b\u0435\u043d \u0434\u044a\u0436\u0434",
|
||||
"rainy": "\u0414\u044a\u0436\u0434\u043e\u0432\u043d\u043e",
|
||||
"snowy": "\u0421\u043d\u0435\u0436\u043d\u043e",
|
||||
"snowy-rainy": "\u0421\u043d\u0435\u0436\u043d\u043e, \u0434\u044a\u0436\u0434\u043e\u0432\u043d\u043e",
|
||||
"sunny": "\u0421\u043b\u044a\u043d\u0447\u0435\u0432\u043e",
|
||||
"windy": "\u0412\u0435\u0442\u0440\u043e\u0432\u0438\u0442\u043e",
|
||||
"windy-variant": "\u0412\u0435\u0442\u0440\u043e\u0432\u0438\u0442\u043e"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{}
|
||||
@@ -0,0 +1,266 @@
|
||||
{
|
||||
"component": {
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normalno",
|
||||
"on": "Nisko"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Nepovezan",
|
||||
"on": "Povezan"
|
||||
},
|
||||
"gas": {
|
||||
"off": "\u010cist",
|
||||
"on": "Otkriven"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Suho",
|
||||
"on": "Mokar"
|
||||
},
|
||||
"motion": {
|
||||
"off": "\u010cist",
|
||||
"on": "Otkriven"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "\u010cist",
|
||||
"on": "Otkriven"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Zatvoren",
|
||||
"on": "Otvoren"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Odsutan",
|
||||
"on": "Kod ku\u0107e"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Problem"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Siguran",
|
||||
"on": "Nesiguran"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "\u010cist",
|
||||
"on": "Otkriven"
|
||||
},
|
||||
"sound": {
|
||||
"off": "\u010cist",
|
||||
"on": "Otkriven"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "\u010cist",
|
||||
"on": "Otkriven"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Aktiviran",
|
||||
"disarmed": "Deaktiviran",
|
||||
"armed_home": "Aktiviran kod ku\u0107e",
|
||||
"armed_away": "Aktiviran izvan ku\u0107e",
|
||||
"armed_night": "Aktiviran no\u0107u",
|
||||
"armed_custom_bypass": "Aktiviran pod specijalnim rezimom",
|
||||
"pending": "U is\u010dekivanju",
|
||||
"arming": "Aktivacija",
|
||||
"disarming": "Deaktivacija",
|
||||
"triggered": "Pokrenut"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Snimanje",
|
||||
"streaming": "Predaja slike",
|
||||
"idle": "Besposlen"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"heat": "Toplota",
|
||||
"cool": "Hladno",
|
||||
"auto": "Auto",
|
||||
"dry": "Suh",
|
||||
"fan_only": "Samo ventilator"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Podesite",
|
||||
"configured": "Konfigurirano"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Otvoren",
|
||||
"opening": "Otvoreno",
|
||||
"closed": "Zatvoren",
|
||||
"closing": "Zatvoreno",
|
||||
"stopped": "Zaustavljen"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Kod ku\u0107e",
|
||||
"not_home": "Odsutan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den",
|
||||
"home": "Kod ku\u0107e",
|
||||
"not_home": "Odsutan",
|
||||
"open": "Otvoren",
|
||||
"closed": "Zatvoren",
|
||||
"locked": "Zaklju\u010dan",
|
||||
"unlocked": "Otklju\u010dan",
|
||||
"ok": "OK",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Zaklju\u010dan",
|
||||
"unlocked": "Otklju\u010dan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den",
|
||||
"playing": "Prikazuje",
|
||||
"paused": "Pauziran",
|
||||
"idle": "Besposlen",
|
||||
"standby": "U stanju \u010dekanja"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "OK",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Iznad horizonta",
|
||||
"below_horizon": "Ispod horizonta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Inicijalizacija",
|
||||
"dead": "Mrtav",
|
||||
"sleeping": "Spava",
|
||||
"ready": "Spreman"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Inicijalizacija ( {query_stage} )",
|
||||
"dead": "Mrtav ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desactivat",
|
||||
"on": "Activat"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Inicialitzant",
|
||||
"dead": "No disponible",
|
||||
"sleeping": "Dormint",
|
||||
"ready": "A punt"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Inicialitzant",
|
||||
"dead": "No disponible"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "Dia",
|
||||
"night": "Nit"
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Apagada",
|
||||
"on": "Encesa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Apagat",
|
||||
"on": "Enc\u00e8s"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desactivat",
|
||||
"on": "Activat"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normal",
|
||||
"on": "Baixa"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normal",
|
||||
"on": "Fred"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Desconnectat",
|
||||
"on": "Connectat"
|
||||
},
|
||||
"door": {
|
||||
"off": "Tancada",
|
||||
"on": "Oberta"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Tancada",
|
||||
"on": "Oberta"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Lliure",
|
||||
"on": "Detectat"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normal",
|
||||
"on": "Calent"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Bloquejat",
|
||||
"on": "Desbloquejat"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Sec",
|
||||
"on": "Humit"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Lliure",
|
||||
"on": "Detectat"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Lliure",
|
||||
"on": "Detectat"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Tancat",
|
||||
"on": "Obert"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Lliure",
|
||||
"on": "Detectat"
|
||||
},
|
||||
"problem": {
|
||||
"off": "Correcte",
|
||||
"on": "Problema"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Segur",
|
||||
"on": "No segur"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Lliure",
|
||||
"on": "Detectat"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Lliure",
|
||||
"on": "Detectat"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Lliure",
|
||||
"on": "Detectat"
|
||||
},
|
||||
"window": {
|
||||
"off": "Tancada",
|
||||
"on": "Oberta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Bloquejat",
|
||||
"unlocked": "Desbloquejat"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Oberta",
|
||||
"opening": "Obrint",
|
||||
"closed": "Tancada",
|
||||
"closing": "Tancant",
|
||||
"stopped": "Aturat"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Activada",
|
||||
"disarmed": "Desactivada",
|
||||
"armed_home": "Activada, mode a casa",
|
||||
"armed_away": "Activada, mode fora",
|
||||
"armed_night": "Activada, mode nocturn",
|
||||
"armed_custom_bypass": "Activada, bypass personalitzat",
|
||||
"pending": "Pendent",
|
||||
"arming": "Activant",
|
||||
"disarming": "Desactivant",
|
||||
"triggered": "Disparada"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Apagat",
|
||||
"on": "Enc\u00e8s",
|
||||
"playing": "Reproduint",
|
||||
"paused": "Pausat",
|
||||
"idle": "Inactiu",
|
||||
"standby": "En espera"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "A casa",
|
||||
"not_home": "Fora"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Netejant",
|
||||
"docked": "Aparcat",
|
||||
"error": "Error",
|
||||
"idle": "Inactiu",
|
||||
"off": "Apagat",
|
||||
"on": "Enc\u00e8s",
|
||||
"paused": "Pausat",
|
||||
"returning": "Retornant a la base"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Apagat",
|
||||
"on": "Enc\u00e8s"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Apagat",
|
||||
"heat": "Escalfar",
|
||||
"cool": "Refredar",
|
||||
"heat_cool": "Escalfar/Refredar",
|
||||
"auto": "Autom\u00e0tic",
|
||||
"dry": "Assecar",
|
||||
"fan_only": "Nom\u00e9s ventilador"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desactivat",
|
||||
"on": "Activat"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desactivat",
|
||||
"on": "Activat"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Enregistrant",
|
||||
"streaming": "Transmetent v\u00eddeo",
|
||||
"idle": "Inactiu"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Configurar",
|
||||
"configured": "Configurat"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desactivat",
|
||||
"on": "Activat",
|
||||
"home": "A casa",
|
||||
"not_home": "Fora",
|
||||
"open": "Obert",
|
||||
"closed": "Tancat",
|
||||
"locked": "Bloquejat",
|
||||
"unlocked": "Desbloquejat",
|
||||
"ok": "Correcte",
|
||||
"problem": "Problema"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desactivat",
|
||||
"on": "Activat"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "A casa",
|
||||
"not_home": "Fora"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "Correcte",
|
||||
"problem": "Problema"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Apagat",
|
||||
"on": "Enc\u00e8s"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desactivat",
|
||||
"on": "Activat"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Sobre l'horitz\u00f3",
|
||||
"below_horizon": "Sota l'horitz\u00f3"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "Actiu",
|
||||
"idle": "inactiu",
|
||||
"paused": "Pausat"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Ser\u00e8, nit",
|
||||
"cloudy": "Ennuvolat",
|
||||
"exceptional": "Excepcional",
|
||||
"fog": "Boira",
|
||||
"hail": "Calamarsa",
|
||||
"lightning": "Llamps",
|
||||
"lightning-rainy": "Tempesta",
|
||||
"partlycloudy": "Parcialment ennuvolat",
|
||||
"pouring": "Pluja",
|
||||
"rainy": "Pluj\u00f3s",
|
||||
"snowy": "Neu",
|
||||
"snowy-rainy": "Aiguaneu",
|
||||
"sunny": "Assolellat",
|
||||
"windy": "Vent\u00f3s",
|
||||
"windy-variant": "Vent\u00f3s"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Neaktivn\u00ed",
|
||||
"on": "Aktivn\u00ed"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Inicializace",
|
||||
"dead": "Nereaguje",
|
||||
"sleeping": "\u00dasporn\u00fd re\u017eim",
|
||||
"ready": "P\u0159ipraveno"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Inicializace ( {query_stage} )",
|
||||
"dead": "Nereaguje ({query_stage})"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "Den",
|
||||
"night": "Noc"
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Neaktivn\u00ed",
|
||||
"on": "Aktivn\u00ed"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Norm\u00e1ln\u00ed",
|
||||
"on": "N\u00edzk\u00fd stav"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Norm\u00e1ln\u00ed",
|
||||
"on": "Chladn\u00e9"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Odpojeno",
|
||||
"on": "P\u0159ipojeno"
|
||||
},
|
||||
"door": {
|
||||
"off": "Zav\u0159eno",
|
||||
"on": "Otev\u0159eno"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Zav\u0159eno",
|
||||
"on": "Otev\u0159eno"
|
||||
},
|
||||
"gas": {
|
||||
"off": "\u017d\u00e1dn\u00fd plyn",
|
||||
"on": "Zji\u0161t\u011bn plyn"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Norm\u00e1ln\u00ed",
|
||||
"on": "Hork\u00e9"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Zam\u010deno",
|
||||
"on": "Odem\u010deno"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Sucho",
|
||||
"on": "Vlhko"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Bez pohybu",
|
||||
"on": "Zaznamen\u00e1n pohyb"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Volno",
|
||||
"on": "Obsazeno"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Zav\u0159eno",
|
||||
"on": "Otev\u0159eno"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Pry\u010d",
|
||||
"on": "Doma"
|
||||
},
|
||||
"problem": {
|
||||
"off": "V po\u0159\u00e1dku",
|
||||
"on": "Probl\u00e9m"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Zaji\u0161t\u011bno",
|
||||
"on": "Nezaji\u0161t\u011bno"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "\u017d\u00e1dn\u00fd d\u00fdm",
|
||||
"on": "Zji\u0161t\u011bn d\u00fdm"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Ticho",
|
||||
"on": "Zachycen zvuk"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Klid",
|
||||
"on": "Zji\u0161t\u011bny vibrace"
|
||||
},
|
||||
"window": {
|
||||
"off": "Zav\u0159eno",
|
||||
"on": "Otev\u0159eno"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Zam\u010deno",
|
||||
"unlocked": "Odem\u010deno"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Otev\u0159eno",
|
||||
"opening": "Otev\u00edr\u00e1n\u00ed",
|
||||
"closed": "Zav\u0159eno",
|
||||
"closing": "Zav\u00edr\u00e1n\u00ed",
|
||||
"stopped": "Zastaveno"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Aktivn\u00ed",
|
||||
"disarmed": "Neaktivn\u00ed",
|
||||
"armed_home": "Aktivn\u00ed re\u017eim doma",
|
||||
"armed_away": "Aktivn\u00ed re\u017eim mimo domov",
|
||||
"armed_night": "Aktivn\u00ed no\u010dn\u00ed re\u017eim",
|
||||
"armed_custom_bypass": "Aktivn\u00ed u\u017eivatelsk\u00fdm obejit\u00edm",
|
||||
"pending": "Nadch\u00e1zej\u00edc\u00ed",
|
||||
"arming": "Aktivov\u00e1n\u00ed",
|
||||
"disarming": "Deaktivov\u00e1n\u00ed",
|
||||
"triggered": "Spu\u0161t\u011bno"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Neaktivn\u00ed",
|
||||
"on": "Aktivn\u00ed",
|
||||
"playing": "P\u0159ehr\u00e1v\u00e1n\u00ed",
|
||||
"paused": "Pozastaveno",
|
||||
"idle": "Ne\u010dinn\u00fd",
|
||||
"standby": "Pohotovostn\u00ed re\u017eim"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Doma",
|
||||
"not_home": "Pry\u010d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Neaktivn\u00ed",
|
||||
"on": "Aktivn\u00ed"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Neaktivn\u00ed",
|
||||
"on": "Aktivn\u00ed"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Z\u00e1znam",
|
||||
"streaming": "Streamov\u00e1n\u00ed",
|
||||
"idle": "Ne\u010dinn\u00fd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Neaktivn\u00ed",
|
||||
"heat": "Topen\u00ed",
|
||||
"cool": "Chlazen\u00ed",
|
||||
"heat_cool": "Vyt\u00e1p\u011bn\u00ed/Chlazen\u00ed",
|
||||
"auto": "Automatika",
|
||||
"dry": "Vysou\u0161en\u00ed",
|
||||
"fan_only": "Pouze ventil\u00e1tor"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Nakonfigurovat",
|
||||
"configured": "Nakonfigurov\u00e1no"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Neaktivn\u00ed",
|
||||
"on": "Aktivn\u00ed"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Neaktivn\u00ed",
|
||||
"on": "Aktivn\u00ed",
|
||||
"home": "Doma",
|
||||
"not_home": "Pry\u010d",
|
||||
"open": "Otev\u0159eno",
|
||||
"closed": "Zav\u0159eno",
|
||||
"locked": "Zam\u010deno",
|
||||
"unlocked": "Odem\u010deno",
|
||||
"ok": "V po\u0159\u00e1dku",
|
||||
"problem": "Probl\u00e9m"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Neaktivn\u00ed",
|
||||
"on": "Aktivn\u00ed"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Nesv\u00edt\u00ed",
|
||||
"on": "Sv\u00edt\u00ed"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Doma",
|
||||
"not_home": "Pry\u010d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "V po\u0159\u00e1dku",
|
||||
"problem": "Probl\u00e9m"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Neaktivn\u00ed",
|
||||
"on": "Aktivn\u00ed"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Neaktivn\u00ed",
|
||||
"on": "Aktivn\u00ed"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Nad horizontem",
|
||||
"below_horizon": "Za horizontem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Neaktivn\u00ed",
|
||||
"on": "Aktivn\u00ed"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "\u010cist\u00ed",
|
||||
"docked": "V stanici",
|
||||
"error": "Chyba",
|
||||
"idle": "Ne\u010dinn\u00fd",
|
||||
"off": "Off",
|
||||
"on": "On",
|
||||
"paused": "Pozastaveno",
|
||||
"returning": "N\u00e1vrat do stanice"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "aktivn\u00ed",
|
||||
"idle": "ne\u010dinn\u00e9",
|
||||
"paused": "pozastaveno"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Jasn\u00e1 noc",
|
||||
"cloudy": "Zata\u017eeno",
|
||||
"exceptional": "Vyj\u00edme\u010dn\u00e9",
|
||||
"fog": "Mlha",
|
||||
"hail": "Krupobit\u00ed",
|
||||
"lightning": "Bou\u0159e",
|
||||
"lightning-rainy": "Bou\u0159e a d\u00e9\u0161\u0165",
|
||||
"partlycloudy": "Polojasno",
|
||||
"pouring": "Lij\u00e1k",
|
||||
"rainy": "D\u00e9\u0161\u0165",
|
||||
"snowy": "Sn\u00edh",
|
||||
"snowy-rainy": "D\u00e9\u0161\u0165 se sn\u011bhem",
|
||||
"sunny": "Slune\u010dno",
|
||||
"windy": "V\u011btrno",
|
||||
"windy-variant": "V\u011btrno"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,327 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "i ffwrdd",
|
||||
"on": "Ar"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "i ffwrdd",
|
||||
"on": "Ar"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Arferol",
|
||||
"on": "Isel"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Arferol",
|
||||
"on": "Oer"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Wedi datgysylltu",
|
||||
"on": "Cysylltiedig"
|
||||
},
|
||||
"door": {
|
||||
"off": "Cau",
|
||||
"on": "Agor"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Cau",
|
||||
"on": "Agor"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Clir",
|
||||
"on": "Wedi'i ganfod"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Arferol",
|
||||
"on": "Poeth"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Cloi",
|
||||
"on": "Dad-gloi"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Sych",
|
||||
"on": "Gwlyb"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Clir",
|
||||
"on": "Wedi'i ganfod"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Clir",
|
||||
"on": "Wedi'i ganfod"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Cau",
|
||||
"on": "Agor"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Allan",
|
||||
"on": "Gartref"
|
||||
},
|
||||
"problem": {
|
||||
"off": "iawn",
|
||||
"on": "Problem"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Diogel",
|
||||
"on": "Anniogel"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Clir",
|
||||
"on": "Wedi'i ganfod"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Clir",
|
||||
"on": "Wedi'i ganfod"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Clir",
|
||||
"on": "Wedi'i ganfod"
|
||||
},
|
||||
"window": {
|
||||
"off": "Cau",
|
||||
"on": "Agored"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Arfogi",
|
||||
"disarmed": "Diarfogi",
|
||||
"armed_home": "Arfogi gartref",
|
||||
"armed_away": "Arfog i ffwrdd",
|
||||
"armed_night": "Arfog nos",
|
||||
"armed_custom_bypass": "Ffordd osgoi larwm personol",
|
||||
"pending": "Yn yr arfaeth",
|
||||
"arming": "Arfogi",
|
||||
"disarming": "Ddiarfogi",
|
||||
"triggered": "Sbarduno"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "I ffwrdd",
|
||||
"on": "Ar"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "i ffwrdd",
|
||||
"on": "Ar"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Recordio",
|
||||
"streaming": "Ffrydio",
|
||||
"idle": "Segur"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "i ffwrdd",
|
||||
"heat": "Gwres",
|
||||
"cool": "Sefydlog",
|
||||
"auto": "Awto",
|
||||
"dry": "Sych",
|
||||
"fan_only": "Fan yn unig"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Ffurfweddu",
|
||||
"configured": "Wedi'i ffurfweddu"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Agor",
|
||||
"opening": "Yn agor",
|
||||
"closed": "Ar gau",
|
||||
"closing": "Cau",
|
||||
"stopped": "Stopio"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Gartref",
|
||||
"not_home": "Diim gartref"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "i ffwrdd",
|
||||
"on": "Ar"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "i ffwrdd",
|
||||
"on": "Ar",
|
||||
"home": "Gartref",
|
||||
"not_home": "Dim gartref",
|
||||
"open": "Agored",
|
||||
"closed": "Wedi cau",
|
||||
"locked": " Cloi",
|
||||
"unlocked": "Dadgloi",
|
||||
"ok": "Iawn",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "i ffwrdd",
|
||||
"on": "Ar"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "i ffwrdd",
|
||||
"on": "Ar"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Wedi cloi",
|
||||
"unlocked": "Datgloi"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "i ffwrdd",
|
||||
"on": "Ar",
|
||||
"playing": "Chwarae",
|
||||
"paused": "Wedi rhewi",
|
||||
"idle": "Segur",
|
||||
"standby": "Gorffwys"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Gartref",
|
||||
"not_home": "I ffwrdd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "Iawn",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "i ffwrdd",
|
||||
"on": "Ar"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "i ffwrdd",
|
||||
"on": "Ar"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Dros y gorwel",
|
||||
"below_horizon": "Islaw'r gorwel"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "i ffwrdd",
|
||||
"on": "Ar"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "gweithredol",
|
||||
"idle": "segur",
|
||||
"paused": "wedi rhewi"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Clir, nos",
|
||||
"cloudy": "Cymylog",
|
||||
"fog": "Niwl",
|
||||
"hail": "Cenllysg",
|
||||
"lightning": "Mellt",
|
||||
"lightning-rainy": "Mellt, glawog",
|
||||
"partlycloudy": "Cymharol gymylog",
|
||||
"pouring": "Arllwys",
|
||||
"rainy": "Glawog",
|
||||
"snowy": "Eira",
|
||||
"snowy-rainy": "Eira, gwlyb",
|
||||
"sunny": "Heulog",
|
||||
"windy": "Gwyntog",
|
||||
"windy-variant": "Gwyntog"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Ymgychwyn",
|
||||
"dead": "Marw",
|
||||
"sleeping": "Cysgu",
|
||||
"ready": "Barod"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Ymgychwyn ( {query_stage} )",
|
||||
"dead": "Marw ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Fra",
|
||||
"on": "Til"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Initialiserer",
|
||||
"dead": "D\u00f8d",
|
||||
"sleeping": "Sover",
|
||||
"ready": "Klar"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Initialiserer ( {query_stage} )",
|
||||
"dead": "D\u00f8d ({query_stage})"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "Dag",
|
||||
"night": "Nat"
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Slukket",
|
||||
"on": "T\u00e6ndt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Fra",
|
||||
"on": "Til"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Fra",
|
||||
"on": "Til"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normal",
|
||||
"on": "Lav"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normal",
|
||||
"on": "Kold"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Afbrudt",
|
||||
"on": "Forbundet"
|
||||
},
|
||||
"door": {
|
||||
"off": "Lukket",
|
||||
"on": "\u00c5ben"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Lukket",
|
||||
"on": "\u00c5ben"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Ikke registreret",
|
||||
"on": "Registreret"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normal",
|
||||
"on": "Varm"
|
||||
},
|
||||
"lock": {
|
||||
"off": "L\u00e5st",
|
||||
"on": "Ul\u00e5st"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "T\u00f8r",
|
||||
"on": "Fugtig"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Ikke registreret",
|
||||
"on": "Registreret"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Ikke registreret",
|
||||
"on": "Registreret"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Lukket",
|
||||
"on": "\u00c5ben"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Ude",
|
||||
"on": "Hjemme"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Problem"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Sikret",
|
||||
"on": "Usikret"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Ikke registreret",
|
||||
"on": "Registreret"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Ikke registreret",
|
||||
"on": "Registreret"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Ikke registreret",
|
||||
"on": "Registreret"
|
||||
},
|
||||
"window": {
|
||||
"off": "Lukket",
|
||||
"on": "\u00c5ben"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "L\u00e5st",
|
||||
"unlocked": "Ul\u00e5st"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "\u00c5ben",
|
||||
"opening": "\u00c5bner",
|
||||
"closed": "Lukket",
|
||||
"closing": "Lukker",
|
||||
"stopped": "Stoppet"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Tilkoblet",
|
||||
"disarmed": "Frakoblet",
|
||||
"armed_home": "Tilkoblet hjemme",
|
||||
"armed_away": "Tilkoblet ude",
|
||||
"armed_night": "Tilkoblet nat",
|
||||
"armed_custom_bypass": "Tilkoblet brugerdefineret bypass",
|
||||
"pending": "Afventer",
|
||||
"arming": "Tilkobler",
|
||||
"disarming": "Frakobler",
|
||||
"triggered": "Udl\u00f8st"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Slukket",
|
||||
"on": "T\u00e6ndt",
|
||||
"playing": "Afspiller",
|
||||
"paused": "Sat p\u00e5 pause",
|
||||
"idle": "Inaktiv",
|
||||
"standby": "Standby"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Hjemme",
|
||||
"not_home": "Ude"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "G\u00f8r rent",
|
||||
"docked": "I dock",
|
||||
"error": "Fejl",
|
||||
"idle": "Inaktiv",
|
||||
"off": "Off",
|
||||
"on": "On",
|
||||
"paused": "Sat p\u00e5 pause",
|
||||
"returning": "Vender tilbage til dock"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Fra",
|
||||
"on": "Til"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Fra",
|
||||
"heat": "Varme",
|
||||
"cool": "K\u00f8l",
|
||||
"heat_cool": "Opvarm/k\u00f8l",
|
||||
"auto": "Auto",
|
||||
"dry": "T\u00f8r",
|
||||
"fan_only": "Kun bl\u00e6ser"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Fra",
|
||||
"on": "Til"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Fra",
|
||||
"on": "Til"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Optager",
|
||||
"streaming": "Streamer",
|
||||
"idle": "Inaktiv"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Konfigurer",
|
||||
"configured": "Konfigureret"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Fra",
|
||||
"on": "Til",
|
||||
"home": "Hjemme",
|
||||
"not_home": "Ude",
|
||||
"open": "\u00c5ben",
|
||||
"closed": "Lukket",
|
||||
"locked": "L\u00e5st",
|
||||
"unlocked": "Ul\u00e5st",
|
||||
"ok": "OK",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Fra",
|
||||
"on": "Til"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Hjemme",
|
||||
"not_home": "Ude"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "OK",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Slukket",
|
||||
"on": "T\u00e6ndt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Fra",
|
||||
"on": "Til"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Over horisonten",
|
||||
"below_horizon": "Under horisonten"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "aktiv",
|
||||
"idle": "inaktiv",
|
||||
"paused": "pause"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Klart, nat",
|
||||
"cloudy": "Overskyet",
|
||||
"exceptional": "Enest\u00e5ende",
|
||||
"fog": "T\u00e5ge",
|
||||
"hail": "Hagl",
|
||||
"lightning": "Lyn",
|
||||
"lightning-rainy": "Lyn, regnvejr",
|
||||
"partlycloudy": "Delvist overskyet",
|
||||
"pouring": "Regnvejr",
|
||||
"rainy": "Regnfuldt",
|
||||
"snowy": "Sne",
|
||||
"snowy-rainy": "Sne, regn",
|
||||
"sunny": "Solrig",
|
||||
"windy": "Bl\u00e6sende",
|
||||
"windy-variant": "Bl\u00e6sende"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "An"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Initialisierend",
|
||||
"dead": "Nicht erreichbar",
|
||||
"sleeping": "Schlafend",
|
||||
"ready": "Bereit"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Initialisiere ({query_stage})",
|
||||
"dead": "Nicht erreichbar ({query_stage})"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "Tag",
|
||||
"night": "Nacht"
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "An"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "An"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "An"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normal",
|
||||
"on": "Schwach"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normal",
|
||||
"on": "Kalt"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Getrennt",
|
||||
"on": "Verbunden"
|
||||
},
|
||||
"door": {
|
||||
"off": "Geschlossen",
|
||||
"on": "Offen"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Geschlossen",
|
||||
"on": "Offen"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Normal",
|
||||
"on": "Erkannt"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normal",
|
||||
"on": "Hei\u00df"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Verriegelt",
|
||||
"on": "Entriegelt"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Trocken",
|
||||
"on": "Nass"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Ruhig",
|
||||
"on": "Bewegung erkannt"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Frei",
|
||||
"on": "Belegt"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Geschlossen",
|
||||
"on": "Offen"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Abwesend",
|
||||
"on": "Zu Hause"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Problem"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Sicher",
|
||||
"on": "Unsicher"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "OK",
|
||||
"on": "Rauch erkannt"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Stille",
|
||||
"on": "Ger\u00e4usch erkannt"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Normal",
|
||||
"on": "Vibration"
|
||||
},
|
||||
"window": {
|
||||
"off": "Geschlossen",
|
||||
"on": "Offen"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Verriegelt",
|
||||
"unlocked": "Entriegelt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Offen",
|
||||
"opening": "\u00d6ffnet",
|
||||
"closed": "Geschlossen",
|
||||
"closing": "Schlie\u00dft",
|
||||
"stopped": "Angehalten"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Aktiv",
|
||||
"disarmed": "Inaktiv",
|
||||
"armed_home": "Aktiv, zu Hause",
|
||||
"armed_away": "Aktiv, abwesend",
|
||||
"armed_night": "Aktiv, Nacht",
|
||||
"armed_custom_bypass": "Aktiv, benutzerdefiniert",
|
||||
"pending": "Ausstehend",
|
||||
"arming": "Aktiviere",
|
||||
"disarming": "Deaktiviere",
|
||||
"triggered": "Ausgel\u00f6st"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "An",
|
||||
"playing": "Spielt",
|
||||
"paused": "Pausiert",
|
||||
"idle": "Unt\u00e4tig",
|
||||
"standby": "Standby"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Zu Hause",
|
||||
"not_home": "Abwesend"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Reinigen",
|
||||
"docked": "Angedockt",
|
||||
"error": "Fehler",
|
||||
"idle": "Standby",
|
||||
"off": "Aus",
|
||||
"on": "An",
|
||||
"paused": "Pausiert",
|
||||
"returning": "R\u00fcckkehr zur Dockingstation"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "An"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"heat": "Heizen",
|
||||
"cool": "K\u00fchlen",
|
||||
"heat_cool": "Heizen/K\u00fchlen",
|
||||
"auto": "Automatisch",
|
||||
"dry": "Entfeuchten",
|
||||
"fan_only": "Nur Ventilator"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "An"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "An"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Aufnehmen",
|
||||
"streaming": "\u00dcbertr\u00e4gt",
|
||||
"idle": "Unt\u00e4tig"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Konfigurieren",
|
||||
"configured": "Konfiguriert"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "An",
|
||||
"home": "Zu Hause",
|
||||
"not_home": "Abwesend",
|
||||
"open": "Offen",
|
||||
"closed": "Geschlossen",
|
||||
"locked": "Verriegelt",
|
||||
"unlocked": "Entriegelt",
|
||||
"ok": "OK",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "An"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Zu Hause",
|
||||
"not_home": "Abwesend"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "OK",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "An"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "An"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "\u00dcber dem Horizont",
|
||||
"below_horizon": "Unter dem Horizont"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "aktiv",
|
||||
"idle": "Leerlauf",
|
||||
"paused": "pausiert"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Klare Nacht",
|
||||
"cloudy": "Bew\u00f6lkt",
|
||||
"exceptional": "Au\u00dfergew\u00f6hnlich",
|
||||
"fog": "Nebel",
|
||||
"hail": "Hagel",
|
||||
"lightning": "Gewitter",
|
||||
"lightning-rainy": "Gewitter, regnerisch",
|
||||
"partlycloudy": "Teilweise bew\u00f6lkt",
|
||||
"pouring": "Str\u00f6mend",
|
||||
"rainy": "Regnerisch",
|
||||
"snowy": "Verschneit",
|
||||
"snowy-rainy": "Verschneit, regnerisch",
|
||||
"sunny": "Sonnig",
|
||||
"windy": "Windig",
|
||||
"windy-variant": "Windig"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,343 @@
|
||||
{
|
||||
"component": {
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0391\u03bd\u03b5\u03bd\u03b5\u03c1\u03b3\u03cc\u03c2",
|
||||
"on": "\u0395\u03bd\u03b5\u03c1\u03b3\u03cc\u03c2"
|
||||
},
|
||||
"battery": {
|
||||
"off": "\u039a\u03b1\u03bd\u03bf\u03bd\u03b9\u03ba\u03cc\u03c2",
|
||||
"on": "\u03a7\u03b1\u03bc\u03b7\u03bb\u03cc\u03c2"
|
||||
},
|
||||
"cold": {
|
||||
"off": "\u03a6\u03c5\u03c3\u03b9\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc",
|
||||
"on": "\u039a\u03c1\u03cd\u03bf"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "\u0391\u03c0\u03bf\u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7",
|
||||
"on": "\u03a3\u03c5\u03bd\u03b4\u03b5\u03b4\u03b5\u03bc\u03ad\u03bd\u03bf\u03c2"
|
||||
},
|
||||
"door": {
|
||||
"off": "\u039a\u03bb\u03b5\u03b9\u03c3\u03c4\u03ae",
|
||||
"on": "\u0391\u03bd\u03bf\u03b9\u03c7\u03c4\u03ae"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "\u039a\u03bb\u03b5\u03b9\u03c3\u03c4\u03cc",
|
||||
"on": "\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1"
|
||||
},
|
||||
"gas": {
|
||||
"off": "\u0394\u03b5\u03bd \u0395\u03bd\u03c4\u03bf\u03c0\u03af\u03c3\u03c4\u03b7\u03ba\u03b5",
|
||||
"on": "\u0395\u03bd\u03c4\u03bf\u03c0\u03af\u03c3\u03c4\u03b7\u03ba\u03b5"
|
||||
},
|
||||
"heat": {
|
||||
"off": "\u03a6\u03c5\u03c3\u03b9\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc",
|
||||
"on": "\u039a\u03b1\u03c5\u03c4\u03cc"
|
||||
},
|
||||
"lock": {
|
||||
"off": "\u039a\u03bb\u03b5\u03b9\u03b4\u03c9\u03bc\u03ad\u03bd\u03bf",
|
||||
"on": "\u039e\u03b5\u03ba\u03bb\u03b5\u03af\u03b4\u03c9\u03c4\u03bf"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "\u039e\u03b7\u03c1\u03cc",
|
||||
"on": "\u03a5\u03b3\u03c1\u03cc"
|
||||
},
|
||||
"motion": {
|
||||
"off": "\u0394\u03b5\u03bd \u0395\u03bd\u03c4\u03bf\u03c0\u03af\u03c3\u03c4\u03b7\u03ba\u03b5",
|
||||
"on": "\u0395\u03bd\u03c4\u03bf\u03c0\u03af\u03c3\u03c4\u03b7\u03ba\u03b5"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "\u0394\u03b5\u03bd \u0395\u03bd\u03c4\u03bf\u03c0\u03af\u03c3\u03c4\u03b7\u03ba\u03b5",
|
||||
"on": "\u0395\u03bd\u03c4\u03bf\u03c0\u03af\u03c3\u03c4\u03b7\u03ba\u03b5"
|
||||
},
|
||||
"opening": {
|
||||
"off": "\u039a\u03bb\u03b5\u03b9\u03c3\u03c4\u03cc",
|
||||
"on": "\u0391\u03bd\u03bf\u03b9\u03c7\u03c4\u03cc"
|
||||
},
|
||||
"presence": {
|
||||
"off": "\u0395\u03ba\u03c4\u03cc\u03c2",
|
||||
"on": "\u03a3\u03c0\u03af\u03c4\u03b9"
|
||||
},
|
||||
"problem": {
|
||||
"off": "\u0395\u03bd\u03c4\u03ac\u03be\u03b5\u03b9",
|
||||
"on": "\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1"
|
||||
},
|
||||
"safety": {
|
||||
"off": "\u0391\u03c3\u03c6\u03b1\u03bb\u03ae\u03c2",
|
||||
"on": "\u0391\u03bd\u03b1\u03c3\u03c6\u03b1\u03bb\u03ae\u03c2"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "\u0394\u03b5\u03bd \u0395\u03bd\u03c4\u03bf\u03c0\u03af\u03c3\u03c4\u03b7\u03ba\u03b5",
|
||||
"on": "\u0395\u03bd\u03c4\u03bf\u03c0\u03af\u03c3\u03c4\u03b7\u03ba\u03b5"
|
||||
},
|
||||
"sound": {
|
||||
"off": "\u0394\u03b5\u03bd \u0395\u03bd\u03c4\u03bf\u03c0\u03af\u03c3\u03c4\u03b7\u03ba\u03b5",
|
||||
"on": "\u0395\u03bd\u03c4\u03bf\u03c0\u03af\u03c3\u03c4\u03b7\u03ba\u03b5"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "\u0394\u03b5\u03bd \u0395\u03bd\u03c4\u03bf\u03c0\u03af\u03c3\u03c4\u03b7\u03ba\u03b5",
|
||||
"on": "\u0395\u03bd\u03c4\u03bf\u03c0\u03af\u03c3\u03c4\u03b7\u03ba\u03b5"
|
||||
},
|
||||
"window": {
|
||||
"off": "\u039a\u03bb\u03b5\u03b9\u03c3\u03c4\u03cc",
|
||||
"on": "\u0391\u03bd\u03bf\u03b9\u03c7\u03c4\u03cc"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "\u039f\u03c0\u03bb\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2",
|
||||
"disarmed": "\u0391\u03c6\u03bf\u03c0\u03bb\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2",
|
||||
"armed_home": "\u03a3\u03c0\u03af\u03c4\u03b9 \u039f\u03c0\u03bb\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf",
|
||||
"armed_away": "\u039f\u03c0\u03bb\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03bc\u03b1\u03ba\u03c1\u03b9\u03ac",
|
||||
"armed_night": "\u039f\u03c0\u03bb\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf \u03b2\u03c1\u03ac\u03b4\u03c5",
|
||||
"armed_custom_bypass": "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03c0\u03b1\u03c1\u03ac\u03ba\u03b1\u03bc\u03c8\u03b7 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ae",
|
||||
"pending": "\u0395\u03ba\u03ba\u03c1\u03b5\u03bc\u03ae\u03c2",
|
||||
"arming": "\u038c\u03c0\u03bb\u03b9\u03c3\u03b7",
|
||||
"disarming": "\u0391\u03c6\u03cc\u03c0\u03bb\u03b9\u03c3\u03b7",
|
||||
"triggered": "\u03a0\u03b1\u03c1\u03b1\u03b2\u03af\u03b1\u03c3\u03b7"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u039a\u03bb\u03b5\u03b9\u03c3\u03c4\u03cc",
|
||||
"on": "\u0395\u03bd\u03b5\u03c1\u03b3\u03cc\u03c2 "
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0391\u03c0\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf",
|
||||
"on": "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "\u039a\u03b1\u03c4\u03b1\u03b3\u03c1\u03ac\u03c6\u03b5\u03b9",
|
||||
"streaming": "\u039c\u03b5\u03c4\u03ac\u03b4\u03bf\u03c3\u03b7 \u03a1\u03bf\u03ae\u03c2",
|
||||
"idle": "\u0391\u03b4\u03c1\u03b1\u03bd\u03ad\u03c2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0391\u03bd\u03b5\u03bd\u03b5\u03c1\u03b3\u03cc",
|
||||
"heat": "\u0398\u03b5\u03c1\u03bc\u03cc",
|
||||
"cool": "\u0394\u03c1\u03bf\u03c3\u03b5\u03c1\u03cc",
|
||||
"heat_cool": "\u0398\u03ad\u03c1\u03bc\u03b1\u03bd\u03c3\u03b7 / \u03a8\u03cd\u03be\u03b7",
|
||||
"auto": "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03bf",
|
||||
"dry": "\u039e\u03b7\u03c1\u03cc",
|
||||
"fan_only": "\u0391\u03bd\u03b5\u03bc\u03b9\u03c3\u03c4\u03ae\u03c1\u03b1\u03c2 \u03bc\u03cc\u03bd\u03bf"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "\u0394\u03b9\u03b1\u03bc\u03bf\u03c1\u03c6\u03ce\u03c3\u03c4\u03b5",
|
||||
"configured": "\u0394\u03b9\u03b1\u03bc\u03bf\u03c1\u03c6\u03ce\u03b8\u03b7\u03ba\u03b5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "\u0391\u03bd\u03bf\u03b9\u03c7\u03c4\u03cc",
|
||||
"opening": "\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1",
|
||||
"closed": "\u039a\u03bb\u03b5\u03b9\u03c3\u03c4\u03cc",
|
||||
"closing": "\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf",
|
||||
"stopped": "\u03a3\u03c4\u03b1\u03bc\u03ac\u03c4\u03b7\u03c3\u03b5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u03a3\u03c0\u03af\u03c4\u03b9",
|
||||
"not_home": "\u0395\u03ba\u03c4\u03cc\u03c2 \u03a3\u03c0\u03b9\u03c4\u03b9\u03bf\u03cd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u039a\u03bb\u03b5\u03b9\u03c3\u03c4\u03cc",
|
||||
"on": "\u0391\u03bd\u03bf\u03b9\u03c7\u03c4\u03cc"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0391\u03bd\u03b5\u03bd\u03b5\u03c1\u03b3\u03cc",
|
||||
"on": "\u0395\u03bd\u03b5\u03c1\u03b3\u03cc",
|
||||
"home": "\u03a3\u03c0\u03af\u03c4\u03b9",
|
||||
"not_home": "\u0395\u03ba\u03c4\u03cc\u03c2 \u03a3\u03c0\u03b9\u03c4\u03b9\u03bf\u03cd",
|
||||
"open": "\u0391\u03bd\u03bf\u03b9\u03c7\u03c4\u03cc",
|
||||
"closed": "\u039a\u03bb\u03b5\u03b9\u03c3\u03c4\u03cc",
|
||||
"locked": "\u039a\u03bb\u03b5\u03b9\u03b4\u03c9\u03bc\u03ad\u03bd\u03bf",
|
||||
"unlocked": "\u039e\u03b5\u03ba\u03bb\u03b5\u03af\u03b4\u03c9\u03c4\u03bf",
|
||||
"ok": "\u0395\u03bd\u03c4\u03ac\u03be\u03b5\u03b9",
|
||||
"problem": "\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u039a\u03bb\u03b5\u03b9\u03c3\u03c4\u03cc",
|
||||
"on": "\u0391\u03bd\u03bf\u03b9\u03c7\u03c4\u03cc"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u039a\u03bb\u03b5\u03b9\u03c3\u03c4\u03cc",
|
||||
"on": "\u0391\u03bd\u03bf\u03b9\u03c7\u03c4\u03cc"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "\u039a\u03bb\u03b5\u03b9\u03b4\u03c9\u03bc\u03ad\u03bd\u03b7",
|
||||
"unlocked": "\u039e\u03b5\u03ba\u03bb\u03b5\u03af\u03b4\u03c9\u03c4\u03b7"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0391\u03c0\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7",
|
||||
"on": "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7",
|
||||
"playing": "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2",
|
||||
"paused": "\u03a3\u03b5 \u03a0\u03b1\u03cd\u03c3\u03b7",
|
||||
"idle": "\u03a3\u03b5 \u03b1\u03b4\u03c1\u03ac\u03bd\u03b5\u03b9\u03b1",
|
||||
"standby": "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03b1\u03bd\u03b1\u03bc\u03bf\u03bd\u03ae\u03c2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u03a3\u03c0\u03af\u03c4\u03b9",
|
||||
"not_home": "\u0395\u03ba\u03c4\u03cc\u03c2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "\u0395\u03bd\u03c4\u03ac\u03be\u03b5\u03b9",
|
||||
"problem": "\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u039a\u03bb\u03b5\u03b9\u03c3\u03c4\u03cc",
|
||||
"on": "\u0391\u03bd\u03bf\u03b9\u03c7\u03c4\u03cc"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0391\u03bd\u03b5\u03bd\u03b5\u03c1\u03b3\u03cc",
|
||||
"on": "\u0395\u03bd\u03b5\u03c1\u03b3\u03cc"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u039a\u03bb\u03b5\u03b9\u03c3\u03c4\u03cc",
|
||||
"on": "\u0391\u03bd\u03bf\u03b9\u03c7\u03c4\u03cc"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "\u03a0\u03ac\u03bd\u03c9 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03bf\u03c1\u03af\u03b6\u03bf\u03bd\u03c4\u03b1",
|
||||
"below_horizon": "\u039a\u03ac\u03c4\u03c9 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03bf\u03c1\u03af\u03b6\u03bf\u03bd\u03c4\u03b1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u039a\u03bb\u03b5\u03b9\u03c3\u03c4\u03cc",
|
||||
"on": "\u0391\u03bd\u03bf\u03b9\u03c7\u03c4\u03cc"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "\u039a\u03b1\u03b8\u03b1\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2",
|
||||
"docked": "\u039a\u03b1\u03c1\u03c6\u03b9\u03c4\u03c3\u03c9\u03bc\u03ad\u03bd\u03bf",
|
||||
"error": "\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1",
|
||||
"idle": "\u03a3\u03b5 \u03b1\u03b4\u03c1\u03ac\u03bd\u03b5\u03b9\u03b1",
|
||||
"off": "\u039c\u03b7 \u0395\u03bd\u03b5\u03c1\u03b3\u03cc",
|
||||
"on": "\u0395\u03bd\u03b5\u03c1\u03b3\u03cc",
|
||||
"paused": "\u03a0\u03b1\u03cd\u03c3\u03b7",
|
||||
"returning": "\u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03c3\u03c4\u03bf dock"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "\u03b5\u03bd\u03b5\u03c1\u03b3\u03cc",
|
||||
"idle": "\u03a3\u03b5 \u03b1\u03b4\u03c1\u03ac\u03bd\u03b5\u03b9\u03b1",
|
||||
"paused": "\u03c3\u03b5 \u03c0\u03b1\u03cd\u03c3\u03b7"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "\u039e\u03b1\u03c3\u03c4\u03b5\u03c1\u03b9\u03ac, \u03bd\u03cd\u03c7\u03c4\u03b1",
|
||||
"cloudy": "\u039d\u03b5\u03c6\u03b5\u03bb\u03ce\u03b4\u03b7\u03c2",
|
||||
"exceptional": "\u0395\u03be\u03b1\u03b9\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc",
|
||||
"fog": "\u039f\u03bc\u03af\u03c7\u03bb\u03b7",
|
||||
"hail": "\u03a7\u03b1\u03bb\u03ac\u03b6\u03b9",
|
||||
"lightning": "\u0391\u03c3\u03c4\u03c1\u03b1\u03c0\u03ae",
|
||||
"lightning-rainy": "\u039a\u03b1\u03c4\u03b1\u03b9\u03b3\u03af\u03b4\u03b1, \u03b2\u03c1\u03bf\u03c7\u03b5\u03c1\u03cc",
|
||||
"partlycloudy": "\u039c\u03b5\u03c1\u03b9\u03ba\u03ce\u03c2 \u03bd\u03b5\u03c6\u03b5\u03bb\u03ce\u03b4\u03b7\u03c2",
|
||||
"pouring": "\u03a8\u03b9\u03c7\u03b1\u03bb\u03af\u03b6\u03b5\u03b9",
|
||||
"rainy": "\u0392\u03c1\u03bf\u03c7\u03b5\u03c1\u03ae",
|
||||
"snowy": "\u03a7\u03b9\u03bf\u03bd\u03ce\u03b4\u03b7\u03c2",
|
||||
"snowy-rainy": "\u03a7\u03b9\u03bf\u03bd\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf, \u03b2\u03c1\u03bf\u03c7\u03b5\u03c1\u03cc",
|
||||
"sunny": "\u0397\u03bb\u03b9\u03cc\u03bb\u03bf\u03c5\u03c3\u03c4\u03bf",
|
||||
"windy": "\u0398\u03c5\u03b5\u03bb\u03bb\u03ce\u03b4\u03b5\u03b9\u03c2",
|
||||
"windy-variant": "\u0398\u03c5\u03b5\u03bb\u03bb\u03ce\u03b4\u03b5\u03b9\u03c2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "\u0391\u03c1\u03c7\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7",
|
||||
"dead": "\u039d\u03b5\u03ba\u03c1\u03cc",
|
||||
"sleeping": "\u039a\u03bf\u03b9\u03bc\u03ac\u03c4\u03b1\u03b9",
|
||||
"ready": "\u0388\u03c4\u03bf\u03b9\u03bc\u03bf"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "\u0391\u03c1\u03c7\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 ( {query_stage} )",
|
||||
"dead": "\u039d\u03b5\u03ba\u03c1\u03cc ( {query_stage} )"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Initializing",
|
||||
"dead": "Dead",
|
||||
"sleeping": "Sleeping",
|
||||
"ready": "Ready"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Initializing",
|
||||
"dead": "Dead"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "Day",
|
||||
"night": "Night"
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normal",
|
||||
"on": "Low"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normal",
|
||||
"on": "Cold"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Disconnected",
|
||||
"on": "Connected"
|
||||
},
|
||||
"door": {
|
||||
"off": "Closed",
|
||||
"on": "Open"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Closed",
|
||||
"on": "Open"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Clear",
|
||||
"on": "Detected"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normal",
|
||||
"on": "Hot"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Locked",
|
||||
"on": "Unlocked"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Dry",
|
||||
"on": "Wet"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Clear",
|
||||
"on": "Detected"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Clear",
|
||||
"on": "Detected"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Closed",
|
||||
"on": "Open"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Away",
|
||||
"on": "Home"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Problem"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Safe",
|
||||
"on": "Unsafe"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Clear",
|
||||
"on": "Detected"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Clear",
|
||||
"on": "Detected"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Clear",
|
||||
"on": "Detected"
|
||||
},
|
||||
"window": {
|
||||
"off": "Closed",
|
||||
"on": "Open"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Locked",
|
||||
"unlocked": "Unlocked"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Open",
|
||||
"opening": "Opening",
|
||||
"closed": "Closed",
|
||||
"closing": "Closing",
|
||||
"stopped": "Stopped"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Armed",
|
||||
"disarmed": "Disarmed",
|
||||
"armed_home": "Armed home",
|
||||
"armed_away": "Armed away",
|
||||
"armed_night": "Armed night",
|
||||
"armed_custom_bypass": "Armed custom bypass",
|
||||
"pending": "Pending",
|
||||
"arming": "Arming",
|
||||
"disarming": "Disarming",
|
||||
"triggered": "Triggered"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On",
|
||||
"playing": "Playing",
|
||||
"paused": "Paused",
|
||||
"idle": "Idle",
|
||||
"standby": "Standby"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Home",
|
||||
"not_home": "Away"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Cleaning",
|
||||
"docked": "Docked",
|
||||
"error": "Error",
|
||||
"idle": "Idle",
|
||||
"off": "Off",
|
||||
"on": "On",
|
||||
"paused": "Paused",
|
||||
"returning": "Returning to dock"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"heat": "Heat",
|
||||
"cool": "Cool",
|
||||
"heat_cool": "Heat/Cool",
|
||||
"auto": "Auto",
|
||||
"dry": "Dry",
|
||||
"fan_only": "Fan only"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Recording",
|
||||
"streaming": "Streaming",
|
||||
"idle": "Idle"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Configure",
|
||||
"configured": "Configured"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On",
|
||||
"home": "Home",
|
||||
"not_home": "Away",
|
||||
"open": "Open",
|
||||
"closed": "Closed",
|
||||
"locked": "Locked",
|
||||
"unlocked": "Unlocked",
|
||||
"ok": "OK",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Home",
|
||||
"not_home": "Away"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "OK",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Above horizon",
|
||||
"below_horizon": "Below horizon"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "Active",
|
||||
"idle": "Idle",
|
||||
"paused": "Paused"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Clear, night",
|
||||
"cloudy": "Cloudy",
|
||||
"exceptional": "Exceptional",
|
||||
"fog": "Fog",
|
||||
"hail": "Hail",
|
||||
"lightning": "Lightning",
|
||||
"lightning-rainy": "Lightning, rainy",
|
||||
"partlycloudy": "Partly cloudy",
|
||||
"pouring": "Pouring",
|
||||
"rainy": "Rainy",
|
||||
"snowy": "Snowy",
|
||||
"snowy-rainy": "Snowy, rainy",
|
||||
"sunny": "Sunny",
|
||||
"windy": "Windy",
|
||||
"windy-variant": "Windy"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"component": {}
|
||||
}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Apagado",
|
||||
"on": "Encendido"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Inicializando",
|
||||
"dead": "No responde",
|
||||
"sleeping": "Ahorro de energ\u00eda",
|
||||
"ready": "Listo"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Inicializando",
|
||||
"dead": "No responde"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "D\u00eda",
|
||||
"night": "Noche"
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Apagada",
|
||||
"on": "Encendida"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Apagado",
|
||||
"on": "Encendido"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Apagado",
|
||||
"on": "Encendido"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normal",
|
||||
"on": "Bajo"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normal",
|
||||
"on": "Frio"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Desconectado",
|
||||
"on": "Conectado"
|
||||
},
|
||||
"door": {
|
||||
"off": "Cerrada",
|
||||
"on": "Abierta"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Cerrada",
|
||||
"on": "Abierta"
|
||||
},
|
||||
"gas": {
|
||||
"off": "No detectado",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normal",
|
||||
"on": "Caliente"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Bloqueado",
|
||||
"on": "Desbloqueado"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Seco",
|
||||
"on": "H\u00famedo"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Sin movimiento",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "No detectado",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Cerrado",
|
||||
"on": "Abierto"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Fuera de casa",
|
||||
"on": "En casa"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Problema"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Seguro",
|
||||
"on": "Inseguro"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "No detectado",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"sound": {
|
||||
"off": "No detectado",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "No detectado",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"window": {
|
||||
"off": "Cerrada",
|
||||
"on": "Abierta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Bloqueado",
|
||||
"unlocked": "Desbloqueado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Abierto",
|
||||
"opening": "Abriendo",
|
||||
"closed": "Cerrado",
|
||||
"closing": "Cerrando",
|
||||
"stopped": "Detenido"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Armado",
|
||||
"disarmed": "Desarmado",
|
||||
"armed_home": "Armado en casa",
|
||||
"armed_away": "Armado fuera de casa",
|
||||
"armed_night": "Armado noche",
|
||||
"armed_custom_bypass": "Armada Zona Espec\u00edfica",
|
||||
"pending": "Pendiente",
|
||||
"arming": "Armando",
|
||||
"disarming": "Desarmando",
|
||||
"triggered": "Disparada"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Apagado",
|
||||
"on": "Encendido",
|
||||
"playing": "Reproduciendo",
|
||||
"paused": "En pausa",
|
||||
"idle": "Inactivo",
|
||||
"standby": "Apagado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "En casa",
|
||||
"not_home": "Fuera de casa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Limpiando",
|
||||
"docked": "En base",
|
||||
"error": "Error",
|
||||
"idle": "Inactivo",
|
||||
"off": "Apagado",
|
||||
"on": "Encendido",
|
||||
"paused": "En pausa",
|
||||
"returning": "Volviendo a la base"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Apagado",
|
||||
"on": "Encendido"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Apagado",
|
||||
"heat": "Calor",
|
||||
"cool": "Fr\u00edo",
|
||||
"heat_cool": "Calor/Fr\u00edo",
|
||||
"auto": "Autom\u00e1tico",
|
||||
"dry": "Seco",
|
||||
"fan_only": "S\u00f3lo ventilador"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Apagado",
|
||||
"on": "Encendida"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Apagado",
|
||||
"on": "Encendido"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Grabando",
|
||||
"streaming": "Transmitiendo",
|
||||
"idle": "Inactivo"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Configurar",
|
||||
"configured": "Configurado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Apagado",
|
||||
"on": "Encendido",
|
||||
"home": "En casa",
|
||||
"not_home": "Fuera de casa",
|
||||
"open": "Abierto",
|
||||
"closed": "Cerrado",
|
||||
"locked": "Bloqueado",
|
||||
"unlocked": "Desbloqueado",
|
||||
"ok": "OK",
|
||||
"problem": "Problema"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Apagado",
|
||||
"on": "Encendido"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Casa",
|
||||
"not_home": "Fuera de casa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "OK",
|
||||
"problem": "Problema"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Apagado",
|
||||
"on": "Encendido"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Apagado",
|
||||
"on": "Encendido"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Sobre el horizonte",
|
||||
"below_horizon": "Bajo el horizonte"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "activo",
|
||||
"idle": "inactivo",
|
||||
"paused": "pausado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Despejado, de noche",
|
||||
"cloudy": "Nublado",
|
||||
"exceptional": "Excepcional",
|
||||
"fog": "Niebla",
|
||||
"hail": "Granizo",
|
||||
"lightning": "Rel\u00e1mpagos",
|
||||
"lightning-rainy": "Rel\u00e1mpagos, lluvioso",
|
||||
"partlycloudy": "Parcialmente nublado",
|
||||
"pouring": "Torrencial",
|
||||
"rainy": "Lluvioso",
|
||||
"snowy": "Nevado",
|
||||
"snowy-rainy": "Nevado, lluvioso",
|
||||
"sunny": "Soleado",
|
||||
"windy": "Ventoso",
|
||||
"windy-variant": "Ventoso"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,343 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "V\u00e4ljas",
|
||||
"on": "Sees"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "V\u00e4ljas",
|
||||
"on": "Sees"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Tavaline",
|
||||
"on": "Madal"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normaalne",
|
||||
"on": "Jahe"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Lahti \u00fchendatud",
|
||||
"on": "\u00dchendatud"
|
||||
},
|
||||
"door": {
|
||||
"off": "Suletud",
|
||||
"on": "Avatud"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Suletud",
|
||||
"on": "Avatud"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Puudub",
|
||||
"on": "Tuvastatud"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normaalne",
|
||||
"on": "Palav"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Lukus",
|
||||
"on": "Lukustamata"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Kuiv",
|
||||
"on": "M\u00e4rg"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Puudub",
|
||||
"on": "Tuvastatud"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Puudub",
|
||||
"on": "Tuvastatud"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Suletud",
|
||||
"on": "Avatud"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Eemal",
|
||||
"on": "Kodus"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Probleem"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Ohutu",
|
||||
"on": "Ohtlik"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Puudub",
|
||||
"on": "Tuvastatud"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Puudub",
|
||||
"on": "Tuvastatud"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Puudub",
|
||||
"on": "Tuvastatud"
|
||||
},
|
||||
"window": {
|
||||
"off": "Suletud",
|
||||
"on": "Avatud"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Valves",
|
||||
"disarmed": "Maas",
|
||||
"armed_home": "Valves kodus",
|
||||
"armed_away": "Valves eemal",
|
||||
"armed_night": "Valves \u00f6ine",
|
||||
"armed_custom_bypass": "Valves, eranditega",
|
||||
"pending": "Ootel",
|
||||
"arming": "Valvestab",
|
||||
"disarming": "Maas...",
|
||||
"triggered": "H\u00e4ires"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "V\u00e4ljas",
|
||||
"on": "Sees"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "V\u00e4ljas",
|
||||
"on": "Sees"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Salvestab",
|
||||
"streaming": "Voogedastab",
|
||||
"idle": "Ootel"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "V\u00e4ljas",
|
||||
"heat": "Soojenda",
|
||||
"cool": "Jahuta",
|
||||
"heat_cool": "K\u00fcta/jahuta",
|
||||
"auto": "Automaatne",
|
||||
"dry": "Kuiv",
|
||||
"fan_only": "Ainult ventilaator"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Seadista",
|
||||
"configured": "Seadistatud"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Avatud",
|
||||
"opening": "Avaneb",
|
||||
"closed": "Suletud",
|
||||
"closing": "Sulgub",
|
||||
"stopped": "Peatatud"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Kodus",
|
||||
"not_home": "Eemal"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "V\u00e4ljas",
|
||||
"on": "Sees"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "V\u00e4ljas",
|
||||
"on": "Sees",
|
||||
"home": "Kodus",
|
||||
"not_home": "Eemal",
|
||||
"open": "Avatud",
|
||||
"closed": "Suletud",
|
||||
"locked": "Lukus",
|
||||
"unlocked": "Lukustamata",
|
||||
"ok": "OK",
|
||||
"problem": "Probleem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "V\u00e4ljas",
|
||||
"on": "Sees"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "V\u00e4ljas",
|
||||
"on": "Sees"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Lukus",
|
||||
"unlocked": "Lahti"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "V\u00e4ljas",
|
||||
"on": "Sees",
|
||||
"playing": "M\u00e4ngib",
|
||||
"paused": "Peatatud",
|
||||
"idle": "Ootel",
|
||||
"standby": "Unere\u017eiimil"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Kodus",
|
||||
"not_home": "Eemal"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "OK",
|
||||
"problem": "Probleem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "V\u00e4ljas",
|
||||
"on": "Sees"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "V\u00e4ljas",
|
||||
"on": "Sees"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "T\u00f5usnud",
|
||||
"below_horizon": "Loojunud"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "V\u00e4ljas",
|
||||
"on": "Sees"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Puhastamine",
|
||||
"docked": "Dokitud",
|
||||
"error": "Viga",
|
||||
"idle": "Ootel",
|
||||
"off": "V\u00e4ljas",
|
||||
"on": "Sees",
|
||||
"paused": "Peatatud",
|
||||
"returning": "P\u00f6\u00f6rdun tagasi dokki"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "aktiivne",
|
||||
"idle": "ootel",
|
||||
"paused": "peatatud"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Selge \u00f6\u00f6",
|
||||
"cloudy": "Pilves",
|
||||
"exceptional": "Erakordne",
|
||||
"fog": "Udu",
|
||||
"hail": "Rahe",
|
||||
"lightning": "\u00c4ikeseline",
|
||||
"lightning-rainy": "\u00c4ikeseline, vihmane",
|
||||
"partlycloudy": "Osaliselt pilves",
|
||||
"pouring": "Kallab",
|
||||
"rainy": "Vihmane",
|
||||
"snowy": "Lumine",
|
||||
"snowy-rainy": "L\u00f6rtsine",
|
||||
"sunny": "P\u00e4ikeseline",
|
||||
"windy": "Tuuline",
|
||||
"windy-variant": "Tuuline"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "L\u00e4htestan",
|
||||
"dead": "Surnud",
|
||||
"sleeping": "Ootel",
|
||||
"ready": "Valmis"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "L\u00e4htestan ( {query_stage} )",
|
||||
"dead": "Surnud ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,281 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Itzalita",
|
||||
"on": "Piztuta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Itzalita",
|
||||
"on": "Piztuta"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normala",
|
||||
"on": "Baxua"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normala",
|
||||
"on": "Hotza"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Deskonektatuta",
|
||||
"on": "Konektatuta"
|
||||
},
|
||||
"door": {
|
||||
"off": "Itxita",
|
||||
"on": "Ireki"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Itxita",
|
||||
"on": "Ireki"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normala",
|
||||
"on": "Beroa"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Itxita",
|
||||
"on": "Irekita"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Lehorra",
|
||||
"on": "Buztita"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Itxita",
|
||||
"on": "Ireki"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Kanpoan",
|
||||
"on": "Etxean"
|
||||
},
|
||||
"problem": {
|
||||
"off": "Ondo",
|
||||
"on": "Arazoa"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Babestuta"
|
||||
},
|
||||
"window": {
|
||||
"off": "Itxita",
|
||||
"on": "Ireki"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"pending": "Zain",
|
||||
"triggered": "Abiarazita"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Itzalita",
|
||||
"on": "Piztuta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Itzalita",
|
||||
"on": "Piztuta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Grabatzen"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Itzalita",
|
||||
"heat": "Beroa",
|
||||
"cool": "Hotza",
|
||||
"auto": "Automatikoa",
|
||||
"dry": "Lehorra",
|
||||
"fan_only": "Haizagailua bakarrik"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Konfiguratu",
|
||||
"configured": "Konfiguratuta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Itzalita",
|
||||
"on": "Piztuta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Itzalita",
|
||||
"on": "Piztuta",
|
||||
"home": "Etxean",
|
||||
"not_home": "Kanpoan",
|
||||
"open": "Ireki",
|
||||
"closed": "Itxita",
|
||||
"ok": "Itzalita",
|
||||
"problem": "Arazoa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Itzalita",
|
||||
"on": "Piztuta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Itzalita",
|
||||
"on": "Piztuta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Etxean",
|
||||
"not_home": "Kanpoan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "Itzalita",
|
||||
"problem": "Arazoa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Itzalita",
|
||||
"on": "Piztuta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Itzalita",
|
||||
"on": "Piztuta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Horizonte gainetik",
|
||||
"below_horizon": "Horizonte azpitik"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Garbitzen",
|
||||
"docked": "Basean",
|
||||
"error": "Errorea",
|
||||
"off": "Itzalita",
|
||||
"on": "Piztuta",
|
||||
"returning": "Basera itzultzen"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Irekita",
|
||||
"opening": "Irekitzen",
|
||||
"closed": "Itxita",
|
||||
"closing": "Ixten",
|
||||
"stopped": "Geldituta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Etxean",
|
||||
"not_home": "Kanpoan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Itzalita",
|
||||
"on": "Piztuta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Itzalita",
|
||||
"on": "Piztuta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Garbia, gaua",
|
||||
"cloudy": "Hodeitsua",
|
||||
"fog": "Lainoa",
|
||||
"hail": "Txingorra",
|
||||
"lightning": "Tximistak",
|
||||
"lightning-rainy": "Tximistak, euritsua",
|
||||
"partlycloudy": "Ostarteak",
|
||||
"pouring": "Botatzen",
|
||||
"rainy": "Euritsua",
|
||||
"snowy": "Elurtsua",
|
||||
"snowy-rainy": "Elurtsua, euritsua",
|
||||
"sunny": "Eguzkitsua",
|
||||
"windy": "Haizetsua",
|
||||
"windy-variant": "Haizetsua"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Hasieratzen",
|
||||
"dead": "Hilda",
|
||||
"sleeping": "Lotan",
|
||||
"ready": "Prest"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Hasieratzen ({query_stage})",
|
||||
"dead": "Ez du erantzuten ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,335 @@
|
||||
{
|
||||
"component": {
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u062e\u0627\u0645\u0648\u0634",
|
||||
"on": "\u0631\u0648\u0634\u0646"
|
||||
},
|
||||
"battery": {
|
||||
"off": "\u0639\u0627\u062f\u06cc",
|
||||
"on": "\u06a9\u0645"
|
||||
},
|
||||
"cold": {
|
||||
"off": "\u0639\u0627\u062f\u06cc",
|
||||
"on": "\u0633\u0631\u062f"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "\u0642\u0637\u0639 ",
|
||||
"on": "\u0645\u062a\u0635\u0644"
|
||||
},
|
||||
"door": {
|
||||
"off": "\u0628\u0633\u062a\u0647",
|
||||
"on": "\u0628\u0627\u0632"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "\u0628\u0633\u062a\u0647",
|
||||
"on": "\u0628\u0627\u0632"
|
||||
},
|
||||
"gas": {
|
||||
"off": "\u0639\u0627\u062f\u06cc",
|
||||
"on": "\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc \u0634\u062f"
|
||||
},
|
||||
"heat": {
|
||||
"off": "\u0639\u0627\u062f\u06cc",
|
||||
"on": "\u062f\u0627\u063a"
|
||||
},
|
||||
"lock": {
|
||||
"off": "\u0642\u0641\u0644",
|
||||
"on": "\u0628\u0627\u0632"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "\u062e\u0634\u06a9",
|
||||
"on": "\u0645\u0631\u0637\u0648\u0628"
|
||||
},
|
||||
"motion": {
|
||||
"off": "\u0639\u0627\u062f\u06cc",
|
||||
"on": "\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc \u0634\u062f"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "\u0639\u0627\u062f\u06cc",
|
||||
"on": "\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc \u0634\u062f"
|
||||
},
|
||||
"opening": {
|
||||
"off": "\u0628\u0633\u062a\u0647 \u0634\u062f\u0647",
|
||||
"on": "\u0628\u0627\u0632"
|
||||
},
|
||||
"presence": {
|
||||
"off": "\u0628\u06cc\u0631\u0648\u0646",
|
||||
"on": "\u062e\u0627\u0646\u0647"
|
||||
},
|
||||
"problem": {
|
||||
"off": "\u062e\u0648\u0628",
|
||||
"on": "\u0645\u0634\u06a9\u0644"
|
||||
},
|
||||
"safety": {
|
||||
"off": "\u0627\u0645\u0646",
|
||||
"on": "\u0646\u0627 \u0627\u0645\u0646"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "\u0639\u0627\u062f\u06cc",
|
||||
"on": "\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc \u0634\u062f"
|
||||
},
|
||||
"sound": {
|
||||
"off": "\u0639\u0627\u062f\u06cc",
|
||||
"on": "\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc \u0634\u062f"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "\u067e\u0627\u06a9 \u06a9\u0631\u062f\u0646",
|
||||
"on": "\u0634\u0646\u0627\u0633\u0627\u06cc\u06cc \u0634\u062f"
|
||||
},
|
||||
"window": {
|
||||
"off": "\u0628\u0633\u062a\u0647",
|
||||
"on": "\u0628\u0627\u0632"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "\u0645\u0635\u0644\u062d \u0634\u062f\u0647",
|
||||
"disarmed": "\u063a\u06cc\u0631 \u0645\u0633\u0644\u062d",
|
||||
"armed_home": "\u0645\u0633\u0644\u062d \u0634\u062f\u0647 \u062e\u0627\u0646\u0647",
|
||||
"armed_away": "\u0645\u0633\u0644\u062d \u0634\u062f\u0647 \u0628\u06cc\u0631\u0648\u0646",
|
||||
"armed_night": "\u0645\u0633\u0644\u062d \u0634\u062f\u0647 \u0634\u0628",
|
||||
"armed_custom_bypass": "\u0628\u0627\u06cc\u06af\u0627\u0646\u06cc \u0633\u0641\u0627\u0631\u0634\u06cc \u0645\u0633\u0644\u062d",
|
||||
"pending": "\u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631",
|
||||
"arming": "\u062f\u0631 \u062d\u0627\u0644 \u0645\u0633\u0644\u062d \u06a9\u0631\u062f\u0646",
|
||||
"disarming": "\u062f\u0631 \u062d\u0627\u0644 \u063a\u06cc\u0631 \u0645\u0633\u0644\u062d \u06a9\u0631\u062f\u0646",
|
||||
"triggered": "\u0631\u0627\u0647 \u0627\u0646\u062f\u0627\u062e\u062a\u0647 \u0634\u062f\u0647"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u062e\u0627\u0645\u0648\u0634",
|
||||
"on": "\u0641\u0639\u0627\u0644"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u063a\u06cc\u0631\u0641\u0639\u0627\u0644",
|
||||
"on": "\u0641\u0639\u0627\u0644"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "\u062f\u0631 \u062d\u0627\u0644 \u0636\u0628\u0637",
|
||||
"streaming": "\u062f\u0631 \u062d\u0627\u0644 \u067e\u062e\u0634",
|
||||
"idle": "\u0628\u06cc\u06a9\u0627\u0631"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u062e\u0627\u0645\u0648\u0634",
|
||||
"heat": "\u062d\u0631\u0627\u0631\u062a",
|
||||
"cool": "\u062e\u0646\u06a9",
|
||||
"auto": "\u062e\u0648\u062f\u06a9\u0627\u0631",
|
||||
"dry": "\u062e\u0634\u06a9",
|
||||
"fan_only": "\u0641\u0642\u0637 \u067e\u0646\u06a9\u0647"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "\u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc",
|
||||
"configured": "\u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc \u0634\u062f\u0647"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "\u0628\u0627\u0632",
|
||||
"opening": "\u062f\u0631 \u062d\u0627\u0644 \u0628\u0627\u0632 \u0634\u062f\u0646",
|
||||
"closed": "\u0628\u0633\u062a\u0647 \u0634\u062f\u0647",
|
||||
"closing": "\u062f\u0631 \u062d\u0627\u0644 \u0628\u0633\u062a\u0647 \u0634\u062f\u0646",
|
||||
"stopped": "\u0645\u062a\u0648\u0642\u0641"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u062e\u0627\u0646\u0647",
|
||||
"not_home": "\u0628\u06cc\u0631\u0648\u0646"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u062e\u0627\u0645\u0648\u0634",
|
||||
"on": "\u0631\u0648\u0634\u0646"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u063a\u06cc\u0631\u0641\u0639\u0627\u0644",
|
||||
"on": "\u0641\u0639\u0627\u0644",
|
||||
"home": "\u062e\u0627\u0646\u0647",
|
||||
"not_home": "\u0628\u06cc\u0631\u0648\u0646",
|
||||
"open": "\u0628\u0627\u0632",
|
||||
"closed": "\u0628\u0633\u062a\u0647",
|
||||
"locked": "\u0642\u0641\u0644 \u0634\u062f\u0647",
|
||||
"unlocked": "\u0628\u0627\u0632",
|
||||
"ok": "\u062e\u0648\u0628",
|
||||
"problem": "\u0645\u0634\u06a9\u0644"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u063a\u06cc\u0631\u0641\u0639\u0627\u0644",
|
||||
"on": "\u0641\u0639\u0627\u0644"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u062e\u0627\u0645\u0648\u0634",
|
||||
"on": "\u0631\u0648\u0634\u0646"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "\u0642\u0641\u0644 \u0634\u062f\u0647",
|
||||
"unlocked": "\u0628\u0627\u0632"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u062e\u0627\u0646\u0647",
|
||||
"not_home": "\u0628\u06cc\u0631\u0648\u0646"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u063a\u06cc\u0631\u0641\u0639\u0627\u0644",
|
||||
"on": "\u0641\u0639\u0627\u0644"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u063a\u06cc\u0631 \u0641\u0639\u0627\u0644",
|
||||
"on": "\u0641\u0639\u0627\u0644"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "\u0628\u0627\u0644\u0627\u06cc \u0627\u0641\u0642",
|
||||
"below_horizon": "\u0632\u06cc\u0631 \u0627\u0641\u0642"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u062e\u0627\u0645\u0648\u0634",
|
||||
"on": "\u0631\u0648\u0634\u0646"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "\u062a\u0645\u06cc\u0632 \u06a9\u0631\u062f\u0646",
|
||||
"off": "\u063a\u06cc\u0631 \u0641\u0639\u0627\u0644",
|
||||
"on": "\u0641\u063a\u0627\u0644",
|
||||
"paused": "\u0645\u06a9\u062b"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u062e\u0627\u0645\u0648\u0634",
|
||||
"on": "\u0631\u0648\u0634\u0646",
|
||||
"playing": "\u062f\u0631 \u062d\u0627\u0644 \u067e\u062e\u0634",
|
||||
"paused": "\u062f\u0631 \u062d\u0627\u0644\u062a \u0645\u06a9\u062b",
|
||||
"idle": "\u0628\u06cc\u06a9\u0627\u0631",
|
||||
"standby": "\u0622\u0645\u0627\u062f\u0647 \u0628\u0647 \u06a9\u0627\u0631"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "\u062e\u0648\u0628",
|
||||
"problem": "\u0645\u0634\u06a9\u0644"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u062e\u0627\u0645\u0648\u0634",
|
||||
"on": "\u0631\u0648\u0634\u0646"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "\u0641\u0639\u0627\u0644",
|
||||
"idle": "\u0628\u06cc\u06a9\u0627\u0631 ",
|
||||
"paused": "\u0645\u062a\u0648\u0642\u0641 \u0634\u062f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cloudy": "\u0627\u0628\u0631\u06cc",
|
||||
"fog": "\u0645\u0647",
|
||||
"hail": "\u062a\u06af\u0631\u06af",
|
||||
"lightning": "\u0631\u0639\u062f \u0648 \u0628\u0631\u0642",
|
||||
"partlycloudy": "\u0646\u06cc\u0645\u0647 \u0627\u0628\u0631\u06cc",
|
||||
"pouring": "\u0631\u06cc\u062e\u062a\u0646",
|
||||
"rainy": "\u0628\u0627\u0631\u0627\u0646\u06cc",
|
||||
"snowy": "\u0628\u0631\u0641\u06cc",
|
||||
"snowy-rainy": "\u0628\u0631\u0641\u06cc\u060c \u0628\u0627\u0631\u0627\u0646\u06cc",
|
||||
"sunny": "\u0622\u0641\u062a\u0627\u0628\u06cc",
|
||||
"windy": "\u0628\u0627\u062f",
|
||||
"windy-variant": "\u0628\u0627\u062f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "\u062f\u0631 \u062d\u0627\u0644 \u0622\u0645\u0627\u062f\u0647 \u0634\u062f\u0646",
|
||||
"dead": "\u0645\u0631\u062f\u0647",
|
||||
"sleeping": "\u062f\u0631 \u062d\u0627\u0644 \u062e\u0648\u0627\u0628",
|
||||
"ready": "\u0622\u0645\u0627\u062f\u0647"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "\u062f\u0631 \u062d\u0627\u0644 \u0622\u0645\u0627\u062f\u0647 \u0634\u062f\u0646 ( {query_stage} )",
|
||||
"dead": "\u0645\u0631\u062f\u0647 ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,343 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Pois",
|
||||
"on": "P\u00e4\u00e4ll\u00e4"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Pois",
|
||||
"on": "P\u00e4\u00e4ll\u00e4"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normaali",
|
||||
"on": "Alhainen"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normaali",
|
||||
"on": "Kylm\u00e4"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Ei yhteytt\u00e4",
|
||||
"on": "Yhdistetty"
|
||||
},
|
||||
"door": {
|
||||
"off": "Suljettu",
|
||||
"on": "Auki"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Suljettu",
|
||||
"on": "Auki"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Pois",
|
||||
"on": "Havaittu"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normaali",
|
||||
"on": "Kuuma"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Lukittu",
|
||||
"on": "Auki"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Kuiva",
|
||||
"on": "Kostea"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Ei liikett\u00e4",
|
||||
"on": "Havaittu"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Ei liikett\u00e4",
|
||||
"on": "Havaittu"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Suljettu",
|
||||
"on": "Auki"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Poissa",
|
||||
"on": "Kotona"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Ongelma"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Turvallinen",
|
||||
"on": "Vaarallinen"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Ei savua",
|
||||
"on": "Havaittu"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Ei \u00e4\u00e4nt\u00e4",
|
||||
"on": "Havaittu"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Ei v\u00e4rin\u00e4\u00e4",
|
||||
"on": "Havaittu"
|
||||
},
|
||||
"window": {
|
||||
"off": "Suljettu",
|
||||
"on": "Auki"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Viritetty",
|
||||
"disarmed": "Viritys pois",
|
||||
"armed_home": "Viritetty (kotona)",
|
||||
"armed_away": "Viritetty (poissa)",
|
||||
"armed_night": "Viritetty (y\u00f6)",
|
||||
"armed_custom_bypass": "Virityksen ohittaminen",
|
||||
"pending": "Odottaa",
|
||||
"arming": "Viritys",
|
||||
"disarming": "Virityksen poisto",
|
||||
"triggered": "Lauennut"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Pois",
|
||||
"on": "P\u00e4\u00e4ll\u00e4"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Pois p\u00e4\u00e4lt\u00e4",
|
||||
"on": "P\u00e4\u00e4ll\u00e4"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Tallentaa",
|
||||
"streaming": "Toistaa",
|
||||
"idle": "Lepotilassa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Pois",
|
||||
"heat": "L\u00e4mmitys",
|
||||
"cool": "J\u00e4\u00e4hdytys",
|
||||
"heat_cool": "L\u00e4mmitys/j\u00e4\u00e4hdytys",
|
||||
"auto": "Automaatilla",
|
||||
"dry": "Kuivaus",
|
||||
"fan_only": "Tuuletus"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "M\u00e4\u00e4rittele",
|
||||
"configured": "M\u00e4\u00e4ritetty"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Auki",
|
||||
"opening": "Avataan",
|
||||
"closed": "Suljettu",
|
||||
"closing": "Suljetaan",
|
||||
"stopped": "Pys\u00e4ytetty"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Kotona",
|
||||
"not_home": "Poissa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Pois",
|
||||
"on": "P\u00e4\u00e4ll\u00e4"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Pois",
|
||||
"on": "P\u00e4\u00e4ll\u00e4",
|
||||
"home": "Kotona",
|
||||
"not_home": "Poissa",
|
||||
"open": "Auki",
|
||||
"closed": "Suljettu",
|
||||
"locked": "Lukittu",
|
||||
"unlocked": "Avattu",
|
||||
"ok": "Ok",
|
||||
"problem": "Ongelma"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Pois",
|
||||
"on": "P\u00e4\u00e4ll\u00e4"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Pois",
|
||||
"on": "P\u00e4\u00e4ll\u00e4"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Lukittu",
|
||||
"unlocked": "Auki"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Pois",
|
||||
"on": "P\u00e4\u00e4ll\u00e4",
|
||||
"playing": "Toistaa",
|
||||
"paused": "Pys\u00e4ytetty",
|
||||
"idle": "Lepotilassa",
|
||||
"standby": "Lepotilassa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Koti",
|
||||
"not_home": "Poissa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "Ok",
|
||||
"problem": "Ongelma"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Pois",
|
||||
"on": "P\u00e4\u00e4ll\u00e4"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Pois",
|
||||
"on": "P\u00e4\u00e4ll\u00e4"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Horisontin yll\u00e4",
|
||||
"below_horizon": "Horisontin alapuolella"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Pois",
|
||||
"on": "P\u00e4\u00e4ll\u00e4"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Imuroi",
|
||||
"docked": "Telakoituna",
|
||||
"error": "Virhe",
|
||||
"idle": "Lepotilassa",
|
||||
"off": "Pois p\u00e4\u00e4lt\u00e4",
|
||||
"on": "P\u00e4\u00e4ll\u00e4",
|
||||
"paused": "Pys\u00e4ytetty",
|
||||
"returning": "Palaamassa telakkaan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "aktiivinen",
|
||||
"idle": "Lepotilassa",
|
||||
"paused": "Pys\u00e4ytetty"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Y\u00f6, selke\u00e4\u00e4",
|
||||
"cloudy": "Pilvist\u00e4",
|
||||
"exceptional": "Poikkeuksellinen",
|
||||
"fog": "Sumuista",
|
||||
"hail": "Raekuuroja",
|
||||
"lightning": "Ukkoskuuroja",
|
||||
"lightning-rainy": "Ukkosvaara, sateista",
|
||||
"partlycloudy": "Osittain pilvist\u00e4",
|
||||
"pouring": "Kaatosadetta",
|
||||
"rainy": "Sateista",
|
||||
"snowy": "Lumisadetta",
|
||||
"snowy-rainy": "R\u00e4nt\u00e4sadetta",
|
||||
"sunny": "Aurinkoista",
|
||||
"windy": "Tuulista",
|
||||
"windy-variant": "Tuulista"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Alustaa",
|
||||
"dead": "Kuollut",
|
||||
"sleeping": "Lepotilassa",
|
||||
"ready": "Valmis"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Alustaa ( {query_stage} )",
|
||||
"dead": "Kuollut ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Inactif",
|
||||
"on": "Actif"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Initialisation",
|
||||
"dead": "Morte",
|
||||
"sleeping": "En veille",
|
||||
"ready": "Pr\u00eat"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Initialisation ( {query_stage} )",
|
||||
"dead": "Morte ( {query_stage} )"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "journ\u00e9e",
|
||||
"night": "Nuit"
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u00c9teinte",
|
||||
"on": "Actif"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Inactif",
|
||||
"on": "On"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Inactif",
|
||||
"on": "Actif"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normal",
|
||||
"on": "Faible"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normale",
|
||||
"on": "Froid"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "D\u00e9connect\u00e9",
|
||||
"on": "Connect\u00e9"
|
||||
},
|
||||
"door": {
|
||||
"off": "Ferm\u00e9e",
|
||||
"on": "Ouverte"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Ferm\u00e9e",
|
||||
"on": "Ouverte"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Non d\u00e9tect\u00e9",
|
||||
"on": "D\u00e9tect\u00e9"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normale",
|
||||
"on": "Chaud"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Verrouill\u00e9",
|
||||
"on": "D\u00e9verrouill\u00e9"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Sec",
|
||||
"on": "Humide"
|
||||
},
|
||||
"motion": {
|
||||
"off": "RAS",
|
||||
"on": "D\u00e9tect\u00e9"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "RAS",
|
||||
"on": "D\u00e9tect\u00e9"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Ferm\u00e9",
|
||||
"on": "Ouvert"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Absent",
|
||||
"on": "Pr\u00e9sent"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Probl\u00e8me"
|
||||
},
|
||||
"safety": {
|
||||
"off": "S\u00e9curis\u00e9",
|
||||
"on": "Dangereux"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "RAS",
|
||||
"on": "D\u00e9tect\u00e9"
|
||||
},
|
||||
"sound": {
|
||||
"off": "RAS",
|
||||
"on": "D\u00e9tect\u00e9"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "RAS",
|
||||
"on": "D\u00e9tect\u00e9e"
|
||||
},
|
||||
"window": {
|
||||
"off": "Ferm\u00e9e",
|
||||
"on": "Ouverte"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Verrouill\u00e9",
|
||||
"unlocked": "D\u00e9verrouill\u00e9"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Ouvert",
|
||||
"opening": "Ouverture",
|
||||
"closed": "Ferm\u00e9",
|
||||
"closing": "Fermeture",
|
||||
"stopped": "Arr\u00eat\u00e9"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Activ\u00e9",
|
||||
"disarmed": "D\u00e9sactiv\u00e9e",
|
||||
"armed_home": "Enclench\u00e9e (pr\u00e9sent)",
|
||||
"armed_away": "Enclench\u00e9e (absent)",
|
||||
"armed_night": "Enclench\u00e9 (nuit)",
|
||||
"armed_custom_bypass": "Activ\u00e9e avec exception",
|
||||
"pending": "En attente",
|
||||
"arming": "Activation",
|
||||
"disarming": "D\u00e9sactivation",
|
||||
"triggered": "D\u00e9clench\u00e9"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u00c9teint",
|
||||
"on": "Marche",
|
||||
"playing": "Lecture en cours",
|
||||
"paused": "En pause",
|
||||
"idle": "En veille",
|
||||
"standby": "En veille"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Pr\u00e9sent",
|
||||
"not_home": "Absent"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Nettoyage",
|
||||
"docked": "Sur la base",
|
||||
"error": "Erreur",
|
||||
"idle": "Inactif",
|
||||
"off": "Off",
|
||||
"on": "On",
|
||||
"paused": "En pause",
|
||||
"returning": "Retourne \u00e0 la base"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u00c9teint",
|
||||
"on": "Marche"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Inactif",
|
||||
"heat": "Chauffe",
|
||||
"cool": "Frais",
|
||||
"heat_cool": "Chaud/Froid",
|
||||
"auto": "Auto",
|
||||
"dry": "Sec",
|
||||
"fan_only": "Ventilateur seul"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Inactif",
|
||||
"on": "Actif"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Inactif",
|
||||
"on": "Actif"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Enregistrement",
|
||||
"streaming": "Diffusion en cours",
|
||||
"idle": "En veille"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Configurer",
|
||||
"configured": "Configur\u00e9"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Inactif",
|
||||
"on": "Actif",
|
||||
"home": "Pr\u00e9sent",
|
||||
"not_home": "Absent",
|
||||
"open": "Ouvert",
|
||||
"closed": "Ferm\u00e9",
|
||||
"locked": "Verrouill\u00e9",
|
||||
"unlocked": "D\u00e9verrouill\u00e9",
|
||||
"ok": "OK",
|
||||
"problem": "Probl\u00e8me"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Arr\u00eat\u00e9",
|
||||
"on": "Marche"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Pr\u00e9sent",
|
||||
"not_home": "Absent"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "OK",
|
||||
"problem": "Probl\u00e8me"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Arr\u00eat",
|
||||
"on": "Actif"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Inactif",
|
||||
"on": "Actif"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Au-dessus de l'horizon",
|
||||
"below_horizon": "Sous l\u2019horizon"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "actif",
|
||||
"idle": "en veille",
|
||||
"paused": "en pause"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Nuit d\u00e9gag\u00e9e",
|
||||
"cloudy": "Nuageux",
|
||||
"exceptional": "Exceptionnel",
|
||||
"fog": "Brouillard",
|
||||
"hail": "Gr\u00eale",
|
||||
"lightning": "Orage",
|
||||
"lightning-rainy": "Orage / Pluie",
|
||||
"partlycloudy": "Partiellement nuageux",
|
||||
"pouring": "Averses",
|
||||
"rainy": "Pluie",
|
||||
"snowy": "Neige",
|
||||
"snowy-rainy": "Neige / Pluie",
|
||||
"sunny": "Soleil",
|
||||
"windy": "Vent",
|
||||
"windy-variant": "Vent"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{}
|
||||
@@ -0,0 +1 @@
|
||||
{}
|
||||
@@ -0,0 +1,299 @@
|
||||
{
|
||||
"component": {
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Us",
|
||||
"on": "Ah"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normau",
|
||||
"on": "Nidrig"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Trennt",
|
||||
"on": "Verbunge"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Frei",
|
||||
"on": "Erk\u00e4nnt"
|
||||
},
|
||||
"heat": {
|
||||
"on": "Heiss"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Troch\u00e4",
|
||||
"on": "Nass"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Ok",
|
||||
"on": "Erch\u00e4nt"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Ok",
|
||||
"on": "Erch\u00e4nt"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Gschlos\u00e4",
|
||||
"on": "Off\u00e4"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Nid Dahei",
|
||||
"on": "Dahei"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Problem"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Sicher",
|
||||
"on": "Unsicher"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Ok",
|
||||
"on": "Erch\u00e4nt"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Ok",
|
||||
"on": "Erch\u00e4nt"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Ok",
|
||||
"on": "Erch\u00e4nt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Us",
|
||||
"on": "Ah"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Us",
|
||||
"on": "Ah"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Nimt uf",
|
||||
"streaming": "Streamt",
|
||||
"idle": "L\u00e4\u00e4rlauf"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Us",
|
||||
"heat": "Heiz\u00e4",
|
||||
"cool": "Ch\u00fc\u00e4l\u00e4",
|
||||
"auto": "Automatik",
|
||||
"dry": "Troch\u00e4",
|
||||
"fan_only": "Nur L\u00fcfter"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Konfiguri\u00e4r\u00e4",
|
||||
"configured": "Konfiguri\u00e4rt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Off\u00e4",
|
||||
"opening": "Am \u00f6ffn\u00e4",
|
||||
"closed": "Gschloss\u00e4",
|
||||
"closing": "Am schliesse",
|
||||
"stopped": "Gstoppt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Us",
|
||||
"on": "Ah",
|
||||
"home": "Dahei",
|
||||
"not_home": "Nid Dahei",
|
||||
"open": "Off\u00e4",
|
||||
"closed": "Gschloss\u00e4",
|
||||
"locked": "Gsperrt",
|
||||
"unlocked": "Entsperrt",
|
||||
"ok": "Ok",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Us",
|
||||
"on": "Ah"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Gsperrt",
|
||||
"unlocked": "Entsperrt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "OK",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Us",
|
||||
"on": "Ah"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Us",
|
||||
"on": "Ah"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Us",
|
||||
"on": "Ah"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "\u00dcberem Horizont",
|
||||
"below_horizon": "Underem Horizont"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Us",
|
||||
"on": "Ah"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Putze",
|
||||
"error": "F\u00e4hler",
|
||||
"off": "Us",
|
||||
"on": "I",
|
||||
"paused": "Pause"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Scharf",
|
||||
"disarmed": "Nid scharf",
|
||||
"armed_home": "Scharf dihei",
|
||||
"armed_away": "Scharf usswerts",
|
||||
"armed_night": "Scharf Nacht",
|
||||
"pending": "Usstehehnd",
|
||||
"arming": "Scharf stel\u00e4",
|
||||
"disarming": "Entsperr\u00e4",
|
||||
"triggered": "Usgl\u00f6sst"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Dahei",
|
||||
"not_home": "Nid Dahei"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Us",
|
||||
"on": "Ah"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Us",
|
||||
"on": "Ah"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Us",
|
||||
"on": "Ah",
|
||||
"playing": "Am spil\u00e4",
|
||||
"paused": "Pousi\u00e4r\u00e4",
|
||||
"idle": "L\u00e4\u00e4rlauf",
|
||||
"standby": "Standby"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Klar, Nacht",
|
||||
"cloudy": "Bedeckt",
|
||||
"fog": "N\u00e4bu",
|
||||
"hail": "H\u00e4gu",
|
||||
"lightning": "Blitz\u00e4",
|
||||
"lightning-rainy": "Blitz\u00e4, R\u00e4ge",
|
||||
"partlycloudy": "Teilwis bedeckt",
|
||||
"pouring": "Sch\u00fctte",
|
||||
"rainy": "R\u00e4gn\u00e4risch",
|
||||
"snowy": "Schneie",
|
||||
"snowy-rainy": "Schneie, r\u00e4gnerisch",
|
||||
"sunny": "sunnig",
|
||||
"windy": "windig",
|
||||
"windy-variant": "windig"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Inizialisi\u00e4r\u00e4",
|
||||
"dead": "Tod",
|
||||
"sleeping": "Schlaf\u00e4",
|
||||
"ready": "Parat"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Inizialisi\u00e4r\u00e4 ( {query_stage} )",
|
||||
"dead": "Tod ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u05db\u05d1\u05d5\u05d9",
|
||||
"on": "\u05d3\u05dc\u05d5\u05e7"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "\u05d9\u05d5\u05dd",
|
||||
"night": "\u05dc\u05d9\u05dc\u05d4"
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u05db\u05d1\u05d5\u05d9",
|
||||
"on": "\u05d3\u05dc\u05d5\u05e7"
|
||||
},
|
||||
"battery": {
|
||||
"off": "\u05e0\u05d5\u05e8\u05de\u05dc\u05d9",
|
||||
"on": "\u05e0\u05de\u05d5\u05da"
|
||||
},
|
||||
"cold": {
|
||||
"off": "\u05e8\u05d2\u05d9\u05dc",
|
||||
"on": "\u05e7\u05b7\u05e8"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "\u05de\u05e0\u05d5\u05ea\u05e7",
|
||||
"on": "\u05de\u05d7\u05d5\u05d1\u05e8"
|
||||
},
|
||||
"door": {
|
||||
"off": "\u05e1\u05d2\u05d5\u05e8\u05d4",
|
||||
"on": "\u05e4\u05ea\u05d5\u05d7\u05d4"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "\u05e1\u05d2\u05d5\u05e8\u05d4",
|
||||
"on": "\u05e4\u05ea\u05d5\u05d7\u05d4"
|
||||
},
|
||||
"gas": {
|
||||
"off": "\u05e0\u05e7\u05d9",
|
||||
"on": "\u05d0\u05d5\u05ea\u05e8"
|
||||
},
|
||||
"heat": {
|
||||
"off": "\u05e8\u05d2\u05d9\u05dc",
|
||||
"on": "\u05d7\u05dd"
|
||||
},
|
||||
"lock": {
|
||||
"off": "\u05e0\u05e2\u05d5\u05dc",
|
||||
"on": "\u05dc\u05d0 \u05e0\u05e2\u05d5\u05dc"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "\u05d9\u05d1\u05e9",
|
||||
"on": "\u05e8\u05d8\u05d5\u05d1"
|
||||
},
|
||||
"motion": {
|
||||
"off": "\u05e0\u05e7\u05d9",
|
||||
"on": "\u05d6\u05d5\u05d4\u05d4"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "\u05e0\u05e7\u05d9",
|
||||
"on": "\u05d6\u05d5\u05d4\u05d4"
|
||||
},
|
||||
"opening": {
|
||||
"off": "\u05e1\u05d2\u05d5\u05e8",
|
||||
"on": "\u05e4\u05ea\u05d5\u05d7"
|
||||
},
|
||||
"presence": {
|
||||
"off": "\u05dc\u05d0 \u05e0\u05d5\u05db\u05d7",
|
||||
"on": "\u05e0\u05d5\u05db\u05d7"
|
||||
},
|
||||
"problem": {
|
||||
"off": "\u05d0\u05d5\u05e7\u05d9\u05d9",
|
||||
"on": "\u05d1\u05e2\u05d9\u05d9\u05d4"
|
||||
},
|
||||
"safety": {
|
||||
"off": "\u05d1\u05d8\u05d5\u05d7",
|
||||
"on": "\u05dc\u05d0 \u05d1\u05d8\u05d5\u05d7"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "\u05e0\u05e7\u05d9",
|
||||
"on": "\u05d0\u05d5\u05ea\u05e8"
|
||||
},
|
||||
"sound": {
|
||||
"off": "\u05e0\u05e7\u05d9",
|
||||
"on": "\u05d0\u05d5\u05ea\u05e8"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "\u05e0\u05e7\u05d9",
|
||||
"on": "\u05d0\u05d5\u05ea\u05e8"
|
||||
},
|
||||
"window": {
|
||||
"off": "\u05e1\u05d2\u05d5\u05e8",
|
||||
"on": "\u05e4\u05ea\u05d5\u05d7"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "\u05d3\u05e8\u05d5\u05da",
|
||||
"disarmed": "\u05de\u05e0\u05d5\u05d8\u05e8\u05dc",
|
||||
"armed_home": "\u05d4\u05d1\u05d9\u05ea \u05d3\u05e8\u05d5\u05da",
|
||||
"armed_away": "\u05d3\u05e8\u05d5\u05da \u05dc\u05d0 \u05d1\u05d1\u05d9\u05ea",
|
||||
"armed_night": "\u05d3\u05e8\u05d5\u05da \u05dc\u05d9\u05dc\u05d4",
|
||||
"armed_custom_bypass": "\u05de\u05e2\u05e7\u05e3 \u05de\u05d5\u05ea\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea \u05d3\u05e8\u05d5\u05da",
|
||||
"pending": "\u05de\u05de\u05ea\u05d9\u05df",
|
||||
"arming": "\u05de\u05e4\u05e2\u05d9\u05dc",
|
||||
"disarming": "\u05de\u05e0\u05d8\u05e8\u05dc",
|
||||
"triggered": "\u05d4\u05d5\u05e4\u05e2\u05dc"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u05db\u05d1\u05d5\u05d9",
|
||||
"on": "\u05d3\u05dc\u05d5\u05e7"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u05db\u05d1\u05d5\u05d9",
|
||||
"on": "\u05d3\u05dc\u05d5\u05e7"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "\u05de\u05e7\u05dc\u05d9\u05d8",
|
||||
"streaming": "\u05de\u05d6\u05e8\u05d9\u05dd",
|
||||
"idle": "\u05de\u05d7\u05db\u05d4"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u05db\u05d1\u05d5\u05d9",
|
||||
"heat": "\u05d7\u05d9\u05de\u05d5\u05dd",
|
||||
"cool": "\u05e7\u05e8\u05d5\u05e8",
|
||||
"heat_cool": "\u05d7\u05d9\u05de\u05d5\u05dd/\u05e7\u05d9\u05e8\u05d5\u05e8",
|
||||
"auto": "\u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9",
|
||||
"dry": "\u05d9\u05d1\u05e9",
|
||||
"fan_only": "\u05de\u05d0\u05d5\u05d5\u05e8\u05e8 \u05d1\u05dc\u05d1\u05d3"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "\u05d4\u05d2\u05d3\u05e8",
|
||||
"configured": "\u05d4\u05d5\u05d2\u05d3\u05e8"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "\u05e4\u05ea\u05d5\u05d7",
|
||||
"opening": "\u05e4\u05d5\u05ea\u05d7",
|
||||
"closed": "\u05e0\u05e1\u05d2\u05e8",
|
||||
"closing": "\u05e1\u05d5\u05d2\u05e8",
|
||||
"stopped": "\u05e2\u05e6\u05d5\u05e8"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u05d1\u05d1\u05d9\u05ea",
|
||||
"not_home": "\u05dc\u05d0 \u05d1\u05d1\u05d9\u05ea"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u05db\u05d1\u05d5\u05d9",
|
||||
"on": "\u05d3\u05dc\u05d5\u05e7"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u05db\u05d1\u05d5\u05d9",
|
||||
"on": "\u05d3\u05dc\u05d5\u05e7",
|
||||
"home": "\u05d1\u05d1\u05d9\u05ea",
|
||||
"not_home": "\u05dc\u05d0 \u05d1\u05d1\u05d9\u05ea",
|
||||
"open": "\u05e4\u05ea\u05d5\u05d7",
|
||||
"closed": "\u05e1\u05d2\u05d5\u05e8",
|
||||
"locked": "\u05e0\u05e2\u05d5\u05dc",
|
||||
"unlocked": "\u05e4\u05ea\u05d5\u05d7",
|
||||
"ok": "\u05ea\u05e7\u05d9\u05df",
|
||||
"problem": "\u05d1\u05e2\u05d9\u05d4"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u05db\u05d1\u05d5\u05d9",
|
||||
"on": "\u05d3\u05dc\u05d5\u05e7"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u05db\u05d1\u05d5\u05d9",
|
||||
"on": "\u05d3\u05dc\u05d5\u05e7"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "\u05e0\u05e2\u05d5\u05dc",
|
||||
"unlocked": "\u05e4\u05ea\u05d5\u05d7"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u05db\u05d1\u05d5\u05d9",
|
||||
"on": "\u05d3\u05dc\u05d5\u05e7",
|
||||
"playing": "\u05de\u05e0\u05d2\u05df",
|
||||
"paused": "\u05de\u05d5\u05e9\u05d4\u05d4",
|
||||
"idle": "\u05de\u05de\u05ea\u05d9\u05df",
|
||||
"standby": "\u05de\u05e6\u05d1 \u05d4\u05de\u05ea\u05e0\u05d4"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u05d1\u05d1\u05d9\u05ea",
|
||||
"not_home": "\u05dc\u05d0 \u05e0\u05de\u05e6\u05d0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "\u05ea\u05e7\u05d9\u05df",
|
||||
"problem": "\u05d1\u05e2\u05d9\u05d4"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u05db\u05d1\u05d5\u05d9",
|
||||
"on": "\u05d3\u05dc\u05d5\u05e7"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u05db\u05d1\u05d5\u05d9",
|
||||
"on": "\u05d3\u05dc\u05d5\u05e7"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "\u05de\u05e2\u05dc \u05d4\u05d0\u05d5\u05e4\u05e7",
|
||||
"below_horizon": "\u05de\u05ea\u05d7\u05ea \u05dc\u05d0\u05d5\u05e4\u05e7"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u05db\u05d1\u05d5\u05d9",
|
||||
"on": "\u05d3\u05dc\u05d5\u05e7"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "\u05de\u05e0\u05e7\u05d4",
|
||||
"docked": "\u05d1\u05e2\u05d2\u05d9\u05e0\u05d4",
|
||||
"error": "\u05e9\u05d2\u05d9\u05d0\u05d4",
|
||||
"idle": "\u05de\u05de\u05ea\u05d9\u05df",
|
||||
"off": "\u05de\u05db\u05d5\u05d1\u05d4",
|
||||
"on": "\u05de\u05d5\u05e4\u05e2\u05dc",
|
||||
"paused": "\u05de\u05d5\u05e9\u05d4\u05d4",
|
||||
"returning": "\u05d7\u05d6\u05d5\u05e8 \u05dc\u05e2\u05d2\u05d9\u05e0\u05d4"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "\u05e4\u05e2\u05d9\u05dc",
|
||||
"idle": "\u05dc\u05d0 \u05e4\u05e2\u05d9\u05dc",
|
||||
"paused": "\u05de\u05d5\u05e9\u05d4\u05d4"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "\u05dc\u05d9\u05dc\u05d4 \u05d1\u05d4\u05d9\u05e8",
|
||||
"cloudy": "\u05de\u05e2\u05d5\u05e0\u05df",
|
||||
"exceptional": "\u05d9\u05d5\u05e6\u05d0 \u05d3\u05d5\u05e4\u05df",
|
||||
"fog": "\u05e2\u05e8\u05e4\u05dc",
|
||||
"hail": "\u05d1\u05e8\u05d3",
|
||||
"lightning": "\u05d1\u05e8\u05e7",
|
||||
"lightning-rainy": "\u05d1\u05e8\u05e7, \u05d2\u05e9\u05d5\u05dd",
|
||||
"partlycloudy": "\u05de\u05e2\u05d5\u05e0\u05df \u05d7\u05dc\u05e7\u05d9\u05ea",
|
||||
"pouring": "\u05d2\u05e9\u05d5\u05dd",
|
||||
"rainy": "\u05d2\u05e9\u05d5\u05dd",
|
||||
"snowy": "\u05de\u05d5\u05e9\u05dc\u05d2",
|
||||
"snowy-rainy": "\u05de\u05d5\u05e9\u05dc\u05d2, \u05d2\u05e9\u05d5\u05dd",
|
||||
"sunny": "\u05e9\u05de\u05e9\u05d9",
|
||||
"windy": "\u05e1\u05d5\u05e2\u05e8",
|
||||
"windy-variant": "\u05e1\u05d5\u05e2\u05e8"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "\u05de\u05d0\u05ea\u05d7\u05dc",
|
||||
"dead": "\u05de\u05ea",
|
||||
"sleeping": "\u05d9\u05e9\u05df",
|
||||
"ready": "\u05de\u05d5\u05db\u05df"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "\u05de\u05d0\u05ea\u05d7\u05dc ({query_stage})",
|
||||
"dead": "\u05de\u05ea ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,196 @@
|
||||
{
|
||||
"component": {
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u092c\u0902\u0926"
|
||||
},
|
||||
"battery": {
|
||||
"off": "\u0938\u093e\u0927\u093e\u0930\u0923",
|
||||
"on": "\u0915\u092e"
|
||||
},
|
||||
"cold": {
|
||||
"off": "\u0938\u093e\u0927\u093e\u0930\u0923",
|
||||
"on": "\u0938\u0930\u094d\u0926\u0940"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "\u0921\u093f\u0938\u094d\u0915\u0928\u0947\u0915\u094d\u091f \u0915\u093f\u092f\u093e \u0917\u092f\u093e",
|
||||
"on": "\u091c\u0941\u0921\u093c\u0947 \u0939\u0941\u090f"
|
||||
},
|
||||
"door": {
|
||||
"off": "\u092c\u0902\u0926",
|
||||
"on": "\u0916\u0941\u0932\u093e"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "\u092c\u0902\u0926",
|
||||
"on": "\u0916\u0941\u0932\u093e"
|
||||
},
|
||||
"heat": {
|
||||
"on": "\u0917\u0930\u094d\u092e"
|
||||
},
|
||||
"motion": {
|
||||
"off": "\u0935\u093f\u0936\u0926",
|
||||
"on": "\u0905\u0928\u0941\u0938\u0928\u094d\u0927\u093e\u0928\u093f\u0924"
|
||||
},
|
||||
"opening": {
|
||||
"on": "\u0916\u0941\u0932\u093e"
|
||||
},
|
||||
"presence": {
|
||||
"on": "\u0918\u0930"
|
||||
},
|
||||
"window": {
|
||||
"off": "\u092c\u0902\u0926",
|
||||
"on": "\u0916\u0941\u0932\u0940"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u092c\u0902\u0926"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u092c\u0902\u0926",
|
||||
"heat": "\u0917\u0930\u094d\u092e\u0940",
|
||||
"cool": "\u0920\u0902\u0921\u093e",
|
||||
"dry": "\u0938\u0942\u0916\u093e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u0918\u0930"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u092c\u0902\u0926",
|
||||
"on": "\u091a\u093e\u0932\u0942"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u092c\u0902\u0926",
|
||||
"on": "\u091a\u093e\u0932\u0942",
|
||||
"home": "\u0918\u0930",
|
||||
"problem": "\u0938\u092e\u0938\u094d\u092f\u093e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u092c\u0902\u0926",
|
||||
"on": "\u091a\u093e\u0932\u0942"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u092c\u0902\u0926",
|
||||
"on": "\u091a\u093e\u0932\u0942"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "\u0905\u0935\u0930\u094b\u0927\u093f\u0924",
|
||||
"unlocked": "\u0916\u0941\u0932\u093e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u092c\u0902\u0926",
|
||||
"on": "\u091a\u093e\u0932\u0942"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u092c\u0902\u0926",
|
||||
"on": "\u091a\u093e\u0932\u0942"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u092c\u0902\u0926",
|
||||
"on": "\u091a\u093e\u0932\u0942"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u092c\u0902\u0926",
|
||||
"on": "\u091a\u093e\u0932\u0942"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "\u0915\u094d\u0937\u093f\u0924\u093f\u091c \u0938\u0947 \u090a\u092a\u0930",
|
||||
"below_horizon": "\u0915\u094d\u0937\u093f\u0924\u093f\u091c \u0915\u0947 \u0928\u0940\u091a\u0947"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u092c\u0902\u0926",
|
||||
"on": "\u091a\u093e\u0932\u0942"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u092c\u0902\u0926"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "\u0930\u093f\u0915\u0949\u0930\u094d\u0921\u093f\u0902\u0917"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "\u0920\u0940\u0915 \u0939\u0948",
|
||||
"problem": "\u0938\u092e\u0938\u094d\u092f\u093e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"sleeping": "\u0938\u094b\u092f\u093e \u0939\u0941\u0906",
|
||||
"ready": "\u0924\u0948\u092f\u093e\u0930"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "\u0906\u0930\u0902\u092d ({query_stage})",
|
||||
"dead": " ( {query_stage} )"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,343 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normalno",
|
||||
"on": "Prazna"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normalno",
|
||||
"on": "Hladno"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Nije spojen",
|
||||
"on": "Spojen"
|
||||
},
|
||||
"door": {
|
||||
"off": "Zatvoreno",
|
||||
"on": "Otvori"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Zatvoren",
|
||||
"on": "Otvoreno"
|
||||
},
|
||||
"gas": {
|
||||
"off": "\u010cisto",
|
||||
"on": "Otkriveno"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normalno",
|
||||
"on": "Vru\u0107e"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Zaklju\u010dano",
|
||||
"on": "Otklju\u010dano"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Suho",
|
||||
"on": "Mokro"
|
||||
},
|
||||
"motion": {
|
||||
"off": "\u010cisto",
|
||||
"on": "Otkriveno"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "\u010cisto",
|
||||
"on": "Otkriveno"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Zatvoreno",
|
||||
"on": "Otvoreno"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Odsutan",
|
||||
"on": "Doma"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Problem"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Sigurno",
|
||||
"on": "Nesigurno"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "\u010cisto",
|
||||
"on": "Otkriveno"
|
||||
},
|
||||
"sound": {
|
||||
"off": "\u010cisto",
|
||||
"on": "Otkriveno"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "\u010cisto",
|
||||
"on": "Otkriveno"
|
||||
},
|
||||
"window": {
|
||||
"off": "Zatvoreno",
|
||||
"on": "Otvoreno"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Aktiviran",
|
||||
"disarmed": "Deaktiviran",
|
||||
"armed_home": "Aktiviran doma",
|
||||
"armed_away": "Aktiviran odsutno",
|
||||
"armed_night": "Aktiviran no\u010dni",
|
||||
"armed_custom_bypass": "Aktiviran",
|
||||
"pending": "U tijeku",
|
||||
"arming": "Aktiviranje",
|
||||
"disarming": "Deaktiviranje",
|
||||
"triggered": "Okinut"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Snimanje",
|
||||
"streaming": "Oda\u0161ilja",
|
||||
"idle": "Neaktivan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"heat": "Grijanje",
|
||||
"cool": "Hla\u0111enje",
|
||||
"heat_cool": "Grijanje/Hla\u0111enje",
|
||||
"auto": "Auto",
|
||||
"dry": "Suho",
|
||||
"fan_only": "Samo ventilator"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Konfiguriranje",
|
||||
"configured": "Konfiguriran"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Otvoreno",
|
||||
"opening": "Otvaranje",
|
||||
"closed": "Zatvoreno",
|
||||
"closing": "Zatvaranje",
|
||||
"stopped": "zaustavljen"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Doma",
|
||||
"not_home": "Odsutan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Uklju\u010deno",
|
||||
"on": "Uklju\u010deno",
|
||||
"home": "Doma",
|
||||
"not_home": "Odsutan",
|
||||
"open": "Otvoreno",
|
||||
"closed": "Zatvoreno",
|
||||
"locked": "Zaklju\u010dano",
|
||||
"unlocked": "Otklju\u010dano",
|
||||
"ok": "U redu",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010deno",
|
||||
"on": "Uklju\u010deno"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Zaklju\u010dan",
|
||||
"unlocked": "Otklju\u010dan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den",
|
||||
"playing": "Prikazivanje",
|
||||
"paused": "Pauzirano",
|
||||
"idle": "Neaktivan",
|
||||
"standby": "U stanju \u010dekanja"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Doma",
|
||||
"not_home": "Odsutan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "u redu",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Iznad horizonta",
|
||||
"below_horizon": "Ispod horizonta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "\u010ci\u0161\u0107enje",
|
||||
"docked": "Usidreni",
|
||||
"error": "Gre\u0161ka",
|
||||
"idle": "Neaktivan",
|
||||
"off": "Uga\u0161eno",
|
||||
"on": "Upaljeno",
|
||||
"paused": "Pauzirano",
|
||||
"returning": "Povratak na dok"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "aktivan",
|
||||
"idle": "neaktivan",
|
||||
"paused": "pauzirano"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Vedro, no\u0107",
|
||||
"cloudy": "Obla\u010dno",
|
||||
"exceptional": "Izuzetan",
|
||||
"fog": "Magla",
|
||||
"hail": "Tu\u010da",
|
||||
"lightning": "Munja",
|
||||
"lightning-rainy": "Munja, ki\u0161na",
|
||||
"partlycloudy": "Djelomi\u010dno obla\u010dno",
|
||||
"pouring": "Lije",
|
||||
"rainy": "Ki\u0161ovito",
|
||||
"snowy": "Snje\u017eno",
|
||||
"snowy-rainy": "Snje\u017eno, ki\u0161no",
|
||||
"sunny": "Sun\u010dano",
|
||||
"windy": "Vjetrovito",
|
||||
"windy-variant": "Vjetrovito"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Inicijalizacija",
|
||||
"dead": "Mrtav",
|
||||
"sleeping": "Spavanje",
|
||||
"ready": "Spreman"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Inicijalizacija ( {query_stage} )",
|
||||
"dead": "Mrtav ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Ki",
|
||||
"on": "Be"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Inicializ\u00e1l\u00e1s",
|
||||
"dead": "Halott",
|
||||
"sleeping": "Alv\u00e1s",
|
||||
"ready": "K\u00e9sz"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Inicializ\u00e1l\u00e1s",
|
||||
"dead": "Halott"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "Nappal",
|
||||
"night": "\u00c9jszaka"
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Ki",
|
||||
"on": "Be"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Ki",
|
||||
"on": "Be"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Ki",
|
||||
"on": "Be"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Norm\u00e1l",
|
||||
"on": "Alacsony"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Norm\u00e1l",
|
||||
"on": "Hideg"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Lekapcsol\u00f3dva",
|
||||
"on": "Kapcsol\u00f3dva"
|
||||
},
|
||||
"door": {
|
||||
"off": "Z\u00e1rva",
|
||||
"on": "Nyitva"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Z\u00e1rva",
|
||||
"on": "Nyitva"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Norm\u00e1l",
|
||||
"on": "\u00c9szlelve"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Norm\u00e1l",
|
||||
"on": "Meleg"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Bez\u00e1rva",
|
||||
"on": "Kinyitva"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Sz\u00e1raz",
|
||||
"on": "Nedves"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Norm\u00e1l",
|
||||
"on": "\u00c9szlelve"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Norm\u00e1l",
|
||||
"on": "\u00c9szlelve"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Z\u00e1rva",
|
||||
"on": "Nyitva"
|
||||
},
|
||||
"presence": {
|
||||
"off": "T\u00e1vol",
|
||||
"on": "Otthon"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Probl\u00e9ma"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Biztons\u00e1gos",
|
||||
"on": "Nem biztons\u00e1gos"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Norm\u00e1l",
|
||||
"on": "\u00c9szlelve"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Norm\u00e1l",
|
||||
"on": "\u00c9szlelve"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Norm\u00e1l",
|
||||
"on": "\u00c9szlelve"
|
||||
},
|
||||
"window": {
|
||||
"off": "Z\u00e1rva",
|
||||
"on": "Nyitva"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Bez\u00e1rva",
|
||||
"unlocked": "Kinyitva"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Nyitva",
|
||||
"opening": "Nyit\u00e1s",
|
||||
"closed": "Z\u00e1rva",
|
||||
"closing": "Z\u00e1r\u00e1s",
|
||||
"stopped": "Meg\u00e1ll\u00edtva"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "\u00c9les\u00edtve",
|
||||
"disarmed": "Hat\u00e1stalan\u00edtva",
|
||||
"armed_home": "\u00c9les\u00edtve otthon",
|
||||
"armed_away": "\u00c9les\u00edtve t\u00e1vol",
|
||||
"armed_night": "\u00c9les\u00edtve \u00e9jszaka",
|
||||
"armed_custom_bypass": "\u00c9les\u00edtve \u00e1thidal\u00e1ssal",
|
||||
"pending": "F\u00fcgg\u0151ben",
|
||||
"arming": "\u00c9les\u00edt\u00e9s",
|
||||
"disarming": "Hat\u00e1stalan\u00edt\u00e1s",
|
||||
"triggered": "Riaszt\u00e1s"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Ki",
|
||||
"on": "Be",
|
||||
"playing": "Lej\u00e1tsz\u00e1s",
|
||||
"paused": "Sz\u00fcnetel",
|
||||
"idle": "T\u00e9tlen",
|
||||
"standby": "K\u00e9szenl\u00e9t"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Otthon",
|
||||
"not_home": "T\u00e1vol"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Takar\u00edt\u00e1s",
|
||||
"docked": "Dokkolva",
|
||||
"error": "Hiba",
|
||||
"idle": "T\u00e9tlen",
|
||||
"off": "Ki",
|
||||
"on": "Be",
|
||||
"paused": "Sz\u00fcnetel",
|
||||
"returning": "Dokkol\u00e1s folyamatban"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Ki",
|
||||
"on": "Be"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Ki",
|
||||
"heat": "F\u0171t\u00e9s",
|
||||
"cool": "H\u0171t\u00e9s",
|
||||
"heat_cool": "F\u0171t\u00e9s/H\u0171t\u00e9s",
|
||||
"auto": "Automatikus",
|
||||
"dry": "Sz\u00e1raz",
|
||||
"fan_only": "Csak ventil\u00e1tor"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Ki",
|
||||
"on": "Be"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Ki",
|
||||
"on": "Be"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Felv\u00e9tel",
|
||||
"streaming": "Streamel\u00e9s",
|
||||
"idle": "T\u00e9tlen"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Be\u00e1ll\u00edt\u00e1s",
|
||||
"configured": "Be\u00e1ll\u00edtva"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Ki",
|
||||
"on": "Be",
|
||||
"home": "Otthon",
|
||||
"not_home": "T\u00e1vol",
|
||||
"open": "Nyitva",
|
||||
"closed": "Z\u00e1rva",
|
||||
"locked": "Bez\u00e1rva",
|
||||
"unlocked": "Kinyitva",
|
||||
"ok": "OK",
|
||||
"problem": "Probl\u00e9ma"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Ki",
|
||||
"on": "Be"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Otthon",
|
||||
"not_home": "T\u00e1vol"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "OK",
|
||||
"problem": "Probl\u00e9ma"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Ki",
|
||||
"on": "Be"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Ki",
|
||||
"on": "Be"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "L\u00e1t\u00f3hat\u00e1r felett",
|
||||
"below_horizon": "L\u00e1t\u00f3hat\u00e1r alatt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "Akt\u00edv",
|
||||
"idle": "T\u00e9tlen",
|
||||
"paused": "Sz\u00fcnetel"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Tiszta, \u00e9jszaka",
|
||||
"cloudy": "Felh\u0151s",
|
||||
"exceptional": "Kiv\u00e9teles",
|
||||
"fog": "K\u00f6d",
|
||||
"hail": "J\u00e9ges\u0151",
|
||||
"lightning": "Vihar",
|
||||
"lightning-rainy": "Viharos, es\u0151s",
|
||||
"partlycloudy": "R\u00e9szben felh\u0151s",
|
||||
"pouring": "Szakad",
|
||||
"rainy": "Es\u0151s",
|
||||
"snowy": "Havaz\u00e1s",
|
||||
"snowy-rainy": "Havas, es\u0151s",
|
||||
"sunny": "Napos",
|
||||
"windy": "Szeles",
|
||||
"windy-variant": "Szeles"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,343 @@
|
||||
{
|
||||
"component": {
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0531\u0576\u057b\u0561\u057f\u057e\u0561\u056e",
|
||||
"on": "\u0544\u056b\u0561\u0581\u0561\u056e"
|
||||
},
|
||||
"battery": {
|
||||
"off": "\u0546\u0578\u0580\u0574\u0561\u056c \u0567",
|
||||
"on": "\u0551\u0561\u056e\u0580"
|
||||
},
|
||||
"cold": {
|
||||
"off": "\u0546\u0578\u0580\u0574\u0561\u056c",
|
||||
"on": "\u054d\u0561\u057c\u0568"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "\u0531\u0576\u057b\u0561\u057f\u057e\u0561\u056e \u0567",
|
||||
"on": "\u053f\u0561\u057a\u057e\u0561\u056e"
|
||||
},
|
||||
"door": {
|
||||
"off": "\u0553\u0561\u056f\u057e\u0561\u056e \u0567",
|
||||
"on": "\u0532\u0561\u0581\u0565\u056c"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "\u0553\u0561\u056f\u057e\u0561\u056e \u0567",
|
||||
"on": "\u0532\u0561\u0581\u0565\u056c"
|
||||
},
|
||||
"gas": {
|
||||
"off": "\u0544\u0561\u0584\u0580\u0565\u056c",
|
||||
"on": "\u0540\u0561\u0575\u057f\u0576\u0561\u0562\u0565\u0580\u057e\u0565\u056c \u0567"
|
||||
},
|
||||
"heat": {
|
||||
"off": "\u0546\u0578\u0580\u0574\u0561\u056c",
|
||||
"on": "\u0539\u0565\u056a"
|
||||
},
|
||||
"lock": {
|
||||
"off": "\u056f\u0578\u0572\u057a\u057e\u0561\u056e",
|
||||
"on": "\u0562\u0561\u0581\u0565\u056c \u0567"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "\u0549\u0578\u0580",
|
||||
"on": "\u053d\u0578\u0576\u0561\u057e"
|
||||
},
|
||||
"motion": {
|
||||
"off": "\u0544\u0561\u0584\u0580\u0565\u056c",
|
||||
"on": "\u0540\u0561\u0575\u057f\u0576\u0561\u0562\u0565\u0580\u057e\u0565\u056c \u0567"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "\u0544\u0561\u0584\u0580\u0565\u056c",
|
||||
"on": "\u0540\u0561\u0575\u057f\u0576\u0561\u0562\u0565\u0580\u057e\u0565\u056c \u0567"
|
||||
},
|
||||
"opening": {
|
||||
"off": "\u0553\u0561\u056f\u057e\u0561\u056e",
|
||||
"on": "\u0532\u0561\u0581"
|
||||
},
|
||||
"presence": {
|
||||
"off": "\u0540\u0565\u057c\u0578\u0582",
|
||||
"on": "\u054f\u0578\u0582\u0576"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "\u053d\u0576\u0564\u056b\u0580"
|
||||
},
|
||||
"safety": {
|
||||
"off": "\u0531\u057a\u0561\u0570\u0578\u057e",
|
||||
"on": "\u0531\u0576\u057e\u057f\u0561\u0576\u0563"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "\u0544\u0561\u0584\u0580\u0565\u056c",
|
||||
"on": "\u0540\u0561\u0575\u057f\u0576\u0561\u0562\u0565\u0580\u057e\u0565\u056c \u0567"
|
||||
},
|
||||
"sound": {
|
||||
"off": "\u0544\u0561\u0584\u0580\u0565\u056c",
|
||||
"on": "\u0540\u0561\u0575\u057f\u0576\u0561\u0562\u0565\u0580\u057e\u0565\u056c \u0567"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "\u0544\u0561\u0584\u0580\u0565\u056c",
|
||||
"on": "\u0540\u0561\u0575\u057f\u0576\u0561\u0562\u0565\u0580\u057e\u0565\u056c \u0567"
|
||||
},
|
||||
"window": {
|
||||
"off": "\u0553\u0561\u056f\u057e\u0561\u056e \u0567",
|
||||
"on": "\u0532\u0561\u0581\u0565\u056c"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "\u0536\u056b\u0576\u057e\u0561\u056e",
|
||||
"disarmed": "\u0536\u056b\u0576\u0561\u0569\u0561\u0583\u057e\u0561\u056e",
|
||||
"armed_home": "\u0536\u056b\u0576\u057e\u0561\u056e \u057f\u0578\u0582\u0576",
|
||||
"armed_away": "\u0536\u056b\u0576\u057e\u0561\u056e",
|
||||
"armed_night": "\u0536\u056b\u0576\u057e\u0561\u056e \u0563\u056b\u0577\u0565\u0580",
|
||||
"armed_custom_bypass": "\u0536\u056b\u0576\u0574\u0561\u0576 \u0561\u0576\u0570\u0561\u057f\u0561\u056f\u0561\u0576 \u056f\u0578\u0564",
|
||||
"pending": "\u054d\u057a\u0561\u057d\u0578\u0582\u0574",
|
||||
"arming": "\u0536\u056b\u0576\u0565\u056c",
|
||||
"disarming": "\u0536\u056b\u0576\u0561\u0569\u0561\u0583\u0578\u0572",
|
||||
"triggered": "\u057a\u0561\u057f\u0573\u0561\u057c\u0568"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0531\u0576\u057b\u0561\u057f\u057e\u0561\u056e",
|
||||
"on": "\u0544\u056b\u0561\u0581\u0561\u056e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0531\u0576\u057b\u0561\u057f\u057e\u0561\u056e",
|
||||
"on": "\u0544\u056b\u0561\u0581\u0561\u056e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "\u0541\u0561\u0575\u0576\u0561\u0563\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0568",
|
||||
"streaming": "\u0540\u0578\u057d\u0584",
|
||||
"idle": "\u057a\u0561\u0580\u0561\u057a"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0531\u0576\u057b\u0561\u057f\u057e\u0561\u056e",
|
||||
"heat": "\u054b\u0565\u0580\u0574\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
|
||||
"cool": "\u0540\u0578\u057e\u0561\u0581\u0578\u0582\u0574",
|
||||
"heat_cool": "\u054b\u0565\u057c\u0578\u0582\u0581\u0578\u0582\u0574/\u0540\u0578\u057e\u0561\u0581\u0578\u0582\u0574",
|
||||
"auto": "\u0531\u057e\u057f\u0578\u0574\u0561\u057f",
|
||||
"dry": "\u0549\u0578\u0580",
|
||||
"fan_only": "\u0555\u0564\u0561\u0583\u0578\u056d\u056b\u0579"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "\u053f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0565\u056c",
|
||||
"configured": "\u053f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u057e\u0561\u056e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "\u0532\u0561\u0581",
|
||||
"opening": "\u0532\u0561\u0581\u0578\u0582\u0574",
|
||||
"closed": "\u0553\u0561\u056f\u057e\u0561\u056e",
|
||||
"closing": "\u0553\u0561\u056f\u0578\u0582\u0574",
|
||||
"stopped": "\u0534\u0561\u0564\u0561\u0580\u0565\u0581"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u054f\u0578\u0582\u0576",
|
||||
"not_home": "\u0540\u0565\u057c\u0578\u0582"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0531\u0576\u057b\u0561\u057f\u057e\u0561\u056e",
|
||||
"on": "\u0544\u056b\u0561\u0581\u0561\u056e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0531\u0576\u057b\u0561\u057f\u057e\u0561\u056e",
|
||||
"on": "\u0544\u056b\u0561\u0581\u0561\u056e",
|
||||
"home": "\u054f\u0578\u0582\u0576",
|
||||
"not_home": "\u0540\u0565\u057c\u0578\u0582",
|
||||
"open": "\u0532\u0561\u0581\u0565\u0584",
|
||||
"closed": "\u0553\u0561\u056f\u057e\u0561\u056e",
|
||||
"locked": "\u056f\u0578\u0572\u057a\u057e\u0561\u056e \u0567",
|
||||
"unlocked": "\u0532\u0561\u0581\u0565\u056c \u0567",
|
||||
"ok": "\u053c\u0561\u057e",
|
||||
"problem": "\u053d\u0576\u0564\u056b\u0580"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0531\u0576\u057b\u0561\u057f\u057e\u0561\u056e",
|
||||
"on": "\u0544\u056b\u0561\u0581\u0561\u056e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u054d\u0576\u057b\u0561\u057f\u057e\u0561\u056e",
|
||||
"on": "\u0544\u056b\u0561\u0581\u0561\u056e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "\u053f\u0578\u0572\u057a\u057e\u0561\u056e \u0567",
|
||||
"unlocked": "\u0532\u0561\u0581 \u0567"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0531\u0576\u057b\u0561\u057f\u0561\u056e",
|
||||
"on": "\u0544\u056b\u0561\u0581\u0561\u056e",
|
||||
"playing": "\u053d\u0561\u0572\u0578\u0582\u0574",
|
||||
"paused": "\u0534\u0561\u0564\u0561\u0580 \u0567",
|
||||
"idle": "\u054a\u0561\u0580\u0561\u057a",
|
||||
"standby": "\u054d\u057a\u0561\u057d\u0578\u0582\u0574"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u057f\u0578\u0582\u0576",
|
||||
"not_home": "\u0540\u0565\u057c\u0578\u0582"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "\u053c\u0561\u057e",
|
||||
"problem": "\u053d\u0576\u0564\u056b\u0580"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0531\u0576\u057b\u0561\u057f\u057e\u0561\u056e",
|
||||
"on": "\u0544\u056b\u0561\u0581\u0561\u056e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0531\u0576\u057b\u0561\u057f\u057e\u0561\u056e",
|
||||
"on": "\u0544\u056b\u0561\u0581\u0561\u056e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0531\u0576\u057b\u0561\u057f\u057e\u0561\u056e",
|
||||
"on": "\u0574\u056b\u0561\u0581\u0561\u056e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "\u0540\u0578\u0580\u056b\u0566\u0578\u0576\u056b \u057e\u0565\u0580\u0587\u0578\u0582\u0574",
|
||||
"below_horizon": "\u0540\u0578\u0580\u056b\u0566\u0578\u0576\u056b \u0576\u0565\u0580\u0584\u0587\u0578\u0582\u0574"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0561\u0576\u057b\u0561\u057f\u057e\u0561\u056e",
|
||||
"on": "\u0574\u056b\u0561\u0581\u0561\u056e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "\u0544\u0561\u0584\u0580\u0578\u0582\u0574",
|
||||
"docked": "\u053e\u0561\u056e\u056f\u057e\u0561\u056e",
|
||||
"error": "\u054d\u056d\u0561\u056c",
|
||||
"idle": "\u054a\u0561\u0580\u0561\u057a",
|
||||
"off": "\u0561\u0576\u057b\u0561\u057f\u057e\u0561\u056e",
|
||||
"on": "\u057e\u0580\u0561",
|
||||
"paused": "\u0534\u0561\u0564\u0561\u0580 \u0567",
|
||||
"returning": "\u054e\u0565\u0580\u0561\u0564\u0561\u057c\u0576\u0561\u056c\u0578\u057e \u0576\u0561\u057e\u0561\u0570\u0561\u0576\u0563\u056b\u057d\u057f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "\u0561\u056f\u057f\u056b\u057e",
|
||||
"idle": "\u057a\u0561\u0580\u0561\u057a",
|
||||
"paused": "\u0564\u0561\u0564\u0561\u0580 "
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "\u0544\u0561\u0584\u0580\u0565\u056c \u057d\u057f\u0578\u0582\u0563\u057e\u0561\u056e \u056b\u0580\u0565\u0580\u0568",
|
||||
"cloudy": "\u0531\u0574\u057a\u0561\u0574\u0561\u056e",
|
||||
"exceptional": "\u0532\u0561\u0581\u0561\u057c\u056b\u056f",
|
||||
"fog": "\u0544\u0561\u057c\u0561\u056d\u0578\u0582\u0572",
|
||||
"hail": "\u053f\u0561\u0580\u056f\u0578\u0582\u057f",
|
||||
"lightning": "\u053f\u0561\u0575\u056e\u0561\u056f",
|
||||
"lightning-rainy": "\u053f\u0561\u0575\u056e\u0561\u056f, \u0561\u0576\u0571\u0580\u0587",
|
||||
"partlycloudy": "\u0544\u0561\u057d\u0561\u0574\u0562 \u0561\u0574\u057a\u0561\u0574\u0561\u056e",
|
||||
"pouring": "\u053c\u0581\u0576\u0565\u056c",
|
||||
"rainy": "\u0531\u0576\u0571\u0580\u0587\u0578\u057f",
|
||||
"snowy": "\u0541\u0575\u0578\u0582\u0576\u0578\u057f \u0567",
|
||||
"snowy-rainy": "\u0541\u0575\u0578\u0582\u0576\u0561\u057c\u0561\u057f, \u0561\u0576\u0571\u0580\u0587\u0578\u057f",
|
||||
"sunny": "\u0531\u0580\u0587\u0578\u057f",
|
||||
"windy": "\u053f\u0561\u0574",
|
||||
"windy-variant": "\u0554\u0561\u0574\u0578\u057f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "\u0546\u0561\u056d\u0561\u0571\u0565\u057c\u0576\u0578\u0572",
|
||||
"dead": "\u0544\u0565\u057c\u0561\u056e",
|
||||
"sleeping": "\u0554\u0576\u0565\u056c",
|
||||
"ready": "\u054a\u0561\u057f\u0580\u0561\u057d\u057f \u0567"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "\u0546\u0561\u056d\u0561\u0571\u0565\u057c\u0576\u0578\u0582\u0569\u0575\u0578\u0582\u0576({query_stage})",
|
||||
"dead": "\u0544\u0561\u0570\u0561\u0581\u0561\u056e{query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"component": {}
|
||||
}
|
||||
@@ -0,0 +1,343 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normal",
|
||||
"on": "Rendah"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normal",
|
||||
"on": "Dingin"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Terputus",
|
||||
"on": "Terhubung"
|
||||
},
|
||||
"door": {
|
||||
"off": "Tertutup",
|
||||
"on": "Terbuka"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Tertutup",
|
||||
"on": "Terbuka"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Kosong",
|
||||
"on": "Terdeteksi"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normal",
|
||||
"on": "Panas"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Terkunci",
|
||||
"on": "Terbuka"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Kering",
|
||||
"on": "Basah"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Tidak ada",
|
||||
"on": "Terdeteksi"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Tidak ada",
|
||||
"on": "Terdeteksi"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Tertutup",
|
||||
"on": "Terbuka"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Keluar",
|
||||
"on": "Rumah"
|
||||
},
|
||||
"problem": {
|
||||
"off": "Oke",
|
||||
"on": "Masalah"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Aman",
|
||||
"on": "Tidak aman"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Tidak ada",
|
||||
"on": "Terdeteksi"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Tidak ada",
|
||||
"on": "Terdeteksi"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Tidak ada",
|
||||
"on": "Terdeteksi"
|
||||
},
|
||||
"window": {
|
||||
"off": "Tertutup",
|
||||
"on": "Terbuka"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Bersenjata",
|
||||
"disarmed": "Dilucuti",
|
||||
"armed_home": "Armed home",
|
||||
"armed_away": "Armed away",
|
||||
"armed_night": "Armed night",
|
||||
"armed_custom_bypass": "Armed custom bypass",
|
||||
"pending": "Tertunda",
|
||||
"arming": "Mempersenjatai",
|
||||
"disarming": "Melucuti",
|
||||
"triggered": "Terpicu"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Merekam",
|
||||
"streaming": "Streaming",
|
||||
"idle": "Siaga"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"heat": "Panas",
|
||||
"cool": "Sejuk",
|
||||
"heat_cool": "Panas/Dingin",
|
||||
"auto": "Auto",
|
||||
"dry": "Kering",
|
||||
"fan_only": "Hanya kipas"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Konfigurasi",
|
||||
"configured": "Terkonfigurasi"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Buka",
|
||||
"opening": "Membuka",
|
||||
"closed": "Tertutup",
|
||||
"closing": "Menutup",
|
||||
"stopped": "Terhenti"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Rumah",
|
||||
"not_home": "Keluar"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On",
|
||||
"home": "Rumah",
|
||||
"not_home": "Keluar",
|
||||
"open": "Terbuka",
|
||||
"closed": "Tertutup",
|
||||
"locked": "Terkunci",
|
||||
"unlocked": "Terbuka",
|
||||
"ok": "OK",
|
||||
"problem": "Masalah"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Terkunci",
|
||||
"unlocked": "Terbuka"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On",
|
||||
"playing": "Memainkan",
|
||||
"paused": "Jeda",
|
||||
"idle": "Diam",
|
||||
"standby": "Siaga"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Di rumah",
|
||||
"not_home": "Keluar"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "OK",
|
||||
"problem": "Masalah"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Terbit",
|
||||
"below_horizon": "Tenggelam"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Off",
|
||||
"on": "On"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Membersihkan",
|
||||
"docked": "Berlabuh",
|
||||
"error": "Kesalahan",
|
||||
"idle": "Siaga",
|
||||
"off": "Padam",
|
||||
"on": "Nyala",
|
||||
"paused": "Dijeda",
|
||||
"returning": "Kembali ke dock"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "Aktif",
|
||||
"idle": "Siaga",
|
||||
"paused": "Jeda"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Cerah, malam",
|
||||
"cloudy": "Berawan",
|
||||
"exceptional": "Luar biasa",
|
||||
"fog": "Kabut",
|
||||
"hail": "Hujan es",
|
||||
"lightning": "Petir",
|
||||
"lightning-rainy": "Petir, hujan",
|
||||
"partlycloudy": "Sebagian berawan",
|
||||
"pouring": "Hujan lebat",
|
||||
"rainy": "Hujan",
|
||||
"snowy": "Bersalju",
|
||||
"snowy-rainy": "Bersalju, hujan",
|
||||
"sunny": "Cerah",
|
||||
"windy": "Berangin",
|
||||
"windy-variant": "Berangin"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Inisialisasi",
|
||||
"dead": "Mati",
|
||||
"sleeping": "Tidur",
|
||||
"ready": "Siap"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Inisialisasi ( {query_stage} )",
|
||||
"dead": "Mati ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,337 @@
|
||||
{
|
||||
"component": {
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Sl\u00f6kkt",
|
||||
"on": "Kveikt"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Venjulegt",
|
||||
"on": "L\u00e1gt"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Venjulegt",
|
||||
"on": "Kalt"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Aftengdur",
|
||||
"on": "Tengdur"
|
||||
},
|
||||
"door": {
|
||||
"off": "Loku\u00f0",
|
||||
"on": "Opin"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Loku\u00f0",
|
||||
"on": "Opin"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Hreinsa",
|
||||
"on": "Uppg\u00f6tva\u00f0"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Venjulegt",
|
||||
"on": "Heitt"
|
||||
},
|
||||
"lock": {
|
||||
"off": "L\u00e6st",
|
||||
"on": "Afl\u00e6st"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "\u00deurrt",
|
||||
"on": "Blautt"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Engin hreyfing",
|
||||
"on": "Hreyfing"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Hreinsa",
|
||||
"on": "Uppg\u00f6tva\u00f0"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Fjarverandi",
|
||||
"on": "Heima"
|
||||
},
|
||||
"problem": {
|
||||
"off": "\u00cd lagi",
|
||||
"on": "Vandam\u00e1l"
|
||||
},
|
||||
"safety": {
|
||||
"off": "\u00d6ruggt",
|
||||
"on": "\u00d3\u00f6ruggt"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Hreinsa",
|
||||
"on": "Uppg\u00f6tva\u00f0"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Hreinsa",
|
||||
"on": "Uppg\u00f6tva\u00f0"
|
||||
},
|
||||
"vibration": {
|
||||
"on": "Uppg\u00f6tva\u00f0"
|
||||
},
|
||||
"window": {
|
||||
"off": "Loka",
|
||||
"on": "Opna"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "\u00c1 ver\u00f0i",
|
||||
"disarmed": "ekki \u00e1 ver\u00f0i",
|
||||
"armed_home": "\u00c1 ver\u00f0i heima",
|
||||
"armed_away": "\u00c1 ver\u00f0i \u00fati",
|
||||
"armed_night": "\u00c1 ver\u00f0i n\u00f3tt",
|
||||
"pending": "B\u00ed\u00f0ur",
|
||||
"arming": "Set \u00e1 v\u00f6r\u00f0",
|
||||
"disarming": "tek af ver\u00f0i",
|
||||
"triggered": "R\u00e6st"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u00d3virk",
|
||||
"on": "Virk"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u00d3virkt",
|
||||
"on": "Virkt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "\u00cd uppt\u00f6ku",
|
||||
"streaming": "Streymi",
|
||||
"idle": "A\u00f0ger\u00f0alaus"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Sl\u00f6kkt",
|
||||
"heat": "Hitun",
|
||||
"cool": "K\u00e6ling",
|
||||
"heat_cool": "Hita/K\u00e6la",
|
||||
"auto": "Sj\u00e1lfvirkt",
|
||||
"dry": "\u00deurrt",
|
||||
"fan_only": "Vifta eing\u00f6ngu"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Stilli",
|
||||
"configured": "Stillt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Opin",
|
||||
"opening": "Opna",
|
||||
"closed": "Loka\u00f0",
|
||||
"closing": "Loka",
|
||||
"stopped": "St\u00f6\u00f0vu\u00f0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Heima",
|
||||
"not_home": "Fjarverandi"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Sl\u00f6kkt",
|
||||
"on": "\u00cd gangi"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u00d3virkur",
|
||||
"on": "Virkur",
|
||||
"home": "Heima",
|
||||
"not_home": "Fjarverandi",
|
||||
"open": "Opin",
|
||||
"closed": "Loku\u00f0",
|
||||
"locked": "L\u00e6st",
|
||||
"unlocked": "Afl\u00e6st",
|
||||
"ok": "\u00cd lagi",
|
||||
"problem": "Vandam\u00e1l"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Sl\u00f6kkt",
|
||||
"on": "Kveikt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "L\u00e6st",
|
||||
"unlocked": "Afl\u00e6st"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Sl\u00f6kkt",
|
||||
"on": "\u00ed gangi",
|
||||
"playing": "Spila",
|
||||
"paused": "\u00cd bi\u00f0",
|
||||
"idle": "A\u00f0ger\u00f0alaus",
|
||||
"standby": "Bi\u00f0sta\u00f0a"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Heima",
|
||||
"not_home": "Fjarverandi"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "\u00cd lagi",
|
||||
"problem": "Vandam\u00e1l"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u00d3virk",
|
||||
"on": "Virk"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u00d3virkt",
|
||||
"on": "Virkt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Af",
|
||||
"on": "\u00c1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Yfir sj\u00f3ndeildarhring",
|
||||
"below_horizon": "Undir sj\u00f3ndeildarhring"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Sl\u00f6kkt",
|
||||
"on": "Kveikt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "A\u00f0 ryksuga",
|
||||
"docked": "\u00ed tengikv\u00ed",
|
||||
"error": "Villa",
|
||||
"idle": "A\u00f0ger\u00f0alaus",
|
||||
"off": "Sl\u00f6kkt",
|
||||
"on": "\u00cd gangi",
|
||||
"paused": "\u00cd bi\u00f0",
|
||||
"returning": "\u00c1 lei\u00f0 tilbaka \u00ed tengikv\u00ed"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Af",
|
||||
"on": "\u00c1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "virkur",
|
||||
"idle": "a\u00f0ger\u00f0alaus",
|
||||
"paused": "\u00ed bi\u00f0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Hei\u00f0sk\u00fdrt, n\u00f3tt",
|
||||
"cloudy": "Sk\u00fdja\u00f0",
|
||||
"exceptional": "Mj\u00f6g gott",
|
||||
"fog": "\u00deoka",
|
||||
"hail": "Hagl\u00e9l",
|
||||
"lightning": "Eldingar",
|
||||
"lightning-rainy": "Eldingar, rigning",
|
||||
"partlycloudy": "A\u00f0 hluta til sk\u00fdja\u00f0",
|
||||
"pouring": "\u00darhelli",
|
||||
"rainy": "Rigning",
|
||||
"snowy": "Snj\u00f3koma",
|
||||
"snowy-rainy": "Slydda",
|
||||
"sunny": "S\u00f3lskin",
|
||||
"windy": "Vindasamt",
|
||||
"windy-variant": "Vindasamt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Frumstilli",
|
||||
"dead": "Dau\u00f0ur",
|
||||
"sleeping": "\u00cd dvala",
|
||||
"ready": "Tilb\u00fainn"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Frumstilli ({query_stage})",
|
||||
"dead": "Dau\u00f0ur ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Spento",
|
||||
"on": "Acceso"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Avvio",
|
||||
"dead": "Disattivo",
|
||||
"sleeping": "In attesa",
|
||||
"ready": "Pronto"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Avvio ({query_stage})",
|
||||
"dead": "Disattivo ({query_stage})"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "Giorno",
|
||||
"night": "Notte"
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Spento",
|
||||
"on": "Acceso"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Spento",
|
||||
"on": "Acceso"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Spento",
|
||||
"on": "Acceso"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normale",
|
||||
"on": "Basso"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normale",
|
||||
"on": "Freddo"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Disconnesso",
|
||||
"on": "Connesso"
|
||||
},
|
||||
"door": {
|
||||
"off": "Chiusa",
|
||||
"on": "Aperta"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Chiusa",
|
||||
"on": "Aperta"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Assente",
|
||||
"on": "Rilevato"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normale",
|
||||
"on": "Caldo"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Bloccato",
|
||||
"on": "Sbloccato"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Asciutto",
|
||||
"on": "Bagnato"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Assente",
|
||||
"on": "Rilevato"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Vuoto",
|
||||
"on": "Rilevato"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Chiuso",
|
||||
"on": "Aperta"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Fuori casa",
|
||||
"on": "A casa"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Problema"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Sicuro",
|
||||
"on": "Non Sicuro"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Assente",
|
||||
"on": "Rilevato"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Assente",
|
||||
"on": "Rilevato"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Assente",
|
||||
"on": "Rilevata"
|
||||
},
|
||||
"window": {
|
||||
"off": "Chiusa",
|
||||
"on": "Aperta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Bloccato",
|
||||
"unlocked": "Sbloccato"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Aperto",
|
||||
"opening": "In apertura",
|
||||
"closed": "Chiuso",
|
||||
"closing": "In chiusura",
|
||||
"stopped": "Arrestato"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Attivo",
|
||||
"disarmed": "Disattivo",
|
||||
"armed_home": "Attivo in casa",
|
||||
"armed_away": "Attivo fuori casa",
|
||||
"armed_night": "Attivo Notte",
|
||||
"armed_custom_bypass": "Attivo con bypass",
|
||||
"pending": "In sospeso",
|
||||
"arming": "In attivazione",
|
||||
"disarming": "In disattivazione",
|
||||
"triggered": "Attivato"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Spento",
|
||||
"on": "Acceso",
|
||||
"playing": "In riproduzione",
|
||||
"paused": "In pausa",
|
||||
"idle": "Inattivo",
|
||||
"standby": "Pausa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "A casa",
|
||||
"not_home": "Fuori casa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Pulendo",
|
||||
"docked": "In base",
|
||||
"error": "Errore",
|
||||
"idle": "Inattivo",
|
||||
"off": "Spento",
|
||||
"on": "Acceso",
|
||||
"paused": "In pausa",
|
||||
"returning": "Ritorno alla base"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Spento",
|
||||
"on": "Acceso"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Spento",
|
||||
"heat": "Caldo",
|
||||
"cool": "Freddo",
|
||||
"heat_cool": "Caldo/Freddo",
|
||||
"auto": "Auto",
|
||||
"dry": "Secco",
|
||||
"fan_only": "Solo ventilatore"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Spento",
|
||||
"on": "Acceso"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Disattivo",
|
||||
"on": "Attivo"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "In registrazione",
|
||||
"streaming": "Streaming",
|
||||
"idle": "Inattiva"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Configura",
|
||||
"configured": "Configurato"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Spento",
|
||||
"on": "Acceso",
|
||||
"home": "A casa",
|
||||
"not_home": "Fuori casa",
|
||||
"open": "Aperto",
|
||||
"closed": "Chiuso",
|
||||
"locked": "Bloccato",
|
||||
"unlocked": "Sbloccato",
|
||||
"ok": "OK",
|
||||
"problem": "Problema"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Spento",
|
||||
"on": "Acceso"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "A casa",
|
||||
"not_home": "Fuori casa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "OK",
|
||||
"problem": "Problema"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Spento",
|
||||
"on": "Acceso"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Spento",
|
||||
"on": "Acceso"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Sopra l'orizzonte",
|
||||
"below_horizon": "Sotto l'orizzonte"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "attivo",
|
||||
"idle": "inattivo",
|
||||
"paused": "in pausa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Sereno, notte",
|
||||
"cloudy": "Nuvoloso",
|
||||
"exceptional": "Eccezionale",
|
||||
"fog": "Nebbia",
|
||||
"hail": "Grandine",
|
||||
"lightning": "Temporale",
|
||||
"lightning-rainy": "Temporale, piovoso",
|
||||
"partlycloudy": "Parzialmente nuvoloso",
|
||||
"pouring": "Piogge intense",
|
||||
"rainy": "Piovoso",
|
||||
"snowy": "Nevoso",
|
||||
"snowy-rainy": "Nevoso, piovoso",
|
||||
"sunny": "Soleggiato",
|
||||
"windy": "Ventoso",
|
||||
"windy-variant": "Ventoso"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,288 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u30aa\u30d5",
|
||||
"on": "\u30aa\u30f3"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u30aa\u30d5",
|
||||
"on": "\u30aa\u30f3"
|
||||
},
|
||||
"battery": {
|
||||
"off": "\u901a\u5e38",
|
||||
"on": "\u4f4e"
|
||||
},
|
||||
"cold": {
|
||||
"off": "\u901a\u5e38",
|
||||
"on": "\u4f4e\u6e29"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "\u5207\u65ad",
|
||||
"on": "\u63a5\u7d9a\u6e08"
|
||||
},
|
||||
"door": {
|
||||
"off": "\u9589\u9396",
|
||||
"on": "\u958b\u653e"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "\u9589\u9396",
|
||||
"on": "\u958b\u653e"
|
||||
},
|
||||
"gas": {
|
||||
"off": "\u672a\u691c\u51fa",
|
||||
"on": "\u691c\u51fa"
|
||||
},
|
||||
"heat": {
|
||||
"off": "\u6b63\u5e38",
|
||||
"on": "\u9ad8\u6e29"
|
||||
},
|
||||
"lock": {
|
||||
"off": "\u30ed\u30c3\u30af\u3055\u308c\u307e\u3057\u305f",
|
||||
"on": "\u30ed\u30c3\u30af\u3055\u308c\u3066\u3044\u307e\u305b\u3093"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "\u30c9\u30e9\u30a4",
|
||||
"on": "\u30a6\u30a7\u30c3\u30c8"
|
||||
},
|
||||
"motion": {
|
||||
"off": "\u672a\u691c\u51fa",
|
||||
"on": "\u691c\u51fa"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "\u672a\u691c\u51fa",
|
||||
"on": "\u691c\u51fa"
|
||||
},
|
||||
"opening": {
|
||||
"off": "\u9589\u9396",
|
||||
"on": "\u958b\u653e"
|
||||
},
|
||||
"presence": {
|
||||
"off": "\u5916\u51fa",
|
||||
"on": "\u5728\u5b85"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK"
|
||||
},
|
||||
"safety": {
|
||||
"off": "\u5b89\u5168",
|
||||
"on": "\u5371\u967a"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "\u672a\u691c\u51fa",
|
||||
"on": "\u691c\u51fa"
|
||||
},
|
||||
"sound": {
|
||||
"off": "\u672a\u691c\u51fa",
|
||||
"on": "\u691c\u51fa"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "\u672a\u691c\u51fa",
|
||||
"on": "\u691c\u51fa"
|
||||
},
|
||||
"window": {
|
||||
"off": "\u9589\u9396",
|
||||
"on": "\u958b\u653e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u30aa\u30d5",
|
||||
"on": "\u30aa\u30f3"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u30aa\u30d5",
|
||||
"on": "\u30aa\u30f3"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"idle": "\u30a2\u30a4\u30c9\u30eb"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u30aa\u30d5",
|
||||
"on": "\u30aa\u30f3",
|
||||
"home": "\u5728\u5b85",
|
||||
"not_home": "\u5916\u51fa",
|
||||
"closed": "\u9589\u9396",
|
||||
"locked": "\u30ed\u30c3\u30af\u3055\u308c\u307e\u3057\u305f",
|
||||
"ok": "OK"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u30aa\u30d5",
|
||||
"on": "\u30aa\u30f3"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u30aa\u30d5",
|
||||
"on": "\u30aa\u30f3",
|
||||
"playing": "\u518d\u751f\u4e2d",
|
||||
"paused": "\u4e00\u6642\u505c\u6b62",
|
||||
"idle": "\u30a2\u30a4\u30c9\u30eb"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u30aa\u30d5",
|
||||
"on": "\u30aa\u30f3"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "\u5730\u5e73\u7dda\u306e\u4e0a",
|
||||
"below_horizon": "\u5730\u5e73\u7dda\u3088\u308a\u4e0b"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u30aa\u30d5",
|
||||
"on": "\u30aa\u30f3"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"triggered": "\u30c8\u30ea\u30ac\u30fc"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u30aa\u30d5",
|
||||
"heat": "\u6696\u623f",
|
||||
"cool": "\u51b7\u623f",
|
||||
"auto": "\u30aa\u30fc\u30c8",
|
||||
"dry": "\u30c9\u30e9\u30a4",
|
||||
"fan_only": "\u30d5\u30a1\u30f3\u306e\u307f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "\u8a2d\u5b9a",
|
||||
"configured": "\u8a2d\u5b9a\u6e08\u307f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"opening": "\u6249",
|
||||
"closed": "\u9589\u9396"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u5728\u5b85",
|
||||
"not_home": "\u5916\u51fa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u30aa\u30d5",
|
||||
"on": "\u30aa\u30f3"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u30aa\u30d5",
|
||||
"on": "\u30aa\u30f3"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u5728\u5b85",
|
||||
"not_home": "\u5916\u51fa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "OK"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u30aa\u30d5",
|
||||
"on": "\u30aa\u30f3"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "\u6674\u308c\u305f\u591c",
|
||||
"cloudy": "\u66c7\u308a",
|
||||
"fog": "\u9727",
|
||||
"hail": "\u96f9",
|
||||
"lightning": "\u96f7",
|
||||
"lightning-rainy": "\u96f7\u96e8",
|
||||
"partlycloudy": "\u6674\u308c\u6642\u3005\u66c7\u308a",
|
||||
"pouring": "\u5927\u96e8",
|
||||
"rainy": "\u96e8",
|
||||
"snowy": "\u96ea",
|
||||
"snowy-rainy": "\u307f\u305e\u308c",
|
||||
"sunny": "\u6674\u308c",
|
||||
"windy": "\u5f37\u98a8"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "\u521d\u671f\u5316\u4e2d",
|
||||
"sleeping": "\u30b9\u30ea\u30fc\u30d7",
|
||||
"ready": "\u6e96\u5099\u5b8c\u4e86"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "\u521d\u671f\u5316\u4e2d ( {query_stage} )",
|
||||
"dead": " ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\uaebc\uc9d0",
|
||||
"on": "\ucf1c\uc9d0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "\ucd08\uae30\ud654\uc911",
|
||||
"dead": "\uc751\ub2f5\uc5c6\uc74c",
|
||||
"sleeping": "\uc808\uc804\ubaa8\ub4dc",
|
||||
"ready": "\uc900\ube44"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "\ucd08\uae30\ud654\uc911 ({query_stage})",
|
||||
"dead": "\uc751\ub2f5\uc5c6\uc74c ({query_stage})"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "\uc8fc\uac04",
|
||||
"night": "\uc57c\uac04"
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\uaebc\uc9d0",
|
||||
"on": "\ucf1c\uc9d0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\uaebc\uc9d0",
|
||||
"on": "\ucf1c\uc9d0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\uaebc\uc9d0",
|
||||
"on": "\ucf1c\uc9d0"
|
||||
},
|
||||
"battery": {
|
||||
"off": "\ubcf4\ud1b5",
|
||||
"on": "\ub0ae\uc74c"
|
||||
},
|
||||
"cold": {
|
||||
"off": "\ubcf4\ud1b5",
|
||||
"on": "\uc800\uc628"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "\uc5f0\uacb0\ud574\uc81c\ub428",
|
||||
"on": "\uc5f0\uacb0\ub428"
|
||||
},
|
||||
"door": {
|
||||
"off": "\ub2eb\ud798",
|
||||
"on": "\uc5f4\ub9bc"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "\ub2eb\ud798",
|
||||
"on": "\uc5f4\ub9bc"
|
||||
},
|
||||
"gas": {
|
||||
"off": "\uc774\uc0c1\uc5c6\uc74c",
|
||||
"on": "\uac10\uc9c0\ub428"
|
||||
},
|
||||
"heat": {
|
||||
"off": "\ubcf4\ud1b5",
|
||||
"on": "\uace0\uc628"
|
||||
},
|
||||
"lock": {
|
||||
"off": "\uc7a0\uae40",
|
||||
"on": "\ud574\uc81c"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "\uac74\uc870\ud568",
|
||||
"on": "\uc2b5\ud568"
|
||||
},
|
||||
"motion": {
|
||||
"off": "\uc774\uc0c1\uc5c6\uc74c",
|
||||
"on": "\uac10\uc9c0\ub428"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "\uc774\uc0c1\uc5c6\uc74c",
|
||||
"on": "\uac10\uc9c0\ub428"
|
||||
},
|
||||
"opening": {
|
||||
"off": "\ub2eb\ud798",
|
||||
"on": "\uc5f4\ub9bc"
|
||||
},
|
||||
"presence": {
|
||||
"off": "\uc678\ucd9c",
|
||||
"on": "\uc7ac\uc2e4"
|
||||
},
|
||||
"problem": {
|
||||
"off": "\ubb38\uc81c\uc5c6\uc74c",
|
||||
"on": "\ubb38\uc81c\uc788\uc74c"
|
||||
},
|
||||
"safety": {
|
||||
"off": "\uc548\uc804",
|
||||
"on": "\uc704\ud5d8"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "\uc774\uc0c1\uc5c6\uc74c",
|
||||
"on": "\uac10\uc9c0\ub428"
|
||||
},
|
||||
"sound": {
|
||||
"off": "\uc774\uc0c1\uc5c6\uc74c",
|
||||
"on": "\uac10\uc9c0\ub428"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "\uc774\uc0c1\uc5c6\uc74c",
|
||||
"on": "\uac10\uc9c0\ub428"
|
||||
},
|
||||
"window": {
|
||||
"off": "\ub2eb\ud798",
|
||||
"on": "\uc5f4\ub9bc"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "\uc7a0\uae40",
|
||||
"unlocked": "\ud574\uc81c"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "\uc5f4\ub9bc",
|
||||
"opening": "\uc5ec\ub294\uc911",
|
||||
"closed": "\ub2eb\ud798",
|
||||
"closing": "\ub2eb\ub294\uc911",
|
||||
"stopped": "\uba48\ucda4"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "\uacbd\ube44\uc911",
|
||||
"disarmed": "\ud574\uc81c\ub428",
|
||||
"armed_home": "\uacbd\ube44\uc911(\uc7ac\uc2e4)",
|
||||
"armed_away": "\uacbd\ube44\uc911(\uc678\ucd9c)",
|
||||
"armed_night": "\uacbd\ube44\uc911(\uc57c\uac04)",
|
||||
"armed_custom_bypass": "\uacbd\ube44\uc911(\uc0ac\uc6a9\uc790 \uc6b0\ud68c)",
|
||||
"pending": "\ubcf4\ub958\uc911",
|
||||
"arming": "\uacbd\ube44\uc911",
|
||||
"disarming": "\ud574\uc81c\uc911",
|
||||
"triggered": "\uc791\ub3d9\ub428"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\uaebc\uc9d0",
|
||||
"on": "\ucf1c\uc9d0",
|
||||
"playing": "\uc7ac\uc0dd\uc911",
|
||||
"paused": "\uc77c\uc2dc\uc911\uc9c0",
|
||||
"idle": "\ub300\uae30\uc911",
|
||||
"standby": "\uc900\ube44\uc911"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\uc7ac\uc2e4",
|
||||
"not_home": "\uc678\ucd9c"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "\uccad\uc18c\uc911",
|
||||
"docked": "\ucda9\uc804\uc911",
|
||||
"error": "\uc791\ub3d9 \uc624\ub958",
|
||||
"idle": "\ub300\uae30\uc911",
|
||||
"off": "\uaebc\uc9d0",
|
||||
"on": "\ucf1c\uc9d0",
|
||||
"paused": "\uc77c\uc2dc\uc911\uc9c0\ub428",
|
||||
"returning": "\ucda9\uc804 \ubcf5\uadc0 \uc911"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\uaebc\uc9d0",
|
||||
"on": "\ucf1c\uc9d0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\uaebc\uc9d0",
|
||||
"heat": "\ub09c\ubc29",
|
||||
"cool": "\ub0c9\ubc29",
|
||||
"heat_cool": "\ub0c9\ub09c\ubc29",
|
||||
"auto": "\uc790\ub3d9",
|
||||
"dry": "\uc81c\uc2b5",
|
||||
"fan_only": "\uc1a1\ud48d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\uaebc\uc9d0",
|
||||
"on": "\ucf1c\uc9d0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\uaebc\uc9d0",
|
||||
"on": "\ucf1c\uc9d0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "\ub179\ud654\uc911",
|
||||
"streaming": "\uc2a4\ud2b8\ub9ac\ubc0d",
|
||||
"idle": "\ub300\uae30\uc911"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "\uc124\uc815",
|
||||
"configured": "\uc124\uc815\ub428"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\uaebc\uc9d0",
|
||||
"on": "\ucf1c\uc9d0",
|
||||
"home": "\uc7ac\uc2e4",
|
||||
"not_home": "\uc678\ucd9c",
|
||||
"open": "\uc5f4\ub9bc",
|
||||
"closed": "\ub2eb\ud798",
|
||||
"locked": "\uc7a0\uae40",
|
||||
"unlocked": "\ud574\uc81c",
|
||||
"ok": "\ubb38\uc81c\uc5c6\uc74c",
|
||||
"problem": "\ubb38\uc81c\uc788\uc74c"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\uaebc\uc9d0",
|
||||
"on": "\ucf1c\uc9d0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\uc7ac\uc2e4",
|
||||
"not_home": "\uc678\ucd9c"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "\ubb38\uc81c\uc5c6\uc74c",
|
||||
"problem": "\ubb38\uc81c\uc788\uc74c"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\uaebc\uc9d0",
|
||||
"on": "\ucf1c\uc9d0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\uaebc\uc9d0",
|
||||
"on": "\ucf1c\uc9d0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "\uc8fc\uac04",
|
||||
"below_horizon": "\uc57c\uac04"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "\ud65c\uc131\ud654",
|
||||
"idle": "\ub300\uae30\uc911",
|
||||
"paused": "\uc77c\uc2dc\uc911\uc9c0\ub428"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "\ub9d1\uc74c (\ubc24)",
|
||||
"cloudy": "\ud750\ub9bc",
|
||||
"exceptional": "\uc608\uc678\uc0ac\ud56d",
|
||||
"fog": "\uc548\uac1c",
|
||||
"hail": "\uc6b0\ubc15",
|
||||
"lightning": "\ubc88\uac1c",
|
||||
"lightning-rainy": "\ub1cc\uc6b0",
|
||||
"partlycloudy": "\ub300\uccb4\ub85c \ud750\ub9bc",
|
||||
"pouring": "\ud638\uc6b0",
|
||||
"rainy": "\ube44",
|
||||
"snowy": "\ub208",
|
||||
"snowy-rainy": "\uc9c4\ub208\uac1c\ube44",
|
||||
"sunny": "\ub9d1\uc74c",
|
||||
"windy": "\ubc14\ub78c",
|
||||
"windy-variant": "\ubc14\ub78c"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "Un"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Initialis\u00e9iert",
|
||||
"dead": "Net Ereechbar",
|
||||
"sleeping": "Schl\u00e9ift",
|
||||
"ready": "Bereet"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Initialis\u00e9iert ( {query_stage} )",
|
||||
"dead": "Net Ereechbar ({query_stage})"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "Dag",
|
||||
"night": "Nuecht"
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "Un"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "Un"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "Un"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normal",
|
||||
"on": "Niddreg"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normal",
|
||||
"on": "Kal"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Net Verbonnen",
|
||||
"on": "Verbonnen"
|
||||
},
|
||||
"door": {
|
||||
"off": "Zou",
|
||||
"on": "Op"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Zou",
|
||||
"on": "Op"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Kloer",
|
||||
"on": "Detekt\u00e9iert"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normal",
|
||||
"on": "Waarm"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Gespaart",
|
||||
"on": "Net gespaart"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Dr\u00e9chen",
|
||||
"on": "Naass"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Roueg",
|
||||
"on": "Detekt\u00e9iert"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Roueg",
|
||||
"on": "Detekt\u00e9iert"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Zou",
|
||||
"on": "Op"
|
||||
},
|
||||
"presence": {
|
||||
"off": "\u00cbnnerwee",
|
||||
"on": "Doheem"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Problem"
|
||||
},
|
||||
"safety": {
|
||||
"off": "S\u00e9cher",
|
||||
"on": "Ons\u00e9cher"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Kloer",
|
||||
"on": "Detekt\u00e9iert"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Roueg",
|
||||
"on": "Detekt\u00e9iert"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Kloer",
|
||||
"on": "Detekt\u00e9iert"
|
||||
},
|
||||
"window": {
|
||||
"off": "Zou",
|
||||
"on": "Op"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Gespaart",
|
||||
"unlocked": "Net gespaart"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Op",
|
||||
"opening": "G\u00ebtt opgemaach",
|
||||
"closed": "Zou",
|
||||
"closing": "G\u00ebtt zougemaach",
|
||||
"stopped": "Gestoppt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Aktiv\u00e9iert",
|
||||
"disarmed": "Desaktiv\u00e9iert",
|
||||
"armed_home": "Aktiv\u00e9iert Doheem",
|
||||
"armed_away": "Aktiv\u00e9iert \u00cbnnerwee",
|
||||
"armed_night": "Aktiv\u00e9iert Nuecht",
|
||||
"armed_custom_bypass": "Aktiv, Benotzerdefin\u00e9iert",
|
||||
"pending": "Ustoend",
|
||||
"arming": "Aktiv\u00e9ieren",
|
||||
"disarming": "Desaktiv\u00e9ieren",
|
||||
"triggered": "Ausgel\u00e9ist"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "Un",
|
||||
"playing": "Spillt",
|
||||
"paused": "Pauseiert",
|
||||
"idle": "Waart",
|
||||
"standby": "Standby"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Doheem",
|
||||
"not_home": "\u00cbnnerwee"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Botzt",
|
||||
"docked": "Agedockt",
|
||||
"error": "Feeler",
|
||||
"idle": "Waart",
|
||||
"off": "Aus",
|
||||
"on": "Un",
|
||||
"paused": "Pauseiert",
|
||||
"returning": "K\u00ebnnt zur Statioun zer\u00e9ck"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "Un"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"heat": "Heizen",
|
||||
"cool": "Kill",
|
||||
"heat_cool": "H\u00ebtzen/Ofkillen",
|
||||
"auto": "Auto",
|
||||
"dry": "Dr\u00e9chen",
|
||||
"fan_only": "N\u00ebmme Ventilator"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "Un"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "Un"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "H\u00eblt Op",
|
||||
"streaming": "Streamt",
|
||||
"idle": "Roueg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Astellen",
|
||||
"configured": "Agestallt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "Un",
|
||||
"home": "Doheem",
|
||||
"not_home": "\u00cbnnerwee",
|
||||
"open": "Op",
|
||||
"closed": "Zou",
|
||||
"locked": "Gespaart",
|
||||
"unlocked": "Net gespaart",
|
||||
"ok": "OK",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "Un"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Doheem",
|
||||
"not_home": "\u00cbnnerwee"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "OK",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "Un"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Aus",
|
||||
"on": "Un"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Iwwert dem Horizont",
|
||||
"below_horizon": "\u00cbnnert dem Horizont"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "Aktiv",
|
||||
"idle": "Waart",
|
||||
"paused": "Pauseiert"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Kloer, Nuecht",
|
||||
"cloudy": "Wollekeg",
|
||||
"exceptional": "Aussergew\u00e9inlech",
|
||||
"fog": "Niwwel",
|
||||
"hail": "Kn\u00ebppelsteng",
|
||||
"lightning": "Bl\u00ebtz",
|
||||
"lightning-rainy": "Bl\u00ebtz, Reen",
|
||||
"partlycloudy": "Liicht wollekeg",
|
||||
"pouring": "Schloreen",
|
||||
"rainy": "Reen",
|
||||
"snowy": "Schn\u00e9i",
|
||||
"snowy-rainy": "Schn\u00e9i, Reen",
|
||||
"sunny": "Sonneg",
|
||||
"windy": "L\u00ebfteg",
|
||||
"windy-variant": "L\u00ebfteg"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,196 @@
|
||||
{
|
||||
"component": {
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Namuose",
|
||||
"not_home": "I\u0161vyk\u0119s"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "U\u017erakinta",
|
||||
"disarmed": "Atrakinta",
|
||||
"armed_home": "Nam\u0173 apsauga \u012fjungta",
|
||||
"pending": "Laukiama",
|
||||
"arming": "Saugojimo re\u017eimo \u012fjungimas",
|
||||
"disarming": "Saugojimo re\u017eimo i\u0161jungimas",
|
||||
"triggered": "Aktyvinta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "I\u0161jungta",
|
||||
"on": "\u012ejungta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "I\u0161jungta",
|
||||
"on": "\u012ejungta"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Atsijung\u0119s",
|
||||
"on": "Prisijung\u0119s"
|
||||
},
|
||||
"door": {
|
||||
"off": "U\u017edaryta",
|
||||
"on": "Atidaryta"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "U\u017edaryta",
|
||||
"on": "Atidaryta"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Neaptikta",
|
||||
"on": "Aptikta"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Sausa",
|
||||
"on": "\u0160lapia"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Nejuda",
|
||||
"on": "Aptiktas judesys"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Laisva",
|
||||
"on": "U\u017eimta"
|
||||
},
|
||||
"opening": {
|
||||
"off": "U\u017edaryta",
|
||||
"on": "Atidaryta"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Saugu",
|
||||
"on": "Nesaugu"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Neaptikta",
|
||||
"on": "Aptikta"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Tylu",
|
||||
"on": "Aptikta"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Neaptikta",
|
||||
"on": "Aptikta"
|
||||
},
|
||||
"window": {
|
||||
"off": "U\u017edaryta",
|
||||
"on": "Atidaryta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "I\u0161jungta",
|
||||
"on": "\u012ejungta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "\u012era\u0161ymas",
|
||||
"streaming": "Transliuojama",
|
||||
"idle": "Laukimo re\u017eimas"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "I\u0161jungta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "I\u0161jungta",
|
||||
"on": "\u012ejungta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "I\u0161jungta",
|
||||
"on": "\u012ejungta",
|
||||
"ok": "Ok"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"on": "\u012ejungta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"on": "\u012ejungta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "I\u0161jungta",
|
||||
"on": "\u012ejungta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "I\u0161jungta",
|
||||
"on": "\u012ejungta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "I\u0161jungta",
|
||||
"on": "\u012ejungta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "I\u0161jungta",
|
||||
"on": "\u012ejungta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "aktyvus",
|
||||
"paused": "pristabdytas"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"query_stage": {
|
||||
"initializing": " ( {query_stage} )",
|
||||
"dead": " ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,343 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izsl\u0113gts",
|
||||
"on": "Iesl\u0113gts"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izsl\u0113gta",
|
||||
"on": "Iesl\u0113gta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izsl\u0113gts",
|
||||
"on": "Iesl\u0113gts"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izsl\u0113gts",
|
||||
"on": "Iesl\u0113gts"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Norm\u0101ls",
|
||||
"on": "Zems"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Norm\u0101ls",
|
||||
"on": "Auksts"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Atvienots",
|
||||
"on": "Piesl\u0113dzies"
|
||||
},
|
||||
"door": {
|
||||
"off": "Aizv\u0113rtas",
|
||||
"on": "Atv\u0113rtas"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Aizv\u0113rtas",
|
||||
"on": "Atv\u0113rtas"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Br\u012bvs",
|
||||
"on": "Sajusta"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Norm\u0101ls",
|
||||
"on": "Karsts"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Sl\u0113gts",
|
||||
"on": "Atsl\u0113gts"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Sauss",
|
||||
"on": "Slapj\u0161"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Br\u012bvs",
|
||||
"on": "Sajusta"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Br\u012bvs",
|
||||
"on": "Aiz\u0146emts"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Aizv\u0113rts",
|
||||
"on": "Atv\u0113rts"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Promb\u016btne",
|
||||
"on": "M\u0101j\u0101s"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Probl\u0113ma"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Dro\u0161i",
|
||||
"on": "Nedro\u0161i"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Br\u012bvs",
|
||||
"on": "Sajusta"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Br\u012bvs",
|
||||
"on": "Sajusts"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Br\u012bvs",
|
||||
"on": "Sajusts"
|
||||
},
|
||||
"window": {
|
||||
"off": "Aizv\u0113rts",
|
||||
"on": "Atv\u0113rts"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Piesl\u0113gta",
|
||||
"disarmed": "Atsl\u0113gta",
|
||||
"armed_home": "Piesl\u0113gta m\u0101j\u0101s",
|
||||
"armed_away": "Piesl\u0113gta uz promb\u016btni",
|
||||
"armed_night": "Piesl\u0113gta uz nakti",
|
||||
"armed_custom_bypass": "Piesl\u0113gts piel\u0101gots apvedce\u013c\u0161",
|
||||
"pending": "Gaida",
|
||||
"arming": "Piesl\u0113dzas",
|
||||
"disarming": "Atsl\u0113dzas",
|
||||
"triggered": "Aktiviz\u0113ta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izsl\u0113gts",
|
||||
"on": "Iesl\u0113gts"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izsl\u0113gts",
|
||||
"on": "Iesl\u0113gts"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Ieraksta",
|
||||
"streaming": "Straum\u0113",
|
||||
"idle": "D\u012bkst\u0101ve"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izsl\u0113gts",
|
||||
"heat": "Sild\u012b\u0161ana",
|
||||
"cool": "Dzes\u0113\u0161ana",
|
||||
"heat_cool": "Sild\u012bt / Atdzes\u0113t",
|
||||
"auto": "Auto",
|
||||
"dry": "Sauss",
|
||||
"fan_only": "Tikai ventilators"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Konfigur\u0113t",
|
||||
"configured": "Konfigur\u0113ts"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Atv\u0113rts",
|
||||
"opening": "Atveras",
|
||||
"closed": "Sl\u0113gts",
|
||||
"closing": "Sl\u0113dzas",
|
||||
"stopped": "Aptur\u0113ts"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "M\u0101j\u0101s",
|
||||
"not_home": "Prom"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izsl\u0113gts",
|
||||
"on": "Iesl\u0113gts"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izsl\u0113gta",
|
||||
"on": "Iesl\u0113gta",
|
||||
"home": "M\u0101j\u0101s",
|
||||
"not_home": "Promb\u016btn\u0113",
|
||||
"open": "Atv\u0113rta",
|
||||
"closed": "Sl\u0113gta",
|
||||
"locked": "Blo\u0137\u0113ta",
|
||||
"unlocked": "Atblo\u0137\u0113ta",
|
||||
"ok": "OK",
|
||||
"problem": "Probl\u0113ma"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izsl\u0113gta",
|
||||
"on": "Iesl\u0113gta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Aizsl\u0113gts",
|
||||
"unlocked": "Atsl\u0113gts"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izsl\u0113gts",
|
||||
"on": "Iesl\u0113gts",
|
||||
"playing": "Atska\u0146o",
|
||||
"paused": "Aptur\u0113ts",
|
||||
"idle": "D\u012bkst\u0101v\u0113",
|
||||
"standby": "Gaid\u012b\u0161anas re\u017e\u012bm\u0101"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "M\u0101j\u0101s",
|
||||
"not_home": "Promb\u016btne"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "Labi",
|
||||
"problem": "Probl\u0113ma"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izsl\u0113gta",
|
||||
"on": "Iesl\u0113gts"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izsl\u0113gts",
|
||||
"on": "Iesl\u0113gts"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Virs horizonta",
|
||||
"below_horizon": "Zem horizonta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Notiek uzkop\u0161ana",
|
||||
"docked": "Pie doka",
|
||||
"error": "K\u013c\u016bda",
|
||||
"idle": "D\u012bkst\u0101v\u0113",
|
||||
"off": "Izsl\u0113gts",
|
||||
"on": "Iesl\u0113gts",
|
||||
"paused": "Aptur\u0113ts",
|
||||
"returning": "Ce\u013c\u0101 pie doka"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "akt\u012bvs",
|
||||
"idle": "d\u012bkst\u0101ve",
|
||||
"paused": "aptur\u0113ts"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Skaidrs, nakts",
|
||||
"cloudy": "M\u0101ko\u0146ains",
|
||||
"exceptional": "Iz\u0146\u0113muma k\u0101rt\u0101",
|
||||
"fog": "Migla",
|
||||
"hail": "Krusa",
|
||||
"lightning": "Zibens",
|
||||
"lightning-rainy": "Zibens, lietus",
|
||||
"partlycloudy": "Da\u013c\u0113ji apm\u0101cies",
|
||||
"pouring": "Lietusg\u0101ze",
|
||||
"rainy": "Lietains",
|
||||
"snowy": "Sniegs",
|
||||
"snowy-rainy": "Sniegs, lietus",
|
||||
"sunny": "Saulains",
|
||||
"windy": "V\u0113jains",
|
||||
"windy-variant": "V\u0113jains"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Inicializ\u0113",
|
||||
"dead": "Beigta",
|
||||
"sleeping": "Gu\u013c",
|
||||
"ready": "Gatavs"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Inicializ\u0113 ({query_stage})",
|
||||
"dead": "Beigta ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,343 @@
|
||||
{
|
||||
"component": {
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normalt",
|
||||
"on": "Lavt"
|
||||
},
|
||||
"cold": {
|
||||
"off": "",
|
||||
"on": "Kald"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Frakoblet",
|
||||
"on": "Tilkoblet"
|
||||
},
|
||||
"door": {
|
||||
"off": "Lukket",
|
||||
"on": "\u00c5pen"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Lukket",
|
||||
"on": "\u00c5pen"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Klar",
|
||||
"on": "Oppdaget"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normal",
|
||||
"on": "Varm"
|
||||
},
|
||||
"lock": {
|
||||
"off": "L\u00e5st",
|
||||
"on": "Ul\u00e5st"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "T\u00f8rr",
|
||||
"on": "Fuktig"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Klar",
|
||||
"on": "Oppdaget"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Klar",
|
||||
"on": "Oppdaget"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Lukket",
|
||||
"on": "\u00c5pen"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Borte",
|
||||
"on": "Hjemme"
|
||||
},
|
||||
"problem": {
|
||||
"off": "",
|
||||
"on": ""
|
||||
},
|
||||
"safety": {
|
||||
"off": "Sikker",
|
||||
"on": "Usikker"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Klar",
|
||||
"on": "Oppdaget"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Klar",
|
||||
"on": "Oppdaget"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Klar",
|
||||
"on": "Oppdaget"
|
||||
},
|
||||
"window": {
|
||||
"off": "Lukket",
|
||||
"on": "\u00c5pent"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Armert",
|
||||
"disarmed": "Avsl\u00e5tt",
|
||||
"armed_home": "Armert hjemme",
|
||||
"armed_away": "Armert borte",
|
||||
"armed_night": "Armert natt",
|
||||
"armed_custom_bypass": "Armert tilpasset unntak",
|
||||
"pending": "Venter",
|
||||
"arming": "Armerer",
|
||||
"disarming": "Skrur av",
|
||||
"triggered": "Utl\u00f8st"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Opptak",
|
||||
"streaming": "Str\u00f8mmer",
|
||||
"idle": "Inaktiv"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"heat": "Varme",
|
||||
"cool": "Kj\u00f8ling",
|
||||
"heat_cool": "Varme/kj\u00f8ling",
|
||||
"auto": "Auto",
|
||||
"dry": "T\u00f8rr",
|
||||
"fan_only": "Kun vifte"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Konfigurer",
|
||||
"configured": "Konfigurert"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "\u00c5pen",
|
||||
"opening": "\u00c5pner",
|
||||
"closed": "Lukket",
|
||||
"closing": "Lukker",
|
||||
"stopped": "Stoppet"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Hjemme",
|
||||
"not_home": "Borte"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5",
|
||||
"home": "Hjemme",
|
||||
"not_home": "Borte",
|
||||
"open": "\u00c5pen",
|
||||
"closed": "Lukket",
|
||||
"locked": "L\u00e5st",
|
||||
"unlocked": "Ul\u00e5st",
|
||||
"ok": "",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "L\u00e5st",
|
||||
"unlocked": "Ul\u00e5st"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5",
|
||||
"playing": "Spiller",
|
||||
"paused": "Pauset",
|
||||
"idle": "Inaktiv",
|
||||
"standby": "Avventer"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Hjemme",
|
||||
"not_home": "Borte"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Over horisonten",
|
||||
"below_horizon": "Under horisonten"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Rengj\u00f8r",
|
||||
"docked": "Dokket",
|
||||
"error": "Feil",
|
||||
"idle": "Inaktiv",
|
||||
"off": "Av",
|
||||
"on": "P\u00e5",
|
||||
"paused": "Pauset",
|
||||
"returning": "Returner til dokk"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "aktiv",
|
||||
"idle": "inaktiv",
|
||||
"paused": "pauset"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Klart, natt",
|
||||
"cloudy": "Skyet",
|
||||
"exceptional": "Eksepsjonell",
|
||||
"fog": "T\u00e5ke",
|
||||
"hail": "Hagl",
|
||||
"lightning": "Lyn",
|
||||
"lightning-rainy": "Lyn, regn",
|
||||
"partlycloudy": "Delvis skyet",
|
||||
"pouring": "Kraftig nedb\u00f8r",
|
||||
"rainy": "Regn",
|
||||
"snowy": "Sn\u00f8",
|
||||
"snowy-rainy": "Sludd",
|
||||
"sunny": "Solfylt",
|
||||
"windy": "Vind",
|
||||
"windy-variant": "Vind"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Initialiserer",
|
||||
"dead": "D\u00f8d",
|
||||
"sleeping": "Sover",
|
||||
"ready": "Klar"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Initialiserer ({query_stage})",
|
||||
"dead": "D\u00f8d ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Uit",
|
||||
"on": "Aan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Initialiseren",
|
||||
"dead": "Onbereikbaar",
|
||||
"sleeping": "Slaapt",
|
||||
"ready": "Gereed"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Initialiseren ( {query_stage} )",
|
||||
"dead": "Onbereikbaar ({query_stage})"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "Dag",
|
||||
"night": "Nacht"
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Uit",
|
||||
"on": "Aan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Uit",
|
||||
"on": "Aan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Uit",
|
||||
"on": "Aan"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normaal",
|
||||
"on": "Laag"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normaal",
|
||||
"on": "Koud"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Verbroken",
|
||||
"on": "Verbonden"
|
||||
},
|
||||
"door": {
|
||||
"off": "Dicht",
|
||||
"on": "Open"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Dicht",
|
||||
"on": "Open"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Niet gedetecteerd",
|
||||
"on": "Gedetecteerd"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normaal",
|
||||
"on": "Heet"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Vergrendeld",
|
||||
"on": "Ontgrendeld"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Droog",
|
||||
"on": "Vochtig"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Niet gedetecteerd",
|
||||
"on": "Gedetecteerd"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Niet gedetecteerd",
|
||||
"on": "Gedetecteerd"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Gesloten",
|
||||
"on": "Open"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Afwezig",
|
||||
"on": "Thuis"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Probleem"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Veilig",
|
||||
"on": "Onveilig"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Niet gedetecteerd",
|
||||
"on": "Gedetecteerd"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Niet gedetecteerd",
|
||||
"on": "Gedetecteerd"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Niet gedetecteerd",
|
||||
"on": "Gedetecteerd"
|
||||
},
|
||||
"window": {
|
||||
"off": "Dicht",
|
||||
"on": "Open"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Vergrendeld",
|
||||
"unlocked": "Ontgrendeld"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Open",
|
||||
"opening": "Opent",
|
||||
"closed": "Gesloten",
|
||||
"closing": "Sluit",
|
||||
"stopped": "Gestopt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Ingeschakeld",
|
||||
"disarmed": "Uitgeschakeld",
|
||||
"armed_home": "Ingeschakeld thuis",
|
||||
"armed_away": "Ingeschakeld afwezig",
|
||||
"armed_night": "Ingeschakeld nacht",
|
||||
"armed_custom_bypass": "Ingeschakeld met overbrugging(en)",
|
||||
"pending": "In wacht",
|
||||
"arming": "Schakelt in",
|
||||
"disarming": "Schakelt uit",
|
||||
"triggered": "Geactiveerd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Uit",
|
||||
"on": "Aan",
|
||||
"playing": "Afspelen",
|
||||
"paused": "Gepauzeerd",
|
||||
"idle": "Inactief",
|
||||
"standby": "Standby"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Thuis",
|
||||
"not_home": "Afwezig"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Reinigen",
|
||||
"docked": "Gedockt",
|
||||
"error": "Fout",
|
||||
"idle": "Inactief",
|
||||
"off": "Uit",
|
||||
"on": "Aan",
|
||||
"paused": "Gepauzeerd",
|
||||
"returning": "Terugkeren naar dock"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Uit",
|
||||
"on": "Aan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Uit",
|
||||
"heat": "Verwarmen",
|
||||
"cool": "Koelen",
|
||||
"heat_cool": "Verwarmen/Koelen",
|
||||
"auto": "Auto",
|
||||
"dry": "Droog",
|
||||
"fan_only": "Alleen ventilatie"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Uit",
|
||||
"on": "Aan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Uit",
|
||||
"on": "Aan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Opnemen",
|
||||
"streaming": "Streamen",
|
||||
"idle": "Inactief"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Configureer",
|
||||
"configured": "Geconfigureerd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Uit",
|
||||
"on": "Aan",
|
||||
"home": "Thuis",
|
||||
"not_home": "Afwezig",
|
||||
"open": "Open",
|
||||
"closed": "Gesloten",
|
||||
"locked": "Vergrendeld",
|
||||
"unlocked": "Ontgrendeld",
|
||||
"ok": "OK",
|
||||
"problem": "Probleem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Uit",
|
||||
"on": "Aan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Thuis",
|
||||
"not_home": "Afwezig"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "OK",
|
||||
"problem": "Probleem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Uit",
|
||||
"on": "Aan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Uit",
|
||||
"on": "Aan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Boven de horizon",
|
||||
"below_horizon": "Onder de horizon"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "Actief",
|
||||
"idle": "Inactief",
|
||||
"paused": "Gepauzeerd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Helder, nacht",
|
||||
"cloudy": "Bewolkt",
|
||||
"exceptional": "Uitzonderlijk",
|
||||
"fog": "Mist",
|
||||
"hail": "Hagel",
|
||||
"lightning": "Bliksem",
|
||||
"lightning-rainy": "Bliksem, regenachtig",
|
||||
"partlycloudy": "Gedeeltelijk bewolkt",
|
||||
"pouring": "Regen",
|
||||
"rainy": "Regenachtig",
|
||||
"snowy": "Sneeuwachtig",
|
||||
"snowy-rainy": "Sneeuw-, regenachtig",
|
||||
"sunny": "Zonnig",
|
||||
"windy": "Winderig",
|
||||
"windy-variant": "Winderig"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,343 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Initialiserer",
|
||||
"dead": "D\u00f8d",
|
||||
"sleeping": "S\u00f8v",
|
||||
"ready": "Klar"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Initialiserer ({query_stage})",
|
||||
"dead": "D\u00f8d ({query_stage})"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normalt",
|
||||
"on": "L\u00e5gt"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normal",
|
||||
"on": "Kald"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Fr\u00e5kopla",
|
||||
"on": "Tilkopla"
|
||||
},
|
||||
"door": {
|
||||
"off": "Lukka",
|
||||
"on": "Open"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Lukka",
|
||||
"on": "Open"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Ikkje oppdaga",
|
||||
"on": "Oppdaga"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normal",
|
||||
"on": "Varm"
|
||||
},
|
||||
"lock": {
|
||||
"off": "L\u00e5st",
|
||||
"on": "Ul\u00e5st"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "T\u00f8rr",
|
||||
"on": "V\u00e5t"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Ikkje oppdaga",
|
||||
"on": "Oppdaga"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Ikkje oppdaga",
|
||||
"on": "Oppdaga"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Lukka",
|
||||
"on": "Open"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Borte",
|
||||
"on": "Heime"
|
||||
},
|
||||
"problem": {
|
||||
"off": "Ok",
|
||||
"on": "Problem"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Sikker",
|
||||
"on": "Usikker"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Ikkje oppdaga",
|
||||
"on": "Oppdaga"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Ikkje oppdaga",
|
||||
"on": "Oppdaga"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Ikkje oppdaga",
|
||||
"on": "Oppdaga"
|
||||
},
|
||||
"window": {
|
||||
"off": "Lukka",
|
||||
"on": "Open"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "P\u00e5sl\u00e5tt",
|
||||
"disarmed": "Avsl\u00e5tt",
|
||||
"armed_home": "P\u00e5 for heime",
|
||||
"armed_away": "P\u00e5 for borte",
|
||||
"armed_night": "P\u00e5 for natta",
|
||||
"armed_custom_bypass": "Armert tilpassa unntak",
|
||||
"pending": "I vente av",
|
||||
"arming": "Skrur p\u00e5",
|
||||
"disarming": "Skrur av",
|
||||
"triggered": "Utl\u00f8yst"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Opptak",
|
||||
"streaming": "Str\u00f8ymer",
|
||||
"idle": "Inaktiv"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"heat": "Varme",
|
||||
"cool": "Kj\u00f8le",
|
||||
"heat_cool": "Oppvarming/Nedkj\u00f8ling",
|
||||
"auto": "Auto",
|
||||
"dry": "T\u00f8rr",
|
||||
"fan_only": "Berre vifte"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Konfigurerer",
|
||||
"configured": "Konfigurert"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Open",
|
||||
"opening": "Opnar",
|
||||
"closed": "Lukka",
|
||||
"closing": "Lukkar",
|
||||
"stopped": "Stoppa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Heime",
|
||||
"not_home": "Borte"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5",
|
||||
"home": "Heime",
|
||||
"not_home": "Borte",
|
||||
"open": "Open",
|
||||
"closed": "Lukka",
|
||||
"locked": "L\u00e5st",
|
||||
"unlocked": "Ul\u00e5st",
|
||||
"ok": "Ok",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "L\u00e5st",
|
||||
"unlocked": "Ul\u00e5st"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5",
|
||||
"playing": "Spelar",
|
||||
"paused": "Pausa",
|
||||
"idle": "Inaktiv",
|
||||
"standby": "Avventer"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Heime",
|
||||
"not_home": "Borte "
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "Ok",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Over horisonten",
|
||||
"below_horizon": "Under horisonten"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Reingjer",
|
||||
"docked": "Parkert",
|
||||
"error": "Feil",
|
||||
"idle": "Tomgang",
|
||||
"off": "Av",
|
||||
"on": "P\u00e5",
|
||||
"paused": "Pausa",
|
||||
"returning": "G\u00e5 tilbake til ladestasjonen"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "aktiv",
|
||||
"idle": "tomgang",
|
||||
"paused": "pausa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Klart, natt",
|
||||
"cloudy": "Overskya",
|
||||
"exceptional": "Utmerka",
|
||||
"fog": "T\u00e5ke",
|
||||
"hail": "Hagl",
|
||||
"lightning": "Lyn",
|
||||
"lightning-rainy": "Lyn, regn",
|
||||
"partlycloudy": "Delvis overskya",
|
||||
"pouring": "P\u00f8sande",
|
||||
"rainy": "Regn",
|
||||
"snowy": "Sn\u00f8",
|
||||
"snowy-rainy": "Sn\u00f8, regn",
|
||||
"sunny": "Mykje sol",
|
||||
"windy": "Vind",
|
||||
"windy-variant": "Vind"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,127 @@
|
||||
{
|
||||
"component": {
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Initialiserer",
|
||||
"dead": "D\u00f8d",
|
||||
"sleeping": "Sover",
|
||||
"ready": "Klar"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "Dag",
|
||||
"night": "Natt"
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"battery": {
|
||||
"off": "Normalt",
|
||||
"on": "Lavt"
|
||||
},
|
||||
"cold": {
|
||||
"on": "Kald"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Klar",
|
||||
"on": "Oppdaget"
|
||||
},
|
||||
"heat": {
|
||||
"on": "Varm"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "T\u00f8rr",
|
||||
"on": "V\u00e5t"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Problem"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Sikker",
|
||||
"on": "Usikker"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"closing": "Lukker",
|
||||
"stopped": "Stoppet"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Armert",
|
||||
"disarmed": "Avsl\u00e5tt",
|
||||
"armed_home": "Armert hjemme",
|
||||
"armed_away": "Armert borte",
|
||||
"armed_night": "Armert natt",
|
||||
"armed_custom_bypass": "Armert tilpasset unntak",
|
||||
"pending": "Ventende",
|
||||
"arming": "Armerer",
|
||||
"disarming": "Disarmer",
|
||||
"triggered": "Utl\u00f8st"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"playing": "Spiller"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Rengj\u00f8ring",
|
||||
"docked": "Dokket",
|
||||
"error": "Feil",
|
||||
"returning": "Returner til dokken"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"heat": "Varme"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Opptak",
|
||||
"streaming": "Str\u00f8mming"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Klart, natt",
|
||||
"cloudy": "Skyet",
|
||||
"exceptional": "Eksepsjonell",
|
||||
"fog": "T\u00e5ke",
|
||||
"hail": "Hagl",
|
||||
"lightning": "Lyn",
|
||||
"lightning-rainy": "Lyn, regnfult",
|
||||
"partlycloudy": "Delvis skyet",
|
||||
"pouring": "Kraftig regn",
|
||||
"rainy": "Regnfull",
|
||||
"snowy": "Sn\u00f8",
|
||||
"snowy-rainy": "Sludd",
|
||||
"sunny": "Solfylt",
|
||||
"windy": "Vindfult",
|
||||
"windy-variant": "Vindfult"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "wy\u0142\u0105czony",
|
||||
"on": "w\u0142\u0105czony"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "inicjalizacja",
|
||||
"dead": "martwy",
|
||||
"sleeping": "u\u015bpiony",
|
||||
"ready": "gotowy"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "inicjalizacja",
|
||||
"dead": "martwy"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "Dzie\u0144",
|
||||
"night": "Noc"
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "wy\u0142\u0105czony",
|
||||
"on": "w\u0142\u0105czony"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "wy\u0142\u0105czony",
|
||||
"on": "w\u0142\u0105czony"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "wy\u0142\u0105czony",
|
||||
"on": "w\u0142\u0105czony"
|
||||
},
|
||||
"battery": {
|
||||
"off": "na\u0142adowana",
|
||||
"on": "roz\u0142adowana"
|
||||
},
|
||||
"cold": {
|
||||
"off": "normalnie",
|
||||
"on": "zimno"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "offline",
|
||||
"on": "online"
|
||||
},
|
||||
"door": {
|
||||
"off": "zamkni\u0119te",
|
||||
"on": "otwarte"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "zamkni\u0119ta",
|
||||
"on": "otwarta"
|
||||
},
|
||||
"gas": {
|
||||
"off": "brak",
|
||||
"on": "wykryto"
|
||||
},
|
||||
"heat": {
|
||||
"off": "normalnie",
|
||||
"on": "gor\u0105co"
|
||||
},
|
||||
"lock": {
|
||||
"off": "zamkni\u0119ty",
|
||||
"on": "otwarty"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "brak wilgoci",
|
||||
"on": "wilgo\u0107"
|
||||
},
|
||||
"motion": {
|
||||
"off": "brak",
|
||||
"on": "wykryto"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "brak",
|
||||
"on": "wykryto"
|
||||
},
|
||||
"opening": {
|
||||
"off": "zamkni\u0119te",
|
||||
"on": "otwarte"
|
||||
},
|
||||
"presence": {
|
||||
"off": "poza domem",
|
||||
"on": "w domu"
|
||||
},
|
||||
"problem": {
|
||||
"off": "ok",
|
||||
"on": "problem"
|
||||
},
|
||||
"safety": {
|
||||
"off": "brak zagro\u017cenia",
|
||||
"on": "zagro\u017cenie"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "brak",
|
||||
"on": "wykryto"
|
||||
},
|
||||
"sound": {
|
||||
"off": "brak",
|
||||
"on": "wykryto"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "brak",
|
||||
"on": "wykryto"
|
||||
},
|
||||
"window": {
|
||||
"off": "zamkni\u0119te",
|
||||
"on": "otwarte"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "zamkni\u0119ty",
|
||||
"unlocked": "otwarty"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "otwarta",
|
||||
"opening": "otwieranie",
|
||||
"closed": "zamkni\u0119ta",
|
||||
"closing": "zamykanie",
|
||||
"stopped": "zatrzymany"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "uzbrojony",
|
||||
"disarmed": "rozbrojony",
|
||||
"armed_home": "uzbrojony (w domu)",
|
||||
"armed_away": "uzbrojony (poza domem)",
|
||||
"armed_night": "uzbrojony (noc)",
|
||||
"armed_custom_bypass": "uzbrojony (cz\u0119\u015bciowo)",
|
||||
"pending": "oczekuje",
|
||||
"arming": "uzbrajanie",
|
||||
"disarming": "rozbrajanie",
|
||||
"triggered": "wyzwolony"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "wy\u0142\u0105czony",
|
||||
"on": "w\u0142\u0105czony",
|
||||
"playing": "odtwarzanie",
|
||||
"paused": "wstrzymany",
|
||||
"idle": "nieaktywny",
|
||||
"standby": "tryb czuwania"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "w domu",
|
||||
"not_home": "poza domem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "sprz\u0105tanie",
|
||||
"docked": "w stacji dokuj\u0105cej",
|
||||
"error": "b\u0142\u0105d",
|
||||
"idle": "nieaktywny",
|
||||
"off": "wy\u0142\u0105czony",
|
||||
"on": "w\u0142\u0105czony",
|
||||
"paused": "wstrzymany",
|
||||
"returning": "powr\u00f3t do stacji dokuj\u0105cej"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "wy\u0142\u0105czony",
|
||||
"on": "w\u0142\u0105czony"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "wy\u0142\u0105czony",
|
||||
"heat": "grzanie",
|
||||
"cool": "ch\u0142odzenie",
|
||||
"heat_cool": "grzanie/ch\u0142odzenie",
|
||||
"auto": "automatyczny",
|
||||
"dry": "osuszanie",
|
||||
"fan_only": "tylko wentylator"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "wy\u0142\u0105czony",
|
||||
"on": "w\u0142\u0105czony"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "wy\u0142\u0105czony",
|
||||
"on": "w\u0142\u0105czony"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "nagrywanie",
|
||||
"streaming": "strumieniowanie",
|
||||
"idle": "nieaktywna"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "skonfiguruj",
|
||||
"configured": "skonfigurowany"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "wy\u0142\u0105czony",
|
||||
"on": "w\u0142\u0105czony",
|
||||
"home": "w domu",
|
||||
"not_home": "poza domem",
|
||||
"open": "otwarte",
|
||||
"closed": "zamkni\u0119te",
|
||||
"locked": "zamkni\u0119ty",
|
||||
"unlocked": "otwarty",
|
||||
"ok": "ok",
|
||||
"problem": "problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "wy\u0142\u0105czony",
|
||||
"on": "w\u0142\u0105czony"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "w domu",
|
||||
"not_home": "poza domem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "ok",
|
||||
"problem": "problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "wy\u0142\u0105czony",
|
||||
"on": "w\u0142\u0105czony"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "wy\u0142\u0105czony",
|
||||
"on": "w\u0142\u0105czony"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "powy\u017cej horyzontu",
|
||||
"below_horizon": "poni\u017cej horyzontu"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "aktywny",
|
||||
"idle": "nieaktywny",
|
||||
"paused": "wstrzymany"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "pogodnie, noc",
|
||||
"cloudy": "pochmurno",
|
||||
"exceptional": "wyj\u0105tkowy",
|
||||
"fog": "mg\u0142a",
|
||||
"hail": "grad",
|
||||
"lightning": "b\u0142yskawice",
|
||||
"lightning-rainy": "burza",
|
||||
"partlycloudy": "cz\u0119\u015bciowe zachmurzenie",
|
||||
"pouring": "ulewa",
|
||||
"rainy": "deszczowo",
|
||||
"snowy": "\u015bnie\u017cnie",
|
||||
"snowy-rainy": "\u015bnie\u017cnie, deszczowo",
|
||||
"sunny": "s\u0142onecznie",
|
||||
"windy": "wietrznie",
|
||||
"windy-variant": "wietrznie"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligado",
|
||||
"on": "Ligado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Iniciando",
|
||||
"dead": "Morto",
|
||||
"sleeping": "Dormindo",
|
||||
"ready": "Pronto"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Iniciando ( {query_stage} )",
|
||||
"dead": "Morto ({query_stage})"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "Dia",
|
||||
"night": "Noite"
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligada",
|
||||
"on": "Ligada"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Armado",
|
||||
"disarmed": "Desarmado",
|
||||
"armed_home": "Armado casa",
|
||||
"armed_away": "Armado ausente",
|
||||
"armed_night": "Armado noite",
|
||||
"armed_custom_bypass": "Armado em \u00e1reas espec\u00edficas",
|
||||
"pending": "Pendente",
|
||||
"arming": "Armando",
|
||||
"disarming": "Desarmando",
|
||||
"triggered": "Acionado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Trancado",
|
||||
"unlocked": "Destrancado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligado",
|
||||
"on": "Ligado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligado",
|
||||
"on": "Ligado"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normal",
|
||||
"on": "Fraca"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normal",
|
||||
"on": "Frio"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Desconectado",
|
||||
"on": "Conectado"
|
||||
},
|
||||
"door": {
|
||||
"off": "Fechado",
|
||||
"on": "Aberto"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Fechado",
|
||||
"on": "Aberto"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Limpo",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normal",
|
||||
"on": "Quente"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Trancado",
|
||||
"on": "Desbloqueado"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Seco",
|
||||
"on": "Molhado"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Desligado",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Desocupado",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Fechado",
|
||||
"on": "Aberto"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Ausente",
|
||||
"on": "Em casa"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Problema"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Seguro",
|
||||
"on": "N\u00e3o seguro"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Limpo",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Limpo",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Limpo",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"window": {
|
||||
"off": "Fechado",
|
||||
"on": "Aberto"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligado",
|
||||
"on": "Ativa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Inativo",
|
||||
"on": "Ativo"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Gravando",
|
||||
"streaming": "Transmitindo",
|
||||
"idle": "Ocioso"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligado",
|
||||
"heat": "Quente",
|
||||
"cool": "Frio",
|
||||
"heat_cool": "Quente/Frio",
|
||||
"auto": "Autom\u00e1tico",
|
||||
"dry": "Seco",
|
||||
"fan_only": "Apenas ventilador"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Configurar",
|
||||
"configured": "Configurado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Aberto",
|
||||
"opening": "Abrindo",
|
||||
"closed": "Fechado",
|
||||
"closing": "Fechando",
|
||||
"stopped": "Parado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Em casa",
|
||||
"not_home": "Ausente"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligado",
|
||||
"on": "Ligado",
|
||||
"home": "Em casa",
|
||||
"not_home": "Ausente",
|
||||
"open": "Aberto",
|
||||
"closed": "Fechado",
|
||||
"locked": "Trancado",
|
||||
"unlocked": "Destrancado",
|
||||
"ok": "OK",
|
||||
"problem": "Problema"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligado",
|
||||
"on": "Ligado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligado",
|
||||
"on": "Ligado",
|
||||
"playing": "Tocando",
|
||||
"paused": "Pausado",
|
||||
"idle": "Ocioso",
|
||||
"standby": "Em espera"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Em casa",
|
||||
"not_home": "Ausente"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "Ok",
|
||||
"problem": "Problema"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligado",
|
||||
"on": "Ligado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligado",
|
||||
"on": "Ligado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Acima do horizonte",
|
||||
"below_horizon": "Abaixo do horizonte"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligado",
|
||||
"on": "Ligado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Limpando",
|
||||
"docked": "Baseado",
|
||||
"error": "Erro",
|
||||
"idle": "Em espera",
|
||||
"off": "Desligado",
|
||||
"on": "Ligado",
|
||||
"paused": "Pausado",
|
||||
"returning": "Retornando para base"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "ativo",
|
||||
"idle": "ocioso",
|
||||
"paused": "Pausado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Noite clara",
|
||||
"cloudy": "Nublado",
|
||||
"exceptional": "Excepcional",
|
||||
"fog": "Nevoeiro",
|
||||
"hail": "Granizo",
|
||||
"lightning": "Raios",
|
||||
"lightning-rainy": "Raios, chuvoso",
|
||||
"partlycloudy": "Parcialmente nublado",
|
||||
"pouring": "Torrencial",
|
||||
"rainy": "Chuvoso",
|
||||
"snowy": "Neve",
|
||||
"snowy-rainy": "Neve, chuva",
|
||||
"sunny": "Ensolarado",
|
||||
"windy": "Ventoso",
|
||||
"windy-variant": "Ventoso"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligado",
|
||||
"on": "Ligado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "A inicializar",
|
||||
"dead": "Morto",
|
||||
"sleeping": "Adormecido",
|
||||
"ready": "Pronto"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "A inicializar ({query_stage})",
|
||||
"dead": "Morto ({query_stage})"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "Dia",
|
||||
"night": "Noite"
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligada",
|
||||
"on": "Ligada"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligado",
|
||||
"on": "Ligado"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normal",
|
||||
"on": "Baixo"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normal",
|
||||
"on": "Frio"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Desligado",
|
||||
"on": "Ligado"
|
||||
},
|
||||
"door": {
|
||||
"off": "Fechada",
|
||||
"on": "Aberta"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Fechada",
|
||||
"on": "Aberta"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Limpo",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normal",
|
||||
"on": "Quente"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Trancada",
|
||||
"on": "Destrancada"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Seco",
|
||||
"on": "H\u00famido"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Limpo",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Limpo",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Fechado",
|
||||
"on": "Aberto"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Fora",
|
||||
"on": "Casa"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Problema"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Seguro",
|
||||
"on": "Inseguro"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Limpo",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Limpo",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Limpo",
|
||||
"on": "Detetado"
|
||||
},
|
||||
"window": {
|
||||
"off": "Fechada",
|
||||
"on": "Aberta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Aberta",
|
||||
"opening": "A abrir",
|
||||
"closed": "Fechada",
|
||||
"closing": "A fechar",
|
||||
"stopped": "Parado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Armado",
|
||||
"disarmed": "Desarmado",
|
||||
"armed_home": "Armado Casa",
|
||||
"armed_away": "Armado ausente",
|
||||
"armed_night": "Armado noite",
|
||||
"armed_custom_bypass": "Armado com desvio personalizado",
|
||||
"pending": "Pendente",
|
||||
"arming": "A armar",
|
||||
"disarming": "A desarmar",
|
||||
"triggered": "Despoletado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligado",
|
||||
"on": "Ligado",
|
||||
"playing": "A reproduzir",
|
||||
"paused": "Em pausa",
|
||||
"idle": "Em espera",
|
||||
"standby": "Em espera"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Casa",
|
||||
"not_home": "Fora"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "A limpar",
|
||||
"docked": "Encaixado",
|
||||
"error": "Erro",
|
||||
"idle": "Em espera",
|
||||
"off": "Desligado",
|
||||
"on": "Ligado",
|
||||
"paused": "Em pausa",
|
||||
"returning": "A regressar \u00e0 doca"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligada",
|
||||
"on": "Ligado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Trancada",
|
||||
"unlocked": "Destrancada"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligado",
|
||||
"on": "Ligado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligado",
|
||||
"on": "Ligado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "A gravar",
|
||||
"streaming": "A enviar",
|
||||
"idle": "Em espera"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligado",
|
||||
"heat": "Quente",
|
||||
"cool": "Frio",
|
||||
"heat_cool": "Calor / Frio",
|
||||
"auto": "Auto",
|
||||
"dry": "Desumidificar",
|
||||
"fan_only": "Apenas ventilar"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Configurar",
|
||||
"configured": "Configurado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligado",
|
||||
"on": "Ligado",
|
||||
"home": "Casa",
|
||||
"not_home": "Fora",
|
||||
"open": "Aberta",
|
||||
"closed": "Fechada",
|
||||
"locked": "Bloqueado",
|
||||
"unlocked": "Desbloqueado",
|
||||
"ok": "OK",
|
||||
"problem": "Problema"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligado",
|
||||
"on": "Ligado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Casa",
|
||||
"not_home": "Ausente"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "OK",
|
||||
"problem": "Problema"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desativado",
|
||||
"on": "Ligado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desativado",
|
||||
"on": "Ligado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Acima do horizonte",
|
||||
"below_horizon": "Abaixo do horizonte"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Desligado",
|
||||
"on": "Ligado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "ativo",
|
||||
"idle": "Em espera",
|
||||
"paused": "Em pausa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Limpo, Noite",
|
||||
"cloudy": "Nublado",
|
||||
"exceptional": "Excepcional",
|
||||
"fog": "Nevoeiro",
|
||||
"hail": "Granizo",
|
||||
"lightning": "Rel\u00e2mpago",
|
||||
"lightning-rainy": "Rel\u00e2mpagos, chuva",
|
||||
"partlycloudy": "Parcialmente nublado",
|
||||
"pouring": "Chuva forte",
|
||||
"rainy": "Chuva",
|
||||
"snowy": "Neve",
|
||||
"snowy-rainy": "Neve, chuva",
|
||||
"sunny": "Sol",
|
||||
"windy": "Vento fraco",
|
||||
"windy-variant": "Vento fraco"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,343 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Oprit",
|
||||
"on": "Pornit"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Se ini\u021bializeaz\u0103",
|
||||
"dead": "Inactiv",
|
||||
"sleeping": "Adormit",
|
||||
"ready": "Disponibil"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Se ini\u021bializeaz\u0103 ({query_stage})",
|
||||
"dead": "Inactiv ({query_stage})"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Oprit",
|
||||
"on": "Pornit"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normal",
|
||||
"on": "Sc\u0103zuta"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normal",
|
||||
"on": "Rece"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Deconectat",
|
||||
"on": "Conectat"
|
||||
},
|
||||
"door": {
|
||||
"off": "\u00cenchis",
|
||||
"on": "Deschis"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "\u00cenchis",
|
||||
"on": "Deschis"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Liber",
|
||||
"on": "Detec\u021bie"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normal",
|
||||
"on": "Fierbinte"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Blocat",
|
||||
"on": "Deblocat"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Uscat",
|
||||
"on": "Umed"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Liber",
|
||||
"on": "Detec\u021bie"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Liber",
|
||||
"on": "Detec\u021bie"
|
||||
},
|
||||
"opening": {
|
||||
"off": "\u00cenchis",
|
||||
"on": "Deschis"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Plecat",
|
||||
"on": "Acas\u0103"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Problem\u0103"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Sigur",
|
||||
"on": "Nesigur"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Liber",
|
||||
"on": "Detec\u021bie"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Liber",
|
||||
"on": "Detec\u021bie"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Liber",
|
||||
"on": "Detec\u021bie"
|
||||
},
|
||||
"window": {
|
||||
"off": "\u00cenchis",
|
||||
"on": "Deschis"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Armat",
|
||||
"disarmed": "Dezarmat",
|
||||
"armed_home": "Armat acas\u0103",
|
||||
"armed_away": "Armat plecat",
|
||||
"armed_night": "Armat noaptea",
|
||||
"armed_custom_bypass": "Armare personalizat\u0103",
|
||||
"pending": "\u00cen a\u0219teptare",
|
||||
"arming": "Armare",
|
||||
"disarming": "Dezarmare",
|
||||
"triggered": "Declan\u0219at"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Oprit",
|
||||
"on": "Pornit"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Oprit",
|
||||
"on": "Pornit"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "\u00cenregistrare",
|
||||
"streaming": "Streaming",
|
||||
"idle": "Inactiv"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Oprit",
|
||||
"heat": "C\u0103ldur\u0103",
|
||||
"cool": "Rece",
|
||||
"heat_cool": "\u00cenc\u0103lzire / R\u0103cire",
|
||||
"auto": "Auto",
|
||||
"dry": "Uscat",
|
||||
"fan_only": "Numai ventilator"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Configureaz\u0103",
|
||||
"configured": "Configurat"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Deschis",
|
||||
"opening": "Deschidere",
|
||||
"closed": "\u00cenchis",
|
||||
"closing": "\u00cenchidere",
|
||||
"stopped": "Oprit"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Acas\u0103",
|
||||
"not_home": "Plecat"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Oprit",
|
||||
"on": "Pornit"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Oprit",
|
||||
"on": "Pornit",
|
||||
"home": "Acas\u0103",
|
||||
"not_home": "Plecat",
|
||||
"open": "Deschis",
|
||||
"closed": "\u00cenchis",
|
||||
"locked": "Blocat",
|
||||
"unlocked": "Deblocat",
|
||||
"ok": "OK",
|
||||
"problem": "Problem\u0103"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Oprit",
|
||||
"on": "Pornit"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Oprit",
|
||||
"on": "Pornit"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Blocat",
|
||||
"unlocked": "Deblocat"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Oprit",
|
||||
"on": "Pornit",
|
||||
"playing": "Ruleaz\u0103",
|
||||
"paused": "\u00cen pauz\u0103",
|
||||
"idle": "Inactiv",
|
||||
"standby": "\u00cen a\u0219teptare"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Acas\u0103",
|
||||
"not_home": "Plecat"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "OK",
|
||||
"problem": "Problem\u0103"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Oprit",
|
||||
"on": "Pornit"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Oprit",
|
||||
"on": "Pornit"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Deasupra orizontului",
|
||||
"below_horizon": "Sub orizont"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Oprit",
|
||||
"on": "Pornit"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Cur\u0103\u021bare",
|
||||
"docked": "Andocat",
|
||||
"error": "Eroare",
|
||||
"idle": "Inactiv",
|
||||
"off": "Oprit",
|
||||
"on": "Pornit",
|
||||
"paused": "\u00centrerupt",
|
||||
"returning": "\u00cen curs de \u00eentoarcere la doc"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "activ",
|
||||
"idle": "inactiv",
|
||||
"paused": "\u00cen pauz\u0103"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Noapte senin\u0103",
|
||||
"cloudy": "Noros",
|
||||
"exceptional": "Excep\u0163ional",
|
||||
"fog": "Cea\u0163\u0103",
|
||||
"hail": "Grindin\u0103",
|
||||
"lightning": "Des\u0103rc\u0103ri electrice",
|
||||
"lightning-rainy": "Ploaie cu desc\u0103rc\u0103ri electrice",
|
||||
"partlycloudy": "Par\u021bial noros",
|
||||
"pouring": "Avers\u0103",
|
||||
"rainy": "Ploios",
|
||||
"snowy": "Z\u0103pad\u0103",
|
||||
"snowy-rainy": "Lapovi\u021b\u0103 \u0219i ninsoare",
|
||||
"sunny": "\u00eensorit",
|
||||
"windy": "Vant",
|
||||
"windy-variant": "Vant"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u044b\u043a\u043b",
|
||||
"on": "\u0412\u043a\u043b"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "\u0418\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f",
|
||||
"dead": "\u041d\u0435\u0438\u0441\u043f\u0440\u0430\u0432\u043d\u043e",
|
||||
"sleeping": "\u0420\u0435\u0436\u0438\u043c \u0441\u043d\u0430",
|
||||
"ready": "\u0413\u043e\u0442\u043e\u0432"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "\u0418\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f",
|
||||
"dead": "\u041d\u0435\u0438\u0441\u043f\u0440\u0430\u0432\u043d\u043e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "\u0414\u0435\u043d\u044c",
|
||||
"night": "\u041d\u043e\u0447\u044c"
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u044b\u043a\u043b",
|
||||
"on": "\u0412\u043a\u043b"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u044b\u043a\u043b",
|
||||
"on": "\u0412\u043a\u043b"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u044b\u043a\u043b",
|
||||
"on": "\u0412\u043a\u043b"
|
||||
},
|
||||
"battery": {
|
||||
"off": "\u041d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u044b\u0439",
|
||||
"on": "\u041d\u0438\u0437\u043a\u0438\u0439"
|
||||
},
|
||||
"cold": {
|
||||
"off": "\u041d\u043e\u0440\u043c\u0430",
|
||||
"on": "\u041e\u0445\u043b\u0430\u0436\u0434\u0435\u043d\u0438\u0435"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "\u041e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u043e",
|
||||
"on": "\u041f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u043e"
|
||||
},
|
||||
"door": {
|
||||
"off": "\u0417\u0430\u043a\u0440\u044b\u0442\u0430",
|
||||
"on": "\u041e\u0442\u043a\u0440\u044b\u0442\u0430"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "\u0417\u0430\u043a\u0440\u044b\u0442\u044b",
|
||||
"on": "\u041e\u0442\u043a\u0440\u044b\u0442\u044b"
|
||||
},
|
||||
"gas": {
|
||||
"off": "\u041d\u0435 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d",
|
||||
"on": "\u041e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d"
|
||||
},
|
||||
"heat": {
|
||||
"off": "\u041d\u043e\u0440\u043c\u0430",
|
||||
"on": "\u041d\u0430\u0433\u0440\u0435\u0432"
|
||||
},
|
||||
"lock": {
|
||||
"off": "\u0417\u0430\u043a\u0440\u044b\u0442",
|
||||
"on": "\u041e\u0442\u043a\u0440\u044b\u0442"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "\u0421\u0443\u0445\u043e",
|
||||
"on": "\u0412\u043b\u0430\u0436\u043d\u043e"
|
||||
},
|
||||
"motion": {
|
||||
"off": "\u041d\u0435\u0442 \u0434\u0432\u0438\u0436\u0435\u043d\u0438\u044f ",
|
||||
"on": "\u0414\u0432\u0438\u0436\u0435\u043d\u0438\u0435"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "\u041d\u0435 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u043e",
|
||||
"on": "\u041e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u043e"
|
||||
},
|
||||
"opening": {
|
||||
"off": "\u0417\u0430\u043a\u0440\u044b\u0442\u043e",
|
||||
"on": "\u041e\u0442\u043a\u0440\u044b\u0442\u043e"
|
||||
},
|
||||
"presence": {
|
||||
"off": "\u041d\u0435 \u0434\u043e\u043c\u0430",
|
||||
"on": "\u0414\u043e\u043c\u0430"
|
||||
},
|
||||
"problem": {
|
||||
"off": "\u041e\u041a",
|
||||
"on": "\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430"
|
||||
},
|
||||
"safety": {
|
||||
"off": "\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e",
|
||||
"on": "\u041d\u0435\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "\u041d\u0435\u0442 \u0434\u044b\u043c\u0430",
|
||||
"on": "\u0414\u044b\u043c"
|
||||
},
|
||||
"sound": {
|
||||
"off": "\u041d\u0435 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d",
|
||||
"on": "\u041e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "\u041d\u0435 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u0430",
|
||||
"on": "\u041e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u0430"
|
||||
},
|
||||
"window": {
|
||||
"off": "\u0417\u0430\u043a\u0440\u044b\u0442\u043e",
|
||||
"on": "\u041e\u0442\u043a\u0440\u044b\u0442\u043e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "\u0417\u0430\u043a\u0440\u044b\u0442",
|
||||
"unlocked": "\u041e\u0442\u043a\u0440\u044b\u0442"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "\u041e\u0442\u043a\u0440\u044b\u0442\u043e",
|
||||
"opening": "\u041e\u0442\u043a\u0440\u044b\u0432\u0430\u0435\u0442\u0441\u044f",
|
||||
"closed": "\u0417\u0430\u043a\u0440\u044b\u0442\u043e",
|
||||
"closing": "\u0417\u0430\u043a\u0440\u044b\u0432\u0430\u0435\u0442\u0441\u044f",
|
||||
"stopped": "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "\u041f\u043e\u0434 \u043e\u0445\u0440\u0430\u043d\u043e\u0439",
|
||||
"disarmed": "\u0421\u043d\u044f\u0442\u043e \u0441 \u043e\u0445\u0440\u0430\u043d\u044b",
|
||||
"armed_home": "\u041e\u0445\u0440\u0430\u043d\u0430 (\u0434\u043e\u043c\u0430)",
|
||||
"armed_away": "\u041e\u0445\u0440\u0430\u043d\u0430 (\u043d\u0435 \u0434\u043e\u043c\u0430)",
|
||||
"armed_night": "\u041e\u0445\u0440\u0430\u043d\u0430 (\u043d\u043e\u0447\u044c)",
|
||||
"armed_custom_bypass": "\u041e\u0445\u0440\u0430\u043d\u0430 \u0441 \u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f\u043c\u0438",
|
||||
"pending": "\u041f\u0435\u0440\u0435\u0445\u043e\u0434 \u043d\u0430 \u043e\u0445\u0440\u0430\u043d\u0443",
|
||||
"arming": "\u041f\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043d\u0430 \u043e\u0445\u0440\u0430\u043d\u0443",
|
||||
"disarming": "\u0421\u043d\u044f\u0442\u0438\u0435 \u0441 \u043e\u0445\u0440\u0430\u043d\u044b",
|
||||
"triggered": "\u0421\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u043d\u0438\u0435"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u043e",
|
||||
"on": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u043e",
|
||||
"playing": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435",
|
||||
"paused": "\u041f\u0430\u0443\u0437\u0430",
|
||||
"idle": "\u0411\u0435\u0437\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435",
|
||||
"standby": "\u041e\u0436\u0438\u0434\u0430\u043d\u0438\u0435"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u0414\u043e\u043c\u0430",
|
||||
"not_home": "\u041d\u0435 \u0434\u043e\u043c\u0430"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "\u0423\u0431\u043e\u0440\u043a\u0430",
|
||||
"docked": "\u0423 \u0434\u043e\u043a-\u0441\u0442\u0430\u043d\u0446\u0438\u0438",
|
||||
"error": "\u041e\u0448\u0438\u0431\u043a\u0430",
|
||||
"idle": "\u041e\u0436\u0438\u0434\u0430\u043d\u0438\u0435",
|
||||
"off": "\u0412\u044b\u043a\u043b\u044e\u0447\u0435\u043d",
|
||||
"on": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d",
|
||||
"paused": "\u041f\u0440\u0438\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d",
|
||||
"returning": "\u0412\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u0435\u0442\u0441\u044f \u043a \u0434\u043e\u043a-\u0441\u0442\u0430\u043d\u0446\u0438\u0438"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u044b\u043a\u043b",
|
||||
"on": "\u0412\u043a\u043b"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u043e",
|
||||
"heat": "\u041e\u0431\u043e\u0433\u0440\u0435\u0432",
|
||||
"cool": "\u041e\u0445\u043b\u0430\u0436\u0434\u0435\u043d\u0438\u0435",
|
||||
"heat_cool": "\u041e\u0431\u043e\u0433\u0440\u0435\u0432 / \u041e\u0445\u043b\u0430\u0436\u0434\u0435\u043d\u0438\u0435",
|
||||
"auto": "\u0410\u0432\u0442\u043e",
|
||||
"dry": "\u041e\u0441\u0443\u0448\u0435\u043d\u0438\u0435",
|
||||
"fan_only": "\u0412\u0435\u043d\u0442\u0438\u043b\u044f\u0446\u0438\u044f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u044b\u043a\u043b",
|
||||
"on": "\u0412\u043a\u043b"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u044b\u043a\u043b",
|
||||
"on": "\u0412\u043a\u043b"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "\u0417\u0430\u043f\u0438\u0441\u044c",
|
||||
"streaming": "\u0422\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u044f",
|
||||
"idle": "\u0411\u0435\u0437\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c",
|
||||
"configured": "\u041d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u043e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u044b\u043a\u043b",
|
||||
"on": "\u0412\u043a\u043b",
|
||||
"home": "\u0414\u043e\u043c\u0430",
|
||||
"not_home": "\u041d\u0435 \u0434\u043e\u043c\u0430",
|
||||
"open": "\u041e\u0442\u043a\u0440\u044b\u0442\u043e",
|
||||
"closed": "\u0417\u0430\u043a\u0440\u044b\u0442\u043e",
|
||||
"locked": "\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043e",
|
||||
"unlocked": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043e",
|
||||
"ok": "\u041e\u041a",
|
||||
"problem": "\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u044b\u043a\u043b",
|
||||
"on": "\u0412\u043a\u043b"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u0414\u043e\u043c\u0430",
|
||||
"not_home": "\u041d\u0435 \u0434\u043e\u043c\u0430"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "\u041e\u041a",
|
||||
"problem": "\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u044b\u043a\u043b",
|
||||
"on": "\u0412\u043a\u043b"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u044b\u043a\u043b",
|
||||
"on": "\u0412\u043a\u043b"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "\u041d\u0430\u0434 \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u043e\u043c",
|
||||
"below_horizon": "\u0417\u0430 \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u043e\u043c"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "\u041e\u0442\u0441\u0447\u0451\u0442",
|
||||
"idle": "\u041e\u0436\u0438\u0434\u0430\u043d\u0438\u0435",
|
||||
"paused": "\u041f\u0430\u0443\u0437\u0430"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "\u042f\u0441\u043d\u043e, \u043d\u043e\u0447\u044c",
|
||||
"cloudy": "\u041e\u0431\u043b\u0430\u0447\u043d\u043e",
|
||||
"exceptional": "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435",
|
||||
"fog": "\u0422\u0443\u043c\u0430\u043d",
|
||||
"hail": "\u0413\u0440\u0430\u0434",
|
||||
"lightning": "\u041c\u043e\u043b\u043d\u0438\u044f",
|
||||
"lightning-rainy": "\u041c\u043e\u043b\u043d\u0438\u044f, \u0434\u043e\u0436\u0434\u044c",
|
||||
"partlycloudy": "\u041f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u0430\u044f \u043e\u0431\u043b\u0430\u0447\u043d\u043e\u0441\u0442\u044c",
|
||||
"pouring": "\u041b\u0438\u0432\u0435\u043d\u044c",
|
||||
"rainy": "\u0414\u043e\u0436\u0434\u044c",
|
||||
"snowy": "\u0421\u043d\u0435\u0433",
|
||||
"snowy-rainy": "\u0421\u043d\u0435\u0433 \u0441 \u0434\u043e\u0436\u0434\u0435\u043c",
|
||||
"sunny": "\u042f\u0441\u043d\u043e",
|
||||
"windy": "\u0412\u0435\u0442\u0440\u0435\u043d\u043e",
|
||||
"windy-variant": "\u0412\u0435\u0442\u0440\u0435\u043d\u043e"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,343 @@
|
||||
{
|
||||
"component": {
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Neakt\u00edvny",
|
||||
"on": "Akt\u00edvny"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Norm\u00e1lna",
|
||||
"on": "Slab\u00e1"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Norm\u00e1lny",
|
||||
"on": "Studen\u00fd"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Odpojen\u00fd",
|
||||
"on": "Pripojen\u00fd"
|
||||
},
|
||||
"door": {
|
||||
"off": "Zatvoren\u00e9",
|
||||
"on": "Otvoren\u00e9"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Zatvoren\u00e9",
|
||||
"on": "Otvoren\u00e9"
|
||||
},
|
||||
"gas": {
|
||||
"off": "\u017diadny plyn",
|
||||
"on": "Zachyten\u00fd plyn"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Norm\u00e1lny",
|
||||
"on": "Hor\u00faci"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Zamknut\u00fd",
|
||||
"on": "Odomknut\u00fd"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Sucho",
|
||||
"on": "Vlhko"
|
||||
},
|
||||
"motion": {
|
||||
"off": "K\u013eud",
|
||||
"on": "Pohyb"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Vo\u013en\u00e9",
|
||||
"on": "Obsaden\u00e9"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Zatvoren\u00e9",
|
||||
"on": "Otvoren\u00e9"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Pre\u010d",
|
||||
"on": "Doma"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Probl\u00e9m"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Zabezpe\u010den\u00e9",
|
||||
"on": "Nezabezpe\u010den\u00e9"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "\u017diadny dym",
|
||||
"on": "Zachyten\u00fd dym"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Ticho",
|
||||
"on": "Zachyten\u00fd zvuk"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "K\u013eud",
|
||||
"on": "Zachyten\u00e9 vibr\u00e1cie"
|
||||
},
|
||||
"window": {
|
||||
"off": "Zatvoren\u00e9",
|
||||
"on": "Otvoren\u00e9"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Akt\u00edvny",
|
||||
"disarmed": "Neakt\u00edvny",
|
||||
"armed_home": "Akt\u00edvny doma",
|
||||
"armed_away": "Akt\u00edvny v nepr\u00edtomnosti",
|
||||
"armed_night": "Akt\u00edvny v noci",
|
||||
"armed_custom_bypass": "Zak\u00f3dovan\u00e9 prisp\u00f4soben\u00e9 vyl\u00fa\u010denie",
|
||||
"pending": "\u010cak\u00e1 sa",
|
||||
"arming": "Aktivuje sa",
|
||||
"disarming": "Deaktivuje sa",
|
||||
"triggered": "Spusten\u00fd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Neakt\u00edvny",
|
||||
"on": "Akt\u00edvna"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Neakt\u00edvny",
|
||||
"on": "Akt\u00edvny"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Z\u00e1znam",
|
||||
"streaming": "Streamovanie",
|
||||
"idle": "Ne\u010dinn\u00e1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Vypnut\u00e9",
|
||||
"heat": "K\u00farenie",
|
||||
"cool": "Chladenie",
|
||||
"heat_cool": "Vykurovanie / Chladenie",
|
||||
"auto": "Automatika",
|
||||
"dry": "Su\u0161enie",
|
||||
"fan_only": "Iba ventil\u00e1tor"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Konfigurova\u0165",
|
||||
"configured": "Nakonfigurovan\u00e9"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Otvoren\u00e9",
|
||||
"opening": "Otv\u00e1ra sa",
|
||||
"closed": "Zatvoren\u00e9",
|
||||
"closing": "Zatv\u00e1ra sa",
|
||||
"stopped": "Zastaven\u00e9"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Doma",
|
||||
"not_home": "Pre\u010d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Neakt\u00edvny",
|
||||
"on": "Zapnut\u00fd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Vypnut\u00e1",
|
||||
"on": "Zapnut\u00e1",
|
||||
"home": "Doma",
|
||||
"not_home": "Pre\u010d",
|
||||
"open": "Otvoren\u00e1",
|
||||
"closed": "Zatvoren\u00e1",
|
||||
"locked": "Zamknut\u00e1",
|
||||
"unlocked": "Odomknut\u00e1",
|
||||
"ok": "OK",
|
||||
"problem": "Probl\u00e9m"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Vypnut\u00e9",
|
||||
"on": "Zapnut\u00e9"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Vypnut\u00e9",
|
||||
"on": "Zapnut\u00e9"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Zamknut\u00fd",
|
||||
"unlocked": "Odomknut\u00fd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Vypnut\u00fd",
|
||||
"on": "Zapnut\u00fd",
|
||||
"playing": "Prehr\u00e1vanie",
|
||||
"paused": "Pozastaven\u00fd",
|
||||
"idle": "Ne\u010dinn\u00fd",
|
||||
"standby": "Pohotovostn\u00fd re\u017eim"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Doma",
|
||||
"not_home": "Pre\u010d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "OK",
|
||||
"problem": "Probl\u00e9m"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Vypnut\u00fd",
|
||||
"on": "Zapnut\u00fd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Vypnut\u00fd",
|
||||
"on": "Zapnut\u00fd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Neakt\u00edvny",
|
||||
"on": "Akt\u00edvny"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Nad horizontom",
|
||||
"below_horizon": "Za horizontom"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Vypnut\u00fd",
|
||||
"on": "Zapnut\u00fd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "\u010cist\u00ed",
|
||||
"docked": "V doku",
|
||||
"error": "Chyba",
|
||||
"idle": "Ne\u010dinn\u00fd",
|
||||
"off": "Vypnut\u00fd",
|
||||
"on": "Zapnut\u00fd",
|
||||
"paused": "Pozastaven\u00fd",
|
||||
"returning": "Vracia sa do doku"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "akt\u00edvny",
|
||||
"idle": "ne\u010dinn\u00fd",
|
||||
"paused": "pozastaven\u00fd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Jasno, v noci",
|
||||
"cloudy": "Zamra\u010den\u00e9",
|
||||
"exceptional": "V\u00fdnimo\u010dn\u00e9",
|
||||
"fog": "Hmla",
|
||||
"hail": "Krupobitie",
|
||||
"lightning": "Blesky",
|
||||
"lightning-rainy": "Blesky, da\u017edivo",
|
||||
"partlycloudy": "\u010ciasto\u010dne zamra\u010den\u00e9",
|
||||
"pouring": "Lej\u00faco",
|
||||
"rainy": "Da\u017edivo",
|
||||
"snowy": "Zasne\u017eeno",
|
||||
"snowy-rainy": "Zasne\u017eeno, da\u017edivo",
|
||||
"sunny": "slne\u010dno",
|
||||
"windy": "Veterno",
|
||||
"windy-variant": "Veterno"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Inicializ\u00e1cia",
|
||||
"dead": "Nereaguje",
|
||||
"sleeping": "\u00dasporn\u00fd re\u017eim",
|
||||
"ready": "Pripraven\u00e9"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Inicializ\u00e1cia ( {query_stage} )",
|
||||
"dead": "Nereaguje ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izklju\u010den",
|
||||
"on": "Vklopljen"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Inicializacija",
|
||||
"dead": "Mrtev",
|
||||
"sleeping": "Spanje",
|
||||
"ready": "Pripravljen"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Inicializacija ({query_stage})",
|
||||
"dead": "Mrtev ({query_stage})"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "Dan",
|
||||
"night": "No\u010d"
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izklju\u010den",
|
||||
"on": "Vklopljen"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izklju\u010den",
|
||||
"on": "Vklopljen"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izklju\u010den",
|
||||
"on": "Vklopljen"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normalno",
|
||||
"on": "Nizko"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normalno",
|
||||
"on": "Hladno"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Povezava prekinjena",
|
||||
"on": "Povezan"
|
||||
},
|
||||
"door": {
|
||||
"off": "Zaprto",
|
||||
"on": "Odprto"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Zaprto",
|
||||
"on": "Odprto"
|
||||
},
|
||||
"gas": {
|
||||
"off": "\u010cisto",
|
||||
"on": "Zaznano"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normalno",
|
||||
"on": "Vro\u010de"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Zaklenjeno",
|
||||
"on": "Odklenjeno"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Suho",
|
||||
"on": "Mokro"
|
||||
},
|
||||
"motion": {
|
||||
"off": "\u010cisto",
|
||||
"on": "Zaznano"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "\u010cisto",
|
||||
"on": "Zaznano"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Zaprto",
|
||||
"on": "Odprto"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Odsoten",
|
||||
"on": "Doma"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "Te\u017eava"
|
||||
},
|
||||
"safety": {
|
||||
"off": "Varno",
|
||||
"on": "Nevarno"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "\u010cisto",
|
||||
"on": "Zaznano"
|
||||
},
|
||||
"sound": {
|
||||
"off": "\u010cisto",
|
||||
"on": "Zaznano"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "\u010cisto",
|
||||
"on": "Zaznano"
|
||||
},
|
||||
"window": {
|
||||
"off": "Zaprto",
|
||||
"on": "Odprto"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Zaklenjeno",
|
||||
"unlocked": "Odklenjeno"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "Odprto",
|
||||
"opening": "Odpiranje",
|
||||
"closed": "Zaprto",
|
||||
"closing": "Zapiranje",
|
||||
"stopped": "Ustavljeno"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Omogo\u010den",
|
||||
"disarmed": "Onemogo\u010den",
|
||||
"armed_home": "Omogo\u010den-doma",
|
||||
"armed_away": "Omogo\u010den-zunaj",
|
||||
"armed_night": "Omogo\u010den-no\u010d",
|
||||
"armed_custom_bypass": "Vklopljen izjeme po meri",
|
||||
"pending": "V teku",
|
||||
"arming": "Omogo\u010danje",
|
||||
"disarming": "Onemogo\u010danje",
|
||||
"triggered": "Spro\u017een"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izklju\u010den",
|
||||
"on": "Vklopljen",
|
||||
"playing": "Predvaja",
|
||||
"paused": "Na pavzi",
|
||||
"idle": "V pripravljenosti",
|
||||
"standby": "V pripravljenosti"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Doma",
|
||||
"not_home": "Odsoten"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "\u010cistim",
|
||||
"docked": "Priklju\u010den",
|
||||
"error": "Napaka",
|
||||
"idle": "V pripravljenosti",
|
||||
"off": "Izklju\u010den",
|
||||
"on": "Vklju\u010den",
|
||||
"paused": "Zaustavljeno",
|
||||
"returning": "Vra\u010dam se na postajo"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izklju\u010den",
|
||||
"on": "Vklopljen"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izklju\u010den",
|
||||
"heat": "Toplo",
|
||||
"cool": "Mrzlo",
|
||||
"heat_cool": "Gretje/Hlajenje",
|
||||
"auto": "Samodejno",
|
||||
"dry": "Suho",
|
||||
"fan_only": "Samo ventilator"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izklju\u010den",
|
||||
"on": "Vklopljen"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izklju\u010den",
|
||||
"on": "Vklopljen"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Snemanje",
|
||||
"streaming": "Pretakanje",
|
||||
"idle": "V pripravljenosti"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Konfiguriraj",
|
||||
"configured": "Konfigurirano"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izklju\u010den",
|
||||
"on": "Vklopljen",
|
||||
"home": "Doma",
|
||||
"not_home": "Odsoten",
|
||||
"open": "Odprto",
|
||||
"closed": "Zaprto",
|
||||
"locked": "Zaklenjeno",
|
||||
"unlocked": "Odklenjeno",
|
||||
"ok": "OK",
|
||||
"problem": "Te\u017eava"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izklju\u010den",
|
||||
"on": "Vklopljen"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Doma",
|
||||
"not_home": "Odsoten"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "OK",
|
||||
"problem": "Te\u017eava"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izklju\u010den",
|
||||
"on": "Vklopljen"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Izklju\u010den",
|
||||
"on": "Vklopljen"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Nad obzorjem",
|
||||
"below_horizon": "Pod obzorjem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "aktiven",
|
||||
"idle": "V pripravljenosti",
|
||||
"paused": "Na pavzi"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Jasna, no\u010d",
|
||||
"cloudy": "Obla\u010dno",
|
||||
"exceptional": "Izjemno",
|
||||
"fog": "Megla",
|
||||
"hail": "To\u010da",
|
||||
"lightning": "Grmenje",
|
||||
"lightning-rainy": "Grmenje, de\u017eevno",
|
||||
"partlycloudy": "Delno obla\u010dno",
|
||||
"pouring": "Mo\u010dan de\u017e",
|
||||
"rainy": "De\u017eevno",
|
||||
"snowy": "Sne\u017eno",
|
||||
"snowy-rainy": "Sne\u017eno, de\u017eevno",
|
||||
"sunny": "Son\u010dno",
|
||||
"windy": "Vetrovno",
|
||||
"windy-variant": "Vetrovno"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"component": {
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Vedra no\u0107",
|
||||
"cloudy": "Obla\u010dno",
|
||||
"fog": "Magla",
|
||||
"hail": "Grad",
|
||||
"lightning": "Grmljavina",
|
||||
"lightning-rainy": "Grmljavina sa ki\u0161om",
|
||||
"partlycloudy": "Delimi\u010dno obla\u010dno",
|
||||
"pouring": "Pljusak",
|
||||
"rainy": "Ki\u0161a",
|
||||
"snowy": "Sneg",
|
||||
"snowy-rainy": "Sneg i ki\u0161a",
|
||||
"sunny": "Sun\u010dano",
|
||||
"windy": "Vetrovito",
|
||||
"windy-variant": "Vetrovito"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"query_stage": {
|
||||
"initializing": " ( {query_stage} )",
|
||||
"dead": " ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"component": {
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Iznad horizonta",
|
||||
"below_horizon": "Ispod horizonta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Isklju\u010den",
|
||||
"on": "Uklju\u010den"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "\u0443\u043a\u0459\u0443\u0447\u0435\u043d",
|
||||
"idle": "\u043d\u0435\u0430\u043a\u0442\u043d\u0430 \u0447\u0435\u043a\u0430\u045a\u0443"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ready": "Spreman"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": " ( {query_stage} )",
|
||||
"dead": " ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Initierar",
|
||||
"dead": "D\u00f6d",
|
||||
"sleeping": "Sovande",
|
||||
"ready": "Redo"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Initierar ({query_stage})",
|
||||
"dead": "D\u00f6d ({query_stage})"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "Dag",
|
||||
"night": "Natt"
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normal",
|
||||
"on": "L\u00e5g"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normal",
|
||||
"on": "Kallt"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Fr\u00e5nkopplad",
|
||||
"on": "Ansluten"
|
||||
},
|
||||
"door": {
|
||||
"off": "St\u00e4ngd",
|
||||
"on": "\u00d6ppen"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "St\u00e4ngd",
|
||||
"on": "\u00d6ppen"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Klart",
|
||||
"on": "Detekterad"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normal",
|
||||
"on": "Varmt"
|
||||
},
|
||||
"lock": {
|
||||
"off": "L\u00e5st",
|
||||
"on": "Ol\u00e5st"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Torr",
|
||||
"on": "Bl\u00f6t"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Klart",
|
||||
"on": "Detekterad"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Tomt",
|
||||
"on": "Detekterad"
|
||||
},
|
||||
"opening": {
|
||||
"off": "St\u00e4ngd",
|
||||
"on": "\u00d6ppen"
|
||||
},
|
||||
"presence": {
|
||||
"off": "Borta",
|
||||
"on": "Hemma"
|
||||
},
|
||||
"problem": {
|
||||
"off": "Ok",
|
||||
"on": "Problem"
|
||||
},
|
||||
"safety": {
|
||||
"off": "S\u00e4ker",
|
||||
"on": "Os\u00e4ker"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Klart",
|
||||
"on": "Detekterad"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Klart",
|
||||
"on": "Detekterad"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Klart",
|
||||
"on": "Detekterad"
|
||||
},
|
||||
"window": {
|
||||
"off": "St\u00e4ngt",
|
||||
"on": "\u00d6ppet"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "L\u00e5st",
|
||||
"unlocked": "Ol\u00e5st"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "\u00d6ppen",
|
||||
"opening": "\u00d6ppnar",
|
||||
"closed": "St\u00e4ngd",
|
||||
"closing": "St\u00e4nger",
|
||||
"stopped": "Stoppad"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Larmat",
|
||||
"disarmed": "Avlarmat",
|
||||
"armed_home": "Hemmalarmat",
|
||||
"armed_away": "Larmat",
|
||||
"armed_night": "Nattlarmat",
|
||||
"armed_custom_bypass": "Larm f\u00f6rbikopplat",
|
||||
"pending": "V\u00e4ntande",
|
||||
"arming": "Tillkopplar",
|
||||
"disarming": "Fr\u00e5nkopplar",
|
||||
"triggered": "Utl\u00f6st"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5",
|
||||
"playing": "Spelar",
|
||||
"paused": "Pausad",
|
||||
"idle": "Inaktiv",
|
||||
"standby": "Vilol\u00e4ge"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Hemma",
|
||||
"not_home": "Borta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "St\u00e4dar",
|
||||
"docked": "Dockad",
|
||||
"error": "Fel",
|
||||
"idle": "Inaktiv",
|
||||
"off": "Av",
|
||||
"on": "P\u00e5",
|
||||
"paused": "Pausad",
|
||||
"returning": "\u00c5terg\u00e5r till docka"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"heat": "V\u00e4rme",
|
||||
"cool": "Kyla",
|
||||
"heat_cool": "V\u00e4rme/Kyla",
|
||||
"auto": "Automatisk",
|
||||
"dry": "Avfuktning",
|
||||
"fan_only": "Endast fl\u00e4kt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Spelar in",
|
||||
"streaming": "Str\u00f6mmar",
|
||||
"idle": "Inaktiv"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Konfigurera",
|
||||
"configured": "Konfigurerad"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5",
|
||||
"home": "Hemma",
|
||||
"not_home": "Borta",
|
||||
"open": "\u00d6ppen",
|
||||
"closed": "St\u00e4ngd",
|
||||
"locked": "L\u00e5st",
|
||||
"unlocked": "Ol\u00e5st",
|
||||
"ok": "Ok",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Hemma",
|
||||
"not_home": "Borta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "Ok",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Av",
|
||||
"on": "P\u00e5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Ovanf\u00f6r horisonten",
|
||||
"below_horizon": "Nedanf\u00f6r horisonten"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "aktiv",
|
||||
"idle": "inaktiv",
|
||||
"paused": "pausad"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Klart, natt",
|
||||
"cloudy": "Molnigt",
|
||||
"exceptional": "Exceptionellt",
|
||||
"fog": "Dimma",
|
||||
"hail": "Hagel",
|
||||
"lightning": "\u00c5ska",
|
||||
"lightning-rainy": "\u00c5ska, regnigt",
|
||||
"partlycloudy": "Delvis molnigt",
|
||||
"pouring": "\u00d6sregn",
|
||||
"rainy": "Regnigt",
|
||||
"snowy": "Sn\u00f6igt",
|
||||
"snowy-rainy": "Sn\u00f6igt, regnigt",
|
||||
"sunny": "Soligt",
|
||||
"windy": "Bl\u00e5sigt",
|
||||
"windy-variant": "Bl\u00e5sigt"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,266 @@
|
||||
{
|
||||
"component": {
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0b86\u0b83\u0baa\u0bcd",
|
||||
"on": "\u0b86\u0ba9\u0bcd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "\u0baa\u0bc2\u0b9f\u0bcd\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1",
|
||||
"unlocked": "\u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0b86\u0b83\u0baa\u0bcd",
|
||||
"on": "\u0b86\u0ba9\u0bcd",
|
||||
"playing": "\u0bb5\u0bbf\u0bb3\u0bc8\u0baf\u0bbe\u0b9f\u0bc1\u0ba4\u0bb2\u0bcd",
|
||||
"paused": "\u0b87\u0b9f\u0bc8\u0ba8\u0bbf\u0bb1\u0bc1\u0ba4\u0bcd\u0ba4\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1",
|
||||
"idle": "\u0baa\u0ba3\u0bbf\u0baf\u0bbf\u0ba9\u0bcd\u0bb1\u0bbf",
|
||||
"standby": "\u0b95\u0bbe\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bc1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0b86\u0b83\u0baa\u0bcd",
|
||||
"on": "\u0b86\u0ba9\u0bcd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0b86\u0b83\u0baa\u0bcd",
|
||||
"on": "\u0b86\u0ba9\u0bcd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0b86\u0b83\u0baa\u0bcd",
|
||||
"on": "\u0b86\u0ba9\u0bcd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "\u0ba4\u0bca\u0b9f\u0bc1\u0bb5\u0bbe\u0ba9\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc7\u0bb2\u0bc7",
|
||||
"below_horizon": "\u0ba4\u0bca\u0b9f\u0bc1\u0bb5\u0bbe\u0ba9\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bc1\u0b95\u0bcd \u0b95\u0bc0\u0bb4\u0bc7"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0b86\u0b83\u0baa\u0bcd",
|
||||
"on": "\u0b86\u0ba9\u0bcd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "\u0b8e\u0b9a\u0bcd\u0b9a\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bc8 \u0b92\u0bb2\u0bbf \u0b85\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1",
|
||||
"disarmed": "\u0b8e\u0b9a\u0bcd\u0b9a\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bc8 \u0b92\u0bb2\u0bbf \u0b85\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8",
|
||||
"armed_home": "\u0b8e\u0b9a\u0bcd\u0b9a\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bc8 \u0b92\u0bb2\u0bbf \u0bae\u0bc1\u0b95\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"armed_away": "\u0b8e\u0b9a\u0bcd\u0b9a\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bc8 \u0b92\u0bb2\u0bbf \u0bb5\u0bc6\u0bb3\u0bbf\u0baf\u0bc7",
|
||||
"armed_night": "\u0b8e\u0b9a\u0bcd\u0b9a\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bc8 \u0b92\u0bb2\u0bbf \u0b87\u0bb0\u0bb5\u0bbf\u0bb2\u0bcd",
|
||||
"armed_custom_bypass": "\u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa \u0b8e\u0b9a\u0bcd\u0b9a\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bc8 \u0b92\u0bb2\u0bbf",
|
||||
"pending": "\u0ba8\u0bbf\u0bb2\u0bc1\u0bb5\u0bc8\u0baf\u0bbf\u0bb2\u0bcd",
|
||||
"arming": "\u0b8e\u0b9a\u0bcd\u0b9a\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bc8 \u0b92\u0bb2\u0bbf \u0b85\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0bbf\u0bb1\u0ba4\u0bc1",
|
||||
"disarming": "\u0b8e\u0b9a\u0bcd\u0b9a\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bc8 \u0b92\u0bb2\u0bbf \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bae\u0bcd",
|
||||
"triggered": "\u0ba4\u0bc2\u0ba3\u0bcd\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0b86\u0b83\u0baa\u0bcd",
|
||||
"on": "\u0b86\u0ba9\u0bcd "
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0b86\u0b83\u0baa\u0bcd",
|
||||
"on": "\u0b86\u0ba9\u0bcd "
|
||||
},
|
||||
"gas": {
|
||||
"off": "\u0ba4\u0bc6\u0bb3\u0bbf\u0bb5\u0bc1",
|
||||
"on": "\u0b95\u0ba3\u0bcd\u0b9f\u0bb1\u0bbf\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1"
|
||||
},
|
||||
"heat": {
|
||||
"off": "\u0b86\u0b83\u0baa\u0bcd",
|
||||
"on": "\u0b9a\u0bc2\u0b9f\u0bbe\u0ba9"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "\u0b89\u0bb2\u0bb0\u0bcd",
|
||||
"on": "\u0b88\u0bb0\u0bae\u0bcd"
|
||||
},
|
||||
"motion": {
|
||||
"off": "\u0ba4\u0bc6\u0bb3\u0bbf\u0bb5\u0bc1 ",
|
||||
"on": "\u0b95\u0ba3\u0bcd\u0b9f\u0bb1\u0bbf\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "\u0ba4\u0bc6\u0bb3\u0bbf\u0bb5\u0bc1 ",
|
||||
"on": "\u0b95\u0ba3\u0bcd\u0b9f\u0bb1\u0bbf\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1"
|
||||
},
|
||||
"opening": {
|
||||
"off": "\u0bae\u0bc2\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1",
|
||||
"on": "\u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1"
|
||||
},
|
||||
"presence": {
|
||||
"off": "\u0ba4\u0bca\u0bb2\u0bc8\u0bb5\u0bbf\u0bb2\u0bcd",
|
||||
"on": "\u0bae\u0bc1\u0b95\u0baa\u0bcd\u0baa\u0bc1"
|
||||
},
|
||||
"problem": {
|
||||
"off": "\u0b9a\u0bb0\u0bbf",
|
||||
"on": "\u0b9a\u0bbf\u0b95\u0bcd\u0b95\u0bb2\u0bcd"
|
||||
},
|
||||
"safety": {
|
||||
"off": "\u0baa\u0bbe\u0ba4\u0bc1\u0b95\u0bbe\u0baa\u0bcd\u0baa\u0bbe\u0ba9",
|
||||
"on": "\u0baa\u0bbe\u0ba4\u0bc1\u0b95\u0bbe\u0baa\u0bcd\u0baa\u0bb1\u0bcd\u0bb1"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "\u0ba4\u0bc6\u0bb3\u0bbf\u0bb5\u0bc1 ",
|
||||
"on": "\u0b95\u0ba3\u0bcd\u0b9f\u0bb1\u0bbf\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1"
|
||||
},
|
||||
"sound": {
|
||||
"off": "\u0ba4\u0bc6\u0bb3\u0bbf\u0bb5\u0bc1 ",
|
||||
"on": "\u0b95\u0ba3\u0bcd\u0b9f\u0bb1\u0bbf\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "\u0ba4\u0bc6\u0bb3\u0bbf\u0bb5\u0bc1 ",
|
||||
"on": "\u0b95\u0ba3\u0bcd\u0b9f\u0bb1\u0bbf\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1"
|
||||
},
|
||||
"window": {
|
||||
"off": "\u0bae\u0bc2\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1",
|
||||
"on": "\u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0b86\u0b83\u0baa\u0bcd",
|
||||
"on": "\u0b86\u0ba9\u0bcd "
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "\u0baa\u0ba4\u0bbf\u0bb5\u0bc1",
|
||||
"streaming": "\u0bb8\u0bcd\u0b9f\u0bcd\u0bb0\u0bc0\u0bae\u0bbf\u0b99\u0bcd",
|
||||
"idle": "\u0baa\u0ba3\u0bbf\u0baf\u0bbf\u0ba9\u0bcd\u0bb1\u0bbf"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0b86\u0b83\u0baa\u0bcd",
|
||||
"heat": "\u0bb5\u0bc6\u0baa\u0bcd\u0baa\u0bae\u0bcd",
|
||||
"cool": "\u0b95\u0bc1\u0bb3\u0bbf\u0bb0\u0bcd",
|
||||
"auto": "\u0ba4\u0bbe\u0ba9\u0bbe\u0b95 \u0b87\u0baf\u0b99\u0bcd\u0b95\u0bc1\u0ba4\u0bb2\u0bcd",
|
||||
"dry": "\u0b89\u0bb2\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4",
|
||||
"fan_only": "\u0bb5\u0bbf\u0b9a\u0bbf\u0bb1\u0bbf \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bcd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "\u0b89\u0bb3\u0bcd\u0bb3\u0bae\u0bc8",
|
||||
"configured": "\u0b89\u0bb3\u0bcd\u0bb3\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "\u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1",
|
||||
"opening": "\u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95\u0bbf\u0bb1\u0ba4\u0bc1",
|
||||
"closed": "\u0bae\u0bc2\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1",
|
||||
"closing": "\u0bae\u0bc2\u0b9f\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1",
|
||||
"stopped": "\u0ba8\u0bbf\u0bb1\u0bc1\u0ba4\u0bcd\u0ba4\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u0bae\u0bc1\u0b95\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"not_home": "\u0ba4\u0bca\u0bb2\u0bc8\u0bb5\u0bbf\u0bb2\u0bcd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0b86\u0b83\u0baa\u0bcd",
|
||||
"on": "\u0bb5\u0bbf\u0b9a\u0bbf\u0bb1\u0bbf \u0b86\u0ba9\u0bcd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0b86\u0b83\u0baa\u0bcd",
|
||||
"on": "\u0b86\u0ba9\u0bcd",
|
||||
"home": "\u0bb5\u0bc0\u0b9f\u0bcd\u0b9f\u0bbf\u0bb2\u0bcd",
|
||||
"not_home": "\u0ba4\u0bca\u0bb2\u0bc8\u0bb5\u0bbf\u0bb2\u0bcd",
|
||||
"open": "\u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1 ",
|
||||
"closed": "\u0bae\u0bc2\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1 ",
|
||||
"locked": "\u0baa\u0bc2\u0b9f\u0bcd\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1 ",
|
||||
"unlocked": "\u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1 ",
|
||||
"ok": "\u0b9a\u0bb0\u0bbf",
|
||||
"problem": "\u0b9a\u0bbf\u0b95\u0bcd\u0b95\u0bb2\u0bcd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0b86\u0b83\u0baa\u0bcd",
|
||||
"on": "\u0b86\u0ba9\u0bcd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "\u0b9a\u0bb0\u0bbf",
|
||||
"problem": "\u0b9a\u0bbf\u0b95\u0bcd\u0b95\u0bb2\u0bcd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "\u0ba4\u0bc1\u0bb5\u0b95\u0bcd\u0b95\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1",
|
||||
"dead": "\u0b87\u0bb1\u0ba8\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1",
|
||||
"sleeping": "\u0ba4\u0bc2\u0b99\u0bcd\u0b95\u0bc1\u0b95\u0bbf\u0ba9\u0bcd\u0bb1\u0ba4\u0bc1",
|
||||
"ready": "\u0ba4\u0baf\u0bbe\u0bb0\u0bcd"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "\u0ba4\u0bc1\u0bb5\u0b95\u0bcd\u0b95\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1 ( {query_stage} )",
|
||||
"dead": "\u0b87\u0bb1\u0ba8\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1 ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,315 @@
|
||||
{
|
||||
"component": {
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0c06\u0c2b\u0c4d",
|
||||
"on": "\u0c06\u0c28\u0c4d"
|
||||
},
|
||||
"battery": {
|
||||
"off": "\u0c38\u0c3e\u0c27\u0c3e\u0c30\u0c23",
|
||||
"on": "\u0c24\u0c15\u0c4d\u0c15\u0c41\u0c35"
|
||||
},
|
||||
"cold": {
|
||||
"on": "\u0c1a\u0c32\u0c4d\u0c32\u0c28\u0c3f"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "\u0c21\u0c3f\u0c38\u0c4d\u0c15\u0c28\u0c46\u0c15\u0c4d\u0c1f\u0c4d",
|
||||
"on": "\u0c15\u0c28\u0c46\u0c15\u0c4d\u0c1f\u0c4d"
|
||||
},
|
||||
"door": {
|
||||
"off": "\u0c2e\u0c42\u0c38\u0c41\u0c15\u0c41\u0c02\u0c26\u0c3f",
|
||||
"on": "\u0c24\u0c46\u0c30\u0c3f\u0c1a\u0c3f\u0c35\u0c41\u0c02\u0c26\u0c3f"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "\u0c2e\u0c42\u0c38\u0c41\u0c15\u0c41\u0c02\u0c26\u0c3f",
|
||||
"on": "\u0c24\u0c46\u0c30\u0c3f\u0c1a\u0c3f\u0c35\u0c41\u0c02\u0c26\u0c3f"
|
||||
},
|
||||
"gas": {
|
||||
"off": "\u0c17\u0c4d\u0c2f\u0c3e\u0c38\u0c4d \u0c06\u0c2b\u0c4d",
|
||||
"on": "\u0c17\u0c4d\u0c2f\u0c3e\u0c38\u0c4d \u0c06\u0c28\u0c4d"
|
||||
},
|
||||
"heat": {
|
||||
"off": "\u0c38\u0c3e\u0c27\u0c3e\u0c30\u0c23",
|
||||
"on": "\u0c35\u0c47\u0c21\u0c3f"
|
||||
},
|
||||
"lock": {
|
||||
"off": "\u0c32\u0c3e\u0c15\u0c4d \u0c1a\u0c47\u0c2f\u0c2c\u0c21\u0c3f\u0c02\u0c26\u0c3f",
|
||||
"on": "\u0c32\u0c3e\u0c15\u0c4d \u0c1a\u0c47\u0c2f\u0c2c\u0c21\u0c32\u0c47\u0c26\u0c41"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "\u0c2a\u0c4a\u0c21\u0c3f",
|
||||
"on": "\u0c24\u0c21\u0c3f"
|
||||
},
|
||||
"motion": {
|
||||
"off": "\u0c15\u0c26\u0c32\u0c3f\u0c15 \u0c32\u0c47\u0c26\u0c41",
|
||||
"on": "\u0c15\u0c26\u0c32\u0c3f\u0c15 \u0c35\u0c41\u0c02\u0c26\u0c3f"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "\u0c09\u0c28\u0c3f\u0c15\u0c3f\u0c21\u0c3f \u0c32\u0c47\u0c26\u0c41",
|
||||
"on": "\u0c09\u0c28\u0c3f\u0c15\u0c3f\u0c21\u0c3f \u0c09\u0c02\u0c26\u0c3f"
|
||||
},
|
||||
"opening": {
|
||||
"off": "\u0c2e\u0c42\u0c38\u0c3f\u0c35\u0c41\u0c02\u0c26\u0c3f",
|
||||
"on": "\u0c24\u0c46\u0c30\u0c41\u0c1a\u0c41\u0c15\u0c41\u0c02\u0c1f\u0c4b\u0c02\u0c26\u0c3f"
|
||||
},
|
||||
"presence": {
|
||||
"off": "\u0c2c\u0c2f\u0c1f",
|
||||
"on": "\u0c07\u0c02\u0c1f"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "\u0c38\u0c2e\u0c38\u0c4d\u0c2f"
|
||||
},
|
||||
"safety": {
|
||||
"off": "\u0c15\u0c4d\u0c37\u0c47\u0c2e\u0c02",
|
||||
"on": "\u0c15\u0c4d\u0c37\u0c47\u0c2e\u0c02 \u0c15\u0c3e\u0c26\u0c41"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "\u0c2a\u0c4a\u0c17 \u0c32\u0c47\u0c26\u0c41",
|
||||
"on": "\u0c2a\u0c4a\u0c17 \u0c35\u0c41\u0c02\u0c26\u0c3f"
|
||||
},
|
||||
"sound": {
|
||||
"off": "\u0c36\u0c2c\u0c4d\u0c27\u0c02 \u0c32\u0c47\u0c26\u0c41",
|
||||
"on": "\u0c36\u0c2c\u0c4d\u0c27\u0c02 \u0c35\u0c41\u0c02\u0c26\u0c3f"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "\u0c15\u0c26\u0c32\u0c1f\u0c4d\u0c32\u0c47\u0c26\u0c41",
|
||||
"on": "\u0c15\u0c26\u0c41\u0c32\u0c41\u0c24\u0c4b\u0c02\u0c26\u0c3f"
|
||||
},
|
||||
"window": {
|
||||
"off": "\u0c2e\u0c42\u0c38\u0c41\u0c15\u0c41\u0c02\u0c26\u0c3f",
|
||||
"on": "\u0c24\u0c46\u0c30\u0c3f\u0c1a\u0c3f\u0c35\u0c41\u0c02\u0c26\u0c3f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "\u0c2d\u0c26\u0c4d\u0c30\u0c24 \u0c35\u0c41\u0c02\u0c26\u0c3f",
|
||||
"disarmed": "\u0c2d\u0c26\u0c4d\u0c30\u0c24 \u0c32\u0c47\u0c26\u0c41",
|
||||
"armed_home": "\u0c38\u0c46\u0c15\u0c4d\u0c2f\u0c42\u0c30\u0c3f\u0c1f\u0c40 \u0c38\u0c3f\u0c38\u0c4d\u0c1f\u0c2e\u0c4d \u0c06\u0c28\u0c4d \u0c1a\u0c47\u0c2f\u0c2c\u0c21\u0c3f\u0c02\u0c26\u0c3f",
|
||||
"armed_away": "\u0c07\u0c02\u0c1f \u0c2c\u0c2f\u0c1f \u0c2d\u0c26\u0c4d\u0c30\u0c24",
|
||||
"armed_night": "\u0c30\u0c3e\u0c24\u0c4d\u0c30\u0c3f \u0c2a\u0c42\u0c1f \u0c2d\u0c26\u0c4d\u0c30\u0c24",
|
||||
"armed_custom_bypass": "\u0c2d\u0c26\u0c4d\u0c30\u0c24 \u0c15\u0c38\u0c4d\u0c1f\u0c2e\u0c4d \u0c2c\u0c48\u0c2a\u0c3e\u0c38\u0c4d",
|
||||
"pending": "\u0c2a\u0c46\u0c02\u0c21\u0c3f\u0c02\u0c17\u0c4d",
|
||||
"arming": "\u0c2d\u0c26\u0c4d\u0c30\u0c3f\u0c02\u0c1a\u0c41\u0c1f",
|
||||
"disarming": "\u0c2d\u0c26\u0c4d\u0c30\u0c24 \u0c24\u0c40\u0c38\u0c3f\u0c35\u0c47\u0c2f\u0c41\u0c1f",
|
||||
"triggered": "\u0c0a\u0c2a\u0c02\u0c26\u0c41\u0c15\u0c41\u0c02\u0c26\u0c3f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0c06\u0c2b\u0c4d",
|
||||
"on": "\u0c06\u0c28\u0c4d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0c06\u0c2b\u0c4d",
|
||||
"on": "\u0c06\u0c28\u0c4d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "\u0c30\u0c3f\u0c15\u0c3e\u0c30\u0c4d\u0c21\u0c3f\u0c02\u0c17\u0c4d",
|
||||
"streaming": "\u0c2a\u0c4d\u0c30\u0c38\u0c3e\u0c30\u0c02",
|
||||
"idle": "\u0c10\u0c21\u0c3f\u0c32\u0c4d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0c06\u0c2b\u0c4d",
|
||||
"heat": "\u0c35\u0c46\u0c1a\u0c4d\u0c1a\u0c17\u0c3e",
|
||||
"cool": "\u0c1a\u0c32\u0c4d\u0c32\u0c17\u0c3e",
|
||||
"auto": "\u0c26\u0c3e\u0c28\u0c02\u0c24\u0c1f \u0c05\u0c26\u0c47",
|
||||
"dry": "\u0c2a\u0c4a\u0c21\u0c3f",
|
||||
"fan_only": "\u0c2b\u0c4d\u0c2f\u0c3e\u0c28\u0c4d \u0c2e\u0c3e\u0c24\u0c4d\u0c30\u0c2e\u0c47"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "\u0c15\u0c3e\u0c28\u0c4d\u0c2b\u0c3f\u0c17\u0c30\u0c4d",
|
||||
"configured": "\u0c15\u0c3e\u0c28\u0c4d\u0c2b\u0c3f\u0c17\u0c30\u0c4d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "\u0c24\u0c46\u0c30\u0c3f\u0c1a\u0c3f\u0c35\u0c41\u0c02\u0c26\u0c3f",
|
||||
"opening": "\u0c24\u0c46\u0c30\u0c41\u0c1a\u0c41\u0c15\u0c41\u0c02\u0c1f\u0c4b\u0c02\u0c26\u0c3f",
|
||||
"closed": "\u0c2e\u0c42\u0c38\u0c41\u0c15\u0c41\u0c02\u0c26\u0c3f",
|
||||
"closing": "\u0c2e\u0c42\u0c38\u0c41\u0c15\u0c41\u0c02\u0c1f\u0c4b\u0c02\u0c26\u0c3f",
|
||||
"stopped": "\u0c06\u0c17\u0c3f\u0c35\u0c41\u0c02\u0c26\u0c3f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u0c07\u0c02\u0c1f",
|
||||
"not_home": "\u0c2c\u0c2f\u0c1f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0c06\u0c2b\u0c4d",
|
||||
"on": "\u0c06\u0c28\u0c4d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0c06\u0c2b\u0c4d",
|
||||
"on": "\u0c06\u0c28\u0c4d",
|
||||
"home": "\u0c07\u0c02\u0c1f",
|
||||
"not_home": "\u0c2c\u0c2f\u0c1f",
|
||||
"open": "\u0c24\u0c46\u0c30\u0c3f\u0c1a\u0c3f\u0c35\u0c41\u0c02\u0c26\u0c3f",
|
||||
"closed": "\u0c2e\u0c42\u0c38\u0c41\u0c15\u0c41\u0c02\u0c26\u0c3f",
|
||||
"locked": "\u0c2e\u0c42\u0c38\u0c3f \u0c35\u0c41\u0c02\u0c21\u0c41",
|
||||
"unlocked": "\u0c24\u0c46\u0c30\u0c41\u0c1a\u0c3f \u0c35\u0c41\u0c02\u0c21\u0c41",
|
||||
"ok": "\u0c05\u0c32\u0c3e\u0c17\u0c47",
|
||||
"problem": "\u0c38\u0c2e\u0c38\u0c4d\u0c2f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0c06\u0c2b\u0c4d",
|
||||
"on": "\u0c06\u0c28\u0c4d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0c06\u0c2b\u0c4d",
|
||||
"on": "\u0c06\u0c28\u0c4d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "\u0c2e\u0c42\u0c38\u0c3f \u0c35\u0c41\u0c02\u0c21\u0c41",
|
||||
"unlocked": "\u0c24\u0c46\u0c30\u0c41\u0c1a\u0c3f \u0c35\u0c41\u0c02\u0c21\u0c41"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0c06\u0c2b\u0c4d",
|
||||
"on": "\u0c06\u0c28\u0c4d",
|
||||
"playing": "\u0c06\u0c21\u0c41\u0c24\u0c4b\u0c02\u0c26\u0c3f",
|
||||
"paused": "\u0c06\u0c2a\u0c3f\u0c35\u0c41\u0c02\u0c26\u0c3f",
|
||||
"idle": "\u0c10\u0c21\u0c3f\u0c32\u0c4d",
|
||||
"standby": "\u0c28\u0c3f\u0c32\u0c15\u0c21"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "\u0c05\u0c32\u0c3e\u0c17\u0c47",
|
||||
"problem": "\u0c38\u0c2e\u0c38\u0c4d\u0c2f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0c06\u0c2b\u0c4d",
|
||||
"on": "\u0c06\u0c28\u0c4d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0c06\u0c2b\u0c4d",
|
||||
"on": "\u0c06\u0c28\u0c4d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0c06\u0c2b\u0c4d",
|
||||
"on": "\u0c06\u0c28\u0c4d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "\u0c39\u0c4b\u0c30\u0c3f\u0c1c\u0c4b\u0c28\u0c4d \u0c2a\u0c48\u0c28",
|
||||
"below_horizon": "\u0c39\u0c4b\u0c30\u0c3f\u0c1c\u0c4b\u0c28\u0c4d \u0c15\u0c4d\u0c30\u0c3f\u0c02\u0c26"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0c06\u0c2b\u0c4d",
|
||||
"on": "\u0c06\u0c28\u0c4d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "\u0c36\u0c41\u0c2d\u0c4d\u0c30\u0c2a\u0c30\u0c41\u0c1a\u0c41\u0c24\u0c4b\u0c02\u0c26\u0c3f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cloudy": "\u0c2e\u0c47\u0c18\u0c3e\u0c35\u0c43\u0c24\u0c02",
|
||||
"fog": "\u0c2a\u0c4a\u0c17\u0c2e\u0c02\u0c1a\u0c41",
|
||||
"hail": "\u0c35\u0c21\u0c17\u0c33\u0c4d\u0c33\u0c41",
|
||||
"lightning": "\u0c2e\u0c46\u0c30\u0c41\u0c2a\u0c41\u0c32\u0c41",
|
||||
"lightning-rainy": "\u0c2e\u0c46\u0c30\u0c41\u0c2a\u0c41, \u0c35\u0c30\u0c4d\u0c37\u0c02",
|
||||
"partlycloudy": "\u0c2a\u0c3e\u0c15\u0c4d\u0c37\u0c3f\u0c15\u0c02\u0c17\u0c3e \u0c2e\u0c47\u0c18\u0c3e\u0c35\u0c43\u0c24\u0c02",
|
||||
"pouring": "\u0c15\u0c41\u0c02\u0c2d\u0c35\u0c43\u0c37\u0c4d\u0c1f\u0c3f",
|
||||
"rainy": "\u0c35\u0c30\u0c4d\u0c37\u0c02",
|
||||
"snowy": "\u0c2e\u0c02\u0c1a\u0c41",
|
||||
"snowy-rainy": "\u0c2e\u0c02\u0c1a\u0c41, \u0c35\u0c30\u0c4d\u0c37\u0c02",
|
||||
"sunny": "\u0c0e\u0c02\u0c21",
|
||||
"windy": "\u0c17\u0c3e\u0c32\u0c41\u0c32\u0c24\u0c4b",
|
||||
"windy-variant": "\u0c17\u0c3e\u0c32\u0c41\u0c32\u0c24\u0c4b"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "\u0c38\u0c3f\u0c26\u0c4d\u0c27\u0c02 \u0c05\u0c35\u0c41\u0c24\u0c4b\u0c02\u0c26\u0c3f",
|
||||
"dead": "\u0c2e\u0c43\u0c24 \u0c2a\u0c30\u0c3f\u0c15\u0c30\u0c02",
|
||||
"sleeping": "\u0c28\u0c3f\u0c26\u0c4d\u0c30\u0c3f\u0c38\u0c4d\u0c24\u0c4b\u0c02\u0c26\u0c3f",
|
||||
"ready": "\u0c30\u0c46\u0c21\u0c40"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "\u0c38\u0c3f\u0c26\u0c4d\u0c27\u0c02 \u0c05\u0c35\u0c41\u0c24\u0c4b\u0c02\u0c26\u0c3f ( {query_stage} )",
|
||||
"dead": "\u0c2e\u0c43\u0c24 \u0c2a\u0c30\u0c3f\u0c15\u0c30\u0c02 ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,348 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0e1b\u0e34\u0e14",
|
||||
"on": "\u0e40\u0e1b\u0e34\u0e14"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "\u0e27\u0e31\u0e19",
|
||||
"night": "\u0e01\u0e25\u0e32\u0e07\u0e04\u0e37\u0e19"
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0e1b\u0e34\u0e14",
|
||||
"on": "\u0e40\u0e1b\u0e34\u0e14"
|
||||
},
|
||||
"battery": {
|
||||
"off": "\u0e1b\u0e01\u0e15\u0e34",
|
||||
"on": "\u0e15\u0e48\u0e33"
|
||||
},
|
||||
"cold": {
|
||||
"off": "\u0e1b\u0e01\u0e15\u0e34",
|
||||
"on": "\u0e2b\u0e19\u0e32\u0e27"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "\u0e15\u0e31\u0e14\u0e01\u0e32\u0e23\u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e21\u0e15\u0e48\u0e2d",
|
||||
"on": "\u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e21\u0e15\u0e48\u0e2d\u0e41\u0e25\u0e49\u0e27"
|
||||
},
|
||||
"door": {
|
||||
"off": "\u0e1b\u0e34\u0e14\u0e41\u0e25\u0e49\u0e27",
|
||||
"on": "\u0e40\u0e1b\u0e34\u0e14"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "\u0e1b\u0e34\u0e14\u0e41\u0e25\u0e49\u0e27",
|
||||
"on": "\u0e40\u0e1b\u0e34\u0e14"
|
||||
},
|
||||
"gas": {
|
||||
"off": "\u0e44\u0e21\u0e48\u0e1e\u0e1a\u0e41\u0e01\u0e4a\u0e2a",
|
||||
"on": "\u0e15\u0e23\u0e27\u0e08\u0e1e\u0e1a\u0e41\u0e01\u0e4a\u0e2a"
|
||||
},
|
||||
"heat": {
|
||||
"off": "\u0e1b\u0e01\u0e15\u0e34",
|
||||
"on": "\u0e23\u0e49\u0e2d\u0e19"
|
||||
},
|
||||
"lock": {
|
||||
"off": "\u0e25\u0e47\u0e2d\u0e04\u0e2d\u0e22\u0e39\u0e48",
|
||||
"on": "\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e04\u0e41\u0e25\u0e49\u0e27"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "\u0e41\u0e2b\u0e49\u0e07",
|
||||
"on": "\u0e40\u0e1b\u0e35\u0e22\u0e01"
|
||||
},
|
||||
"motion": {
|
||||
"off": "\u0e44\u0e21\u0e48\u0e1e\u0e1a\u0e01\u0e32\u0e23\u0e40\u0e04\u0e25\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e2b\u0e27",
|
||||
"on": "\u0e1e\u0e1a\u0e01\u0e32\u0e23\u0e40\u0e04\u0e25\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e2b\u0e27"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "\u0e44\u0e21\u0e48\u0e1e\u0e1a",
|
||||
"on": "\u0e1e\u0e1a"
|
||||
},
|
||||
"opening": {
|
||||
"off": "\u0e1b\u0e34\u0e14",
|
||||
"on": "\u0e40\u0e1b\u0e34\u0e14"
|
||||
},
|
||||
"presence": {
|
||||
"off": "\u0e44\u0e21\u0e48\u0e2d\u0e22\u0e39\u0e48",
|
||||
"on": "\u0e2d\u0e22\u0e39\u0e48\u0e1a\u0e49\u0e32\u0e19"
|
||||
},
|
||||
"problem": {
|
||||
"off": "\u0e15\u0e01\u0e25\u0e07",
|
||||
"on": "\u0e1b\u0e31\u0e0d\u0e2b\u0e32"
|
||||
},
|
||||
"safety": {
|
||||
"off": "\u0e1b\u0e34\u0e14",
|
||||
"on": "\u0e40\u0e1b\u0e34\u0e14"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "\u0e44\u0e21\u0e48\u0e1e\u0e1a\u0e04\u0e27\u0e31\u0e19",
|
||||
"on": "\u0e1e\u0e1a\u0e04\u0e27\u0e31\u0e19"
|
||||
},
|
||||
"sound": {
|
||||
"off": "\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e22\u0e34\u0e19",
|
||||
"on": "\u0e44\u0e14\u0e49\u0e22\u0e34\u0e19"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "\u0e44\u0e21\u0e48\u0e1e\u0e1a\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e19",
|
||||
"on": "\u0e1e\u0e1a\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e19"
|
||||
},
|
||||
"window": {
|
||||
"off": "\u0e1b\u0e34\u0e14\u0e41\u0e25\u0e49\u0e27",
|
||||
"on": "\u0e40\u0e1b\u0e34\u0e14"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "\u0e40\u0e1b\u0e34\u0e14\u0e01\u0e32\u0e23\u0e1b\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e19",
|
||||
"disarmed": "\u0e1b\u0e25\u0e14\u0e01\u0e32\u0e23\u0e1b\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e19",
|
||||
"armed_home": "\u0e40\u0e1b\u0e34\u0e14\u0e01\u0e32\u0e23\u0e1b\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e19-\u0e42\u0e2b\u0e21\u0e14\u0e2d\u0e22\u0e39\u0e48\u0e1a\u0e49\u0e32\u0e19",
|
||||
"armed_away": "\u0e40\u0e1b\u0e34\u0e14\u0e01\u0e32\u0e23\u0e1b\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e19-\u0e42\u0e2b\u0e21\u0e14\u0e44\u0e21\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e1a\u0e49\u0e32\u0e19",
|
||||
"armed_night": "\u0e40\u0e1b\u0e34\u0e14\u0e01\u0e32\u0e23\u0e1b\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e19-\u0e42\u0e2b\u0e21\u0e14\u0e01\u0e25\u0e32\u0e07\u0e04\u0e37\u0e19",
|
||||
"armed_custom_bypass": "\u0e1b\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e19\u0e42\u0e14\u0e22\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07",
|
||||
"pending": "\u0e04\u0e49\u0e32\u0e07\u0e2d\u0e22\u0e39\u0e48",
|
||||
"arming": "\u0e40\u0e1b\u0e34\u0e14\u0e01\u0e32\u0e23\u0e1b\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e19",
|
||||
"disarming": "\u0e1b\u0e25\u0e14\u0e01\u0e32\u0e23\u0e1b\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e19",
|
||||
"triggered": "\u0e16\u0e39\u0e01\u0e01\u0e23\u0e30\u0e15\u0e38\u0e49\u0e19"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0e1b\u0e34\u0e14",
|
||||
"on": "\u0e40\u0e1b\u0e34\u0e14"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0e1b\u0e34\u0e14",
|
||||
"on": "\u0e40\u0e1b\u0e34\u0e14"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "\u0e01\u0e33\u0e25\u0e31\u0e07\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01",
|
||||
"streaming": "\u0e2a\u0e15\u0e23\u0e35\u0e21\u0e21\u0e34\u0e48\u0e07",
|
||||
"idle": "\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0e1b\u0e34\u0e14",
|
||||
"heat": "\u0e23\u0e49\u0e2d\u0e19",
|
||||
"cool": "\u0e40\u0e22\u0e47\u0e19",
|
||||
"heat_cool": "\u0e23\u0e49\u0e2d\u0e19/\u0e40\u0e22\u0e47\u0e19",
|
||||
"auto": "\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34",
|
||||
"dry": "\u0e41\u0e2b\u0e49\u0e07",
|
||||
"fan_only": "\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e1e\u0e31\u0e14\u0e25\u0e21"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32",
|
||||
"configured": "\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e41\u0e25\u0e49\u0e27"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "\u0e40\u0e1b\u0e34\u0e14",
|
||||
"opening": "\u0e01\u0e33\u0e25\u0e31\u0e07\u0e40\u0e1b\u0e34\u0e14",
|
||||
"closed": "\u0e1b\u0e34\u0e14",
|
||||
"closing": "\u0e01\u0e33\u0e25\u0e31\u0e07\u0e1b\u0e34\u0e14",
|
||||
"stopped": "\u0e2b\u0e22\u0e38\u0e14"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u0e2d\u0e22\u0e39\u0e48\u0e1a\u0e49\u0e32\u0e19",
|
||||
"not_home": "\u0e44\u0e21\u0e48\u0e2d\u0e22\u0e39\u0e48"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0e1b\u0e34\u0e14",
|
||||
"on": "\u0e40\u0e1b\u0e34\u0e14"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0e1b\u0e34\u0e14",
|
||||
"on": "\u0e40\u0e1b\u0e34\u0e14",
|
||||
"home": "\u0e2d\u0e22\u0e39\u0e48\u0e1a\u0e49\u0e32\u0e19",
|
||||
"not_home": "\u0e44\u0e21\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e1a\u0e49\u0e32\u0e19",
|
||||
"open": "\u0e40\u0e1b\u0e34\u0e14",
|
||||
"closed": "\u0e1b\u0e34\u0e14\u0e41\u0e25\u0e49\u0e27",
|
||||
"locked": "\u0e25\u0e47\u0e2d\u0e04\u0e41\u0e25\u0e49\u0e27",
|
||||
"unlocked": "\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e04\u0e41\u0e25\u0e49\u0e27",
|
||||
"ok": "\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19",
|
||||
"problem": "\u0e21\u0e35\u0e1b\u0e31\u0e0d\u0e2b\u0e32"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0e1b\u0e34\u0e14",
|
||||
"on": "\u0e40\u0e1b\u0e34\u0e14"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0e1b\u0e34\u0e14",
|
||||
"on": "\u0e40\u0e1b\u0e34\u0e14"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "\u0e25\u0e47\u0e2d\u0e04",
|
||||
"unlocked": "\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e04"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0e1b\u0e34\u0e14",
|
||||
"on": "\u0e40\u0e1b\u0e34\u0e14",
|
||||
"playing": "\u0e01\u0e33\u0e25\u0e31\u0e07\u0e40\u0e25\u0e48\u0e19",
|
||||
"paused": "\u0e2b\u0e22\u0e38\u0e14\u0e0a\u0e31\u0e48\u0e27\u0e04\u0e23\u0e32\u0e27",
|
||||
"idle": "\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19",
|
||||
"standby": "\u0e41\u0e2a\u0e15\u0e19\u0e14\u0e4c\u0e1a\u0e32\u0e22"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u0e2d\u0e22\u0e39\u0e48\u0e1a\u0e49\u0e32\u0e19",
|
||||
"not_home": "\u0e44\u0e21\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e1a\u0e49\u0e32\u0e19"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19",
|
||||
"problem": "\u0e21\u0e35\u0e1b\u0e31\u0e0d\u0e2b\u0e32"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0e1b\u0e34\u0e14",
|
||||
"on": "\u0e40\u0e1b\u0e34\u0e14"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0e1b\u0e34\u0e14",
|
||||
"on": "\u0e40\u0e1b\u0e34\u0e14"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "\u0e40\u0e2b\u0e19\u0e37\u0e2d\u0e02\u0e2d\u0e1a\u0e1f\u0e49\u0e32",
|
||||
"below_horizon": "\u0e15\u0e01\u0e14\u0e34\u0e19"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0e1b\u0e34\u0e14",
|
||||
"on": "\u0e40\u0e1b\u0e34\u0e14"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "\u0e01\u0e33\u0e25\u0e31\u0e07\u0e17\u0e33\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e30\u0e2d\u0e32\u0e14",
|
||||
"docked": "\u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e21\u0e15\u0e48\u0e2d",
|
||||
"error": "\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14",
|
||||
"idle": "\u0e27\u0e48\u0e32\u0e07",
|
||||
"off": "\u0e1b\u0e34\u0e14",
|
||||
"on": "\u0e40\u0e1b\u0e34\u0e14",
|
||||
"paused": "\u0e2b\u0e22\u0e38\u0e14\u0e0a\u0e31\u0e48\u0e27\u0e04\u0e23\u0e32\u0e27",
|
||||
"returning": "\u0e01\u0e25\u0e31\u0e1a\u0e44\u0e1b\u0e08\u0e38\u0e14\u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e21\u0e15\u0e48\u0e2d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e2d\u0e22\u0e39\u0e48",
|
||||
"idle": "\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19",
|
||||
"paused": "\u0e2b\u0e22\u0e38\u0e14\u0e0a\u0e31\u0e48\u0e27\u0e04\u0e23\u0e32\u0e27"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "\u0e1f\u0e49\u0e32\u0e42\u0e1b\u0e23\u0e48\u0e07, \u0e01\u0e25\u0e32\u0e07\u0e04\u0e37\u0e19",
|
||||
"cloudy": "\u0e21\u0e35\u0e40\u0e21\u0e06\u0e21\u0e32\u0e01",
|
||||
"fog": "\u0e2b\u0e21\u0e2d\u0e01",
|
||||
"hail": "\u0e25\u0e39\u0e01\u0e40\u0e2b\u0e47\u0e1a",
|
||||
"lightning": "\u0e1f\u0e49\u0e32\u0e41\u0e25\u0e1a",
|
||||
"lightning-rainy": "\u0e1f\u0e49\u0e32\u0e41\u0e25\u0e1a, \u0e1d\u0e19\u0e15\u0e01",
|
||||
"partlycloudy": "\u0e21\u0e35\u0e40\u0e21\u0e06\u0e1a\u0e32\u0e07\u0e2a\u0e48\u0e27\u0e19",
|
||||
"pouring": "\u0e40\u0e17",
|
||||
"rainy": "\u0e1d\u0e19",
|
||||
"snowy": "\u0e2b\u0e34\u0e21\u0e30",
|
||||
"snowy-rainy": "\u0e2b\u0e34\u0e21\u0e30, \u0e1d\u0e19",
|
||||
"sunny": "\u0e41\u0e14\u0e14\u0e08\u0e31\u0e14",
|
||||
"windy": "\u0e25\u0e21\u0e41\u0e23\u0e07",
|
||||
"windy-variant": "\u0e25\u0e21\u0e41\u0e23\u0e07"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "\u0e01\u0e33\u0e25\u0e31\u0e07\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19",
|
||||
"dead": "\u0e44\u0e21\u0e48\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19",
|
||||
"sleeping": "\u0e01\u0e33\u0e25\u0e31\u0e07\u0e2b\u0e25\u0e31\u0e1a",
|
||||
"ready": "\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "\u0e01\u0e33\u0e25\u0e31\u0e07\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19 ( {query_stage} )",
|
||||
"dead": "\u0e44\u0e21\u0e48\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19 ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,343 @@
|
||||
{
|
||||
"component": {
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Ba\u015flat\u0131l\u0131yor",
|
||||
"dead": "\u00d6l\u00fc",
|
||||
"sleeping": "Uyuyor",
|
||||
"ready": "Haz\u0131r"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Ba\u015flat\u0131l\u0131yor ( {query_stage} )",
|
||||
"dead": "\u00d6l\u00fc ({query_stage})"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Kapal\u0131",
|
||||
"on": "A\u00e7\u0131k"
|
||||
},
|
||||
"battery": {
|
||||
"off": "Normal",
|
||||
"on": "D\u00fc\u015f\u00fck"
|
||||
},
|
||||
"cold": {
|
||||
"off": "Normal",
|
||||
"on": "So\u011fuk"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "Ba\u011flant\u0131 kesildi",
|
||||
"on": "Ba\u011fl\u0131"
|
||||
},
|
||||
"door": {
|
||||
"off": "Kapal\u0131",
|
||||
"on": "A\u00e7\u0131k"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "Kapal\u0131",
|
||||
"on": "A\u00e7\u0131k"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Temiz",
|
||||
"on": "Alg\u0131land\u0131"
|
||||
},
|
||||
"heat": {
|
||||
"off": "Normal",
|
||||
"on": "S\u0131cak"
|
||||
},
|
||||
"lock": {
|
||||
"off": "Kilit kapal\u0131",
|
||||
"on": "Kilit a\u00e7\u0131k"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Kuru",
|
||||
"on": "Islak"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Temiz",
|
||||
"on": "Alg\u0131land\u0131"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Temiz",
|
||||
"on": "Alg\u0131land\u0131"
|
||||
},
|
||||
"opening": {
|
||||
"off": "Kapal\u0131",
|
||||
"on": "A\u00e7\u0131k"
|
||||
},
|
||||
"presence": {
|
||||
"off": "D\u0131\u015farda",
|
||||
"on": "Evde"
|
||||
},
|
||||
"problem": {
|
||||
"off": "Tamam",
|
||||
"on": "Sorun"
|
||||
},
|
||||
"safety": {
|
||||
"off": "G\u00fcvenli",
|
||||
"on": "G\u00fcvensiz"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Temiz",
|
||||
"on": "Alg\u0131land\u0131"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Temiz",
|
||||
"on": "Alg\u0131land\u0131"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Temiz",
|
||||
"on": "Alg\u0131land\u0131"
|
||||
},
|
||||
"window": {
|
||||
"off": "Kapal\u0131",
|
||||
"on": "A\u00e7\u0131k"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "Etkin",
|
||||
"disarmed": "Etkisiz",
|
||||
"armed_home": "Etkin evde",
|
||||
"armed_away": "Etkin d\u0131\u015far\u0131da",
|
||||
"armed_night": "Etkin gece",
|
||||
"armed_custom_bypass": "\u00d6zel alarm atlatmas\u0131",
|
||||
"pending": "Beklemede",
|
||||
"arming": "Etkinle\u015fiyor",
|
||||
"disarming": "Etkisizle\u015ftiriliyor",
|
||||
"triggered": "Tetiklendi"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Kapal\u0131",
|
||||
"on": "A\u00e7\u0131k"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Kapal\u0131",
|
||||
"on": "A\u00e7\u0131k"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Kaydediliyor",
|
||||
"streaming": "Yay\u0131n ak\u0131\u015f\u0131",
|
||||
"idle": "Bo\u015fta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Kapal\u0131",
|
||||
"heat": "S\u0131cak",
|
||||
"cool": "Serin",
|
||||
"heat_cool": "Is\u0131tma / So\u011futma",
|
||||
"auto": "Otomatik",
|
||||
"dry": "Kuru",
|
||||
"fan_only": "Sadece fan"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "Ayarla",
|
||||
"configured": "Ayarland\u0131"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "A\u00e7\u0131k",
|
||||
"opening": "A\u00e7\u0131l\u0131yor",
|
||||
"closed": "Kapal\u0131",
|
||||
"closing": "Kapan\u0131yor",
|
||||
"stopped": "Durduruldu"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Evde",
|
||||
"not_home": "D\u0131\u015far\u0131da"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Kapal\u0131",
|
||||
"on": "A\u00e7\u0131k"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Kapal\u0131",
|
||||
"on": "A\u00e7\u0131k",
|
||||
"home": "Evde",
|
||||
"not_home": "D\u0131\u015far\u0131da",
|
||||
"open": "A\u00e7\u0131k",
|
||||
"closed": "Kapand\u0131",
|
||||
"locked": "Kilitli",
|
||||
"unlocked": "Kilitli de\u011fil",
|
||||
"ok": "Tamam",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Kapal\u0131",
|
||||
"on": "A\u00e7\u0131k"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Kapal\u0131",
|
||||
"on": "A\u00e7\u0131k"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "Kilitli",
|
||||
"unlocked": "Kilitli de\u011fil"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Kapal\u0131",
|
||||
"on": "A\u00e7\u0131k",
|
||||
"playing": "Oynuyor",
|
||||
"paused": "Durduruldu",
|
||||
"idle": "Bo\u015fta",
|
||||
"standby": "Bekleme modu"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "Evde",
|
||||
"not_home": "D\u0131\u015far\u0131da"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "Tamam",
|
||||
"problem": "Problem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Kapal\u0131",
|
||||
"on": "A\u00e7\u0131k"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Kapal\u0131",
|
||||
"on": "A\u00e7\u0131k"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Kapal\u0131",
|
||||
"on": "A\u00e7\u0131k"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Ufkun \u00fczerinde",
|
||||
"below_horizon": "Ufkun alt\u0131nda"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "Kapal\u0131",
|
||||
"on": "A\u00e7\u0131k"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "Temizleniyor",
|
||||
"docked": "Dock'da",
|
||||
"error": "Hata",
|
||||
"idle": "Bo\u015fta",
|
||||
"off": "Kapal\u0131",
|
||||
"on": "A\u00e7\u0131k",
|
||||
"paused": "Durduruldu",
|
||||
"returning": "Dock'a geri d\u00f6n\u00fc\u015f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "Aktif",
|
||||
"idle": "Bo\u015fta",
|
||||
"paused": "Durduruldu"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "A\u00e7\u0131k, gece",
|
||||
"cloudy": "Bulutlu",
|
||||
"exceptional": "Ola\u011fan\u00fcst\u00fc",
|
||||
"fog": "Sis",
|
||||
"hail": "Selam",
|
||||
"lightning": "Y\u0131ld\u0131r\u0131m",
|
||||
"lightning-rainy": "Y\u0131ld\u0131r\u0131m, ya\u011fmurlu",
|
||||
"partlycloudy": "Par\u00e7al\u0131 bulutlu",
|
||||
"pouring": "D\u00f6kme",
|
||||
"rainy": "Ya\u011fmurlu",
|
||||
"snowy": "Karl\u0131",
|
||||
"snowy-rainy": "Karl\u0131, ya\u011fmurlu",
|
||||
"sunny": "G\u00fcne\u015fli",
|
||||
"windy": "R\u00fczgarl\u0131",
|
||||
"windy-variant": "R\u00fczgarl\u0131"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u0438\u043c\u043a\u043d\u0435\u043d\u043e",
|
||||
"on": "\u0423\u0432\u0456\u043c\u043a\u043d\u0435\u043d\u043e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "\u0414\u0435\u043d\u044c",
|
||||
"night": "\u041d\u0456\u0447"
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u0438\u043c\u043a\u043d\u0435\u043d\u043e",
|
||||
"on": "\u0423\u0432\u0456\u043c\u043a\u043d\u0435\u043d\u043e"
|
||||
},
|
||||
"battery": {
|
||||
"off": "\u041d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u0438\u0439",
|
||||
"on": "\u041d\u0438\u0437\u044c\u043a\u0438\u0439"
|
||||
},
|
||||
"cold": {
|
||||
"off": "\u041d\u043e\u0440\u043c\u0430",
|
||||
"on": "\u041e\u0445\u043e\u043b\u043e\u0434\u0436\u0435\u043d\u043d\u044f"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "\u0412\u0456\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u043e",
|
||||
"on": "\u041f\u0456\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u043e"
|
||||
},
|
||||
"door": {
|
||||
"off": "\u0417\u0430\u0447\u0438\u043d\u0435\u043d\u0456",
|
||||
"on": "\u0412\u0456\u0434\u0447\u0438\u043d\u0435\u043d\u0456"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "\u0417\u0430\u0447\u0438\u043d\u0435\u043d\u0406",
|
||||
"on": "\u0412\u0456\u0434\u043a\u0440\u0438\u0442\u0456"
|
||||
},
|
||||
"gas": {
|
||||
"off": "\u0427\u0438\u0441\u0442\u043e",
|
||||
"on": "\u0412\u0438\u044f\u0432\u043b\u0435\u043d\u043e \u0433\u0430\u0437"
|
||||
},
|
||||
"heat": {
|
||||
"off": "\u041d\u043e\u0440\u043c\u0430",
|
||||
"on": "\u041d\u0430\u0433\u0440\u0456\u0432\u0430\u043d\u043d\u044f"
|
||||
},
|
||||
"lock": {
|
||||
"off": "\u0417\u0430\u0431\u043b\u043e\u043a\u043e\u0432\u0430\u043d\u043e",
|
||||
"on": "\u0420\u043e\u0437\u0431\u043b\u043e\u043a\u043e\u0432\u0430\u043d\u043e"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "\u0421\u0443\u0445\u043e",
|
||||
"on": "\u0412\u043e\u043b\u043e\u0433\u043e"
|
||||
},
|
||||
"motion": {
|
||||
"off": "\u041d\u0435\u043c\u0430\u0454 \u0440\u0443\u0445\u0443",
|
||||
"on": "\u0412\u0438\u044f\u0432\u043b\u0435\u043d\u043e \u0440\u0443\u0445"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "\u0427\u0438\u0441\u0442\u043e",
|
||||
"on": "\u0412\u0438\u044f\u0432\u043b\u0435\u043d\u043e \u043f\u0440\u0438\u0441\u0443\u0442\u043d\u0456\u0441\u0442\u044c"
|
||||
},
|
||||
"opening": {
|
||||
"off": "\u0417\u0430\u043a\u0440\u0438\u0442\u043e",
|
||||
"on": "\u0412\u0456\u0434\u043a\u0440\u0438\u0442\u0438\u0439"
|
||||
},
|
||||
"presence": {
|
||||
"off": "\u041d\u0435 \u0432\u0434\u043e\u043c\u0430",
|
||||
"on": "\u0412\u0434\u043e\u043c\u0430"
|
||||
},
|
||||
"problem": {
|
||||
"off": "\u041e\u041a",
|
||||
"on": "\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430"
|
||||
},
|
||||
"safety": {
|
||||
"off": "\u0411\u0435\u0437\u043f\u0435\u0447\u043d\u043e",
|
||||
"on": "\u041d\u0435\u0431\u0435\u0437\u043f\u0435\u0447\u043d\u043e"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "\u0427\u0438\u0441\u0442\u043e",
|
||||
"on": "\u0412\u0438\u044f\u0432\u043b\u0435\u043d\u043e \u0434\u0438\u043c"
|
||||
},
|
||||
"sound": {
|
||||
"off": "\u0427\u0438\u0441\u0442\u043e",
|
||||
"on": "\u0412\u0438\u044f\u0432\u043b\u0435\u043d\u043e \u0437\u0432\u0443\u043a"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "\u041d\u0435 \u0432\u0438\u044f\u0432\u043b\u0435\u043d\u043e",
|
||||
"on": "\u0412\u0438\u044f\u0432\u043b\u0435\u043d\u0430 \u0432\u0456\u0431\u0440\u0430\u0446\u0456\u044f"
|
||||
},
|
||||
"window": {
|
||||
"off": "\u0417\u0430\u0447\u0438\u043d\u0435\u043d\u0435",
|
||||
"on": "\u0412\u0456\u0434\u0447\u0438\u043d\u0435\u043d\u0435"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "\u041e\u0445\u043e\u0440\u043e\u043d\u0430",
|
||||
"disarmed": "\u0417\u043d\u044f\u0442\u043e",
|
||||
"armed_home": "\u0411\u0443\u0434\u0438\u043d\u043a\u043e\u0432\u0430 \u043e\u0445\u043e\u0440\u043e\u043d\u0430",
|
||||
"armed_away": "\u041e\u0445\u043e\u0440\u043e\u043d\u0430 (\u043d\u0435 \u0432\u0434\u043e\u043c\u0430)",
|
||||
"armed_night": "\u041d\u0456\u0447\u043d\u0430 \u043e\u0445\u043e\u0440\u043e\u043d\u0430",
|
||||
"armed_custom_bypass": "\u041e\u0445\u043e\u0440\u043e\u043d\u0430 \u0437 \u0432\u0438\u043d\u044f\u0442\u043a\u0430\u043c\u0438",
|
||||
"pending": "\u041e\u0447\u0456\u043a\u0443\u044e",
|
||||
"arming": "\u0421\u0442\u0430\u0432\u043b\u044e \u043d\u0430 \u043e\u0445\u043e\u0440\u043e\u043d\u0443",
|
||||
"disarming": "\u0417\u043d\u044f\u0442\u0442\u044f",
|
||||
"triggered": "\u0422\u0440\u0438\u0432\u043e\u0433\u0430"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u0438\u043c\u043a\u043d\u0435\u043d\u043e",
|
||||
"on": "\u0423\u0432\u0456\u043c\u043a\u043d\u0435\u043d\u043e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u0438\u043c\u043a\u043d\u0435\u043d\u043e",
|
||||
"on": "\u0423\u0432\u0456\u043c\u043a\u043d\u0435\u043d\u043e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "\u0417\u0430\u043f\u0438\u0441",
|
||||
"streaming": "\u0422\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0456\u044f",
|
||||
"idle": "\u041e\u0447\u0456\u043a\u0443\u0432\u0430\u043d\u043d\u044f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u0438\u043c\u043a\u043d\u0435\u043d\u043e",
|
||||
"heat": "\u041e\u0431\u0456\u0433\u0440\u0456\u0432\u0430\u043d\u043d\u044f",
|
||||
"cool": "\u041e\u0445\u043e\u043b\u043e\u0434\u0436\u0435\u043d\u043d\u044f",
|
||||
"heat_cool": "\u041e\u043f\u0430\u043b\u0435\u043d\u043d\u044f/\u041e\u0445\u043e\u043b\u043e\u0434\u0436\u0435\u043d\u043d\u044f",
|
||||
"auto": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u0438\u0439",
|
||||
"dry": "\u041e\u0441\u0443\u0448\u0435\u043d\u043d\u044f",
|
||||
"fan_only": "\u041b\u0438\u0448\u0435 \u0432\u0435\u043d\u0442\u0438\u043b\u044f\u0442\u043e\u0440"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438",
|
||||
"configured": "\u041d\u0430\u043b\u0430\u0448\u0442\u043e\u0432\u0430\u043d\u043e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "\u0412\u0456\u0434\u0447\u0438\u043d\u0435\u043d\u043e",
|
||||
"opening": "\u0412\u0456\u0434\u043a\u0440\u0438\u0432\u0430\u0454\u0442\u044c\u0441\u044f",
|
||||
"closed": "\u0417\u0430\u0447\u0438\u043d\u0435\u043d\u043e",
|
||||
"closing": "\u0417\u0430\u043a\u0440\u0438\u0432\u0430\u0454\u0442\u044c\u0441\u044f",
|
||||
"stopped": "\u041f\u0440\u0438\u0437\u0443\u043f\u0438\u043d\u0435\u043d\u043e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u0412\u0434\u043e\u043c\u0430",
|
||||
"not_home": "\u0412\u0456\u0434\u0441\u0443\u0442\u043d\u0456\u0439"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u0438\u043c\u043a\u043d\u0435\u043d\u043e",
|
||||
"on": "\u0423\u0432\u0456\u043c\u043a\u043d\u0435\u043d\u043e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u0438\u043c\u043a\u043d\u0435\u043d\u043e",
|
||||
"on": "\u0423\u0432\u0456\u043c\u043a\u043d\u0435\u043d\u043e",
|
||||
"home": "\u0412\u0434\u043e\u043c\u0430",
|
||||
"not_home": "\u041d\u0435 \u0432\u0434\u043e\u043c\u0430",
|
||||
"open": "\u0412\u0456\u0434\u0447\u0438\u043d\u0435\u043d\u043e",
|
||||
"closed": "\u0417\u0430\u0447\u0438\u043d\u0435\u043d\u043e",
|
||||
"locked": "\u0417\u0430\u0431\u043b\u043e\u043a\u043e\u0432\u0430\u043d\u043e",
|
||||
"unlocked": "\u0420\u043e\u0437\u0431\u043b\u043e\u043a\u043e\u0432\u0430\u043d\u043e",
|
||||
"ok": "\u041e\u041a",
|
||||
"problem": "\u0425\u0430\u043b\u0435\u043f\u0430"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u0438\u043c\u043a\u043d\u0435\u043d\u043e",
|
||||
"on": "\u0423\u0432\u0456\u043c\u043a\u043d\u0435\u043d\u043e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u0438\u043c\u043a\u043d\u0435\u043d\u043e",
|
||||
"on": "\u0423\u0432\u0456\u043c\u043a\u043d\u0435\u043d\u043e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "\u0417\u0430\u0431\u043b\u043e\u043a\u043e\u0432\u0430\u043d\u043e",
|
||||
"unlocked": "\u0420\u043e\u0437\u0431\u043b\u043e\u043a\u043e\u0432\u0430\u043d\u043e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u0438\u043c\u043a\u043d\u0435\u043d\u043e",
|
||||
"on": "\u0423\u0432\u0456\u043c\u043a\u043d\u0435\u043d\u043e",
|
||||
"playing": "\u041f\u0440\u043e\u0433\u0440\u0430\u0432\u0430\u043d\u043d\u044f",
|
||||
"paused": "\u041f\u0440\u0438\u0437\u0443\u043f\u0438\u043d\u0435\u043d\u043e",
|
||||
"idle": "\u0411\u0435\u0437\u0434\u0456\u044f\u043b\u044c\u043d\u0456\u0441\u0442\u044c",
|
||||
"standby": "\u041e\u0447\u0456\u043a\u0443\u0432\u0430\u043d\u043d\u044f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u0412\u0434\u043e\u043c\u0430",
|
||||
"not_home": "\u0412\u0456\u0434\u0441\u0443\u0442\u043d\u0456\u0439"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "\u0422\u0410\u041a",
|
||||
"problem": "\u0425\u0430\u043b\u0435\u043f\u0430"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u0438\u043c\u043a\u043d\u0435\u043d\u043e",
|
||||
"on": "\u0423\u0432\u0456\u043c\u043a\u043d\u0435\u043d\u043e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u0438\u043c\u043a\u043d\u0435\u043d\u043e",
|
||||
"on": "\u0423\u0432\u0456\u043c\u043a\u043d\u0435\u043d\u043e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "\u041d\u0430\u0434 \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u043e\u043c",
|
||||
"below_horizon": "\u0417\u0430 \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u043e\u043c"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u0412\u0438\u043c\u043a\u043d\u0435\u043d\u043e",
|
||||
"on": "\u0423\u0432\u0456\u043c\u043a\u043d\u0435\u043d\u043e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "\u041f\u0440\u0438\u0431\u0438\u0440\u0430\u043d\u043d\u044f",
|
||||
"docked": "\u041f\u0440\u0438\u0441\u0442\u0438\u043a\u043e\u0432\u0430\u043d\u043e",
|
||||
"error": "\u041f\u043e\u043c\u0438\u043b\u043a\u0430",
|
||||
"idle": "\u041e\u0447\u0456\u043a\u0443\u0432\u0430\u043d\u043d\u044f",
|
||||
"off": "\u0412\u0438\u043c\u043a\u043d\u0435\u043d\u043e",
|
||||
"on": "\u0423\u0432\u0456\u043c\u043a\u043d\u0435\u043d\u043e",
|
||||
"paused": "\u041f\u0440\u0438\u0437\u0443\u043f\u0438\u043d\u0435\u043d\u043e",
|
||||
"returning": "\u041f\u043e\u0432\u0435\u0440\u043d\u0435\u043d\u043d\u044f \u0434\u043e \u0434\u043e\u043a\u0430"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "\u0430\u043a\u0442\u0438\u0432\u043d\u0438\u0439",
|
||||
"idle": "\u043e\u0447\u0456\u043a\u0443\u0432\u0430\u043d\u043d\u044f",
|
||||
"paused": "\u043d\u0430 \u043f\u0430\u0443\u0437\u0456"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "\u042f\u0441\u043d\u043e, \u043d\u0456\u0447",
|
||||
"cloudy": "\u0425\u043c\u0430\u0440\u043d\u043e",
|
||||
"exceptional": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u0436\u0435\u043d\u043d\u044f",
|
||||
"fog": "\u0422\u0443\u043c\u0430\u043d",
|
||||
"hail": "\u0413\u0440\u0430\u0434",
|
||||
"lightning": "\u0411\u043b\u0438\u0441\u043a\u0430\u0432\u043a\u0430",
|
||||
"lightning-rainy": "\u0411\u043b\u0438\u0441\u043a\u0430\u0432\u043a\u0430, \u0434\u043e\u0449",
|
||||
"partlycloudy": "\u041d\u0435\u0432\u0435\u043b\u0438\u043a\u0430 \u0445\u043c\u0430\u0440\u043d\u0456\u0441\u0442\u044c",
|
||||
"pouring": "\u0417\u043b\u0438\u0432\u0430",
|
||||
"rainy": "\u0414\u043e\u0449\u043e\u0432\u0430",
|
||||
"snowy": "\u0421\u043d\u0456\u0436\u043d\u043e",
|
||||
"snowy-rainy": "\u0421\u043d\u0456\u0433, \u0434\u043e\u0449",
|
||||
"sunny": "\u0421\u043e\u043d\u044f\u0447\u043d\u043e",
|
||||
"windy": "\u0412\u0456\u0442\u0440\u044f\u043d\u043e",
|
||||
"windy-variant": "\u0412\u0456\u0442\u0440\u044f\u043d\u043e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "\u0406\u043d\u0456\u0446\u0456\u0430\u043b\u0456\u0437\u0430\u0446\u0456\u044f",
|
||||
"dead": "\u041d\u0435\u0440\u043e\u0431\u043e\u0447\u0430",
|
||||
"sleeping": "\u0421\u043f\u043b\u044f\u0447\u043a\u0430",
|
||||
"ready": "\u0413\u043e\u0442\u043e\u0432\u0438\u0439"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "\u0406\u043d\u0456\u0446\u0456\u0430\u043b\u0456\u0437\u0430\u0446\u0456\u044f ( {query_stage} )",
|
||||
"dead": "\u041d\u0435\u0440\u043e\u0431\u043e\u0447\u0430 ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"component": {}
|
||||
}
|
||||
@@ -0,0 +1,342 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "T\u1eaft",
|
||||
"on": "B\u1eadt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "T\u1eaft",
|
||||
"on": "B\u1eadt"
|
||||
},
|
||||
"battery": {
|
||||
"off": "B\u00ecnh th\u01b0\u1eddng",
|
||||
"on": "Th\u1ea5p"
|
||||
},
|
||||
"cold": {
|
||||
"off": "B\u00ecnh th\u01b0\u1eddng",
|
||||
"on": "L\u1ea1nh"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "\u0110\u00e3 ng\u1eaft k\u1ebft n\u1ed1i",
|
||||
"on": "\u0110\u00e3 k\u1ebft n\u1ed1i"
|
||||
},
|
||||
"door": {
|
||||
"off": "\u0110\u00f3ng",
|
||||
"on": "M\u1edf"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "\u0110\u00f3ng",
|
||||
"on": "M\u1edf"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Tr\u00f4\u0341ng tra\u0309i",
|
||||
"on": "Ph\u00e1t hi\u1ec7n"
|
||||
},
|
||||
"heat": {
|
||||
"off": "B\u00ecnh th\u01b0\u1eddng",
|
||||
"on": "N\u00f3ng"
|
||||
},
|
||||
"lock": {
|
||||
"off": "\u0110\u00e3 kho\u00e1",
|
||||
"on": "M\u1edf kho\u00e1"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Kh\u00f4",
|
||||
"on": "\u01af\u1edbt"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Tr\u00f4\u0341ng tra\u0309i",
|
||||
"on": "Ph\u00e1t hi\u1ec7n"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Tr\u00f4\u0341ng tra\u0309i",
|
||||
"on": "Ph\u00e1t hi\u1ec7n"
|
||||
},
|
||||
"opening": {
|
||||
"off": "\u0110\u00e3 \u0111\u00f3ng",
|
||||
"on": "M\u1edf"
|
||||
},
|
||||
"presence": {
|
||||
"off": "\u0110i v\u1eafng",
|
||||
"on": "\u1ede nh\u00e0"
|
||||
},
|
||||
"problem": {
|
||||
"off": "OK",
|
||||
"on": "C\u00f3 v\u1ea5n \u0111\u1ec1"
|
||||
},
|
||||
"safety": {
|
||||
"off": "An to\u00e0n",
|
||||
"on": "Kh\u00f4ng an to\u00e0n"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Tr\u00f4\u0341ng tra\u0309i",
|
||||
"on": "Ph\u00e1t hi\u1ec7n"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Tr\u00f4\u0341ng tra\u0309i",
|
||||
"on": "Ph\u00e1t hi\u1ec7n"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Tr\u00f4\u0341ng tra\u0309i",
|
||||
"on": "Ph\u00e1t hi\u1ec7n"
|
||||
},
|
||||
"window": {
|
||||
"off": "\u0110\u00f3ng",
|
||||
"on": "M\u1edf"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "K\u00edch ho\u1ea1t an ninh",
|
||||
"disarmed": "V\u00f4 hi\u1ec7u h\u00f3a",
|
||||
"armed_home": "B\u1ea3o v\u1ec7 \u1edf nh\u00e0",
|
||||
"armed_away": "B\u1ea3o v\u1ec7 \u0111i v\u1eafng",
|
||||
"armed_night": "Ban \u0111\u00eam",
|
||||
"armed_custom_bypass": "T\u00f9y ch\u1ec9nh b\u1ecf qua An ninh",
|
||||
"pending": "\u0110ang ch\u1edd x\u1eed l\u00fd",
|
||||
"arming": "K\u00edch ho\u1ea1t",
|
||||
"disarming": "Gi\u1ea3i gi\u00e1p",
|
||||
"triggered": "K\u00edch ho\u1ea1t"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "T\u1eaft",
|
||||
"on": "B\u1eadt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "T\u1eaft",
|
||||
"on": "B\u1eadt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "Ghi \u00e2m",
|
||||
"streaming": "Ph\u00e1t tr\u1ef1c tuy\u1ebfn",
|
||||
"idle": "Kh\u00f4ng ho\u1ea1t \u0111\u1ed9ng"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "T\u1eaft",
|
||||
"heat": "Nhi\u1ec7t",
|
||||
"cool": "M\u00e1t m\u1ebb",
|
||||
"heat_cool": "N\u00f3ng/L\u1ea1nh",
|
||||
"auto": "T\u01b0\u0323 \u0111\u00f4\u0323ng",
|
||||
"dry": "Kh\u00f4",
|
||||
"fan_only": "Ch\u1ec9 c\u00f3 qu\u1ea1t"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "C\u1ea5u h\u00ecnh",
|
||||
"configured": "\u0110\u00e3 c\u1ea5u h\u00ecnh"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "M\u1edf",
|
||||
"opening": "\u0110ang m\u1edf",
|
||||
"closed": "\u0110\u00e3 \u0111\u00f3ng",
|
||||
"closing": "\u0110ang \u0111\u00f3ng",
|
||||
"stopped": "\u0110\u00e3 d\u1eebng"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u1ede nh\u00e0",
|
||||
"not_home": "\u0110i v\u1eafng"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "T\u1eaft",
|
||||
"on": "B\u1eadt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "T\u1eaft",
|
||||
"on": "B\u1eadt",
|
||||
"home": "\u1ede nh\u00e0",
|
||||
"not_home": "\u0110i v\u1eafng",
|
||||
"open": "M\u1edf",
|
||||
"closed": "\u0110\u00e3 \u0111\u00f3ng",
|
||||
"locked": "Kho\u00e1",
|
||||
"unlocked": "M\u1edf kho\u00e1",
|
||||
"ok": "OK",
|
||||
"problem": "V\u1ea5n \u0111\u1ec1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "T\u1eaft",
|
||||
"on": "B\u1eadt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "T\u1eaft",
|
||||
"on": "B\u1eadt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "\u0110\u00e3 kh\u00f3a",
|
||||
"unlocked": "M\u1edf kh\u00f3a"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "T\u1eaft",
|
||||
"on": "B\u1eadt",
|
||||
"playing": "\u0110ang ch\u01a1i",
|
||||
"paused": "T\u1ea1m d\u1eebng",
|
||||
"idle": "Kh\u00f4ng ho\u1ea1t \u0111\u1ed9ng",
|
||||
"standby": "Ch\u1ebf \u0111\u1ed9 ch\u1edd"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u1ede nh\u00e0",
|
||||
"not_home": "\u0110i v\u1eafng"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "OK",
|
||||
"problem": "V\u1ea5n \u0111\u1ec1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "T\u1eaft",
|
||||
"on": "B\u1eadt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "T\u1eaft",
|
||||
"on": "B\u1eadt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "Tr\u00ean \u0111\u01b0\u1eddng ch\u00e2n tr\u1eddi",
|
||||
"below_horizon": "D\u01b0\u1edbi \u0111\u01b0\u1eddng ch\u00e2n tr\u1eddi"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "T\u1eaft",
|
||||
"on": "B\u1eadt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "\u0110ang l\u00e0m s\u1ea1ch",
|
||||
"docked": "\u0110\u00e3 v\u00e0o dock",
|
||||
"error": "L\u1ed7i",
|
||||
"idle": "Kh\u00f4ng ho\u1ea1t \u0111\u1ed9ng",
|
||||
"off": "M\u1edf",
|
||||
"on": "T\u1eaft",
|
||||
"paused": "T\u1ea1m d\u1eebng",
|
||||
"returning": "\u0110ang tr\u1edf l\u1ea1i dock"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "ho\u1ea1t \u0111\u1ed9ng",
|
||||
"idle": "nh\u00e0n r\u1ed7i",
|
||||
"paused": "t\u1ea1m d\u1eebng"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "Tr\u1eddi trong, \u0111\u00eam",
|
||||
"cloudy": "Nhi\u1ec1u m\u00e2y",
|
||||
"fog": "S\u01b0\u01a1ng m\u00f9",
|
||||
"hail": "M\u01b0a \u0111a\u0341",
|
||||
"lightning": "S\u00e9t",
|
||||
"lightning-rainy": "S\u00e9t, m\u01b0a",
|
||||
"partlycloudy": "M\u00e2y r\u1ea3i r\u00e1c",
|
||||
"pouring": "M\u01b0a l\u1edbn",
|
||||
"rainy": "M\u01b0a",
|
||||
"snowy": "Tuy\u1ebft",
|
||||
"snowy-rainy": "Tuy\u1ebft, m\u01b0a",
|
||||
"sunny": "N\u1eafng \u0111\u1eb9p",
|
||||
"windy": "Gi\u00f3 nh\u1eb9",
|
||||
"windy-variant": "Gi\u00f3 nh\u1eb9"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "Kh\u1edfi t\u1ea1o",
|
||||
"dead": "\u0110\u00e3 t\u1eaft",
|
||||
"sleeping": "Ng\u1ee7",
|
||||
"ready": "S\u1eb5n s\u00e0ng"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "Kh\u1edfi t\u1ea1o ( {query_stage} )",
|
||||
"dead": "\u0110\u00e3 t\u1eaft ({query_stage})"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u5173",
|
||||
"on": "\u5f00"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "\u521d\u59cb\u5316",
|
||||
"dead": "\u65ad\u5f00",
|
||||
"sleeping": "\u4f11\u7720",
|
||||
"ready": "\u5c31\u7eea"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "\u521d\u59cb\u5316 ({query_stage})",
|
||||
"dead": "\u65ad\u5f00 ({query_stage})"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "\u65e5",
|
||||
"night": "\u591c"
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u5173",
|
||||
"on": "\u5f00"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u5173\u95ed",
|
||||
"on": "\u5f00\u542f"
|
||||
},
|
||||
"battery": {
|
||||
"off": "\u6b63\u5e38",
|
||||
"on": "\u4f4e"
|
||||
},
|
||||
"cold": {
|
||||
"off": "\u6b63\u5e38",
|
||||
"on": "\u8fc7\u51b7"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "\u5df2\u65ad\u5f00",
|
||||
"on": "\u5df2\u8fde\u63a5"
|
||||
},
|
||||
"door": {
|
||||
"off": "\u5173\u95ed",
|
||||
"on": "\u5f00\u542f"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "\u5173\u95ed",
|
||||
"on": "\u5f00\u542f"
|
||||
},
|
||||
"gas": {
|
||||
"off": "\u6b63\u5e38",
|
||||
"on": "\u89e6\u53d1"
|
||||
},
|
||||
"heat": {
|
||||
"off": "\u6b63\u5e38",
|
||||
"on": "\u8fc7\u70ed"
|
||||
},
|
||||
"lock": {
|
||||
"off": "\u4e0a\u9501",
|
||||
"on": "\u89e3\u9501"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "\u5e72\u71e5",
|
||||
"on": "\u6e7f\u6da6"
|
||||
},
|
||||
"motion": {
|
||||
"off": "\u672a\u89e6\u53d1",
|
||||
"on": "\u89e6\u53d1"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "\u672a\u89e6\u53d1",
|
||||
"on": "\u5df2\u89e6\u53d1"
|
||||
},
|
||||
"opening": {
|
||||
"off": "\u5173\u95ed",
|
||||
"on": "\u5f00\u542f"
|
||||
},
|
||||
"presence": {
|
||||
"off": "\u79bb\u5f00",
|
||||
"on": "\u5728\u5bb6"
|
||||
},
|
||||
"problem": {
|
||||
"off": "\u6b63\u5e38",
|
||||
"on": "\u5f02\u5e38"
|
||||
},
|
||||
"safety": {
|
||||
"off": "\u5b89\u5168",
|
||||
"on": "\u5371\u9669"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "\u6b63\u5e38",
|
||||
"on": "\u89e6\u53d1"
|
||||
},
|
||||
"sound": {
|
||||
"off": "\u6b63\u5e38",
|
||||
"on": "\u89e6\u53d1"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "\u6b63\u5e38",
|
||||
"on": "\u89e6\u53d1"
|
||||
},
|
||||
"window": {
|
||||
"off": "\u5173\u95ed",
|
||||
"on": "\u5f00\u542f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u5173",
|
||||
"on": "\u5f00",
|
||||
"playing": "\u6b63\u5728\u64ad\u653e",
|
||||
"paused": "\u5df2\u6682\u505c",
|
||||
"idle": "\u7a7a\u95f2",
|
||||
"standby": "\u5f85\u673a"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u5728\u5bb6",
|
||||
"not_home": "\u79bb\u5f00"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "\u6b63\u5728\u6e05\u626b",
|
||||
"docked": "\u505c\u9760",
|
||||
"error": "\u9519\u8bef",
|
||||
"idle": "\u7a7a\u95f2",
|
||||
"off": "\u5173\u95ed",
|
||||
"on": "\u5f00\u542f",
|
||||
"paused": "\u5df2\u6682\u505c",
|
||||
"returning": "\u6b63\u5728\u8fd4\u56de"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u5173\u95ed",
|
||||
"on": "\u5f00"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "\u9501\u5b9a",
|
||||
"unlocked": "\u89e3\u9501"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u5173",
|
||||
"heat": "\u5236\u70ed",
|
||||
"cool": "\u5236\u51b7",
|
||||
"heat_cool": "\u5236\u70ed/\u5236\u51b7",
|
||||
"auto": "\u81ea\u52a8",
|
||||
"dry": "\u9664\u6e7f",
|
||||
"fan_only": "\u4ec5\u9001\u98ce"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "\u8b66\u6212",
|
||||
"disarmed": "\u8b66\u6212\u89e3\u9664",
|
||||
"armed_home": "\u5728\u5bb6\u8b66\u6212",
|
||||
"armed_away": "\u79bb\u5bb6\u8b66\u6212",
|
||||
"armed_night": "\u591c\u95f4\u8b66\u6212",
|
||||
"armed_custom_bypass": "\u81ea\u5b9a\u4e49\u533a\u57df\u8b66\u6212",
|
||||
"pending": "\u6302\u8d77",
|
||||
"arming": "\u8b66\u6212\u4e2d",
|
||||
"disarming": "\u8b66\u6212\u89e3\u9664",
|
||||
"triggered": "\u5df2\u89e6\u53d1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u5173\u95ed",
|
||||
"on": "\u5f00\u542f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u5173",
|
||||
"on": "\u5f00"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "\u5f55\u5236\u4e2d",
|
||||
"streaming": "\u76d1\u63a7\u4e2d",
|
||||
"idle": "\u5f85\u673a"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "\u8bbe\u7f6e",
|
||||
"configured": "\u8bbe\u7f6e\u6210\u529f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "\u5df2\u6253\u5f00",
|
||||
"opening": "\u6b63\u5728\u6253\u5f00",
|
||||
"closed": "\u5df2\u5173\u95ed",
|
||||
"closing": "\u6b63\u5728\u5173\u95ed",
|
||||
"stopped": "\u5df2\u505c\u6b62"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u5173\u95ed",
|
||||
"on": "\u5f00\u542f",
|
||||
"home": "\u5728\u5bb6",
|
||||
"not_home": "\u79bb\u5f00",
|
||||
"open": "\u5f00\u542f",
|
||||
"closed": "\u5df2\u5173\u95ed",
|
||||
"locked": "\u5df2\u9501\u5b9a",
|
||||
"unlocked": "\u5df2\u89e3\u9501",
|
||||
"ok": "\u6b63\u5e38",
|
||||
"problem": "\u5f02\u5e38"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u5173",
|
||||
"on": "\u5f00"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u5728\u5bb6",
|
||||
"not_home": "\u79bb\u5f00"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "\u6b63\u5e38",
|
||||
"problem": "\u5f02\u5e38"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u5173",
|
||||
"on": "\u5f00"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u5173",
|
||||
"on": "\u5f00"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "\u65e5\u51fa",
|
||||
"below_horizon": "\u65e5\u843d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u5173",
|
||||
"on": "\u5f00"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "\u6fc0\u6d3b",
|
||||
"idle": "\u7a7a\u95f2",
|
||||
"paused": "\u6682\u505c"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "\u591c\u95f4\u6674\u6717",
|
||||
"cloudy": "\u9634",
|
||||
"exceptional": "\u7279\u6b8a",
|
||||
"fog": "\u96fe",
|
||||
"hail": "\u51b0\u96f9",
|
||||
"lightning": "\u96f7\u7535",
|
||||
"lightning-rainy": "\u96f7\u9635\u96e8",
|
||||
"partlycloudy": "\u591a\u4e91",
|
||||
"pouring": "\u66b4\u96e8",
|
||||
"rainy": "\u96e8",
|
||||
"snowy": "\u96ea",
|
||||
"snowy-rainy": "\u96e8\u5939\u96ea",
|
||||
"sunny": "\u6674",
|
||||
"windy": "\u6709\u98ce",
|
||||
"windy-variant": "\u6709\u98ce"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"component": {
|
||||
"sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u95dc\u9589",
|
||||
"on": "\u958b\u5553"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"state": {
|
||||
"_": {
|
||||
"initializing": "\u6b63\u5728\u521d\u59cb\u5316",
|
||||
"dead": "\u5931\u53bb\u9023\u7dda",
|
||||
"sleeping": "\u4f11\u7720\u4e2d",
|
||||
"ready": "\u6e96\u5099\u5c31\u7dd2"
|
||||
},
|
||||
"query_stage": {
|
||||
"initializing": "\u6b63\u5728\u521d\u59cb\u5316",
|
||||
"dead": "\u5931\u53bb\u9023\u7dda"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ebusd": {
|
||||
"state": {
|
||||
"day": "\u767d\u5929",
|
||||
"night": "\u591c\u665a"
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u5df2\u95dc\u71c8",
|
||||
"on": "\u5df2\u958b\u71c8"
|
||||
}
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u95dc\u9589",
|
||||
"on": "\u958b\u5553"
|
||||
}
|
||||
}
|
||||
},
|
||||
"binary_sensor": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u95dc\u9589",
|
||||
"on": "\u958b\u555f"
|
||||
},
|
||||
"battery": {
|
||||
"off": "\u96fb\u91cf\u6b63\u5e38",
|
||||
"on": "\u96fb\u91cf\u4f4e"
|
||||
},
|
||||
"cold": {
|
||||
"off": "\u6b63\u5e38",
|
||||
"on": "\u51b7"
|
||||
},
|
||||
"connectivity": {
|
||||
"off": "\u5df2\u65b7\u7dda",
|
||||
"on": "\u5df2\u9023\u7dda"
|
||||
},
|
||||
"door": {
|
||||
"off": "\u5df2\u95dc\u9589",
|
||||
"on": "\u5df2\u958b\u555f"
|
||||
},
|
||||
"garage_door": {
|
||||
"off": "\u95dc\u9589",
|
||||
"on": "\u5df2\u958b\u555f"
|
||||
},
|
||||
"gas": {
|
||||
"off": "\u672a\u89f8\u767c",
|
||||
"on": "\u5df2\u89f8\u767c"
|
||||
},
|
||||
"heat": {
|
||||
"off": "\u6b63\u5e38",
|
||||
"on": "\u71b1"
|
||||
},
|
||||
"lock": {
|
||||
"off": "\u5df2\u4e0a\u9396",
|
||||
"on": "\u5df2\u89e3\u9396"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "\u4e7e\u71e5",
|
||||
"on": "\u6fd5\u6f64"
|
||||
},
|
||||
"motion": {
|
||||
"off": "\u7121\u4eba",
|
||||
"on": "\u6709\u4eba"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "\u672a\u89f8\u767c",
|
||||
"on": "\u5df2\u89f8\u767c"
|
||||
},
|
||||
"opening": {
|
||||
"off": "\u95dc\u9589",
|
||||
"on": "\u958b\u555f"
|
||||
},
|
||||
"presence": {
|
||||
"off": "\u96e2\u5bb6",
|
||||
"on": "\u5728\u5bb6"
|
||||
},
|
||||
"problem": {
|
||||
"off": "\u78ba\u5b9a",
|
||||
"on": "\u7570\u5e38"
|
||||
},
|
||||
"safety": {
|
||||
"off": "\u5b89\u5168",
|
||||
"on": "\u5371\u96aa"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "\u672a\u89f8\u767c",
|
||||
"on": "\u5df2\u89f8\u767c"
|
||||
},
|
||||
"sound": {
|
||||
"off": "\u672a\u89f8\u767c",
|
||||
"on": "\u5df2\u89f8\u767c"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "\u672a\u5075\u6e2c",
|
||||
"on": "\u5075\u6e2c"
|
||||
},
|
||||
"window": {
|
||||
"off": "\u95dc\u9589",
|
||||
"on": "\u958b\u555f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lock": {
|
||||
"state": {
|
||||
"_": {
|
||||
"locked": "\u5df2\u4e0a\u9396",
|
||||
"unlocked": "\u5df2\u89e3\u9396"
|
||||
}
|
||||
}
|
||||
},
|
||||
"cover": {
|
||||
"state": {
|
||||
"_": {
|
||||
"open": "\u958b\u555f",
|
||||
"opening": "\u958b\u555f\u4e2d",
|
||||
"closed": "\u95dc\u9589",
|
||||
"closing": "\u95dc\u9589\u4e2d",
|
||||
"stopped": "\u505c\u6b62"
|
||||
}
|
||||
}
|
||||
},
|
||||
"alarm_control_panel": {
|
||||
"state": {
|
||||
"_": {
|
||||
"armed": "\u5df2\u8b66\u6212",
|
||||
"disarmed": "\u8b66\u6212\u89e3\u9664",
|
||||
"armed_home": "\u5728\u5bb6\u8b66\u6212",
|
||||
"armed_away": "\u96e2\u5bb6\u8b66\u6212",
|
||||
"armed_night": "\u591c\u9593\u8b66\u6212",
|
||||
"armed_custom_bypass": "\u8b66\u6212\u6a21\u5f0f\u72c0\u614b",
|
||||
"pending": "\u7b49\u5f85\u4e2d",
|
||||
"arming": "\u8b66\u6212\u4e2d",
|
||||
"disarming": "\u89e3\u9664\u4e2d",
|
||||
"triggered": "\u5df2\u89f8\u767c"
|
||||
}
|
||||
}
|
||||
},
|
||||
"media_player": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u95dc\u9589",
|
||||
"on": "\u958b\u555f",
|
||||
"playing": "\u64ad\u653e\u4e2d",
|
||||
"paused": "\u66ab\u505c",
|
||||
"idle": "\u9592\u7f6e",
|
||||
"standby": "\u5f85\u547d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u5728\u5bb6",
|
||||
"not_home": "\u96e2\u5bb6"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vacuum": {
|
||||
"state": {
|
||||
"_": {
|
||||
"cleaning": "\u6e05\u6383\u4e2d",
|
||||
"docked": "\u5145\u96fb\u4e2d",
|
||||
"error": "\u932f\u8aa4",
|
||||
"idle": "\u66ab\u505c",
|
||||
"off": "\u95dc\u9589",
|
||||
"on": "\u958b\u555f",
|
||||
"paused": "\u66ab\u505c",
|
||||
"returning": "\u8fd4\u56de\u5145\u96fb"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fan": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u95dc\u9589",
|
||||
"on": "\u958b\u555f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"climate": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u95dc\u9589",
|
||||
"heat": "\u6696\u6c23",
|
||||
"cool": "\u51b7\u6c23",
|
||||
"heat_cool": "\u6696\u6c23/\u51b7\u6c23",
|
||||
"auto": "\u81ea\u52d5",
|
||||
"dry": "\u9664\u6fd5\u6a21\u5f0f",
|
||||
"fan_only": "\u50c5\u9001\u98a8"
|
||||
}
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u95dc\u9589",
|
||||
"on": "\u958b\u555f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u95dc\u9589",
|
||||
"on": "\u958b\u555f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"camera": {
|
||||
"state": {
|
||||
"_": {
|
||||
"recording": "\u9304\u5f71\u4e2d",
|
||||
"streaming": "\u76e3\u63a7\u4e2d",
|
||||
"idle": "\u5f85\u547d"
|
||||
}
|
||||
}
|
||||
},
|
||||
"configurator": {
|
||||
"state": {
|
||||
"_": {
|
||||
"configure": "\u8a2d\u5b9a",
|
||||
"configured": "\u8a2d\u5b9a\u6210\u529f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u95dc\u9589",
|
||||
"on": "\u958b\u555f",
|
||||
"home": "\u5728\u5bb6",
|
||||
"not_home": "\u96e2\u5bb6",
|
||||
"open": "\u958b\u555f",
|
||||
"closed": "\u95dc\u9589",
|
||||
"locked": "\u5df2\u4e0a\u9396",
|
||||
"unlocked": "\u5df2\u89e3\u9396",
|
||||
"ok": "\u6b63\u5e38",
|
||||
"problem": "\u7570\u5e38"
|
||||
}
|
||||
}
|
||||
},
|
||||
"input_boolean": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u95dc\u9589",
|
||||
"on": "\u958b\u555f"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"state": {
|
||||
"_": {
|
||||
"home": "\u5728\u5bb6",
|
||||
"not_home": "\u96e2\u5bb6"
|
||||
}
|
||||
}
|
||||
},
|
||||
"plant": {
|
||||
"state": {
|
||||
"_": {
|
||||
"ok": "\u5065\u5eb7",
|
||||
"problem": "\u7570\u5e38"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remote": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u95dc\u9589",
|
||||
"on": "\u958b\u5553"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"state": {
|
||||
"_": {
|
||||
"off": "\u95dc\u9589",
|
||||
"on": "\u958b\u5553"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sun": {
|
||||
"state": {
|
||||
"_": {
|
||||
"above_horizon": "\u65e5\u51fa\u6771\u6d77",
|
||||
"below_horizon": "\u65e5\u843d\u897f\u5c71"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timer": {
|
||||
"state": {
|
||||
"_": {
|
||||
"active": "\u555f\u7528",
|
||||
"idle": "\u66ab\u505c",
|
||||
"paused": "\u66ab\u505c"
|
||||
}
|
||||
}
|
||||
},
|
||||
"weather": {
|
||||
"state": {
|
||||
"_": {
|
||||
"clear-night": "\u6674\u7a7a\u3001\u591c\u9593",
|
||||
"cloudy": "\u591a\u96f2",
|
||||
"exceptional": "\u4f8b\u5916",
|
||||
"fog": "\u6709\u9727",
|
||||
"hail": "\u51b0\u96f9",
|
||||
"lightning": "\u6709\u96f7",
|
||||
"lightning-rainy": "\u6709\u96f7\u96e8",
|
||||
"partlycloudy": "\u5c40\u90e8\u591a\u96f2",
|
||||
"pouring": "\u5927\u96e8",
|
||||
"rainy": "\u6709\u96e8",
|
||||
"snowy": "\u6709\u96ea",
|
||||
"snowy-rainy": "\u6709\u96ea\u3001\u6709\u96e8",
|
||||
"sunny": "\u6674\u5929",
|
||||
"windy": "\u6709\u98a8",
|
||||
"windy-variant": "\u6709\u98a8"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,434 @@
|
||||
{
|
||||
"config_entry": {
|
||||
"disabled_by": {
|
||||
"device": "ডিভাইস"
|
||||
}
|
||||
},
|
||||
"groups": {
|
||||
"owner": "মালিক"
|
||||
},
|
||||
"panel": {
|
||||
"config": "কনফিগারেশন",
|
||||
"history": "ইতিহাস",
|
||||
"logbook": "লগবুক",
|
||||
"mailbox": "ডাকবাক্স",
|
||||
"map": "মানচিত্র",
|
||||
"shopping_list": "কেনাকাটার তালিকা",
|
||||
"states": "ওভারভিউ"
|
||||
},
|
||||
"state": {
|
||||
"default": {
|
||||
"unavailable": "পাওয়া যাচ্ছে না",
|
||||
"unknown": "অজানা"
|
||||
}
|
||||
},
|
||||
"state_attributes": {
|
||||
"climate": {
|
||||
"fan_mode": {
|
||||
"off": "বন্ধ",
|
||||
"on": "চালু"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ui": {
|
||||
"common": {
|
||||
"copied_clipboard": "ক্লিপবোর্ডে অনুলিপি করা হয়েছে"
|
||||
},
|
||||
"components": {
|
||||
"area-picker": {
|
||||
"no_areas": "আপনার কোন এলাকা নেই",
|
||||
"no_match": "কোন সমন্বয় এলাকা খুঁজে পাওয়া যায়নি"
|
||||
},
|
||||
"blueprint-picker": {
|
||||
"add_user": "ব্যবহারকারী যুক্ত করুন",
|
||||
"remove_user": "ব্যবহারকারীকে সরান",
|
||||
"select_blueprint": "একটি ব্লুপ্রিন্ট নির্বাচন করুন"
|
||||
},
|
||||
"device-picker": {
|
||||
"no_devices": "আপনার কোনও ডিভাইস নেই",
|
||||
"no_match": "কোনো সমন্বয় ডিভাইস খুঁজে পাওয়া যায়নি"
|
||||
},
|
||||
"entity": {
|
||||
"entity-picker": {
|
||||
"no_match": "কোনো সমন্বয় সত্তা খুঁজে পাওয়া যায়নি"
|
||||
}
|
||||
},
|
||||
"media-browser": {
|
||||
"class": {
|
||||
"url": "URL"
|
||||
}
|
||||
},
|
||||
"target-picker": {
|
||||
"add_area_id": "এলাকা বাছাই করুন",
|
||||
"add_device_id": "ডিভাইস বাছাই করুন",
|
||||
"add_entity_id": "সত্তা বাছাই করুন",
|
||||
"expand_area_id": "এই এলাকাটি কে পৃথক ডিভাইস এবং সত্তাতে প্রসারিত করুন যা এটি ধারণ করে। সম্প্রসারণের পর যখন এলাকা পরিবর্তিত হবে তখন এটি ডিভাইস এবং সত্তাগুলি আপডেট করবে না।",
|
||||
"expand_device_id": "পৃথক সত্তায় এই ডিভাইসটি প্রসারিত করুন। প্রসারণের পরে ডিভাইস পরিবর্তিত হলে সত্তা আপডেট হবে না।",
|
||||
"remove_area_id": "এলাকা অপসারণ করুন",
|
||||
"remove_device_id": "ডিভাইস অপসারণ করুন",
|
||||
"remove_entity_id": "সত্তা অপসারণ করুন"
|
||||
}
|
||||
},
|
||||
"dialogs": {
|
||||
"entity_registry": {
|
||||
"editor": {
|
||||
"device_disabled": "এই সত্তার ডিভাইস নিষ্ক্রিয় করা আছে।",
|
||||
"enabled_delay_confirm": "সক্ষম সত্তাগুলি {delay} সেকেন্ডের মধ্যে Home Assistant এ যুক্ত হবে",
|
||||
"enabled_description": "নিষ্ক্রিয় সত্তাগুলি Home Assistant এ যুক্ত করা হবে না।",
|
||||
"enabled_restart_confirm": "সত্তাগুলি সক্ষম করা শেষ করতে Home Assistant পুনরায় চালু করুন",
|
||||
"open_device_settings": "ডিভাইস সেটিংস খুলুন"
|
||||
}
|
||||
},
|
||||
"helper_settings": {
|
||||
"counter": {
|
||||
"restore": "Home Assistant শুরু হওয়ার পরে সর্বশেষ জ্ঞাত মানটি পুনরুদ্ধার করুন"
|
||||
}
|
||||
},
|
||||
"quick-bar": {
|
||||
"commands": {
|
||||
"navigation": {
|
||||
"blueprint": "ব্লুপ্রিন্টস"
|
||||
}
|
||||
}
|
||||
},
|
||||
"voice_command": {
|
||||
"did_not_hear": "Home Assistant কিছুই শোনেননি"
|
||||
}
|
||||
},
|
||||
"notification_toast": {
|
||||
"started": "Home Assistant শুরু হয়েছে!",
|
||||
"starting": "Home Assistant শুরু হচ্ছে, শেষ না হওয়া পর্যন্ত সবকিছু পাওয়া যাবে না।"
|
||||
},
|
||||
"panel": {
|
||||
"config": {
|
||||
"areas": {
|
||||
"picker": {
|
||||
"introduction": "ডিভাইসগুলি কোথায় আছে তা সংগঠিত করতে এলাকা ব্যবহার করা হয়। এই তথ্য অন্যান্য সিস্টেমের সাথে আপনার ইন্টারফেস, অনুমতি এবং ইন্টিগ্রেশন সংগঠিত করতে সহায়তা করতে Home Assistant জুড়ে ব্যবহার করা হবে।"
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"dialog_new": {
|
||||
"blueprint": {
|
||||
"use_blueprint": "একটি ব্লুপ্রিন্ট ব্যবহার করুন"
|
||||
},
|
||||
"start_empty": "একটি খালি অটোমেশন দিয়ে শুরু করুন",
|
||||
"thingtalk": {
|
||||
"create": "তৈরি",
|
||||
"input_label": "এই অটোমেশনটি কী করবে?"
|
||||
}
|
||||
},
|
||||
"editor": {
|
||||
"blueprint": {
|
||||
"blueprint_to_use": "ব্যবহারের জন্য ব্লুপ্রিন্ট",
|
||||
"header": "ব্লুপ্রিন্ট",
|
||||
"no_blueprints": "আপনার কোনও ব্লুপ্রিন্ট নেই",
|
||||
"no_inputs": "এই ব্লুপ্রিন্টের কোনও ইনপুট নেই।"
|
||||
},
|
||||
"conditions": {
|
||||
"type": {
|
||||
"time": {
|
||||
"weekdays": {
|
||||
"mon": "সোমবার"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"triggers": {
|
||||
"introduction": "ট্রিগারগুলি যা অটোমেশন নিয়মের প্রক্রিয়া শুরু করে। একই নিয়মের জন্য একাধিক ট্রিগার নির্দিষ্ট করা সম্ভব। ট্রিগার শুরু হয়ে গেলে, Home Assistant এর শর্তগুলি যথাযথভাবে প্রযোজ্য হবে, যদি থাকে তবে এবং অ্যাকশন কল করবে।",
|
||||
"type": {
|
||||
"homeassistant": {
|
||||
"label": "Home Assistant"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"picker": {
|
||||
"introduction": "অটোমেশন সম্পাদক আপনাকে অটোমেশন তৈরি এবং সম্পাদনা করার অনুমতি দেয়। আপনি Home Assistant সঠিকভাবে কনফিগার করেছেন তা নিশ্চিত করতে দয়া করে নীচের লিঙ্কটি অনুসরণ করুন।"
|
||||
},
|
||||
"thingtalk": {
|
||||
"task_selection": {
|
||||
"introduction": "এই অটোমেশনটি কী করবে তা নীচে টাইপ করুন এবং আমরা এটিকে একটি Home Assistant এর অটোমেশনে রূপান্তর করার চেষ্টা করব।"
|
||||
}
|
||||
}
|
||||
},
|
||||
"blueprint": {
|
||||
"add": {
|
||||
"community_forums": "কমিউনিটি ফোরাম",
|
||||
"error_no_url": "দয়া করে ব্লুপ্রিন্টের URL লিখুন।",
|
||||
"file_name": "ব্লুপ্রিন্টের পথ",
|
||||
"header": "একটি ব্লুপ্রিন্ট আমদানি করুন",
|
||||
"import_btn": "পূর্বরূপ ব্লুপ্রিন্ট",
|
||||
"import_header": "ব্লুপ্রিন্ট \"{name}\"",
|
||||
"import_introduction_link": "আপনি গিটহাব এবং {community_link} থেকে অন্যান্য ব্যবহারকারীদের ব্লুপ্রিন্টস আমদানি করতে পারেন। নিচের ব্লুপ্রিন্টের URL লিখুন।",
|
||||
"importing": "ব্লুপ্রিন্ট লোড হচ্ছে ...",
|
||||
"raw_blueprint": "ব্লুপ্রিন্ট সামগ্রী",
|
||||
"save_btn": "ব্লুপ্রিন্ট আমদানি করুন",
|
||||
"saving": "ব্লুপ্রিন্ট আমদানি করা হচ্ছে …",
|
||||
"unsupported_blueprint": "এই ব্লুপ্রিন্ট সমর্থিত নয়",
|
||||
"url": "ব্লুপ্রিন্টের URL"
|
||||
},
|
||||
"caption": "ব্লুপ্রিন্টস",
|
||||
"description": "ব্লুপ্রিন্টগুলি পরিচালনা করুন",
|
||||
"overview": {
|
||||
"add_blueprint": "ব্লুপ্রিন্ট আমদানি করুন",
|
||||
"confirm_delete_header": "এই ব্লুপ্রিন্ট মুছবেন?",
|
||||
"confirm_delete_text": "আপনি কি নিশ্চিত যে আপনি এই ব্লুপ্রিন্টটি মুছে ফেলতে চান?",
|
||||
"delete_blueprint": "ব্লুপ্রিন্ট মুছুন",
|
||||
"discover_more": "আরও ব্লুপ্রিন্টস আবিষ্কার করুন",
|
||||
"header": "ব্লুপ্রিন্ট সম্পাদক",
|
||||
"headers": {
|
||||
"domain": "ডোমেইন",
|
||||
"file_name": "ফাইলের নাম",
|
||||
"name": "নাম"
|
||||
},
|
||||
"introduction": "ব্লুপ্রিন্ট কনফিগারেশন আপনাকে আপনার ব্লুপ্রিন্টগুলি আমদানি ও পরিচালনা করতে দেয়।",
|
||||
"learn_more": "ব্লুপ্রিন্ট ব্যবহার সম্পর্কে আরও জানুন",
|
||||
"use_blueprint": "অটোমেশন তৈরি করুন"
|
||||
}
|
||||
},
|
||||
"cloud": {
|
||||
"account": {
|
||||
"google": {
|
||||
"info_state_reporting": "আপনি যদি রাষ্ট্রীয় প্রতিবেদন সক্রিয় করেন, Home Assistant উন্মোচিত সত্তার সকল রাষ্ট্রীয় পরিবর্তন Google-এ প্রেরণ করবে৷ এর ফলে আপনি Google অ্যাপের সর্বশেষ অবস্থাগুলো সবসময় দেখতে পারবেন৷"
|
||||
},
|
||||
"remote": {
|
||||
"info": "বাড়ি থেকে দূরে থাকাকালীন সময়ে Home Assistant ক্লাউড আপনার ইনস্ট্যান্স এর সাথে একটি নিরাপদ দূরবর্তী সংযোগ প্রদান করে।"
|
||||
},
|
||||
"webhooks": {
|
||||
"info": "ওয়েবহুক দ্বারা ট্রিগার হওয়ার জন্য যা কিছু কনফিগার করা হয়েছে সেটিকে ইন্টারনেটে উন্মুক্ত না করে, যে কোনো জায়গা থেকে Home Assistant এর কাছে ডেটা ফেরত পাঠানোর অনুমতি দেওয়ার জন্য একটি সর্বজনীনভাবে অ্যাক্সেসযোগ্য URL দেওয়া যেতে পারে।"
|
||||
}
|
||||
},
|
||||
"dialog_cloudhook": {
|
||||
"available_at": "ওয়েবহুকটি নিম্নলিখিত URL-এ উপলব্ধ:"
|
||||
},
|
||||
"register": {
|
||||
"feature_remote_control": "বাড়ি থেকে দূরে Home Assistant এর নিয়ন্ত্রণ"
|
||||
}
|
||||
},
|
||||
"core": {
|
||||
"section": {
|
||||
"core": {
|
||||
"core_config": {
|
||||
"external_url": "বহিঃস্থ URL",
|
||||
"internal_url": "অভ্যন্তরীণ URL"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"devices": {
|
||||
"automation": {
|
||||
"create_disable": "নিষ্ক্রিয় ডিভাইস দিয়ে অটোমেশন তৈরি করা যাচ্ছে না"
|
||||
},
|
||||
"disabled": "নিষ্ক্রিয়",
|
||||
"disabled_by": {
|
||||
"config_entry": "কনফিগ এন্ট্রি",
|
||||
"integration": "ইন্টিগ্রেশন",
|
||||
"user": "ব্যবহারকারী"
|
||||
},
|
||||
"enabled_cause": "ডিভাইসটি {cause} দ্বারা নিষ্ক্রিয় করা হয়েছে।",
|
||||
"enabled_description": "নিষ্ক্রিয় ডিভাইসগুলি প্রদর্শিত হবে না এবং ডিভাইসের অন্তর্ভুক্ত সত্তাগুলি অক্ষম করা হবে এবং Home Assistant এ যুক্ত হবে না।",
|
||||
"enabled_label": "ডিভাইস সক্রিয় করুন",
|
||||
"picker": {
|
||||
"filter": {
|
||||
"filter": "ফিল্টার",
|
||||
"hidden_devices": "{number} hidden {number, plural,\n one {device}\n other {devices}\n}",
|
||||
"show_all": "সব দেখাও",
|
||||
"show_disabled": "নিষ্ক্রিয় ডিভাইসগুলি দেখান"
|
||||
},
|
||||
"search": "ডিভাইস অনুসন্ধান করুন"
|
||||
},
|
||||
"scene": {
|
||||
"create_disable": "নিষ্ক্রিয় ডিভাইস দিয়ে দৃশ্য তৈরি করা যাচ্ছে না"
|
||||
},
|
||||
"script": {
|
||||
"create_disable": "নিষ্ক্রিয় ডিভাইস দিয়ে স্ক্রিপ্ট তৈরি করা যাচ্ছে না"
|
||||
}
|
||||
},
|
||||
"entities": {
|
||||
"picker": {
|
||||
"disable_selected": {
|
||||
"confirm_text": "নিষ্ক্রিয় সত্তাগুলি Home Assistant এ যুক্ত করা হবে না।"
|
||||
},
|
||||
"enable_selected": {
|
||||
"confirm_text": "এটি তাদের Home Assistant এ আবার উপলব্ধ করবে যদি তারা এখন নিষ্ক্রিয় থাকে।"
|
||||
},
|
||||
"headers": {
|
||||
"area": "এলাকা"
|
||||
},
|
||||
"introduction": "Home Assistant প্রতিটি সত্তার একটি রেজিস্ট্রি রাখে যা অনন্যভাবে চিহ্নিত করা যেতে পারে। এই সত্তার প্রতিটিতে একটি সত্তা আইডি বরাদ্দ করা হবে যা শুধুমাত্র এই সত্তার জন্য সংরক্ষিত হবে।",
|
||||
"remove_selected": {
|
||||
"confirm_partly_text": "আপনি শুধুমাত্র নির্বাচিত {removable} সত্তার {selected} অপসারণ করতে পারেন. যখন ইন্টিগ্রেশন আর সত্তাসরবরাহ করছে না তখন সত্তাগুলি অপসারণ করা যেতে পারে। কখনও কখনও একটি অপসারিত ইন্টিগ্রেশনের সত্তা অপসারণ করার আগে Home Assistant আবার চালু করতে হয়। আপনি কি নিশ্চিত যে আপনি অপসারণযোগ্য সত্তাগুলি অপসারণ করতে চান?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"header": "Home Assistant কনফিগার করুন",
|
||||
"info": {
|
||||
"copy_github": "গিটহাবের জন্য"
|
||||
},
|
||||
"integrations": {
|
||||
"config_entry": {
|
||||
"reload_restart_confirm": "এই ইন্টিগ্রেশন পুনরায় লোড করা শেষ করতে Home Assistant পুনরায় চালু করুন",
|
||||
"restart_confirm": "এই ইন্টিগ্রেশন অপসারণ শেষ করতে Home Assistant পুনর্সূচনা করুন"
|
||||
}
|
||||
},
|
||||
"introduction": "এই দৃশ্যে আপনার উপাদানগুলি এবং Home Assistant কনফিগার করা সম্ভব। UI থেকে সব কিছু এখনও কনফিগার করা সম্ভব নয়, তবে আমরা এটিতে কাজ করছি।",
|
||||
"logs": {
|
||||
"description": "Home Assistant এর লগগুলি দেখুন"
|
||||
},
|
||||
"lovelace": {
|
||||
"dashboards": {
|
||||
"detail": {
|
||||
"url": "URL",
|
||||
"url_error_msg": "URL-এ একটি - থাকতে হবে, স্পেস বা বিশেষ অক্ষর থাকতে পারে না, শুধুমাত্র _ এবং - ব্যতীত"
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"detail": {
|
||||
"url": "URL",
|
||||
"url_error_msg": "URL একটি প্রয়োজনীয় ক্ষেত্র"
|
||||
},
|
||||
"picker": {
|
||||
"headers": {
|
||||
"url": "URL"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"ozw": {
|
||||
"select_instance": {
|
||||
"none_found": "আমরা কোন OpenZWave দৃষ্টান্ত খুঁজে পাইনি। আপনি যদি বিশ্বাস করেন যে এটি ভুল, আপনার OpenZWave এবং MQTT সেটআপ পরীক্ষা করুন এবং Home Assistant আপনার MQTT ব্রোকারের সাথে যোগাযোগ করতে পারেন তা নিশ্চিত করুন।"
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"description": "Home Assistant এর দ্বারা ট্র্যাক করে এমন লোকদের পরিচালনা করুন"
|
||||
},
|
||||
"scene": {
|
||||
"picker": {
|
||||
"introduction": "দৃশ্য সম্পাদক আপনাকে দৃশ্য তৈরি এবং সম্পাদনা করার অনুমতি দেয়। আপনি Home Assistant সঠিকভাবে কনফিগার করেছেন তা নিশ্চিত করতে দয়া করে নীচের লিঙ্কটি অনুসরণ করুন।"
|
||||
}
|
||||
},
|
||||
"users": {
|
||||
"description": "Home Assistant ব্যবহারকারীর অ্যাকাউন্টগুলি পরিচালনা করুন",
|
||||
"editor": {
|
||||
"active_tooltip": "ব্যবহারকারী লগইন করতে পারে কিনা নিয়ন্ত্রণ করে",
|
||||
"username": "ব্যবহারকারীর নাম"
|
||||
},
|
||||
"picker": {
|
||||
"headers": {
|
||||
"is_active": "সক্রিয়",
|
||||
"is_owner": "মালিক",
|
||||
"username": "ব্যবহারকারীর নাম"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zha": {
|
||||
"add_device": "ডিভাইস যুক্ত করুন",
|
||||
"device_pairing_card": {
|
||||
"CONFIGURED": "কনফিগারেশন সম্পন্ন",
|
||||
"CONFIGURED_status_text": "শুরু হচ্ছে",
|
||||
"INITIALIZED": "আরম্ভকরণ সম্পন্ন",
|
||||
"INITIALIZED_status_text": "ডিভাইসটি ব্যবহারের জন্য প্রস্তুত",
|
||||
"INTERVIEW_COMPLETE": "ইন্টারভিউ সম্পন্ন",
|
||||
"INTERVIEW_COMPLETE_status_text": "কনফিগার করা হচ্ছে",
|
||||
"PAIRED": "ডিভাইস পাওয়া গেছে",
|
||||
"PAIRED_status_text": "ইন্টারভিউ শুরু করা হচ্ছে"
|
||||
},
|
||||
"groups": {
|
||||
"add_group": "গ্রুপ যুক্ত করুন"
|
||||
},
|
||||
"visualization": {
|
||||
"caption": "ভিজ্যুয়ালাইজেশন",
|
||||
"header": "নেটওয়ার্ক ভিজ্যুয়ালাইজেশন",
|
||||
"zoom_label": "ডিভাইসে জুম করুন"
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"node_management": {
|
||||
"exclude_entity": "Home Assistant থেকে এই সত্তাটি বাদ দিন"
|
||||
}
|
||||
}
|
||||
},
|
||||
"custom": {
|
||||
"external_panel": {
|
||||
"complete_access": "এটি Home Assistant এর সকল ডেটা অ্যাক্সেস পাবে।"
|
||||
}
|
||||
},
|
||||
"developer-tools": {
|
||||
"tabs": {
|
||||
"states": {
|
||||
"description1": "Home Assistant এর মধ্যে একটি ডিভাইসের প্রতিনিধিত্ব নির্ধারণ করুন।"
|
||||
},
|
||||
"templates": {
|
||||
"description": "কিছু Home Assistant এর নির্দিষ্ট এক্সটেনশনগুলির সাথে Jinja2 টেম্পলেট ইঞ্জিন ব্যবহার করে টেমপ্লেটগুলি রেন্ডার করা হয়।",
|
||||
"template_extensions": "Home Assistant টেমপ্লেট এক্সটেনশন"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lovelace": {
|
||||
"cards": {
|
||||
"picture-elements": {
|
||||
"url": "{url_path} উইন্ডো খুলুন"
|
||||
},
|
||||
"safe-mode": {
|
||||
"description": "আপনার কনফিগারেশনটি লোড করার সময় Home Assistant সমস্যায় পড়ে এবং এখন নিরাপদ মোডে চলছে। কী ভুল হয়েছে তা দেখতে ত্রুটি লগটি একবার দেখুন।"
|
||||
},
|
||||
"starting": {
|
||||
"description": "Home Assistant শুরু হচ্ছে, দয়া করে অপেক্ষা করুন…"
|
||||
}
|
||||
},
|
||||
"components": {
|
||||
"timestamp-display": {
|
||||
"invalid": "অবৈধ টাইমস্ট্যাম্প",
|
||||
"invalid_format": "অবৈধ ডিস্প্লে ফরম্যাট"
|
||||
}
|
||||
},
|
||||
"editor": {
|
||||
"action-editor": {
|
||||
"actions": {
|
||||
"url": "URL"
|
||||
},
|
||||
"url_path": "URL এর পথ"
|
||||
},
|
||||
"card": {
|
||||
"generic": {
|
||||
"url": "URL"
|
||||
},
|
||||
"iframe": {
|
||||
"description": "ওয়েবপেজ কার্ড আপনাকে আপনার প্রিয় ওয়েবপৃষ্ঠাটিকে Home Assistant এ এম্বেড করতে সম্মতি দেয়।"
|
||||
},
|
||||
"picture-entity": {
|
||||
"description": "চিত্র সত্তা কার্ড একটি ছবির আকারে একটি সত্তা প্রদর্শন করে। URL থেকে ছবির পরিবর্তে, এটি ক্যামেরা সত্তার ছবি ও দেখাতে পারে।"
|
||||
}
|
||||
},
|
||||
"migrate": {
|
||||
"para_migrate": "'মাইগ্রেট কনফিগারেশন' বোতামটি টিপে Home Assistant স্বয়ংক্রিয়ভাবে আপনার সমস্ত কার্ডে এবং ভিউতে আইডি যুক্ত করতে পারে।"
|
||||
},
|
||||
"save_config": {
|
||||
"para": "এই ড্যাশবোর্ডটি বর্তমানে Home Assistant দ্বারা রক্ষণাবেক্ষণ করা হচ্ছে। যখন নতুন সত্তা বা লাভলেস UI উপাদানগুলি উপলভ্য হয় তখন এটি স্বয়ংক্রিয়ভাবে হালনাগাদ করা হয়। আপনি যদি নিয়ন্ত্রণ নেন, এই ড্যাশবোর্ডটি আর স্বয়ংক্রিয়ভাবে হালনাগাদ করা হবে না। আপনি সবসময় কনফিগারেশনে একটি নতুন ড্যাশবোর্ড তৈরি করতে পারেন চারপাশে খেলতে।"
|
||||
}
|
||||
},
|
||||
"warning": {
|
||||
"starting": "Home Assistant শুরু হচ্ছে, সবকিছু এখনো পাওয়া যাবে না"
|
||||
}
|
||||
},
|
||||
"page-authorize": {
|
||||
"authorizing_client": "আপনি আপনার Home Assistant দৃষ্টান্তে {clientId} অ্যাক্সেস দিতে যাচ্ছেন।"
|
||||
},
|
||||
"page-onboarding": {
|
||||
"core-config": {
|
||||
"location_name": "আপনার Home Assistant ইনস্টলেশনের নাম"
|
||||
}
|
||||
},
|
||||
"profile": {
|
||||
"change_password": {
|
||||
"error_new_is_old": "নতুন পাসওয়ার্ড বর্তমান পাসওয়ার্ডের চেয়ে আলাদা হতে হবে",
|
||||
"error_new_mismatch": "প্রবেশ করা নতুন পাসওয়ার্ডের মান মেলে না",
|
||||
"success": "পাসওয়ার্ড সফলভাবে পরিবর্তিত হয়েছে"
|
||||
},
|
||||
"long_lived_access_tokens": {
|
||||
"description": "আপনার স্ক্রিপ্টগুলি আপনার Home Assistance ইন্সটেন্স এর সাথে ইন্টারঅ্যাক্ট করার অনুমতি দেওয়ার জন্য দীর্ঘকালীন অ্যাক্সেস টোকেন তৈরি করুন। প্রতিটি টোকেন তৈরি থেকে 10 বছরের জন্য বৈধ হবে। নিম্নলিখিত দীর্ঘস্থায়ী অ্যাক্সেস টোকেনগুলি বর্তমানে সক্রিয়।"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,121 @@
|
||||
{
|
||||
"panel": {
|
||||
"config": "Konfiguracija",
|
||||
"developer_tools": "Alatke za razvoj",
|
||||
"history": "Istorija",
|
||||
"logbook": "Dnevnik",
|
||||
"mailbox": "Poštansko sanduče",
|
||||
"map": "Karta",
|
||||
"shopping_list": "Spisak za kupovinu",
|
||||
"states": "Pregled"
|
||||
},
|
||||
"state": {
|
||||
"default": {
|
||||
"unavailable": "Nedostupan",
|
||||
"unknown": "Nepoznat"
|
||||
}
|
||||
},
|
||||
"state_attributes": {
|
||||
"climate": {
|
||||
"fan_mode": {
|
||||
"auto": "Auto",
|
||||
"off": "Isključen",
|
||||
"on": "Uključen"
|
||||
}
|
||||
}
|
||||
},
|
||||
"state_badge": {
|
||||
"alarm_control_panel": {
|
||||
"armed": "Aktiviran",
|
||||
"armed_away": "Aktiviran",
|
||||
"armed_custom_bypass": "Aktiviran",
|
||||
"armed_home": "Aktiviran kod kuće",
|
||||
"armed_night": "Aktiviran",
|
||||
"arming": "Aktivacija",
|
||||
"disarmed": "Deaktiviran",
|
||||
"disarming": "Deaktivacija",
|
||||
"pending": "Na čekanju",
|
||||
"triggered": "Započet"
|
||||
},
|
||||
"default": {
|
||||
"unavailable": "Nedostupan",
|
||||
"unknown": "Nepoznat"
|
||||
},
|
||||
"device_tracker": {
|
||||
"home": "Kod kuće"
|
||||
},
|
||||
"person": {
|
||||
"home": "Kod kuće"
|
||||
}
|
||||
},
|
||||
"ui": {
|
||||
"common": {
|
||||
"cancel": "Odustani",
|
||||
"loading": "Učitava"
|
||||
},
|
||||
"duration": {
|
||||
"day": "{count} {count, plural,\n one {dan}\n other {dana}\n}",
|
||||
"second": "{count} {count, plural,\n one {sekunda}\n other {sekundi}\n}",
|
||||
"week": "{count} {count, plural,\n one {sedmica}\n other {sedmice}\n}"
|
||||
},
|
||||
"panel": {
|
||||
"config": {
|
||||
"automation": {
|
||||
"editor": {
|
||||
"conditions": {
|
||||
"type": {
|
||||
"time": {
|
||||
"weekdays": {
|
||||
"mon": "Ponedeljak"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"triggers": {
|
||||
"type": {
|
||||
"mqtt": {
|
||||
"label": "MQTT"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"mqtt": {
|
||||
"title": "MQTT"
|
||||
},
|
||||
"ozw": {
|
||||
"network_status": {
|
||||
"unknown": "Nepoznato"
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"node_config": {
|
||||
"set_config_parameter": "Podesite parametar Config"
|
||||
}
|
||||
}
|
||||
},
|
||||
"developer-tools": {
|
||||
"tabs": {
|
||||
"events": {
|
||||
"title": "Događanja"
|
||||
},
|
||||
"services": {
|
||||
"title": "Usluge"
|
||||
},
|
||||
"states": {
|
||||
"title": "Statusi"
|
||||
},
|
||||
"templates": {
|
||||
"title": "Predlošci"
|
||||
}
|
||||
}
|
||||
},
|
||||
"mailbox": {
|
||||
"delete_button": "Izbriši",
|
||||
"delete_prompt": "Izbriši ovu poruku?",
|
||||
"empty": "Nemate poruke",
|
||||
"playback_title": "Poruku preslušati"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,107 @@
|
||||
{
|
||||
"supervisor": {
|
||||
"addon": {
|
||||
"dashboard": {
|
||||
"capability": {
|
||||
"apparmor": {
|
||||
"description": "AppArmor ('Application Armour') is a Linux kernel security module that restricts add-ons capabilities like network access, raw socket access, and permission to read, write, or execute specific files.\n\nAdd-on authors can provide their security profiles, optimised for the add-on, or request it to be disabled. If AppArmor is disabled, it will raise security risks and therefore, has a negative impact on the security score of the add-on."
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"ui": {
|
||||
"card": {
|
||||
"light": {
|
||||
"color_brightness": "Colour brightness",
|
||||
"color_temperature": "Colour temperature"
|
||||
}
|
||||
},
|
||||
"dialogs": {
|
||||
"entity_registry": {
|
||||
"customize_link": "entity customisations"
|
||||
},
|
||||
"options_flow": {
|
||||
"loading": {
|
||||
"loading_flow": "Please wait while the options for {integration} are being initialised"
|
||||
}
|
||||
},
|
||||
"quick-bar": {
|
||||
"commands": {
|
||||
"navigation": {
|
||||
"customize": "Customisations"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"panel": {
|
||||
"config": {
|
||||
"areas": {
|
||||
"picker": {
|
||||
"introduction": "Areas are used to organise where devices are. This information will be used throughout Home Assistant to help you in organising your interface, permissions and integrations with other systems."
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"editor": {
|
||||
"conditions": {
|
||||
"type": {
|
||||
"time": {
|
||||
"weekdays": {
|
||||
"mon": "Monday"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"customize": {
|
||||
"attributes_outside": "The following attributes are customised from outside of customize.yaml",
|
||||
"caption": "Customisations",
|
||||
"description": "Customise your entities",
|
||||
"picker": {
|
||||
"documentation": "Customisation documentation",
|
||||
"header": "Customisations"
|
||||
}
|
||||
},
|
||||
"integrations": {
|
||||
"caption": "Integrations",
|
||||
"configure": "Configure",
|
||||
"configured": "Configured",
|
||||
"description": "Manage and set up integrations",
|
||||
"discovered": "Discovered",
|
||||
"new": "Set up a new integration",
|
||||
"no_integrations": "It seems like you don't have any integrations configured yet. Click on the button below to add your first integration!"
|
||||
},
|
||||
"lovelace": {
|
||||
"description": "Create customised sets of cards to control your home"
|
||||
},
|
||||
"ozw": {
|
||||
"network_status": {
|
||||
"unknown": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lovelace": {
|
||||
"editor": {
|
||||
"card": {
|
||||
"generic": {
|
||||
"state_color": "Colour icons based on state?"
|
||||
},
|
||||
"iframe": {
|
||||
"description": "The Webpage card allows you to embed your favourite webpage right into Home Assistant."
|
||||
},
|
||||
"sensor": {
|
||||
"description": "The Sensor card gives you a quick overview of your sensors state with an optional graph to visualise change over time."
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"profile": {
|
||||
"themes": {
|
||||
"accent_color": "Accent colour",
|
||||
"primary_color": "Primary colour"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,498 @@
|
||||
{
|
||||
"ui": {
|
||||
"card": {
|
||||
"climate": {
|
||||
"cooling": "{name} malvarmigo",
|
||||
"current_temperature": "{name} aktuala temperaturo",
|
||||
"heating": "{name} hejtado",
|
||||
"high": "alta",
|
||||
"low": "malalta",
|
||||
"target_temperature_entity": "{name} cela temperaturo",
|
||||
"target_temperature_mode": "{name} cela temperaturo {mode}"
|
||||
},
|
||||
"counter": {
|
||||
"actions": {
|
||||
"decrement": "dekreto",
|
||||
"increment": "pliigo",
|
||||
"reset": "restarigi"
|
||||
}
|
||||
}
|
||||
},
|
||||
"common": {
|
||||
"no": "Ne",
|
||||
"yes": "Jes"
|
||||
},
|
||||
"components": {
|
||||
"device-picker": {
|
||||
"clear": "Klarigi",
|
||||
"device": "Aparato",
|
||||
"show_devices": "Montri aparatojn"
|
||||
},
|
||||
"entity": {
|
||||
"entity-picker": {
|
||||
"clear": "Klarigi",
|
||||
"show_entities": "Montri entojn"
|
||||
}
|
||||
}
|
||||
},
|
||||
"dialogs": {
|
||||
"domain_toggler": {
|
||||
"title": "Baskuligi Domajnojn"
|
||||
},
|
||||
"more_info_control": {
|
||||
"dismiss": "Malakcepti dialogon",
|
||||
"settings": "Agordoj pri entoj"
|
||||
},
|
||||
"voice_command": {
|
||||
"did_not_hear": "Home Assistant nenion aŭdis",
|
||||
"error": "Ho ve, eraro okazis",
|
||||
"found": "Mi trovis jenon por vi:",
|
||||
"how_can_i_help": "Kiel mi povas helpi?",
|
||||
"label": "Tajpu demandon kaj premu 'Enter'",
|
||||
"label_voice": "Tajpu kaj premu 'Enter' aŭ frapu la mikrofonon por paroli"
|
||||
}
|
||||
},
|
||||
"notification_drawer": {
|
||||
"close": "Fermi"
|
||||
},
|
||||
"panel": {
|
||||
"config": {
|
||||
"advanced_mode": {
|
||||
"hint_enable": "Mankas agordaj opcioj? Ebligu altnivelan reĝimon",
|
||||
"link_profile_page": "via profilpaĝo"
|
||||
},
|
||||
"automation": {
|
||||
"editor": {
|
||||
"actions": {
|
||||
"name": "Ago",
|
||||
"type": {
|
||||
"device_id": {
|
||||
"extra_fields": {
|
||||
"code": "Kodo"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"conditions": {
|
||||
"name": "Kondiĉo",
|
||||
"type": {
|
||||
"time": {
|
||||
"weekdays": {
|
||||
"mon": "Lundo"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"edit_ui": "Redakti kun UI",
|
||||
"edit_yaml": "Redakti kiel YAML",
|
||||
"triggers": {
|
||||
"name": "Ellasilo"
|
||||
}
|
||||
},
|
||||
"picker": {
|
||||
"delete_automation": "Forigi aŭtomatigon",
|
||||
"delete_confirm": "Ĉu vi certas, ke vi volas forigi ĉi tiun aŭtomatigon?",
|
||||
"edit_automation": "Redakti aŭtomatigon",
|
||||
"only_editable": "Nur aŭtomatoj difinitaj en automations.yaml estas redakteblaj.",
|
||||
"show_info_automation": "Montri informojn pri aŭtomatigon"
|
||||
}
|
||||
},
|
||||
"customize": {
|
||||
"attributes_customize": "La sekvaj atributoj estas jam agorditaj en customize.yaml",
|
||||
"attributes_not_set": "La sekvaj atributoj ne estis agorditaj. Agordu ilin, se vi volas",
|
||||
"attributes_outside": "La sekvaj atributoj estas agorditaj de ekstere de customize.yaml",
|
||||
"attributes_override": "Vi povas superregi ilin, se vi volas.",
|
||||
"attributes_set": "La sekvaj atributoj de la ento estas agorditaj laŭprogramaj.",
|
||||
"different_include": "Eble per domajno, globo aŭ malsama inkluzivo.",
|
||||
"pick_attribute": "Elektu atributon por superregi",
|
||||
"warning": {
|
||||
"include_link": "inkluzivi customize.yaml",
|
||||
"include_sentence": "Ŝajnas, ke via configuration.yaml ne taŭgas",
|
||||
"not_applied": "Ŝanĝoj faritaj ĉi tie estas skribita en ĝi, sed ne estos aplikita post agordo reŝarĝo krom se la inkluzivo estas en loko."
|
||||
}
|
||||
},
|
||||
"devices": {
|
||||
"confirm_rename_entity_ids": "Ĉu vi ankaŭ volas alinomi la identigilon de viaj entoj?",
|
||||
"data_table": {
|
||||
"area": "Areo",
|
||||
"battery": "Baterio",
|
||||
"device": "Aparato",
|
||||
"integration": "Integriĝo",
|
||||
"manufacturer": "Fabrikisto",
|
||||
"model": "Modelo"
|
||||
},
|
||||
"device_not_found": "Aparato ne trovita.",
|
||||
"unknown_error": "Nekonata eraro",
|
||||
"unnamed_device": "Nenomita aparato"
|
||||
},
|
||||
"info": {
|
||||
"built_using": "Konstruita uzante",
|
||||
"custom_uis": "Propraj UIoj:",
|
||||
"developed_by": "Disvolvita de amaso da mojosaj homoj.",
|
||||
"frontend": "frontend-ui",
|
||||
"frontend_version": "Frontendversio: {version} - {type}",
|
||||
"home_assistant_logo": "Logo de Home Assistant",
|
||||
"icons_by": "Ikonoj de",
|
||||
"license": "Publikigita sub la permesilo Apache 2.0",
|
||||
"path_configuration": "Pado al configuration.yaml: {path}",
|
||||
"server": "servilo",
|
||||
"source": "Fonto:",
|
||||
"system_health_error": "Komponento pri Sistema Sano ne estas ŝarĝita. Aldonu 'system_health:' al configuration.yaml"
|
||||
},
|
||||
"integrations": {
|
||||
"config_entry": {
|
||||
"area": "En {area}"
|
||||
},
|
||||
"config_flow": {
|
||||
"aborted": "Abortigita",
|
||||
"close": "Fermi",
|
||||
"created_config": "Kreita agordo por {name}.",
|
||||
"error_saving_area": "Eraro pri konservado de eraro: {error}",
|
||||
"finish": "Fini",
|
||||
"not_all_required_fields": "Ne ĉiuj bezonataj kampoj estas plenigitaj",
|
||||
"submit": "Sendu"
|
||||
},
|
||||
"details": "Detaloj pri integriĝo",
|
||||
"ignore": {
|
||||
"confirm_delete_ignore": "Ĉi tio igos la integriĝon aperi en viaj malkovritaj integriĝoj, kiam ĝi estos malkovrita. Ĉi tio eble postulas rekomenci aŭ daŭri iom da tempo.",
|
||||
"confirm_delete_ignore_title": "Ĉu haltu ignori {name} ?",
|
||||
"confirm_ignore": "Ĉu vi certas, ke vi ne volas agordi ĉi tiun integriĝon? Vi povas malfari tion alklakante \"Montri ignoratajn integriĝojn\" en la superfluta menuo en la supra dekstra.",
|
||||
"confirm_ignore_title": "Ĉu ignori malkovron de {name} ?",
|
||||
"ignore": "Ignori",
|
||||
"ignored": "Ignorata",
|
||||
"show_ignored": "Montru ignoratajn integriĝojn",
|
||||
"stop_ignore": "Halti ignori"
|
||||
},
|
||||
"integration_not_found": "Integriĝo ne trovita."
|
||||
},
|
||||
"logs": {
|
||||
"clear": "Klarigi",
|
||||
"details": "Logaj Detaloj ({level})",
|
||||
"load_full_log": "Ŝargi Plena Home Assistant Protokolo",
|
||||
"loading_log": "Ŝarĝante eraran protokolon ...",
|
||||
"multiple_messages": "mesaĝo unuafoje okazis je {time} kaj aperas {counter} fojojn",
|
||||
"no_errors": "Neniuj eraroj estis raportitaj.",
|
||||
"no_issues": "Ne estas novaj aferoj!",
|
||||
"refresh": "Refreŝigi"
|
||||
},
|
||||
"mqtt": {
|
||||
"description_listen": "Aŭskulti temon",
|
||||
"description_publish": "Publikigi pakaĵon",
|
||||
"listening_to": "Aŭskulti",
|
||||
"message_received": "Mesaĝo {id} ricevita sur {topic} je {time} :",
|
||||
"payload": "Pagŝarĝo (ŝablono permesita)",
|
||||
"publish": "Publikigi",
|
||||
"start_listening": "Komenci aŭskulti",
|
||||
"stop_listening": "Halti aŭskulti",
|
||||
"subscribe_to": "Temo por aboni",
|
||||
"topic": "temo"
|
||||
},
|
||||
"ozw": {
|
||||
"network_status": {
|
||||
"unknown": "Nekonata"
|
||||
}
|
||||
},
|
||||
"scene": {
|
||||
"activated": "Aktivigita sceno {name}.",
|
||||
"caption": "Scenoj",
|
||||
"description": "Krei kaj redakti scenojn",
|
||||
"editor": {
|
||||
"default_name": "Nova Sceno",
|
||||
"devices": {
|
||||
"add": "Aldoni aparaton",
|
||||
"delete": "Forigi aparaton",
|
||||
"header": "Aparatoj",
|
||||
"introduction": "Aldoni la aparatojn kiu vi volas esti inkluzivita en via sceno. Agordi ĉiuj aparatoj al la stato vi deziras por ĉi tiu sceno."
|
||||
},
|
||||
"entities": {
|
||||
"add": "Aldoni enton",
|
||||
"delete": "Forigi enton",
|
||||
"device_entities": "Se vi aldonas enton, kiu apartenas al aparato, la aparato estos aldonita.",
|
||||
"header": "Entoj",
|
||||
"introduction": "Entoj ne apartenantaj al aparato povas esti starigitaj ĉi tie.",
|
||||
"without_device": "Entoj sen aparato"
|
||||
},
|
||||
"introduction": "Uzi scenojn alporti vian hejmon viva.",
|
||||
"load_error_not_editable": "Nur scenoj en scenes.yaml estas redakteblaj.",
|
||||
"load_error_unknown": "Eraro ŝarĝo sceno ({err_no}).",
|
||||
"name": "Nomo",
|
||||
"save": "Konservi",
|
||||
"unsaved_confirm": "Vi havas nekonservitajn ŝanĝojn. Ĉu vi estas certa, ke vi volas foriri?"
|
||||
},
|
||||
"picker": {
|
||||
"add_scene": "Aldoni scenon",
|
||||
"delete_confirm": "Ĉu vi certas, ke vi volas forigi ĉi tiun scenon?",
|
||||
"delete_scene": "Forigi scenon",
|
||||
"edit_scene": "Redakti scenon",
|
||||
"header": "Scenredaktilo",
|
||||
"introduction": "La scenredaktilo permesas krei kaj redakti scenojn. Bonvolu sekvi la suban ligilon por legi la instrukciojn por certigi, ke vi agordis Home Assistant ĝuste.",
|
||||
"learn_more": "Lerni pli da pri scenoj",
|
||||
"no_scenes": "Ni ne povis trovi iujn ajn redakteblajn scenojn",
|
||||
"only_editable": "Nur scenoj difinitaj en scenes.yaml estas redakteblaj.",
|
||||
"pick_scene": "Elektu scenon por redakti",
|
||||
"show_info_scene": "Montri informojn pri sceno"
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"editor": {
|
||||
"alias": "Nomo",
|
||||
"delete_script": "Forigi skripton",
|
||||
"introduction": "Uzu skriptojn por ekzekuti sinsekvon de agoj.",
|
||||
"link_available_actions": "Lernu pli pri disponeblaj agoj.",
|
||||
"sequence": "Sekvenco",
|
||||
"sequence_sentence": "La sekvenco de agoj de ĉi tiu skribo."
|
||||
},
|
||||
"picker": {
|
||||
"edit_script": "Redakti skripton"
|
||||
}
|
||||
},
|
||||
"users": {
|
||||
"editor": {
|
||||
"active": "Aktiva",
|
||||
"confirm_user_deletion": "Ĉu vi certas, ke vi volas forigi {name} ?",
|
||||
"group": "Grupo",
|
||||
"id": "ID",
|
||||
"owner": "Mastro",
|
||||
"system_generated": "Sistemo generita",
|
||||
"system_generated_users_not_removable": "Ne eblis forigi la sistemo generita uzantoj.",
|
||||
"unnamed_user": "Nenomita Uzanto"
|
||||
}
|
||||
},
|
||||
"zha": {
|
||||
"add_device_page": {
|
||||
"search_again": "Serĉi Denove"
|
||||
},
|
||||
"cluster_attributes": {
|
||||
"attributes_of_cluster": "Atributoj de la elektita areto",
|
||||
"get_zigbee_attribute": "Akiri Zigbee Atributo",
|
||||
"header": "Grapoloj Atributoj",
|
||||
"help_attribute_dropdown": "Elekti atributon por vidi aŭ agordi ĝian valoron.",
|
||||
"help_get_zigbee_attribute": "Akiri la valoron por la elektita atributo.",
|
||||
"help_set_zigbee_attribute": "Agordi atributvaloron por la specifita grupo sur la specifita ento.",
|
||||
"introduction": "Vidi kaj redakti grapolo atributoj.",
|
||||
"set_zigbee_attribute": "Fiksi Zigbee-Atributo"
|
||||
},
|
||||
"cluster_commands": {
|
||||
"commands_of_cluster": "Komandoj de la elektita grapolo",
|
||||
"header": "Grapoloj Komandoj",
|
||||
"help_command_dropdown": "Elekti komando por interagi kun.",
|
||||
"introduction": "Vidi kaj eldoni grapoloj komandoj.",
|
||||
"issue_zigbee_command": "Eldoni Zigbee Command"
|
||||
},
|
||||
"clusters": {
|
||||
"help_cluster_dropdown": "Elekti grapolon por vidi atributoj kaj komandoj."
|
||||
},
|
||||
"common": {
|
||||
"clusters": "Grapoloj",
|
||||
"manufacturer_code_override": "Fabrikkodo Nuligo",
|
||||
"value": "Valoro"
|
||||
}
|
||||
},
|
||||
"zwave": {
|
||||
"learn_more": "Lerni pli pri Z-Wave",
|
||||
"ozw_log": {
|
||||
"header": "OZW Protokolo",
|
||||
"introduction": "Rigardu la protokolon. 0 estas la minimumo (ŝarĝas tutan protokolo) kaj 1000 estas la maksimumo. Ŝarĝo montros statikan protokolon kaj vosto aŭtomate ĝisdatigos kun la lasta specifita nombro da linioj de la protokolo."
|
||||
}
|
||||
}
|
||||
},
|
||||
"custom": {
|
||||
"external_panel": {
|
||||
"complete_access": "Ĝi havos aliron al ĉiuj datumoj en Home Assistant.",
|
||||
"hide_message": "Kontrolu dokumentojn pri la panel_custom komponento por kaŝi ĉi tiun mesaĝon",
|
||||
"question_trust": "Ĉu vi fidas la eksteran panelon {name} ĉe {link} ?"
|
||||
}
|
||||
},
|
||||
"developer-tools": {
|
||||
"tabs": {
|
||||
"events": {
|
||||
"alert_event_type": "Eventa tipo estas deviga kampo",
|
||||
"available_events": "Haveblaj Eventoj",
|
||||
"count_listeners": " ({count} aŭskultantoj)",
|
||||
"data": "Eventaj datumoj (YAML, nedeviga)",
|
||||
"description": "Ekbruligu eventon sur la eventa buso.",
|
||||
"documentation": "Eventoj Dokumentado.",
|
||||
"event_fired": "Evento {name} furoris",
|
||||
"fire_event": "Furori okazaĵo",
|
||||
"listen_to_events": "Aŭskultu eventojn",
|
||||
"listening_to": "Aŭskulti",
|
||||
"notification_event_fired": "Evento {type} sukcese furoris!",
|
||||
"start_listening": "Komenci aŭskulti",
|
||||
"stop_listening": "Halti aŭskulti",
|
||||
"subscribe_to": "Evento por aboni",
|
||||
"type": "Eventa Tipo"
|
||||
},
|
||||
"services": {
|
||||
"call_service": "Voka Servo",
|
||||
"column_description": "Priskribo",
|
||||
"column_example": "Ekzemplo",
|
||||
"column_parameter": "Parametro",
|
||||
"description": "La ilo de servo programisto permesas vin vokas ajn servon haveblan en Home Assistant",
|
||||
"fill_example_data": "Plenigi Ekzemplajn Datumojn"
|
||||
},
|
||||
"states": {
|
||||
"alert_entity_field": "Ento estas deviga kampo",
|
||||
"attributes": "Atributoj",
|
||||
"current_entities": "Aktualaj entoj",
|
||||
"description1": "Fiksita la reprezentado de aparato ene de Home Assistant.",
|
||||
"description2": "Ĉi tio ne komunikos kun la efektiva aparato.",
|
||||
"entity": "Ento",
|
||||
"filter_attributes": "Filtri atributoj",
|
||||
"filter_entities": "Filtri entoj",
|
||||
"filter_states": "Filtri ŝtatoj",
|
||||
"more_info": "Pli da Informoj",
|
||||
"no_entities": "Neniuj entoj",
|
||||
"set_state": "Fiksita Stato",
|
||||
"state": "Stato",
|
||||
"state_attributes": "Stataj atributoj (YAML, laŭvola)"
|
||||
},
|
||||
"templates": {
|
||||
"description": "Ŝablonoj estas bildigitaj per la Jinja2-ŝablono kun iuj Home Assistant specifaj etendoj.",
|
||||
"editor": "Ŝablono redaktilo",
|
||||
"jinja_documentation": "Jinja2 ŝablono dokumentado",
|
||||
"template_extensions": "Home Assistant ŝablono etendoj",
|
||||
"unknown_error_template": "Nekonata eraro bildigi ŝablonon"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lovelace": {
|
||||
"cards": {
|
||||
"confirm_delete": "Ĉu vi certas, ke vi volas forigi ĉi tiun karton?"
|
||||
},
|
||||
"editor": {
|
||||
"card": {
|
||||
"alarm-panel": {
|
||||
"available_states": "Haveblaj Ŝtatoj",
|
||||
"name": "Alarmo Panelo"
|
||||
},
|
||||
"conditional": {
|
||||
"name": "Kondicionalo"
|
||||
},
|
||||
"entities": {
|
||||
"name": "Entoj",
|
||||
"toggle": "Baskuligi entojn."
|
||||
},
|
||||
"entity-filter": {
|
||||
"name": "Ento-Filtrilo"
|
||||
},
|
||||
"gauge": {
|
||||
"name": "Mezurilo"
|
||||
},
|
||||
"glance": {
|
||||
"name": "Rigardo"
|
||||
},
|
||||
"history-graph": {
|
||||
"name": "Historia Grafiko"
|
||||
},
|
||||
"horizontal-stack": {
|
||||
"name": "Horizontala Pilo"
|
||||
},
|
||||
"iframe": {
|
||||
"name": "iFrame"
|
||||
},
|
||||
"light": {
|
||||
"name": "Lumo"
|
||||
},
|
||||
"map": {
|
||||
"name": "Mapo"
|
||||
},
|
||||
"markdown": {
|
||||
"name": "Markdown"
|
||||
},
|
||||
"media-control": {
|
||||
"name": "Amaskomunikilaro Kontrolo"
|
||||
},
|
||||
"picture-elements": {
|
||||
"name": "Bildaj Elementoj"
|
||||
},
|
||||
"picture-entity": {
|
||||
"name": "Bildo Ento"
|
||||
},
|
||||
"picture-glance": {
|
||||
"name": "Bildo Ekrigardo"
|
||||
},
|
||||
"picture": {
|
||||
"name": "Bildo"
|
||||
},
|
||||
"plant-status": {
|
||||
"name": "Planto-Statuso"
|
||||
},
|
||||
"sensor": {
|
||||
"name": "Sensilo"
|
||||
},
|
||||
"shopping-list": {
|
||||
"name": "Aĉetlisto"
|
||||
},
|
||||
"thermostat": {
|
||||
"name": "Termostato"
|
||||
},
|
||||
"vertical-stack": {
|
||||
"name": "Vertikala Pilo"
|
||||
},
|
||||
"weather-forecast": {
|
||||
"name": "Veterprognozo"
|
||||
}
|
||||
},
|
||||
"edit_card": {
|
||||
"options": "Pli da ebloj",
|
||||
"pick_card_view_title": "Kiun karton vi ŝatus aldoni al via {name} vido?",
|
||||
"show_code_editor": "Montri Kodo Redaktilo",
|
||||
"show_visual_editor": "Montri Vida Redaktoro"
|
||||
},
|
||||
"edit_lovelace": {
|
||||
"edit_title": "Redakti titolon"
|
||||
},
|
||||
"edit_view": {
|
||||
"header_name": "{name} Vidu Agordo",
|
||||
"move_left": "Movi vidon al la maldekstren",
|
||||
"move_right": "Movi vidon al la dekstren"
|
||||
},
|
||||
"menu": {
|
||||
"open": "Malfermi Lovelace menuo"
|
||||
},
|
||||
"raw_editor": {
|
||||
"confirm_unsaved_changes": "Vi havas ne konservitajn ŝanĝojn, ĉu vi certas, ke vi volas eliri?",
|
||||
"confirm_unsaved_comments": "Via agordo enhavas komento(j)n, tiuj ne konserviĝos. Ĉu vi volas daŭrigi?",
|
||||
"error_invalid_config": "Via config ne estas valida: {error}",
|
||||
"error_parse_yaml": "Ne eblas analizi YAML: {error}",
|
||||
"error_save_yaml": "Ne eblas konservi YAML: {error}"
|
||||
}
|
||||
},
|
||||
"menu": {
|
||||
"close": "Fermi",
|
||||
"exit_edit_mode": "Eliri UI-redaktreĝimon"
|
||||
},
|
||||
"unused_entities": {
|
||||
"available_entities": "Ĉi tiuj estas la entoj, kiujn vi disponis, sed ankoraŭ ne estas en via Lovelace-UI.",
|
||||
"domain": "Domajno",
|
||||
"entity": "Ento",
|
||||
"entity_id": "ID-ento",
|
||||
"last_changed": "Laste Ŝanĝita",
|
||||
"select_to_add": "Elektu la entojn, kiujn vi volas aldoni al karto, kaj tiam alklaku la aldonan butonon.",
|
||||
"title": "Neuzataj entoj"
|
||||
},
|
||||
"views": {
|
||||
"confirm_delete": "Ĉu vi certas, ke vi volas forigi ĉi tiun vidon?"
|
||||
}
|
||||
},
|
||||
"page-demo": {
|
||||
"config": {
|
||||
"arsaboo": {
|
||||
"names": {
|
||||
"temperature_study": "Studo pri Temperaturo"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"profile": {
|
||||
"advanced_mode": {
|
||||
"description": "Home Assistant kaŝas altnivelajn funkciojn kaj opciojn defaŭlte. Vi povas fari ĉi tiujn funkciojn alireblaj per kontroli ĉi tiun ŝaltilon. Ĉi tio estas uzant-specifa aranĝo kaj ne influas aliajn uzantojn per Home Assistant.",
|
||||
"title": "Altnivela Modo"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sidebar": {
|
||||
"sidebar_toggle": "Flankobarilo Baskulo"
|
||||
}
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user