diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml
new file mode 100644
index 00000000..83b26ea5
--- /dev/null
+++ b/.github/dependabot.yaml
@@ -0,0 +1,7 @@
+version: 2
+updates:
+ - package-ecosystem: "github-actions"
+ directory: "/"
+ schedule:
+ interval: weekly
+ time: "06:00"
diff --git a/.github/workflows/builder.yaml b/.github/workflows/builder.yaml
new file mode 100644
index 00000000..136ee12b
--- /dev/null
+++ b/.github/workflows/builder.yaml
@@ -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
diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml
new file mode 100644
index 00000000..854eea6b
--- /dev/null
+++ b/.github/workflows/lint.yaml
@@ -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 }}"
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 00000000..e72bfdda
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,674 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ 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.
+
+
+ Copyright (C)
+
+ 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 .
+
+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:
+
+ Copyright (C)
+ 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
+.
+
+ 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
+.
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/CHANGELOG.md b/nspanel-lovelace-ui/CHANGELOG.md
new file mode 100644
index 00000000..b2aea5ee
--- /dev/null
+++ b/nspanel-lovelace-ui/CHANGELOG.md
@@ -0,0 +1,5 @@
+
+
+## 4.7.0
+
+- Initial test of addon
diff --git a/nspanel-lovelace-ui/DOCS.md b/nspanel-lovelace-ui/DOCS.md
new file mode 100644
index 00000000..b8432c3d
--- /dev/null
+++ b/nspanel-lovelace-ui/DOCS.md
@@ -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.
diff --git a/nspanel-lovelace-ui/Dockerfile b/nspanel-lovelace-ui/Dockerfile
new file mode 100644
index 00000000..9d1a983c
--- /dev/null
+++ b/nspanel-lovelace-ui/Dockerfile
@@ -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 /
diff --git a/nspanel-lovelace-ui/README.md b/nspanel-lovelace-ui/README.md
new file mode 100644
index 00000000..1d6997c1
--- /dev/null
+++ b/nspanel-lovelace-ui/README.md
@@ -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
diff --git a/nspanel-lovelace-ui/apparmor.txt b/nspanel-lovelace-ui/apparmor.txt
new file mode 100644
index 00000000..e788a6c0
--- /dev/null
+++ b/nspanel-lovelace-ui/apparmor.txt
@@ -0,0 +1,57 @@
+#include
+
+profile example flags=(attach_disconnected,mediate_deleted) {
+ #include
+
+ # 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
+
+ # 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,
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/build.yaml b/nspanel-lovelace-ui/build.yaml
new file mode 100644
index 00000000..cdca3163
--- /dev/null
+++ b/nspanel-lovelace-ui/build.yaml
@@ -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"
diff --git a/nspanel-lovelace-ui/config.yaml b/nspanel-lovelace-ui/config.yaml
new file mode 100644
index 00000000..29fdf17d
--- /dev/null
+++ b/nspanel-lovelace-ui/config.yaml
@@ -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"
diff --git a/nspanel-lovelace-ui/icon.png b/nspanel-lovelace-ui/icon.png
new file mode 100644
index 00000000..e7f06210
Binary files /dev/null and b/nspanel-lovelace-ui/icon.png differ
diff --git a/nspanel-lovelace-ui/logo.png b/nspanel-lovelace-ui/logo.png
new file mode 100644
index 00000000..bf1a5e68
Binary files /dev/null and b/nspanel-lovelace-ui/logo.png differ
diff --git a/nspanel-lovelace-ui/rootfs/etc/services.d/mqtt-manager/finish b/nspanel-lovelace-ui/rootfs/etc/services.d/mqtt-manager/finish
new file mode 100644
index 00000000..230d1792
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/etc/services.d/mqtt-manager/finish
@@ -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"
diff --git a/nspanel-lovelace-ui/rootfs/etc/services.d/mqtt-manager/run b/nspanel-lovelace-ui/rootfs/etc/services.d/mqtt-manager/run
new file mode 100644
index 00000000..450b9ce7
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/etc/services.d/mqtt-manager/run
@@ -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
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/config.yml b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/config.yml
new file mode 100644
index 00000000..f4213917
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/config.yml
@@ -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
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/ha_cards.py b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/ha_cards.py
new file mode 100644
index 00000000..b80daad4
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/ha_cards.py
@@ -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
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/ha_colors.py b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/ha_colors.py
new file mode 100644
index 00000000..384486fa
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/ha_colors.py
@@ -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
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/ha_control.py b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/ha_control.py
new file mode 100644
index 00000000..cb57fb6d
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/ha_control.py
@@ -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")
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/ha_icons.py b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/ha_icons.py
new file mode 100644
index 00000000..7e99ab3f
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/ha_icons.py
@@ -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)
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/helper.py b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/helper.py
new file mode 100644
index 00000000..fd62fafc
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/helper.py
@@ -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"
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/home_assistant.py b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/home_assistant.py
new file mode 100644
index 00000000..52c607b6
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/home_assistant.py
@@ -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)
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/icon_mapping.py b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/icon_mapping.py
new file mode 100644
index 00000000..7282ce18
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/icon_mapping.py
@@ -0,0 +1,6926 @@
+import re
+icons = {
+ 'ab-testing': '',
+ 'abacus': '',
+ 'abjad-arabic': '',
+ 'abjad-hebrew': '',
+ 'abugida-devanagari': '',
+ 'abugida-thai': '',
+ 'access-point': '',
+ 'access-point-check': '',
+ 'access-point-minus': '',
+ 'access-point-network': '',
+ 'access-point-network-off': '',
+ 'access-point-off': '',
+ 'access-point-plus': '',
+ 'access-point-remove': '',
+ 'account': '',
+ 'account-alert': '',
+ 'account-alert-outline': '',
+ 'account-arrow-down': '',
+ 'account-arrow-down-outline': '',
+ 'account-arrow-left': '',
+ 'account-arrow-left-outline': '',
+ 'account-arrow-right': '',
+ 'account-arrow-right-outline': '',
+ 'account-arrow-up': '',
+ 'account-arrow-up-outline': '',
+ 'account-box': '',
+ 'account-box-multiple': '',
+ 'account-box-multiple-outline': '',
+ 'account-box-outline': '',
+ 'account-cancel': '',
+ 'account-cancel-outline': '',
+ 'account-cash': '',
+ 'account-cash-outline': '',
+ 'account-check': '',
+ 'account-check-outline': '',
+ 'account-child': '',
+ 'account-child-circle': '',
+ 'account-child-outline': '',
+ 'account-circle': '',
+ 'account-circle-outline': '',
+ 'account-clock': '',
+ 'account-clock-outline': '',
+ 'account-cog': '',
+ 'account-cog-outline': '',
+ 'account-convert': '',
+ 'account-convert-outline': '',
+ 'account-cowboy-hat': '',
+ 'account-cowboy-hat-outline': '',
+ 'account-details': '',
+ 'account-details-outline': '',
+ 'account-edit': '',
+ 'account-edit-outline': '',
+ 'account-eye': '',
+ 'account-eye-outline': '',
+ 'account-filter': '',
+ 'account-filter-outline': '',
+ 'account-group': '',
+ 'account-group-outline': '',
+ 'account-hard-hat': '',
+ 'account-hard-hat-outline': '羽',
+ 'account-heart': '',
+ 'account-heart-outline': '',
+ 'account-injury': '',
+ 'account-injury-outline': '',
+ 'account-key': '',
+ 'account-key-outline': '',
+ 'account-lock': '',
+ 'account-lock-open': '寧',
+ 'account-lock-open-outline': '怒',
+ 'account-lock-outline': '',
+ 'account-minus': '',
+ 'account-minus-outline': '',
+ 'account-multiple': '',
+ 'account-multiple-check': '',
+ 'account-multiple-check-outline': '',
+ 'account-multiple-minus': '',
+ 'account-multiple-minus-outline': '',
+ 'account-multiple-outline': '',
+ 'account-multiple-plus': '',
+ 'account-multiple-plus-outline': '',
+ 'account-multiple-remove': '',
+ 'account-multiple-remove-outline': '',
+ 'account-music': '',
+ 'account-music-outline': '',
+ 'account-network': '',
+ 'account-network-outline': '',
+ 'account-off': '',
+ 'account-off-outline': '',
+ 'account-outline': '',
+ 'account-plus': '',
+ 'account-plus-outline': '',
+ 'account-question': '',
+ 'account-question-outline': '',
+ 'account-reactivate': '',
+ 'account-reactivate-outline': '',
+ 'account-remove': '',
+ 'account-remove-outline': '',
+ 'account-school': '﨟',
+ 'account-school-outline': '蘒',
+ 'account-search': '',
+ 'account-search-outline': '',
+ 'account-settings': '',
+ 'account-settings-outline': '',
+ 'account-star': '',
+ 'account-star-outline': '',
+ 'account-supervisor': '',
+ 'account-supervisor-circle': '',
+ 'account-supervisor-circle-outline': '',
+ 'account-supervisor-outline': '',
+ 'account-switch': '',
+ 'account-switch-outline': '',
+ 'account-sync': '駱',
+ 'account-sync-outline': '亂',
+ 'account-tie': '',
+ 'account-tie-hat': '',
+ 'account-tie-hat-outline': '',
+ 'account-tie-outline': '',
+ 'account-tie-voice': '',
+ 'account-tie-voice-off': '',
+ 'account-tie-voice-off-outline': '',
+ 'account-tie-voice-outline': '',
+ 'account-tie-woman': '懲',
+ 'account-voice': '',
+ 'account-voice-off': '',
+ 'account-wrench': '',
+ 'account-wrench-outline': '',
+ 'adjust': '',
+ 'advertisements': '朗',
+ 'advertisements-off': '浪',
+ 'air-conditioner': '',
+ 'air-filter': '',
+ 'air-horn': '',
+ 'air-humidifier': '',
+ 'air-humidifier-off': '',
+ 'air-purifier': '',
+ 'airbag': '',
+ 'airballoon': '',
+ 'airballoon-outline': '',
+ 'airplane': '',
+ 'airplane-alert': '',
+ 'airplane-check': '',
+ 'airplane-clock': '',
+ 'airplane-cog': '',
+ 'airplane-edit': '',
+ 'airplane-landing': '',
+ 'airplane-marker': '',
+ 'airplane-minus': '',
+ 'airplane-off': '',
+ 'airplane-plus': '',
+ 'airplane-remove': '',
+ 'airplane-search': '',
+ 'airplane-settings': '',
+ 'airplane-takeoff': '',
+ 'airport': '',
+ 'alarm': '',
+ 'alarm-bell': '',
+ 'alarm-check': '',
+ 'alarm-light': '',
+ 'alarm-light-off': '',
+ 'alarm-light-off-outline': '',
+ 'alarm-light-outline': '',
+ 'alarm-multiple': '',
+ 'alarm-note': '',
+ 'alarm-note-off': '',
+ 'alarm-off': '',
+ 'alarm-panel': '',
+ 'alarm-panel-outline': '',
+ 'alarm-plus': '',
+ 'alarm-snooze': '',
+ 'album': '',
+ 'alert': '',
+ 'alert-box': '',
+ 'alert-box-outline': '',
+ 'alert-circle': '',
+ 'alert-circle-check': '',
+ 'alert-circle-check-outline': '',
+ 'alert-circle-outline': '',
+ 'alert-decagram': '',
+ 'alert-decagram-outline': '',
+ 'alert-minus': '',
+ 'alert-minus-outline': '',
+ 'alert-octagon': '',
+ 'alert-octagon-outline': '',
+ 'alert-octagram': '',
+ 'alert-octagram-outline': '',
+ 'alert-outline': '',
+ 'alert-plus': '',
+ 'alert-plus-outline': '',
+ 'alert-remove': '',
+ 'alert-remove-outline': '',
+ 'alert-rhombus': '',
+ 'alert-rhombus-outline': '',
+ 'alien': '',
+ 'alien-outline': '',
+ 'align-horizontal-center': '',
+ 'align-horizontal-distribute': '率',
+ 'align-horizontal-left': '',
+ 'align-horizontal-right': '',
+ 'align-vertical-bottom': '',
+ 'align-vertical-center': '',
+ 'align-vertical-distribute': '異',
+ 'align-vertical-top': '',
+ 'all-inclusive': '',
+ 'all-inclusive-box': '',
+ 'all-inclusive-box-outline': '',
+ 'allergy': '',
+ 'alpha': '',
+ 'alpha-a': '',
+ 'alpha-a-box': '',
+ 'alpha-a-box-outline': '',
+ 'alpha-a-circle': '',
+ 'alpha-a-circle-outline': '',
+ 'alpha-b': '',
+ 'alpha-b-box': '',
+ 'alpha-b-box-outline': '',
+ 'alpha-b-circle': '',
+ 'alpha-b-circle-outline': '',
+ 'alpha-c': '',
+ 'alpha-c-box': '',
+ 'alpha-c-box-outline': '',
+ 'alpha-c-circle': '',
+ 'alpha-c-circle-outline': '',
+ 'alpha-d': '',
+ 'alpha-d-box': '',
+ 'alpha-d-box-outline': '',
+ 'alpha-d-circle': '',
+ 'alpha-d-circle-outline': '',
+ 'alpha-e': '',
+ 'alpha-e-box': '',
+ 'alpha-e-box-outline': '',
+ 'alpha-e-circle': '',
+ 'alpha-e-circle-outline': '',
+ 'alpha-f': '',
+ 'alpha-f-box': '',
+ 'alpha-f-box-outline': '',
+ 'alpha-f-circle': '',
+ 'alpha-f-circle-outline': '',
+ 'alpha-g': '',
+ 'alpha-g-box': '',
+ 'alpha-g-box-outline': '',
+ 'alpha-g-circle': '',
+ 'alpha-g-circle-outline': '',
+ 'alpha-h': '',
+ 'alpha-h-box': '',
+ 'alpha-h-box-outline': '',
+ 'alpha-h-circle': '',
+ 'alpha-h-circle-outline': '',
+ 'alpha-i': '',
+ 'alpha-i-box': '',
+ 'alpha-i-box-outline': '',
+ 'alpha-i-circle': '',
+ 'alpha-i-circle-outline': '',
+ 'alpha-j': '',
+ 'alpha-j-box': '',
+ 'alpha-j-box-outline': '',
+ 'alpha-j-circle': '',
+ 'alpha-j-circle-outline': '',
+ 'alpha-k': '',
+ 'alpha-k-box': '',
+ 'alpha-k-box-outline': '',
+ 'alpha-k-circle': '',
+ 'alpha-k-circle-outline': '',
+ 'alpha-l': '',
+ 'alpha-l-box': '',
+ 'alpha-l-box-outline': '',
+ 'alpha-l-circle': '',
+ 'alpha-l-circle-outline': '',
+ 'alpha-m': '',
+ 'alpha-m-box': '',
+ 'alpha-m-box-outline': '',
+ 'alpha-m-circle': '',
+ 'alpha-m-circle-outline': '',
+ 'alpha-n': '',
+ 'alpha-n-box': '',
+ 'alpha-n-box-outline': '',
+ 'alpha-n-circle': '',
+ 'alpha-n-circle-outline': '',
+ 'alpha-o': '',
+ 'alpha-o-box': '',
+ 'alpha-o-box-outline': '',
+ 'alpha-o-circle': '',
+ 'alpha-o-circle-outline': '',
+ 'alpha-p': '',
+ 'alpha-p-box': '',
+ 'alpha-p-box-outline': '',
+ 'alpha-p-circle': '',
+ 'alpha-p-circle-outline': '',
+ 'alpha-q': '',
+ 'alpha-q-box': '',
+ 'alpha-q-box-outline': '',
+ 'alpha-q-circle': '',
+ 'alpha-q-circle-outline': '',
+ 'alpha-r': '',
+ 'alpha-r-box': '',
+ 'alpha-r-box-outline': '',
+ 'alpha-r-circle': '',
+ 'alpha-r-circle-outline': '',
+ 'alpha-s': '',
+ 'alpha-s-box': '',
+ 'alpha-s-box-outline': '',
+ 'alpha-s-circle': '',
+ 'alpha-s-circle-outline': '',
+ 'alpha-t': '',
+ 'alpha-t-box': '',
+ 'alpha-t-box-outline': '',
+ 'alpha-t-circle': '',
+ 'alpha-t-circle-outline': '',
+ 'alpha-u': '',
+ 'alpha-u-box': '',
+ 'alpha-u-box-outline': '',
+ 'alpha-u-circle': '',
+ 'alpha-u-circle-outline': '',
+ 'alpha-v': '',
+ 'alpha-v-box': '',
+ 'alpha-v-box-outline': '',
+ 'alpha-v-circle': '',
+ 'alpha-v-circle-outline': '',
+ 'alpha-w': '',
+ 'alpha-w-box': '',
+ 'alpha-w-box-outline': '',
+ 'alpha-w-circle': '',
+ 'alpha-w-circle-outline': '',
+ 'alpha-x': '',
+ 'alpha-x-box': '',
+ 'alpha-x-box-outline': '',
+ 'alpha-x-circle': '',
+ 'alpha-x-circle-outline': '',
+ 'alpha-y': '',
+ 'alpha-y-box': '',
+ 'alpha-y-box-outline': '',
+ 'alpha-y-circle': '',
+ 'alpha-y-circle-outline': '',
+ 'alpha-z': '',
+ 'alpha-z-box': '',
+ 'alpha-z-box-outline': '',
+ 'alpha-z-circle': '',
+ 'alpha-z-circle-outline': '',
+ 'alphabet-aurebesh': '',
+ 'alphabet-cyrillic': '',
+ 'alphabet-greek': '',
+ 'alphabet-latin': '',
+ 'alphabet-piqad': '',
+ 'alphabet-tengwar': '',
+ 'alphabetical': '',
+ 'alphabetical-off': '',
+ 'alphabetical-variant': '',
+ 'alphabetical-variant-off': '',
+ 'altimeter': '',
+ 'ambulance': '',
+ 'ammunition': '',
+ 'ampersand': '',
+ 'amplifier': '',
+ 'amplifier-off': '',
+ 'anchor': '',
+ 'android': '',
+ 'android-messages': '',
+ 'android-studio': '',
+ 'angle-acute': '',
+ 'angle-obtuse': '',
+ 'angle-right': '',
+ 'angular': '',
+ 'angularjs': '',
+ 'animation': '',
+ 'animation-outline': '',
+ 'animation-play': '',
+ 'animation-play-outline': '',
+ 'ansible': '',
+ 'antenna': '',
+ 'anvil': '',
+ 'apache-kafka': '',
+ 'api': '',
+ 'api-off': '',
+ 'apple': '',
+ 'apple-finder': '',
+ 'apple-icloud': '',
+ 'apple-ios': '',
+ 'apple-keyboard-caps': '',
+ 'apple-keyboard-command': '',
+ 'apple-keyboard-control': '',
+ 'apple-keyboard-option': '',
+ 'apple-keyboard-shift': '',
+ 'apple-safari': '',
+ 'application': '',
+ 'application-array': '',
+ 'application-array-outline': '',
+ 'application-braces': '',
+ 'application-braces-outline': '',
+ 'application-brackets': '',
+ 'application-brackets-outline': '',
+ 'application-cog': '',
+ 'application-cog-outline': '',
+ 'application-edit': '',
+ 'application-edit-outline': '',
+ 'application-export': '',
+ 'application-import': '',
+ 'application-outline': '',
+ 'application-parentheses': '',
+ 'application-parentheses-outline': '',
+ 'application-settings': '',
+ 'application-settings-outline': '',
+ 'application-variable': '',
+ 'application-variable-outline': '',
+ 'approximately-equal': '',
+ 'approximately-equal-box': '',
+ 'apps': '',
+ 'apps-box': '',
+ 'arch': '',
+ 'archive': '',
+ 'archive-alert': '',
+ 'archive-alert-outline': '',
+ 'archive-arrow-down': '',
+ 'archive-arrow-down-outline': '',
+ 'archive-arrow-up': '',
+ 'archive-arrow-up-outline': '',
+ 'archive-cancel': '',
+ 'archive-cancel-outline': '',
+ 'archive-check': '',
+ 'archive-check-outline': '',
+ 'archive-clock': '',
+ 'archive-clock-outline': '',
+ 'archive-cog': '',
+ 'archive-cog-outline': '',
+ 'archive-edit': '',
+ 'archive-edit-outline': '',
+ 'archive-eye': '',
+ 'archive-eye-outline': '',
+ 'archive-lock': '',
+ 'archive-lock-open': '',
+ 'archive-lock-open-outline': '',
+ 'archive-lock-outline': '',
+ 'archive-marker': '',
+ 'archive-marker-outline': '',
+ 'archive-minus': '',
+ 'archive-minus-outline': '',
+ 'archive-music': '',
+ 'archive-music-outline': '',
+ 'archive-off': '',
+ 'archive-off-outline': '',
+ 'archive-outline': '',
+ 'archive-plus': '',
+ 'archive-plus-outline': '',
+ 'archive-refresh': '',
+ 'archive-refresh-outline': '',
+ 'archive-remove': '',
+ 'archive-remove-outline': '',
+ 'archive-search': '',
+ 'archive-search-outline': '',
+ 'archive-settings': '',
+ 'archive-settings-outline': '',
+ 'archive-star': '',
+ 'archive-star-outline': '',
+ 'archive-sync': '',
+ 'archive-sync-outline': '',
+ 'arm-flex': '',
+ 'arm-flex-outline': '',
+ 'arrange-bring-forward': '',
+ 'arrange-bring-to-front': '',
+ 'arrange-send-backward': '',
+ 'arrange-send-to-back': '',
+ 'arrow-all': '',
+ 'arrow-bottom-left': '',
+ 'arrow-bottom-left-bold-box': '北',
+ 'arrow-bottom-left-bold-box-outline': '磻',
+ 'arrow-bottom-left-bold-outline': '',
+ 'arrow-bottom-left-thick': '',
+ 'arrow-bottom-left-thin': '例',
+ 'arrow-bottom-left-thin-circle-outline': '',
+ 'arrow-bottom-right': '',
+ 'arrow-bottom-right-bold-box': '便',
+ 'arrow-bottom-right-bold-box-outline': '復',
+ 'arrow-bottom-right-bold-outline': '',
+ 'arrow-bottom-right-thick': '',
+ 'arrow-bottom-right-thin': '禮',
+ 'arrow-bottom-right-thin-circle-outline': '',
+ 'arrow-collapse': '',
+ 'arrow-collapse-all': '',
+ 'arrow-collapse-down': '',
+ 'arrow-collapse-horizontal': '',
+ 'arrow-collapse-left': '',
+ 'arrow-collapse-right': '',
+ 'arrow-collapse-up': '',
+ 'arrow-collapse-vertical': '',
+ 'arrow-decision': '',
+ 'arrow-decision-auto': '',
+ 'arrow-decision-auto-outline': '',
+ 'arrow-decision-outline': '',
+ 'arrow-down': '',
+ 'arrow-down-bold': '',
+ 'arrow-down-bold-box': '',
+ 'arrow-down-bold-box-outline': '',
+ 'arrow-down-bold-circle': '',
+ 'arrow-down-bold-circle-outline': '',
+ 'arrow-down-bold-hexagon-outline': '',
+ 'arrow-down-bold-outline': '',
+ 'arrow-down-box': '',
+ 'arrow-down-circle': '',
+ 'arrow-down-circle-outline': '',
+ 'arrow-down-drop-circle': '',
+ 'arrow-down-drop-circle-outline': '',
+ 'arrow-down-left': '',
+ 'arrow-down-left-bold': '',
+ 'arrow-down-right': '',
+ 'arrow-down-right-bold': '',
+ 'arrow-down-thick': '',
+ 'arrow-down-thin': '零',
+ 'arrow-down-thin-circle-outline': '',
+ 'arrow-expand': '',
+ 'arrow-expand-all': '',
+ 'arrow-expand-down': '',
+ 'arrow-expand-horizontal': '',
+ 'arrow-expand-left': '',
+ 'arrow-expand-right': '',
+ 'arrow-expand-up': '',
+ 'arrow-expand-vertical': '',
+ 'arrow-horizontal-lock': '',
+ 'arrow-left': '',
+ 'arrow-left-bold': '',
+ 'arrow-left-bold-box': '',
+ 'arrow-left-bold-box-outline': '',
+ 'arrow-left-bold-circle': '',
+ 'arrow-left-bold-circle-outline': '',
+ 'arrow-left-bold-hexagon-outline': '',
+ 'arrow-left-bold-outline': '',
+ 'arrow-left-bottom': '',
+ 'arrow-left-bottom-bold': '',
+ 'arrow-left-box': '',
+ 'arrow-left-circle': '',
+ 'arrow-left-circle-outline': '',
+ 'arrow-left-drop-circle': '',
+ 'arrow-left-drop-circle-outline': '',
+ 'arrow-left-right': '',
+ 'arrow-left-right-bold': '',
+ 'arrow-left-right-bold-outline': '',
+ 'arrow-left-thick': '',
+ 'arrow-left-thin': '聆',
+ 'arrow-left-thin-circle-outline': '',
+ 'arrow-left-top': '',
+ 'arrow-left-top-bold': '',
+ 'arrow-projectile': '',
+ 'arrow-projectile-multiple': '',
+ 'arrow-right': '',
+ 'arrow-right-bold': '',
+ 'arrow-right-bold-box': '',
+ 'arrow-right-bold-box-outline': '',
+ 'arrow-right-bold-circle': '',
+ 'arrow-right-bold-circle-outline': '',
+ 'arrow-right-bold-hexagon-outline': '',
+ 'arrow-right-bold-outline': '',
+ 'arrow-right-bottom': '',
+ 'arrow-right-bottom-bold': '',
+ 'arrow-right-box': '',
+ 'arrow-right-circle': '',
+ 'arrow-right-circle-outline': '',
+ 'arrow-right-drop-circle': '',
+ 'arrow-right-drop-circle-outline': '',
+ 'arrow-right-thick': '',
+ 'arrow-right-thin': '羚',
+ 'arrow-right-thin-circle-outline': '',
+ 'arrow-right-top': '',
+ 'arrow-right-top-bold': '',
+ 'arrow-split-horizontal': '',
+ 'arrow-split-vertical': '',
+ 'arrow-top-left': '',
+ 'arrow-top-left-bold-box': '不',
+ 'arrow-top-left-bold-box-outline': '泌',
+ 'arrow-top-left-bold-outline': '',
+ 'arrow-top-left-bottom-right': '',
+ 'arrow-top-left-bottom-right-bold': '',
+ 'arrow-top-left-thick': '',
+ 'arrow-top-left-thin': '領',
+ 'arrow-top-left-thin-circle-outline': '',
+ 'arrow-top-right': '',
+ 'arrow-top-right-bold-box': '數',
+ 'arrow-top-right-bold-box-outline': '索',
+ 'arrow-top-right-bold-outline': '',
+ 'arrow-top-right-bottom-left': '',
+ 'arrow-top-right-bottom-left-bold': '',
+ 'arrow-top-right-thick': '',
+ 'arrow-top-right-thin': '靈',
+ 'arrow-top-right-thin-circle-outline': '',
+ 'arrow-u-down-left': '',
+ 'arrow-u-down-left-bold': '',
+ 'arrow-u-down-right': '',
+ 'arrow-u-down-right-bold': '',
+ 'arrow-u-left-bottom': '',
+ 'arrow-u-left-bottom-bold': '',
+ 'arrow-u-left-top': '',
+ 'arrow-u-left-top-bold': '',
+ 'arrow-u-right-bottom': '',
+ 'arrow-u-right-bottom-bold': '',
+ 'arrow-u-right-top': '',
+ 'arrow-u-right-top-bold': '',
+ 'arrow-u-up-left': '',
+ 'arrow-u-up-left-bold': '',
+ 'arrow-u-up-right': '',
+ 'arrow-u-up-right-bold': '',
+ 'arrow-up': '',
+ 'arrow-up-bold': '',
+ 'arrow-up-bold-box': '',
+ 'arrow-up-bold-box-outline': '',
+ 'arrow-up-bold-circle': '',
+ 'arrow-up-bold-circle-outline': '',
+ 'arrow-up-bold-hexagon-outline': '',
+ 'arrow-up-bold-outline': '',
+ 'arrow-up-box': '',
+ 'arrow-up-circle': '',
+ 'arrow-up-circle-outline': '',
+ 'arrow-up-down': '',
+ 'arrow-up-down-bold': '',
+ 'arrow-up-down-bold-outline': '',
+ 'arrow-up-drop-circle': '',
+ 'arrow-up-drop-circle-outline': '',
+ 'arrow-up-left': '',
+ 'arrow-up-left-bold': '',
+ 'arrow-up-right': '',
+ 'arrow-up-right-bold': '',
+ 'arrow-up-thick': '',
+ 'arrow-up-thin': '鈴',
+ 'arrow-up-thin-circle-outline': '',
+ 'arrow-vertical-lock': '',
+ 'artstation': '',
+ 'aspect-ratio': '',
+ 'assistant': '',
+ 'asterisk': '',
+ 'asterisk-circle-outline': '都',
+ 'at': '',
+ 'atlassian': '',
+ 'atm': '',
+ 'atom': '',
+ 'atom-variant': '',
+ 'attachment': '',
+ 'attachment-check': '變',
+ 'attachment-lock': '遼',
+ 'attachment-minus': '贈',
+ 'attachment-off': '輸',
+ 'attachment-plus': '遲',
+ 'attachment-remove': '醙',
+ 'audio-input-rca': '',
+ 'audio-input-stereo-minijack': '',
+ 'audio-input-xlr': '',
+ 'audio-video': '',
+ 'audio-video-off': '',
+ 'augmented-reality': '',
+ 'auto-download': '',
+ 'auto-fix': '',
+ 'auto-upload': '',
+ 'autorenew': '',
+ 'autorenew-off': '罹',
+ 'av-timer': '',
+ 'aws': '',
+ 'axe': '',
+ 'axe-battle': '',
+ 'axis': '',
+ 'axis-arrow': '',
+ 'axis-arrow-info': '',
+ 'axis-arrow-lock': '',
+ 'axis-lock': '',
+ 'axis-x-arrow': '',
+ 'axis-x-arrow-lock': '',
+ 'axis-x-rotate-clockwise': '',
+ 'axis-x-rotate-counterclockwise': '',
+ 'axis-x-y-arrow-lock': '',
+ 'axis-y-arrow': '',
+ 'axis-y-arrow-lock': '',
+ 'axis-y-rotate-clockwise': '',
+ 'axis-y-rotate-counterclockwise': '',
+ 'axis-z-arrow': '',
+ 'axis-z-arrow-lock': '',
+ 'axis-z-rotate-clockwise': '',
+ 'axis-z-rotate-counterclockwise': '',
+ 'babel': '',
+ 'baby': '',
+ 'baby-bottle': '',
+ 'baby-bottle-outline': '',
+ 'baby-buggy': '',
+ 'baby-carriage': '',
+ 'baby-carriage-off': '',
+ 'baby-face': '',
+ 'baby-face-outline': '',
+ 'backburger': '',
+ 'backspace': '',
+ 'backspace-outline': '',
+ 'backspace-reverse': '',
+ 'backspace-reverse-outline': '',
+ 'backup-restore': '',
+ 'bacteria': '',
+ 'bacteria-outline': '',
+ 'badge-account': '',
+ 'badge-account-alert': '',
+ 'badge-account-alert-outline': '',
+ 'badge-account-horizontal': '',
+ 'badge-account-horizontal-outline': '',
+ 'badge-account-outline': '',
+ 'badminton': '',
+ 'bag-carry-on': '',
+ 'bag-carry-on-check': '',
+ 'bag-carry-on-off': '',
+ 'bag-checked': '',
+ 'bag-personal': '',
+ 'bag-personal-off': '',
+ 'bag-personal-off-outline': '',
+ 'bag-personal-outline': '',
+ 'bag-suitcase': '',
+ 'bag-suitcase-off': '',
+ 'bag-suitcase-off-outline': '',
+ 'bag-suitcase-outline': '',
+ 'baguette': '',
+ 'balcony': '',
+ 'balloon': '',
+ 'ballot': '',
+ 'ballot-outline': '',
+ 'ballot-recount': '',
+ 'ballot-recount-outline': '',
+ 'bandage': '',
+ 'bank': '',
+ 'bank-check': '',
+ 'bank-minus': '',
+ 'bank-off': '',
+ 'bank-off-outline': '',
+ 'bank-outline': '',
+ 'bank-plus': '',
+ 'bank-remove': '',
+ 'bank-transfer': '',
+ 'bank-transfer-in': '',
+ 'bank-transfer-out': '',
+ 'barcode': '',
+ 'barcode-off': '',
+ 'barcode-scan': '',
+ 'barley': '',
+ 'barley-off': '',
+ 'barn': '',
+ 'barrel': '',
+ 'barrel-outline': '﨧',
+ 'baseball': '',
+ 'baseball-bat': '',
+ 'baseball-diamond': '',
+ 'baseball-diamond-outline': '',
+ 'bash': '',
+ 'basket': '',
+ 'basket-check': '',
+ 'basket-check-outline': '',
+ 'basket-fill': '',
+ 'basket-minus': '',
+ 'basket-minus-outline': '',
+ 'basket-off': '',
+ 'basket-off-outline': '',
+ 'basket-outline': '',
+ 'basket-plus': '',
+ 'basket-plus-outline': '',
+ 'basket-remove': '',
+ 'basket-remove-outline': '',
+ 'basket-unfill': '',
+ 'basketball': '',
+ 'basketball-hoop': '',
+ 'basketball-hoop-outline': '',
+ 'bat': '',
+ 'bathtub': '',
+ 'bathtub-outline': '',
+ 'battery': '',
+ 'battery-10': '',
+ 'battery-10-bluetooth': '',
+ 'battery-20': '',
+ 'battery-20-bluetooth': '',
+ 'battery-30': '',
+ 'battery-30-bluetooth': '',
+ 'battery-40': '',
+ 'battery-40-bluetooth': '',
+ 'battery-50': '',
+ 'battery-50-bluetooth': '',
+ 'battery-60': '',
+ 'battery-60-bluetooth': '',
+ 'battery-70': '',
+ 'battery-70-bluetooth': '',
+ 'battery-80': '',
+ 'battery-80-bluetooth': '',
+ 'battery-90': '',
+ 'battery-90-bluetooth': '',
+ 'battery-alert': '',
+ 'battery-alert-bluetooth': '',
+ 'battery-alert-variant': '',
+ 'battery-alert-variant-outline': '',
+ 'battery-arrow-down': '',
+ 'battery-arrow-down-outline': '',
+ 'battery-arrow-up': '',
+ 'battery-arrow-up-outline': '',
+ 'battery-bluetooth': '',
+ 'battery-bluetooth-variant': '',
+ 'battery-charging': '',
+ 'battery-charging-10': '',
+ 'battery-charging-100': '',
+ 'battery-charging-20': '',
+ 'battery-charging-30': '',
+ 'battery-charging-40': '',
+ 'battery-charging-50': '',
+ 'battery-charging-60': '',
+ 'battery-charging-70': '',
+ 'battery-charging-80': '',
+ 'battery-charging-90': '',
+ 'battery-charging-high': '',
+ 'battery-charging-low': '',
+ 'battery-charging-medium': '',
+ 'battery-charging-outline': '',
+ 'battery-charging-wireless': '',
+ 'battery-charging-wireless-10': '',
+ 'battery-charging-wireless-20': '',
+ 'battery-charging-wireless-30': '',
+ 'battery-charging-wireless-40': '',
+ 'battery-charging-wireless-50': '',
+ 'battery-charging-wireless-60': '',
+ 'battery-charging-wireless-70': '',
+ 'battery-charging-wireless-80': '',
+ 'battery-charging-wireless-90': '',
+ 'battery-charging-wireless-alert': '',
+ 'battery-charging-wireless-outline': '',
+ 'battery-check': '',
+ 'battery-check-outline': '',
+ 'battery-clock': '理',
+ 'battery-clock-outline': '痢',
+ 'battery-heart': '',
+ 'battery-heart-outline': '',
+ 'battery-heart-variant': '',
+ 'battery-high': '',
+ 'battery-lock': '',
+ 'battery-lock-open': '',
+ 'battery-low': '',
+ 'battery-medium': '',
+ 'battery-minus': '',
+ 'battery-minus-outline': '',
+ 'battery-minus-variant': '',
+ 'battery-negative': '',
+ 'battery-off': '',
+ 'battery-off-outline': '',
+ 'battery-outline': '',
+ 'battery-plus': '',
+ 'battery-plus-outline': '',
+ 'battery-plus-variant': '',
+ 'battery-positive': '',
+ 'battery-remove': '',
+ 'battery-remove-outline': '',
+ 'battery-sync': '',
+ 'battery-sync-outline': '',
+ 'battery-unknown': '',
+ 'battery-unknown-bluetooth': '',
+ 'beach': '',
+ 'beaker': '',
+ 'beaker-alert': '',
+ 'beaker-alert-outline': '',
+ 'beaker-check': '',
+ 'beaker-check-outline': '',
+ 'beaker-minus': '',
+ 'beaker-minus-outline': '',
+ 'beaker-outline': '',
+ 'beaker-plus': '',
+ 'beaker-plus-outline': '',
+ 'beaker-question': '',
+ 'beaker-question-outline': '',
+ 'beaker-remove': '',
+ 'beaker-remove-outline': '',
+ 'bed': '',
+ 'bed-double': '',
+ 'bed-double-outline': '',
+ 'bed-empty': '',
+ 'bed-king': '',
+ 'bed-king-outline': '',
+ 'bed-outline': '',
+ 'bed-queen': '',
+ 'bed-queen-outline': '',
+ 'bed-single': '',
+ 'bed-single-outline': '',
+ 'bee': '',
+ 'bee-flower': '',
+ 'beehive-off-outline': '',
+ 'beehive-outline': '',
+ 'beekeeper': '',
+ 'beer': '',
+ 'beer-outline': '',
+ 'bell': '',
+ 'bell-alert': '',
+ 'bell-alert-outline': '',
+ 'bell-badge': '',
+ 'bell-badge-outline': '',
+ 'bell-cancel': '',
+ 'bell-cancel-outline': '',
+ 'bell-check': '',
+ 'bell-check-outline': '',
+ 'bell-circle': '',
+ 'bell-circle-outline': '',
+ 'bell-cog': '﨨',
+ 'bell-cog-outline': '﨩',
+ 'bell-minus': '',
+ 'bell-minus-outline': '',
+ 'bell-off': '',
+ 'bell-off-outline': '',
+ 'bell-outline': '',
+ 'bell-plus': '',
+ 'bell-plus-outline': '',
+ 'bell-remove': '',
+ 'bell-remove-outline': '',
+ 'bell-ring': '',
+ 'bell-ring-outline': '',
+ 'bell-sleep': '',
+ 'bell-sleep-outline': '',
+ 'beta': '',
+ 'betamax': '',
+ 'biathlon': '',
+ 'bicycle': '',
+ 'bicycle-basket': '',
+ 'bicycle-cargo': '',
+ 'bicycle-electric': '',
+ 'bicycle-penny-farthing': '',
+ 'bike': '',
+ 'bike-fast': '',
+ 'billboard': '',
+ 'billiards': '',
+ 'billiards-rack': '',
+ 'binoculars': '',
+ 'bio': '',
+ 'biohazard': '',
+ 'bird': '',
+ 'bitbucket': '',
+ 'bitcoin': '',
+ 'black-mesa': '',
+ 'blender': '',
+ 'blender-outline': '',
+ 'blender-software': '',
+ 'blinds': '',
+ 'blinds-horizontal': '飯',
+ 'blinds-horizontal-closed': '飼',
+ 'blinds-open': '',
+ 'blinds-vertical': '館',
+ 'blinds-vertical-closed': '鶴',
+ 'block-helper': '',
+ 'blood-bag': '',
+ 'bluetooth': '',
+ 'bluetooth-audio': '',
+ 'bluetooth-connect': '',
+ 'bluetooth-off': '',
+ 'bluetooth-settings': '',
+ 'bluetooth-transfer': '',
+ 'blur': '',
+ 'blur-linear': '',
+ 'blur-off': '',
+ 'blur-radial': '',
+ 'bolt': '',
+ 'bomb': '',
+ 'bomb-off': '',
+ 'bone': '',
+ 'bone-off': '履',
+ 'book': '',
+ 'book-account': '',
+ 'book-account-outline': '',
+ 'book-alert': '',
+ 'book-alert-outline': '',
+ 'book-alphabet': '',
+ 'book-arrow-down': '',
+ 'book-arrow-down-outline': '',
+ 'book-arrow-left': '',
+ 'book-arrow-left-outline': '',
+ 'book-arrow-right': '',
+ 'book-arrow-right-outline': '',
+ 'book-arrow-up': '',
+ 'book-arrow-up-outline': '',
+ 'book-cancel': '',
+ 'book-cancel-outline': '',
+ 'book-check': '',
+ 'book-check-outline': '',
+ 'book-clock': '',
+ 'book-clock-outline': '',
+ 'book-cog': '',
+ 'book-cog-outline': '',
+ 'book-cross': '',
+ 'book-edit': '',
+ 'book-edit-outline': '',
+ 'book-education': '',
+ 'book-education-outline': '',
+ 'book-heart': '靖',
+ 'book-heart-outline': '精',
+ 'book-information-variant': '',
+ 'book-lock': '',
+ 'book-lock-open': '',
+ 'book-lock-open-outline': '',
+ 'book-lock-outline': '',
+ 'book-marker': '',
+ 'book-marker-outline': '',
+ 'book-minus': '',
+ 'book-minus-multiple': '',
+ 'book-minus-multiple-outline': '',
+ 'book-minus-outline': '',
+ 'book-multiple': '',
+ 'book-multiple-outline': '',
+ 'book-music': '',
+ 'book-music-outline': '',
+ 'book-off': '',
+ 'book-off-outline': '',
+ 'book-open': '',
+ 'book-open-blank-variant': '',
+ 'book-open-outline': '',
+ 'book-open-page-variant': '',
+ 'book-open-page-variant-outline': '',
+ 'book-open-variant': '',
+ 'book-outline': '',
+ 'book-play': '',
+ 'book-play-outline': '',
+ 'book-plus': '',
+ 'book-plus-multiple': '',
+ 'book-plus-multiple-outline': '',
+ 'book-plus-outline': '',
+ 'book-refresh': '',
+ 'book-refresh-outline': '',
+ 'book-remove': '',
+ 'book-remove-multiple': '',
+ 'book-remove-multiple-outline': '',
+ 'book-remove-outline': '',
+ 'book-search': '',
+ 'book-search-outline': '',
+ 'book-settings': '',
+ 'book-settings-outline': '',
+ 'book-sync': '',
+ 'book-sync-outline': '',
+ 'book-variant': '',
+ 'book-variant-multiple': '',
+ 'bookmark': '',
+ 'bookmark-box-multiple': '參',
+ 'bookmark-box-multiple-outline': '塞',
+ 'bookmark-check': '',
+ 'bookmark-check-outline': '',
+ 'bookmark-minus': '',
+ 'bookmark-minus-outline': '',
+ 'bookmark-multiple': '',
+ 'bookmark-multiple-outline': '',
+ 'bookmark-music': '',
+ 'bookmark-music-outline': '',
+ 'bookmark-off': '',
+ 'bookmark-off-outline': '',
+ 'bookmark-outline': '',
+ 'bookmark-plus': '',
+ 'bookmark-plus-outline': '',
+ 'bookmark-remove': '',
+ 'bookmark-remove-outline': '',
+ 'bookshelf': '',
+ 'boom-gate': '',
+ 'boom-gate-alert': '',
+ 'boom-gate-alert-outline': '',
+ 'boom-gate-arrow-down': '',
+ 'boom-gate-arrow-down-outline': '',
+ 'boom-gate-arrow-up': '',
+ 'boom-gate-arrow-up-outline': '',
+ 'boom-gate-outline': '',
+ 'boom-gate-up': '',
+ 'boom-gate-up-outline': '',
+ 'boombox': '',
+ 'boomerang': '',
+ 'bootstrap': '',
+ 'border-all': '',
+ 'border-all-variant': '',
+ 'border-bottom': '',
+ 'border-bottom-variant': '',
+ 'border-color': '',
+ 'border-horizontal': '',
+ 'border-inside': '',
+ 'border-left': '',
+ 'border-left-variant': '',
+ 'border-none': '',
+ 'border-none-variant': '',
+ 'border-outside': '',
+ 'border-right': '',
+ 'border-right-variant': '',
+ 'border-style': '',
+ 'border-top': '',
+ 'border-top-variant': '',
+ 'border-vertical': '',
+ 'bottle-soda': '',
+ 'bottle-soda-classic': '',
+ 'bottle-soda-classic-outline': '',
+ 'bottle-soda-outline': '',
+ 'bottle-tonic': '',
+ 'bottle-tonic-outline': '',
+ 'bottle-tonic-plus': '',
+ 'bottle-tonic-plus-outline': '',
+ 'bottle-tonic-skull': '',
+ 'bottle-tonic-skull-outline': '',
+ 'bottle-wine': '',
+ 'bottle-wine-outline': '',
+ 'bow-arrow': '',
+ 'bow-tie': '',
+ 'bowl': '',
+ 'bowl-mix': '',
+ 'bowl-mix-outline': '',
+ 'bowl-outline': '',
+ 'bowling': '',
+ 'box': '',
+ 'box-cutter': '',
+ 'box-cutter-off': '',
+ 'box-shadow': '',
+ 'boxing-glove': '',
+ 'braille': '',
+ 'brain': '',
+ 'bread-slice': '',
+ 'bread-slice-outline': '',
+ 'bridge': '',
+ 'briefcase': '',
+ 'briefcase-account': '',
+ 'briefcase-account-outline': '',
+ 'briefcase-arrow-left-right': '戴',
+ 'briefcase-arrow-left-right-outline': '揄',
+ 'briefcase-arrow-up-down': '搜',
+ 'briefcase-arrow-up-down-outline': '摒',
+ 'briefcase-check': '',
+ 'briefcase-check-outline': '',
+ 'briefcase-clock': '',
+ 'briefcase-clock-outline': '',
+ 'briefcase-download': '',
+ 'briefcase-download-outline': '',
+ 'briefcase-edit': '',
+ 'briefcase-edit-outline': '',
+ 'briefcase-eye': '',
+ 'briefcase-eye-outline': '',
+ 'briefcase-minus': '',
+ 'briefcase-minus-outline': '',
+ 'briefcase-off': '',
+ 'briefcase-off-outline': '',
+ 'briefcase-outline': '',
+ 'briefcase-plus': '',
+ 'briefcase-plus-outline': '',
+ 'briefcase-remove': '',
+ 'briefcase-remove-outline': '',
+ 'briefcase-search': '',
+ 'briefcase-search-outline': '',
+ 'briefcase-upload': '',
+ 'briefcase-upload-outline': '',
+ 'briefcase-variant': '',
+ 'briefcase-variant-off': '',
+ 'briefcase-variant-off-outline': '',
+ 'briefcase-variant-outline': '',
+ 'brightness-1': '',
+ 'brightness-2': '',
+ 'brightness-3': '',
+ 'brightness-4': '',
+ 'brightness-5': '',
+ 'brightness-6': '',
+ 'brightness-7': '',
+ 'brightness-auto': '',
+ 'brightness-percent': '',
+ 'broadcast': '',
+ 'broadcast-off': '',
+ 'broom': '',
+ 'brush': '',
+ 'brush-off': '',
+ 'brush-outline': '兀',
+ 'brush-variant': '',
+ 'bucket': '',
+ 'bucket-outline': '',
+ 'buffet': '',
+ 'bug': '',
+ 'bug-check': '',
+ 'bug-check-outline': '',
+ 'bug-outline': '',
+ 'bugle': '',
+ 'bulkhead-light': '郞',
+ 'bulldozer': '',
+ 'bullet': '',
+ 'bulletin-board': '',
+ 'bullhorn': '',
+ 'bullhorn-outline': '',
+ 'bullhorn-variant': '省',
+ 'bullhorn-variant-outline': '葉',
+ 'bullseye': '',
+ 'bullseye-arrow': '',
+ 'bulma': '',
+ 'bunk-bed': '',
+ 'bunk-bed-outline': '',
+ 'bus': '',
+ 'bus-alert': '',
+ 'bus-articulated-end': '',
+ 'bus-articulated-front': '',
+ 'bus-clock': '',
+ 'bus-double-decker': '',
+ 'bus-electric': '卵',
+ 'bus-marker': '',
+ 'bus-multiple': '',
+ 'bus-school': '',
+ 'bus-side': '',
+ 'bus-stop': '',
+ 'bus-stop-covered': '',
+ 'bus-stop-uncovered': '',
+ 'butterfly': '',
+ 'butterfly-outline': '',
+ 'cabin-a-frame': '',
+ 'cable-data': '',
+ 'cached': '',
+ 'cactus': '',
+ 'cake': '',
+ 'cake-layered': '',
+ 'cake-variant': '',
+ 'cake-variant-outline': '',
+ 'calculator': '',
+ 'calculator-variant': '',
+ 'calculator-variant-outline': '',
+ 'calendar': '',
+ 'calendar-account': '',
+ 'calendar-account-outline': '',
+ 'calendar-alert': '',
+ 'calendar-arrow-left': '',
+ 'calendar-arrow-right': '',
+ 'calendar-blank': '',
+ 'calendar-blank-multiple': '',
+ 'calendar-blank-outline': '',
+ 'calendar-check': '',
+ 'calendar-check-outline': '',
+ 'calendar-clock': '',
+ 'calendar-clock-outline': '',
+ 'calendar-collapse-horizontal': '',
+ 'calendar-cursor': '',
+ 'calendar-edit': '',
+ 'calendar-end': '',
+ 'calendar-expand-horizontal': '',
+ 'calendar-export': '',
+ 'calendar-heart': '',
+ 'calendar-import': '',
+ 'calendar-lock': '',
+ 'calendar-lock-outline': '',
+ 'calendar-minus': '',
+ 'calendar-month': '',
+ 'calendar-month-outline': '',
+ 'calendar-multiple': '',
+ 'calendar-multiple-check': '',
+ 'calendar-multiselect': '',
+ 'calendar-outline': '',
+ 'calendar-plus': '',
+ 'calendar-question': '',
+ 'calendar-range': '',
+ 'calendar-range-outline': '',
+ 'calendar-refresh': '',
+ 'calendar-refresh-outline': '',
+ 'calendar-remove': '',
+ 'calendar-remove-outline': '',
+ 'calendar-search': '',
+ 'calendar-star': '',
+ 'calendar-start': '',
+ 'calendar-sync': '',
+ 'calendar-sync-outline': '',
+ 'calendar-text': '',
+ 'calendar-text-outline': '',
+ 'calendar-today': '',
+ 'calendar-today-outline': '隷',
+ 'calendar-week': '',
+ 'calendar-week-begin': '',
+ 'calendar-week-begin-outline': '侮',
+ 'calendar-week-end': '僧',
+ 'calendar-week-end-outline': '免',
+ 'calendar-week-outline': '勉',
+ 'calendar-weekend': '',
+ 'calendar-weekend-outline': '',
+ 'call-made': '',
+ 'call-merge': '',
+ 'call-missed': '',
+ 'call-received': '',
+ 'call-split': '',
+ 'camcorder': '',
+ 'camcorder-off': '',
+ 'camera': '',
+ 'camera-account': '',
+ 'camera-burst': '',
+ 'camera-control': '',
+ 'camera-document': '',
+ 'camera-document-off': '',
+ 'camera-enhance': '',
+ 'camera-enhance-outline': '',
+ 'camera-flip': '',
+ 'camera-flip-outline': '',
+ 'camera-front': '',
+ 'camera-front-variant': '',
+ 'camera-gopro': '',
+ 'camera-image': '',
+ 'camera-iris': '',
+ 'camera-lock': '﨓',
+ 'camera-lock-outline': '﨔',
+ 'camera-marker': '簾',
+ 'camera-marker-outline': '獵',
+ 'camera-metering-center': '',
+ 'camera-metering-matrix': '',
+ 'camera-metering-partial': '',
+ 'camera-metering-spot': '',
+ 'camera-off': '',
+ 'camera-off-outline': '料',
+ 'camera-outline': '',
+ 'camera-party-mode': '',
+ 'camera-plus': '',
+ 'camera-plus-outline': '',
+ 'camera-rear': '',
+ 'camera-rear-variant': '',
+ 'camera-retake': '',
+ 'camera-retake-outline': '',
+ 'camera-switch': '',
+ 'camera-switch-outline': '',
+ 'camera-timer': '',
+ 'camera-wireless': '',
+ 'camera-wireless-outline': '',
+ 'campfire': '',
+ 'cancel': '',
+ 'candelabra': '',
+ 'candelabra-fire': '',
+ 'candle': '',
+ 'candy': '說',
+ 'candy-off': '殺',
+ 'candy-off-outline': '辰',
+ 'candy-outline': '沈',
+ 'candycane': '',
+ 'cannabis': '',
+ 'cannabis-off': '',
+ 'caps-lock': '',
+ 'car': '',
+ 'car-2-plus': '',
+ 'car-3-plus': '',
+ 'car-arrow-left': '',
+ 'car-arrow-right': '',
+ 'car-back': '',
+ 'car-battery': '',
+ 'car-brake-abs': '',
+ 'car-brake-alert': '',
+ 'car-brake-fluid-level': '龜',
+ 'car-brake-hold': '',
+ 'car-brake-low-pressure': '契',
+ 'car-brake-parking': '',
+ 'car-brake-retarder': '',
+ 'car-brake-temperature': '金',
+ 'car-brake-worn-linings': '喇',
+ 'car-child-seat': '',
+ 'car-clock': '拾',
+ 'car-clutch': '',
+ 'car-cog': '',
+ 'car-connected': '',
+ 'car-convertible': '',
+ 'car-coolant-level': '',
+ 'car-cruise-control': '',
+ 'car-defrost-front': '',
+ 'car-defrost-rear': '',
+ 'car-door': '',
+ 'car-door-lock': '',
+ 'car-electric': '',
+ 'car-electric-outline': '',
+ 'car-emergency': '',
+ 'car-esp': '',
+ 'car-estate': '',
+ 'car-hatchback': '',
+ 'car-info': '',
+ 'car-key': '',
+ 'car-lifted-pickup': '',
+ 'car-light-alert': '奈',
+ 'car-light-dimmed': '',
+ 'car-light-fog': '',
+ 'car-light-high': '',
+ 'car-limousine': '',
+ 'car-multiple': '',
+ 'car-off': '',
+ 'car-outline': '',
+ 'car-parking-lights': '',
+ 'car-pickup': '',
+ 'car-seat': '',
+ 'car-seat-cooler': '',
+ 'car-seat-heater': '',
+ 'car-select': '',
+ 'car-settings': '',
+ 'car-shift-pattern': '',
+ 'car-side': '',
+ 'car-speed-limiter': '懶',
+ 'car-sports': '',
+ 'car-tire-alert': '',
+ 'car-traction-control': '',
+ 'car-turbocharger': '',
+ 'car-wash': '',
+ 'car-windshield': '',
+ 'car-windshield-outline': '',
+ 'car-wireless': '',
+ 'car-wrench': '',
+ 'carabiner': '',
+ 'caravan': '',
+ 'card': '',
+ 'card-account-details': '',
+ 'card-account-details-outline': '',
+ 'card-account-details-star': '',
+ 'card-account-details-star-outline': '',
+ 'card-account-mail': '',
+ 'card-account-mail-outline': '',
+ 'card-account-phone': '',
+ 'card-account-phone-outline': '',
+ 'card-bulleted': '',
+ 'card-bulleted-off': '',
+ 'card-bulleted-off-outline': '',
+ 'card-bulleted-outline': '',
+ 'card-bulleted-settings': '',
+ 'card-bulleted-settings-outline': '',
+ 'card-minus': '',
+ 'card-minus-outline': '',
+ 'card-multiple': '',
+ 'card-multiple-outline': '',
+ 'card-off': '',
+ 'card-off-outline': '',
+ 'card-outline': '',
+ 'card-plus': '',
+ 'card-plus-outline': '',
+ 'card-remove': '',
+ 'card-remove-outline': '',
+ 'card-search': '',
+ 'card-search-outline': '',
+ 'card-text': '',
+ 'card-text-outline': '',
+ 'cards': '',
+ 'cards-club': '',
+ 'cards-club-outline': '',
+ 'cards-diamond': '',
+ 'cards-diamond-outline': '',
+ 'cards-heart': '',
+ 'cards-heart-outline': '',
+ 'cards-outline': '',
+ 'cards-playing': '',
+ 'cards-playing-club': '',
+ 'cards-playing-club-multiple': '',
+ 'cards-playing-club-multiple-outline': '',
+ 'cards-playing-club-outline': '',
+ 'cards-playing-diamond': '',
+ 'cards-playing-diamond-multiple': '',
+ 'cards-playing-diamond-multiple-outline': '',
+ 'cards-playing-diamond-outline': '',
+ 'cards-playing-heart': '',
+ 'cards-playing-heart-multiple': '',
+ 'cards-playing-heart-multiple-outline': '',
+ 'cards-playing-heart-outline': '',
+ 'cards-playing-outline': '',
+ 'cards-playing-spade': '',
+ 'cards-playing-spade-multiple': '',
+ 'cards-playing-spade-multiple-outline': '',
+ 'cards-playing-spade-outline': '',
+ 'cards-spade': '',
+ 'cards-spade-outline': '',
+ 'cards-variant': '',
+ 'carrot': '',
+ 'cart': '',
+ 'cart-arrow-down': '',
+ 'cart-arrow-right': '',
+ 'cart-arrow-up': '',
+ 'cart-check': '',
+ 'cart-heart': '',
+ 'cart-minus': '',
+ 'cart-off': '',
+ 'cart-outline': '',
+ 'cart-plus': '',
+ 'cart-remove': '',
+ 'cart-variant': '',
+ 'case-sensitive-alt': '',
+ 'cash': '',
+ 'cash-100': '',
+ 'cash-check': '',
+ 'cash-clock': '敖',
+ 'cash-fast': '',
+ 'cash-lock': '',
+ 'cash-lock-open': '',
+ 'cash-marker': '',
+ 'cash-minus': '',
+ 'cash-multiple': '',
+ 'cash-plus': '',
+ 'cash-refund': '',
+ 'cash-register': '',
+ 'cash-remove': '',
+ 'cash-sync': '晴',
+ 'cassette': '',
+ 'cast': '',
+ 'cast-audio': '',
+ 'cast-audio-variant': '',
+ 'cast-connected': '',
+ 'cast-education': '',
+ 'cast-off': '',
+ 'cast-variant': '',
+ 'castle': '',
+ 'cat': '',
+ 'cctv': '',
+ 'cctv-off': '',
+ 'ceiling-fan': '',
+ 'ceiling-fan-light': '',
+ 'ceiling-light': '',
+ 'ceiling-light-multiple': '',
+ 'ceiling-light-multiple-outline': '',
+ 'ceiling-light-outline': '',
+ 'cellphone': '',
+ 'cellphone-arrow-down': '',
+ 'cellphone-arrow-down-variant': '龍',
+ 'cellphone-basic': '',
+ 'cellphone-charging': '',
+ 'cellphone-check': '',
+ 'cellphone-cog': '',
+ 'cellphone-dock': '',
+ 'cellphone-information': '',
+ 'cellphone-key': '',
+ 'cellphone-link': '',
+ 'cellphone-link-off': '',
+ 'cellphone-lock': '',
+ 'cellphone-marker': '',
+ 'cellphone-message': '',
+ 'cellphone-message-off': '',
+ 'cellphone-nfc': '',
+ 'cellphone-nfc-off': '',
+ 'cellphone-off': '',
+ 'cellphone-play': '',
+ 'cellphone-remove': '',
+ 'cellphone-screenshot': '',
+ 'cellphone-settings': '',
+ 'cellphone-sound': '',
+ 'cellphone-text': '',
+ 'cellphone-wireless': '',
+ 'centos': '',
+ 'certificate': '',
+ 'certificate-outline': '',
+ 'chair-rolling': '',
+ 'chair-school': '',
+ 'chandelier': '',
+ 'charity': '',
+ 'chart-arc': '',
+ 'chart-areaspline': '',
+ 'chart-areaspline-variant': '',
+ 'chart-bar': '',
+ 'chart-bar-stacked': '',
+ 'chart-bell-curve': '',
+ 'chart-bell-curve-cumulative': '',
+ 'chart-box': '',
+ 'chart-box-outline': '',
+ 'chart-box-plus-outline': '',
+ 'chart-bubble': '',
+ 'chart-donut': '',
+ 'chart-donut-variant': '',
+ 'chart-gantt': '',
+ 'chart-histogram': '',
+ 'chart-line': '',
+ 'chart-line-stacked': '',
+ 'chart-line-variant': '',
+ 'chart-multiline': '',
+ 'chart-multiple': '',
+ 'chart-pie': '',
+ 'chart-ppf': '',
+ 'chart-sankey': '',
+ 'chart-sankey-variant': '',
+ 'chart-scatter-plot': '',
+ 'chart-scatter-plot-hexbin': '',
+ 'chart-timeline': '',
+ 'chart-timeline-variant': '',
+ 'chart-timeline-variant-shimmer': '',
+ 'chart-tree': '',
+ 'chart-waterfall': '珞',
+ 'chat': '',
+ 'chat-alert': '',
+ 'chat-alert-outline': '',
+ 'chat-minus': '',
+ 'chat-minus-outline': '',
+ 'chat-outline': '',
+ 'chat-plus': '',
+ 'chat-plus-outline': '',
+ 'chat-processing': '',
+ 'chat-processing-outline': '',
+ 'chat-question': '',
+ 'chat-question-outline': '',
+ 'chat-remove': '',
+ 'chat-remove-outline': '',
+ 'chat-sleep': '',
+ 'chat-sleep-outline': '',
+ 'check': '',
+ 'check-all': '',
+ 'check-bold': '',
+ 'check-circle': '',
+ 'check-circle-outline': '',
+ 'check-decagram': '',
+ 'check-decagram-outline': '',
+ 'check-network': '',
+ 'check-network-outline': '',
+ 'check-outline': '',
+ 'check-underline': '',
+ 'check-underline-circle': '',
+ 'check-underline-circle-outline': '',
+ 'checkbook': '',
+ 'checkbox-blank': '',
+ 'checkbox-blank-badge': '',
+ 'checkbox-blank-badge-outline': '',
+ 'checkbox-blank-circle': '',
+ 'checkbox-blank-circle-outline': '',
+ 'checkbox-blank-off': '',
+ 'checkbox-blank-off-outline': '',
+ 'checkbox-blank-outline': '',
+ 'checkbox-intermediate': '',
+ 'checkbox-marked': '',
+ 'checkbox-marked-circle': '',
+ 'checkbox-marked-circle-outline': '',
+ 'checkbox-marked-circle-plus-outline': '臘',
+ 'checkbox-marked-outline': '',
+ 'checkbox-multiple-blank': '',
+ 'checkbox-multiple-blank-circle': '',
+ 'checkbox-multiple-blank-circle-outline': '',
+ 'checkbox-multiple-blank-outline': '',
+ 'checkbox-multiple-marked': '',
+ 'checkbox-multiple-marked-circle': '',
+ 'checkbox-multiple-marked-circle-outline': '',
+ 'checkbox-multiple-marked-outline': '',
+ 'checkbox-multiple-outline': '',
+ 'checkbox-outline': '',
+ 'checkerboard': '',
+ 'checkerboard-minus': '',
+ 'checkerboard-plus': '',
+ 'checkerboard-remove': '',
+ 'cheese': '',
+ 'cheese-off': '',
+ 'chef-hat': '',
+ 'chemical-weapon': '',
+ 'chess-bishop': '',
+ 'chess-king': '',
+ 'chess-knight': '',
+ 'chess-pawn': '',
+ 'chess-queen': '',
+ 'chess-rook': '',
+ 'chevron-double-down': '',
+ 'chevron-double-left': '',
+ 'chevron-double-right': '',
+ 'chevron-double-up': '',
+ 'chevron-down': '',
+ 'chevron-down-box': '',
+ 'chevron-down-box-outline': '',
+ 'chevron-down-circle': '',
+ 'chevron-down-circle-outline': '',
+ 'chevron-left': '',
+ 'chevron-left-box': '',
+ 'chevron-left-box-outline': '',
+ 'chevron-left-circle': '',
+ 'chevron-left-circle-outline': '',
+ 'chevron-right': '',
+ 'chevron-right-box': '',
+ 'chevron-right-box-outline': '',
+ 'chevron-right-circle': '',
+ 'chevron-right-circle-outline': '',
+ 'chevron-triple-down': '',
+ 'chevron-triple-left': '',
+ 'chevron-triple-right': '',
+ 'chevron-triple-up': '',
+ 'chevron-up': '',
+ 'chevron-up-box': '',
+ 'chevron-up-box-outline': '',
+ 'chevron-up-circle': '',
+ 'chevron-up-circle-outline': '',
+ 'chili-alert': '',
+ 'chili-alert-outline': '',
+ 'chili-hot': '',
+ 'chili-hot-outline': '',
+ 'chili-medium': '',
+ 'chili-medium-outline': '',
+ 'chili-mild': '',
+ 'chili-mild-outline': '',
+ 'chili-off': '',
+ 'chili-off-outline': '',
+ 'chip': '',
+ 'church': '',
+ 'cigar': '',
+ 'cigar-off': '',
+ 'circle': '',
+ 'circle-box': '',
+ 'circle-box-outline': '',
+ 'circle-double': '',
+ 'circle-edit-outline': '',
+ 'circle-expand': '',
+ 'circle-half': '',
+ 'circle-half-full': '',
+ 'circle-medium': '',
+ 'circle-multiple': '',
+ 'circle-multiple-outline': '',
+ 'circle-off-outline': '',
+ 'circle-opacity': '',
+ 'circle-outline': '',
+ 'circle-slice-1': '',
+ 'circle-slice-2': '',
+ 'circle-slice-3': '',
+ 'circle-slice-4': '',
+ 'circle-slice-5': '',
+ 'circle-slice-6': '',
+ 'circle-slice-7': '',
+ 'circle-slice-8': '',
+ 'circle-small': '',
+ 'circular-saw': '',
+ 'city': '',
+ 'city-variant': '',
+ 'city-variant-outline': '',
+ 'clipboard': '',
+ 'clipboard-account': '',
+ 'clipboard-account-outline': '',
+ 'clipboard-alert': '',
+ 'clipboard-alert-outline': '',
+ 'clipboard-arrow-down': '',
+ 'clipboard-arrow-down-outline': '',
+ 'clipboard-arrow-left': '',
+ 'clipboard-arrow-left-outline': '',
+ 'clipboard-arrow-right': '',
+ 'clipboard-arrow-right-outline': '',
+ 'clipboard-arrow-up': '',
+ 'clipboard-arrow-up-outline': '',
+ 'clipboard-check': '',
+ 'clipboard-check-multiple': '',
+ 'clipboard-check-multiple-outline': '',
+ 'clipboard-check-outline': '',
+ 'clipboard-clock': '',
+ 'clipboard-clock-outline': '',
+ 'clipboard-edit': '',
+ 'clipboard-edit-outline': '',
+ 'clipboard-file': '',
+ 'clipboard-file-outline': '',
+ 'clipboard-flow': '',
+ 'clipboard-flow-outline': '',
+ 'clipboard-list': '',
+ 'clipboard-list-outline': '',
+ 'clipboard-minus': '',
+ 'clipboard-minus-outline': '',
+ 'clipboard-multiple': '',
+ 'clipboard-multiple-outline': '',
+ 'clipboard-off': '',
+ 'clipboard-off-outline': '',
+ 'clipboard-outline': '',
+ 'clipboard-play': '',
+ 'clipboard-play-multiple': '',
+ 'clipboard-play-multiple-outline': '',
+ 'clipboard-play-outline': '',
+ 'clipboard-plus': '',
+ 'clipboard-plus-outline': '',
+ 'clipboard-pulse': '',
+ 'clipboard-pulse-outline': '',
+ 'clipboard-remove': '',
+ 'clipboard-remove-outline': '',
+ 'clipboard-search': '',
+ 'clipboard-search-outline': '',
+ 'clipboard-text': '',
+ 'clipboard-text-clock': '',
+ 'clipboard-text-clock-outline': '',
+ 'clipboard-text-multiple': '',
+ 'clipboard-text-multiple-outline': '',
+ 'clipboard-text-off': '',
+ 'clipboard-text-off-outline': '',
+ 'clipboard-text-outline': '',
+ 'clipboard-text-play': '',
+ 'clipboard-text-play-outline': '',
+ 'clipboard-text-search': '',
+ 'clipboard-text-search-outline': '',
+ 'clippy': '',
+ 'clock': '',
+ 'clock-alert': '',
+ 'clock-alert-outline': '',
+ 'clock-check': '',
+ 'clock-check-outline': '',
+ 'clock-digital': '',
+ 'clock-edit': '惡',
+ 'clock-edit-outline': '了',
+ 'clock-end': '',
+ 'clock-fast': '',
+ 'clock-in': '',
+ 'clock-minus': '',
+ 'clock-minus-outline': '',
+ 'clock-out': '',
+ 'clock-outline': '',
+ 'clock-plus': '',
+ 'clock-plus-outline': '',
+ 'clock-remove': '',
+ 'clock-remove-outline': '',
+ 'clock-start': '',
+ 'clock-time-eight': '',
+ 'clock-time-eight-outline': '',
+ 'clock-time-eleven': '',
+ 'clock-time-eleven-outline': '',
+ 'clock-time-five': '',
+ 'clock-time-five-outline': '',
+ 'clock-time-four': '',
+ 'clock-time-four-outline': '',
+ 'clock-time-nine': '',
+ 'clock-time-nine-outline': '',
+ 'clock-time-one': '',
+ 'clock-time-one-outline': '',
+ 'clock-time-seven': '',
+ 'clock-time-seven-outline': '',
+ 'clock-time-six': '',
+ 'clock-time-six-outline': '',
+ 'clock-time-ten': '',
+ 'clock-time-ten-outline': '',
+ 'clock-time-three': '',
+ 'clock-time-three-outline': '',
+ 'clock-time-twelve': '',
+ 'clock-time-twelve-outline': '',
+ 'clock-time-two': '',
+ 'clock-time-two-outline': '',
+ 'close': '',
+ 'close-box': '',
+ 'close-box-multiple': '',
+ 'close-box-multiple-outline': '',
+ 'close-box-outline': '',
+ 'close-circle': '',
+ 'close-circle-multiple': '',
+ 'close-circle-multiple-outline': '',
+ 'close-circle-outline': '',
+ 'close-network': '',
+ 'close-network-outline': '',
+ 'close-octagon': '',
+ 'close-octagon-outline': '',
+ 'close-outline': '',
+ 'close-thick': '',
+ 'closed-caption': '',
+ 'closed-caption-outline': '',
+ 'cloud': '',
+ 'cloud-alert': '',
+ 'cloud-braces': '',
+ 'cloud-check': '',
+ 'cloud-check-outline': '',
+ 'cloud-circle': '',
+ 'cloud-download': '',
+ 'cloud-download-outline': '',
+ 'cloud-lock': '',
+ 'cloud-lock-outline': '',
+ 'cloud-off-outline': '',
+ 'cloud-outline': '',
+ 'cloud-percent': '勤',
+ 'cloud-percent-outline': '卑',
+ 'cloud-print': '',
+ 'cloud-print-outline': '',
+ 'cloud-question': '',
+ 'cloud-refresh': '',
+ 'cloud-search': '',
+ 'cloud-search-outline': '',
+ 'cloud-sync': '',
+ 'cloud-sync-outline': '',
+ 'cloud-tags': '',
+ 'cloud-upload': '',
+ 'cloud-upload-outline': '',
+ 'clover': '',
+ 'coach-lamp': '',
+ 'coach-lamp-variant': '喝',
+ 'coat-rack': '',
+ 'code-array': '',
+ 'code-braces': '',
+ 'code-braces-box': '',
+ 'code-brackets': '',
+ 'code-equal': '',
+ 'code-greater-than': '',
+ 'code-greater-than-or-equal': '',
+ 'code-json': '',
+ 'code-less-than': '',
+ 'code-less-than-or-equal': '',
+ 'code-not-equal': '',
+ 'code-not-equal-variant': '',
+ 'code-parentheses': '',
+ 'code-parentheses-box': '',
+ 'code-string': '',
+ 'code-tags': '',
+ 'code-tags-check': '',
+ 'codepen': '',
+ 'coffee': '',
+ 'coffee-maker': '',
+ 'coffee-maker-check': '擄',
+ 'coffee-maker-check-outline': '櫓',
+ 'coffee-maker-outline': '',
+ 'coffee-off': '',
+ 'coffee-off-outline': '',
+ 'coffee-outline': '',
+ 'coffee-to-go': '',
+ 'coffee-to-go-outline': '',
+ 'coffin': '',
+ 'cog': '',
+ 'cog-box': '',
+ 'cog-clockwise': '',
+ 'cog-counterclockwise': '',
+ 'cog-off': '',
+ 'cog-off-outline': '',
+ 'cog-outline': '',
+ 'cog-pause': '爐',
+ 'cog-pause-outline': '盧',
+ 'cog-play': '老',
+ 'cog-play-outline': '蘆',
+ 'cog-refresh': '',
+ 'cog-refresh-outline': '',
+ 'cog-stop': '虜',
+ 'cog-stop-outline': '路',
+ 'cog-sync': '',
+ 'cog-sync-outline': '',
+ 'cog-transfer': '',
+ 'cog-transfer-outline': '',
+ 'cogs': '',
+ 'collage': '',
+ 'collapse-all': '',
+ 'collapse-all-outline': '',
+ 'color-helper': '',
+ 'comma': '',
+ 'comma-box': '',
+ 'comma-box-outline': '',
+ 'comma-circle': '',
+ 'comma-circle-outline': '',
+ 'comment': '',
+ 'comment-account': '',
+ 'comment-account-outline': '',
+ 'comment-alert': '',
+ 'comment-alert-outline': '',
+ 'comment-arrow-left': '',
+ 'comment-arrow-left-outline': '',
+ 'comment-arrow-right': '',
+ 'comment-arrow-right-outline': '',
+ 'comment-bookmark': '',
+ 'comment-bookmark-outline': '',
+ 'comment-check': '',
+ 'comment-check-outline': '',
+ 'comment-edit': '',
+ 'comment-edit-outline': '',
+ 'comment-eye': '',
+ 'comment-eye-outline': '',
+ 'comment-flash': '',
+ 'comment-flash-outline': '',
+ 'comment-minus': '',
+ 'comment-minus-outline': '',
+ 'comment-multiple': '',
+ 'comment-multiple-outline': '',
+ 'comment-off': '',
+ 'comment-off-outline': '',
+ 'comment-outline': '',
+ 'comment-plus': '',
+ 'comment-plus-outline': '',
+ 'comment-processing': '',
+ 'comment-processing-outline': '',
+ 'comment-question': '',
+ 'comment-question-outline': '',
+ 'comment-quote': '',
+ 'comment-quote-outline': '',
+ 'comment-remove': '',
+ 'comment-remove-outline': '',
+ 'comment-search': '',
+ 'comment-search-outline': '',
+ 'comment-text': '',
+ 'comment-text-multiple': '',
+ 'comment-text-multiple-outline': '',
+ 'comment-text-outline': '',
+ 'compare': '',
+ 'compare-horizontal': '',
+ 'compare-remove': '',
+ 'compare-vertical': '',
+ 'compass': '',
+ 'compass-off': '',
+ 'compass-off-outline': '',
+ 'compass-outline': '',
+ 'compass-rose': '',
+ 'compost': '嘆',
+ 'cone': '屢',
+ 'cone-off': '樓',
+ 'connection': '',
+ 'console': '',
+ 'console-line': '',
+ 'console-network': '',
+ 'console-network-outline': '',
+ 'consolidate': '',
+ 'contactless-payment': '',
+ 'contactless-payment-circle': '',
+ 'contactless-payment-circle-outline': '',
+ 'contacts': '',
+ 'contacts-outline': '',
+ 'contain': '',
+ 'contain-end': '',
+ 'contain-start': '',
+ 'content-copy': '',
+ 'content-cut': '',
+ 'content-duplicate': '',
+ 'content-paste': '',
+ 'content-save': '',
+ 'content-save-alert': '',
+ 'content-save-alert-outline': '',
+ 'content-save-all': '',
+ 'content-save-all-outline': '',
+ 'content-save-check': '',
+ 'content-save-check-outline': '',
+ 'content-save-cog': '',
+ 'content-save-cog-outline': '',
+ 'content-save-edit': '',
+ 'content-save-edit-outline': '',
+ 'content-save-move': '',
+ 'content-save-move-outline': '',
+ 'content-save-off': '',
+ 'content-save-off-outline': '',
+ 'content-save-outline': '',
+ 'content-save-settings': '',
+ 'content-save-settings-outline': '',
+ 'contrast': '',
+ 'contrast-box': '',
+ 'contrast-circle': '',
+ 'controller-classic': '',
+ 'controller-classic-outline': '',
+ 'cookie': '',
+ 'cookie-alert': '',
+ 'cookie-alert-outline': '',
+ 'cookie-check': '',
+ 'cookie-check-outline': '',
+ 'cookie-clock': '',
+ 'cookie-clock-outline': '',
+ 'cookie-cog': '',
+ 'cookie-cog-outline': '',
+ 'cookie-edit': '',
+ 'cookie-edit-outline': '',
+ 'cookie-lock': '',
+ 'cookie-lock-outline': '',
+ 'cookie-minus': '',
+ 'cookie-minus-outline': '',
+ 'cookie-off': '',
+ 'cookie-off-outline': '',
+ 'cookie-outline': '',
+ 'cookie-plus': '',
+ 'cookie-plus-outline': '',
+ 'cookie-refresh': '',
+ 'cookie-refresh-outline': '',
+ 'cookie-remove': '',
+ 'cookie-remove-outline': '',
+ 'cookie-settings': '',
+ 'cookie-settings-outline': '',
+ 'coolant-temperature': '',
+ 'copyleft': '露',
+ 'copyright': '',
+ 'cordova': '',
+ 'corn': '',
+ 'corn-off': '',
+ 'cosine-wave': '',
+ 'counter': '',
+ 'countertop': '',
+ 'countertop-outline': '',
+ 'cow': '',
+ 'cow-off': '',
+ 'cpu-32-bit': '',
+ 'cpu-64-bit': '',
+ 'cradle': '力',
+ 'cradle-outline': '戀',
+ 'crane': '',
+ 'creation': '',
+ 'creative-commons': '',
+ 'credit-card': '',
+ 'credit-card-check': '',
+ 'credit-card-check-outline': '',
+ 'credit-card-chip': '癩',
+ 'credit-card-chip-outline': '羅',
+ 'credit-card-clock': '',
+ 'credit-card-clock-outline': '',
+ 'credit-card-edit': '',
+ 'credit-card-edit-outline': '',
+ 'credit-card-fast': '蘿',
+ 'credit-card-fast-outline': '螺',
+ 'credit-card-lock': '',
+ 'credit-card-lock-outline': '',
+ 'credit-card-marker': '',
+ 'credit-card-marker-outline': '',
+ 'credit-card-minus': '',
+ 'credit-card-minus-outline': '',
+ 'credit-card-multiple': '',
+ 'credit-card-multiple-outline': '',
+ 'credit-card-off': '',
+ 'credit-card-off-outline': '',
+ 'credit-card-outline': '',
+ 'credit-card-plus': '',
+ 'credit-card-plus-outline': '',
+ 'credit-card-refresh': '',
+ 'credit-card-refresh-outline': '',
+ 'credit-card-refund': '',
+ 'credit-card-refund-outline': '',
+ 'credit-card-remove': '',
+ 'credit-card-remove-outline': '',
+ 'credit-card-scan': '',
+ 'credit-card-scan-outline': '',
+ 'credit-card-search': '',
+ 'credit-card-search-outline': '',
+ 'credit-card-settings': '',
+ 'credit-card-settings-outline': '',
+ 'credit-card-sync': '',
+ 'credit-card-sync-outline': '',
+ 'credit-card-wireless': '',
+ 'credit-card-wireless-off': '',
+ 'credit-card-wireless-off-outline': '',
+ 'credit-card-wireless-outline': '',
+ 'cricket': '',
+ 'crop': '',
+ 'crop-free': '',
+ 'crop-landscape': '',
+ 'crop-portrait': '',
+ 'crop-rotate': '',
+ 'crop-square': '',
+ 'cross': '',
+ 'cross-bolnisi': '',
+ 'cross-celtic': '',
+ 'cross-outline': '',
+ 'crosshairs': '',
+ 'crosshairs-gps': '',
+ 'crosshairs-off': '',
+ 'crosshairs-question': '',
+ 'crowd': '若',
+ 'crown': '',
+ 'crown-circle': '',
+ 'crown-circle-outline': '',
+ 'crown-outline': '',
+ 'cryengine': '',
+ 'crystal-ball': '',
+ 'cube': '',
+ 'cube-off': '',
+ 'cube-off-outline': '',
+ 'cube-outline': '',
+ 'cube-scan': '',
+ 'cube-send': '',
+ 'cube-unfolded': '',
+ 'cup': '',
+ 'cup-off': '',
+ 'cup-off-outline': '',
+ 'cup-outline': '',
+ 'cup-water': '',
+ 'cupboard': '',
+ 'cupboard-outline': '',
+ 'cupcake': '',
+ 'curling': '',
+ 'currency-bdt': '',
+ 'currency-brl': '',
+ 'currency-btc': '',
+ 'currency-cny': '',
+ 'currency-eth': '',
+ 'currency-eur': '',
+ 'currency-eur-off': '',
+ 'currency-fra': '器',
+ 'currency-gbp': '',
+ 'currency-ils': '',
+ 'currency-inr': '',
+ 'currency-jpy': '',
+ 'currency-krw': '',
+ 'currency-kzt': '',
+ 'currency-mnt': '',
+ 'currency-ngn': '',
+ 'currency-php': '',
+ 'currency-rial': '',
+ 'currency-rub': '',
+ 'currency-rupee': '掠',
+ 'currency-sign': '',
+ 'currency-try': '',
+ 'currency-twd': '',
+ 'currency-usd': '',
+ 'currency-usd-off': '',
+ 'current-ac': '',
+ 'current-dc': '',
+ 'cursor-default': '',
+ 'cursor-default-click': '',
+ 'cursor-default-click-outline': '',
+ 'cursor-default-gesture': '',
+ 'cursor-default-gesture-outline': '',
+ 'cursor-default-outline': '',
+ 'cursor-move': '',
+ 'cursor-pointer': '',
+ 'cursor-text': '',
+ 'curtains': '',
+ 'curtains-closed': '',
+ 'cylinder': '淚',
+ 'cylinder-off': '漏',
+ 'dance-ballroom': '',
+ 'dance-pole': '',
+ 'data-matrix': '',
+ 'data-matrix-edit': '',
+ 'data-matrix-minus': '',
+ 'data-matrix-plus': '',
+ 'data-matrix-remove': '',
+ 'data-matrix-scan': '',
+ 'database': '',
+ 'database-alert': '',
+ 'database-alert-outline': '',
+ 'database-arrow-down': '',
+ 'database-arrow-down-outline': '',
+ 'database-arrow-left': '',
+ 'database-arrow-left-outline': '',
+ 'database-arrow-right': '',
+ 'database-arrow-right-outline': '',
+ 'database-arrow-up': '',
+ 'database-arrow-up-outline': '',
+ 'database-check': '',
+ 'database-check-outline': '',
+ 'database-clock': '',
+ 'database-clock-outline': '',
+ 'database-cog': '',
+ 'database-cog-outline': '',
+ 'database-edit': '',
+ 'database-edit-outline': '',
+ 'database-export': '',
+ 'database-export-outline': '',
+ 'database-eye': '爛',
+ 'database-eye-off': '蘭',
+ 'database-eye-off-outline': '鸞',
+ 'database-eye-outline': '嵐',
+ 'database-import': '',
+ 'database-import-outline': '',
+ 'database-lock': '',
+ 'database-lock-outline': '',
+ 'database-marker': '',
+ 'database-marker-outline': '',
+ 'database-minus': '',
+ 'database-minus-outline': '',
+ 'database-off': '',
+ 'database-off-outline': '',
+ 'database-outline': '',
+ 'database-plus': '',
+ 'database-plus-outline': '',
+ 'database-refresh': '',
+ 'database-refresh-outline': '',
+ 'database-remove': '',
+ 'database-remove-outline': '',
+ 'database-search': '',
+ 'database-search-outline': '',
+ 'database-settings': '',
+ 'database-settings-outline': '',
+ 'database-sync': '',
+ 'database-sync-outline': '',
+ 'death-star': '',
+ 'death-star-variant': '',
+ 'deathly-hallows': '',
+ 'debian': '',
+ 'debug-step-into': '',
+ 'debug-step-out': '',
+ 'debug-step-over': '',
+ 'decagram': '',
+ 'decagram-outline': '',
+ 'decimal': '',
+ 'decimal-comma': '',
+ 'decimal-comma-decrease': '',
+ 'decimal-comma-increase': '',
+ 'decimal-decrease': '',
+ 'decimal-increase': '',
+ 'delete': '',
+ 'delete-alert': '',
+ 'delete-alert-outline': '',
+ 'delete-circle': '',
+ 'delete-circle-outline': '',
+ 'delete-clock': '',
+ 'delete-clock-outline': '',
+ 'delete-empty': '',
+ 'delete-empty-outline': '',
+ 'delete-forever': '',
+ 'delete-forever-outline': '',
+ 'delete-off': '',
+ 'delete-off-outline': '',
+ 'delete-outline': '',
+ 'delete-restore': '',
+ 'delete-sweep': '',
+ 'delete-sweep-outline': '',
+ 'delete-variant': '',
+ 'delta': '',
+ 'desk': '',
+ 'desk-lamp': '',
+ 'deskphone': '',
+ 'desktop-classic': '',
+ 'desktop-mac': '',
+ 'desktop-mac-dashboard': '',
+ 'desktop-tower': '',
+ 'desktop-tower-monitor': '',
+ 'details': '',
+ 'dev-to': '',
+ 'developer-board': '',
+ 'deviantart': '',
+ 'devices': '',
+ 'dharmachakra': '',
+ 'diabetes': '',
+ 'dialpad': '',
+ 'diameter': '',
+ 'diameter-outline': '',
+ 'diameter-variant': '',
+ 'diamond': '',
+ 'diamond-outline': '',
+ 'diamond-stone': '',
+ 'dice-1': '',
+ 'dice-1-outline': '',
+ 'dice-2': '',
+ 'dice-2-outline': '',
+ 'dice-3': '',
+ 'dice-3-outline': '',
+ 'dice-4': '',
+ 'dice-4-outline': '',
+ 'dice-5': '',
+ 'dice-5-outline': '',
+ 'dice-6': '',
+ 'dice-6-outline': '',
+ 'dice-d10': '',
+ 'dice-d10-outline': '',
+ 'dice-d12': '',
+ 'dice-d12-outline': '',
+ 'dice-d20': '',
+ 'dice-d20-outline': '',
+ 'dice-d4': '',
+ 'dice-d4-outline': '',
+ 'dice-d6': '',
+ 'dice-d6-outline': '',
+ 'dice-d8': '',
+ 'dice-d8-outline': '',
+ 'dice-multiple': '',
+ 'dice-multiple-outline': '',
+ 'digital-ocean': '',
+ 'dip-switch': '',
+ 'directions': '',
+ 'directions-fork': '',
+ 'disc': '',
+ 'disc-alert': '',
+ 'disc-player': '',
+ 'discord': '',
+ 'dishwasher': '',
+ 'dishwasher-alert': '',
+ 'dishwasher-off': '',
+ 'disqus': '',
+ 'distribute-horizontal-center': '',
+ 'distribute-horizontal-left': '',
+ 'distribute-horizontal-right': '',
+ 'distribute-vertical-bottom': '',
+ 'distribute-vertical-center': '',
+ 'distribute-vertical-top': '',
+ 'diversify': '',
+ 'diving': '略',
+ 'diving-flippers': '',
+ 'diving-helmet': '',
+ 'diving-scuba': '',
+ 'diving-scuba-flag': '',
+ 'diving-scuba-tank': '',
+ 'diving-scuba-tank-multiple': '',
+ 'diving-snorkel': '',
+ 'division': '',
+ 'division-box': '',
+ 'dlna': '',
+ 'dna': '',
+ 'dns': '',
+ 'dns-outline': '',
+ 'dock-bottom': '',
+ 'dock-left': '',
+ 'dock-right': '',
+ 'dock-top': '',
+ 'dock-window': '',
+ 'docker': '',
+ 'doctor': '',
+ 'dog': '',
+ 'dog-service': '',
+ 'dog-side': '',
+ 'dog-side-off': '',
+ 'dolby': '',
+ 'dolly': '',
+ 'dolphin': '',
+ 'domain': '',
+ 'domain-off': '',
+ 'domain-plus': '',
+ 'domain-remove': '',
+ 'dome-light': '',
+ 'domino-mask': '',
+ 'donkey': '',
+ 'door': '',
+ 'door-closed': '',
+ 'door-closed-lock': '',
+ 'door-open': '',
+ 'door-sliding': '',
+ 'door-sliding-lock': '',
+ 'door-sliding-open': '',
+ 'doorbell': '',
+ 'doorbell-video': '',
+ 'dot-net': '',
+ 'dots-circle': '亮',
+ 'dots-grid': '',
+ 'dots-hexagon': '',
+ 'dots-horizontal': '',
+ 'dots-horizontal-circle': '',
+ 'dots-horizontal-circle-outline': '',
+ 'dots-square': '',
+ 'dots-triangle': '',
+ 'dots-vertical': '',
+ 'dots-vertical-circle': '',
+ 'dots-vertical-circle-outline': '',
+ 'download': '',
+ 'download-box': '',
+ 'download-box-outline': '',
+ 'download-circle': '',
+ 'download-circle-outline': '',
+ 'download-lock': '',
+ 'download-lock-outline': '',
+ 'download-multiple': '',
+ 'download-network': '',
+ 'download-network-outline': '',
+ 'download-off': '',
+ 'download-off-outline': '',
+ 'download-outline': '',
+ 'drag': '',
+ 'drag-horizontal': '',
+ 'drag-horizontal-variant': '',
+ 'drag-variant': '',
+ 'drag-vertical': '',
+ 'drag-vertical-variant': '',
+ 'drama-masks': '',
+ 'draw': '',
+ 'draw-pen': '隸',
+ 'drawing': '',
+ 'drawing-box': '',
+ 'dresser': '',
+ 'dresser-outline': '',
+ 'drone': '',
+ 'dropbox': '',
+ 'drupal': '',
+ 'duck': '',
+ 'dumbbell': '',
+ 'dump-truck': '',
+ 'ear-hearing': '',
+ 'ear-hearing-loop': '',
+ 'ear-hearing-off': '',
+ 'earbuds': '',
+ 'earbuds-off': '',
+ 'earbuds-off-outline': '',
+ 'earbuds-outline': '',
+ 'earth': '',
+ 'earth-arrow-right': '',
+ 'earth-box': '',
+ 'earth-box-minus': '',
+ 'earth-box-off': '',
+ 'earth-box-plus': '',
+ 'earth-box-remove': '',
+ 'earth-minus': '',
+ 'earth-off': '',
+ 'earth-plus': '',
+ 'earth-remove': '',
+ 'egg': '',
+ 'egg-easter': '',
+ 'egg-fried': '',
+ 'egg-off': '',
+ 'egg-off-outline': '',
+ 'egg-outline': '',
+ 'eiffel-tower': '',
+ 'eight-track': '',
+ 'eject': '',
+ 'eject-outline': '',
+ 'electric-switch': '',
+ 'electric-switch-closed': '',
+ 'electron-framework': '',
+ 'elephant': '',
+ 'elevation-decline': '',
+ 'elevation-rise': '',
+ 'elevator': '',
+ 'elevator-down': '',
+ 'elevator-passenger': '',
+ 'elevator-passenger-off': '兩',
+ 'elevator-passenger-off-outline': '凉',
+ 'elevator-passenger-outline': '梁',
+ 'elevator-up': '',
+ 'ellipse': '',
+ 'ellipse-outline': '',
+ 'email': '',
+ 'email-alert': '',
+ 'email-alert-outline': '',
+ 'email-box': '',
+ 'email-check': '',
+ 'email-check-outline': '',
+ 'email-edit': '',
+ 'email-edit-outline': '',
+ 'email-fast': '',
+ 'email-fast-outline': '',
+ 'email-lock': '',
+ 'email-mark-as-unread': '',
+ 'email-minus': '',
+ 'email-minus-outline': '',
+ 'email-multiple': '',
+ 'email-multiple-outline': '',
+ 'email-newsletter': '',
+ 'email-off': '',
+ 'email-off-outline': '',
+ 'email-open': '',
+ 'email-open-multiple': '',
+ 'email-open-multiple-outline': '',
+ 'email-open-outline': '',
+ 'email-outline': '',
+ 'email-plus': '',
+ 'email-plus-outline': '',
+ 'email-receive': '',
+ 'email-receive-outline': '',
+ 'email-remove': '',
+ 'email-remove-outline': '',
+ 'email-seal': '讀',
+ 'email-seal-outline': '拏',
+ 'email-search': '',
+ 'email-search-outline': '',
+ 'email-send': '',
+ 'email-send-outline': '',
+ 'email-sync': '',
+ 'email-sync-outline': '',
+ 'email-variant': '',
+ 'ember': '',
+ 'emby': '',
+ 'emoticon': '',
+ 'emoticon-angry': '',
+ 'emoticon-angry-outline': '',
+ 'emoticon-confused': '',
+ 'emoticon-confused-outline': '',
+ 'emoticon-cool': '',
+ 'emoticon-cool-outline': '',
+ 'emoticon-cry': '',
+ 'emoticon-cry-outline': '',
+ 'emoticon-dead': '',
+ 'emoticon-dead-outline': '',
+ 'emoticon-devil': '',
+ 'emoticon-devil-outline': '',
+ 'emoticon-excited': '',
+ 'emoticon-excited-outline': '',
+ 'emoticon-frown': '',
+ 'emoticon-frown-outline': '',
+ 'emoticon-happy': '',
+ 'emoticon-happy-outline': '',
+ 'emoticon-kiss': '',
+ 'emoticon-kiss-outline': '',
+ 'emoticon-lol': '',
+ 'emoticon-lol-outline': '',
+ 'emoticon-neutral': '',
+ 'emoticon-neutral-outline': '',
+ 'emoticon-outline': '',
+ 'emoticon-poop': '',
+ 'emoticon-poop-outline': '',
+ 'emoticon-sad': '',
+ 'emoticon-sad-outline': '',
+ 'emoticon-sick': '',
+ 'emoticon-sick-outline': '',
+ 'emoticon-tongue': '',
+ 'emoticon-tongue-outline': '',
+ 'emoticon-wink': '',
+ 'emoticon-wink-outline': '',
+ 'engine': '',
+ 'engine-off': '',
+ 'engine-off-outline': '',
+ 'engine-outline': '',
+ 'epsilon': '',
+ 'equal': '',
+ 'equal-box': '',
+ 'equalizer': '',
+ 'equalizer-outline': '',
+ 'eraser': '',
+ 'eraser-variant': '',
+ 'escalator': '',
+ 'escalator-box': '',
+ 'escalator-down': '',
+ 'escalator-up': '',
+ 'eslint': '',
+ 'et': '',
+ 'ethereum': '',
+ 'ethernet': '',
+ 'ethernet-cable': '',
+ 'ethernet-cable-off': '',
+ 'ev-plug-ccs1': '',
+ 'ev-plug-ccs2': '',
+ 'ev-plug-chademo': '',
+ 'ev-plug-tesla': '',
+ 'ev-plug-type1': '',
+ 'ev-plug-type2': '',
+ 'ev-station': '',
+ 'evernote': '',
+ 'excavator': '',
+ 'exclamation': '',
+ 'exclamation-thick': '',
+ 'exit-run': '',
+ 'exit-to-app': '',
+ 'expand-all': '',
+ 'expand-all-outline': '',
+ 'expansion-card': '',
+ 'expansion-card-variant': '',
+ 'exponent': '',
+ 'exponent-box': '',
+ 'export': '',
+ 'export-variant': '',
+ 'eye': '',
+ 'eye-arrow-left': '',
+ 'eye-arrow-left-outline': '',
+ 'eye-arrow-right': '',
+ 'eye-arrow-right-outline': '',
+ 'eye-check': '',
+ 'eye-check-outline': '',
+ 'eye-circle': '',
+ 'eye-circle-outline': '',
+ 'eye-minus': '',
+ 'eye-minus-outline': '',
+ 'eye-off': '',
+ 'eye-off-outline': '',
+ 'eye-outline': '',
+ 'eye-plus': '',
+ 'eye-plus-outline': '',
+ 'eye-refresh': '糧',
+ 'eye-refresh-outline': '良',
+ 'eye-remove': '',
+ 'eye-remove-outline': '',
+ 'eye-settings': '',
+ 'eye-settings-outline': '',
+ 'eyedropper': '',
+ 'eyedropper-minus': '',
+ 'eyedropper-off': '',
+ 'eyedropper-plus': '',
+ 'eyedropper-remove': '',
+ 'eyedropper-variant': '',
+ 'face-agent': '',
+ 'face-man': '',
+ 'face-man-outline': '',
+ 'face-man-profile': '',
+ 'face-man-shimmer': '',
+ 'face-man-shimmer-outline': '',
+ 'face-mask': '',
+ 'face-mask-outline': '',
+ 'face-recognition': '',
+ 'face-woman': '',
+ 'face-woman-outline': '',
+ 'face-woman-profile': '',
+ 'face-woman-shimmer': '',
+ 'face-woman-shimmer-outline': '',
+ 'facebook': '',
+ 'facebook-gaming': '',
+ 'facebook-messenger': '',
+ 'facebook-workplace': '',
+ 'factory': '',
+ 'family-tree': '',
+ 'fan': '',
+ 'fan-alert': '',
+ 'fan-auto': '',
+ 'fan-chevron-down': '',
+ 'fan-chevron-up': '',
+ 'fan-clock': '塀',
+ 'fan-minus': '',
+ 'fan-off': '',
+ 'fan-plus': '',
+ 'fan-remove': '',
+ 'fan-speed-1': '',
+ 'fan-speed-2': '',
+ 'fan-speed-3': '',
+ 'fast-forward': '',
+ 'fast-forward-10': '',
+ 'fast-forward-15': '魯',
+ 'fast-forward-30': '',
+ 'fast-forward-5': '',
+ 'fast-forward-60': '',
+ 'fast-forward-outline': '',
+ 'fax': '',
+ 'feather': '',
+ 'feature-search': '',
+ 'feature-search-outline': '',
+ 'fedora': '',
+ 'fence': '',
+ 'fence-electric': '',
+ 'fencing': '',
+ 'ferris-wheel': '',
+ 'ferry': '',
+ 'file': '',
+ 'file-account': '',
+ 'file-account-outline': '',
+ 'file-alert': '',
+ 'file-alert-outline': '',
+ 'file-arrow-left-right': '朗',
+ 'file-arrow-left-right-outline': '望',
+ 'file-arrow-up-down': '杖',
+ 'file-arrow-up-down-outline': '歹',
+ 'file-cabinet': '',
+ 'file-cad': '',
+ 'file-cad-box': '',
+ 'file-cancel': '',
+ 'file-cancel-outline': '',
+ 'file-certificate': '',
+ 'file-certificate-outline': '',
+ 'file-chart': '',
+ 'file-chart-check': '暈',
+ 'file-chart-check-outline': '阮',
+ 'file-chart-outline': '',
+ 'file-check': '',
+ 'file-check-outline': '',
+ 'file-clock': '',
+ 'file-clock-outline': '',
+ 'file-cloud': '',
+ 'file-cloud-outline': '',
+ 'file-code': '',
+ 'file-code-outline': '',
+ 'file-cog': '',
+ 'file-cog-outline': '',
+ 'file-compare': '',
+ 'file-delimited': '',
+ 'file-delimited-outline': '',
+ 'file-document': '',
+ 'file-document-alert': '殺',
+ 'file-document-alert-outline': '流',
+ 'file-document-check': '滛',
+ 'file-document-check-outline': '滋',
+ 'file-document-edit': '',
+ 'file-document-edit-outline': '',
+ 'file-document-minus': '漢',
+ 'file-document-minus-outline': '瀞',
+ 'file-document-multiple': '',
+ 'file-document-multiple-outline': '',
+ 'file-document-outline': '',
+ 'file-document-plus': '煮',
+ 'file-document-plus-outline': '瞧',
+ 'file-document-remove': '爵',
+ 'file-document-remove-outline': '犯',
+ 'file-download': '',
+ 'file-download-outline': '',
+ 'file-edit': '',
+ 'file-edit-outline': '',
+ 'file-excel': '',
+ 'file-excel-box': '',
+ 'file-excel-box-outline': '',
+ 'file-excel-outline': '',
+ 'file-export': '',
+ 'file-export-outline': '',
+ 'file-eye': '',
+ 'file-eye-outline': '',
+ 'file-find': '',
+ 'file-find-outline': '',
+ 'file-gif-box': '',
+ 'file-hidden': '',
+ 'file-image': '',
+ 'file-image-marker': '',
+ 'file-image-marker-outline': '',
+ 'file-image-minus': '鷺',
+ 'file-image-minus-outline': '碌',
+ 'file-image-outline': '',
+ 'file-image-plus': '祿',
+ 'file-image-plus-outline': '綠',
+ 'file-image-remove': '菉',
+ 'file-image-remove-outline': '錄',
+ 'file-import': '',
+ 'file-import-outline': '',
+ 'file-jpg-box': '',
+ 'file-key': '',
+ 'file-key-outline': '',
+ 'file-link': '',
+ 'file-link-outline': '',
+ 'file-lock': '',
+ 'file-lock-open': '劉',
+ 'file-lock-open-outline': '杻',
+ 'file-lock-outline': '',
+ 'file-marker': '',
+ 'file-marker-outline': '',
+ 'file-minus': '猪',
+ 'file-minus-outline': '瑱',
+ 'file-move': '',
+ 'file-move-outline': '',
+ 'file-multiple': '',
+ 'file-multiple-outline': '',
+ 'file-music': '',
+ 'file-music-outline': '',
+ 'file-outline': '',
+ 'file-pdf-box': '',
+ 'file-percent': '',
+ 'file-percent-outline': '',
+ 'file-phone': '',
+ 'file-phone-outline': '',
+ 'file-plus': '',
+ 'file-plus-outline': '',
+ 'file-png-box': '',
+ 'file-powerpoint': '',
+ 'file-powerpoint-box': '',
+ 'file-powerpoint-box-outline': '',
+ 'file-powerpoint-outline': '',
+ 'file-presentation-box': '',
+ 'file-question': '',
+ 'file-question-outline': '',
+ 'file-refresh': '',
+ 'file-refresh-outline': '',
+ 'file-remove': '',
+ 'file-remove-outline': '',
+ 'file-replace': '',
+ 'file-replace-outline': '',
+ 'file-restore': '',
+ 'file-restore-outline': '',
+ 'file-rotate-left': '墨',
+ 'file-rotate-left-outline': '層',
+ 'file-rotate-right': '屮',
+ 'file-rotate-right-outline': '悔',
+ 'file-search': '',
+ 'file-search-outline': '',
+ 'file-send': '',
+ 'file-send-outline': '',
+ 'file-settings': '',
+ 'file-settings-outline': '',
+ 'file-sign': '蓼',
+ 'file-star': '',
+ 'file-star-outline': '',
+ 'file-swap': '',
+ 'file-swap-outline': '',
+ 'file-sync': '',
+ 'file-sync-outline': '',
+ 'file-table': '',
+ 'file-table-box': '',
+ 'file-table-box-multiple': '',
+ 'file-table-box-multiple-outline': '',
+ 'file-table-box-outline': '',
+ 'file-table-outline': '',
+ 'file-tree': '',
+ 'file-tree-outline': '',
+ 'file-undo': '',
+ 'file-undo-outline': '',
+ 'file-upload': '',
+ 'file-upload-outline': '',
+ 'file-video': '',
+ 'file-video-outline': '',
+ 'file-word': '',
+ 'file-word-box': '',
+ 'file-word-box-outline': '',
+ 'file-word-outline': '',
+ 'film': '',
+ 'filmstrip': '',
+ 'filmstrip-box': '',
+ 'filmstrip-box-multiple': '',
+ 'filmstrip-off': '',
+ 'filter': '',
+ 'filter-check': '',
+ 'filter-check-outline': '',
+ 'filter-cog': '甆',
+ 'filter-cog-outline': '画',
+ 'filter-menu': '',
+ 'filter-menu-outline': '',
+ 'filter-minus': '',
+ 'filter-minus-outline': '',
+ 'filter-multiple': '慨',
+ 'filter-multiple-outline': '憎',
+ 'filter-off': '',
+ 'filter-off-outline': '',
+ 'filter-outline': '',
+ 'filter-plus': '',
+ 'filter-plus-outline': '',
+ 'filter-remove': '',
+ 'filter-remove-outline': '',
+ 'filter-settings': '瘝',
+ 'filter-settings-outline': '瘟',
+ 'filter-variant': '',
+ 'filter-variant-minus': '',
+ 'filter-variant-plus': '',
+ 'filter-variant-remove': '',
+ 'finance': '',
+ 'find-replace': '',
+ 'fingerprint': '',
+ 'fingerprint-off': '',
+ 'fire': '',
+ 'fire-alert': '',
+ 'fire-circle': '',
+ 'fire-extinguisher': '',
+ 'fire-hydrant': '',
+ 'fire-hydrant-alert': '',
+ 'fire-hydrant-off': '',
+ 'fire-off': '',
+ 'fire-truck': '',
+ 'firebase': '',
+ 'firefox': '',
+ 'fireplace': '',
+ 'fireplace-off': '',
+ 'firewire': '',
+ 'firework': '',
+ 'firework-off': '',
+ 'fish': '',
+ 'fish-off': '',
+ 'fishbowl': '',
+ 'fishbowl-outline': '',
+ 'fit-to-page': '',
+ 'fit-to-page-outline': '',
+ 'fit-to-screen': '',
+ 'fit-to-screen-outline': '',
+ 'flag': '',
+ 'flag-checkered': '',
+ 'flag-minus': '',
+ 'flag-minus-outline': '',
+ 'flag-off': '',
+ 'flag-off-outline': '',
+ 'flag-outline': '',
+ 'flag-plus': '',
+ 'flag-plus-outline': '',
+ 'flag-remove': '',
+ 'flag-remove-outline': '',
+ 'flag-triangle': '',
+ 'flag-variant': '',
+ 'flag-variant-outline': '',
+ 'flare': '',
+ 'flash': '',
+ 'flash-alert': '',
+ 'flash-alert-outline': '',
+ 'flash-auto': '',
+ 'flash-off': '',
+ 'flash-outline': '',
+ 'flash-red-eye': '',
+ 'flashlight': '',
+ 'flashlight-off': '',
+ 'flask': '',
+ 'flask-empty': '',
+ 'flask-empty-minus': '',
+ 'flask-empty-minus-outline': '',
+ 'flask-empty-off': '',
+ 'flask-empty-off-outline': '',
+ 'flask-empty-outline': '',
+ 'flask-empty-plus': '',
+ 'flask-empty-plus-outline': '',
+ 'flask-empty-remove': '',
+ 'flask-empty-remove-outline': '',
+ 'flask-minus': '',
+ 'flask-minus-outline': '',
+ 'flask-off': '',
+ 'flask-off-outline': '',
+ 'flask-outline': '',
+ 'flask-plus': '',
+ 'flask-plus-outline': '',
+ 'flask-remove': '',
+ 'flask-remove-outline': '',
+ 'flask-round-bottom': '',
+ 'flask-round-bottom-empty': '',
+ 'flask-round-bottom-empty-outline': '',
+ 'flask-round-bottom-outline': '',
+ 'fleur-de-lis': '',
+ 'flip-horizontal': '',
+ 'flip-to-back': '',
+ 'flip-to-front': '',
+ 'flip-vertical': '',
+ 'floor-lamp': '',
+ 'floor-lamp-dual': '',
+ 'floor-lamp-dual-outline': '',
+ 'floor-lamp-outline': '',
+ 'floor-lamp-torchiere': '',
+ 'floor-lamp-torchiere-outline': '',
+ 'floor-lamp-torchiere-variant': '',
+ 'floor-lamp-torchiere-variant-outline': '',
+ 'floor-plan': '',
+ 'floppy': '',
+ 'floppy-variant': '',
+ 'flower': '',
+ 'flower-outline': '',
+ 'flower-pollen': '',
+ 'flower-pollen-outline': '',
+ 'flower-poppy': '',
+ 'flower-tulip': '',
+ 'flower-tulip-outline': '',
+ 'focus-auto': '',
+ 'focus-field': '',
+ 'focus-field-horizontal': '',
+ 'focus-field-vertical': '',
+ 'folder': '',
+ 'folder-account': '',
+ 'folder-account-outline': '',
+ 'folder-alert': '',
+ 'folder-alert-outline': '',
+ 'folder-arrow-down': '裏',
+ 'folder-arrow-down-outline': '裡',
+ 'folder-arrow-left': '里',
+ 'folder-arrow-left-outline': '離',
+ 'folder-arrow-left-right': '匿',
+ 'folder-arrow-left-right-outline': '溺',
+ 'folder-arrow-right': '吝',
+ 'folder-arrow-right-outline': '燐',
+ 'folder-arrow-up': '璘',
+ 'folder-arrow-up-down': '藺',
+ 'folder-arrow-up-down-outline': '隣',
+ 'folder-arrow-up-outline': '鱗',
+ 'folder-cancel': '麟',
+ 'folder-cancel-outline': '林',
+ 'folder-check': '諒',
+ 'folder-check-outline': '量',
+ 'folder-clock': '',
+ 'folder-clock-outline': '',
+ 'folder-cog': '',
+ 'folder-cog-outline': '',
+ 'folder-download': '',
+ 'folder-download-outline': '',
+ 'folder-edit': '',
+ 'folder-edit-outline': '',
+ 'folder-eye': '',
+ 'folder-eye-outline': '',
+ 'folder-file': '淋',
+ 'folder-file-outline': '臨',
+ 'folder-google-drive': '',
+ 'folder-heart': '',
+ 'folder-heart-outline': '',
+ 'folder-hidden': '',
+ 'folder-home': '',
+ 'folder-home-outline': '',
+ 'folder-image': '',
+ 'folder-information': '',
+ 'folder-information-outline': '',
+ 'folder-key': '',
+ 'folder-key-network': '',
+ 'folder-key-network-outline': '',
+ 'folder-key-outline': '',
+ 'folder-lock': '',
+ 'folder-lock-open': '',
+ 'folder-lock-open-outline': '益',
+ 'folder-lock-outline': '盛',
+ 'folder-marker': '',
+ 'folder-marker-outline': '',
+ 'folder-move': '',
+ 'folder-move-outline': '',
+ 'folder-multiple': '',
+ 'folder-multiple-image': '',
+ 'folder-multiple-outline': '',
+ 'folder-multiple-plus': '',
+ 'folder-multiple-plus-outline': '',
+ 'folder-music': '',
+ 'folder-music-outline': '',
+ 'folder-network': '',
+ 'folder-network-outline': '',
+ 'folder-off': '立',
+ 'folder-off-outline': '笠',
+ 'folder-open': '',
+ 'folder-open-outline': '',
+ 'folder-outline': '',
+ 'folder-play': '粒',
+ 'folder-play-outline': '狀',
+ 'folder-plus': '',
+ 'folder-plus-outline': '',
+ 'folder-pound': '',
+ 'folder-pound-outline': '',
+ 'folder-question': '柳',
+ 'folder-question-outline': '流',
+ 'folder-refresh': '',
+ 'folder-refresh-outline': '',
+ 'folder-remove': '',
+ 'folder-remove-outline': '',
+ 'folder-search': '',
+ 'folder-search-outline': '',
+ 'folder-settings': '',
+ 'folder-settings-outline': '',
+ 'folder-star': '',
+ 'folder-star-multiple': '',
+ 'folder-star-multiple-outline': '',
+ 'folder-star-outline': '',
+ 'folder-swap': '',
+ 'folder-swap-outline': '',
+ 'folder-sync': '',
+ 'folder-sync-outline': '',
+ 'folder-table': '',
+ 'folder-table-outline': '',
+ 'folder-text': '',
+ 'folder-text-outline': '',
+ 'folder-upload': '',
+ 'folder-upload-outline': '',
+ 'folder-wrench': '炙',
+ 'folder-wrench-outline': '識',
+ 'folder-zip': '',
+ 'folder-zip-outline': '',
+ 'font-awesome': '',
+ 'food': '',
+ 'food-apple': '',
+ 'food-apple-outline': '',
+ 'food-croissant': '',
+ 'food-drumstick': '',
+ 'food-drumstick-off': '',
+ 'food-drumstick-off-outline': '',
+ 'food-drumstick-outline': '',
+ 'food-fork-drink': '',
+ 'food-halal': '',
+ 'food-hot-dog': '',
+ 'food-kosher': '',
+ 'food-off': '',
+ 'food-off-outline': '樂',
+ 'food-outline': '洛',
+ 'food-steak': '',
+ 'food-steak-off': '',
+ 'food-takeout-box': '',
+ 'food-takeout-box-outline': '',
+ 'food-turkey': '',
+ 'food-variant': '',
+ 'food-variant-off': '',
+ 'foot-print': '',
+ 'football': '',
+ 'football-australian': '',
+ 'football-helmet': '',
+ 'forest': '',
+ 'forklift': '',
+ 'form-dropdown': '',
+ 'form-select': '',
+ 'form-textarea': '',
+ 'form-textbox': '',
+ 'form-textbox-lock': '',
+ 'form-textbox-password': '',
+ 'format-align-bottom': '',
+ 'format-align-center': '',
+ 'format-align-justify': '',
+ 'format-align-left': '',
+ 'format-align-middle': '',
+ 'format-align-right': '',
+ 'format-align-top': '',
+ 'format-annotation-minus': '',
+ 'format-annotation-plus': '',
+ 'format-bold': '',
+ 'format-clear': '',
+ 'format-color-fill': '',
+ 'format-color-highlight': '',
+ 'format-color-marker-cancel': '',
+ 'format-color-text': '',
+ 'format-columns': '',
+ 'format-float-center': '',
+ 'format-float-left': '',
+ 'format-float-none': '',
+ 'format-float-right': '',
+ 'format-font': '',
+ 'format-font-size-decrease': '',
+ 'format-font-size-increase': '',
+ 'format-header-1': '',
+ 'format-header-2': '',
+ 'format-header-3': '',
+ 'format-header-4': '',
+ 'format-header-5': '',
+ 'format-header-6': '',
+ 'format-header-decrease': '',
+ 'format-header-equal': '',
+ 'format-header-increase': '',
+ 'format-header-pound': '',
+ 'format-horizontal-align-center': '',
+ 'format-horizontal-align-left': '',
+ 'format-horizontal-align-right': '',
+ 'format-indent-decrease': '',
+ 'format-indent-increase': '',
+ 'format-italic': '',
+ 'format-letter-case': '',
+ 'format-letter-case-lower': '',
+ 'format-letter-case-upper': '',
+ 'format-letter-ends-with': '',
+ 'format-letter-matches': '',
+ 'format-letter-spacing': '凌',
+ 'format-letter-starts-with': '',
+ 'format-line-spacing': '',
+ 'format-line-style': '',
+ 'format-line-weight': '',
+ 'format-list-bulleted': '',
+ 'format-list-bulleted-square': '',
+ 'format-list-bulleted-triangle': '',
+ 'format-list-bulleted-type': '',
+ 'format-list-checkbox': '',
+ 'format-list-checks': '',
+ 'format-list-group': '',
+ 'format-list-numbered': '',
+ 'format-list-numbered-rtl': '',
+ 'format-list-text': '',
+ 'format-overline': '',
+ 'format-page-break': '',
+ 'format-page-split': '烙',
+ 'format-paint': '',
+ 'format-paragraph': '',
+ 'format-pilcrow': '',
+ 'format-quote-close': '',
+ 'format-quote-close-outline': '',
+ 'format-quote-open': '',
+ 'format-quote-open-outline': '',
+ 'format-rotate-90': '',
+ 'format-section': '',
+ 'format-size': '',
+ 'format-strikethrough': '',
+ 'format-strikethrough-variant': '',
+ 'format-subscript': '',
+ 'format-superscript': '',
+ 'format-text': '',
+ 'format-text-rotation-angle-down': '',
+ 'format-text-rotation-angle-up': '',
+ 'format-text-rotation-down': '',
+ 'format-text-rotation-down-vertical': '',
+ 'format-text-rotation-none': '',
+ 'format-text-rotation-up': '',
+ 'format-text-rotation-vertical': '',
+ 'format-text-variant': '',
+ 'format-text-variant-outline': '',
+ 'format-text-wrapping-clip': '',
+ 'format-text-wrapping-overflow': '',
+ 'format-text-wrapping-wrap': '',
+ 'format-textbox': '',
+ 'format-textdirection-l-to-r': '',
+ 'format-textdirection-r-to-l': '',
+ 'format-title': '',
+ 'format-underline': '',
+ 'format-underline-wavy': '',
+ 'format-vertical-align-bottom': '',
+ 'format-vertical-align-center': '',
+ 'format-vertical-align-top': '',
+ 'format-wrap-inline': '',
+ 'format-wrap-square': '',
+ 'format-wrap-tight': '',
+ 'format-wrap-top-bottom': '',
+ 'forum': '',
+ 'forum-minus': '直',
+ 'forum-minus-outline': '睊',
+ 'forum-outline': '',
+ 'forum-plus': '着',
+ 'forum-plus-outline': '磌',
+ 'forum-remove': '窱',
+ 'forum-remove-outline': '節',
+ 'forward': '',
+ 'forwardburger': '',
+ 'fountain': '',
+ 'fountain-pen': '',
+ 'fountain-pen-tip': '',
+ 'fraction-one-half': '撚',
+ 'freebsd': '',
+ 'french-fries': '稜',
+ 'frequently-asked-questions': '',
+ 'fridge': '',
+ 'fridge-alert': '',
+ 'fridge-alert-outline': '',
+ 'fridge-bottom': '',
+ 'fridge-industrial': '',
+ 'fridge-industrial-alert': '',
+ 'fridge-industrial-alert-outline': '',
+ 'fridge-industrial-off': '',
+ 'fridge-industrial-off-outline': '',
+ 'fridge-industrial-outline': '',
+ 'fridge-off': '',
+ 'fridge-off-outline': '',
+ 'fridge-outline': '',
+ 'fridge-top': '',
+ 'fridge-variant': '',
+ 'fridge-variant-alert': '',
+ 'fridge-variant-alert-outline': '',
+ 'fridge-variant-off': '',
+ 'fridge-variant-off-outline': '',
+ 'fridge-variant-outline': '',
+ 'fruit-cherries': '',
+ 'fruit-cherries-off': '',
+ 'fruit-citrus': '',
+ 'fruit-citrus-off': '',
+ 'fruit-grapes': '',
+ 'fruit-grapes-outline': '',
+ 'fruit-pear': '嗀',
+ 'fruit-pineapple': '',
+ 'fruit-watermelon': '',
+ 'fuel': '',
+ 'fuel-cell': '',
+ 'fullscreen': '',
+ 'fullscreen-exit': '',
+ 'function': '',
+ 'function-variant': '',
+ 'furigana-horizontal': '',
+ 'furigana-vertical': '',
+ 'fuse': '',
+ 'fuse-alert': '',
+ 'fuse-blade': '',
+ 'fuse-off': '',
+ 'gamepad': '',
+ 'gamepad-circle': '',
+ 'gamepad-circle-down': '',
+ 'gamepad-circle-left': '',
+ 'gamepad-circle-outline': '',
+ 'gamepad-circle-right': '',
+ 'gamepad-circle-up': '',
+ 'gamepad-down': '',
+ 'gamepad-left': '',
+ 'gamepad-outline': '落',
+ 'gamepad-right': '',
+ 'gamepad-round': '',
+ 'gamepad-round-down': '',
+ 'gamepad-round-left': '',
+ 'gamepad-round-outline': '',
+ 'gamepad-round-right': '',
+ 'gamepad-round-up': '',
+ 'gamepad-square': '',
+ 'gamepad-square-outline': '',
+ 'gamepad-up': '',
+ 'gamepad-variant': '',
+ 'gamepad-variant-outline': '',
+ 'gamma': '',
+ 'gantry-crane': '',
+ 'garage': '',
+ 'garage-alert': '',
+ 'garage-alert-variant': '',
+ 'garage-lock': '',
+ 'garage-open': '',
+ 'garage-open-variant': '',
+ 'garage-variant': '',
+ 'garage-variant-lock': '',
+ 'gas-burner': '祥',
+ 'gas-cylinder': '',
+ 'gas-station': '',
+ 'gas-station-off': '',
+ 'gas-station-off-outline': '',
+ 'gas-station-outline': '',
+ 'gate': '',
+ 'gate-alert': '',
+ 'gate-and': '',
+ 'gate-arrow-left': '',
+ 'gate-arrow-right': '',
+ 'gate-nand': '',
+ 'gate-nor': '',
+ 'gate-not': '',
+ 'gate-open': '',
+ 'gate-or': '',
+ 'gate-xnor': '',
+ 'gate-xor': '',
+ 'gatsby': '',
+ 'gauge': '',
+ 'gauge-empty': '',
+ 'gauge-full': '',
+ 'gauge-low': '',
+ 'gavel': '',
+ 'gender-female': '',
+ 'gender-male': '',
+ 'gender-male-female': '',
+ 'gender-male-female-variant': '',
+ 'gender-non-binary': '',
+ 'gender-transgender': '',
+ 'gentoo': '',
+ 'gesture': '',
+ 'gesture-double-tap': '',
+ 'gesture-pinch': '',
+ 'gesture-spread': '',
+ 'gesture-swipe': '',
+ 'gesture-swipe-down': '',
+ 'gesture-swipe-horizontal': '',
+ 'gesture-swipe-left': '',
+ 'gesture-swipe-right': '',
+ 'gesture-swipe-up': '',
+ 'gesture-swipe-vertical': '',
+ 'gesture-tap': '',
+ 'gesture-tap-box': '',
+ 'gesture-tap-button': '',
+ 'gesture-tap-hold': '',
+ 'gesture-two-double-tap': '',
+ 'gesture-two-tap': '',
+ 'ghost': '',
+ 'ghost-off': '',
+ 'ghost-off-outline': '',
+ 'ghost-outline': '',
+ 'gift': '',
+ 'gift-off': '',
+ 'gift-off-outline': '',
+ 'gift-open': '',
+ 'gift-open-outline': '',
+ 'gift-outline': '',
+ 'git': '',
+ 'github': '',
+ 'gitlab': '',
+ 'glass-cocktail': '',
+ 'glass-cocktail-off': '',
+ 'glass-flute': '',
+ 'glass-fragile': '',
+ 'glass-mug': '',
+ 'glass-mug-off': '',
+ 'glass-mug-variant': '',
+ 'glass-mug-variant-off': '',
+ 'glass-pint-outline': '',
+ 'glass-stange': '',
+ 'glass-tulip': '',
+ 'glass-wine': '',
+ 'glasses': '',
+ 'globe-light': '',
+ 'globe-model': '',
+ 'gmail': '',
+ 'gnome': '',
+ 'go-kart': '',
+ 'go-kart-track': '',
+ 'gog': '',
+ 'gold': '',
+ 'golf': '',
+ 'golf-cart': '',
+ 'golf-tee': '',
+ 'gondola': '',
+ 'goodreads': '',
+ 'google': '',
+ 'google-ads': '',
+ 'google-analytics': '',
+ 'google-assistant': '',
+ 'google-cardboard': '',
+ 'google-chrome': '',
+ 'google-circles': '',
+ 'google-circles-communities': '',
+ 'google-circles-extended': '',
+ 'google-circles-group': '',
+ 'google-classroom': '',
+ 'google-cloud': '',
+ 'google-controller': '',
+ 'google-controller-off': '',
+ 'google-downasaur': '',
+ 'google-drive': '',
+ 'google-earth': '',
+ 'google-fit': '',
+ 'google-glass': '',
+ 'google-hangouts': '',
+ 'google-home': '',
+ 'google-keep': '',
+ 'google-lens': '',
+ 'google-maps': '',
+ 'google-my-business': '',
+ 'google-nearby': '',
+ 'google-play': '',
+ 'google-plus': '',
+ 'google-podcast': '',
+ 'google-spreadsheet': '',
+ 'google-street-view': '',
+ 'google-translate': '',
+ 'gradient-horizontal': '',
+ 'gradient-vertical': '',
+ 'grain': '',
+ 'graph': '',
+ 'graph-outline': '',
+ 'graphql': '',
+ 'grass': '',
+ 'grave-stone': '',
+ 'grease-pencil': '',
+ 'greater-than': '',
+ 'greater-than-or-equal': '',
+ 'greenhouse': '',
+ 'grid': '',
+ 'grid-large': '',
+ 'grid-off': '',
+ 'grill': '',
+ 'grill-outline': '',
+ 'group': '',
+ 'guitar-acoustic': '',
+ 'guitar-electric': '',
+ 'guitar-pick': '',
+ 'guitar-pick-outline': '',
+ 'guy-fawkes-mask': '',
+ 'gymnastics': '懲',
+ 'hail': '',
+ 'hair-dryer': '',
+ 'hair-dryer-outline': '',
+ 'halloween': '',
+ 'hamburger': '',
+ 'hamburger-check': '',
+ 'hamburger-minus': '',
+ 'hamburger-off': '',
+ 'hamburger-plus': '',
+ 'hamburger-remove': '',
+ 'hammer': '',
+ 'hammer-screwdriver': '',
+ 'hammer-sickle': '',
+ 'hammer-wrench': '',
+ 'hand-back-left': '',
+ 'hand-back-left-off': '',
+ 'hand-back-left-off-outline': '',
+ 'hand-back-left-outline': '',
+ 'hand-back-right': '',
+ 'hand-back-right-off': '',
+ 'hand-back-right-off-outline': '',
+ 'hand-back-right-outline': '',
+ 'hand-clap': '壘',
+ 'hand-clap-off': '敏',
+ 'hand-coin': '',
+ 'hand-coin-outline': '',
+ 'hand-extended': '',
+ 'hand-extended-outline': '',
+ 'hand-front-left': '',
+ 'hand-front-left-outline': '',
+ 'hand-front-right': '',
+ 'hand-front-right-outline': '',
+ 'hand-heart': '',
+ 'hand-heart-outline': '',
+ 'hand-okay': '',
+ 'hand-peace': '',
+ 'hand-peace-variant': '',
+ 'hand-pointing-down': '',
+ 'hand-pointing-left': '',
+ 'hand-pointing-right': '',
+ 'hand-pointing-up': '',
+ 'hand-saw': '',
+ 'hand-wash': '',
+ 'hand-wash-outline': '',
+ 'hand-water': '',
+ 'hand-wave': '',
+ 'hand-wave-outline': '',
+ 'handball': '',
+ 'handcuffs': '',
+ 'hands-pray': '',
+ 'handshake': '',
+ 'handshake-outline': '',
+ 'hanger': '',
+ 'hard-hat': '',
+ 'harddisk': '',
+ 'harddisk-plus': '',
+ 'harddisk-remove': '',
+ 'hat-fedora': '',
+ 'hazard-lights': '',
+ 'hdr': '',
+ 'hdr-off': '',
+ 'head': '',
+ 'head-alert': '',
+ 'head-alert-outline': '',
+ 'head-check': '',
+ 'head-check-outline': '',
+ 'head-cog': '',
+ 'head-cog-outline': '',
+ 'head-dots-horizontal': '',
+ 'head-dots-horizontal-outline': '',
+ 'head-flash': '',
+ 'head-flash-outline': '',
+ 'head-heart': '',
+ 'head-heart-outline': '',
+ 'head-lightbulb': '',
+ 'head-lightbulb-outline': '',
+ 'head-minus': '',
+ 'head-minus-outline': '',
+ 'head-outline': '',
+ 'head-plus': '',
+ 'head-plus-outline': '',
+ 'head-question': '',
+ 'head-question-outline': '',
+ 'head-remove': '',
+ 'head-remove-outline': '',
+ 'head-snowflake': '',
+ 'head-snowflake-outline': '',
+ 'head-sync': '',
+ 'head-sync-outline': '',
+ 'headphones': '',
+ 'headphones-bluetooth': '',
+ 'headphones-box': '',
+ 'headphones-off': '',
+ 'headphones-settings': '',
+ 'headset': '',
+ 'headset-dock': '',
+ 'headset-off': '',
+ 'heart': '',
+ 'heart-box': '',
+ 'heart-box-outline': '',
+ 'heart-broken': '',
+ 'heart-broken-outline': '',
+ 'heart-circle': '',
+ 'heart-circle-outline': '',
+ 'heart-cog': '',
+ 'heart-cog-outline': '',
+ 'heart-flash': '',
+ 'heart-half': '',
+ 'heart-half-full': '',
+ 'heart-half-outline': '',
+ 'heart-minus': '',
+ 'heart-minus-outline': '',
+ 'heart-multiple': '',
+ 'heart-multiple-outline': '',
+ 'heart-off': '',
+ 'heart-off-outline': '',
+ 'heart-outline': '',
+ 'heart-plus': '',
+ 'heart-plus-outline': '',
+ 'heart-pulse': '',
+ 'heart-remove': '',
+ 'heart-remove-outline': '',
+ 'heart-settings': '',
+ 'heart-settings-outline': '',
+ 'heat-pump': '既',
+ 'heat-pump-outline': '暑',
+ 'heat-wave': '梅',
+ 'heating-coil': '类',
+ 'helicopter': '',
+ 'help': '',
+ 'help-box': '',
+ 'help-circle': '',
+ 'help-circle-outline': '',
+ 'help-network': '',
+ 'help-network-outline': '',
+ 'help-rhombus': '',
+ 'help-rhombus-outline': '',
+ 'hexadecimal': '',
+ 'hexagon': '',
+ 'hexagon-multiple': '',
+ 'hexagon-multiple-outline': '',
+ 'hexagon-outline': '',
+ 'hexagon-slice-1': '',
+ 'hexagon-slice-2': '',
+ 'hexagon-slice-3': '',
+ 'hexagon-slice-4': '',
+ 'hexagon-slice-5': '',
+ 'hexagon-slice-6': '',
+ 'hexagram': '',
+ 'hexagram-outline': '',
+ 'high-definition': '',
+ 'high-definition-box': '',
+ 'highway': '',
+ 'hiking': '',
+ 'history': '',
+ 'hockey-puck': '',
+ 'hockey-sticks': '',
+ 'hololens': '',
+ 'home': '',
+ 'home-account': '',
+ 'home-alert': '',
+ 'home-alert-outline': '',
+ 'home-analytics': '',
+ 'home-assistant': '',
+ 'home-automation': '',
+ 'home-battery': '豈',
+ 'home-battery-outline': '更',
+ 'home-circle': '',
+ 'home-circle-outline': '',
+ 'home-city': '',
+ 'home-city-outline': '',
+ 'home-clock': '﨑',
+ 'home-clock-outline': '晴',
+ 'home-edit': '',
+ 'home-edit-outline': '',
+ 'home-export-outline': '',
+ 'home-flood': '',
+ 'home-floor-0': '',
+ 'home-floor-1': '',
+ 'home-floor-2': '',
+ 'home-floor-3': '',
+ 'home-floor-a': '',
+ 'home-floor-b': '',
+ 'home-floor-g': '',
+ 'home-floor-l': '',
+ 'home-floor-negative-1': '',
+ 'home-group': '',
+ 'home-group-minus': '燎',
+ 'home-group-plus': '樂',
+ 'home-group-remove': '療',
+ 'home-heart': '',
+ 'home-import-outline': '',
+ 'home-lightbulb': '',
+ 'home-lightbulb-outline': '',
+ 'home-lightning-bolt': '車',
+ 'home-lightning-bolt-outline': '賈',
+ 'home-lock': '',
+ 'home-lock-open': '',
+ 'home-map-marker': '',
+ 'home-minus': '',
+ 'home-minus-outline': '',
+ 'home-modern': '',
+ 'home-off': '海',
+ 'home-off-outline': '渚',
+ 'home-outline': '',
+ 'home-plus': '',
+ 'home-plus-outline': '',
+ 'home-remove': '',
+ 'home-remove-outline': '',
+ 'home-roof': '',
+ 'home-search': '',
+ 'home-search-outline': '',
+ 'home-switch': '',
+ 'home-switch-outline': '',
+ 'home-thermometer': '',
+ 'home-thermometer-outline': '',
+ 'home-variant': '',
+ 'home-variant-outline': '',
+ 'hook': '',
+ 'hook-off': '',
+ 'hoop-house': '',
+ 'hops': '',
+ 'horizontal-rotate-clockwise': '',
+ 'horizontal-rotate-counterclockwise': '',
+ 'horse': '',
+ 'horse-human': '',
+ 'horse-variant': '',
+ 'horse-variant-fast': '',
+ 'horseshoe': '',
+ 'hospital': '',
+ 'hospital-box': '',
+ 'hospital-box-outline': '',
+ 'hospital-building': '',
+ 'hospital-marker': '',
+ 'hot-tub': '',
+ 'hours-24': '',
+ 'hubspot': '',
+ 'hulu': '',
+ 'human': '',
+ 'human-baby-changing-table': '',
+ 'human-cane': '',
+ 'human-capacity-decrease': '',
+ 'human-capacity-increase': '',
+ 'human-child': '',
+ 'human-dolly': '勵',
+ 'human-edit': '',
+ 'human-female': '',
+ 'human-female-boy': '',
+ 'human-female-dance': '',
+ 'human-female-female': '',
+ 'human-female-girl': '',
+ 'human-greeting': '',
+ 'human-greeting-proximity': '',
+ 'human-greeting-variant': '',
+ 'human-handsdown': '',
+ 'human-handsup': '',
+ 'human-male': '',
+ 'human-male-board': '',
+ 'human-male-board-poll': '',
+ 'human-male-boy': '',
+ 'human-male-child': '',
+ 'human-male-female': '',
+ 'human-male-female-child': '',
+ 'human-male-girl': '',
+ 'human-male-height': '',
+ 'human-male-height-variant': '',
+ 'human-male-male': '',
+ 'human-non-binary': '',
+ 'human-pregnant': '',
+ 'human-queue': '',
+ 'human-scooter': '',
+ 'human-wheelchair': '',
+ 'human-white-cane': '呂',
+ 'humble-bundle': '',
+ 'hvac': '',
+ 'hvac-off': '',
+ 'hydraulic-oil-level': '',
+ 'hydraulic-oil-temperature': '',
+ 'hydro-power': '',
+ 'hydrogen-station': '',
+ 'ice-cream': '',
+ 'ice-cream-off': '',
+ 'ice-pop': '',
+ 'id-card': '',
+ 'identifier': '',
+ 'ideogram-cjk': '',
+ 'ideogram-cjk-variant': '',
+ 'image': '',
+ 'image-album': '',
+ 'image-area': '',
+ 'image-area-close': '',
+ 'image-auto-adjust': '',
+ 'image-broken': '',
+ 'image-broken-variant': '',
+ 'image-edit': '',
+ 'image-edit-outline': '',
+ 'image-filter-black-white': '',
+ 'image-filter-center-focus': '',
+ 'image-filter-center-focus-strong': '',
+ 'image-filter-center-focus-strong-outline': '',
+ 'image-filter-center-focus-weak': '',
+ 'image-filter-drama': '',
+ 'image-filter-frames': '',
+ 'image-filter-hdr': '',
+ 'image-filter-none': '',
+ 'image-filter-tilt-shift': '',
+ 'image-filter-vintage': '',
+ 'image-frame': '',
+ 'image-lock': '絛',
+ 'image-lock-outline': '練',
+ 'image-marker': '',
+ 'image-marker-outline': '',
+ 'image-minus': '',
+ 'image-move': '',
+ 'image-multiple': '',
+ 'image-multiple-outline': '',
+ 'image-off': '',
+ 'image-off-outline': '',
+ 'image-outline': '',
+ 'image-plus': '',
+ 'image-refresh': '什',
+ 'image-refresh-outline': '茶',
+ 'image-remove': '',
+ 'image-search': '',
+ 'image-search-outline': '',
+ 'image-size-select-actual': '',
+ 'image-size-select-large': '',
+ 'image-size-select-small': '',
+ 'image-sync': '刺',
+ 'image-sync-outline': '切',
+ 'image-text': '',
+ 'import': '',
+ 'inbox': '',
+ 'inbox-arrow-down': '',
+ 'inbox-arrow-down-outline': '',
+ 'inbox-arrow-up': '',
+ 'inbox-arrow-up-outline': '',
+ 'inbox-full': '',
+ 'inbox-full-outline': '',
+ 'inbox-multiple': '',
+ 'inbox-multiple-outline': '',
+ 'inbox-outline': '',
+ 'inbox-remove': '',
+ 'inbox-remove-outline': '',
+ 'incognito': '',
+ 'incognito-circle': '',
+ 'incognito-circle-off': '',
+ 'incognito-off': '',
+ 'induction': '',
+ 'infinity': '',
+ 'information': '',
+ 'information-off': '',
+ 'information-off-outline': '',
+ 'information-outline': '',
+ 'information-variant': '',
+ 'instagram': '',
+ 'instrument-triangle': '',
+ 'integrated-circuit-chip': '裸',
+ 'invert-colors': '',
+ 'invert-colors-off': '',
+ 'iobroker': '',
+ 'ip': '',
+ 'ip-network': '',
+ 'ip-network-outline': '',
+ 'ip-outline': '女',
+ 'ipod': '',
+ 'iron': '',
+ 'iron-board': '',
+ 'iron-outline': '',
+ 'island': '',
+ 'iv-bag': '',
+ 'jabber': '',
+ 'jeepney': '',
+ 'jellyfish': '',
+ 'jellyfish-outline': '',
+ 'jira': '',
+ 'jquery': '',
+ 'jsfiddle': '',
+ 'jump-rope': '',
+ 'kabaddi': '',
+ 'kangaroo': '',
+ 'karate': '',
+ 'kayaking': '',
+ 'keg': '',
+ 'kettle': '',
+ 'kettle-alert': '',
+ 'kettle-alert-outline': '',
+ 'kettle-off': '',
+ 'kettle-off-outline': '',
+ 'kettle-outline': '',
+ 'kettle-pour-over': '',
+ 'kettle-steam': '',
+ 'kettle-steam-outline': '',
+ 'kettlebell': '',
+ 'key': '',
+ 'key-alert': '廬',
+ 'key-alert-outline': '旅',
+ 'key-arrow-right': '',
+ 'key-chain': '',
+ 'key-chain-variant': '',
+ 'key-change': '',
+ 'key-link': '',
+ 'key-minus': '',
+ 'key-outline': '',
+ 'key-plus': '',
+ 'key-remove': '',
+ 'key-star': '',
+ 'key-variant': '',
+ 'key-wireless': '',
+ 'keyboard': '',
+ 'keyboard-backspace': '',
+ 'keyboard-caps': '',
+ 'keyboard-close': '',
+ 'keyboard-esc': '',
+ 'keyboard-f1': '',
+ 'keyboard-f10': '',
+ 'keyboard-f11': '',
+ 'keyboard-f12': '',
+ 'keyboard-f2': '',
+ 'keyboard-f3': '',
+ 'keyboard-f4': '',
+ 'keyboard-f5': '',
+ 'keyboard-f6': '',
+ 'keyboard-f7': '',
+ 'keyboard-f8': '',
+ 'keyboard-f9': '',
+ 'keyboard-off': '',
+ 'keyboard-off-outline': '',
+ 'keyboard-outline': '',
+ 'keyboard-return': '',
+ 'keyboard-settings': '',
+ 'keyboard-settings-outline': '',
+ 'keyboard-space': '',
+ 'keyboard-tab': '',
+ 'keyboard-tab-reverse': '',
+ 'keyboard-variant': '',
+ 'khanda': '',
+ 'kickstarter': '',
+ 'kite': '濾',
+ 'kite-outline': '礪',
+ 'kitesurfing': '',
+ 'klingon': '',
+ 'knife': '',
+ 'knife-military': '',
+ 'koala': '',
+ 'kodi': '',
+ 'kubernetes': '',
+ 'label': '',
+ 'label-multiple': '',
+ 'label-multiple-outline': '',
+ 'label-off': '',
+ 'label-off-outline': '',
+ 'label-outline': '',
+ 'label-percent': '',
+ 'label-percent-outline': '',
+ 'label-variant': '',
+ 'label-variant-outline': '',
+ 'ladder': '',
+ 'ladybug': '',
+ 'lambda': '',
+ 'lamp': '',
+ 'lamp-outline': '',
+ 'lamps': '',
+ 'lamps-outline': '',
+ 'lan': '',
+ 'lan-check': '',
+ 'lan-connect': '',
+ 'lan-disconnect': '',
+ 'lan-pending': '',
+ 'land-fields': '缾',
+ 'land-plots': '者',
+ 'land-plots-circle': '荒',
+ 'land-plots-circle-variant': '華',
+ 'land-rows-horizontal': '蝹',
+ 'land-rows-vertical': '襁',
+ 'landslide': '漢',
+ 'landslide-outline': '煮',
+ 'language-c': '',
+ 'language-cpp': '',
+ 'language-csharp': '',
+ 'language-css3': '',
+ 'language-fortran': '',
+ 'language-go': '',
+ 'language-haskell': '',
+ 'language-html5': '',
+ 'language-java': '',
+ 'language-javascript': '',
+ 'language-kotlin': '',
+ 'language-lua': '',
+ 'language-markdown': '',
+ 'language-markdown-outline': '',
+ 'language-php': '',
+ 'language-python': '',
+ 'language-r': '',
+ 'language-ruby': '',
+ 'language-ruby-on-rails': '',
+ 'language-rust': '',
+ 'language-swift': '',
+ 'language-typescript': '',
+ 'language-xaml': '',
+ 'laptop': '',
+ 'laptop-account': '爫',
+ 'laptop-off': '',
+ 'laravel': '',
+ 'laser-pointer': '',
+ 'lasso': '',
+ 'lastpass': '',
+ 'latitude': '',
+ 'launch': '',
+ 'lava-lamp': '',
+ 'layers': '',
+ 'layers-edit': '',
+ 'layers-minus': '',
+ 'layers-off': '',
+ 'layers-off-outline': '',
+ 'layers-outline': '',
+ 'layers-plus': '',
+ 'layers-remove': '',
+ 'layers-search': '',
+ 'layers-search-outline': '',
+ 'layers-triple': '',
+ 'layers-triple-outline': '',
+ 'lead-pencil': '',
+ 'leaf': '',
+ 'leaf-circle': '滑',
+ 'leaf-circle-outline': '串',
+ 'leaf-maple': '',
+ 'leaf-maple-off': '',
+ 'leaf-off': '',
+ 'leak': '',
+ 'leak-off': '',
+ 'lecturn': '',
+ 'led-off': '',
+ 'led-on': '',
+ 'led-outline': '',
+ 'led-strip': '',
+ 'led-strip-variant': '',
+ 'led-strip-variant-off': '琢',
+ 'led-variant-off': '',
+ 'led-variant-on': '',
+ 'led-variant-outline': '',
+ 'leek': '',
+ 'less-than': '',
+ 'less-than-or-equal': '',
+ 'library': '',
+ 'library-outline': '﨡',
+ 'library-shelves': '',
+ 'license': '',
+ 'lifebuoy': '',
+ 'light-flood-down': '閭',
+ 'light-flood-up': '驪',
+ 'light-recessed': '',
+ 'light-switch': '',
+ 'light-switch-off': '﨣',
+ 'lightbulb': '',
+ 'lightbulb-alert': '易',
+ 'lightbulb-alert-outline': '李',
+ 'lightbulb-auto': '',
+ 'lightbulb-auto-outline': '',
+ 'lightbulb-cfl': '',
+ 'lightbulb-cfl-off': '',
+ 'lightbulb-cfl-spiral': '',
+ 'lightbulb-cfl-spiral-off': '',
+ 'lightbulb-fluorescent-tube': '',
+ 'lightbulb-fluorescent-tube-outline': '',
+ 'lightbulb-group': '',
+ 'lightbulb-group-off': '',
+ 'lightbulb-group-off-outline': '',
+ 'lightbulb-group-outline': '',
+ 'lightbulb-multiple': '',
+ 'lightbulb-multiple-off': '',
+ 'lightbulb-multiple-off-outline': '',
+ 'lightbulb-multiple-outline': '',
+ 'lightbulb-night': '碑',
+ 'lightbulb-night-outline': '社',
+ 'lightbulb-off': '',
+ 'lightbulb-off-outline': '',
+ 'lightbulb-on': '',
+ 'lightbulb-on-10': '祉',
+ 'lightbulb-on-20': '祈',
+ 'lightbulb-on-30': '祐',
+ 'lightbulb-on-40': '祖',
+ 'lightbulb-on-50': '祝',
+ 'lightbulb-on-60': '禍',
+ 'lightbulb-on-70': '禎',
+ 'lightbulb-on-80': '穀',
+ 'lightbulb-on-90': '突',
+ 'lightbulb-on-outline': '',
+ 'lightbulb-outline': '',
+ 'lightbulb-question': '梨',
+ 'lightbulb-question-outline': '泥',
+ 'lightbulb-spot': '',
+ 'lightbulb-spot-off': '',
+ 'lightbulb-variant': '',
+ 'lightbulb-variant-outline': '',
+ 'lighthouse': '',
+ 'lighthouse-on': '',
+ 'lightning-bolt': '',
+ 'lightning-bolt-circle': '',
+ 'lightning-bolt-outline': '',
+ 'line-scan': '',
+ 'lingerie': '',
+ 'link': '',
+ 'link-box': '',
+ 'link-box-outline': '',
+ 'link-box-variant': '',
+ 'link-box-variant-outline': '',
+ 'link-lock': '',
+ 'link-off': '',
+ 'link-plus': '',
+ 'link-variant': '',
+ 'link-variant-minus': '',
+ 'link-variant-off': '',
+ 'link-variant-plus': '',
+ 'link-variant-remove': '',
+ 'linkedin': '',
+ 'linux': '',
+ 'linux-mint': '',
+ 'lipstick': '',
+ 'liquid-spot': '',
+ 'liquor': '欄',
+ 'list-status': '',
+ 'litecoin': '',
+ 'loading': '',
+ 'location-enter': '',
+ 'location-exit': '',
+ 'lock': '',
+ 'lock-alert': '',
+ 'lock-alert-outline': '',
+ 'lock-check': '',
+ 'lock-check-outline': '',
+ 'lock-clock': '',
+ 'lock-minus': '',
+ 'lock-minus-outline': '',
+ 'lock-off': '',
+ 'lock-off-outline': '',
+ 'lock-open': '',
+ 'lock-open-alert': '',
+ 'lock-open-alert-outline': '',
+ 'lock-open-check': '',
+ 'lock-open-check-outline': '',
+ 'lock-open-minus': '',
+ 'lock-open-minus-outline': '',
+ 'lock-open-outline': '',
+ 'lock-open-plus': '',
+ 'lock-open-plus-outline': '',
+ 'lock-open-remove': '',
+ 'lock-open-remove-outline': '',
+ 'lock-open-variant': '',
+ 'lock-open-variant-outline': '',
+ 'lock-outline': '',
+ 'lock-pattern': '',
+ 'lock-plus': '',
+ 'lock-plus-outline': '',
+ 'lock-question': '',
+ 'lock-remove': '',
+ 'lock-remove-outline': '',
+ 'lock-reset': '',
+ 'lock-smart': '',
+ 'locker': '',
+ 'locker-multiple': '',
+ 'login': '',
+ 'login-variant': '',
+ 'logout': '',
+ 'logout-variant': '',
+ 'longitude': '',
+ 'looks': '',
+ 'lotion': '',
+ 'lotion-outline': '',
+ 'lotion-plus': '',
+ 'lotion-plus-outline': '',
+ 'loupe': '',
+ 'lumx': '',
+ 'lungs': '',
+ 'mace': '',
+ 'magazine-pistol': '',
+ 'magazine-rifle': '',
+ 'magic-staff': '',
+ 'magnet': '',
+ 'magnet-on': '',
+ 'magnify': '',
+ 'magnify-close': '',
+ 'magnify-expand': '',
+ 'magnify-minus': '',
+ 'magnify-minus-cursor': '',
+ 'magnify-minus-outline': '',
+ 'magnify-plus': '',
+ 'magnify-plus-cursor': '',
+ 'magnify-plus-outline': '',
+ 'magnify-remove-cursor': '',
+ 'magnify-remove-outline': '',
+ 'magnify-scan': '',
+ 'mail': '',
+ 'mailbox': '',
+ 'mailbox-open': '',
+ 'mailbox-open-outline': '',
+ 'mailbox-open-up': '',
+ 'mailbox-open-up-outline': '',
+ 'mailbox-outline': '',
+ 'mailbox-up': '',
+ 'mailbox-up-outline': '',
+ 'manjaro': '',
+ 'map': '',
+ 'map-check': '',
+ 'map-check-outline': '',
+ 'map-clock': '',
+ 'map-clock-outline': '',
+ 'map-legend': '',
+ 'map-marker': '',
+ 'map-marker-account': '',
+ 'map-marker-account-outline': '',
+ 'map-marker-alert': '',
+ 'map-marker-alert-outline': '',
+ 'map-marker-check': '',
+ 'map-marker-check-outline': '',
+ 'map-marker-circle': '',
+ 'map-marker-distance': '',
+ 'map-marker-down': '',
+ 'map-marker-left': '',
+ 'map-marker-left-outline': '',
+ 'map-marker-minus': '',
+ 'map-marker-minus-outline': '',
+ 'map-marker-multiple': '',
+ 'map-marker-multiple-outline': '',
+ 'map-marker-off': '',
+ 'map-marker-off-outline': '',
+ 'map-marker-outline': '',
+ 'map-marker-path': '',
+ 'map-marker-plus': '',
+ 'map-marker-plus-outline': '',
+ 'map-marker-question': '',
+ 'map-marker-question-outline': '',
+ 'map-marker-radius': '',
+ 'map-marker-radius-outline': '',
+ 'map-marker-remove': '',
+ 'map-marker-remove-outline': '',
+ 'map-marker-remove-variant': '',
+ 'map-marker-right': '',
+ 'map-marker-right-outline': '',
+ 'map-marker-star': '',
+ 'map-marker-star-outline': '',
+ 'map-marker-up': '',
+ 'map-minus': '',
+ 'map-outline': '',
+ 'map-plus': '',
+ 'map-search': '',
+ 'map-search-outline': '',
+ 'mapbox': '',
+ 'margin': '',
+ 'marker': '',
+ 'marker-cancel': '',
+ 'marker-check': '',
+ 'mastodon': '',
+ 'material-design': '',
+ 'material-ui': '',
+ 'math-compass': '',
+ 'math-cos': '',
+ 'math-integral': '',
+ 'math-integral-box': '',
+ 'math-log': '',
+ 'math-norm': '',
+ 'math-norm-box': '',
+ 'math-sin': '',
+ 'math-tan': '',
+ 'matrix': '',
+ 'medal': '',
+ 'medal-outline': '',
+ 'medical-bag': '',
+ 'medical-cotton-swab': '覆',
+ 'meditation': '',
+ 'memory': '',
+ 'menorah': '',
+ 'menorah-fire': '',
+ 'menu': '',
+ 'menu-down': '',
+ 'menu-down-outline': '',
+ 'menu-left': '',
+ 'menu-left-outline': '',
+ 'menu-open': '',
+ 'menu-right': '',
+ 'menu-right-outline': '',
+ 'menu-swap': '',
+ 'menu-swap-outline': '',
+ 'menu-up': '',
+ 'menu-up-outline': '',
+ 'merge': '',
+ 'message': '',
+ 'message-alert': '',
+ 'message-alert-outline': '',
+ 'message-arrow-left': '',
+ 'message-arrow-left-outline': '',
+ 'message-arrow-right': '',
+ 'message-arrow-right-outline': '',
+ 'message-badge': '鹿',
+ 'message-badge-outline': '論',
+ 'message-bookmark': '',
+ 'message-bookmark-outline': '',
+ 'message-bulleted': '',
+ 'message-bulleted-off': '',
+ 'message-cog': '',
+ 'message-cog-outline': '',
+ 'message-draw': '',
+ 'message-fast': '溜',
+ 'message-fast-outline': '琉',
+ 'message-flash': '',
+ 'message-flash-outline': '',
+ 'message-image': '',
+ 'message-image-outline': '',
+ 'message-lock': '',
+ 'message-lock-outline': '',
+ 'message-minus': '',
+ 'message-minus-outline': '',
+ 'message-off': '',
+ 'message-off-outline': '',
+ 'message-outline': '',
+ 'message-plus': '',
+ 'message-plus-outline': '',
+ 'message-processing': '',
+ 'message-processing-outline': '',
+ 'message-question': '',
+ 'message-question-outline': '',
+ 'message-reply': '',
+ 'message-reply-outline': '',
+ 'message-reply-text': '',
+ 'message-reply-text-outline': '',
+ 'message-settings': '',
+ 'message-settings-outline': '',
+ 'message-star': '',
+ 'message-star-outline': '',
+ 'message-text': '',
+ 'message-text-clock': '',
+ 'message-text-clock-outline': '',
+ 'message-text-fast': '留',
+ 'message-text-fast-outline': '硫',
+ 'message-text-lock': '',
+ 'message-text-lock-outline': '',
+ 'message-text-outline': '',
+ 'message-video': '',
+ 'meteor': '',
+ 'meter-electric': '節',
+ 'meter-electric-outline': '練',
+ 'meter-gas': '縉',
+ 'meter-gas-outline': '繁',
+ 'metronome': '',
+ 'metronome-tick': '',
+ 'micro-sd': '',
+ 'microphone': '',
+ 'microphone-minus': '',
+ 'microphone-off': '',
+ 'microphone-outline': '',
+ 'microphone-plus': '',
+ 'microphone-question': '麗',
+ 'microphone-question-outline': '黎',
+ 'microphone-settings': '',
+ 'microphone-variant': '',
+ 'microphone-variant-off': '',
+ 'microscope': '',
+ 'microsoft': '',
+ 'microsoft-access': '',
+ 'microsoft-azure': '',
+ 'microsoft-azure-devops': '',
+ 'microsoft-bing': '',
+ 'microsoft-dynamics-365': '',
+ 'microsoft-edge': '',
+ 'microsoft-excel': '',
+ 'microsoft-internet-explorer': '',
+ 'microsoft-office': '',
+ 'microsoft-onedrive': '',
+ 'microsoft-onenote': '',
+ 'microsoft-outlook': '',
+ 'microsoft-powerpoint': '',
+ 'microsoft-sharepoint': '',
+ 'microsoft-teams': '',
+ 'microsoft-visual-studio': '',
+ 'microsoft-visual-studio-code': '',
+ 'microsoft-windows': '',
+ 'microsoft-windows-classic': '',
+ 'microsoft-word': '',
+ 'microsoft-xbox': '',
+ 'microsoft-xbox-controller': '',
+ 'microsoft-xbox-controller-battery-alert': '',
+ 'microsoft-xbox-controller-battery-charging': '',
+ 'microsoft-xbox-controller-battery-empty': '',
+ 'microsoft-xbox-controller-battery-full': '',
+ 'microsoft-xbox-controller-battery-low': '',
+ 'microsoft-xbox-controller-battery-medium': '',
+ 'microsoft-xbox-controller-battery-unknown': '',
+ 'microsoft-xbox-controller-menu': '',
+ 'microsoft-xbox-controller-off': '',
+ 'microsoft-xbox-controller-view': '',
+ 'microwave': '',
+ 'microwave-off': '',
+ 'middleware': '',
+ 'middleware-outline': '',
+ 'midi': '',
+ 'midi-port': '',
+ 'mine': '',
+ 'minecraft': '',
+ 'mini-sd': '',
+ 'minidisc': '',
+ 'minus': '',
+ 'minus-box': '',
+ 'minus-box-multiple': '',
+ 'minus-box-multiple-outline': '',
+ 'minus-box-outline': '',
+ 'minus-circle': '',
+ 'minus-circle-multiple': '',
+ 'minus-circle-multiple-outline': '',
+ 'minus-circle-off': '',
+ 'minus-circle-off-outline': '',
+ 'minus-circle-outline': '',
+ 'minus-network': '',
+ 'minus-network-outline': '',
+ 'minus-thick': '',
+ 'mirror': '',
+ 'mirror-rectangle': '',
+ 'mirror-variant': '',
+ 'mixed-martial-arts': '',
+ 'mixed-reality': '',
+ 'molecule': '',
+ 'molecule-co': '',
+ 'molecule-co2': '',
+ 'monitor': '',
+ 'monitor-account': '署',
+ 'monitor-arrow-down': '紐',
+ 'monitor-arrow-down-variant': '類',
+ 'monitor-cellphone': '',
+ 'monitor-cellphone-star': '',
+ 'monitor-dashboard': '',
+ 'monitor-edit': '',
+ 'monitor-eye': '',
+ 'monitor-lock': '',
+ 'monitor-multiple': '',
+ 'monitor-off': '',
+ 'monitor-screenshot': '',
+ 'monitor-share': '',
+ 'monitor-shimmer': '',
+ 'monitor-small': '',
+ 'monitor-speaker': '',
+ 'monitor-speaker-off': '',
+ 'monitor-star': '',
+ 'moon-first-quarter': '',
+ 'moon-full': '',
+ 'moon-last-quarter': '',
+ 'moon-new': '',
+ 'moon-waning-crescent': '',
+ 'moon-waning-gibbous': '',
+ 'moon-waxing-crescent': '',
+ 'moon-waxing-gibbous': '',
+ 'moped': '',
+ 'moped-electric': '',
+ 'moped-electric-outline': '',
+ 'moped-outline': '',
+ 'more': '',
+ 'mortar-pestle': '',
+ 'mortar-pestle-plus': '',
+ 'mosque': '',
+ 'mother-heart': '',
+ 'mother-nurse': '',
+ 'motion': '',
+ 'motion-outline': '',
+ 'motion-pause': '',
+ 'motion-pause-outline': '',
+ 'motion-play': '',
+ 'motion-play-outline': '',
+ 'motion-sensor': '',
+ 'motion-sensor-off': '',
+ 'motorbike': '',
+ 'motorbike-electric': '',
+ 'mouse': '',
+ 'mouse-bluetooth': '',
+ 'mouse-move-down': '',
+ 'mouse-move-up': '',
+ 'mouse-move-vertical': '',
+ 'mouse-off': '',
+ 'mouse-variant': '',
+ 'mouse-variant-off': '',
+ 'move-resize': '',
+ 'move-resize-variant': '',
+ 'movie': '',
+ 'movie-check': '',
+ 'movie-check-outline': '',
+ 'movie-cog': '',
+ 'movie-cog-outline': '',
+ 'movie-edit': '',
+ 'movie-edit-outline': '',
+ 'movie-filter': '',
+ 'movie-filter-outline': '',
+ 'movie-minus': '',
+ 'movie-minus-outline': '',
+ 'movie-off': '',
+ 'movie-off-outline': '',
+ 'movie-open': '',
+ 'movie-open-check': '',
+ 'movie-open-check-outline': '',
+ 'movie-open-cog': '',
+ 'movie-open-cog-outline': '',
+ 'movie-open-edit': '',
+ 'movie-open-edit-outline': '',
+ 'movie-open-minus': '',
+ 'movie-open-minus-outline': '',
+ 'movie-open-off': '',
+ 'movie-open-off-outline': '',
+ 'movie-open-outline': '',
+ 'movie-open-play': '',
+ 'movie-open-play-outline': '',
+ 'movie-open-plus': '',
+ 'movie-open-plus-outline': '',
+ 'movie-open-remove': '',
+ 'movie-open-remove-outline': '',
+ 'movie-open-settings': '',
+ 'movie-open-settings-outline': '',
+ 'movie-open-star': '',
+ 'movie-open-star-outline': '',
+ 'movie-outline': '',
+ 'movie-play': '',
+ 'movie-play-outline': '',
+ 'movie-plus': '',
+ 'movie-plus-outline': '',
+ 'movie-remove': '',
+ 'movie-remove-outline': '',
+ 'movie-roll': '',
+ 'movie-search': '',
+ 'movie-search-outline': '',
+ 'movie-settings': '',
+ 'movie-settings-outline': '',
+ 'movie-star': '',
+ 'movie-star-outline': '',
+ 'mower': '',
+ 'mower-bag': '',
+ 'muffin': '',
+ 'multicast': '',
+ 'multiplication': '',
+ 'multiplication-box': '',
+ 'mushroom': '',
+ 'mushroom-off': '',
+ 'mushroom-off-outline': '',
+ 'mushroom-outline': '',
+ 'music': '',
+ 'music-accidental-double-flat': '',
+ 'music-accidental-double-sharp': '',
+ 'music-accidental-flat': '',
+ 'music-accidental-natural': '',
+ 'music-accidental-sharp': '',
+ 'music-box': '',
+ 'music-box-multiple': '',
+ 'music-box-multiple-outline': '',
+ 'music-box-outline': '',
+ 'music-circle': '',
+ 'music-circle-outline': '',
+ 'music-clef-alto': '',
+ 'music-clef-bass': '',
+ 'music-clef-treble': '',
+ 'music-note': '',
+ 'music-note-bluetooth': '',
+ 'music-note-bluetooth-off': '',
+ 'music-note-eighth': '',
+ 'music-note-eighth-dotted': '',
+ 'music-note-half': '',
+ 'music-note-half-dotted': '',
+ 'music-note-off': '',
+ 'music-note-off-outline': '',
+ 'music-note-outline': '',
+ 'music-note-plus': '',
+ 'music-note-quarter': '',
+ 'music-note-quarter-dotted': '',
+ 'music-note-sixteenth': '',
+ 'music-note-sixteenth-dotted': '',
+ 'music-note-whole': '',
+ 'music-note-whole-dotted': '',
+ 'music-off': '',
+ 'music-rest-eighth': '',
+ 'music-rest-half': '',
+ 'music-rest-quarter': '',
+ 'music-rest-sixteenth': '',
+ 'music-rest-whole': '',
+ 'mustache': '',
+ 'nail': '',
+ 'nas': '',
+ 'nativescript': '',
+ 'nature': '',
+ 'nature-people': '',
+ 'navigation': '',
+ 'navigation-outline': '',
+ 'navigation-variant': '',
+ 'navigation-variant-outline': '',
+ 'near-me': '',
+ 'necklace': '',
+ 'needle': '',
+ 'needle-off': '六',
+ 'netflix': '',
+ 'network': '',
+ 'network-off': '',
+ 'network-off-outline': '',
+ 'network-outline': '',
+ 'network-pos': '響',
+ 'network-strength-1': '',
+ 'network-strength-1-alert': '',
+ 'network-strength-2': '',
+ 'network-strength-2-alert': '',
+ 'network-strength-3': '',
+ 'network-strength-3-alert': '',
+ 'network-strength-4': '',
+ 'network-strength-4-alert': '',
+ 'network-strength-4-cog': '酪',
+ 'network-strength-off': '',
+ 'network-strength-off-outline': '',
+ 'network-strength-outline': '',
+ 'new-box': '',
+ 'newspaper': '',
+ 'newspaper-check': '壟',
+ 'newspaper-minus': '',
+ 'newspaper-plus': '',
+ 'newspaper-remove': '弄',
+ 'newspaper-variant': '',
+ 'newspaper-variant-multiple': '',
+ 'newspaper-variant-multiple-outline': '',
+ 'newspaper-variant-outline': '',
+ 'nfc': '',
+ 'nfc-search-variant': '',
+ 'nfc-tap': '',
+ 'nfc-variant': '',
+ 'nfc-variant-off': '',
+ 'ninja': '',
+ 'nintendo-game-boy': '',
+ 'nintendo-switch': '',
+ 'nintendo-wii': '',
+ 'nintendo-wiiu': '',
+ 'nix': '',
+ 'nodejs': '',
+ 'noodles': '',
+ 'not-equal': '',
+ 'not-equal-variant': '',
+ 'note': '',
+ 'note-alert': '',
+ 'note-alert-outline': '',
+ 'note-check': '',
+ 'note-check-outline': '',
+ 'note-edit': '',
+ 'note-edit-outline': '',
+ 'note-minus': '',
+ 'note-minus-outline': '',
+ 'note-multiple': '',
+ 'note-multiple-outline': '',
+ 'note-off': '',
+ 'note-off-outline': '',
+ 'note-outline': '',
+ 'note-plus': '',
+ 'note-plus-outline': '',
+ 'note-remove': '',
+ 'note-remove-outline': '',
+ 'note-search': '',
+ 'note-search-outline': '',
+ 'note-text': '',
+ 'note-text-outline': '',
+ 'notebook': '',
+ 'notebook-check': '',
+ 'notebook-check-outline': '',
+ 'notebook-edit': '',
+ 'notebook-edit-outline': '',
+ 'notebook-heart': '見',
+ 'notebook-heart-outline': '廓',
+ 'notebook-minus': '',
+ 'notebook-minus-outline': '',
+ 'notebook-multiple': '',
+ 'notebook-outline': '',
+ 'notebook-plus': '',
+ 'notebook-plus-outline': '',
+ 'notebook-remove': '',
+ 'notebook-remove-outline': '',
+ 'notification-clear-all': '',
+ 'npm': '',
+ 'nuke': '',
+ 'null': '',
+ 'numeric': '',
+ 'numeric-0': '',
+ 'numeric-0-box': '',
+ 'numeric-0-box-multiple': '',
+ 'numeric-0-box-multiple-outline': '',
+ 'numeric-0-box-outline': '',
+ 'numeric-0-circle': '',
+ 'numeric-0-circle-outline': '',
+ 'numeric-1': '',
+ 'numeric-1-box': '',
+ 'numeric-1-box-multiple': '',
+ 'numeric-1-box-multiple-outline': '',
+ 'numeric-1-box-outline': '',
+ 'numeric-1-circle': '',
+ 'numeric-1-circle-outline': '',
+ 'numeric-10': '',
+ 'numeric-10-box': '',
+ 'numeric-10-box-multiple': '',
+ 'numeric-10-box-multiple-outline': '',
+ 'numeric-10-box-outline': '',
+ 'numeric-10-circle': '',
+ 'numeric-10-circle-outline': '',
+ 'numeric-2': '',
+ 'numeric-2-box': '',
+ 'numeric-2-box-multiple': '',
+ 'numeric-2-box-multiple-outline': '',
+ 'numeric-2-box-outline': '',
+ 'numeric-2-circle': '',
+ 'numeric-2-circle-outline': '',
+ 'numeric-3': '',
+ 'numeric-3-box': '',
+ 'numeric-3-box-multiple': '',
+ 'numeric-3-box-multiple-outline': '',
+ 'numeric-3-box-outline': '',
+ 'numeric-3-circle': '',
+ 'numeric-3-circle-outline': '',
+ 'numeric-4': '',
+ 'numeric-4-box': '',
+ 'numeric-4-box-multiple': '',
+ 'numeric-4-box-multiple-outline': '',
+ 'numeric-4-box-outline': '',
+ 'numeric-4-circle': '',
+ 'numeric-4-circle-outline': '',
+ 'numeric-5': '',
+ 'numeric-5-box': '',
+ 'numeric-5-box-multiple': '',
+ 'numeric-5-box-multiple-outline': '',
+ 'numeric-5-box-outline': '',
+ 'numeric-5-circle': '',
+ 'numeric-5-circle-outline': '',
+ 'numeric-6': '',
+ 'numeric-6-box': '',
+ 'numeric-6-box-multiple': '',
+ 'numeric-6-box-multiple-outline': '',
+ 'numeric-6-box-outline': '',
+ 'numeric-6-circle': '',
+ 'numeric-6-circle-outline': '',
+ 'numeric-7': '',
+ 'numeric-7-box': '',
+ 'numeric-7-box-multiple': '',
+ 'numeric-7-box-multiple-outline': '',
+ 'numeric-7-box-outline': '',
+ 'numeric-7-circle': '',
+ 'numeric-7-circle-outline': '',
+ 'numeric-8': '',
+ 'numeric-8-box': '',
+ 'numeric-8-box-multiple': '',
+ 'numeric-8-box-multiple-outline': '',
+ 'numeric-8-box-outline': '',
+ 'numeric-8-circle': '',
+ 'numeric-8-circle-outline': '',
+ 'numeric-9': '',
+ 'numeric-9-box': '',
+ 'numeric-9-box-multiple': '',
+ 'numeric-9-box-multiple-outline': '',
+ 'numeric-9-box-outline': '',
+ 'numeric-9-circle': '',
+ 'numeric-9-circle-outline': '',
+ 'numeric-9-plus': '',
+ 'numeric-9-plus-box': '',
+ 'numeric-9-plus-box-multiple': '',
+ 'numeric-9-plus-box-multiple-outline': '',
+ 'numeric-9-plus-box-outline': '',
+ 'numeric-9-plus-circle': '',
+ 'numeric-9-plus-circle-outline': '',
+ 'numeric-negative-1': '',
+ 'numeric-off': '戮',
+ 'numeric-positive-1': '',
+ 'nut': '',
+ 'nutrition': '',
+ 'nuxt': '',
+ 'oar': '',
+ 'ocarina': '',
+ 'oci': '',
+ 'ocr': '',
+ 'octagon': '',
+ 'octagon-outline': '',
+ 'octagram': '',
+ 'octagram-outline': '',
+ 'octahedron': '累',
+ 'octahedron-off': '縷',
+ 'odnoklassniki': '',
+ 'offer': '',
+ 'office-building': '',
+ 'office-building-cog': '賂',
+ 'office-building-cog-outline': '雷',
+ 'office-building-marker': '',
+ 'office-building-marker-outline': '',
+ 'office-building-outline': '',
+ 'oil': '',
+ 'oil-lamp': '',
+ 'oil-level': '',
+ 'oil-temperature': '',
+ 'om': '',
+ 'omega': '',
+ 'one-up': '',
+ 'onepassword': '',
+ 'opacity': '',
+ 'open-in-app': '',
+ 'open-in-new': '',
+ 'open-source-initiative': '',
+ 'openid': '',
+ 'opera': '',
+ 'orbit': '',
+ 'orbit-variant': '',
+ 'order-alphabetical-ascending': '',
+ 'order-alphabetical-descending': '',
+ 'order-bool-ascending': '',
+ 'order-bool-ascending-variant': '',
+ 'order-bool-descending': '',
+ 'order-bool-descending-variant': '',
+ 'order-numeric-ascending': '',
+ 'order-numeric-descending': '',
+ 'origin': '',
+ 'ornament': '',
+ 'ornament-variant': '',
+ 'outdoor-lamp': '',
+ 'overscan': '',
+ 'owl': '',
+ 'pac-man': '',
+ 'package': '',
+ 'package-down': '',
+ 'package-up': '',
+ 'package-variant': '',
+ 'package-variant-closed': '',
+ 'package-variant-closed-minus': '陸',
+ 'package-variant-closed-plus': '倫',
+ 'package-variant-closed-remove': '崙',
+ 'package-variant-minus': '淪',
+ 'package-variant-plus': '輪',
+ 'package-variant-remove': '律',
+ 'page-first': '',
+ 'page-last': '',
+ 'page-layout-body': '',
+ 'page-layout-footer': '',
+ 'page-layout-header': '',
+ 'page-layout-header-footer': '',
+ 'page-layout-sidebar-left': '',
+ 'page-layout-sidebar-right': '',
+ 'page-next': '',
+ 'page-next-outline': '',
+ 'page-previous': '',
+ 'page-previous-outline': '',
+ 'pail': '',
+ 'pail-minus': '',
+ 'pail-minus-outline': '',
+ 'pail-off': '',
+ 'pail-off-outline': '',
+ 'pail-outline': '',
+ 'pail-plus': '',
+ 'pail-plus-outline': '',
+ 'pail-remove': '',
+ 'pail-remove-outline': '',
+ 'palette': '',
+ 'palette-advanced': '',
+ 'palette-outline': '',
+ 'palette-swatch': '',
+ 'palette-swatch-outline': '',
+ 'palette-swatch-variant': '陵',
+ 'palm-tree': '',
+ 'pan': '',
+ 'pan-bottom-left': '',
+ 'pan-bottom-right': '',
+ 'pan-down': '',
+ 'pan-horizontal': '',
+ 'pan-left': '',
+ 'pan-right': '',
+ 'pan-top-left': '',
+ 'pan-top-right': '',
+ 'pan-up': '',
+ 'pan-vertical': '',
+ 'panda': '',
+ 'pandora': '',
+ 'panorama': '',
+ 'panorama-fisheye': '',
+ 'panorama-horizontal': '蠟',
+ 'panorama-horizontal-outline': '',
+ 'panorama-outline': '曆',
+ 'panorama-sphere': '歷',
+ 'panorama-sphere-outline': '轢',
+ 'panorama-variant': '年',
+ 'panorama-variant-outline': '憐',
+ 'panorama-vertical': '廊',
+ 'panorama-vertical-outline': '',
+ 'panorama-wide-angle': '丹',
+ 'panorama-wide-angle-outline': '',
+ 'paper-cut-vertical': '',
+ 'paper-roll': '',
+ 'paper-roll-outline': '',
+ 'paperclip': '',
+ 'paperclip-check': '鉶',
+ 'paperclip-lock': '慄',
+ 'paperclip-minus': '陼',
+ 'paperclip-off': '難',
+ 'paperclip-plus': '靖',
+ 'paperclip-remove': '韛',
+ 'parachute': '',
+ 'parachute-outline': '',
+ 'paragliding': '',
+ 'parking': '',
+ 'party-popper': '',
+ 'passport': '',
+ 'passport-biometric': '',
+ 'pasta': '',
+ 'patio-heater': '',
+ 'patreon': '',
+ 'pause': '',
+ 'pause-circle': '',
+ 'pause-circle-outline': '',
+ 'pause-octagon': '',
+ 'pause-octagon-outline': '',
+ 'paw': '',
+ 'paw-off': '',
+ 'paw-off-outline': '',
+ 'paw-outline': '',
+ 'peace': '',
+ 'peanut': '',
+ 'peanut-off': '',
+ 'peanut-off-outline': '',
+ 'peanut-outline': '',
+ 'pen': '',
+ 'pen-lock': '',
+ 'pen-minus': '',
+ 'pen-off': '',
+ 'pen-plus': '',
+ 'pen-remove': '',
+ 'pencil': '',
+ 'pencil-box': '',
+ 'pencil-box-multiple': '',
+ 'pencil-box-multiple-outline': '',
+ 'pencil-box-outline': '',
+ 'pencil-circle': '',
+ 'pencil-circle-outline': '',
+ 'pencil-lock': '',
+ 'pencil-lock-outline': '',
+ 'pencil-minus': '',
+ 'pencil-minus-outline': '',
+ 'pencil-off': '',
+ 'pencil-off-outline': '',
+ 'pencil-outline': '',
+ 'pencil-plus': '',
+ 'pencil-plus-outline': '',
+ 'pencil-remove': '',
+ 'pencil-remove-outline': '',
+ 'pencil-ruler': '',
+ 'penguin': '',
+ 'pentagon': '',
+ 'pentagon-outline': '',
+ 'pentagram': '',
+ 'percent': '',
+ 'percent-box': '度',
+ 'percent-box-outline': '拓',
+ 'percent-circle': '糖',
+ 'percent-circle-outline': '宅',
+ 'percent-outline': '',
+ 'periodic-table': '',
+ 'perspective-less': '',
+ 'perspective-more': '',
+ 'ph': '',
+ 'phone': '',
+ 'phone-alert': '',
+ 'phone-alert-outline': '',
+ 'phone-bluetooth': '',
+ 'phone-bluetooth-outline': '',
+ 'phone-cancel': '',
+ 'phone-cancel-outline': '',
+ 'phone-check': '',
+ 'phone-check-outline': '',
+ 'phone-classic': '',
+ 'phone-classic-off': '',
+ 'phone-clock': '栗',
+ 'phone-dial': '',
+ 'phone-dial-outline': '',
+ 'phone-forward': '',
+ 'phone-forward-outline': '',
+ 'phone-hangup': '',
+ 'phone-hangup-outline': '',
+ 'phone-in-talk': '',
+ 'phone-in-talk-outline': '',
+ 'phone-incoming': '',
+ 'phone-incoming-outline': '',
+ 'phone-lock': '',
+ 'phone-lock-outline': '',
+ 'phone-log': '',
+ 'phone-log-outline': '',
+ 'phone-message': '',
+ 'phone-message-outline': '',
+ 'phone-minus': '',
+ 'phone-minus-outline': '',
+ 'phone-missed': '',
+ 'phone-missed-outline': '',
+ 'phone-off': '',
+ 'phone-off-outline': '',
+ 'phone-outgoing': '',
+ 'phone-outgoing-outline': '',
+ 'phone-outline': '',
+ 'phone-paused': '',
+ 'phone-paused-outline': '',
+ 'phone-plus': '',
+ 'phone-plus-outline': '',
+ 'phone-refresh': '漣',
+ 'phone-refresh-outline': '煉',
+ 'phone-remove': '',
+ 'phone-remove-outline': '',
+ 'phone-return': '',
+ 'phone-return-outline': '',
+ 'phone-ring': '',
+ 'phone-ring-outline': '',
+ 'phone-rotate-landscape': '',
+ 'phone-rotate-portrait': '',
+ 'phone-settings': '',
+ 'phone-settings-outline': '',
+ 'phone-sync': '璉',
+ 'phone-sync-outline': '秊',
+ 'phone-voip': '',
+ 'pi': '',
+ 'pi-box': '',
+ 'pi-hole': '',
+ 'piano': '',
+ 'piano-off': '',
+ 'pickaxe': '',
+ 'picture-in-picture-bottom-right': '',
+ 'picture-in-picture-bottom-right-outline': '',
+ 'picture-in-picture-top-right': '',
+ 'picture-in-picture-top-right-outline': '',
+ 'pier': '',
+ 'pier-crane': '',
+ 'pig': '',
+ 'pig-variant': '',
+ 'pig-variant-outline': '',
+ 'piggy-bank': '',
+ 'piggy-bank-outline': '',
+ 'pill': '',
+ 'pill-off': '者',
+ 'pillar': '',
+ 'pin': '',
+ 'pin-off': '',
+ 'pin-off-outline': '',
+ 'pin-outline': '',
+ 'pine-tree': '',
+ 'pine-tree-box': '',
+ 'pine-tree-fire': '',
+ 'pinterest': '',
+ 'pinwheel': '',
+ 'pinwheel-outline': '',
+ 'pipe': '',
+ 'pipe-disconnected': '',
+ 'pipe-leak': '',
+ 'pipe-valve': '',
+ 'pipe-wrench': '',
+ 'pirate': '',
+ 'pistol': '',
+ 'piston': '',
+ 'pitchfork': '',
+ 'pizza': '',
+ 'play': '',
+ 'play-box': '',
+ 'play-box-lock': '凞',
+ 'play-box-lock-open': '猪',
+ 'play-box-lock-open-outline': '益',
+ 'play-box-lock-outline': '礼',
+ 'play-box-multiple': '',
+ 'play-box-multiple-outline': '',
+ 'play-box-outline': '',
+ 'play-circle': '',
+ 'play-circle-outline': '',
+ 'play-network': '',
+ 'play-network-outline': '',
+ 'play-outline': '',
+ 'play-pause': '',
+ 'play-protected-content': '',
+ 'play-speed': '',
+ 'playlist-check': '',
+ 'playlist-edit': '',
+ 'playlist-minus': '',
+ 'playlist-music': '',
+ 'playlist-music-outline': '',
+ 'playlist-play': '',
+ 'playlist-plus': '',
+ 'playlist-remove': '',
+ 'playlist-star': '',
+ 'plex': '',
+ 'pliers': '念',
+ 'plus': '',
+ 'plus-box': '',
+ 'plus-box-multiple': '',
+ 'plus-box-multiple-outline': '',
+ 'plus-box-outline': '',
+ 'plus-circle': '',
+ 'plus-circle-multiple': '',
+ 'plus-circle-multiple-outline': '',
+ 'plus-circle-outline': '',
+ 'plus-lock': '臭',
+ 'plus-lock-open': '艹',
+ 'plus-minus': '',
+ 'plus-minus-box': '',
+ 'plus-minus-variant': '',
+ 'plus-network': '',
+ 'plus-network-outline': '',
+ 'plus-outline': '',
+ 'plus-thick': '',
+ 'podcast': '',
+ 'podium': '',
+ 'podium-bronze': '',
+ 'podium-gold': '',
+ 'podium-silver': '',
+ 'point-of-sale': '',
+ 'pokeball': '',
+ 'pokemon-go': '',
+ 'poker-chip': '',
+ 'polaroid': '',
+ 'police-badge': '',
+ 'police-badge-outline': '',
+ 'police-station': '',
+ 'poll': '',
+ 'polo': '',
+ 'polymer': '',
+ 'pool': '',
+ 'pool-thermometer': '艹',
+ 'popcorn': '',
+ 'post': '',
+ 'post-lamp': '著',
+ 'post-outline': '',
+ 'postage-stamp': '',
+ 'pot': '',
+ 'pot-mix': '',
+ 'pot-mix-outline': '',
+ 'pot-outline': '',
+ 'pot-steam': '',
+ 'pot-steam-outline': '',
+ 'pound': '',
+ 'pound-box': '',
+ 'pound-box-outline': '',
+ 'power': '',
+ 'power-cycle': '',
+ 'power-off': '',
+ 'power-on': '',
+ 'power-plug': '',
+ 'power-plug-off': '',
+ 'power-plug-off-outline': '',
+ 'power-plug-outline': '',
+ 'power-settings': '',
+ 'power-sleep': '',
+ 'power-socket': '',
+ 'power-socket-au': '',
+ 'power-socket-ch': '',
+ 'power-socket-de': '',
+ 'power-socket-eu': '',
+ 'power-socket-fr': '',
+ 'power-socket-it': '',
+ 'power-socket-jp': '',
+ 'power-socket-uk': '',
+ 'power-socket-us': '',
+ 'power-standby': '',
+ 'powershell': '',
+ 'prescription': '',
+ 'presentation': '',
+ 'presentation-play': '',
+ 'pretzel': '',
+ 'printer': '',
+ 'printer-3d': '',
+ 'printer-3d-nozzle': '',
+ 'printer-3d-nozzle-alert': '',
+ 'printer-3d-nozzle-alert-outline': '',
+ 'printer-3d-nozzle-heat': '',
+ 'printer-3d-nozzle-heat-outline': '',
+ 'printer-3d-nozzle-outline': '',
+ 'printer-alert': '',
+ 'printer-check': '',
+ 'printer-eye': '',
+ 'printer-off': '',
+ 'printer-off-outline': '',
+ 'printer-outline': '',
+ 'printer-pos': '',
+ 'printer-search': '',
+ 'printer-settings': '',
+ 'printer-wireless': '',
+ 'priority-high': '',
+ 'priority-low': '',
+ 'professional-hexagon': '',
+ 'progress-alert': '',
+ 'progress-check': '',
+ 'progress-clock': '',
+ 'progress-close': '',
+ 'progress-download': '',
+ 'progress-pencil': '',
+ 'progress-question': '',
+ 'progress-star': '',
+ 'progress-upload': '',
+ 'progress-wrench': '',
+ 'projector': '',
+ 'projector-off': '諸',
+ 'projector-screen': '',
+ 'projector-screen-off': '',
+ 'projector-screen-off-outline': '',
+ 'projector-screen-outline': '',
+ 'projector-screen-variant': '',
+ 'projector-screen-variant-off': '',
+ 'projector-screen-variant-off-outline': '',
+ 'projector-screen-variant-outline': '',
+ 'propane-tank': '',
+ 'propane-tank-outline': '',
+ 'protocol': '',
+ 'publish': '',
+ 'publish-off': '籠',
+ 'pulse': '',
+ 'pump': '',
+ 'pumpkin': '',
+ 'purse': '',
+ 'purse-outline': '',
+ 'puzzle': '',
+ 'puzzle-check': '',
+ 'puzzle-check-outline': '',
+ 'puzzle-edit': '',
+ 'puzzle-edit-outline': '',
+ 'puzzle-heart': '',
+ 'puzzle-heart-outline': '',
+ 'puzzle-minus': '',
+ 'puzzle-minus-outline': '',
+ 'puzzle-outline': '',
+ 'puzzle-plus': '',
+ 'puzzle-plus-outline': '',
+ 'puzzle-remove': '',
+ 'puzzle-remove-outline': '',
+ 'puzzle-star': '',
+ 'puzzle-star-outline': '',
+ 'pyramid': '陋',
+ 'pyramid-off': '勒',
+ 'qi': '',
+ 'qqchat': '',
+ 'qrcode': '',
+ 'qrcode-edit': '',
+ 'qrcode-minus': '',
+ 'qrcode-plus': '',
+ 'qrcode-remove': '',
+ 'qrcode-scan': '',
+ 'quadcopter': '',
+ 'quality-high': '',
+ 'quality-low': '',
+ 'quality-medium': '',
+ 'quora': '',
+ 'rabbit': '',
+ 'rabbit-variant': '褐',
+ 'rabbit-variant-outline': '視',
+ 'racing-helmet': '',
+ 'racquetball': '',
+ 'radar': '',
+ 'radiator': '',
+ 'radiator-disabled': '',
+ 'radiator-off': '',
+ 'radio': '',
+ 'radio-am': '',
+ 'radio-fm': '',
+ 'radio-handheld': '',
+ 'radio-off': '',
+ 'radio-tower': '',
+ 'radioactive': '',
+ 'radioactive-circle': '',
+ 'radioactive-circle-outline': '',
+ 'radioactive-off': '',
+ 'radiobox-blank': '',
+ 'radiobox-marked': '',
+ 'radiology-box': '',
+ 'radiology-box-outline': '',
+ 'radius': '',
+ 'radius-outline': '',
+ 'railroad-light': '',
+ 'rake': '',
+ 'raspberry-pi': '',
+ 'raw': '﨎',
+ 'raw-off': '﨏',
+ 'ray-end': '',
+ 'ray-end-arrow': '',
+ 'ray-start': '',
+ 'ray-start-arrow': '',
+ 'ray-start-end': '',
+ 'ray-start-vertex-end': '',
+ 'ray-vertex': '',
+ 'razor-double-edge': '練',
+ 'razor-single-edge': '聯',
+ 'react': '',
+ 'read': '',
+ 'receipt': '',
+ 'receipt-outline': '率',
+ 'receipt-text-check': '謁',
+ 'receipt-text-check-outline': '謹',
+ 'receipt-text-minus': '賓',
+ 'receipt-text-minus-outline': '贈',
+ 'receipt-text-plus': '辶',
+ 'receipt-text-plus-outline': '逸',
+ 'receipt-text-remove': '難',
+ 'receipt-text-remove-outline': '響',
+ 'record': '',
+ 'record-circle': '',
+ 'record-circle-outline': '',
+ 'record-player': '',
+ 'record-rec': '',
+ 'rectangle': '',
+ 'rectangle-outline': '',
+ 'recycle': '',
+ 'recycle-variant': '',
+ 'reddit': '',
+ 'redhat': '',
+ 'redo': '',
+ 'redo-variant': '',
+ 'reflect-horizontal': '',
+ 'reflect-vertical': '',
+ 'refresh': '',
+ 'refresh-auto': '',
+ 'refresh-circle': '',
+ 'regex': '',
+ 'registered-trademark': '',
+ 'reiterate': '',
+ 'relation-many-to-many': '',
+ 'relation-many-to-one': '',
+ 'relation-many-to-one-or-many': '',
+ 'relation-many-to-only-one': '',
+ 'relation-many-to-zero-or-many': '',
+ 'relation-many-to-zero-or-one': '',
+ 'relation-one-or-many-to-many': '',
+ 'relation-one-or-many-to-one': '',
+ 'relation-one-or-many-to-one-or-many': '',
+ 'relation-one-or-many-to-only-one': '',
+ 'relation-one-or-many-to-zero-or-many': '',
+ 'relation-one-or-many-to-zero-or-one': '',
+ 'relation-one-to-many': '',
+ 'relation-one-to-one': '',
+ 'relation-one-to-one-or-many': '',
+ 'relation-one-to-only-one': '',
+ 'relation-one-to-zero-or-many': '',
+ 'relation-one-to-zero-or-one': '',
+ 'relation-only-one-to-many': '',
+ 'relation-only-one-to-one': '',
+ 'relation-only-one-to-one-or-many': '',
+ 'relation-only-one-to-only-one': '',
+ 'relation-only-one-to-zero-or-many': '',
+ 'relation-only-one-to-zero-or-one': '',
+ 'relation-zero-or-many-to-many': '',
+ 'relation-zero-or-many-to-one': '',
+ 'relation-zero-or-many-to-one-or-many': '',
+ 'relation-zero-or-many-to-only-one': '',
+ 'relation-zero-or-many-to-zero-or-many': '',
+ 'relation-zero-or-many-to-zero-or-one': '',
+ 'relation-zero-or-one-to-many': '',
+ 'relation-zero-or-one-to-one': '',
+ 'relation-zero-or-one-to-one-or-many': '',
+ 'relation-zero-or-one-to-only-one': '',
+ 'relation-zero-or-one-to-zero-or-many': '',
+ 'relation-zero-or-one-to-zero-or-one': '',
+ 'relative-scale': '',
+ 'reload': '',
+ 'reload-alert': '',
+ 'reminder': '',
+ 'remote': '',
+ 'remote-desktop': '',
+ 'remote-off': '',
+ 'remote-tv': '',
+ 'remote-tv-off': '',
+ 'rename-box': '',
+ 'reorder-horizontal': '',
+ 'reorder-vertical': '',
+ 'repeat': '',
+ 'repeat-off': '',
+ 'repeat-once': '',
+ 'repeat-variant': '',
+ 'replay': '',
+ 'reply': '',
+ 'reply-all': '',
+ 'reply-all-outline': '',
+ 'reply-circle': '',
+ 'reply-outline': '',
+ 'reproduction': '',
+ 'resistor': '',
+ 'resistor-nodes': '',
+ 'resize': '',
+ 'resize-bottom-right': '',
+ 'responsive': '',
+ 'restart': '',
+ 'restart-alert': '',
+ 'restart-off': '',
+ 'restore': '',
+ 'restore-alert': '',
+ 'rewind': '',
+ 'rewind-10': '',
+ 'rewind-15': '聾',
+ 'rewind-30': '',
+ 'rewind-5': '',
+ 'rewind-60': '',
+ 'rewind-outline': '',
+ 'rhombus': '',
+ 'rhombus-medium': '',
+ 'rhombus-medium-outline': '',
+ 'rhombus-outline': '',
+ 'rhombus-split': '',
+ 'rhombus-split-outline': '',
+ 'ribbon': '',
+ 'rice': '',
+ 'rickshaw': '',
+ 'rickshaw-electric': '',
+ 'ring': '',
+ 'rivet': '',
+ 'road': '',
+ 'road-variant': '',
+ 'robber': '',
+ 'robot': '',
+ 'robot-angry': '',
+ 'robot-angry-outline': '',
+ 'robot-confused': '',
+ 'robot-confused-outline': '',
+ 'robot-dead': '',
+ 'robot-dead-outline': '',
+ 'robot-excited': '',
+ 'robot-excited-outline': '',
+ 'robot-happy': '',
+ 'robot-happy-outline': '',
+ 'robot-industrial': '',
+ 'robot-industrial-outline': '神',
+ 'robot-love': '',
+ 'robot-love-outline': '',
+ 'robot-mower': '',
+ 'robot-mower-outline': '',
+ 'robot-off': '',
+ 'robot-off-outline': '',
+ 'robot-outline': '',
+ 'robot-vacuum': '',
+ 'robot-vacuum-variant': '',
+ 'rocket': '',
+ 'rocket-launch': '',
+ 'rocket-launch-outline': '',
+ 'rocket-outline': '',
+ 'rodent': '',
+ 'roller-shade': '頻',
+ 'roller-shade-closed': '恵',
+ 'roller-skate': '',
+ 'roller-skate-off': '',
+ 'rollerblade': '',
+ 'rollerblade-off': '',
+ 'rollupjs': '',
+ 'rolodex': '視',
+ 'rolodex-outline': '調',
+ 'roman-numeral-1': '',
+ 'roman-numeral-10': '',
+ 'roman-numeral-2': '',
+ 'roman-numeral-3': '',
+ 'roman-numeral-4': '',
+ 'roman-numeral-5': '',
+ 'roman-numeral-6': '',
+ 'roman-numeral-7': '',
+ 'roman-numeral-8': '',
+ 'roman-numeral-9': '',
+ 'room-service': '',
+ 'room-service-outline': '',
+ 'rotate-360': '輦',
+ 'rotate-3d': '',
+ 'rotate-3d-variant': '',
+ 'rotate-left': '',
+ 'rotate-left-variant': '',
+ 'rotate-orbit': '',
+ 'rotate-right': '',
+ 'rotate-right-variant': '',
+ 'rounded-corner': '',
+ 'router': '',
+ 'router-network': '',
+ 'router-wireless': '',
+ 'router-wireless-off': '',
+ 'router-wireless-settings': '',
+ 'routes': '',
+ 'routes-clock': '',
+ 'rowing': '',
+ 'rss': '',
+ 'rss-box': '',
+ 'rss-off': '',
+ 'rug': '',
+ 'rugby': '',
+ 'ruler': '',
+ 'ruler-square': '',
+ 'ruler-square-compass': '',
+ 'run': '',
+ 'run-fast': '',
+ 'rv-truck': '',
+ 'sack': '',
+ 'sack-percent': '',
+ 'safe': '',
+ 'safe-square': '',
+ 'safe-square-outline': '',
+ 'safety-goggles': '',
+ 'sail-boat': '',
+ 'sail-boat-sink': '',
+ 'sale': '',
+ 'sale-outline': '洞',
+ 'salesforce': '',
+ 'sass': '',
+ 'satellite': '',
+ 'satellite-uplink': '',
+ 'satellite-variant': '',
+ 'sausage': '',
+ 'sausage-off': '',
+ 'saw-blade': '',
+ 'sawtooth-wave': '',
+ 'saxophone': '',
+ 'scale': '',
+ 'scale-balance': '',
+ 'scale-bathroom': '',
+ 'scale-off': '',
+ 'scale-unbalanced': '醴',
+ 'scan-helper': '',
+ 'scanner': '',
+ 'scanner-off': '',
+ 'scatter-plot': '',
+ 'scatter-plot-outline': '',
+ 'scent': '綾',
+ 'scent-off': '菱',
+ 'school': '',
+ 'school-outline': '',
+ 'scissors-cutting': '',
+ 'scooter': '',
+ 'scooter-electric': '',
+ 'scoreboard': '',
+ 'scoreboard-outline': '',
+ 'screen-rotation': '',
+ 'screen-rotation-lock': '',
+ 'screw-flat-top': '',
+ 'screw-lag': '',
+ 'screw-machine-flat-top': '',
+ 'screw-machine-round-top': '',
+ 'screw-round-top': '',
+ 'screwdriver': '',
+ 'script': '',
+ 'script-outline': '',
+ 'script-text': '',
+ 'script-text-key': '',
+ 'script-text-key-outline': '',
+ 'script-text-outline': '',
+ 'script-text-play': '',
+ 'script-text-play-outline': '',
+ 'sd': '',
+ 'seal': '',
+ 'seal-variant': '',
+ 'search-web': '',
+ 'seat': '',
+ 'seat-flat': '',
+ 'seat-flat-angled': '',
+ 'seat-individual-suite': '',
+ 'seat-legroom-extra': '',
+ 'seat-legroom-normal': '',
+ 'seat-legroom-reduced': '',
+ 'seat-outline': '',
+ 'seat-passenger': '',
+ 'seat-recline-extra': '',
+ 'seat-recline-normal': '',
+ 'seatbelt': '',
+ 'security': '',
+ 'security-network': '',
+ 'seed': '',
+ 'seed-off': '',
+ 'seed-off-outline': '',
+ 'seed-outline': '',
+ 'seed-plus': '𤋮',
+ 'seed-plus-outline': '舘',
+ 'seesaw': '',
+ 'segment': '',
+ 'select': '',
+ 'select-all': '',
+ 'select-color': '',
+ 'select-compare': '',
+ 'select-drag': '',
+ 'select-group': '',
+ 'select-inverse': '',
+ 'select-marker': '',
+ 'select-multiple': '',
+ 'select-multiple-marker': '',
+ 'select-off': '',
+ 'select-place': '',
+ 'select-remove': '',
+ 'select-search': '',
+ 'selection': '',
+ 'selection-drag': '',
+ 'selection-ellipse': '',
+ 'selection-ellipse-arrow-inside': '',
+ 'selection-ellipse-remove': '',
+ 'selection-marker': '',
+ 'selection-multiple': '',
+ 'selection-multiple-marker': '',
+ 'selection-off': '',
+ 'selection-remove': '',
+ 'selection-search': '',
+ 'semantic-web': '',
+ 'send': '',
+ 'send-check': '',
+ 'send-check-outline': '',
+ 'send-circle': '',
+ 'send-circle-outline': '',
+ 'send-clock': '',
+ 'send-clock-outline': '',
+ 'send-lock': '',
+ 'send-lock-outline': '',
+ 'send-outline': '',
+ 'serial-port': '',
+ 'server': '',
+ 'server-minus': '',
+ 'server-network': '',
+ 'server-network-off': '',
+ 'server-off': '',
+ 'server-plus': '',
+ 'server-remove': '',
+ 'server-security': '',
+ 'set-all': '',
+ 'set-center': '',
+ 'set-center-right': '',
+ 'set-left': '',
+ 'set-left-center': '',
+ 'set-left-right': '',
+ 'set-merge': '',
+ 'set-none': '',
+ 'set-right': '',
+ 'set-split': '',
+ 'set-square': '',
+ 'set-top-box': '',
+ 'settings-helper': '',
+ 'shaker': '',
+ 'shaker-outline': '',
+ 'shape': '',
+ 'shape-circle-plus': '',
+ 'shape-outline': '',
+ 'shape-oval-plus': '',
+ 'shape-plus': '',
+ 'shape-polygon-plus': '',
+ 'shape-rectangle-plus': '',
+ 'shape-square-plus': '',
+ 'shape-square-rounded-plus': '',
+ 'share': '',
+ 'share-all': '',
+ 'share-all-outline': '',
+ 'share-circle': '',
+ 'share-off': '',
+ 'share-off-outline': '',
+ 'share-outline': '',
+ 'share-variant': '',
+ 'share-variant-outline': '',
+ 'shark': '',
+ 'shark-fin': '',
+ 'shark-fin-outline': '',
+ 'shark-off': '',
+ 'sheep': '',
+ 'shield': '',
+ 'shield-account': '',
+ 'shield-account-outline': '',
+ 'shield-account-variant': '',
+ 'shield-account-variant-outline': '',
+ 'shield-airplane': '',
+ 'shield-airplane-outline': '',
+ 'shield-alert': '',
+ 'shield-alert-outline': '',
+ 'shield-bug': '',
+ 'shield-bug-outline': '',
+ 'shield-car': '',
+ 'shield-check': '',
+ 'shield-check-outline': '',
+ 'shield-cross': '',
+ 'shield-cross-outline': '',
+ 'shield-crown': '',
+ 'shield-crown-outline': '',
+ 'shield-edit': '',
+ 'shield-edit-outline': '',
+ 'shield-half': '',
+ 'shield-half-full': '',
+ 'shield-home': '',
+ 'shield-home-outline': '',
+ 'shield-key': '',
+ 'shield-key-outline': '',
+ 'shield-link-variant': '',
+ 'shield-link-variant-outline': '',
+ 'shield-lock': '',
+ 'shield-lock-open': '蓮',
+ 'shield-lock-open-outline': '連',
+ 'shield-lock-outline': '',
+ 'shield-moon': '',
+ 'shield-moon-outline': '',
+ 'shield-off': '',
+ 'shield-off-outline': '',
+ 'shield-outline': '',
+ 'shield-plus': '',
+ 'shield-plus-outline': '',
+ 'shield-refresh': '',
+ 'shield-refresh-outline': '',
+ 'shield-remove': '',
+ 'shield-remove-outline': '',
+ 'shield-search': '',
+ 'shield-star': '',
+ 'shield-star-outline': '',
+ 'shield-sun': '',
+ 'shield-sun-outline': '',
+ 'shield-sword': '',
+ 'shield-sword-outline': '',
+ 'shield-sync': '',
+ 'shield-sync-outline': '',
+ 'shimmer': '',
+ 'ship-wheel': '',
+ 'shipping-pallet': '',
+ 'shoe-ballet': '',
+ 'shoe-cleat': '',
+ 'shoe-formal': '',
+ 'shoe-heel': '',
+ 'shoe-print': '',
+ 'shoe-sneaker': '',
+ 'shopping': '',
+ 'shopping-music': '',
+ 'shopping-outline': '',
+ 'shopping-search': '',
+ 'shopping-search-outline': '',
+ 'shore': '',
+ 'shovel': '',
+ 'shovel-off': '',
+ 'shower': '',
+ 'shower-head': '',
+ 'shredder': '',
+ 'shuffle': '',
+ 'shuffle-disabled': '',
+ 'shuffle-variant': '',
+ 'shuriken': '',
+ 'sickle': '',
+ 'sigma': '',
+ 'sigma-lower': '',
+ 'sign-caution': '',
+ 'sign-direction': '',
+ 'sign-direction-minus': '',
+ 'sign-direction-plus': '',
+ 'sign-direction-remove': '',
+ 'sign-pole': '',
+ 'sign-real-estate': '',
+ 'sign-text': '',
+ 'signal': '',
+ 'signal-2g': '',
+ 'signal-3g': '',
+ 'signal-4g': '',
+ 'signal-5g': '',
+ 'signal-cellular-1': '',
+ 'signal-cellular-2': '',
+ 'signal-cellular-3': '',
+ 'signal-cellular-outline': '',
+ 'signal-distance-variant': '',
+ 'signal-hspa': '',
+ 'signal-hspa-plus': '',
+ 'signal-off': '',
+ 'signal-variant': '',
+ 'signature': '',
+ 'signature-freehand': '',
+ 'signature-image': '',
+ 'signature-text': '',
+ 'silo': '',
+ 'silverware': '',
+ 'silverware-clean': '',
+ 'silverware-fork': '',
+ 'silverware-fork-knife': '',
+ 'silverware-spoon': '',
+ 'silverware-variant': '',
+ 'sim': '',
+ 'sim-alert': '',
+ 'sim-alert-outline': '',
+ 'sim-off': '',
+ 'sim-off-outline': '',
+ 'sim-outline': '',
+ 'simple-icons': '',
+ 'sina-weibo': '',
+ 'sine-wave': '',
+ 'sitemap': '',
+ 'sitemap-outline': '鍊',
+ 'size-l': '',
+ 'size-m': '',
+ 'size-s': '',
+ 'size-xl': '',
+ 'size-xs': '',
+ 'size-xxl': '',
+ 'size-xxs': '',
+ 'size-xxxl': '',
+ 'skate': '',
+ 'skate-off': '',
+ 'skateboard': '',
+ 'skateboarding': '',
+ 'skew-less': '',
+ 'skew-more': '',
+ 'ski': '',
+ 'ski-cross-country': '',
+ 'ski-water': '',
+ 'skip-backward': '',
+ 'skip-backward-outline': '',
+ 'skip-forward': '',
+ 'skip-forward-outline': '',
+ 'skip-next': '',
+ 'skip-next-circle': '',
+ 'skip-next-circle-outline': '',
+ 'skip-next-outline': '',
+ 'skip-previous': '',
+ 'skip-previous-circle': '',
+ 'skip-previous-circle-outline': '',
+ 'skip-previous-outline': '',
+ 'skull': '',
+ 'skull-crossbones': '',
+ 'skull-crossbones-outline': '',
+ 'skull-outline': '',
+ 'skull-scan': '',
+ 'skull-scan-outline': '',
+ 'skype': '',
+ 'skype-business': '',
+ 'slack': '',
+ 'slash-forward': '',
+ 'slash-forward-box': '',
+ 'sledding': '',
+ 'sleep': '',
+ 'sleep-off': '',
+ 'slide': '',
+ 'slope-downhill': '',
+ 'slope-uphill': '',
+ 'slot-machine': '',
+ 'slot-machine-outline': '',
+ 'smart-card': '',
+ 'smart-card-off': '',
+ 'smart-card-off-outline': '',
+ 'smart-card-outline': '',
+ 'smart-card-reader': '',
+ 'smart-card-reader-outline': '',
+ 'smog': '',
+ 'smoke': '',
+ 'smoke-detector': '',
+ 'smoke-detector-alert': '來',
+ 'smoke-detector-alert-outline': '冷',
+ 'smoke-detector-off': '',
+ 'smoke-detector-off-outline': '',
+ 'smoke-detector-outline': '',
+ 'smoke-detector-variant': '',
+ 'smoke-detector-variant-alert': '勞',
+ 'smoke-detector-variant-off': '',
+ 'smoking': '',
+ 'smoking-off': '',
+ 'smoking-pipe': '',
+ 'smoking-pipe-off': '',
+ 'snail': '',
+ 'snake': '',
+ 'snapchat': '',
+ 'snowboard': '',
+ 'snowflake': '',
+ 'snowflake-alert': '',
+ 'snowflake-check': '',
+ 'snowflake-melt': '',
+ 'snowflake-off': '',
+ 'snowflake-thermometer': '並',
+ 'snowflake-variant': '',
+ 'snowman': '',
+ 'snowmobile': '',
+ 'snowshoeing': '况',
+ 'soccer': '',
+ 'soccer-field': '',
+ 'social-distance-2-meters': '',
+ 'social-distance-6-feet': '',
+ 'sofa': '',
+ 'sofa-outline': '',
+ 'sofa-single': '',
+ 'sofa-single-outline': '',
+ 'solar-panel': '',
+ 'solar-panel-large': '',
+ 'solar-power': '',
+ 'solar-power-variant': '全',
+ 'solar-power-variant-outline': '侀',
+ 'soldering-iron': '',
+ 'solid': '',
+ 'sony-playstation': '',
+ 'sort': '',
+ 'sort-alphabetical-ascending': '',
+ 'sort-alphabetical-ascending-variant': '',
+ 'sort-alphabetical-descending': '',
+ 'sort-alphabetical-descending-variant': '',
+ 'sort-alphabetical-variant': '',
+ 'sort-ascending': '',
+ 'sort-bool-ascending': '',
+ 'sort-bool-ascending-variant': '',
+ 'sort-bool-descending': '',
+ 'sort-bool-descending-variant': '',
+ 'sort-calendar-ascending': '',
+ 'sort-calendar-descending': '',
+ 'sort-clock-ascending': '',
+ 'sort-clock-ascending-outline': '',
+ 'sort-clock-descending': '',
+ 'sort-clock-descending-outline': '',
+ 'sort-descending': '',
+ 'sort-numeric-ascending': '',
+ 'sort-numeric-ascending-variant': '',
+ 'sort-numeric-descending': '',
+ 'sort-numeric-descending-variant': '',
+ 'sort-numeric-variant': '',
+ 'sort-reverse-variant': '',
+ 'sort-variant': '',
+ 'sort-variant-lock': '',
+ 'sort-variant-lock-open': '',
+ 'sort-variant-off': '諸',
+ 'sort-variant-remove': '',
+ 'soundbar': '',
+ 'soundcloud': '',
+ 'source-branch': '',
+ 'source-branch-check': '',
+ 'source-branch-minus': '',
+ 'source-branch-plus': '',
+ 'source-branch-refresh': '',
+ 'source-branch-remove': '',
+ 'source-branch-sync': '',
+ 'source-commit': '',
+ 'source-commit-end': '',
+ 'source-commit-end-local': '',
+ 'source-commit-local': '',
+ 'source-commit-next-local': '',
+ 'source-commit-start': '',
+ 'source-commit-start-next-local': '',
+ 'source-fork': '',
+ 'source-merge': '',
+ 'source-pull': '',
+ 'source-repository': '',
+ 'source-repository-multiple': '',
+ 'soy-sauce': '',
+ 'soy-sauce-off': '',
+ 'spa': '',
+ 'spa-outline': '',
+ 'space-invaders': '',
+ 'space-station': '',
+ 'spade': '',
+ 'speaker': '',
+ 'speaker-bluetooth': '',
+ 'speaker-multiple': '',
+ 'speaker-off': '',
+ 'speaker-wireless': '',
+ 'spear': '',
+ 'speedometer': '',
+ 'speedometer-medium': '',
+ 'speedometer-slow': '',
+ 'spellcheck': '',
+ 'sphere': '肋',
+ 'sphere-off': '凜',
+ 'spider': '',
+ 'spider-thread': '',
+ 'spider-web': '',
+ 'spirit-level': '',
+ 'spoon-sugar': '',
+ 'spotify': '',
+ 'spotlight': '',
+ 'spotlight-beam': '',
+ 'spray': '',
+ 'spray-bottle': '',
+ 'sprinkler': '',
+ 'sprinkler-fire': '列',
+ 'sprinkler-variant': '',
+ 'sprout': '',
+ 'sprout-outline': '',
+ 'square': '',
+ 'square-circle': '',
+ 'square-edit-outline': '',
+ 'square-medium': '',
+ 'square-medium-outline': '',
+ 'square-off': '',
+ 'square-off-outline': '',
+ 'square-opacity': '',
+ 'square-outline': '',
+ 'square-root': '',
+ 'square-root-box': '',
+ 'square-rounded': '',
+ 'square-rounded-badge': '暴',
+ 'square-rounded-badge-outline': '輻',
+ 'square-rounded-outline': '',
+ 'square-small': '',
+ 'square-wave': '',
+ 'squeegee': '',
+ 'ssh': '',
+ 'stack-exchange': '',
+ 'stack-overflow': '',
+ 'stackpath': '',
+ 'stadium': '',
+ 'stadium-variant': '',
+ 'stairs': '',
+ 'stairs-box': '',
+ 'stairs-down': '',
+ 'stairs-up': '',
+ 'stamper': '',
+ 'standard-definition': '',
+ 'star': '',
+ 'star-box': '',
+ 'star-box-multiple': '',
+ 'star-box-multiple-outline': '',
+ 'star-box-outline': '',
+ 'star-check': '',
+ 'star-check-outline': '',
+ 'star-circle': '',
+ 'star-circle-outline': '',
+ 'star-cog': '',
+ 'star-cog-outline': '',
+ 'star-crescent': '',
+ 'star-david': '',
+ 'star-face': '',
+ 'star-four-points': '',
+ 'star-four-points-outline': '',
+ 'star-half': '',
+ 'star-half-full': '',
+ 'star-minus': '',
+ 'star-minus-outline': '',
+ 'star-off': '',
+ 'star-off-outline': '',
+ 'star-outline': '',
+ 'star-plus': '',
+ 'star-plus-outline': '',
+ 'star-remove': '',
+ 'star-remove-outline': '',
+ 'star-settings': '',
+ 'star-settings-outline': '',
+ 'star-shooting': '',
+ 'star-shooting-outline': '',
+ 'star-three-points': '',
+ 'star-three-points-outline': '',
+ 'state-machine': '',
+ 'steam': '',
+ 'steering': '',
+ 'steering-off': '',
+ 'step-backward': '',
+ 'step-backward-2': '',
+ 'step-forward': '',
+ 'step-forward-2': '',
+ 'stethoscope': '',
+ 'sticker': '',
+ 'sticker-alert': '',
+ 'sticker-alert-outline': '',
+ 'sticker-check': '',
+ 'sticker-check-outline': '',
+ 'sticker-circle-outline': '',
+ 'sticker-emoji': '',
+ 'sticker-minus': '',
+ 'sticker-minus-outline': '',
+ 'sticker-outline': '',
+ 'sticker-plus': '',
+ 'sticker-plus-outline': '',
+ 'sticker-remove': '',
+ 'sticker-remove-outline': '',
+ 'sticker-text': '',
+ 'sticker-text-outline': '',
+ 'stocking': '',
+ 'stomach': '',
+ 'stool': '樂',
+ 'stool-outline': '諾',
+ 'stop': '',
+ 'stop-circle': '',
+ 'stop-circle-outline': '',
+ 'storage-tank': '充',
+ 'storage-tank-outline': '冀',
+ 'store': '',
+ 'store-24-hour': '',
+ 'store-alert': '',
+ 'store-alert-outline': '',
+ 'store-check': '',
+ 'store-check-outline': '',
+ 'store-clock': '',
+ 'store-clock-outline': '',
+ 'store-cog': '',
+ 'store-cog-outline': '',
+ 'store-edit': '',
+ 'store-edit-outline': '',
+ 'store-marker': '',
+ 'store-marker-outline': '',
+ 'store-minus': '',
+ 'store-minus-outline': '',
+ 'store-off': '',
+ 'store-off-outline': '',
+ 'store-outline': '',
+ 'store-plus': '',
+ 'store-plus-outline': '',
+ 'store-remove': '',
+ 'store-remove-outline': '',
+ 'store-search': '',
+ 'store-search-outline': '',
+ 'store-settings': '',
+ 'store-settings-outline': '',
+ 'storefront': '',
+ 'storefront-outline': '',
+ 'stove': '',
+ 'strategy': '',
+ 'stretch-to-page': '',
+ 'stretch-to-page-outline': '',
+ 'string-lights': '',
+ 'string-lights-off': '',
+ 'subdirectory-arrow-left': '',
+ 'subdirectory-arrow-right': '',
+ 'submarine': '',
+ 'subtitles': '',
+ 'subtitles-outline': '',
+ 'subway': '',
+ 'subway-alert-variant': '',
+ 'subway-variant': '',
+ 'summit': '',
+ 'sun-clock': '勇',
+ 'sun-clock-outline': '勺',
+ 'sun-compass': '捻',
+ 'sun-snowflake': '',
+ 'sun-snowflake-variant': '喝',
+ 'sun-thermometer': '',
+ 'sun-thermometer-outline': '',
+ 'sun-wireless': '',
+ 'sun-wireless-outline': '',
+ 'sunglasses': '',
+ 'surfing': '',
+ 'surround-sound': '',
+ 'surround-sound-2-0': '',
+ 'surround-sound-2-1': '',
+ 'surround-sound-3-1': '',
+ 'surround-sound-5-1': '',
+ 'surround-sound-5-1-2': '',
+ 'surround-sound-7-1': '',
+ 'svg': '',
+ 'swap-horizontal': '',
+ 'swap-horizontal-bold': '',
+ 'swap-horizontal-circle': '',
+ 'swap-horizontal-circle-outline': '',
+ 'swap-horizontal-variant': '',
+ 'swap-vertical': '',
+ 'swap-vertical-bold': '',
+ 'swap-vertical-circle': '',
+ 'swap-vertical-circle-outline': '',
+ 'swap-vertical-variant': '',
+ 'swim': '',
+ 'switch': '',
+ 'sword': '',
+ 'sword-cross': '',
+ 'syllabary-hangul': '',
+ 'syllabary-hiragana': '',
+ 'syllabary-katakana': '',
+ 'syllabary-katakana-halfwidth': '',
+ 'symbol': '',
+ 'symfony': '',
+ 'sync': '',
+ 'sync-alert': '',
+ 'sync-circle': '',
+ 'sync-off': '',
+ 'tab': '',
+ 'tab-minus': '',
+ 'tab-plus': '',
+ 'tab-remove': '',
+ 'tab-search': '劣',
+ 'tab-unselected': '',
+ 'table': '',
+ 'table-account': '',
+ 'table-alert': '',
+ 'table-arrow-down': '',
+ 'table-arrow-left': '',
+ 'table-arrow-right': '',
+ 'table-arrow-up': '',
+ 'table-border': '',
+ 'table-cancel': '',
+ 'table-chair': '',
+ 'table-check': '',
+ 'table-clock': '',
+ 'table-cog': '',
+ 'table-column': '',
+ 'table-column-plus-after': '',
+ 'table-column-plus-before': '',
+ 'table-column-remove': '',
+ 'table-column-width': '',
+ 'table-edit': '',
+ 'table-eye': '',
+ 'table-eye-off': '',
+ 'table-furniture': '',
+ 'table-headers-eye': '',
+ 'table-headers-eye-off': '',
+ 'table-heart': '',
+ 'table-key': '',
+ 'table-large': '',
+ 'table-large-plus': '',
+ 'table-large-remove': '',
+ 'table-lock': '',
+ 'table-merge-cells': '',
+ 'table-minus': '',
+ 'table-multiple': '',
+ 'table-network': '',
+ 'table-of-contents': '',
+ 'table-off': '',
+ 'table-picnic': '',
+ 'table-pivot': '',
+ 'table-plus': '',
+ 'table-refresh': '',
+ 'table-remove': '',
+ 'table-row': '',
+ 'table-row-height': '',
+ 'table-row-plus-after': '',
+ 'table-row-plus-before': '',
+ 'table-row-remove': '',
+ 'table-search': '',
+ 'table-settings': '',
+ 'table-split-cell': '',
+ 'table-star': '',
+ 'table-sync': '',
+ 'table-tennis': '',
+ 'tablet': '',
+ 'tablet-android': '',
+ 'tablet-cellphone': '',
+ 'tablet-dashboard': '',
+ 'taco': '',
+ 'tag': '',
+ 'tag-arrow-down': '',
+ 'tag-arrow-down-outline': '',
+ 'tag-arrow-left': '',
+ 'tag-arrow-left-outline': '',
+ 'tag-arrow-right': '',
+ 'tag-arrow-right-outline': '',
+ 'tag-arrow-up': '',
+ 'tag-arrow-up-outline': '',
+ 'tag-check': '啕',
+ 'tag-check-outline': '喙',
+ 'tag-faces': '',
+ 'tag-heart': '',
+ 'tag-heart-outline': '',
+ 'tag-minus': '',
+ 'tag-minus-outline': '',
+ 'tag-multiple': '',
+ 'tag-multiple-outline': '',
+ 'tag-off': '',
+ 'tag-off-outline': '',
+ 'tag-outline': '',
+ 'tag-plus': '',
+ 'tag-plus-outline': '',
+ 'tag-remove': '',
+ 'tag-remove-outline': '',
+ 'tag-search': '句',
+ 'tag-search-outline': '龜',
+ 'tag-text': '',
+ 'tag-text-outline': '',
+ 'tailwind': '',
+ 'tally-mark-1': '請',
+ 'tally-mark-2': '謁',
+ 'tally-mark-3': '諾',
+ 'tally-mark-4': '諭',
+ 'tally-mark-5': '謹',
+ 'tangram': '',
+ 'tank': '',
+ 'tanker-truck': '',
+ 'tape-drive': '',
+ 'tape-measure': '',
+ 'target': '',
+ 'target-account': '',
+ 'target-variant': '',
+ 'taxi': '',
+ 'tea': '',
+ 'tea-outline': '',
+ 'teamviewer': '',
+ 'teddy-bear': '',
+ 'telescope': '',
+ 'television': '',
+ 'television-ambient-light': '',
+ 'television-box': '',
+ 'television-classic': '',
+ 'television-classic-off': '',
+ 'television-guide': '',
+ 'television-off': '',
+ 'television-pause': '',
+ 'television-play': '',
+ 'television-shimmer': '',
+ 'television-stop': '',
+ 'temperature-celsius': '',
+ 'temperature-fahrenheit': '',
+ 'temperature-kelvin': '',
+ 'tennis': '',
+ 'tennis-ball': '',
+ 'tent': '',
+ 'terraform': '',
+ 'terrain': '',
+ 'test-tube': '',
+ 'test-tube-empty': '',
+ 'test-tube-off': '',
+ 'text': '',
+ 'text-account': '',
+ 'text-box': '',
+ 'text-box-check': '',
+ 'text-box-check-outline': '',
+ 'text-box-edit': '嗢',
+ 'text-box-edit-outline': '塚',
+ 'text-box-minus': '',
+ 'text-box-minus-outline': '',
+ 'text-box-multiple': '',
+ 'text-box-multiple-outline': '',
+ 'text-box-outline': '',
+ 'text-box-plus': '',
+ 'text-box-plus-outline': '',
+ 'text-box-remove': '',
+ 'text-box-remove-outline': '',
+ 'text-box-search': '',
+ 'text-box-search-outline': '',
+ 'text-long': '',
+ 'text-recognition': '',
+ 'text-search': '',
+ 'text-search-variant': '墳',
+ 'text-shadow': '',
+ 'text-short': '',
+ 'text-to-speech': '',
+ 'text-to-speech-off': '',
+ 'texture': '',
+ 'texture-box': '',
+ 'theater': '',
+ 'theme-light-dark': '',
+ 'thermometer': '',
+ 'thermometer-alert': '',
+ 'thermometer-bluetooth': '',
+ 'thermometer-check': '奄',
+ 'thermometer-chevron-down': '',
+ 'thermometer-chevron-up': '',
+ 'thermometer-high': '',
+ 'thermometer-lines': '',
+ 'thermometer-low': '',
+ 'thermometer-minus': '',
+ 'thermometer-off': '',
+ 'thermometer-plus': '',
+ 'thermometer-water': '奔',
+ 'thermostat': '',
+ 'thermostat-box': '',
+ 'thought-bubble': '',
+ 'thought-bubble-outline': '',
+ 'thumb-down': '',
+ 'thumb-down-outline': '',
+ 'thumb-up': '',
+ 'thumb-up-outline': '',
+ 'thumbs-up-down': '',
+ 'thumbs-up-down-outline': '邏',
+ 'ticket': '',
+ 'ticket-account': '',
+ 'ticket-confirmation': '',
+ 'ticket-confirmation-outline': '',
+ 'ticket-outline': '',
+ 'ticket-percent': '',
+ 'ticket-percent-outline': '',
+ 'tie': '',
+ 'tilde': '',
+ 'tilde-off': '',
+ 'timelapse': '',
+ 'timeline': '',
+ 'timeline-alert': '',
+ 'timeline-alert-outline': '',
+ 'timeline-check': '',
+ 'timeline-check-outline': '',
+ 'timeline-clock': '',
+ 'timeline-clock-outline': '',
+ 'timeline-help': '',
+ 'timeline-help-outline': '',
+ 'timeline-minus': '',
+ 'timeline-minus-outline': '',
+ 'timeline-outline': '',
+ 'timeline-plus': '',
+ 'timeline-plus-outline': '',
+ 'timeline-remove': '',
+ 'timeline-remove-outline': '',
+ 'timeline-text': '',
+ 'timeline-text-outline': '',
+ 'timer': '',
+ 'timer-10': '',
+ 'timer-3': '',
+ 'timer-alert': '頋',
+ 'timer-alert-outline': '頻',
+ 'timer-cancel': '鬒',
+ 'timer-cancel-outline': '龜',
+ 'timer-check': '𢡊',
+ 'timer-check-outline': '𢡄',
+ 'timer-cog': '襤',
+ 'timer-cog-outline': '拉',
+ 'timer-edit': '𣏕',
+ 'timer-edit-outline': '㮝',
+ 'timer-lock': '䀘',
+ 'timer-lock-open': '䀹',
+ 'timer-lock-open-outline': '𥉉',
+ 'timer-lock-outline': '𥳐',
+ 'timer-marker': '𧻓',
+ 'timer-marker-outline': '齃',
+ 'timer-minus': '龎',
+ 'timer-minus-outline': '',
+ 'timer-music': '',
+ 'timer-music-outline': '',
+ 'timer-off': '',
+ 'timer-off-outline': '',
+ 'timer-outline': '',
+ 'timer-pause': '',
+ 'timer-pause-outline': '',
+ 'timer-play': '',
+ 'timer-play-outline': '',
+ 'timer-plus': '',
+ 'timer-plus-outline': '',
+ 'timer-refresh': '',
+ 'timer-refresh-outline': '',
+ 'timer-remove': '',
+ 'timer-remove-outline': '',
+ 'timer-sand': '',
+ 'timer-sand-complete': '咽',
+ 'timer-sand-empty': '',
+ 'timer-sand-full': '',
+ 'timer-sand-paused': '烈',
+ 'timer-settings': '濫',
+ 'timer-settings-outline': '藍',
+ 'timer-star': '',
+ 'timer-star-outline': '',
+ 'timer-stop': '',
+ 'timer-stop-outline': '',
+ 'timer-sync': '',
+ 'timer-sync-outline': '',
+ 'timetable': '',
+ 'tire': '',
+ 'toaster': '',
+ 'toaster-off': '',
+ 'toaster-oven': '',
+ 'toggle-switch': '',
+ 'toggle-switch-off': '',
+ 'toggle-switch-off-outline': '',
+ 'toggle-switch-outline': '',
+ 'toggle-switch-variant': '﨤',
+ 'toggle-switch-variant-off': '逸',
+ 'toilet': '',
+ 'toolbox': '',
+ 'toolbox-outline': '',
+ 'tools': '',
+ 'tooltip': '',
+ 'tooltip-account': '',
+ 'tooltip-cellphone': '',
+ 'tooltip-check': '',
+ 'tooltip-check-outline': '',
+ 'tooltip-edit': '',
+ 'tooltip-edit-outline': '',
+ 'tooltip-image': '',
+ 'tooltip-image-outline': '',
+ 'tooltip-minus': '',
+ 'tooltip-minus-outline': '',
+ 'tooltip-outline': '',
+ 'tooltip-plus': '',
+ 'tooltip-plus-outline': '',
+ 'tooltip-remove': '',
+ 'tooltip-remove-outline': '',
+ 'tooltip-text': '',
+ 'tooltip-text-outline': '',
+ 'tooth': '',
+ 'tooth-outline': '',
+ 'toothbrush': '',
+ 'toothbrush-electric': '',
+ 'toothbrush-paste': '',
+ 'torch': '',
+ 'tortoise': '',
+ 'toslink': '',
+ 'tournament': '',
+ 'tow-truck': '',
+ 'tower-beach': '',
+ 'tower-fire': '',
+ 'town-hall': '',
+ 'toy-brick': '',
+ 'toy-brick-marker': '',
+ 'toy-brick-marker-outline': '',
+ 'toy-brick-minus': '',
+ 'toy-brick-minus-outline': '',
+ 'toy-brick-outline': '',
+ 'toy-brick-plus': '',
+ 'toy-brick-plus-outline': '',
+ 'toy-brick-remove': '',
+ 'toy-brick-remove-outline': '',
+ 'toy-brick-search': '',
+ 'toy-brick-search-outline': '',
+ 'track-light': '',
+ 'trackpad': '',
+ 'trackpad-lock': '',
+ 'tractor': '',
+ 'tractor-variant': '',
+ 'trademark': '',
+ 'traffic-cone': '',
+ 'traffic-light': '',
+ 'traffic-light-outline': '',
+ 'train': '',
+ 'train-car': '',
+ 'train-car-passenger': '',
+ 'train-car-passenger-door': '',
+ 'train-car-passenger-door-open': '',
+ 'train-car-passenger-variant': '',
+ 'train-variant': '',
+ 'tram': '',
+ 'tram-side': '',
+ 'transcribe': '',
+ 'transcribe-close': '',
+ 'transfer': '',
+ 'transfer-down': '',
+ 'transfer-left': '',
+ 'transfer-right': '',
+ 'transfer-up': '',
+ 'transit-connection': '',
+ 'transit-connection-horizontal': '',
+ 'transit-connection-variant': '',
+ 'transit-detour': '',
+ 'transit-skip': '',
+ 'transit-transfer': '',
+ 'transition': '',
+ 'transition-masked': '',
+ 'translate': '',
+ 'translate-off': '',
+ 'transmission-tower': '',
+ 'transmission-tower-export': '狼',
+ 'transmission-tower-import': '郎',
+ 'transmission-tower-off': '隆',
+ 'trash-can': '',
+ 'trash-can-outline': '',
+ 'tray': '',
+ 'tray-alert': '',
+ 'tray-arrow-down': '',
+ 'tray-arrow-up': '',
+ 'tray-full': '',
+ 'tray-minus': '',
+ 'tray-plus': '',
+ 'tray-remove': '',
+ 'treasure-chest': '',
+ 'tree': '',
+ 'tree-outline': '',
+ 'trello': '',
+ 'trending-down': '',
+ 'trending-neutral': '',
+ 'trending-up': '',
+ 'triangle': '',
+ 'triangle-outline': '',
+ 'triangle-small-down': '行',
+ 'triangle-small-up': '降',
+ 'triangle-wave': '',
+ 'triforce': '',
+ 'trophy': '',
+ 'trophy-award': '',
+ 'trophy-broken': '',
+ 'trophy-outline': '',
+ 'trophy-variant': '',
+ 'trophy-variant-outline': '',
+ 'truck': '',
+ 'truck-alert': '利',
+ 'truck-alert-outline': '吏',
+ 'truck-cargo-container': '',
+ 'truck-check': '',
+ 'truck-check-outline': '',
+ 'truck-delivery': '',
+ 'truck-delivery-outline': '',
+ 'truck-fast': '',
+ 'truck-fast-outline': '',
+ 'truck-flatbed': '',
+ 'truck-minus': '玲',
+ 'truck-minus-outline': '寮',
+ 'truck-outline': '',
+ 'truck-plus': '怜',
+ 'truck-plus-outline': '僚',
+ 'truck-remove': '瑩',
+ 'truck-remove-outline': '尿',
+ 'truck-snowflake': '殮',
+ 'truck-trailer': '',
+ 'trumpet': '',
+ 'tshirt-crew': '',
+ 'tshirt-crew-outline': '',
+ 'tshirt-v': '',
+ 'tshirt-v-outline': '',
+ 'tsunami': '婢',
+ 'tumble-dryer': '',
+ 'tumble-dryer-alert': '',
+ 'tumble-dryer-off': '',
+ 'tune': '',
+ 'tune-variant': '',
+ 'tune-vertical': '',
+ 'tune-vertical-variant': '',
+ 'tunnel': '',
+ 'tunnel-outline': '',
+ 'turbine': '嬨',
+ 'turkey': '',
+ 'turnstile': '',
+ 'turnstile-outline': '',
+ 'turtle': '',
+ 'twitch': '',
+ 'twitter': '',
+ 'two-factor-authentication': '',
+ 'typewriter': '',
+ 'ubisoft': '',
+ 'ubuntu': '',
+ 'ufo': '',
+ 'ufo-outline': '',
+ 'ultra-high-definition': '',
+ 'umbraco': '',
+ 'umbrella': '',
+ 'umbrella-beach': '',
+ 'umbrella-beach-outline': '',
+ 'umbrella-closed': '',
+ 'umbrella-closed-outline': '',
+ 'umbrella-closed-variant': '',
+ 'umbrella-outline': '',
+ 'undo': '',
+ 'undo-variant': '',
+ 'unfold-less-horizontal': '',
+ 'unfold-less-vertical': '',
+ 'unfold-more-horizontal': '',
+ 'unfold-more-vertical': '',
+ 'ungroup': '',
+ 'unicode': '',
+ 'unicorn': '',
+ 'unicorn-variant': '',
+ 'unicycle': '',
+ 'unity': '',
+ 'unreal': '',
+ 'update': '',
+ 'upload': '',
+ 'upload-lock': '',
+ 'upload-lock-outline': '',
+ 'upload-multiple': '',
+ 'upload-network': '',
+ 'upload-network-outline': '',
+ 'upload-off': '',
+ 'upload-off-outline': '',
+ 'upload-outline': '',
+ 'usb': '',
+ 'usb-flash-drive': '',
+ 'usb-flash-drive-outline': '',
+ 'usb-port': '',
+ 'vacuum': '裂',
+ 'vacuum-outline': '說',
+ 'valve': '',
+ 'valve-closed': '',
+ 'valve-open': '',
+ 'van-passenger': '',
+ 'van-utility': '',
+ 'vanish': '',
+ 'vanish-quarter': '',
+ 'vanity-light': '',
+ 'variable': '',
+ 'variable-box': '',
+ 'vector-arrange-above': '',
+ 'vector-arrange-below': '',
+ 'vector-bezier': '',
+ 'vector-circle': '',
+ 'vector-circle-variant': '',
+ 'vector-combine': '',
+ 'vector-curve': '',
+ 'vector-difference': '',
+ 'vector-difference-ab': '',
+ 'vector-difference-ba': '',
+ 'vector-ellipse': '',
+ 'vector-intersection': '',
+ 'vector-line': '',
+ 'vector-link': '',
+ 'vector-point': '',
+ 'vector-polygon': '',
+ 'vector-polygon-variant': '',
+ 'vector-polyline': '',
+ 'vector-polyline-edit': '',
+ 'vector-polyline-minus': '',
+ 'vector-polyline-plus': '',
+ 'vector-polyline-remove': '',
+ 'vector-radius': '',
+ 'vector-rectangle': '',
+ 'vector-selection': '',
+ 'vector-square': '',
+ 'vector-square-close': '',
+ 'vector-square-edit': '',
+ 'vector-square-minus': '',
+ 'vector-square-open': '',
+ 'vector-square-plus': '',
+ 'vector-square-remove': '',
+ 'vector-triangle': '',
+ 'vector-union': '',
+ 'vhs': '',
+ 'vibrate': '',
+ 'vibrate-off': '',
+ 'video': '',
+ 'video-2d': '福',
+ 'video-3d': '',
+ 'video-3d-off': '',
+ 'video-3d-variant': '',
+ 'video-4k-box': '',
+ 'video-account': '',
+ 'video-box': '',
+ 'video-box-off': '',
+ 'video-check': '',
+ 'video-check-outline': '',
+ 'video-high-definition': '',
+ 'video-image': '',
+ 'video-input-antenna': '',
+ 'video-input-component': '',
+ 'video-input-hdmi': '',
+ 'video-input-scart': '',
+ 'video-input-svideo': '',
+ 'video-marker': '令',
+ 'video-marker-outline': '囹',
+ 'video-minus': '',
+ 'video-minus-outline': '',
+ 'video-off': '',
+ 'video-off-outline': '',
+ 'video-outline': '',
+ 'video-plus': '',
+ 'video-plus-outline': '',
+ 'video-stabilization': '',
+ 'video-switch': '',
+ 'video-switch-outline': '',
+ 'video-vintage': '',
+ 'video-wireless': '',
+ 'video-wireless-outline': '',
+ 'view-agenda': '',
+ 'view-agenda-outline': '',
+ 'view-array': '',
+ 'view-array-outline': '',
+ 'view-carousel': '',
+ 'view-carousel-outline': '',
+ 'view-column': '',
+ 'view-column-outline': '',
+ 'view-comfy': '',
+ 'view-comfy-outline': '',
+ 'view-compact': '',
+ 'view-compact-outline': '',
+ 'view-dashboard': '',
+ 'view-dashboard-edit': '牢',
+ 'view-dashboard-edit-outline': '磊',
+ 'view-dashboard-outline': '',
+ 'view-dashboard-variant': '',
+ 'view-dashboard-variant-outline': '',
+ 'view-day': '',
+ 'view-day-outline': '',
+ 'view-gallery': '',
+ 'view-gallery-outline': '',
+ 'view-grid': '',
+ 'view-grid-outline': '',
+ 'view-grid-plus': '',
+ 'view-grid-plus-outline': '',
+ 'view-headline': '',
+ 'view-list': '',
+ 'view-list-outline': '',
+ 'view-module': '',
+ 'view-module-outline': '',
+ 'view-parallel': '',
+ 'view-parallel-outline': '',
+ 'view-quilt': '',
+ 'view-quilt-outline': '',
+ 'view-sequential': '',
+ 'view-sequential-outline': '',
+ 'view-split-horizontal': '',
+ 'view-split-vertical': '',
+ 'view-stream': '',
+ 'view-stream-outline': '',
+ 'view-week': '',
+ 'view-week-outline': '',
+ 'vimeo': '',
+ 'violin': '',
+ 'virtual-reality': '',
+ 'virus': '',
+ 'virus-off': '',
+ 'virus-off-outline': '',
+ 'virus-outline': '',
+ 'vlc': '',
+ 'voicemail': '',
+ 'volcano': '廒',
+ 'volcano-outline': '廙',
+ 'volleyball': '',
+ 'volume-high': '',
+ 'volume-low': '',
+ 'volume-medium': '',
+ 'volume-minus': '',
+ 'volume-mute': '',
+ 'volume-off': '',
+ 'volume-plus': '',
+ 'volume-source': '',
+ 'volume-variant-off': '',
+ 'volume-vibrate': '',
+ 'vote': '',
+ 'vote-outline': '',
+ 'vpn': '',
+ 'vuejs': '',
+ 'vuetify': '',
+ 'walk': '',
+ 'wall': '',
+ 'wall-fire': '塚',
+ 'wall-sconce': '',
+ 'wall-sconce-flat': '',
+ 'wall-sconce-flat-outline': '',
+ 'wall-sconce-flat-variant': '',
+ 'wall-sconce-flat-variant-outline': '',
+ 'wall-sconce-outline': '',
+ 'wall-sconce-round': '',
+ 'wall-sconce-round-outline': '',
+ 'wall-sconce-round-variant': '',
+ 'wall-sconce-round-variant-outline': '',
+ 'wallet': '',
+ 'wallet-giftcard': '',
+ 'wallet-membership': '',
+ 'wallet-outline': '',
+ 'wallet-plus': '',
+ 'wallet-plus-outline': '',
+ 'wallet-travel': '',
+ 'wallpaper': '',
+ 'wan': '',
+ 'wardrobe': '',
+ 'wardrobe-outline': '',
+ 'warehouse': '',
+ 'washing-machine': '',
+ 'washing-machine-alert': '',
+ 'washing-machine-off': '',
+ 'watch': '',
+ 'watch-export': '',
+ 'watch-export-variant': '',
+ 'watch-import': '',
+ 'watch-import-variant': '',
+ 'watch-variant': '',
+ 'watch-vibrate': '',
+ 'watch-vibrate-off': '',
+ 'water': '',
+ 'water-alert': '',
+ 'water-alert-outline': '',
+ 'water-boiler': '',
+ 'water-boiler-alert': '',
+ 'water-boiler-off': '',
+ 'water-check': '',
+ 'water-check-outline': '',
+ 'water-circle': '',
+ 'water-minus': '',
+ 'water-minus-outline': '',
+ 'water-off': '',
+ 'water-off-outline': '',
+ 'water-opacity': '',
+ 'water-outline': '',
+ 'water-percent': '',
+ 'water-percent-alert': '',
+ 'water-plus': '',
+ 'water-plus-outline': '',
+ 'water-polo': '',
+ 'water-pump': '',
+ 'water-pump-off': '',
+ 'water-remove': '',
+ 'water-remove-outline': '',
+ 'water-sync': '',
+ 'water-thermometer': '彩',
+ 'water-thermometer-outline': '徭',
+ 'water-well': '',
+ 'water-well-outline': '',
+ 'waterfall': '',
+ 'watering-can': '',
+ 'watering-can-outline': '',
+ 'watermark': '',
+ 'wave': '',
+ 'waveform': '',
+ 'waves': '',
+ 'waves-arrow-left': '',
+ 'waves-arrow-right': '',
+ 'waves-arrow-up': '',
+ 'waze': '',
+ 'weather-cloudy': '',
+ 'weather-cloudy-alert': '',
+ 'weather-cloudy-arrow-right': '',
+ 'weather-cloudy-clock': '',
+ 'weather-fog': '',
+ 'weather-hail': '',
+ 'weather-hazy': '',
+ 'weather-hurricane': '',
+ 'weather-lightning': '',
+ 'weather-lightning-rainy': '',
+ 'weather-night': '',
+ 'weather-night-partly-cloudy': '',
+ 'weather-partly-cloudy': '',
+ 'weather-partly-lightning': '',
+ 'weather-partly-rainy': '',
+ 'weather-partly-snowy': '',
+ 'weather-partly-snowy-rainy': '',
+ 'weather-pouring': '',
+ 'weather-rainy': '',
+ 'weather-snowy': '',
+ 'weather-snowy-heavy': '',
+ 'weather-snowy-rainy': '',
+ 'weather-sunny': '',
+ 'weather-sunny-alert': '',
+ 'weather-sunny-off': '',
+ 'weather-sunset': '',
+ 'weather-sunset-down': '',
+ 'weather-sunset-up': '',
+ 'weather-tornado': '',
+ 'weather-windy': '',
+ 'weather-windy-variant': '',
+ 'web': '',
+ 'web-box': '',
+ 'web-cancel': '',
+ 'web-check': '',
+ 'web-clock': '',
+ 'web-minus': '',
+ 'web-off': '',
+ 'web-plus': '',
+ 'web-refresh': '',
+ 'web-remove': '',
+ 'web-sync': '',
+ 'webcam': '',
+ 'webcam-off': '',
+ 'webhook': '',
+ 'webpack': '',
+ 'webrtc': '',
+ 'wechat': '',
+ 'weight': '',
+ 'weight-gram': '',
+ 'weight-kilogram': '',
+ 'weight-lifter': '',
+ 'weight-pound': '',
+ 'whatsapp': '',
+ 'wheel-barrow': '',
+ 'wheelchair': '惘',
+ 'wheelchair-accessibility': '',
+ 'whistle': '',
+ 'whistle-outline': '',
+ 'white-balance-auto': '',
+ 'white-balance-incandescent': '',
+ 'white-balance-iridescent': '',
+ 'white-balance-sunny': '',
+ 'widgets': '',
+ 'widgets-outline': '',
+ 'wifi': '',
+ 'wifi-alert': '',
+ 'wifi-arrow-down': '',
+ 'wifi-arrow-left': '',
+ 'wifi-arrow-left-right': '',
+ 'wifi-arrow-right': '',
+ 'wifi-arrow-up': '',
+ 'wifi-arrow-up-down': '',
+ 'wifi-cancel': '',
+ 'wifi-check': '',
+ 'wifi-cog': '',
+ 'wifi-lock': '',
+ 'wifi-lock-open': '',
+ 'wifi-marker': '',
+ 'wifi-minus': '',
+ 'wifi-off': '',
+ 'wifi-plus': '',
+ 'wifi-refresh': '',
+ 'wifi-remove': '',
+ 'wifi-settings': '',
+ 'wifi-star': '',
+ 'wifi-strength-1': '',
+ 'wifi-strength-1-alert': '',
+ 'wifi-strength-1-lock': '',
+ 'wifi-strength-1-lock-open': '',
+ 'wifi-strength-2': '',
+ 'wifi-strength-2-alert': '',
+ 'wifi-strength-2-lock': '',
+ 'wifi-strength-2-lock-open': '',
+ 'wifi-strength-3': '',
+ 'wifi-strength-3-alert': '',
+ 'wifi-strength-3-lock': '',
+ 'wifi-strength-3-lock-open': '',
+ 'wifi-strength-4': '',
+ 'wifi-strength-4-alert': '',
+ 'wifi-strength-4-lock': '',
+ 'wifi-strength-4-lock-open': '',
+ 'wifi-strength-alert-outline': '',
+ 'wifi-strength-lock-open-outline': '',
+ 'wifi-strength-lock-outline': '',
+ 'wifi-strength-off': '',
+ 'wifi-strength-off-outline': '',
+ 'wifi-strength-outline': '',
+ 'wifi-sync': '',
+ 'wikipedia': '',
+ 'wind-power': '慎',
+ 'wind-power-outline': '愈',
+ 'wind-turbine': '',
+ 'wind-turbine-alert': '寧',
+ 'wind-turbine-check': '嶺',
+ 'window-close': '',
+ 'window-closed': '',
+ 'window-closed-variant': '',
+ 'window-maximize': '',
+ 'window-minimize': '',
+ 'window-open': '',
+ 'window-open-variant': '',
+ 'window-restore': '',
+ 'window-shutter': '',
+ 'window-shutter-alert': '',
+ 'window-shutter-cog': '憎',
+ 'window-shutter-open': '',
+ 'window-shutter-settings': '慠',
+ 'windsock': '',
+ 'wiper': '',
+ 'wiper-wash': '',
+ 'wiper-wash-alert': '',
+ 'wizard-hat': '',
+ 'wordpress': '',
+ 'wrap': '',
+ 'wrap-disabled': '',
+ 'wrench': '',
+ 'wrench-clock': '廉',
+ 'wrench-outline': '',
+ 'xamarin': '',
+ 'xml': '',
+ 'xmpp': '',
+ 'yahoo': '',
+ 'yeast': '',
+ 'yin-yang': '',
+ 'yoga': '',
+ 'youtube': '',
+ 'youtube-gaming': '',
+ 'youtube-studio': '',
+ 'youtube-subscription': '',
+ 'youtube-tv': '',
+ 'yurt': '',
+ 'z-wave': '',
+ 'zend': '',
+ 'zigbee': '',
+ 'zip-box': '',
+ 'zip-box-outline': '',
+ 'zip-disk': '',
+ 'zodiac-aquarius': '',
+ 'zodiac-aries': '',
+ 'zodiac-cancer': '',
+ 'zodiac-capricorn': '',
+ 'zodiac-gemini': '',
+ 'zodiac-leo': '',
+ 'zodiac-libra': '',
+ 'zodiac-pisces': '',
+ 'zodiac-sagittarius': '',
+ 'zodiac-scorpio': '',
+ 'zodiac-taurus': '',
+ 'zodiac-virgo': '',
+}
+
+# import apis
+
+
+def get_icon_id(ma_name):
+ if isinstance(ma_name, re.Match):
+ ma_name = ma_name.group(0).replace('', '').replace('', '')
+
+ if "text:" in ma_name:
+ return ma_name.replace("text:", "")
+ # if "ha:" in ma_name:
+ # splitted_string = ma_name.replace("ha:","").rpartition('}')
+ # template_string = f"{splitted_string[0]}{splitted_string[1]}"
+ # templates_result = apis.ha_api.render_template(template_string)
+ # if isinstance(templates_result, str):
+ # templates_result = re.sub(r".+?<\/I>", get_icon_id, templates_result)
+ # return f"{templates_result}{splitted_string[2]}"
+
+ ma_name = ma_name.replace("mdi:", "")
+ if ma_name in icons:
+ return icons[ma_name]
+ else:
+ return icons["alert-circle-outline"]
+
+
+def get_icon_char(ma_name):
+ return get_icon_id(ma_name)
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/localization.py b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/localization.py
new file mode 100644
index 00000000..d37ba01e
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/localization.py
@@ -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
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/panel_cmd.py b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/panel_cmd.py
new file mode 100644
index 00000000..cfc103c4
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/panel_cmd.py
@@ -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}")
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/af.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/af.json
new file mode 100644
index 00000000..39b71290
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/af.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ar.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ar.json
new file mode 100644
index 00000000..57c48e7d
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ar.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/bg.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/bg.json
new file mode 100644
index 00000000..a2a229ee
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/bg.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/bn.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/bn.json
new file mode 100644
index 00000000..9e26dfee
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/bn.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/bs.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/bs.json
new file mode 100644
index 00000000..b085e2b9
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/bs.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ca.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ca.json
new file mode 100644
index 00000000..88a9552f
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ca.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/cs.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/cs.json
new file mode 100644
index 00000000..eb9aabfb
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/cs.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/cy.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/cy.json
new file mode 100644
index 00000000..24b417aa
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/cy.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/da.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/da.json
new file mode 100644
index 00000000..f6e9daf3
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/da.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/de.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/de.json
new file mode 100644
index 00000000..802f13c0
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/de.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/el.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/el.json
new file mode 100644
index 00000000..a574239a
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/el.json
@@ -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} )"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/en-GB.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/en-GB.json
new file mode 100644
index 00000000..9e26dfee
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/en-GB.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/en.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/en.json
new file mode 100644
index 00000000..77102fa8
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/en.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/eo.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/eo.json
new file mode 100644
index 00000000..7e9ecad6
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/eo.json
@@ -0,0 +1,3 @@
+{
+ "component": {}
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/es.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/es.json
new file mode 100644
index 00000000..9c1be13b
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/es.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/et.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/et.json
new file mode 100644
index 00000000..2648a7c7
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/et.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/eu.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/eu.json
new file mode 100644
index 00000000..038844b4
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/eu.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/fa.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/fa.json
new file mode 100644
index 00000000..c3074894
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/fa.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/fi.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/fi.json
new file mode 100644
index 00000000..0d843bb6
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/fi.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/fr.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/fr.json
new file mode 100644
index 00000000..27e00a35
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/fr.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/fy.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/fy.json
new file mode 100644
index 00000000..9e26dfee
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/fy.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/gl.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/gl.json
new file mode 100644
index 00000000..9e26dfee
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/gl.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/gsw.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/gsw.json
new file mode 100644
index 00000000..6ce7998f
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/gsw.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/he.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/he.json
new file mode 100644
index 00000000..68eee50f
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/he.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/hi.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/hi.json
new file mode 100644
index 00000000..89143d7f
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/hi.json
@@ -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} )"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/hr.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/hr.json
new file mode 100644
index 00000000..5b3e6ca1
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/hr.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/hu.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/hu.json
new file mode 100644
index 00000000..d88f1307
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/hu.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/hy.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/hy.json
new file mode 100644
index 00000000..a9b951ed
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/hy.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/iba.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/iba.json
new file mode 100644
index 00000000..7e9ecad6
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/iba.json
@@ -0,0 +1,3 @@
+{
+ "component": {}
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/id.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/id.json
new file mode 100644
index 00000000..0eda3504
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/id.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/is.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/is.json
new file mode 100644
index 00000000..bcd4840b
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/is.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/it.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/it.json
new file mode 100644
index 00000000..40ef1a30
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/it.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ja.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ja.json
new file mode 100644
index 00000000..9018e94f
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ja.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ka.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ka.json
new file mode 100644
index 00000000..9e26dfee
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ka.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ko.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ko.json
new file mode 100644
index 00000000..3ae6102d
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ko.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/lb.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/lb.json
new file mode 100644
index 00000000..61d4bc15
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/lb.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/lt.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/lt.json
new file mode 100644
index 00000000..77b9392a
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/lt.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/lv.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/lv.json
new file mode 100644
index 00000000..245e5a95
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/lv.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/nb.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/nb.json
new file mode 100644
index 00000000..d41dce32
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/nb.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/nl.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/nl.json
new file mode 100644
index 00000000..8ba4601a
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/nl.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/nn.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/nn.json
new file mode 100644
index 00000000..65329c4b
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/nn.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/no.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/no.json
new file mode 100644
index 00000000..28744448
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/no.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/pl.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/pl.json
new file mode 100644
index 00000000..79dbc136
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/pl.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/pt-BR.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/pt-BR.json
new file mode 100644
index 00000000..60065a6b
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/pt-BR.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/pt.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/pt.json
new file mode 100644
index 00000000..c0149329
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/pt.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ro.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ro.json
new file mode 100644
index 00000000..805e2eb9
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ro.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ru.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ru.json
new file mode 100644
index 00000000..0ee4970f
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ru.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/sk.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/sk.json
new file mode 100644
index 00000000..7bdd3fa4
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/sk.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/sl.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/sl.json
new file mode 100644
index 00000000..0ca2d317
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/sl.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/sr-Latn.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/sr-Latn.json
new file mode 100644
index 00000000..ccbe879c
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/sr-Latn.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/sr.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/sr.json
new file mode 100644
index 00000000..add2b07a
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/sr.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/sv.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/sv.json
new file mode 100644
index 00000000..bcb3a08e
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/sv.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ta.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ta.json
new file mode 100644
index 00000000..dcb83481
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ta.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/te.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/te.json
new file mode 100644
index 00000000..ffe2baaf
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/te.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/th.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/th.json
new file mode 100644
index 00000000..b4f0bde5
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/th.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/tr.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/tr.json
new file mode 100644
index 00000000..a349c17a
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/tr.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/uk.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/uk.json
new file mode 100644
index 00000000..5b3ba0db
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/uk.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ur.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ur.json
new file mode 100644
index 00000000..7e9ecad6
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/ur.json
@@ -0,0 +1,3 @@
+{
+ "component": {}
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/vi.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/vi.json
new file mode 100644
index 00000000..2ca28b76
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/vi.json
@@ -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})"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/zh-Hans.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/zh-Hans.json
new file mode 100644
index 00000000..f885d30c
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/zh-Hans.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/zh-Hant.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/zh-Hant.json
new file mode 100644
index 00000000..d678787e
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/backend/zh-Hant.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/af.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/af.json
new file mode 100644
index 00000000..9ba97b52
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/af.json
@@ -0,0 +1,1595 @@
+{
+ "groups": {
+ "system-admin": "Administrateurs",
+ "system-read-only": "Leesalleen-gebruikers",
+ "system-users": "Gebruikers"
+ },
+ "panel": {
+ "calendar": "Kalender",
+ "config": "Opstellings",
+ "developer_tools": "Ontwikkelaar Hulpmiddels",
+ "history": "Geskiedenis",
+ "logbook": "Logboek",
+ "mailbox": "Posbus",
+ "map": "Kaart",
+ "profile": "Profiel",
+ "shopping_list": "Inkopielys",
+ "states": "Oorsig"
+ },
+ "state": {
+ "default": {
+ "off": "Af",
+ "on": "Aan",
+ "unavailable": "Nie beskikbaar nie",
+ "unknown": "Onbekend"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Outo",
+ "off": "Af",
+ "on": "Aan"
+ },
+ "hvac_action": {
+ "cooling": "Koel Af",
+ "drying": "Droog Uit",
+ "fan": "Waaier",
+ "heating": "Verhit",
+ "idle": "Onaktief",
+ "off": "Af"
+ },
+ "preset_mode": {
+ "activity": "Aktiwiteit",
+ "away": "Elders",
+ "boost": "Hupstoot",
+ "comfort": "Gemak",
+ "eco": "Eko",
+ "home": "Tuis",
+ "none": "Geen",
+ "sleep": "Slaap"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Gewapen",
+ "armed_away": "Aktief",
+ "armed_custom_bypass": "Gewapen",
+ "armed_home": "Gewapen",
+ "armed_night": "Aktief",
+ "arming": "Bewapen Tans",
+ "disarmed": "Ontwapen",
+ "disarming": "Ontwapen",
+ "pending": "Hangend",
+ "triggered": "Lui"
+ },
+ "default": {
+ "entity_not_found": "Entiteit nie gevind nie",
+ "error": "Fout",
+ "unavailable": "Onbeskik",
+ "unknown": "?"
+ },
+ "device_tracker": {
+ "home": "Tuis",
+ "not_home": "[%key:state_badge::person::not_home%]"
+ },
+ "person": {
+ "home": "Tuis",
+ "not_home": "[%key:state_badge::person::not_home%]"
+ }
+ },
+ "supervisor": {
+ "backup": {
+ "created": "Geskep"
+ },
+ "my": {
+ "error_addon_no_ingress": "Die aangevraagde byvoegsel ondersteun nie ingryping nie"
+ },
+ "system": {
+ "supervisor": {
+ "search": "Soek"
+ }
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Wil u hierdie aanmelding stoor?",
+ "confirm": "Stoor aanmelding",
+ "decline": "Nee"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Bewapen weg",
+ "arm_custom_bypass": "Pasgemaakte omseil",
+ "arm_home": "Bewapen Huis",
+ "arm_night": "Nag alarm",
+ "clear_code": "Maak skoon",
+ "code": "Kode",
+ "disarm": "Skakel Af"
+ },
+ "automation": {
+ "last_triggered": "Laas geaktiveer",
+ "trigger": "Sneller"
+ },
+ "camera": {
+ "not_available": "Beeld nie beskikbaar nie"
+ },
+ "climate": {
+ "aux_heat": "Aanvullende hitte",
+ "away_mode": "Wegmodus",
+ "currently": "Tans",
+ "fan_mode": "Waaier modus",
+ "on_off": "Aan / af",
+ "operation": "Operasie",
+ "preset_mode": "Voorafbepaalde",
+ "swing_mode": "Swaai modus",
+ "target_humidity": "Teiken humiditeit",
+ "target_temperature": "Teiken temperatuur"
+ },
+ "cover": {
+ "position": "Posisie",
+ "tilt_position": "Kantel posisie"
+ },
+ "fan": {
+ "direction": "Rigting",
+ "oscillate": "Ossilleer",
+ "speed": "Spoed"
+ },
+ "light": {
+ "brightness": "Helderheid",
+ "color_temperature": "Kleur temperatuur",
+ "effect": "Effek",
+ "white_value": "Wit ligwaarde"
+ },
+ "lock": {
+ "code": "Kode",
+ "lock": "Sluit toe",
+ "unlock": "Sluit oop"
+ },
+ "media_player": {
+ "sound_mode": "Klank modus",
+ "source": "Bron",
+ "text_to_speak": "Teks na spraak"
+ },
+ "persistent_notification": {
+ "dismiss": "Ontslaan"
+ },
+ "scene": {
+ "activate": "Aktiveer"
+ },
+ "service": {
+ "run": "Hardloop"
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Hervat stofsuig",
+ "return_to_base": "Keer terug na die hawe",
+ "start_cleaning": "Begin stofsuig",
+ "turn_off": "Skakel af",
+ "turn_on": "Skakel aan"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Afwesig modus",
+ "currently": "Tans",
+ "on_off": "Aan / af",
+ "operation": "Operasie",
+ "target_temperature": "Teiken temperatuur"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Lugdruk",
+ "humidity": "Humiditeit",
+ "temperature": "Temperatuur",
+ "visibility": "Sigbaarheid",
+ "wind_speed": "Windspoed"
+ },
+ "cardinal_direction": {
+ "e": "O",
+ "ene": "ONO",
+ "ese": "OSO",
+ "n": "N",
+ "ne": "NO",
+ "nne": "NNO",
+ "nnw": "NNW",
+ "nw": "NW",
+ "s": "S",
+ "se": "SO",
+ "sse": "SSO",
+ "ssw": "SSW",
+ "sw": "SW",
+ "w": "W",
+ "wnw": "WNW",
+ "wsw": "WSW"
+ },
+ "forecast": "Voorspelling"
+ }
+ },
+ "common": {
+ "cancel": "Kanselleer",
+ "close": "Sluit",
+ "copied": "Copiato",
+ "loading": "Laai tans",
+ "save": "Stoor"
+ },
+ "components": {
+ "area-picker": {
+ "add_dialog": {
+ "add": "Voeg by",
+ "failed_create_area": "Het misluk om area the skep",
+ "name": "Naam",
+ "text": "Voer die naam van die nuwe area in.",
+ "title": "Voeg 'n nuwe area by"
+ },
+ "add_new": "Voeg 'n nuwe area by",
+ "area": "Area",
+ "clear": "Maak skoon",
+ "show_areas": "Wys areas"
+ },
+ "device-picker": {
+ "device": "Toestel",
+ "toggle": "Verwissel"
+ },
+ "entity": {
+ "entity-picker": {
+ "entity": "Entiteit"
+ }
+ },
+ "history_charts": {
+ "loading_history": "Laai tans toestandsgeskiedenis …",
+ "no_history_found": "Geen toestandsgeskiedenis gevind nie."
+ },
+ "media-browser": {
+ "class": {
+ "composer": "Compositore",
+ "directory": "Libreria",
+ "episode": "Episodio",
+ "game": "Gioco",
+ "genre": "Genere",
+ "image": "Immagine",
+ "movie": "Film",
+ "music": "Musica",
+ "playlist": "Playlist",
+ "podcast": "Podcast",
+ "season": "Stagione",
+ "track": "Traccia",
+ "tv_show": "Programma televisivo",
+ "url": "URL",
+ "video": "Video"
+ }
+ },
+ "related-items": {
+ "area": "Area",
+ "automation": "Deel van die volgende outomatisering",
+ "device": "Toestel",
+ "entity": "Verwante entiteite",
+ "group": "Deel van die volgende groepe",
+ "integration": "Integrasie",
+ "no_related_found": "Geen verwante items gevind nie.",
+ "scene": "Deel van die volgende tonele",
+ "script": "Deel van die volgende skrifte"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one {dag}\n other {dae}\n}",
+ "hour": "{count} {count, plural,\n one {uur}\n other {ure}\n}",
+ "minute": "{count} {count, plural,\n one {minuut}\n other {minute}\n}",
+ "second": "{count} {count, plural,\n one {sekonde}\n other {sekondes}\n}",
+ "week": "{count} {count, plural,\n one {week}\n other {weke}\n}"
+ },
+ "never": "Nooit"
+ },
+ "service-picker": {
+ "service": "Diens"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "update": "Opdateer"
+ },
+ "domain_toggler": {
+ "title": "Wissel domeine"
+ },
+ "entity_registry": {
+ "control": "Beheer",
+ "dismiss": "Ontslaan",
+ "editor": {
+ "confirm_delete": "Is u seker dat u hierdie inskrywing wil verwyder?",
+ "delete": "Verwyder",
+ "enabled_cause": "ge deaktiveer deur {cause}.",
+ "enabled_description": "Ge deaktiveerde entiteite sal nie by die Huisassistent gevoeg word nie.",
+ "enabled_label": "Aktiveer entiteit",
+ "entity_id": "Entiteit ID",
+ "icon": "Ikoon",
+ "icon_error": "Ikone moet in die formaat 'voorvoegsel: iconname' wees, byvoorbeeld 'mdi: home'",
+ "name": "Naam",
+ "note": "Let wel: dit werk dalk nog nie met alle integrasies nie.",
+ "unavailable": "Hierdie entiteit is nie tans beskikbaar nie.",
+ "update": "Opdateer"
+ },
+ "no_unique_id": "Hierdie entiteit ({entity_id}) het nie 'n unieke ID nie, daarom kan die instellings nie vanuit die UI bestuur word nie.",
+ "related": "Verwante",
+ "settings": "Instellings"
+ },
+ "generic": {
+ "cancel": "Kanselleer",
+ "close": "Sluit",
+ "default_confirmation_title": "Is jy seker?",
+ "ok": "OK"
+ },
+ "helper_settings": {
+ "generic": {
+ "icon": "Ikoon",
+ "name": "Naam"
+ },
+ "input_number": {
+ "box": "Invoerveld",
+ "max": "Maksimum waarde",
+ "min": "Minimum waarde",
+ "mode": "Vertoon modus",
+ "slider": "skuifbalk",
+ "step": "Stapmaat van die skuifbalk",
+ "unit_of_measurement": "Eenheidstelsel"
+ },
+ "input_select": {
+ "add": "Voeg",
+ "add_option": "Voeg opsie by",
+ "no_options": "Daar is nog geen opsies nie.",
+ "options": "Opsies"
+ },
+ "input_text": {
+ "max": "Maksimum lengte",
+ "min": "Minimum lengte",
+ "mode": "Vertoon modus",
+ "password": "Wagwoord",
+ "pattern": "Regex-patroon vir kliënt-kant validering",
+ "text": "Teks"
+ },
+ "required_error_msg": "Hierdie veld word vereis"
+ },
+ "more_info_control": {
+ "dismiss": "Ontslaan dialoog",
+ "edit": "Wysig entiteit",
+ "person": {
+ "create_zone": "Skep sone vanaf die huidige ligging"
+ },
+ "restored": {
+ "confirm_remove_text": "Is u seker dat u hierdie inskrywing wil verwyder?",
+ "confirm_remove_title": "Verwyder entiteit?",
+ "not_provided": "Hierdie entiteit is tans nie beskikbaar nie en is 'n weeskind vir 'n verwyderde, veranderde of disfunksionele integrasie of toestel.",
+ "remove_action": "Verwyder entiteit",
+ "remove_intro": "As die entiteit nie meer gebruik word nie, kan jy dit opruim deur dit te verwyder."
+ },
+ "script": {
+ "last_action": "Laaste Aksie",
+ "last_triggered": "Laaste geaktiveer"
+ },
+ "settings": "Entiteit-instellings",
+ "sun": {
+ "elevation": "Hoogte",
+ "rising": "Stygende",
+ "setting": "Instelling"
+ },
+ "updater": {
+ "title": "Opdateringsinstruksies"
+ },
+ "vacuum": {
+ "clean_spot": "Skoon plek",
+ "commands": "Stofsuier bevele:",
+ "fan_speed": "Waaier spoed",
+ "locate": "Vind",
+ "pause": "Wag",
+ "return_home": "Keer terug",
+ "start": "Begin",
+ "start_pause": "Begin/Wag",
+ "status": "Status",
+ "stop": "Stop"
+ }
+ },
+ "voice_command": {
+ "how_can_i_help": "Hoe kan ek help?",
+ "label": "Voer 'n vraag in en druk 'Enter'",
+ "label_voice": "Tik en druk 'Enter' of tik op die mikrofoon om te praat"
+ },
+ "zha_device_info": {
+ "confirmations": {
+ "remove": "Is u seker dat u die toestel wil verwyder?"
+ }
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\n one {dag}\n other {dae}\n}",
+ "hour": "{count} {count, plural,\n one {uur}\n other {ure}\n}",
+ "minute": "{count} {count, plural,\none {minuut}\nother {minute}\n}",
+ "second": "{count} {count, plural,\n one {sekonde}\n other {sekondes}\n}",
+ "week": "{count} {count, plural,\n one {week}\n other {weke}\n}"
+ },
+ "login-form": {
+ "log_in": "Meld aan",
+ "password": "Wagwoord",
+ "remember": "Onthou"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Klik knoppie om {entity} op te stel",
+ "close": "Sluit",
+ "empty": "Geen kennisgewings",
+ "title": "Kennisgewings"
+ },
+ "notification_toast": {
+ "connection_lost": "Konneksie verlore. Herkoppel tans…",
+ "service_call_failed": "Het misluk om diens {service} te roep."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Ontbreekopsies ontbreek? Aktiveer gevorderde modus aan",
+ "link_profile_page": "jou profiel bladsy"
+ },
+ "areas": {
+ "caption": "Areas",
+ "description": "Oorsig van alle gebiede in u huis.",
+ "editor": {
+ "create": "SKEP",
+ "default_name": "Nuwe Gebied",
+ "delete": "SKRAP",
+ "update": "Opdateer"
+ },
+ "picker": {
+ "create_area": "SKEP GEBIED",
+ "header": "Areas",
+ "integrations_page": "Integrasies bladsy",
+ "introduction": "Gebiede word gebruik om toestelle te organiseer gebaseer op waar hulle is. Hierdie inligting sal regdeur Home Assistant gebruik word om u te help om u koppelvlak, toestemmings en integrasies met ander stelsels te organiseer.",
+ "introduction2": "Om toestelle in 'n gebied te plaas, gebruik die skakel hieronder om na die integrasies bladsy toe te gaan en klik dan op 'n opgestelde integrasie om na die toestelkaarte toe te gaan.",
+ "no_areas": "Dit lyk asof jy nog geen gebiede het nie!"
+ }
+ },
+ "automation": {
+ "caption": "Outomatisering",
+ "description": "Skep en wysig outomatisasies",
+ "editor": {
+ "actions": {
+ "add": "Voeg aksie by",
+ "delete": "Skrap",
+ "delete_confirm": "Is u seker u wil dit skrap?",
+ "duplicate": "Dupliseer",
+ "header": "Aksies",
+ "introduction": "Die aksies is wat Home Assistant sal doen wanneer die outomatisering geaktiveer word.",
+ "learn_more": "Kom meer te wete oor aksies",
+ "name": "Aksie",
+ "type": {
+ "condition": {
+ "label": "Voorwaarde"
+ },
+ "delay": {
+ "delay": "Vertraging",
+ "label": "Vertraging"
+ },
+ "event": {
+ "event": "Gebeurtenis:",
+ "label": "Vuur geval",
+ "service_data": "Diens data"
+ },
+ "service": {
+ "label": "Roep diens"
+ },
+ "wait_template": {
+ "label": "Wag",
+ "timeout": "Tyd verstreke (opsioneel)",
+ "wait_template": "Wag Templaat"
+ }
+ },
+ "type_select": "Aksie tipe",
+ "unsupported_action": "Geen UI-ondersteuning vir aksie nie: {action}"
+ },
+ "alias": "Naam",
+ "conditions": {
+ "add": "Voeg voorwaarde by",
+ "delete": "Skrap",
+ "delete_confirm": "Is u seker u wil dit skrap?",
+ "duplicate": "Dupliseer",
+ "header": "Voorwaardes",
+ "introduction": "Voorwaardes is 'n opsionele deel van 'n outomatiseringsreël en kan gebruik word om te verhoed dat 'n aksie plaasvind wanneer dit geaktiveer word. Voorwaardes lyk baie soos snellers maar is baie anders. 'n Sneller sal kyk na gebeure wat in die stelsel gebeur terwyl 'n voorwaarde net kyk hoe die stelsel lyk. Byvoorbeeld: 'n Sneller kan sien dat 'n skakelaar aangeskakel word. 'n Voorwaarde kan net sien of 'n skakelaar tans aan of af is.",
+ "learn_more": "Kom meer te wete oor voorwaardes",
+ "name": "Voorwaarde",
+ "type": {
+ "numeric_state": {
+ "above": "Bo",
+ "below": "Onder",
+ "label": "Numeriese toestand",
+ "value_template": "Waarde templaat (opsioneel)"
+ },
+ "state": {
+ "label": "Toestand",
+ "state": "Toestand"
+ },
+ "sun": {
+ "after": "Na:",
+ "after_offset": "Na verreken (opsioneel)",
+ "before": "Voor:",
+ "before_offset": "Voor verreken (opsioneel)",
+ "label": "Son",
+ "sunrise": "Sonsopkoms",
+ "sunset": "Sonsondergang"
+ },
+ "template": {
+ "label": "Templaat",
+ "value_template": "Waarde templaat"
+ },
+ "time": {
+ "after": "Na",
+ "before": "Voor",
+ "label": "Tyd",
+ "weekdays": {
+ "mon": "Maandag"
+ }
+ },
+ "zone": {
+ "entity": "Entiteit met plek",
+ "label": "Sone",
+ "zone": "Sone"
+ }
+ },
+ "type_select": "Voorwaarde tipe",
+ "unsupported_condition": "Ongesteunde voorwaarde: {condition}"
+ },
+ "default_name": "Nuwe outomatisering",
+ "edit_ui": "Redigeer met UI",
+ "edit_yaml": "Redigeer as YAML",
+ "enable_disable": "Aktiveer / deaktiveer outomatisering",
+ "introduction": "Gebruik outomatisasies om jou huis lewend te maak",
+ "load_error_not_editable": "Slegs outomatisasies in automations.yaml kan verander word.",
+ "load_error_unknown": "Kon nie outomatisering laai nie ({err_no}).",
+ "modes": {
+ "parallel": "Parallel"
+ },
+ "save": "Stoor",
+ "triggers": {
+ "add": "Voeg sneller by",
+ "delete": "Skrap",
+ "delete_confirm": "Is u seker u wil dit skrap?",
+ "duplicate": "Dupliseer",
+ "header": "Snellers",
+ "introduction": "Snellers is wat die prosessering van 'n outomatiseringsreël afskop. Dit is moontlik om verskeie snellers vir dieselfde reël te spesifiseer. Sodra 'n sneller begin, sal Home Assistant die voorwaardes, indien enige, bevestig en die aksie roep.",
+ "learn_more": "Kom meer te wete oor snellers",
+ "name": "Sneller",
+ "type": {
+ "event": {
+ "context_user_pick": "Voeg gebruiker toe",
+ "event_data": "Gebeurtenis data",
+ "event_type": "Gebeurtenis tipe",
+ "label": "Gebeurtenis"
+ },
+ "geo_location": {
+ "enter": "Betree",
+ "event": "Gebeurtenis:",
+ "label": "Ligginggewing",
+ "leave": "Verlaat",
+ "source": "Bron",
+ "zone": "Sone"
+ },
+ "homeassistant": {
+ "event": "Gebeurtenis:",
+ "label": "Home Assistant",
+ "shutdown": "Staak",
+ "start": "Begin"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Loonvrag (opsioneel)",
+ "topic": "Onderwerp"
+ },
+ "numeric_state": {
+ "above": "Bo",
+ "below": "Onder",
+ "label": "Numeriese toestand",
+ "value_template": "Waarde templaat (opsioneel)"
+ },
+ "state": {
+ "for": "Vir",
+ "from": "Vanaf",
+ "label": "Toestand",
+ "to": "Tot en met"
+ },
+ "sun": {
+ "event": "Gebeurtenis:",
+ "label": "Son",
+ "offset": "Verreken (opsioneel)",
+ "sunrise": "Sonsopkoms",
+ "sunset": "Sonsondergang"
+ },
+ "template": {
+ "label": "Templaat",
+ "value_template": "Waarde templaat"
+ },
+ "time": {
+ "at": "Om",
+ "label": "Tyd"
+ },
+ "time_pattern": {
+ "hours": "Ure",
+ "label": "Tydpatroon",
+ "minutes": "Minute",
+ "seconds": "Sekondes"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook ID"
+ },
+ "zone": {
+ "enter": "Betree",
+ "entity": "Entiteit met plek",
+ "event": "Gebeurtenis:",
+ "label": "Sone",
+ "leave": "Verlaat",
+ "zone": "Sone"
+ }
+ },
+ "type_select": "Sneller tipe",
+ "unsupported_platform": "Ongesteunde platform: {platform}"
+ },
+ "unsaved_confirm": "U het ongestoorde veranderinge. Is u seker u wil die blad verlaat?"
+ },
+ "picker": {
+ "add_automation": "Voeg outomatisering by",
+ "delete_automation": "Verwyder outomatisering",
+ "delete_confirm": "Is u seker dat u hierdie outomatisering wil uitvee?",
+ "edit_automation": "Wysig outomatisering",
+ "header": "Outomatiseringsredakteur",
+ "introduction": "Die outomatiseringsredakteur stel u in staat om outomatisasies te skep en te wysig. Volg die onderstaande skakel om die instruksies te lees om seker te maak dat u Home Assistant korrek opgestel het.",
+ "learn_more": "Kom meer te wete oor outomatisasies",
+ "no_automations": "Ons kon nie redigeerbare outomatisasies vind nie",
+ "only_editable": "Slegs automasies omskryf in outomatisering. yaml is redigeerbaar.",
+ "pick_automation": "Kies outomatisasie om te redigeer",
+ "show_info_automation": "Wys inligting oor outomatisering"
+ }
+ },
+ "cloud": {
+ "account": {
+ "google": {
+ "sync_entities_404_message": "Kon nie u entiteite met Google sinkroniseer nie, vra Google 'Hallo Google, sinkroniseer my toestelle' om u entiteite te sinkroniseer."
+ },
+ "remote": {
+ "not_connected": "Nie gekoppel nie",
+ "remote_enabled": {
+ "caption": "Verbind outomaties",
+ "description": "Skakel hierdie opsie in om seker te maak dat u Home Assistent-instansie altyd op afstand toeganklik is."
+ }
+ }
+ },
+ "description_features": "Beheer terwyl weg van die huis af is, integreer met Alexa en Google Assistant.",
+ "description_login": "Aangemeld as {email}",
+ "description_not_login": "Nie aangemeld nie"
+ },
+ "core": {
+ "caption": "Algemeen",
+ "description": "Bevestig u opstellingslêer en beheer die bediener",
+ "section": {
+ "core": {
+ "core_config": {
+ "edit_requires_storage": "Redakteur is gedeaktiveer omdat konfigurasie gestoor is in configuration.yaml.",
+ "elevation": "Hoogte",
+ "elevation_meters": "Meter",
+ "imperial_example": "Fahrenheit, pond",
+ "latitude": "Breedtegraad",
+ "location_name": "Naam van u Home Assistant installasie",
+ "longitude": "Lengtegraad",
+ "metric_example": "Celsius, kilogram",
+ "save_button": "Stoor",
+ "time_zone": "Tydsone",
+ "unit_system": "Eenheidstelsel",
+ "unit_system_imperial": "Imperial",
+ "unit_system_metric": "Metrieke"
+ },
+ "header": "Opstellings en bedienerbeheer",
+ "introduction": "As u opstellings verander, kan dit 'n vermoeiende proses wees. Ons weet. Hierdie afdeling sal probeer om u lewe 'n bietjie makliker te maak."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Die volgende kenmerke is reeds opgestel in customize.yaml",
+ "attributes_not_set": "Die volgende eienskappe is nie gestel nie. Stel dit in as u wil.",
+ "attributes_override": "Jy kan hulle oorheers as jy wil.",
+ "attributes_set": "Die volgende eienskappe van die entiteit is programmaties gestel",
+ "caption": "Pasgemaakte Instellings",
+ "description": "Pas u entiteite aan",
+ "different_include": "Moontlik via 'n domein, 'n glob of 'n ander insluit.",
+ "pick_attribute": "Kies 'n kenmerk om te ignoreer",
+ "picker": {
+ "header": "Pasgemaakte Instellings",
+ "introduction": "Verfyn per-entiteit eienskappe. Bygevoegde / gewysigde aanpassings sal onmiddellik in werking tree. Verwyderde aanpassings sal in werking tree wanneer die entiteit opgedateer word."
+ },
+ "warning": {
+ "include_link": "sluit customize.yaml in",
+ "include_sentence": "Dit lyk asof u konfigurasie.yaml nie behoorlik is nie",
+ "not_applied": "Wysigings wat hier aangebring is, word daarin geskryf, maar sal nie toegepas word na die herlaai van die konfigurasie nie, tensy die insluit in plek is."
+ }
+ },
+ "devices": {
+ "automation": {
+ "automations": "Outomatisering",
+ "create": "Skep outomatisering met die toestel",
+ "no_automations": "Geen outomatisering nie",
+ "no_device_automations": "Daar is geen outomatisasies vir hierdie toestel beskikbaar nie."
+ },
+ "cant_edit": "U kan slegs items wat in die UI geskep is, wysig.",
+ "confirm_rename_entity_ids": "Wil u ook die entiteit-ID's van u entiteite hernoem?",
+ "data_table": {
+ "area": "Area",
+ "battery": "battery",
+ "device": "Toestel",
+ "integration": "Integrasie",
+ "manufacturer": "Vervaardiger",
+ "model": "Model"
+ },
+ "device_not_found": "Toestel nie gevind nie.",
+ "entities": {
+ "add_entities_lovelace": "Voeg by Lovelace",
+ "entities": "Entiteite",
+ "none": "Hierdie toestel het geen entiteite nie"
+ },
+ "name": "Naam",
+ "scene": {
+ "create": "Skep toneel met toestel",
+ "no_scenes": "Geen tonele nie",
+ "scenes": "Tonele"
+ },
+ "scenes": "Tonele",
+ "script": {
+ "create": "Skep skrip met toestel",
+ "no_scripts": "Geen skrifte nie",
+ "scripts": "Skripte"
+ },
+ "scripts": "Skripte",
+ "unknown_error": "Onbekende fout",
+ "unnamed_device": "Naamlose toestel",
+ "update": "Opdateer"
+ },
+ "entities": {
+ "caption": "Entiteit Register",
+ "description": "Oorsig van alle bekende entiteite.",
+ "picker": {
+ "disable_selected": {
+ "button": "Deaktiveer geselekteerde",
+ "confirm_text": "Ge deaktiveerde entiteite sal nie by die Huisassistent gevoeg word nie.",
+ "confirm_title": "Wil jy {number} {number, plural,\n one {entiteit}\n other {entiteiten}\n} de-activeren?"
+ },
+ "enable_selected": {
+ "button": "Aktiveer geselekteerde",
+ "confirm_text": "Dit sal dit weer beskikbaar in die huis assistent maak as hulle nou gedeaktiveer is.",
+ "confirm_title": "Wil jy {number} {number, plural,\n one {entiteit}\n other {entiteiten}\n} aktiveer?"
+ },
+ "filter": {
+ "filter": "Filter",
+ "show_disabled": "Wys onbeskikbaar-entiteite",
+ "show_readonly": "Wys leesalleen-entiteite",
+ "show_unavailable": "Wys onbeskikbaar-entiteite"
+ },
+ "header": "Entiteit Register",
+ "headers": {
+ "status": "Status"
+ },
+ "introduction": "Home Assistant hou 'n register van al die vorige entiteite wat uniek geïdentifiseer kan word. Elk van hierdie entiteite sal 'n entiteit-ID hê wat vir hierdie entiteit gereserveer sal word.",
+ "introduction2": "Gebruik die entiteitsregister om die naam te oorskryf, die entiteit ID te verander, of die inskrywing van Home Assistant te verwyder. Let wel, die verwydering van die entiteit registerinskrywing sal nie die entiteit verwyder nie. Om dit te doen, volg die skakel hieronder en verwyder dit uit die integrasies bladsy.",
+ "remove_selected": {
+ "button": "Verwyder geselekteerde",
+ "confirm_text": "Entiteite kan slegs verwyder word as die integrasie nie meer die entiteite bied nie.",
+ "confirm_title": "Wil jy {number} {number, plural,\n one {entiteit}\n other {entiteiten}\n} verwyder?"
+ },
+ "selected": "{nommer} gekies",
+ "status": {
+ "disabled": "ge deaktiveer",
+ "ok": "Ok",
+ "readonly": "Lees-alleen",
+ "unavailable": "Nie beskikbaar nie"
+ }
+ }
+ },
+ "header": "Stel Home Assistant op",
+ "helpers": {
+ "caption": "Helpers",
+ "description": "Elemente wat kan help met die opbou van outomatisering.",
+ "dialog": {
+ "add_helper": "Voeg helper by",
+ "add_platform": "Voeg {platform}",
+ "create": "Skep"
+ },
+ "picker": {
+ "add_helper": "Voeg helper by",
+ "headers": {
+ "editable": "Redigeerbaar",
+ "name": "Naam",
+ "type": "tipe"
+ }
+ },
+ "types": {
+ "input_boolean": "Verwissel",
+ "input_datetime": "Datum en/of tyd",
+ "input_number": "Nommer",
+ "input_select": "Dropdown",
+ "input_text": "Teks"
+ }
+ },
+ "integrations": {
+ "add_integration": "Stel 'n nuwe integrasie op",
+ "caption": "Integrasies",
+ "config_entry": {
+ "delete": "Verwyder",
+ "delete_confirm": "Is u seker u wil hierdie integrasie skrap?",
+ "device_unavailable": "toestel nie beskikbaar nie",
+ "documentation": "Dokumentasie",
+ "entity_unavailable": "entiteit nie beskikbaar nie",
+ "firmware": "Fermware: {version}",
+ "hub": "Gekonnekteer via",
+ "manuf": "deur {manufacturer}",
+ "no_area": "Geen Gebied",
+ "rename": "Hernoem",
+ "restart_confirm": "Herbegin Home Assistant om hierdie integrasie te voltooi",
+ "system_options": "Stelselopsies"
+ },
+ "config_flow": {
+ "aborted": "Gestaak",
+ "close": "Sluit",
+ "created_config": "Geskepte konfigurasie vir {name}.",
+ "dismiss": "Ontslaan dialoog",
+ "error_saving_area": "Kon nie area stoor nie: {Error}",
+ "external_step": {
+ "description": "Hierdie stap vereis dat u 'n eksterne webwerf besoek om voltooi te word.",
+ "open_site": "Maak webwerf oop"
+ },
+ "finish": "Klaar",
+ "next": "Volgende",
+ "not_all_required_fields": "Nie alle vereiste velde is gevul nie.",
+ "submit": "Dien in"
+ },
+ "configure": "Stel op",
+ "configured": "Opgestel",
+ "description": "Bestuur gekoppelde toestelle en dienste",
+ "details": "Integrasie besonderhede",
+ "discovered": "Ontdek",
+ "ignore": {
+ "confirm_delete_ignore": "Dit sal die integrasie weer in u ontdekte integrasies laat verskyn wanneer dit ontdek word. Dit kan herbegin of 'n geruime tyd neem.",
+ "confirm_delete_ignore_title": "Hou op om {name} ignoreer?",
+ "confirm_ignore": "Is u seker dat u nie hierdie integrasie wil instel nie? U kan dit ongedaan maak deur op die 'Wys geïgnoreerde integrasies' in die oorloopmenu regs bo te klik.",
+ "confirm_ignore_title": "Ignoreer ontdekking van {name}?",
+ "ignore": "Ignoreer",
+ "ignored": "Geïgnoreer",
+ "show_ignored": "Toon geïgnoreerde integrasies",
+ "stop_ignore": "Hou op ignoreer"
+ },
+ "integration_not_found": "Integrasie nie gevind nie.",
+ "new": "Stel 'n nuwe integrasie op",
+ "no_integrations": "Lyk asof jy nog nie enige integations gekonfigureer het nie. Klik op die knoppie hieronder om jou eerste integrasie te voeg!",
+ "none": "Nog niks is opgestel nie",
+ "none_found": "Geen integrasies gevind nie",
+ "none_found_detail": "Verstel jou soekkriteria.",
+ "rename_dialog": "Redigeer die naam van hierdie config-inskrywing",
+ "rename_input_label": "Inskrywingsnaam"
+ },
+ "introduction": "Hier is dit moontlik om u komponente en Home Assistant op te stel. Tans kan alles in verband met die gebruikerskoppelvlak nog nie hier opgestel word nie, maar ons werk daaraan.",
+ "lovelace": {
+ "caption": "Lovelace Kontroleskerms",
+ "dashboards": {
+ "cant_edit_yaml": "Dashboards gedefinieer in YAML kan nie geredigeer word vanaf die UI. Verander dit in konfigurasie. yaml.",
+ "caption": "Kontroleskerms",
+ "conf_mode": {
+ "storage": "UI beheerde",
+ "yaml": "YAML-lêer"
+ },
+ "confirm_delete": "Is u seker dat u hierdie dashboard wil uitvee?",
+ "detail": {
+ "create": "Skep",
+ "delete": "Verwyder",
+ "dismiss": "Sluit",
+ "edit_dashboard": "wysig paneelbord",
+ "icon": "Kantbalk-ikoon",
+ "new_dashboard": "voeg paneelbord by",
+ "require_admin": "Admin alleenlik",
+ "show_sidebar": "Wys in Kantbalk",
+ "title": "Kantbalk-titel",
+ "update": "Opdateer",
+ "url": "URL",
+ "url_error_msg": "Die url kan nie spasies of spesiale karakters bevat nie, behalwe vir _ en -"
+ },
+ "picker": {
+ "add_dashboard": "voeg paneelbord by",
+ "headers": {
+ "conf_mode": "Konfigurasie metode",
+ "filename": "Lêernaam",
+ "require_admin": "Admin alleenlik",
+ "sidebar": "Wys in Kantbalk",
+ "title": "Titel"
+ },
+ "open": "oop paneelbord"
+ }
+ },
+ "description": "Konfigureer jou Lovelace kontole",
+ "resources": {
+ "cant_edit_yaml": "U gebruik Lovelace in die YAML-modus, daarom kan u nie u hulpbronne deur die UI bestuur nie. Bestuur dit in konfigurasie.yaml.",
+ "caption": "Hulpbronne",
+ "confirm_delete": "Is u seker dat u hierdie bron wil uitvee?",
+ "detail": {
+ "create": "skep",
+ "delete": "verwyder",
+ "dismiss": "maak toe",
+ "new_resource": "Voeg nuwe hulpbronne by",
+ "update": "opdateer",
+ "url": "URL",
+ "url_error_msg": "URL is n vereiste",
+ "warning_header": "Wees versigtig!",
+ "warning_text": "Dit kan gevaarlik wees om hulpbronne by te voeg, maak seker dat u die bron van die bron ken en vertrou. Swak hulpbronne kan u stelsel ernstig benadeel."
+ },
+ "picker": {
+ "add_resource": "Voeg hulpbron by",
+ "headers": {
+ "type": "tipe",
+ "url": "URL"
+ }
+ },
+ "refresh_body": "U moet die bladsy verfris om die verwydering te voltooi, wil u nou verfris?",
+ "refresh_header": "Wil u verfris?",
+ "types": {
+ "css": "Styleblad",
+ "html": "HTML (verouderd)",
+ "js": "JavaScript-lêer (verouderd)",
+ "module": "JavaScript-module"
+ }
+ }
+ },
+ "mqtt": {
+ "title": "MQTT"
+ },
+ "ozw": {
+ "network_status": {
+ "unknown": "Onbekend"
+ }
+ },
+ "person": {
+ "caption": "Persone",
+ "description": "Bestuur die persone wat Home Assistant op spoor.",
+ "detail": {
+ "device_tracker_intro": "Kies die toestelle wat aan hierdie persoon behoort.",
+ "device_tracker_pick": "Kies toestel om op te spoor",
+ "device_tracker_picked": "Spoor toestel op",
+ "name": "Naam"
+ }
+ },
+ "scene": {
+ "activated": "Geaktiveerde toneel {name} .",
+ "caption": "Tonele",
+ "description": "Skep en redigeer tonele",
+ "editor": {
+ "default_name": "Nuwe toneel",
+ "devices": {
+ "add": "Voeg 'n toestel by",
+ "delete": "Verwyder toestel",
+ "header": "toestelle",
+ "introduction": "Voeg die toestelle wat u wil insluit in u toneel by. Stel toestande van toestelle na verlange in vir hierdie toneel."
+ },
+ "entities": {
+ "add": "Voeg 'n entiteit by",
+ "delete": "Verwyder entiteit",
+ "device_entities": "As u 'n entiteit byvoeg wat aan 'n toestel behoort, word die toestel bygevoeg.",
+ "header": "Entiteite",
+ "introduction": "Entiteite wat nie aan 'n toestel behoort nie, kan hier ingestel word.",
+ "without_device": "Entiteite sonder toestelle"
+ },
+ "introduction": "Gebruik tonele om u huis lewendig te maak.",
+ "load_error_not_editable": "Slegs tonele in tonele.yaml kan geredigeer word.",
+ "load_error_unknown": "Kon nie toneel laai nie ( {err_no} ).",
+ "name": "Naam",
+ "save": "Stoor",
+ "unsaved_confirm": "U het ongestoorde veranderinge. Is u seker u wil die blad verlaat?"
+ },
+ "picker": {
+ "add_scene": "Voeg toneel by",
+ "delete_confirm": "Is u seker dat u hierdie toneel wil uitvee?",
+ "delete_scene": "Verwyder toneel",
+ "duplicate": "Dupliseer",
+ "duplicate_scene": "Duplikaat toneel",
+ "edit_scene": "Wysig toneel",
+ "header": "Toneel-Redakteur",
+ "introduction": "Die toneel redakteur kan jy om te skep en wysig skerms. Volg asseblief die skakel hieronder om die instruksies te lees om seker te maak dat jy het ingestel Huis Assistent korrek.",
+ "learn_more": "Kom meer te wete oor tonele",
+ "no_scenes": "Ons kon geen bewerkbare tonele vind nie",
+ "only_editable": "Slegs tonele gedefinieër in tonele.yaml kan geredigeer word.",
+ "pick_scene": "Kies toneel om te redigeer",
+ "show_info_scene": "Wys inligting oor toneel"
+ }
+ },
+ "script": {
+ "caption": "Skripte",
+ "description": "Skep en wysig skripte",
+ "editor": {
+ "alias": "Naam",
+ "delete_script": "Verwyder skrip",
+ "introduction": "Gebruik skripte om 'n reeks aksies uit te voer.",
+ "link_available_actions": "Kom meer te wete oor beskikbare aksies.",
+ "sequence": "Volgorde",
+ "sequence_sentence": "Die volgorde van aksies van hierdie skrip."
+ },
+ "picker": {
+ "duplicate": "Dupliseer",
+ "edit_script": "Redigeer skrip"
+ }
+ },
+ "server_control": {
+ "caption": "Bedienerkontroles",
+ "section": {
+ "reloading": {
+ "person": "Herlaai persone",
+ "zone": "Herlaai sones"
+ }
+ }
+ },
+ "users": {
+ "add_user": {
+ "caption": "Voeg gebruiker by",
+ "create": "Skep",
+ "password": "Wagwoord"
+ },
+ "caption": "Gebruikers",
+ "description": "Bestuur gebruikers",
+ "editor": {
+ "activate_user": "Aktiveer gebruiker",
+ "caption": "Bekyk gebruiker",
+ "change_password": "Verander Wagwoord",
+ "deactivate_user": "Deaktiveer gebruiker",
+ "delete_user": "Skrap gebruiker",
+ "username": "Gebruikersnaam"
+ },
+ "picker": {
+ "headers": {
+ "username": "Gebruikersnaam"
+ }
+ }
+ },
+ "zha": {
+ "add_device_page": {
+ "spinner": "Opsoek na ZHA Zigbee-toestelle…"
+ },
+ "clusters": {
+ "header": "clusters",
+ "introduction": "Clusters is die boustene vir Zigbee-funksionaliteit. Dit skei funksionaliteit in logiese eenhede. Daar is kliënt- en bedienertipes wat bestaan uit eienskappe en opdragte."
+ },
+ "group_binding": {
+ "bind_button_help": "Bind die geselekteerde groep by die geselekteerde toestelgroeperings.",
+ "bind_button_label": "Bind groep",
+ "cluster_selection_help": "Kies groepe om aan die geselekteerde groep te bind.",
+ "group_picker_help": "Kies 'n groep om 'n bindopdrag uit te reik.",
+ "group_picker_label": "Bindbare groepe",
+ "header": "Groepbinding",
+ "introduction": "Bind en ontbind groepe.",
+ "unbind_button_help": "Ontbind die geselekteerde groep van die geselekteerde toestelgroeperings.",
+ "unbind_button_label": "Ontbind groep"
+ },
+ "groups": {
+ "add_members": "Voeg lede by",
+ "caption": "Groepe",
+ "create": "Skep 'n groep",
+ "create_group": "Zigbee Home Automation - Skep 'n groep",
+ "create_group_details": "Voer die nodige besonderhede in om 'n nuwe zigbeegroep te skep",
+ "creating_group": "Skep 'n groep",
+ "group_details": "Hier is al die besonderhede vir die geselekteerde Zigbee groep.",
+ "group_id": "Groep-ID",
+ "group_info": "Groeps Inligting",
+ "group_name_placeholder": "Groepnaam",
+ "group_not_found": "Groep nie gevind nie!",
+ "groups": "Groepe",
+ "members": "Lede",
+ "remove_members": "Verwyder lede",
+ "removing_members": "Die Verwydering Van Lede"
+ }
+ },
+ "zone": {
+ "add_zone": "Voeg sone by",
+ "caption": "Sones",
+ "configured_in_yaml": "Sones gekonfigureer via konfigurasie.yaml kan nie via die UI geredigeer word nie.",
+ "confirm_delete": "Is u seker dat u hierdie inskrywing wil verwyder?",
+ "create_zone": "Skep sone",
+ "description": "Bestuur die sones waarin jy mense wil naspoor.",
+ "detail": {
+ "create": "Skep",
+ "delete": "Verwyder",
+ "icon": "Ikoon",
+ "icon_error_msg": "Ikone moet in die formaat 'voorvoegsel: iconname' wees, byvoorbeeld 'mdi: home'",
+ "latitude": "Breedtegraad",
+ "longitude": "Lengtegraad",
+ "name": "Naam",
+ "new_zone": "Nuwe Sone",
+ "passive": "passief",
+ "passive_note": "Passiewe sones is weggesteek in die Frontend en word nie gebruik as ligging vir toestelspoorsnyers nie. Dit is nuttig as jy net wil om dit te gebruik vir outomatisering.",
+ "radius": "radius",
+ "required_error_msg": "Hierdie veld word vereis",
+ "update": "Opdateer"
+ },
+ "edit_home_zone": "Die ligging van u tuissone kan vanaf die algemene konfigurasiebladsy verander word. Die radius van die Tuis-sone kan nog nie vanaf die voorkant verander word nie. Wil u na die algemene opset gaan?",
+ "edit_home_zone_narrow": "Die ligging van u tuissone kan vanaf die algemene konfigurasiebladsy verander word. Die radius van die Tuis-sone kan nog nie vanaf die voorkant verander word nie. Wil u na die algemene opset gaan?",
+ "go_to_core_config": "Gaan na Algemene konfigurasie?",
+ "home_zone_core_config": "Die ligging van u tuissone kan vanaf die algemene konfigurasiebladsy verander word. Die radius van die Tuis-sone kan nog nie vanaf die voorkant verander word nie. Wil u na die algemene opset gaan?",
+ "introduction": "Met sones kan u sekere streke op aarde spesifiseer. As 'n persoon binne 'n sone is, neem die toestand die sonenaam aan. Sones kan ook as 'n sneller of toestand gebruik word in outomatiseringsinstellings.",
+ "no_zones_created_yet": "Lyk asof jy nog geen sones geskep het nie."
+ },
+ "zwave": {
+ "common": {
+ "index": "Indeks",
+ "instance": "Aktiwiteit",
+ "value": "Waarde"
+ },
+ "description": "Bestuur u Z-Wave netwerk",
+ "network_management": {
+ "header": "Bestuur Z-Wave Netwerk",
+ "introduction": "Begin opdragte wat die Z-Wave-netwerk beïnvloed. U sal nie terugvoer kry of meeste opdragte slaag nie, maar u kan die OZW-logboek nagaan om dit uit te vind."
+ },
+ "network_status": {
+ "network_started": "Z-Wave Netwerk is Aangeskakel",
+ "network_started_note_all_queried": "Alle knooppunte is nagevra",
+ "network_started_note_some_queried": "Aktiewe Knooppunte is nagevra. Slapende Knooppunte sal nagevra word sodra hulle ontwaak.",
+ "network_starting": "Skakel Tans Z-Wave Netwerk Aan…",
+ "network_starting_note": "Afhangend van die grootte van u netwerk, kan dit 'n rukkie duur.",
+ "network_stopped": "Z-Wave Netwerk het Gestop"
+ },
+ "node_config": {
+ "config_value": "Konfigurasiewaarde",
+ "header": "Knooppuntkonfigurasieopsies",
+ "set_config_parameter": "Stel Config-parameter in"
+ },
+ "node_management": {
+ "add_to_group": "Voeg by Groep",
+ "remove_from_group": "Verwyder van Groep"
+ },
+ "services": {
+ "add_node": "Voeg Knooppunt By",
+ "add_node_secure": "Voeg Veilige Knooppunt By",
+ "cancel_command": "Kanselleer Opdrag",
+ "heal_network": "Herstel Netwerk",
+ "remove_node": "Verwyder Knooppunt",
+ "save_config": "Stoor Konfigurasie",
+ "soft_reset": "Sagte Herstel",
+ "start_network": "Skakel Netwerk Aan",
+ "stop_network": "Stop Netwerk",
+ "test_network": "Toets Netwerk"
+ },
+ "values": {
+ "header": "Knooppuntwaardes"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "interview_failed": "Die toestelonderhoud het misluk. Bykomende inligting kan moontlik in die logboeke beskikbaar wees.",
+ "interview_started": "Die toestel word ondervra. Dit kan 'n geruime tyd neem."
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Dit sal toegang hê tot alle data in die Huisassistent.",
+ "hide_message": "Gaan dokumente na vir die panel_custom-komponent om hierdie boodskap te verberg",
+ "question_trust": "Vertrou u die eksterne paneel {name} by {link} ?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "title": "Gebeure"
+ },
+ "services": {
+ "title": "Dienste"
+ },
+ "states": {
+ "title": "State"
+ },
+ "statistics": {
+ "issues": {
+ "no_state": "Daar is geen staat vir hierdie entiteit beskikbaar nie."
+ }
+ },
+ "templates": {
+ "title": "Template"
+ }
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Jy kan hierdie funksie net gebruik wanneer jy beheer van die Lovelace UI geneem het.",
+ "saving_failed": "Stoor Lovelace UI-konfigurasie het misluk.",
+ "yaml_unsupported": "U kan nie hierdie funksie gebruik wanneer u Lovelace UI in die YAML-modus gebruik nie."
+ },
+ "cards": {
+ "empty_state": {
+ "go_to_integrations_page": "Gaan na die integrasies bladsy.",
+ "no_devices": "Hierdie bladsy laat u toe om u toestelle te beheer, maar dit lyk asof u nog nie toestelle opgestel het nie. Gaan na die integrasies bladsy om te begin.",
+ "title": "Welkom tuis"
+ },
+ "entities": {
+ "never_triggered": "Nooit geaktiveer nie"
+ },
+ "picture-elements": {
+ "call_service": "Oproep diens {name}",
+ "hold": "Hou:",
+ "more_info": "Wys meer inligting: {name}",
+ "navigate_to": "Navigeer na {location}",
+ "tap": "Tik:",
+ "toggle": "Wissel {name}"
+ },
+ "safe-mode": {
+ "description": "Home Assistent het probleme ondervind tydens die laai van u konfigurasie en loop nou in 'n veilige modus. Kyk na die foutlogboek om te sien wat verkeerd geloop het.",
+ "header": "Die Veilige Modus Geaktiveer"
+ },
+ "shopping-list": {
+ "add_item": "Voeg item by",
+ "checked_items": "Gemerkte items",
+ "clear_items": "Maak die gemerkte items skoon"
+ },
+ "starting": {
+ "description": "Home Assistant begin tans, wag asseblief …"
+ }
+ },
+ "changed_toast": {
+ "message": "Die Lovelace-opstelling is opgedateer, wil u graag herlaai?"
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "url": "URL"
+ },
+ "url_path": "URL Yolu"
+ },
+ "card": {
+ "button": {
+ "name": "Knoppie"
+ },
+ "generic": {
+ "url": "URL"
+ },
+ "humidifier": {
+ "description": "Die Luchtbevochtigerkaart verleen beheer oor u lugbevochtiger-entiteit. Hiermee kan u die humiditeit en modus van die entiteit verander."
+ },
+ "iframe": {
+ "name": "Webblad"
+ },
+ "shopping-list": {
+ "integration_not_loaded": "Hierdie kaart vereis die ' shopping_list ' integrasie wat opgestel moet word."
+ }
+ },
+ "edit_card": {
+ "add": "Voeg Kaart by",
+ "delete": "Skrap kaart",
+ "duplicate": "Dupliseer Kaart",
+ "edit": "Wysig",
+ "header": "Kaart opstelling",
+ "move": "Skuif",
+ "pick_card": "Kies die kaart wat u wil byvoeg.",
+ "toggle_editor": "Wissel redigeerder"
+ },
+ "edit_lovelace": {
+ "edit_title": "Wysig titel"
+ },
+ "edit_view": {
+ "add": "Voeg aansig by",
+ "delete": "Skrap aansig",
+ "edit": "Wysig aansig",
+ "header": "Bekyk Opstellings",
+ "move_left": "Beweeg aansig links",
+ "move_right": "Beweeg aansig regs",
+ "tab_badges": "Kentekens",
+ "tab_settings": "Instellings"
+ },
+ "header": "Wysig gebruikerskoppelvlak",
+ "menu": {
+ "raw_editor": "Plat opstellings-redigeerder"
+ },
+ "migrate": {
+ "header": "Opstellings Onversoenbaar",
+ "migrate": "Migreer opstellings",
+ "para_migrate": "Druk die 'Migreer konfigurasie' knoppie as u wil hê Home Assistant moet vir u ID's by al u kaarte en aansigte outomaties byvoeg.",
+ "para_no_id": "Hierdie element het nie 'n ID nie. Voeg asseblief 'n ID by vir hierdie element in 'ui-lovelace.yaml'."
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Ons sal outomaties jou Lovelace UI-uitsig met jou areas en toestelle genereer as jy jou Lovelace UI-konfigurasie verwyder.",
+ "confirm_remove_config_title": "Is jy seker jy wil jou Lovelace UI-konfigurasie verwyder? Ons sal outomaties jou Lovelace UI-uitsig met jou areas en toestelle genereer.",
+ "confirm_unsaved_changes": "U het ongestoorde veranderinge. Is u seker u wil die blad verlaat?",
+ "confirm_unsaved_comments": "U konfigurasie bevat kommentaar, dit sal nie gestoor word nie. Wil jy voortgaan?",
+ "error_invalid_config": "U opstelling is nie geldig nie: {error}",
+ "error_parse_yaml": "Kan nie YAML ontleed nie: {error}",
+ "error_remove": "Kan nie konfigurasie verwyder nie: {Error}",
+ "error_save_yaml": "Kan nie YAML stoor nie: {error}",
+ "header": "Wysig Instellings",
+ "resources_moved": "Hulpbronne moet nie meer by die Lovelace-konfigurasie gevoeg word nie, maar kan bygevoeg word in die Lovelace-konfigurasiepaneel.",
+ "save": "Stoor",
+ "saved": "Gestoor",
+ "unsaved_changes": "Ongestoorde veranderinge"
+ },
+ "save_config": {
+ "close": "maak toe",
+ "header": "Neem beheer van u Lovelace gebruikerskoppelvlak",
+ "para": "Home Assistant sal outomaties u gebruikerskoppelvlak handhaaf, dit opdateer wanneer nuwe entiteite of Lovelace-komponente beskikbaar raak. Alhoewel, as u beheer neem, sal Home Assistant nie meer outomaties veranderings vir u doen nie.",
+ "para_sure": "Is u seker u wil beheer neem oor u gebruikerskoppelvlak?",
+ "save": "Neem beheer",
+ "yaml_config": "Om te help hier is die huidige konfigurasie van die paneelbord"
+ },
+ "suggest_card": {
+ "add": "Voeg by Lovelace UI",
+ "create_own": "Kies verskillende kaart",
+ "header": "Ons het 'n voorstel vir jou geskep"
+ }
+ },
+ "menu": {
+ "close": "Sluit",
+ "configure_ui": "Stel gebruikerskoppelvlak op",
+ "exit_edit_mode": "Verlaat UI-wysigingsmodus",
+ "help": "Help",
+ "start_conversation": "Begin gesprek"
+ },
+ "reload_lovelace": "Herlaai UI",
+ "unused_entities": {
+ "available_entities": "Dit is die entiteite wat u beskikbaar het, maar is nog nie in u Lovelace UI nie.",
+ "domain": "Domein",
+ "entity": "Entiteit",
+ "entity_id": "Entiteit ID",
+ "last_changed": "Laaste verander",
+ "select_to_add": "Kies die entiteite wat u op 'n kaart wil voeg, en klik dan op die kaart voeg.",
+ "title": "Ongebruikte entiteite"
+ },
+ "warning": {
+ "entity_non_numeric": "Entiteit is nie-numeriese: {entity}",
+ "entity_not_found": "Entiteit nie beskikbaar nie: {entity}",
+ "entity_unavailable": "{entity} is nie tans beskikbaar nie."
+ }
+ },
+ "mailbox": {
+ "delete_button": "Skrap",
+ "delete_prompt": "Skrap hierdie boodskap?",
+ "empty": "U het geen boodskappe nie",
+ "playback_title": "Boodskap terugspeel"
+ },
+ "page-authorize": {
+ "abort_intro": "Aanmelding gestaak",
+ "authorizing_client": "U is op die punt om {clientId} toegang te gee tot u Home Assistant instansie.",
+ "form": {
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Sessie verstryk, teken asseblief weer aan."
+ },
+ "error": {
+ "invalid_auth": "Ongeldige gebruikersnaam of wagwoord",
+ "invalid_code": "Ongeldige verifikasiekode"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Wagwoord",
+ "username": "Gebruikersnaam"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Twee-faktor-Verifikasiekode"
+ },
+ "description": "Maak die ** {mfa_module_name} ** op u toestel oop om u twee-faktor-verifikasiekode te sien en u identiteit te verifieer:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Sessie verstryk, teken asseblief weer aan."
+ },
+ "error": {
+ "invalid_auth": "Ongeldige gebruikersnaam of wagwoord",
+ "invalid_code": "Ongeldige verifikasiekode"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Wagwoord",
+ "username": "Gebruikersnaam"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Twee-faktor-Verifikasiekode"
+ },
+ "description": "Maak die ** {mfa_module_name} ** op u toestel oop om u twee-faktor-verifikasiekode te sien en u identiteit te verifieer:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Sessie verstryk, teken asseblief weer aan.",
+ "no_api_password_set": "U het nie 'n API-wagwoord opgestel nie."
+ },
+ "error": {
+ "invalid_auth": "Ongeldige API wagwoord",
+ "invalid_code": "Ongeldige verifikasiekode"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "API wagwoord"
+ },
+ "description": "Voer asseblief die API-wagwoord in u http-config in:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Twee-faktor-Verifikasiekode"
+ },
+ "description": "Maak die ** {mfa_module_name} ** op u toestel oop om u twee-faktor-verifikasiekode te sien en u identiteit te verifieer:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "step": {
+ "init": {
+ "data": {
+ "user": "Gebruiker"
+ },
+ "description": "Kies asseblief die gebruiker as wie U will aanmeld as:"
+ }
+ }
+ }
+ },
+ "unknown_error": "Iets het skeef geloop",
+ "working": "Wag asseblief"
+ },
+ "initializing": "Inisialiseer",
+ "logging_in_with": "Meld tans aan met **{authProviderName}**.",
+ "pick_auth_provider": "Of meld aan met"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "deur {name}",
+ "introduction": "Welkom tuis! U het die Home Assistant demo bereik waar ons die beste UI's vertoon wat deur ons gemeenskap geskep is.",
+ "learn_more": "Kom meer te wete oor Home Assistant",
+ "next_demo": "Volgende demonstrasie"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Aktiwiteit",
+ "air": "Lug",
+ "commute_home": "Pendel na die huis",
+ "entertainment": "Vermaak",
+ "hdmi_input": "HDMI-toevoer",
+ "hdmi_switcher": "HDMI-omskakelaar",
+ "information": "Inligting",
+ "lights": "Ligte",
+ "morning_commute": "Oggend Pendel",
+ "total_tv_time": "Totale Televisie-tyd",
+ "turn_tv_off": "Skakel televisie af",
+ "volume": "Volume"
+ },
+ "names": {
+ "family_room": "Sitkamer",
+ "hallway": "Gang",
+ "kitchen": "Kombuis",
+ "left": "Links",
+ "master_bedroom": "Hoofslaapkamer",
+ "mirror": "Spieël",
+ "patio": "Stoep",
+ "right": "Regs",
+ "upstairs": "Boontoe"
+ },
+ "unit": {
+ "minutes_abbr": "min",
+ "watching": "Kyk Tans"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "core-config": {
+ "button_detect": "Ontdek",
+ "finish": "Volgende",
+ "intro": "Hallo {name}, welkom by Home Assistant. Hoe wil u u huis vernoem?",
+ "intro_location": "Ons wil graag weet waar u woon. Hierdie inligting sal help met die vertoon van inligting en die opstel van son-gebaseerde outomatisasies. Hierdie data word nooit buite u netwerk gedeel nie.",
+ "intro_location_detect": "Ons kan u help om hierdie inligting in te vul deur 'n eenmalige versoek aan 'n eksterne diens te rig.",
+ "location_name_default": "Tuis"
+ },
+ "integration": {
+ "finish": "Klaar",
+ "intro": "Toestelle en dienste word as integrasies in Home Assistant voorgestel. U kan dit nou opstel, of dit later doen vanaf die instellingskerm.",
+ "more_integrations": "Meer"
+ },
+ "intro": "Is u gereed om u huis te ontwaak, u privaatheid te herwin en by 'n wêreldwye gemeenskap van peuters aan te sluit?",
+ "user": {
+ "create_account": "Skep Rekening",
+ "data": {
+ "name": "Naam",
+ "password": "Wagwoord",
+ "password_confirm": "Bevestig Wagwoord",
+ "username": "Gebruikersnaam"
+ },
+ "error": {
+ "password_not_match": "Wagwoorde stem nie ooreen nie",
+ "required_fields": "Vul al die vereiste velde in"
+ },
+ "intro": "Kom ons begin deur 'n gebruikers rekening te skep.",
+ "required_field": "Vereis"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "link_promo": "Kom meer te wete"
+ },
+ "change_password": {
+ "confirm_new_password": "Bevestig Nuwe Wagwoord",
+ "current_password": "Huidige Wagwoord",
+ "error_required": "Vereis",
+ "header": "Verander Wagwoord",
+ "new_password": "Nuwe Wagwoord",
+ "submit": "Dien in"
+ },
+ "current_user": "U is tans aangemeld as {fullName} .",
+ "force_narrow": {
+ "description": "Dit sal die sybalk by aanvang verberg, soortgelyk aan die mobiele ervaring.",
+ "header": "Steek die sybalk altyd weg"
+ },
+ "is_owner": "U is 'n eienaar.",
+ "language": {
+ "dropdown_label": "Taal",
+ "header": "Taal",
+ "link_promo": "Help om te vertaal"
+ },
+ "logout": "Meld af",
+ "logout_text": "Is u seker dat u wil afmeld?",
+ "logout_title": "Teken uit?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Is u seker u wil die toegangs-tekseenheid vir {name} skrap?",
+ "create": "Skep Tekseenheid",
+ "create_failed": "Het misluk om die toegangs-tekseenheid te maak.",
+ "delete_failed": "Het misluk om die toegangs-tekseenheid te skrap.",
+ "description": "Skep langlewende-toegangs-tekseenhede om u skripte in staat te stel om met u Home Assistant-instansie te kommunikeer. Elke tekseenheid sal geldig wees vir 10 jaar vanaf die skepping. Die volgende langlewende-toegangs-tekseenheid is tans aktief.",
+ "empty_state": "U het nog geen langlewende-toegangs-tekseenhede nie.",
+ "header": "Langlewende-toegangs-tekseenhede",
+ "learn_auth_requests": "Leer hoe om geverifieerde versoeke te maak.",
+ "prompt_copy_token": "Kopieer u toegangs-tekseenheid. Dit sal nie weer gewys word nie.",
+ "prompt_name": "Naam?"
+ },
+ "mfa": {
+ "confirm_disable": "Is u seker u wil {name} deaktiveer?",
+ "disable": "Deaktiveer",
+ "enable": "Aktiveer",
+ "header": "Multi-faktor Verifikasie Modules"
+ },
+ "mfa_setup": {
+ "close": "Toe",
+ "step_done": "Opstelling gedoen vir {step}",
+ "submit": "Dien in",
+ "title_aborted": "Gestaak",
+ "title_success": "Sukses!"
+ },
+ "push_notifications": {
+ "description": "Stuur kennisgewings na hierdie toestel.",
+ "error_load_platform": "Stel notify.html5 op.",
+ "error_use_https": "Vereis dat SSL gedeaktiveer is vir gebruikerskoopelvlak.",
+ "header": "\"Push\" kennisgewings",
+ "link_promo": "Kom meer te wete",
+ "push_notifications": "\"Push\" kennisgewings"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Is u seker u wil die verfris-tekseenheid vir {name} skrap?",
+ "created_at": "Geskep op {date}",
+ "current_token_tooltip": "Nie in staat om huidige verfris-tekseenheid te skrap nie",
+ "delete_failed": "Het misluk om die verfris-tekseenheid te skrap.",
+ "description": "Elke verfris-tekseenheid verteenwoordig 'n aanmeldingssessie. Verfris-tekseenhede sal outomaties verwyder word wanneer u op meld af klik. Die volgende verfris-tekseenhede is tans aktief vir u rekening.",
+ "header": "Verfris-tekseenhede",
+ "last_used": "Laas gebruik op {date} vanaf {location}",
+ "not_used": "Is nog nooit gebruik nie",
+ "token_title": "Verfris-tekseenheid vir {clientId}"
+ },
+ "themes": {
+ "dropdown_label": "Tema",
+ "error_no_theme": "Geen temas beskikbaar nie.",
+ "header": "Tema",
+ "link_promo": "Kom meer te wete oor temas"
+ }
+ }
+ },
+ "sidebar": {
+ "external_app_configuration": "App Konfigurasie"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/ar.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/ar.json
new file mode 100644
index 00000000..b98d12af
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/ar.json
@@ -0,0 +1,3704 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "إدخال التكوين",
+ "device": "جهاز",
+ "integration": "تكامل",
+ "user": "مستخدم"
+ }
+ },
+ "groups": {
+ "owner": "المالك",
+ "system-admin": "مسؤولين",
+ "system-read-only": "مستخدمين للعرض فقط",
+ "system-users": "مستخدمين"
+ },
+ "panel": {
+ "calendar": "التقويم",
+ "config": "الإعدادات",
+ "developer_tools": "ادوات المطورين",
+ "history": "التاريخ",
+ "logbook": "السجل",
+ "mailbox": "البريد",
+ "map": "الخريطة",
+ "media_browser": "متصفح الوسائط",
+ "profile": "الملف الشخصي",
+ "shopping_list": "قائمة التسوق",
+ "states": "نظرة عامة"
+ },
+ "state": {
+ "default": {
+ "off": "مطفئ",
+ "on": "مشغل",
+ "unavailable": "غير متوفر",
+ "unknown": "غير معروف"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "تلقائي",
+ "off": "متوقف",
+ "on": "مشغل"
+ },
+ "hvac_action": {
+ "cooling": "تبريد",
+ "drying": "تجفيف",
+ "fan": "مروحة",
+ "heating": "تدفئة",
+ "idle": "خامل",
+ "off": "متوقف"
+ },
+ "preset_mode": {
+ "activity": "الانشطة",
+ "away": "بعيد",
+ "boost": "معزز",
+ "comfort": "مريح",
+ "eco": "اقتصادي",
+ "home": "المنزل",
+ "none": "لاشيء",
+ "sleep": "نوم"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "تلقائي",
+ "away": "بعيد",
+ "baby": "الطفل",
+ "boost": "عزز",
+ "comfort": "الراحة",
+ "eco": "اقتصادي",
+ "home": "في المنزل",
+ "normal": "عادي",
+ "sleep": "نوم"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "مفعل",
+ "armed_away": "مفعل",
+ "armed_custom_bypass": "مفعل",
+ "armed_home": "مفعل",
+ "armed_night": "مفعل",
+ "arming": "جاري التفعيل",
+ "disarmed": "غير مفعّل",
+ "disarming": "تعطيل",
+ "pending": "معلق",
+ "triggered": "تشغيل"
+ },
+ "default": {
+ "entity_not_found": "لم يتم العثور على الكيان",
+ "error": "خطأ",
+ "unavailable": "غير متوفر",
+ "unknown": "غير معروف"
+ },
+ "device_tracker": {
+ "home": "في المنزل",
+ "not_home": "خارج المنزل"
+ },
+ "person": {
+ "home": "في المنزل",
+ "not_home": "خارج المنزل"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "network": {
+ "disabled": "معطل"
+ },
+ "options": {
+ "show_unused_optional": "إظهار خيارات التكوين الاختيارية غير المستخدمة"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "فشل الحصول على سجل تغيير الوظيفة الإضافية",
+ "go_to_config": "فشل بدء الوظيفة الإضافية - فشل التحقق من صحة التكوين!",
+ "install": "فشل تثبيت الوظيفة الإضافية",
+ "restart": "فشل إعادة تشغيل الوظيفة الإضافية",
+ "start": "فشل بدء تشغيل الوظيفة الإضافية",
+ "start_invalid_config": "الانتقال إلى التكوين",
+ "stop": "فشل إيقاف الوظيفة الإضافية",
+ "uninstall": "فشل إلغاء تثبيت الوظيفة الإضافية",
+ "validate_config": "فشل التحقق من صحة تكوين الوظيفة الإضافية"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor ('Application Armor') هو وحدة أمان Linux kernel التي تقيد إمكانات الوظائف الإضافية مثل الوصول إلى الشبكة والوصول إلى المقبس الأولي والإذن بقراءة ملفات معينة أو كتابتها أو تنفيذها. \n\n يمكن لمؤلفي الإضافات توفير ملفات تعريف الأمان الخاصة بهم ، أو تحسينها للوظيفة الإضافية ، أو طلب تعطيلها. إذا تم تعطيل AppArmor ، فسيؤدي ذلك إلى زيادة مخاطر الأمان وبالتالي يكون له تأثير سلبي على درجة أمان الوظيفة الإضافية.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "يمكن للوظيفة الإضافية المصادقة على المستخدمين مقابل Home Assistant ، مما يسمح للوظائف الإضافية بمنح المستخدمين إمكانية تسجيل الدخول إلى التطبيقات التي تعمل داخل الوظائف الإضافية ، باستخدام اسم المستخدم / كلمة المرور الخاصة بـ Home Assistant. تشير هذه الشارة إلى ما إذا كان مؤلف الوظيفة الإضافية يطلب هذه الإمكانية.",
+ "title": "مصادقة Home Assistant"
+ },
+ "docker_api": {
+ "description": "طلب مؤلف الوظيفة الإضافية الحصول على وصول إداري إلى مثيل Docker الذي يعمل على نظامك. يمنح هذا الوضع الوظيفة الإضافية وصولاً كاملاً وتحكمًا كاملاً في نظام Home Assistant بالكامل ، مما يضيف مخاطر أمنية ، وقد يؤدي إلى إتلاف نظامك عند إساءة استخدامه. لذلك ، تؤثر هذه الميزة سلبًا على درجة أمان الوظيفة الإضافية. \n\n لا يتم منح هذا المستوى من الوصول تلقائيًا ويجب تأكيده بواسطتك. للقيام بذلك ، تحتاج إلى تعطيل وضع الحماية على الوظيفة الإضافية يدويًا. قم بتعطيل وضع الحماية فقط إذا كنت تعلم ، تحتاج وتثق بمصدر هذه الوظيفة الإضافية.",
+ "title": "الوصول الكامل إلى Docker"
+ },
+ "full_access": {
+ "description": "تُمنح هذه الوظيفة الإضافية حق الوصول الكامل إلى أجهزة نظامك ، بناءً على طلب مؤلف الوظيفة الإضافية. الوصول مشابه للوضع المميز في Docker. نظرًا لأن هذا يفتح مخاطر أمنية محتملة ، فإن هذه الميزة تؤثر سلبًا على درجة أمان الوظيفة الإضافية. \n\n لا يتم منح هذا المستوى من الوصول تلقائيًا ويجب تأكيده بواسطتك. للقيام بذلك ، تحتاج إلى تعطيل وضع الحماية على الوظيفة الإضافية يدويًا. قم بتعطيل وضع الحماية فقط إذا كنت تعلم وتحتاج وتثق بمصدر هذه الوظيفة الإضافية.",
+ "title": "الوصول الكامل إلى العتاد"
+ },
+ "hassio_api": {
+ "description": "تم منح الوظيفة الإضافية حق الوصول إلى Supervisor API ، بناءً على طلب مؤلف الوظيفة الإضافية. بشكل افتراضي ، يمكن للوظيفة الإضافية الوصول إلى معلومات الإصدار العامة لنظامك. عندما تطلب الوظيفة الإضافية وصول \"مدير\" أو \"مسؤول\" إلى واجهة برمجة التطبيقات ، فإنها ستحصل على حق الوصول للتحكم في أجزاء متعددة من نظام Home Assistant الخاص بك. يشار إلى هذا الإذن من خلال هذه الشارة وسيؤثر سلبًا على درجة أمان الاضافات.",
+ "title": "وصول supervisor API"
+ },
+ "homeassistant_api": {
+ "description": "يُسمح لهذه الوظيفة الإضافية بالوصول إلى مثيل Home Assistant قيد التشغيل مباشرةً عبر واجهة برمجة تطبيقات Home Assistant. يعالج هذا الوضع المصادقة للوظيفة الإضافية أيضًا ، مما يمكّن الوظيفة الإضافية من التفاعل مع Home Assistant دون الحاجة إلى رموز مصادقة إضافية.",
+ "title": "وصول Home Assistant API"
+ },
+ "host_network": {
+ "description": "تعمل الوظائف الإضافية عادةً في طبقة الشبكة المعزولة الخاصة بها ، مما يمنعها من الوصول إلى شبكة نظام التشغيل المضيف. في بعض الحالات ، يمكن أن يحد عزل الشبكة هذا من الوظائف الإضافية في تقديم خدماتها ، وبالتالي ، يمكن رفع العزلة بواسطة مؤلف الوظيفة الإضافية ، مما يمنح الوظيفة الإضافية حق الوصول الكامل إلى إمكانات الشبكة الخاصة بالجهاز المضيف. يمنح هذا الوظيفة الإضافية المزيد من إمكانيات الشبكة ولكنه يقلل من مستوى الأمان ، وبالتالي ، سيتم تخفيض تصنيف الأمان للوظيفة الإضافية عند استخدام هذا الخيار بواسطة الوظيفة الإضافية.",
+ "title": "الشبكة المضيفة"
+ },
+ "host_pid": {
+ "description": "عادة ، يتم عزل العمليات التي يتم تشغيلها الإضافي عن جميع عمليات النظام الأخرى. طالب مؤلف الوظيفة الإضافية بالوصول إلى عمليات النظام التي تعمل على مثيل النظام المضيف ، والسماح للوظيفة الإضافية بنشر العمليات على النظام المضيف أيضًا. يمنح هذا الوضع الوظيفة الإضافية وصولاً كاملاً وتحكمًا كاملاً في نظام Home Assistant بالكامل ، مما يضيف مخاطر أمنية ، وقد يؤدي إلى إتلاف نظامك عند إساءة استخدامه. لذلك ، تؤثر هذه الميزة سلبًا على درجة أمان الوظيفة الإضافية. \n\n لا يتم منح هذا المستوى من الوصول تلقائيًا ويجب تأكيده بواسطتك. للقيام بذلك ، تحتاج إلى تعطيل وضع الحماية على الوظيفة الإضافية يدويًا. قم بتعطيل وضع الحماية فقط إذا كنت تعلم ، تحتاج وتثق بمصدر هذه الوظيفة الإضافية.",
+ "title": "مساحة عمليات المضيف"
+ },
+ "ingress": {
+ "description": "تستخدم هذه الوظيفة الإضافية Ingress لتضمين واجهتها بشكل آمن في Home Assistant.",
+ "title": "مدخل"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "المصادقة",
+ "docker": "docker",
+ "hardware": "عتاد",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "مضيف",
+ "host_pid": "pid المضيف",
+ "ingress": "مدخل",
+ "rating": "تقييم",
+ "stage": "مرحلة"
+ },
+ "rating": {
+ "description": "يوفر Home Assistant تصنيفًا أمنيًا لكل من الوظائف الإضافية ، مما يشير إلى المخاطر التي تنطوي عليها عند استخدام هذه الوظيفة الإضافية. كلما زاد الوصول الذي تتطلبه الوظيفة الإضافية على نظامك ، انخفضت النتيجة ، وبالتالي تزيد من مخاطر الأمان المحتملة. \n\n تكون الدرجة على مقياس من 1 إلى 6. حيث 1 هي أدنى درجة (تعتبر الأكثر انعدامًا للأمان والأكثر خطورة) والنتيجة 6 هي أعلى درجة (تعتبر الأكثر أمانًا والأقل خطورة)."
+ },
+ "role": {
+ "admin": "المشرف",
+ "backup": "نسخ احتياطي",
+ "default": "إفتراضي",
+ "homeassistant": "homeassistant",
+ "manager": "مدير"
+ }
+ },
+ "hostname": "اسم المضيف",
+ "new_update_available": "{name} {version} متاح",
+ "not_available_arch": "هذه الوظيفة الإضافية غير متوافقة مع معالج جهازك أو نظام التشغيل الذي قمت بتثبيته على جهازك.",
+ "not_available_version": "أنت تقوم بتشغيل Home Assistant {core_version_installed} ، للتحديث إلى هذا الإصدار من الوظيفة الإضافية تحتاج على الأقل الإصدار {core_version_needed} من Home Assistant",
+ "open_web_ui": "افتح واجهة مستخدم الويب",
+ "option": {
+ "auto_update": {
+ "description": "التحديث التلقائي للوظيفة الإضافية عند توفر إصدار جديد",
+ "title": "تحديث تلقائي"
+ },
+ "boot": {
+ "description": "جعل الوظيفة الإضافية تبدأ أثناء إقلاع النظام",
+ "title": "ابدأ عند الاقلاع"
+ },
+ "ingress_panel": {
+ "description": "إضافة هذه الوظيفة الإضافية إلى الشريط الجانبي",
+ "title": "إظهار في الشريط الجانبي"
+ },
+ "protected": {
+ "title": "وضع الحماية"
+ },
+ "watchdog": {
+ "description": "سيبدأ هذا الوظيفة الإضافية إذا تعطلت",
+ "title": "مراقبه"
+ }
+ },
+ "protection_mode": {
+ "enable": "تفعيل وضع الحماية"
+ },
+ "visit_addon_page": "قم بزيارة صفحة {name} لمزيد من التفاصيل"
+ },
+ "documentation": {
+ "get_documentation": "فشل الحصول على وثائق الوظيفة الإضافية ، {error}"
+ },
+ "failed_to_save": "فشل حفظ تكوين الوظيفة الإضافية ، {error}",
+ "logs": {
+ "get_logs": "فشل الحصول على سجلات الوظائف الإضافية ، {error}"
+ },
+ "panel": {
+ "configuration": "الإعدادات",
+ "documentation": "الوثائق",
+ "info": "معلومات",
+ "log": "سجل"
+ },
+ "state": {
+ "installed": "الوظيفة الإضافية مثبتة",
+ "not_available": "الوظيفة الإضافية غير متوفرة على نظامك",
+ "not_installed": "الوظيفة الإضافية غير مثبتة"
+ }
+ },
+ "backup": {
+ "addons": "الإضافات",
+ "confirm_password": "تأكيد كلمة مرور النسخ الاحتياطي",
+ "could_not_create": "تعذر إنشاء النسخة الاحتياطية",
+ "create": "إنشاء",
+ "create_backup": "انشاء نسخة احتياطية",
+ "create_blocked_not_running": "إنشاء لقطة غير ممكن الآن لأن النظام في حالة {state}.",
+ "created": "خلقت",
+ "delete_backup_confirm": "حذف",
+ "delete_backup_text": "هل تريد أن تحذف {number} {number, plural,\n one {backups}\n other {backups}\n}?",
+ "delete_backup_title": "حذف نسخة احتياطية",
+ "delete_selected": "حذف النسخ الاحتياطية المحددة",
+ "enter_password": "الرجاء إدخال كلمة المرور.",
+ "failed_to_delete": "فشل الحذف",
+ "folders": "المجلدات",
+ "full_backup": "نسخة احتياطية كاملة",
+ "name": "اسم النسخة الاحتياطية",
+ "no_backups": "ليس لديك أي نسخ احياطية حتى الآن.",
+ "partial_backup": "نسخة احتياطية جزئية",
+ "password": "كلمة مرور النسخ الاحتياطي",
+ "password_protection": "حماية كلمة المرور",
+ "passwords_not_matching": "كلمات المرور غير متطابقة",
+ "select_type": "تحديد ما يجب استعادته",
+ "selected": "{number} حدد",
+ "type": "نوع النسخة الاحتياطية",
+ "upload_backup": "تحميل نسخة احتياطية"
+ },
+ "common": {
+ "cancel": "إلغاء",
+ "close": "إغلاق",
+ "error": {
+ "unknown": "خطأ غير معروف",
+ "update_failed": "فشل التحديث"
+ },
+ "failed_to_restart_name": "فشل في إعادة تشغيل {name}",
+ "failed_to_update_name": "فشل في تحديث {name}",
+ "menu": "القائمه",
+ "newest_version": "أحدث إصدار",
+ "no": "لا",
+ "refresh": "تحديث",
+ "release_notes": "ملاحظات الإصدار",
+ "reload": "إعادة تحميل",
+ "reset_defaults": "إعادة التعيين إلى الإعدادات الافتراضية",
+ "reset_options": "خيارات إعادة التعيين",
+ "restart": "إعادة التشغيل",
+ "restart_name": "أعد تشغيل {name}",
+ "running_version": "تقوم حاليا بتشغيل الإصدار {version}",
+ "save": "حفظ",
+ "show_more": "أظهر المزيد من المعلومات حول هذا",
+ "update": "تحديث",
+ "version": "الإصدار",
+ "yes": "نعم"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "هل أنت متأكد أنك تريد إعادة تعيين جميع خياراتك؟",
+ "title": "خيارات إعادة التعيين"
+ },
+ "restart": {
+ "text": "هل أنت متأكد أنك تريد إعادة تشغيل {name} ؟",
+ "title": "أعد تشغيل {name}"
+ },
+ "update": {
+ "text": "هل تريد بالتأكيد تحديث {name} إلى الإصدار {version} ؟",
+ "title": "تحديث {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "الإصدار الجديد متوفر",
+ "addon_running": "الوظيفة الإضافية قيد التشغيل",
+ "addon_stopped": "تم إيقاف الوظيفة الإضافية",
+ "addons": "الوظائف الإضافية المثبتة",
+ "no_addons": "لم يتم تثبيت أية إضافات بعد. توجه إلى متجر الإضافات للبدء!"
+ },
+ "dialog": {
+ "hardware": {
+ "attributes": "سمات",
+ "device_path": "مسار الجهاز",
+ "id": "معرف",
+ "search": "البحث عن العتاد",
+ "subsystem": "النظام الفرعي",
+ "title": "العتاد"
+ },
+ "network": {
+ "connected_to": "متصل بـ {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "معطل",
+ "dns_servers": "خوادم DNS",
+ "failed_to_change": "فشل تغيير إعدادات الشبكة",
+ "gateway": "عنوان البوابة",
+ "ip_netmask": "عنوان IP / قناع الشبكة",
+ "open": "فتح",
+ "scan_ap": "ابحث عن نقاط الوصول",
+ "static": "ثابتة",
+ "title": "إعدادات الشبكة",
+ "unsaved": "لديك تغييرات غير محفوظة ، ستضيع هذه التغييرات إذا قمت بتغيير علامات التبويب ، هل تريد المتابعة؟",
+ "warning": "إذا كنت تقوم بتغيير عناوين Wi-Fi أو IP أو البوابة ، فقد تفقد الاتصال!",
+ "wep": "WEP",
+ "wpa": "WPA PSK"
+ },
+ "registries": {
+ "add_new_registry": "إضافة سجل جديد",
+ "add_registry": "إضافة سجل",
+ "failed_to_add": "فشل في إضافة السجل",
+ "failed_to_remove": "فشل في إزالة السجل",
+ "no_registries": "لم يتم تكوين سجلات",
+ "password": "كلمة المرور",
+ "registry": "سجل",
+ "remove": "إزالة",
+ "title_add": "إضافة سجل حاوية جديد",
+ "title_manage": "إدارة سجلات الحاويات",
+ "username": "اسم المستخدم"
+ },
+ "repositories": {
+ "add": "إضافة",
+ "remove": "إزالة",
+ "title": "إدارة مستودعات الإضافات"
+ },
+ "restart_addon": {
+ "confirm_text": "أعد تشغيل الإضافة",
+ "text": "هل تريد إعادة تشغيل الإضافة بالتغييرات التي قمت بها؟"
+ },
+ "update": {
+ "backup": "نسخة احتياطية",
+ "create_backup": "قم بإنشاء نسخة احتياطية من {name} قبل التحديث",
+ "creating_backup": "إنشاء نسخة احتياطية من {name}",
+ "updating": "تحديث {name} إلى الإصدار {version}"
+ }
+ },
+ "my": {
+ "error": "حدث خطأ غير معروف",
+ "error_addon_no_ingress": "الوظيفة الإضافية المطلوبة لا تدعم الإدخال",
+ "error_addon_not_found": "لم يتم العثور على الإضافة",
+ "error_addon_not_installed": "لم يتم تثبيت الوظيفة الإضافية المطلوبة. الرجاء تثبيتها أولا",
+ "error_addon_not_started": "الوظيفة الإضافية المطلوبة ليست قيد التشغيل. يرجى تشغيلها أولاً",
+ "faq_link": "الأسئلة الشائعة حول My Home Assistant",
+ "not_supported": "لا يدعم مثيل Home Assistant إعادة التوجيه هذه. تحقق من {link} لعمليات إعادة التوجيه المدعومة والإصدار الذي تم تقديمه فيه."
+ },
+ "panel": {
+ "backups": "نسخ احتياطية",
+ "dashboard": "لوحة المعلومات",
+ "store": "متجر الوظائف الإضافية",
+ "system": "النظام"
+ },
+ "store": {
+ "missing_addons": "الإضافات المفقودة؟ مكن الوضع المتقدم في صفحة ملف تعريف المستخدم",
+ "no_results_found": "لم يتم العثور على نتائج في {repository} .",
+ "registries": "المسجلات",
+ "repositories": "مستودعات"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "استخدام وحدة المعالجة المركزية الأساسية",
+ "ram_usage": "استخدام ذاكرة الوصول العشوائي الأساسية"
+ },
+ "host": {
+ "change": "تغيير",
+ "change_hostname": "تغيير اسم المضيف",
+ "confirm_reboot": "هل تريد بالتأكيد إعادة تشغيل المضيف؟",
+ "confirm_shutdown": "هل تريد بالتأكيد إيقاف تشغيل المضيف؟",
+ "docker_version": "نسخة Docker",
+ "emmc_lifetime_used": "مدة حياة eMMC المستخدمة",
+ "failed_to_get_hardware_list": "فشل في الحصول على قائمة الأجهزة",
+ "failed_to_import_from_usb": "فشل الاستيراد من USB",
+ "failed_to_reboot": "فشل إعادة تشغيل المضيف",
+ "failed_to_set_hostname": "فشل إعداد اسم المضيف",
+ "failed_to_shutdown": "فشل إيقاف تشغيل المضيف",
+ "hardware": "العتاد",
+ "hostname": "اسم المضيف",
+ "import_from_usb": "الاستيراد من USB",
+ "ip_address": "عنوان IP",
+ "new_hostname": "الرجاء إدخال اسم مضيف جديد:",
+ "operating_system": "نظام التشغيل",
+ "reboot_host": "إعادة تشغيل المضيف",
+ "shutdown_host": "إيقاف تشغيل المضيف",
+ "used_space": "المساحة المستخدمة"
+ },
+ "log": {
+ "get_logs": "فشل الحصول على سجلات {provider} {error}",
+ "log_provider": "مزود السجل"
+ },
+ "supervisor": {
+ "beta_join_confirm": "هل تريد الانضمام إلى النسخ التجريبية؟",
+ "channel": "قناة",
+ "cpu_usage": "استخدام supervisor لـ CPU",
+ "failed_to_reload": "فشل في إعادة تحميل supervisor",
+ "failed_to_set_option": "فشل في تعيين خيار supervisor",
+ "failed_to_update": "فشل في تحديث supervisor",
+ "join_beta_action": "انضم إلى النسخ التجريبية",
+ "join_beta_description": "احصل على تحديثات تجريبية لـ Home Assistant (RCs) وsupervisor والمضيف",
+ "leave_beta_action": "غادر النسخ التجريبية",
+ "leave_beta_description": "احصل على تحديثات ثابتة لـ Home Assistant و supervisor والمضيف",
+ "ram_usage": "استخدام supervisor لـ RAM",
+ "reload_supervisor": "إعادة تحميل supervisor",
+ "search": "بحث",
+ "share_diagnostics": "شارك التشخيصات",
+ "share_diagnostics_description": "شارك تقارير الأعطال ومعلومات التشخيص.",
+ "share_diagonstics_description": "هل تريد مشاركة تقارير الأعطال والمعلومات التشخيصية تلقائيا عندما يواجه Supervisor أخطاء غير متوقعة؟ {line_break} سيسمح لنا هذا بإصلاح المشاكل ، والمعلومات متاحة فقط لفريق Home Assistant Core ولن يتم مشاركتها مع الآخرين. {line_break} لا تتضمن البيانات أي معلومات خاصة/حساسة ويمكنك تعطيلها في الإعدادات في أي وقت تريده.",
+ "share_diagonstics_title": "ساعد في تحسين Home Assistant",
+ "unhealthy_description": "سيؤدي تشغيل التثبيت غير الصحي إلى حدوث مشكلات. يوجد أدناه قائمة بالمشكلات التي تم العثور عليها في التثبيت الخاص بك ، انقر فوق الارتباطات لمعرفة كيفية حل المشكلات.",
+ "unhealthy_reason": {
+ "privileged": "supervisor ليس له امتياز",
+ "setup": "فشل إعداد supervisor",
+ "untrusted": "تم الكشف عن محتوى غير موثوق به"
+ },
+ "unhealthy_title": "التثبيت الخاص بك غير صحي",
+ "unsupported_description": "يوجد أدناه قائمة بالمشكلات التي تم العثور عليها في التثبيت الخاص بك ، انقر فوق الارتباطات لمعرفة كيفية حل المشكلات.",
+ "unsupported_reason": {
+ "apparmor": "لم يتم تمكين AppArmor على المضيف",
+ "content-trust": "تم تعطيل التحقق من صحة المحتوى",
+ "dbus": "DBUS",
+ "docker_version": "نسخة Docker",
+ "lxc": "LXC",
+ "network_manager": "مدير الشبكة",
+ "os": "نظام التشغيل",
+ "privileged": "supervisor ليس له امتياز",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "أنت تقوم بتشغيل تثبيت غير مدعوم",
+ "update_supervisor": "تحديث supervisor",
+ "warning": "تحذير"
+ }
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "هل تريد البقاء مسجلا الدخول؟",
+ "confirm": "نعم",
+ "decline": "لا"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "تفعيل خارج المنزل",
+ "arm_custom_bypass": "تجاوز مخصص",
+ "arm_home": "تفعيل في المنزل",
+ "arm_night": "تفعيل بالليل",
+ "clear_code": "مسح",
+ "code": "الرمز",
+ "disarm": "تعطيل"
+ },
+ "automation": {
+ "last_triggered": "آخر تشغيل",
+ "trigger": "تشغيل الإجراءات"
+ },
+ "camera": {
+ "not_available": "الصورة غير متاحة"
+ },
+ "climate": {
+ "aux_heat": "حرارة Aux",
+ "away_mode": "خارج المنزل",
+ "cooling": "تبريد {name}",
+ "current_temperature": "{name} درجة الحرارة الحالية",
+ "currently": "حاليا",
+ "fan_mode": "وضع المروحة",
+ "heating": "{name} تدفئة",
+ "high": "عالي",
+ "low": "منخفض",
+ "on_off": "إيقاف/تشغيل",
+ "operation": "الوضع",
+ "preset_mode": "الضبط المسبق",
+ "swing_mode": "وضع الموجه",
+ "target_humidity": "الرطوبة المستهدفة",
+ "target_temperature": "درجة الحرارة المستهدفة",
+ "target_temperature_entity": "{name} درجة الحرارة المستهدفة",
+ "target_temperature_mode": "{name} درجة الحرارة المستهدفة {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "انقاص",
+ "increment": "زياده",
+ "reset": "اعاده تعيين"
+ }
+ },
+ "cover": {
+ "position": "موضع",
+ "tilt_position": "وضع الإمالة"
+ },
+ "fan": {
+ "direction": "Richting",
+ "forward": "أمامي",
+ "oscillate": "تذبذب",
+ "preset_mode": "وضع الضبط المسبق",
+ "reverse": "عكس",
+ "speed": "Snelheid"
+ },
+ "humidifier": {
+ "humidity": "الرطوبة المستهدفة",
+ "mode": "الوضع",
+ "on_entity": "{name} يعمل",
+ "target_humidity_entity": "{name} الرطوبة المستهدفة"
+ },
+ "light": {
+ "brightness": "السطوع",
+ "cold_white_value": "سطوع أبيض بارد",
+ "color_brightness": "سطوع اللون",
+ "color_temperature": "درجة حرارة اللون",
+ "effect": "مؤثرات",
+ "warm_white_value": "سطوع أبيض دافئ",
+ "white_value": "سطوع الأبيض"
+ },
+ "lock": {
+ "code": "الرمز",
+ "lock": "قفل",
+ "unlock": "فتح"
+ },
+ "media_player": {
+ "browse_media": "تصفح الوسائط",
+ "media_next_track": "التالى",
+ "media_play": "تشغيل",
+ "media_play_pause": "تشغيل/إيقاف مؤقت",
+ "media_previous_track": "السابق",
+ "sound_mode": "وضع الصوت",
+ "source": "المصدر",
+ "text_to_speak": "النص للتحدث",
+ "turn_off": "إيقاف تشغيل",
+ "turn_on": "تشغيل"
+ },
+ "persistent_notification": {
+ "dismiss": "إخفاء"
+ },
+ "scene": {
+ "activate": "تفعيل"
+ },
+ "script": {
+ "cancel": "إلغاء",
+ "cancel_multiple": "إلغاء {number}",
+ "run": "تشغيل"
+ },
+ "service": {
+ "run": "تشغيل"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "إلغاء",
+ "finish": "إنهاء",
+ "pause": "إيقاف مؤقت",
+ "start": "بدء"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "استئناف التنظيف",
+ "return_to_base": "العودة",
+ "start_cleaning": "بدء تنظيف",
+ "turn_off": "إيقاف",
+ "turn_on": "تشغيل"
+ }
+ },
+ "water_heater": {
+ "away_mode": "حالة خارج المنزل",
+ "currently": "حاليا",
+ "on_off": "إيقاف/تشغيل",
+ "operation": "تشغيل",
+ "target_temperature": "درجة الحرارة المستهدفة"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "الضغط الجوي",
+ "humidity": "الرطوبة",
+ "precipitation": "ترسب",
+ "temperature": "الحرارة",
+ "visibility": "الرؤية",
+ "wind_speed": "سرعة الرياح"
+ },
+ "cardinal_direction": {
+ "e": "شرق",
+ "ene": "شرق شمال شرقي",
+ "ese": "شرق جنوب شرقي",
+ "n": "شمال",
+ "ne": "شمال شرق",
+ "nne": "شمال شمال شرقي",
+ "nnw": "شمال شمال غربي",
+ "nw": "شمال غرب",
+ "s": "جنوب",
+ "se": "جنوب غرب",
+ "sse": "جنوب جنوب شرقي",
+ "ssw": "جنوب جنوب غربي",
+ "sw": "جنوب غرب",
+ "w": "غرب",
+ "wnw": "غرب شمال غربي",
+ "wsw": "غرب جنوب غربي"
+ },
+ "day": "يوم",
+ "forecast": "التوقعات",
+ "high": "عالي",
+ "low": "منخفض"
+ }
+ },
+ "common": {
+ "and": "و",
+ "back": "عودة",
+ "cancel": "إلغاء",
+ "close": "إغلاق",
+ "continue": "استمر",
+ "copied_clipboard": "نسخت إلى الحافظة",
+ "delete": "حذف",
+ "disable": "تعطيل",
+ "enable": "تغعيل",
+ "error_required": "مطلوب",
+ "leave": "غادر",
+ "loading": "جار التحميل",
+ "menu": "القائمه",
+ "next": "التالى",
+ "no": "لا",
+ "not_now": "ليس الان",
+ "overflow_menu": "قائمة تجاوز السعة",
+ "previous": "السابق",
+ "refresh": "تحديث",
+ "remove": "إزالة",
+ "rename": "إعادة تسمية",
+ "save": "حفظ",
+ "skip": "تخطي",
+ "stay": "بقى",
+ "successfully_deleted": "تم الحذف بنجاح",
+ "successfully_saved": "تم الحفظ بنجاح",
+ "undo": "تراجع",
+ "yes": "نعم"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "الاضافات",
+ "error": {
+ "no_supervisor": {
+ "description": "لم يتم العثور على supervisor ، لذلك لا يمكن تحميل الوظائف الإضافية.",
+ "title": "لا supervisor"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "إضافة",
+ "name": "الاسم",
+ "text": "أدخل اسم المنطقة الجديدة.",
+ "title": "أضف منطقة جديدة"
+ },
+ "add_new": "اضف منطقة جديدة…",
+ "area": "المنطقة",
+ "clear": "مسح",
+ "no_areas": "ليس لديك أي مناطق",
+ "no_match": "لم يتم العثور على مناطق مطابقة",
+ "show_areas": "إظهار المناطق"
+ },
+ "attributes": {
+ "expansion_header": "سمات"
+ },
+ "blueprint-picker": {
+ "add_user": "أضف مستخدم",
+ "remove_user": "إزالة مستخدم"
+ },
+ "calendar": {
+ "my_calendars": "التقويمات الخاصة بي",
+ "today": "اليوم"
+ },
+ "data-table": {
+ "clear": "مسح",
+ "filtering_by": "التصفية حسب",
+ "hidden": "{number} مخفي",
+ "no-data": "لايوجد بيانات",
+ "search": "بحث"
+ },
+ "date-range-picker": {
+ "end_date": "تاريخ الإنتهاء",
+ "ranges": {
+ "last_week": "الأسبوع الماضي",
+ "this_week": "هذا الأسبوع",
+ "today": "اليوم",
+ "yesterday": "أمس"
+ },
+ "select": "اختر",
+ "start_date": "تاريخ البدء"
+ },
+ "device-picker": {
+ "clear": "مسح",
+ "device": "جهاز",
+ "no_area": "لا مجال",
+ "no_devices": "ليس لديك أي أجهزة",
+ "no_match": "لم يتم العثور على أجهزة مطابقة",
+ "show_devices": "عرض الأجهزة",
+ "toggle": "تبديل"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "السمه",
+ "show_attributes": "إظهار السمات"
+ },
+ "entity-picker": {
+ "clear": "مسح",
+ "entity": "كيان",
+ "show_entities": "إظهار الكيانات"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "تم تعطيل سجل التكامل",
+ "loading_history": "جارٍ تحميل سجل الحالات…",
+ "no_history_found": "لم يتم العثور على سجل الحالات."
+ },
+ "logbook": {
+ "by": "بواسطة",
+ "entries_not_found": "لم يتم العثور على إدخالات في دفتر السجلات.",
+ "messages": {
+ "became_unavailable": "أصبح غير متوفر",
+ "changed_to_state": "تغير إلى {state}",
+ "detected_device_class": "تم الكشف عن {device_class}",
+ "is_closing": "قيد الاغلاق",
+ "is_opening": "يفتح",
+ "rose": "وردة",
+ "set": "اضبط",
+ "turned_off": "أطفئ",
+ "turned_on": "تم تشغيله",
+ "was_at_home": "تم اكتشافه في المنزل",
+ "was_at_state": "تم اكتشافه في {state}",
+ "was_away": "تم اكتشافه بعيدًا",
+ "was_closed": "كان مغلقاً",
+ "was_connected": "كان متصلا",
+ "was_disconnected": "كان مفصولاً",
+ "was_locked": "كان مؤمناً",
+ "was_low": "كان منخفضا",
+ "was_normal": "كان طبيعيا",
+ "was_opened": "كان مفتوحاً",
+ "was_plugged_in": "كان موصلاً في",
+ "was_safe": "كان آمنا",
+ "was_unlocked": "كان غير مؤمن",
+ "was_unplugged": "كان غير موصل",
+ "was_unsafe": "كان غير امن"
+ },
+ "retrieval_error": "خطأ أثناء استرداد إدخال السجل",
+ "show_trace": "عرض التتبع"
+ },
+ "media-browser": {
+ "audio_not_supported": "متصفحك لا يدعم عنصر الصوت.",
+ "class": {
+ "album": "البوم",
+ "app": "التطبيق",
+ "artist": "الفنان",
+ "channel": "القناة",
+ "composer": "الملحن",
+ "url": "URL"
+ },
+ "media-player-browser": "متصفح مشغل الوسائط",
+ "media_browsing_error": "خطأ في استعراض الوسائط",
+ "media_not_supported": "لا يدعم مشغل الوسائط هذا النوع من الوسائط",
+ "media_player": "مشغل الوسائط",
+ "no_items": "لا توجد عناصر",
+ "pick": "اختار",
+ "pick-media": "اختر الوسائط",
+ "play": "تشغيل",
+ "play-media": "تشغيل الوسائط",
+ "video_not_supported": "متصفحك لا يدعم عنصر الفيديو."
+ },
+ "picture-upload": {
+ "label": "صورة",
+ "unsupported_format": "تنسيق غير مدعوم ، يرجى اختيار صورة JPEG أو PNG أو GIF."
+ },
+ "related-filter-menu": {
+ "filter_by_area": "تصفية حسب المنطقة",
+ "filter_by_device": "تصفية حسب الجهاز",
+ "filter_by_entity": "تصفية حسب الكيان",
+ "filtered_by_area": "المنطقة: {area_name}",
+ "filtered_by_device": "الجهاز: {device_name}",
+ "filtered_by_entity": "الكيان: {entity_name}"
+ },
+ "related-items": {
+ "area": "المنطقة",
+ "automation": "جزء من الأتمتة التالية",
+ "device": "جهاز",
+ "entity": "الكيانات ذات الصلة",
+ "integration": "تكامل"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\none {يوم}\nother {أيام}\n}",
+ "hour": "{count} {count, plural,\none {ساعة}\nother {ساعات}\n}",
+ "minute": "{count} {count, plural,\n one {دقيقة}\n other {دقائق}\n}",
+ "second": "{count} {count, plural,\none {ثانية}\nother {ثواني}\n}",
+ "week": "{count} {count, plural,\none {أسبوع}\nother {أسابيع}\n}"
+ },
+ "future_duration": {
+ "day": "خلال {count, plural,\n one {يوم}\n two {يومين}\n other {{count} يوم}\n}",
+ "minute": "خلال {count} {count, plural,\n one {دقيقة}\n other {دقيقة}\n}"
+ },
+ "just_now": "في هذة اللحظة",
+ "never": "Nooit",
+ "past_duration": {
+ "day": "قبل {count} {count, plural,\n one {يوم}\n other {ايام}\n}",
+ "hour": "قبل {count} {count, plural,\n one {ساعة}\n other {ساعات}\n}",
+ "minute": "قبل {count} {count, plural,\n one {دقيقة}\n other {دقيقة}\n}",
+ "second": "قبل {count} {count, plural,\n one {ثانية}\n other {ثواني}\n}",
+ "week": "قبل {count} {count, plural,\n one {اسبوع}\n other {اسابيع}\n}"
+ }
+ },
+ "service-control": {
+ "integration_doc": "وثائق التكامل",
+ "target": "الأهداف",
+ "target_description": "ما الذي يجب أن تستخدمه هذه الخدمة كمناطق أو أجهزة أو كيانات مستهدفة."
+ },
+ "service-picker": {
+ "service": "خدمة"
+ },
+ "statistic-picker": {
+ "learn_more": "تعرف على المزيد حول الإحصائيات",
+ "missing_entity": "لماذا الكيان الخاص بي غير مدرج؟",
+ "no_match": "لم يتم العثور على إحصائيات مطابقة",
+ "no_statistics": "ليس لديك أي إحصائيات",
+ "statistic": "إحصائية"
+ },
+ "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": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "إذا كان يجب إضافة الأجهزة المكتشفة حديثًا لـ {integration}",
+ "enable_new_entities_label": "تمكين الكيانات المضافة حديثًا.",
+ "enable_polling_description": "إذا كان يجب على Home Assistant سحب {integration} تلقائيًا للحصول على التحديثات.",
+ "enable_polling_label": "تمكين سحب التحديثات.",
+ "restart_home_assistant": "تحتاج إلى إعادة تشغيل Home Assistant حتى تصبح التغييرات سارية المفعول.",
+ "title": "خيارات النظام لـ {integration}",
+ "update": "تحديث"
+ },
+ "domain_toggler": {
+ "reset_entities": "إعادة تعيين الكيانات"
+ },
+ "entity_registry": {
+ "control": "تحكم",
+ "customize_link": "تخصيصات العنصر",
+ "dismiss": "إخفاء",
+ "editor": {
+ "advanced": "إعدادات متقدمة",
+ "area": "حدد منطقة العنصر فقط",
+ "area_note": "بشكل افتراضي ، تكون كيانات الجهاز في نفس منطقة الجهاز. إذا قمت بتغيير منطقة هذا الكيان ، فلن يتبع بعد ذلك منطقة الجهاز.",
+ "change_device_area": "تغيير منطقة الجهاز",
+ "confirm_delete": "هل أنت متأكد أنك تريد حذف هذا الإدخال؟",
+ "delete": "حذف",
+ "device_disabled": "جهاز هذا الكيان معطل.",
+ "enabled_cause": "معطل بسبب {cause} .",
+ "enabled_delay_confirm": "ستتم إضافة الكيانات الممكّنة إلى Home Assistant في غضون {delay} ثانية",
+ "enabled_description": "لن تتم إضافة الكيانات المعطلة إلى Home Assistant.",
+ "enabled_restart_confirm": "أعد تشغيل Home Assistant لإنهاء تمكين الكيانات",
+ "follow_device_area": "اتبع منطقة الجهاز",
+ "icon": "أيقونة",
+ "icon_error": "يجب أن تكون الرموز بتنسيق 'prefix:iconname'، على سبيل المثال \"mdi: home\"",
+ "name": "الاسم",
+ "note": "ملاحظة: قد لا يعمل مع كافة التكاملات بعد.",
+ "open_device_settings": "فتح إعدادات الجهاز",
+ "unavailable": "هذا الكيان غير متوفر حاليا.",
+ "update": "تحديث"
+ },
+ "info_customize": "يمكنك الكتابة فوق بعض السمات في قسم {customize_link} .",
+ "no_unique_id": "لا يحتوي هذا الكيان (\"{entity_id}\") على معرف فريد، ولذلك لا يمكن إدارة إعداداته من واجهة المستخدم. راجع {faq_link} لمزيد من التفاصيل.",
+ "related": "ذات صلة",
+ "settings": "إعدادات"
+ },
+ "generic": {
+ "cancel": "إلغاء الأمر",
+ "close": "إغلاق",
+ "default_confirmation_title": "هل أنت متأكد؟",
+ "ok": "موافق"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "القيمة الأولية",
+ "maximum": "القيمة القصوى",
+ "minimum": "القيمة الدنيا",
+ "restore": "قم باستعادة آخر قيمة معروفة عند بدء تشغيل Home Assistant",
+ "step": "حجم الخطوة"
+ },
+ "generic": {
+ "icon": "أيقونة",
+ "name": "الاسم"
+ },
+ "input_datetime": {
+ "date": "تاريخ",
+ "datetime": "التاريخ والوقت",
+ "mode": "ما الذي تريد إدخاله",
+ "time": "الوقت"
+ },
+ "input_number": {
+ "box": "حقل الإدخال",
+ "max": "القيمة القصوى",
+ "min": "القيمة الدنيا",
+ "mode": "وضع العرض",
+ "slider": "شريط التمرير",
+ "step": "حجم الخطوة",
+ "unit_of_measurement": "وحدة القياس"
+ },
+ "input_select": {
+ "add": "إضافة",
+ "add_option": "إضافة خيار",
+ "no_options": "لا توجد خيارات حتى الآن.",
+ "options": "الخيارات"
+ },
+ "input_text": {
+ "max": "الحد الأقصى للطول",
+ "min": "الحد الأدنى للطول",
+ "mode": "وضع العرض",
+ "password": "كلمة المرور",
+ "pattern": "نمط Regex للتحقق من جانب العميل",
+ "text": "النص"
+ },
+ "platform_not_loaded": "لم يتم تحميل تكامل {platform} . يرجى إضافته إلى التكوين الخاص بك إما عن طريق إضافة ':default_config' أو \"{platform}\".",
+ "required_error_msg": "هذه الخانة مطلوبه",
+ "timer": {
+ "duration": "المدة"
+ },
+ "yaml_not_editable": "لا يمكن تحرير إعدادات هذا الكيان من واجهة المستخدم. يمكن تكوين الكيانات التي تم إعدادها من واجهة المستخدم فقط من واجهة المستخدم."
+ },
+ "image_cropper": {
+ "crop": "اقتصاص"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "إغلاق الغطاء",
+ "close_tile_cover": "إغلاق إمالة الغطاء",
+ "open_cover": "غطاء مفتوح",
+ "open_tilt_cover": "فتح إمالة الغطاء",
+ "stop_cover": "إيقاف الغطاء عن الحركة"
+ },
+ "details": "التفاصيل",
+ "dismiss": "استبعاد الحوار",
+ "edit": "تحرير الكيان",
+ "history": "التاريخ",
+ "last_changed": "آخر تعديل",
+ "last_updated": "آخر تحديث",
+ "person": {
+ "create_zone": "إنشاء منطقة من الموقع الحالي"
+ },
+ "remote": {
+ "activity": "النشاط الحالي"
+ },
+ "restored": {
+ "confirm_remove_text": "هل أنت متأكد أنك تريد إزالة هذا الكيان؟",
+ "not_provided": "هذا الكيان غير متاح حاليًا وهو معزول عن تكامل أو جهاز تمت إزالته أو تغييره أو اختلال وظيفته."
+ },
+ "script": {
+ "last_action": "الإجراء الأخير",
+ "last_triggered": "آخر تشغيل"
+ },
+ "settings": "إعدادات الكيان",
+ "sun": {
+ "elevation": "ارتفاع",
+ "rising": "ارتفاع",
+ "setting": "ضبط"
+ },
+ "updater": {
+ "title": "تعليمات التحديث"
+ },
+ "vacuum": {
+ "clean_spot": "بقعة نظيفة",
+ "commands": "أوامر المكنسة الكهربائية:",
+ "fan_speed": "سرعة المروحة",
+ "locate": "حدد",
+ "pause": "إيقاف مؤقت",
+ "return_home": "العودة للرئيسية",
+ "start": "بدء",
+ "start_pause": "بدء/إيقاف مؤقت",
+ "status": "الحالة",
+ "stop": "توقف"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "محاولة تحليل رسائل MQTT كJSON",
+ "entities": "الكيانات",
+ "no_entities": "لا توجد كيانات",
+ "no_triggers": "لا توجد محفزات",
+ "payload_display": "عرض الـPayload",
+ "recent_messages": "{n} أحدث الرسائل المستلمة",
+ "show_as_yaml": "إظهار كـ YAML",
+ "title": "{device} معلومات تصحيح الأخطاء",
+ "triggers": "محفزات"
+ },
+ "options_flow": {
+ "form": {
+ "header": "الخيارات"
+ },
+ "loading": {
+ "loading_flow": "يرجى الانتظار حتى يتم تهيئة خيارات {integration}",
+ "loading_step": "تحميل الخطوة التالية لـ {integration}"
+ },
+ "success": {
+ "description": "تم حفظ الخيارات بنجاح."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "المناطق",
+ "automation": "الأتمتة",
+ "blueprint": "المخططات",
+ "core": "عام",
+ "customize": "التخصيصات",
+ "devices": "الأجهزة",
+ "entities": "الكيانات",
+ "helpers": "المساعدين",
+ "info": "معلومات",
+ "integrations": "التكاملات",
+ "logs": "السجلات",
+ "lovelace": "لوحات معلومات Lovelace",
+ "person": "الأشخاص",
+ "scene": "مشاهد",
+ "script": "السكريبتات",
+ "server_control": "عناصر التحكم بالخادم",
+ "tag": "العلامات",
+ "users": "المستخدمين",
+ "zone": "المناطق"
+ },
+ "reload": {
+ "command_line": "كيانات سطر الأوامر",
+ "filesize": "كيانات حجم الملف",
+ "filter": "تصفية الكيانات",
+ "generic": "كيانات كاميرا IP عامة",
+ "generic_thermostat": "كيانات ترموستات عامة",
+ "history_stats": "كيانات احصائيات التاريخ",
+ "homekit": "HomeKit",
+ "input_boolean": "قيم الإدخال المنطقية",
+ "input_datetime": "مدخل الوقت والتاريخ",
+ "input_number": "أرقام الإدخال",
+ "input_select": "تحديد المدخلات",
+ "input_text": "نصوص الإدخال",
+ "min_max": "الحد الأدنى/الأقصى للكيانات",
+ "mqtt": "كيانات MQTT المكونة يدويًا",
+ "person": "الناس",
+ "rest": "اعادة ضبط الكيانات وإخطار الخدمات",
+ "rpi_gpio": "كيانات Raspberry Pi GPIO",
+ "scene": "مشاهد",
+ "smtp": "خدمات إعلام SMTP",
+ "statistics": "الكيانات الإحصائية",
+ "telegram": "خدمات اشعارات Telegram",
+ "template": "كيانات القالب",
+ "universal": "كيانات مشغل الوسائط العالمي",
+ "zone": "المناطق"
+ },
+ "server_control": {
+ "perform_action": "{action} الخادم"
+ },
+ "types": {
+ "navigation": "التنقل",
+ "reload": "إعادة تحميل",
+ "server_control": "الخادم"
+ }
+ },
+ "filter_placeholder": "عامل تصفية الكيان"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant لم يسمع أي شيء",
+ "label": "اكتب سؤالاً واضغط على \"إدخال\"",
+ "label_voice": "اكتب واضغط على \"إدخال\" أو انقر على الميكروفون للتحدث"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "أضف أجهزة عبر هذا الجهاز",
+ "clusters": "إدارة العناقيد",
+ "reconfigure": "إعادة تكوين الجهاز",
+ "remove": "إزالة الجهاز",
+ "view_in_visualization": "عرض في التصور",
+ "zigbee_information": "معلومات جهاز Zigbee"
+ },
+ "confirmations": {
+ "remove": "هل أنت متأكد أنك تريد إزالة الجهاز؟"
+ },
+ "device_signature": "توقيع جهاز Zigbee",
+ "last_seen": "اخر ظهور",
+ "manuf": "بواسطة {manufacturer}",
+ "no_area": "لا توجد منطقة",
+ "power_source": "مصدر الطاقة",
+ "services": {
+ "reconfigure": "إعادة تكوين جهاز ZHA (معالجة الجهاز). استخدم هذا إذا كنت تواجه مشكلات مع الجهاز. إذا كان الجهاز المعني جهازًا يعمل بالبطارية ، فيرجى التأكد من أنه مستيقظ ويقبل الأوامر عند استخدام هذه الخدمة.",
+ "remove": "إزالة جهاز من شبكة Zigbee.",
+ "updateDeviceName": "قم بتعيين اسم مخصص لهذا الجهاز في سجل الجهاز.",
+ "zigbee_information": "عرض معلومات Zigbee للجهاز."
+ },
+ "unknown": "غير معروف",
+ "zha_device_card": {
+ "device_name_placeholder": "تغيير اسم الجهاز"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "السمه",
+ "battery_device_warning": "ستحتاج إلى تنبيه او تشغيل الأجهزة التي تعمل بالبطاريات قبل بدء عملية إعادة التكوين. ارجع إلى دليل جهازك للحصول على إرشادات حول كيفية تنبيه او تشغيل الجهاز.",
+ "bind_header": "ربط",
+ "button_hide": "أخف التفاصيل",
+ "button_show": "إظهار التفاصيل",
+ "cluster_header": "تجمع",
+ "configuration_complete": "اكتمال إعادة تكوين الجهاز.",
+ "configuration_failed": "فشلت إعادة تكوين الجهاز. قد تتوفر معلومات إضافية في السجلات.",
+ "configuring_alt": "تكوين",
+ "heading": "إعادة تكوين الجهاز",
+ "in_progress": "يتم إعادة تكوين الجهاز. هذا قد يستغرق بعض الوقت.",
+ "introduction": "أعد تكوين جهاز على شبكة Zigbee الخاصة بك. استخدم هذه الميزة إذا كان جهازك لا يعمل بشكل صحيح.",
+ "min_max_change": "الأدنى / الأقصى / تغيير",
+ "reporting_header": "إبلاغ",
+ "run_in_background": "يمكنك إغلاق هذا الحوار وستستمر إعادة التكوين في الخلفية.",
+ "start_reconfiguration": "بدء إعادة التكوين"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\none {يوم}\nother {أيام}\n}",
+ "hour": "{count} {count, plural,\none {ساعة}\nother {ساعات}\n}",
+ "minute": "{count} {count, plural,\n one {دقيقة}\n other {دقائق}\n}",
+ "second": "{count, plural,\n one {ثانية}\n two {ثانيتين}\n other {{count} ثانية}\n}",
+ "week": "{count, plural,\n one {اسبوع}\n two {اسبوعين}\n other {{count} اسابيع}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "لا يزال بإمكانك تعديل التكوين الخاص بك في YAML.",
+ "editor_not_available": "لا يتوفر محرر مرئي للنوع \" {type} \".",
+ "editor_not_supported": "المحرر المرئي غير معتمد لهذا التكوين",
+ "error_detected": "تم الكشف عن أخطاء التكوين",
+ "key_missing": "المفتاح المطلوب \" {key} \" مفقود.",
+ "key_not_expected": "المفتاح \" {key} \" غير متوقع أو غير مدعوم بواسطة المحرر المرئي.",
+ "key_wrong_type": "القيمة المتوفرة ل \"{key}\" غير معتمدة من قبل المحرر المرئي. نحن ندعم ({type_correct}) ولكن تلقينا ({type_wrong}).",
+ "no_template_editor_support": "القوالب غير مدعومة في المحرر المرئي",
+ "no_type_provided": "لم يتم تقديم أي نوع."
+ },
+ "supervisor": {
+ "ask": "اطلب المساعدة",
+ "observer": "تحقق من المراقب",
+ "reboot": "حاول إعادة تشغيل المضيف",
+ "system_health": "تحقق من صحة النظام",
+ "title": "تعذر تحميل لوحة supervisor!",
+ "wait": "إذا كنت قد بدأت للتو ، فتأكد من منح supervisor الوقت الكافي للبدء."
+ }
+ },
+ "login-form": {
+ "log_in": "تسجيل الدخول",
+ "password": "كلمة المرور",
+ "remember": "تذكر"
+ },
+ "notification_drawer": {
+ "click_to_configure": "انقر هنا لتعديل {entity}",
+ "close": "إغلاق",
+ "dismiss_all": "إخفي الكل",
+ "empty": "لاتوجد إشعارات",
+ "title": "الاشعارات"
+ },
+ "notification_toast": {
+ "connection_lost": "انقطع الاتصال. جاري إعادة الاتصال…",
+ "integration_starting": "بدء {integration}، لن يتوفر كل شيء حتى يتم الانتهاء منه.",
+ "service_call_failed": "فشل الاتصال بخدمة {service} .",
+ "started": "Home Assistant بدأ!",
+ "starting": "يبدأ برنامج Home Assistant حاليا ، ولن يكون كل شيء متاحًا حتى الانتهاء.",
+ "triggered": "تم تشغيل {name}",
+ "wrapping_up_startup": "اختتام بدء التشغيل، لن يكون كل شيء متاحا حتى يتم الانتهاء منه."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "خيارات التكوين مفقودة؟ مكن الوضع المتقدم على",
+ "link_profile_page": "صفحة ملفك الشخصي"
+ },
+ "areas": {
+ "caption": "المناطق",
+ "data_table": {
+ "area": "المنطقة",
+ "devices": "الأجهزة",
+ "entities": "الكيانات"
+ },
+ "delete": {
+ "confirmation_text": "سيتم إلغاء تعيين جميع الأجهزة في هذه المنطقة.",
+ "confirmation_title": "هل أنت متأكد أنك تريد حذف هذه المنطقة؟"
+ },
+ "description": "تجميع الأجهزة والكيانات في مناطق",
+ "editor": {
+ "area_id": "المنطقة",
+ "create": "إضافة",
+ "default_name": "منطقة جديدة",
+ "delete": "حذف",
+ "linked_entities_caption": "الكيانات",
+ "name": "اسم",
+ "name_required": "الاسم مطلوب",
+ "no_linked_entities": "لا توجد كيانات مرتبطة بهذه المنطقة.",
+ "unknown_error": "خطأ غير معروف",
+ "update": "تحديث"
+ },
+ "picker": {
+ "create_area": "إنشاء منطقة",
+ "header": "المناطق",
+ "integrations_page": "صفحة التكاملات",
+ "introduction": "يتم استخدام المناطق لتنظيم أمكنة الأجهزة. سيتم استخدام هذه المعلومات في جميع أنحاء Home Assistant لمساعدتك في تنظيم الواجهة والأذونات و التكاملات مع الأنظمة الأخرى.",
+ "introduction2": "لوضع الأجهزة في منطقة ما، إستخدم الرابط أدناه للإنتقال إلى صفحة التكاملات ثم انقر فوق تكامل مكوّن للوصول إلى بطاقات الجهاز.",
+ "no_areas": "يبدو أنه ليس لديك مناطق بعد!"
+ }
+ },
+ "automation": {
+ "caption": "الأتمتة",
+ "description": "إنشاء قاعدة سلوكية مخصصة لمنزلك.",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "استخدم مخططًا"
+ },
+ "header": "إنشاء أتمتة جديدة",
+ "how": "كيف تريد إنشاء الأتمتة الجديدة الخاصة بك؟",
+ "start_empty": "ابدأ بأتمتة فارغة",
+ "thingtalk": {
+ "create": "إنشاء",
+ "header": "صِف الأتمتة التي تريد إنشاءها",
+ "input_label": "ماذا يجب أن تفعل هذه الأتمتة؟",
+ "intro": "وسنحاول إنشائه من أجلك. على سبيل المثال: أطفئ الأنوار عندما أغادر."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "أضف إجراء",
+ "delete": "حذف",
+ "delete_confirm": "هل أنت متأكد أنك تريد حذف هذا؟",
+ "duplicate": "تكرار",
+ "header": "الإجراءات",
+ "introduction": "الإجراءات هي ما سيفعله Home Assistant عند تشغيل الأتمتة.",
+ "learn_more": "معرفة المزيد عن الإجراءات",
+ "name": "إجراء",
+ "type": {
+ "condition": {
+ "label": "الشرط"
+ },
+ "delay": {
+ "delay": "التأخير",
+ "label": "التأخير"
+ },
+ "device_id": {
+ "action": "أضف إجراء",
+ "extra_fields": {
+ "brightness_pct": "السطوع",
+ "code": "الرمز",
+ "flash": "فلاش",
+ "humidity": "الرطوبة",
+ "message": "رسالة",
+ "mode": "الوضع",
+ "position": "مكان",
+ "title": "عنوان",
+ "value": "قيمة"
+ },
+ "label": "جهاز"
+ },
+ "event": {
+ "event": "الحدث:",
+ "label": "إجراء الحريق"
+ },
+ "repeat": {
+ "label": "كرر",
+ "type": {
+ "until": {
+ "label": "حتى"
+ }
+ }
+ },
+ "scene": {
+ "label": "تنشيط مشهد"
+ },
+ "service": {
+ "label": "طلب خدمة"
+ },
+ "wait_for_trigger": {
+ "label": "انتظر المشغل",
+ "timeout": "الحد الأقصى (إختياري)"
+ },
+ "wait_template": {
+ "label": "الإنتظار",
+ "timeout": "الحد الأقصى (إختياري)",
+ "wait_template": "نموذج الانتظار"
+ }
+ },
+ "type_select": "نوع الإجراء",
+ "unsupported_action": "لا يوجد محرر مرئي يدعم الإجراء: {action}"
+ },
+ "alias": "الاسم",
+ "blueprint": {
+ "blueprint_to_use": "مخطط للاستخدام",
+ "header": "مخطط",
+ "no_blueprints": "ليس لديك أي مخططات",
+ "no_inputs": "لا يحتوي هذا المخطط على أي مدخلات."
+ },
+ "conditions": {
+ "add": "إضافة شرط",
+ "delete": "حذف",
+ "delete_confirm": "هل أنت متأكد أنك تريد حذف هذا؟",
+ "duplicate": "تكرار",
+ "header": "الشروط",
+ "introduction": "الشروط اختيارية وستمنع تشغيل الأتمتة ما لم يتم استيفاء جميع الشروط.",
+ "learn_more": "معرفة المزيد عن الشروط",
+ "name": "الشرط",
+ "type": {
+ "and": {
+ "label": "و"
+ },
+ "device": {
+ "condition": "الشرط",
+ "extra_fields": {
+ "above": "فوق",
+ "below": "تحت",
+ "for": "المدة",
+ "hvac_mode": "وضع HVAC",
+ "preset_mode": "وضع الضبط المسبق"
+ },
+ "label": "جهاز"
+ },
+ "not": {
+ "label": "ليس"
+ },
+ "numeric_state": {
+ "above": "فوق",
+ "below": "تحت",
+ "label": "القيمة الرقمية",
+ "value_template": "نموذج القيمة (اختياري)"
+ },
+ "or": {
+ "label": "أو"
+ },
+ "state": {
+ "label": "الحالة",
+ "state": "الحالة"
+ },
+ "sun": {
+ "after": "بعد",
+ "after_offset": "تقديم الوقت (اختياري)",
+ "before": "قبل",
+ "before_offset": "تأخير الوقت (اختياري)",
+ "label": "الشمس",
+ "sunrise": "شروق الشمس",
+ "sunset": "غروب الشمس"
+ },
+ "template": {
+ "label": "نموذج",
+ "value_template": "نموذج القيمة"
+ },
+ "time": {
+ "after": "بعد",
+ "before": "قبل",
+ "label": "الوقت",
+ "type_input": "قيمة مساعد التاريخ/الوقت",
+ "type_value": "وقت ثابت",
+ "weekdays": {
+ "fri": "الجمعة",
+ "mon": "الاثنين",
+ "sat": "السبت",
+ "sun": "الأحد",
+ "thu": "الخميس",
+ "tue": "الثلاثاء",
+ "wed": "الأربعاء"
+ }
+ },
+ "trigger": {
+ "id": "معرف المشغل",
+ "label": "المشغل",
+ "no_triggers": "لا توجد مشغلات متاحة"
+ },
+ "zone": {
+ "entity": "اسم الجهاز مع المنطقة",
+ "label": "المنطقة",
+ "zone": "المنطقة"
+ }
+ },
+ "type_select": "نوع الشرط",
+ "unsupported_condition": "لا يوجد محرر مرئي يدعم الشرط: {condition}"
+ },
+ "copy_to_clipboard": "نسخ إلى الحافظة",
+ "default_name": "أتمتة جديدة",
+ "description": {
+ "label": "الوصف",
+ "placeholder": "وصف اختياري"
+ },
+ "edit_ui": "تحرير في المحرر المرئي",
+ "edit_yaml": "تحرير في YAML",
+ "enable_disable": "تمكين/تعطيل التنفيذ التلقائي",
+ "introduction": "استخدم الأتمتة لإضفاء الحيوية على منزلك.",
+ "load_error_not_editable": "الأتمتة فقط في automations.yaml قابلة للتحرير.",
+ "load_error_unknown": "خطأ في تحميل الأتمتة ({err_no}).",
+ "max": {
+ "parallel": "أقصى عدد من التشغيلات المتوازية",
+ "queued": "طول قائمة الإنتظار"
+ },
+ "modes": {
+ "description": "يتحكم الوضع في ما يحدث عند تشغيل الأتمتة أثناء استمرار تشغيل الإجراءات من مشغل سابق. تحقق من {documentation_link} للحصول على مزيد من المعلومات.",
+ "documentation": "وثائق الأتمتة",
+ "label": "وضع",
+ "parallel": "موازي",
+ "queued": "في قائمة الإنتظار",
+ "restart": "إعادة تشغيل",
+ "single": "فردي (افتراضي)"
+ },
+ "move_down": "تحرك لأسفل",
+ "move_up": "تحريك لأعلى",
+ "save": "حفظ",
+ "show_trace": "عرض التتبع",
+ "triggers": {
+ "add": "أضف مشغل",
+ "delete": "حذف",
+ "delete_confirm": "هل أنت متأكد أنك تريد حذف هذا؟",
+ "duplicate": "تكرار",
+ "header": "المشغلات",
+ "id": "معرف المشغل (المستخدم بواسطة شرط المشغل)",
+ "introduction": "المشغلات هي التي تبدأ معالجةقاعدة الأتمتة. من الممكن تحديد عدة مشغلات لنفس القاعدة. بمجرد بدء المشغل ، سيقوم Home Assistant بالتحقق من صحة الشروط ، إن وجدت ، واستدعاء الإجراء.",
+ "learn_more": "معرفة المزيد عن المشغلات",
+ "name": "المشغل",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "فوق",
+ "below": "تحت",
+ "for": "المدة",
+ "zone": "المنطقة"
+ },
+ "label": "جهاز",
+ "trigger": "نوع المشغل"
+ },
+ "event": {
+ "context_user_pick": "Vælg bruger",
+ "event_data": "بيانات الحدث",
+ "event_type": "نوع الحدث",
+ "label": "الحدث"
+ },
+ "geo_location": {
+ "enter": "يدخل",
+ "event": "حدث:",
+ "label": "الموقع الجغرافي",
+ "leave": "غادر",
+ "source": "المصدر",
+ "zone": "منطقة"
+ },
+ "homeassistant": {
+ "event": "الحدث:",
+ "label": "Home Assistant",
+ "shutdown": "إيقاف التشغيل",
+ "start": "بدء"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "المحتوى (إختياري)",
+ "topic": "الموضوع"
+ },
+ "numeric_state": {
+ "above": "فوق",
+ "below": "تحت",
+ "label": "القيمة الرقمية",
+ "value_template": "نموذج القيمة (اختياري)"
+ },
+ "state": {
+ "for": "لـ",
+ "from": "من",
+ "label": "الحالة",
+ "to": "إلى"
+ },
+ "sun": {
+ "event": "الحدث:",
+ "label": "الشمس",
+ "offset": "إزاحة (اختياري)",
+ "sunrise": "شروق الشمس",
+ "sunset": "غروب الشمس"
+ },
+ "tag": {
+ "label": "علامه"
+ },
+ "template": {
+ "label": "نموذج",
+ "value_template": "نموذج القيمة"
+ },
+ "time": {
+ "at": "عند",
+ "label": "الوقت",
+ "type_input": "قيمة مساعد التاريخ/الوقت",
+ "type_value": "وقت ثابت"
+ },
+ "time_pattern": {
+ "hours": "ساعات",
+ "label": "نمط الوقت",
+ "minutes": "دقائق",
+ "seconds": "ثواني"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "معرف Webhook"
+ },
+ "zone": {
+ "enter": "دخول",
+ "entity": "اسم الجهاز مع المنطقة",
+ "event": "الحدث:",
+ "label": "المنطقة",
+ "leave": "مغادرة",
+ "zone": "المنطقة"
+ }
+ },
+ "type_select": "نوع المشغل",
+ "unsupported_platform": "لا يوجد محرر مرئي يدعم النظام الأساسي: {platform}"
+ },
+ "unsaved_confirm": "لديك تغييرات غير محفوظة. هل أنت متأكد من أنك تريد أن تغادر ؟"
+ },
+ "picker": {
+ "add_automation": "أضف أتمتة",
+ "delete_automation": "حذف الأتمتة",
+ "delete_confirm": "هل أنت متأكد أنك تريد حذف هذه الأتمتة؟",
+ "dev_automation": "تصحيح الأتمتة",
+ "dev_only_editable": "فقط عمليات الاتمتة التي تم تعيين معرف فريد لها يمكن تصحيح أخطاءها.",
+ "duplicate": "تكرار",
+ "duplicate_automation": "تكرار الاتمتة",
+ "edit_automation": "تحرير الأتمتة",
+ "header": "محرر الأتمتة",
+ "headers": {
+ "name": "الاسم"
+ },
+ "introduction": "يسمح لك محرر الأتمتة بإنشاء وتحرير الأتمتة. يرجى اتباع الرابط أدناه لقراءة التعليمات للتأكد من تهيئة Home Assistant بشكل صحيح.",
+ "learn_more": "معرفة المزيد عن التحكم الآلي",
+ "no_automations": "لم نتمكن من العثور على أي أتمتة",
+ "pick_automation": "اختر الأتمتة لتحريرها",
+ "show_info_automation": "عرض معلومات حول الأتمتة"
+ },
+ "thingtalk": {
+ "link_devices": {
+ "header": "عظيم! الآن نحن بحاجة لربط بعض الأجهزة"
+ },
+ "task_selection": {
+ "error_empty": "أدخل أمرًا أو انقر فوق تخطي.",
+ "error_unsupported": "لم نتمكن من إنشاء أتمتة لذلك (حتى الآن؟).",
+ "for_example": "على سبيل المثال:",
+ "language_note": "ملاحظة: اللغة الإنجليزية فقط مدعومة في الوقت الحالي."
+ }
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "منتديات المجتمع",
+ "error_no_url": "الرجاء إدخال عنوان URL للمخطط.",
+ "file_name": "مسار Blueprint",
+ "header": "استيراد مخطط",
+ "import_btn": "معاينة مخطط",
+ "import_header": "Blueprint \"{name}\"",
+ "import_introduction_link": "يمكنك استيراد مخططات المستخدمين الآخرين من Github و {community_link} . أدخل عنوان URL للمخطط أدناه.",
+ "importing": "تحميل المخطط ...",
+ "raw_blueprint": "محتوى المخطط",
+ "save_btn": "استورد Blueprint…",
+ "saving": "جاري استيراد Blueprint …",
+ "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": "تعرف على المزيد حول استخدام المخططات",
+ "share_blueprint": "شارك المخطط",
+ "share_blueprint_no_url": "تعذرت مشاركة المخطط: لا يوجد عنوان url للمصدر",
+ "use_blueprint": "إنشاء أتمتة"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "وثائق التكوين",
+ "disable": "تعطيل",
+ "enable": "تمكين",
+ "enable_ha_skill": "تمكين مهارة Home Assistant لـ Alexa",
+ "enable_state_reporting": "تمكين تقارير الحالة",
+ "info": "من خلال تكامل Alexa مع Home Assistant Cloud ، ستتمكن من التحكم في جميع أجهزة Home Assistant الخاصة بك عبر أي جهاز يدعم Alexa.",
+ "info_state_reporting": "إذا قمت بتمكين تقارير الحالة ، فسيرسل Home Assistant جميع تغييرات الحالة للكيانات المكشوفة إلى Amazon. يتيح لك ذلك دائمًا الاطلاع على أحدث الحالات في تطبيق Alexa واستخدام تغييرات الحالة لإنشاء إجراءات روتينية.",
+ "manage_entities": "إدارة الكيانات",
+ "state_reporting_error": "تعذر {enable_disable} الابلاغ عن الحالة.",
+ "sync_entities": "مزامنة الكيانات مع Amazon",
+ "sync_entities_error": "فشلت مزامنة الكيانات:",
+ "title": "Alexa"
+ },
+ "connected": "متصل",
+ "connecting": "الاتصال…",
+ "connection_status": "حالة الاتصال السحابي",
+ "fetching_subscription": "جاري إحضار الاشتراك…",
+ "google": {
+ "config_documentation": "وثائق التكوين",
+ "devices_pin": "رقم التعريف الشخصي لأجهزة الأمان",
+ "enable_ha_skill": "قم بتنشيط مهارة Home Assistant Cloud لـ Google Assistant",
+ "enable_state_reporting": "تمكين تقارير الحالة",
+ "enter_pin_error": "تعذر تخزين رقم التعريف الشخصي:",
+ "enter_pin_hint": "إدخال رقم تعريف شخصي لاستخدام أجهزة الأمان",
+ "enter_pin_info": "الرجاء إدخال رقم التعريف الشخصي للتفاعل مع أجهزة الأمان. أجهزة الأمن هي الأبواب وأبواب المرآب والأقفال. سيطلب منك أن تقول/ تدخل رقم التعريف الشخصي هذا عند التفاعل مع هذه الأجهزة عبر مساعد Google.",
+ "info": "مع تكامل Google Assistant لـ Home Assistant Cloud ، ستتمكن من التحكم في جميع أجهزة Home Assistant الخاصة بك عبر أي جهاز يدعم Google Assistant.",
+ "info_state_reporting": "إذا قمت بتمكين الإبلاغ عن الحالة ، فسيرسل Home Assistant جميع تغييرات حالة الكيانات المكشوفة إلى Google. يتيح لك هذا دائمًا الاطلاع على أحدث الحالات في تطبيق Google.",
+ "manage_entities": "إدارة الكيانات",
+ "not_configured_text": "قبل أن تتمكن من استخدام Google Assistant ، تحتاج إلى تنشيط مهارة Home Assistant Cloud لـ Google Assistant في تطبيق Google Home.",
+ "not_configured_title": "لم يتم تنشيط Google Assistant",
+ "security_devices": "أجهزة الأمان",
+ "sync_entities": "مزامنة الكيانات مع Google",
+ "sync_entities_404_message": "فشل مزامنة الكيانات الخاصة بك مع Google ، اطلب من Google \"Hey Google ، مزامنة أجهزتي\" لمزامنة الكيانات الخاصة بك.",
+ "title": "Google Assistant"
+ },
+ "integrations": "تكاملات",
+ "integrations_introduction": "تسمح لك عمليات تكامل Home Assistant Cloud بالاتصال بالخدمات في السحابة دون الحاجة إلى الكشف عن مثيل Home Assistant الخاص بك علنًا على الإنترنت.",
+ "integrations_introduction2": "تحقق من موقع الويب بحثا عن ",
+ "integrations_link_all_features": " جميع الميزات المتاحة",
+ "manage_account": "إدارة الحساب",
+ "nabu_casa_account": "حساب Nabu Casa",
+ "not_connected": "غير متصل",
+ "remote": {
+ "access_is_being_prepared": "يتم تحضير جهاز التحكم عن بعد. سنعلمك عندما يكون جاهزًا.",
+ "certificate_info": "معلومات الشهادة",
+ "connected": "متصل",
+ "info": "يوفر Home Assistant Cloud اتصالاً آمنًا عن بُعد بالمثيل الخاص بك أثناء تواجدك بعيدًا عن المنزل.",
+ "instance_is_available": "المثيل الخاص بك متاح في",
+ "instance_will_be_available": "سيكون المثيل الخاص بك متاحا على",
+ "link_learn_how_it_works": "تعرف على كيفية عملها",
+ "not_connected": "غير متصل",
+ "reconnecting": "جاري إعادة الاتصال…",
+ "remote_enabled": {
+ "caption": "الاتصال تلقائيا",
+ "description": "قم بتفعيل هذا الخيار للتأكد من أن Home Assistant الخاص بك يمكن الوصول إليه دائمًا عن بُعد."
+ },
+ "title": "التحكم عن بعد"
+ },
+ "sign_out": "تسجيل الخروج",
+ "thank_you_note": "شكرًا لك على كونك جزءًا من Home Assistant Cloud. بفضل أشخاص مثلك ، يمكننا تقديم تجربة أتمتة منزلية رائعة للجميع. شكرا لك!",
+ "tts": {
+ "default_language": "اللغة الافتراضية لاستخدامها",
+ "dialog": {
+ "example_message": "مرحبًا {name} ، يمكنك تشغيل أي نص على أي مشغل وسائط مدعوم!",
+ "header": "جرب تحويل النص إلى كلام",
+ "play": "تشغيل",
+ "target": "الهدف",
+ "target_browser": "تصفح"
+ },
+ "female": "أنثى",
+ "info": "قم بإضفاء الطابع الشخصي على منزلك من خلال جعله يتحدث إليك باستخدام خدمات تحويل النص إلى كلام الخاصة بنا. يمكنك استخدام هذا في الأتمتة والبرامج النصية باستخدام {service} .",
+ "male": "ذكر",
+ "title": "النص إلى الكلام",
+ "try": "حاول"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "فشل تعطيل webhook:",
+ "info": "يمكن إعطاء أي شيء تم تكوينه ليتم تشغيله بواسطة webhook عنوان URL يمكن الوصول إليه بشكل عام للسماح لك بإرسال البيانات مرة أخرى إلى Home Assistant من أي مكان ، دون تعريض المثيل الخاص بك إلى الإنترنت.",
+ "link_learn_more": "تعرف على المزيد حول إنشاء عمليات اتمتة مدعومة بwebhook.",
+ "loading": "جار التحميل…",
+ "manage": "أدر",
+ "no_hooks_yet": "يبدو أنه ليس لديك webhook حتى الآن. ابدأ بتكوين ",
+ "no_hooks_yet2": "أو عن طريق إنشاء",
+ "no_hooks_yet_link_automation": "أتمتة webhook",
+ "no_hooks_yet_link_integration": "التكامل المستند إلى webhook",
+ "title": "webhook"
+ }
+ },
+ "alexa": {
+ "banner": "تم تعطيل تحرير الكيانات التي يتم كشفها عبر واجهة المستخدم هذه لأنك قمت بتكوين عوامل تصفية الكيان في configuration.yaml.",
+ "dont_expose_entity": "عدم كشف الكيان",
+ "expose": "كشف لـ Alexa",
+ "expose_entity": "كشف الكيان",
+ "exposed": "{selected} مكشوف",
+ "exposed_entities": "الكيانات المكشوفة",
+ "follow_domain": "تابع المجال",
+ "manage_domains": "إدارة المجالات",
+ "not_exposed": "{selected} غير مكشوف",
+ "not_exposed_entities": "الكيانات غير المكشوفة",
+ "title": "Alexa"
+ },
+ "description_features": "تحكم في المنزل عندما تكون بعيدًا وتكامل مع Alexa و Google Assistant",
+ "description_login": "تم تسجيل الدخول كـ {email}",
+ "description_not_login": "لم يتم تسجيل الدخول",
+ "dialog_certificate": {
+ "certificate_expiration_date": "تاريخ انتهاء صلاحية الشهادة:",
+ "certificate_information": "معلومات الشهادة",
+ "close": "إغلاق",
+ "fingerprint": "بصمة الشهادة:",
+ "will_be_auto_renewed": "سيتم تجديده تلقائيًا"
+ },
+ "dialog_cloudhook": {
+ "available_at": "يتوفر webhook في URL التالي:",
+ "close": "إغلاق",
+ "confirm_disable": "هل تريد بالتأكيد تعطيل webhook هذا؟",
+ "copied_to_clipboard": "نسخ إلى الحافظة",
+ "info_disable_webhook": "إذا كنت لم تعد ترغب في استخدام هذا الwebhook ، يمكنك",
+ "link_disable_webhook": "عطله",
+ "managed_by_integration": "تتم إدارة webhook هذا بواسطة تكامل ولا يمكن تعطيله.",
+ "view_documentation": "عرض الوثائق",
+ "webhook_for": "Webhook لـ{name}"
+ },
+ "forgot_password": {
+ "check_your_email": "تحقق من بريدك الإلكتروني للحصول على إرشادات حول كيفية إعادة تعيين كلمة المرور الخاصة بك.",
+ "email": "البريد الإلكتروني",
+ "email_error_msg": "بريد إلكتروني غير صالح",
+ "instructions": "أدخل عنوان بريدك الإلكتروني وسنرسل لك رابطا لإعادة تعيين كلمة المرور الخاصة بك.",
+ "send_reset_email": "إرسال بريد إلكتروني لإعادة التعيين",
+ "subtitle": "نسيت كلمة مرورك",
+ "title": "نسيت كلمة المرور"
+ },
+ "google": {
+ "banner": "تم تعطيل تحرير الكيانات التي يتم كشفها عبر واجهة المستخدم هذه لأنك قمت بتكوين عوامل تصفية الكيان في configuration.yaml.",
+ "disable_2FA": "تعطيل المصادقة الثنائية",
+ "dont_expose_entity": "عدم كشف الكيان",
+ "expose": "كشف لـ Google Assistant",
+ "expose_entity": "كشف الكيان",
+ "exposed": "{selected} مكشوف",
+ "exposed_entities": "الكيانات المكشوفة",
+ "follow_domain": "تابع المجال",
+ "manage_domains": "إدارة المجالات",
+ "not_exposed": "{selected} غير مكشوف",
+ "not_exposed_entities": "الكيانات غير المكشوفة",
+ "sync_to_google": "مزامنة التغييرات إلى Google.",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "تحتاج إلى تأكيد بريدك الإلكتروني قبل تسجيل الدخول.",
+ "alert_password_change_required": "تحتاج إلى تغيير كلمة المرور الخاصة بك قبل تسجيل الدخول.",
+ "dismiss": "إخفاء",
+ "email": "البريد الإلكتروني",
+ "email_error_msg": "بريد إلكتروني غير صالح",
+ "forgot_password": "نسيت كلمة المرور؟",
+ "introduction": "يوفر لك Home Assistant Cloud اتصالاً آمنًا عن بُعد بالمثيل الخاص بك أثناء تواجدك بعيدًا عن المنزل. كما يتيح لك الاتصال بخدمات السحابة فقط: Amazon Alexa و Google Assistant.",
+ "introduction2": "يتم تشغيل هذه الخدمة من قبل شريكنا",
+ "introduction2a": "، وهي شركة أسسها مؤسسو Home Assistant و Hass.io.",
+ "introduction3": "Home Assistant Cloud هي خدمة اشتراك مع إصدار تجريبي مجاني لمدة شهر واحد. لا توجد معلومات دفع ضرورية.",
+ "learn_more_link": "تعرف على المزيد حول Home Assistant Cloud",
+ "password": "كلمة المرور",
+ "password_error_msg": "كلمة مرور لا تقل عن 8 أحرف",
+ "sign_in": "تسجيل الدخول",
+ "start_trial": "ابدأ تجربتك المجانية لمدة شهر واحد",
+ "title": "تسجيل الدخول إلى السحابة",
+ "trial_info": "لا معلومات دفع ضرورية"
+ },
+ "register": {
+ "account_created": "تم إنشاء الحساب! تحقق من بريدك الإلكتروني للحصول على إرشادات حول كيفية تنشيط حسابك.",
+ "create_account": "إنشاء حساب",
+ "email_address": "عنوان البريد الإلكتروني",
+ "email_error_msg": "بريد إلكتروني غير صالح",
+ "feature_amazon_alexa": "التكامل مع Amazon Alexa",
+ "feature_google_home": "التكامل مع Google Assistant",
+ "feature_remote_control": "التحكم في Home Assistant بعيدًا عن المنزل",
+ "feature_webhook_apps": "سهولة التكامل مع التطبيقات المستندة إلى الويب هوك مثل OwnTracks",
+ "headline": "ابدأ تجربتك المجانية",
+ "information": "أنشئ حسابا لبدء الإصدار التجريبي المجاني لمدة شهر واحد باستخدام Home Assistant Cloud. لامعلومات مطلوبة للدفع.",
+ "information2": "ستمنحك التجربة إمكانية الوصول إلى جميع مزايا Home Assistant Cloud، بما في ذلك:",
+ "information3": "يتم تشغيل هذه الخدمة من قبل شريكنا",
+ "information3a": "، وهي شركة أسسها مؤسسو Home Assistant و Hass.io.",
+ "information4": "بتسجيلك حساب فإنك توافق على الشروط والأحكام التالية.",
+ "link_privacy_policy": "سياسة الخصوصية",
+ "link_terms_conditions": "الشروط والأحكام",
+ "password": "كلمة المرور",
+ "password_error_msg": "كلمة مرور لا تقل عن 8 أحرف",
+ "resend_confirm_email": "إعادة إرسال رسالة تأكيد البريد الإلكتروني",
+ "start_trial": "بدء التجربة",
+ "title": "تسجيل حساب"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "لديك تغييرات غير محفوظة. هل أنت متأكد من أنك تريد أن تغادر ؟"
+ },
+ "learn_more": "معرفة المزيد"
+ },
+ "core": {
+ "caption": "عام",
+ "description": "نظام الوحدة والموقع والمنطقة الزمنية والمتغيرات العامة الأخرى",
+ "section": {
+ "core": {
+ "core_config": {
+ "edit_requires_storage": "تم تعطيل المحرر بسبب تخزين التكوين في configuration.yaml.",
+ "elevation": "ارتفاع",
+ "elevation_meters": "أمتار",
+ "external_url": "العنوان الخارجي",
+ "imperial_example": "فهرنهايت، رطل",
+ "internal_url": "العنوان المحلي",
+ "latitude": "خط العرض",
+ "location_name": "اسم تثبيت Home Assistant الخاص بك",
+ "longitude": "خط الطول",
+ "metric_example": "مئوية ، كيلوغرامات",
+ "save_button": "حفظ",
+ "time_zone": "المنطقة الزمنية",
+ "unit_system": "نظام الوحدة",
+ "unit_system_imperial": "ميل",
+ "unit_system_metric": "متري"
+ },
+ "header": "التكوين العام",
+ "introduction": "تغيير الإعدادات تعتبر عملية مرهقة. نحن نعلم ذلك . هذا القسم سيحاول جعلها اسهل قليلاً."
+ }
+ }
+ },
+ "customize": {
+ "attributes_override": "يمكنك تجاوزها إذا أردت.",
+ "caption": "التخصيصات",
+ "description": "تخصيص الكيانات الخاصة بك",
+ "picker": {
+ "header": "التخصيصات",
+ "introduction": "تعديل السمات لكل كيان. سيتم تفعيل التخصيصات المضافة / المعدلة على الفور. ستسري التخصيصات التي تمت إزالتها عندما يتم تحديث الكيان."
+ },
+ "warning": {
+ "include_link": "تشمل customize.yaml"
+ }
+ },
+ "devices": {
+ "add_prompt": "لم تتم إضافة {name} باستخدام هذا الجهاز حتى الآن. يمكنك إضافة واحدة عن طريق النقر فوق الزر + أعلاه.",
+ "automation": {
+ "actions": {
+ "caption": "عندما يتم تشغيل شيء ما…",
+ "no_actions": "لا توجد إجراءات",
+ "unknown_action": "إجراء غير معروف"
+ },
+ "automations": "الأتمتة",
+ "conditions": {
+ "caption": "افعل شيئًا فقط إذا…",
+ "no_conditions": "لا شروط",
+ "unknown_condition": "شروط غير معروفة"
+ },
+ "create": "إنشاء أتمتة مع جهاز",
+ "create_disable": "لا يمكن إنشاء أتمتة مع جهاز معطل",
+ "no_automations": "لا أتمتة",
+ "no_device_automations": "لا توجد أتمتة متاحة لهذا الجهاز.",
+ "triggers": {
+ "caption": "افعل شيئًا عندما ...",
+ "no_triggers": "لا مستهدفات",
+ "unknown_trigger": "مشغل غير معروف"
+ },
+ "unknown_automation": "أتمتة غير معروفة"
+ },
+ "cant_edit": "يمكنك فقط تحرير العناصر التي تم إنشاؤها في واجهة المستخدم.",
+ "caption": "الأجهزة",
+ "confirm_delete": "هل أنت متأكد أنك تريد حذف هذا الجهاز؟",
+ "confirm_disable_config_entry": "لا توجد أجهزة أخرى لإدخال التكوين {entry_name} ، فهل تريد بدلاً من ذلك تعطيل إدخال التكوين؟",
+ "confirm_rename_entity_ids": "هل تريد أيضًا إعادة تسمية معرفات الكيانات الخاصة بكياناتك؟",
+ "confirm_rename_entity_ids_warning": "هذا لن يغير أي تكوين (مثل الأتمتة ، والسكربتات ، والمشاهد ، ولوحات المعلومات) التي تستخدم حاليا هذه الكيانات! سيكون عليك تحديثها بنفسك لاستخدام معرف الكيان الجديد!",
+ "data_table": {
+ "area": "المنطقة",
+ "battery": "بطارية",
+ "device": "جهاز",
+ "integration": "تكامل",
+ "manufacturer": "الشركه المصنعه",
+ "model": "الموديل",
+ "no_devices": "لا توجد أجهزة"
+ },
+ "delete": "حذف",
+ "description": "إدارة الأجهزة المكونة",
+ "device_info": "معلومات الجهاز",
+ "device_not_found": "لم يتم العثور على الجهاز.",
+ "disabled": "معطل",
+ "disabled_by": {
+ "config_entry": "إدخال التكوين",
+ "integration": "تكامل",
+ "user": "مستخدم"
+ },
+ "enabled_cause": "تم تعطيل الجهاز بواسطة {cause}.",
+ "enabled_description": "لن يتم عرض الأجهزة المعطلة وسيتم تعطيل الكيانات التي تنتمي إلى الجهاز ولن تتم إضافتها إلى Home Assistant.",
+ "enabled_label": "تمكين الجهاز",
+ "entities": {
+ "add_entities_lovelace": "أضف إلى Lovelace",
+ "disabled_entities": "{count} {count, plural,\n one {كيان}\n other {كيانات}\n}",
+ "entities": "الكيانات",
+ "hide_disabled": "إخفاء معطل",
+ "none": "هذا الجهاز ليس له كيانات"
+ },
+ "name": "الاسم",
+ "no_devices": "لا توجد أجهزة",
+ "picker": {
+ "filter": {
+ "filter": "فلتر",
+ "show_all": "إظهار الكل",
+ "show_disabled": "إظهار الأجهزة المعطلة"
+ },
+ "search": "ابحث عن الاجهزة"
+ },
+ "scene": {
+ "create": "إنشاء مشاهد مع جهاز",
+ "create_disable": "لا يمكن إنشاء مشهد بجهاز معطل",
+ "no_scenes": "لايوجد مشاهد",
+ "scenes": "مشاهد"
+ },
+ "scenes": "مشاهد",
+ "script": {
+ "create": "إنشاء سكريبت مع جهاز",
+ "create_disable": "لا يمكن إنشاء سكريبت بجهاز معطل",
+ "no_scripts": "لايوجد سكريبتات",
+ "scripts": "السكريبتات"
+ },
+ "scripts": "السكريبتات",
+ "unknown_error": "خطأ غير معروف",
+ "unnamed_device": "جهاز غير مسمى",
+ "update": "تحديث",
+ "update_device_error": "فشل تحديث الجهاز"
+ },
+ "energy": {
+ "battery": {
+ "learn_more": "مزيد من المعلومات حول كيفية البدء.",
+ "sub": "إذا كان لديك نظام بطارية، فيمكنك تكوينه لمراقبة مقدار الطاقة المخزنة والمستخدمة من بطاريتك."
+ },
+ "device_consumption": {
+ "dialog": {
+ "selected_stat_intro": "حدد الكيان الذي يمثل استخدام طاقة الجهاز."
+ },
+ "learn_more": "مزيد من المعلومات حول كيفية البدء.",
+ "sub": "يسمح تتبع استخدام الطاقة للأجهزة الفردية لـ Home Assistant بتقسيم استخدامك للطاقة حسب الجهاز.",
+ "title": "أجهزة فردية"
+ },
+ "gas": {
+ "dialog": {
+ "cost_entity": "استخدم كيانًا مع السعر الحالي",
+ "cost_entity_input": "الكيان مع السعر الحالي",
+ "cost_number": "استخدم سعرًا ثابتًا",
+ "cost_number_input": "السعر لكل متر مكعب",
+ "cost_stat_input": "كيان التكاليف الإجمالية",
+ "header": "تكوين استهلاك الغاز"
+ },
+ "learn_more": "مزيد من المعلومات حول كيفية البدء.",
+ "sub": "دع Home Assistant يراقب استخدامك للغاز.",
+ "title": "استهلاك الغاز"
+ },
+ "grid": {
+ "learn_more": "مزيد من المعلومات حول كيفية البدء."
+ },
+ "solar": {
+ "learn_more": "مزيد من المعلومات حول كيفية البدء.",
+ "sub": "دع Home Assistant يراقب الألواح الشمسية ويمنحك نظرة ثاقبة على أدائها.",
+ "title": "الألواح الشمسية"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "الكيانات التالية لها حالة سلبية بينما المتوقع أن تكون الحالة موجبة:",
+ "title": "الكيان له حالة سلبية"
+ },
+ "entity_not_defined": {
+ "description": "تحقق من التكامل أو التكوين الخاص بك الذي يوفر:",
+ "title": "الكيان غير معرّف"
+ },
+ "entity_state_non_numeric": {
+ "description": "الكيانات التالية لها حالة لا يمكن تحليلها كرقم:",
+ "title": "الكيان له حالة غير رقمية"
+ },
+ "entity_unavailable": {
+ "description": "حالة هذه الكيانات المكونة غير متاحة حاليًا:",
+ "title": "الكيان غير متوفر"
+ },
+ "entity_unexpected_unit_energy": {
+ "title": "وحدة قياس غير متوقعة"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "الكيانات التالية لا تحتوي على وحدات القياس المتوقعة \" {currency} / kWh\" أو \" {currency} / Wh\":",
+ "title": "وحدة قياس غير متوقعة"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "لا تحتوي الكيانات التالية على وحدات القياس المتوقعة \"kWh\" أو \"m³\" أو \"ft³\":",
+ "title": "وحدة قياس غير متوقعة"
+ },
+ "recorder_untracked": {
+ "description": "تم تكوين المُسجل لاستبعاد هذه الكيانات المكونة:",
+ "title": "الكيان غير متعقب"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "الكيانات",
+ "description": "إدارة الكيانات المعروفة",
+ "picker": {
+ "disable_selected": {
+ "button": "تعطيل المحدد",
+ "confirm_text": "لن تتم إضافة الكيانات المعطلة إلى Home Assistant."
+ },
+ "enable_selected": {
+ "button": "تمكين المحدد",
+ "confirm_text": "سيؤدي ذلك إلى جعلها متاحة في Home Assistant مرة أخرى إذا تم تعطيلها الآن."
+ },
+ "filter": {
+ "show_all": "إظهار الكل",
+ "show_disabled": "إظهار الكيانات المعطلة",
+ "show_unavailable": "إظهار الكيانات غير المتوفرة"
+ },
+ "header": "الكيانات",
+ "headers": {
+ "area": "المنطقة",
+ "disabled_by": "معطل بواسطة",
+ "entity_id": "معرف الكيان",
+ "integration": "تكامل",
+ "name": "الاسم"
+ },
+ "introduction": "يحتفظ Home Assistant بسجل لكل كيان يراه على الإطلاق ويمكن تحديده بشكل فريد. سيكون لكل من هذه الكيانات معرف كيان معين سيتم حجزه لهذا الكيان فقط.",
+ "introduction2": "استخدم سجل الكيان لتجاوز الاسم أو تغيير معرّف الكيان أو إزالة الإدخال من Home Assistant.",
+ "remove_selected": {
+ "button": "ازل المحدد",
+ "confirm_partly_text": "يمكنك فقط إزالة {removable} من الكيانات {selected} . لا يمكن إزالة الكيانات إلا عندما يتوقف التكامل عن توفير الكيانات. في بعض الأحيان ، يتعين عليك إعادة تشغيل Home Assistant قبل أن تتمكن من إزالة كيانات التكامل الذي تمت إزالته. هل أنت متأكد من أنك تريد إزالة الكيانات القابلة للإزالة؟",
+ "confirm_partly_title": "فقط {number} {number, plural,\n one {كيان محدد}\n other {كيان محدد}\n} يمكن حذفه.",
+ "confirm_text": "يجب عليك إزالتها من إعدادات Lovelace والأتمتة إذا كانت تحتوي على هذه الكيانات."
+ },
+ "search": "إبحث عن الكيانات",
+ "selected": "{number} حدد",
+ "status": {
+ "disabled": "معطل",
+ "restored": "مستعاد",
+ "unavailable": "غير متوفر"
+ }
+ }
+ },
+ "header": "تكوين Home Assistant",
+ "helpers": {
+ "caption": "المساعدين",
+ "description": "العناصر التي تساعد في بناء الأتمتة",
+ "dialog": {
+ "add_helper": "إضافة مساعد",
+ "add_platform": "إضافة {platform}",
+ "create": "إضافة"
+ },
+ "picker": {
+ "add_helper": "إضافة مساعد",
+ "headers": {
+ "editable": "قابل للتحرير",
+ "entity_id": "معرف الكيان",
+ "name": "الاسم",
+ "type": "النوع"
+ },
+ "no_helpers": "يبدو أنه ليس لديك أي مساعدين حتى الآن!"
+ },
+ "types": {
+ "counter": "العداد",
+ "input_boolean": "تبديل",
+ "input_datetime": "التاريخ و / أو الوقت",
+ "input_number": "رقم",
+ "input_select": "القائمه المنسدله",
+ "input_text": "النص",
+ "timer": "الموقت"
+ }
+ },
+ "info": {
+ "built_using": "بنيت باستخدام",
+ "caption": "معلومات",
+ "custom_uis": "واجهات مستخدم مخصصة:",
+ "description": "الإصدار وصحة النظام وروابط للوثائق",
+ "developed_by": "تم تطويره بواسطة مجموعة من الأشخاص الرائعين.",
+ "documentation": "الوثائق",
+ "frontend": "واجهة Frontend",
+ "frontend_version": "إصدار الواجهة الأمامية: {version} - {type}",
+ "home_assistant_logo": "شعار Home Assistant",
+ "icons_by": "الايقونات بواسطة",
+ "integrations": "تكاملات",
+ "issues": "الاعطال",
+ "license": "نشرت تحت رخصة Apache 2.0",
+ "path_configuration": "المسار إلى configuration.yaml: {path}",
+ "server": "الخادم",
+ "setup_time": "وقت التنصيب",
+ "source": "مصدر:",
+ "system_health": {
+ "manage": "أدر",
+ "more_info": "مزيد من المعلومات"
+ },
+ "system_health_error": "لم يتم تحميل مكون \"صحة النظام\". إضافة 'system_health:' إلى configuration.yaml"
+ },
+ "integrations": {
+ "add_integration": "أضف تكامل",
+ "attention": "مطلوب الانتباه",
+ "caption": "التكاملات",
+ "config_entry": {
+ "area": "في {area}",
+ "check_the_logs": "تحقق من السجلات",
+ "configure": "إعداد",
+ "delete": "حذف",
+ "delete_confirm": "هل تريد حقا حذف هذا التكامل؟",
+ "depends_on_cloud": "يعتمد على السحابة",
+ "device_unavailable": "الجهاز غير متوفر",
+ "devices": "{count} {count, plural,\n one {جهاز}\n other {أجهزة}\n}",
+ "disable": {
+ "disable_confirm": "هل أنت متأكد أنك تريد تعطيل إدخال التكوين هذا؟ سيتم تعطيل أجهزتها وكياناتها.",
+ "disabled": "معطل",
+ "disabled_by": {
+ "device": "جهاز",
+ "integration": "تكامل",
+ "user": "مستخدم"
+ },
+ "disabled_cause": "معطل بواسطة {cause}"
+ },
+ "disable_error": "فشل تمكين التكامل أو تعطيله",
+ "disable_restart_confirm": "أعد تشغيل Home Assistant لإنهاء تعطيل هذا التكامل",
+ "disabled_polling": "تم تعطيل السحب التلقائي للبيانات المحدثة",
+ "documentation": "الوثائق",
+ "enable_restart_confirm": "أعد تشغيل Home Assistant لإنهاء تمكين هذا التكامل",
+ "entities": "{count} {count, plural,\n one {كيان}\n other {كيانات}\n}",
+ "entity_unavailable": "الكيان غير متوفر",
+ "firmware": "نظام التشغيل {version}",
+ "hub": "متصل عبر",
+ "manuf": "بواسطة {manufacturer}",
+ "no_area": "لا توجد منطقة",
+ "not_loaded": "لم يُحمل",
+ "provided_by_custom_integration": "يتم توفيره من خلال تكامل مخصص",
+ "reload": "إعادة تحميل",
+ "reload_confirm": "تم إعادة تحميل التكامل",
+ "reload_restart_confirm": "أعد تشغيل Home Assistant لإنهاء إعادة تحميل هذا التكامل",
+ "rename": "إعادة تسمية",
+ "restart_confirm": "أعد تشغيل Home Assistant لإنهاء حذف هذا التكامل",
+ "state": {
+ "failed_unload": "فشل إلغاء التحميل",
+ "loaded": "محمل",
+ "migration_error": "خطأ في الترحيل",
+ "not_loaded": "لم يُحمل",
+ "setup_error": "فشل في التنصيب",
+ "setup_retry": "إعادة محاولة الإعداد"
+ },
+ "system_options": "خيارات النظام",
+ "unnamed_entry": "إدخال بدون اسم"
+ },
+ "config_flow": {
+ "aborted": "تم الإلغاء",
+ "close": "إغلاق",
+ "could_not_load": "لا يمكن تحميل تدفق التكوين",
+ "created_config": "تم إنشاء تكوين لـ {name}.",
+ "error": "خطأ",
+ "error_saving_area": "خطأ في حفظ المنطقة: {error}",
+ "external_step": {
+ "description": "تتطلب هذه الخطوة زيارة موقع خارجي للإكمال.",
+ "open_site": "افتح الموقع"
+ },
+ "finish": "إنهاء",
+ "loading": {
+ "fallback_title": "التكامل",
+ "loading_flow": "يُرجى الانتظار أثناء إعداد {integration}",
+ "loading_step": "تحميل الخطوة التالية لـ {integration}"
+ },
+ "next": "التالى",
+ "not_all_required_fields": "لم يتم تعبئة جميع الحقول المطلوبة.",
+ "not_loaded": "تعذر تحميل التكامل ، حاول إعادة تشغيل Home Assistant"
+ },
+ "configure": "إعداد",
+ "configured": "تم التكوين",
+ "confirm_new": "هل تريد إعداد {integration} ؟",
+ "description": "إدارة التكاملات مع الخدمات أو الأجهزة",
+ "details": "تفاصيل التكامل",
+ "disable": {
+ "disabled_integrations": "تم تعطيل {number}",
+ "show": "عرض",
+ "show_disabled": "إظهار عمليات التكامل المعطلة"
+ },
+ "discovered": "مكتشف",
+ "home_assistant_website": "موقع Home Assistant",
+ "ignore": {
+ "confirm_delete_ignore": "سيؤدي هذا إلى ظهور التكامل في عمليات الدمج المكتشفة مرة أخرى عند اكتشافها. قد يتطلب هذا إعادة التشغيل أو يستغرق بعض الوقت.",
+ "confirm_delete_ignore_title": "توقف عن تجاهل {name} ؟",
+ "confirm_ignore": "هل أنت متأكد أنك لا تريد إعداد هذا التكامل؟ يمكنك التراجع بالنقر على \"إظهار عمليات التكامل التي تم تجاهلها\" في القائمة بأعلى اليسار.",
+ "confirm_ignore_title": "تجاهل اكتشاف {name} ؟",
+ "ignore": "تجاهل",
+ "ignored": "متجاهل",
+ "show_ignored": "أظهر التكاملات المتجاهلة",
+ "stop_ignore": "توقف عن التجاهل"
+ },
+ "integration": "تكامل",
+ "integration_not_found": "لم يتم العثور على التكامل.",
+ "new": "إعداد تكامل جديد",
+ "no_integrations": "يبدو أنه ليس لديك أي عمليات تكامل تمت تهيئتها حتى الآن. انقر فوق الزر أدناه لإضافة التكامل الأول الخاص بك!",
+ "none": "لم يتم تكوين أي شيء حتى الآن",
+ "none_found": "لم يتم العثور على تكاملات",
+ "none_found_detail": "إضبط معايير بحثك.",
+ "note_about_integrations": "لا توجد عمليات تكامل مطابقة لبحثك ، فقد لا يكون التكامل الذي تريد إعداده متاحًا للإعداد عبر واجهة المستخدم حتى الآن.",
+ "note_about_website_reference": "يتوفر المزيد على ",
+ "reconfigure": "إعادة التكوين",
+ "rename_dialog": "تحرير إسم إدخال هذا التكوين",
+ "rename_input_label": "الاسم",
+ "search": "إبحث عن التكاملات"
+ },
+ "introduction": "يمكنك هنا برمجة المكونات الخاصة بك و إعداد نظام Home Assistant. ليس كل شيء متاح للبرمجة من خلال واجهة المستخدم حتى الآن، ولكننا نعمل على ذلك.",
+ "logs": {
+ "caption": "السجلات",
+ "clear": "مسح",
+ "description": "عرض سجلات Home Assistant",
+ "details": "تفاصيل السجل ({level})",
+ "error_from_custom_integration": "نشأ هذا الخطأ من تكامل مخصص.",
+ "level": {
+ "critical": "حرج",
+ "debug": "تصحيح",
+ "error": "خطأ",
+ "info": "معلومات",
+ "warning": "تحذير"
+ },
+ "load_full_log": "تحميل سجل Home Assistant الكامل",
+ "loading_log": "جارٍ تحميل سجل الأخطاء ...",
+ "multiple_messages": "ظهرت الرسالة لأول مرة في {time} وتظهر {counter} مرات",
+ "no_errors": "لم يتم الإبلاغ عن أي أخطاء",
+ "no_issues": "لا توجد مشاكل جديدة!",
+ "refresh": "تحديث"
+ },
+ "lovelace": {
+ "caption": "لوحات معلومات Lovelace",
+ "dashboards": {
+ "cant_edit_default": "لا يمكن تعديل لوحة تحكم لوفليس القياسية من واجهة المستخدم. يمكنك إخفائه عن طريق تعيين لوحة تحكم أخرى كإعداد افتراضي.",
+ "cant_edit_yaml": "لا يمكن تحرير لوحات المعلومات المعرفة في YAML من واجهة المستخدم. تغييرها في configuration.yaml.",
+ "caption": "لوحات التحكم",
+ "confirm_delete": "هل أنت متأكد أنك تريد حذف لوحة التحكم ؟",
+ "default_dashboard": "هذه هي لوحة المعلومات الافتراضية",
+ "detail": {
+ "create": "إضافة",
+ "delete": "حذف",
+ "dismiss": "اغلاق",
+ "edit_dashboard": "تعديل لوحة التحكم",
+ "icon": "أيقونة",
+ "new_dashboard": "أضف لوحة تحكم جديدة",
+ "remove_default": "إزالة كإعداد افتراضي على هذا الجهاز",
+ "require_admin": "المسؤول فقط",
+ "set_default": "تعيين إعداد افتراضي على هذا الجهاز",
+ "show_sidebar": "إظهار في الشريط الجانبي",
+ "title": "عنوان",
+ "title_required": "العنوان مطلوب.",
+ "update": "تحديث",
+ "url": "URL",
+ "url_error_msg": "يجب أن يحتوي عنوان URL على - ولا يمكن أن يحتوي على مسافات أو أحرف خاصة ، باستثناء _ و -"
+ },
+ "picker": {
+ "add_dashboard": "أضافة لوحة تحكم جديدة",
+ "headers": {
+ "conf_mode": "أسلوب التكوين",
+ "default": "الافتراضي",
+ "filename": "اسم الملف",
+ "require_admin": "المسؤول فقط",
+ "sidebar": "إظهار في الشريط الجانبي",
+ "title": "عنوان"
+ },
+ "open": "فتح"
+ }
+ },
+ "description": "قم بإنشاء مجموعات مخصصة من البطاقات للتحكم في منزلك",
+ "resources": {
+ "cant_edit_yaml": "انت تستخدم Lovelace في وضع YAML، ولذلك لا يمكنك إدارة الموارد الخاصة بك من خلال واجهة المستخدم. إدرها في configuration.yaml.",
+ "caption": "الموارد",
+ "confirm_delete": "هل أنت متأكد أنك تريد حذف هذا المورد؟",
+ "detail": {
+ "create": "إنشاء",
+ "delete": "حذف",
+ "dismiss": "اغلاق",
+ "new_resource": "إضافة مورد جديد",
+ "type": "نوع الموارد",
+ "update": "تحديث",
+ "url": "URL",
+ "url_error_msg": "عنوان URL هو حقل مطلوب",
+ "warning_header": "كن حذرا!"
+ },
+ "picker": {
+ "add_resource": "إضافة مورد",
+ "headers": {
+ "type": "النوع",
+ "url": "URL"
+ },
+ "no_resources": "لا توجد موارد"
+ },
+ "refresh_body": "يجب عليك تحديث الصفحة لإكمال الإزالة. هل تريد التحديث الآن؟",
+ "refresh_header": "هل تريد التحديث؟",
+ "types": {
+ "css": "ورقة الأنماط",
+ "html": "HTML (مهمل)",
+ "js": "ملف جافا سكريبت (مهمل)",
+ "module": "وحدة جافا سكريبت"
+ }
+ }
+ },
+ "mqtt": {
+ "message_received": "الرسالة {id} التي تم تلقيها على {topic} في {time}:",
+ "title": "MQTT"
+ },
+ "ozw": {
+ "common": {
+ "controller": "وحده تحكم",
+ "instance": "مثيل",
+ "network": "الشبكة"
+ },
+ "device_info": {
+ "node_failed": "العقدة فشلت",
+ "stage": "مرحلة",
+ "zwave_info": "معلومات Z-Wave"
+ },
+ "navigation": {
+ "network": "الشبكة",
+ "node": {
+ "dashboard": "لوحة المعلومات"
+ },
+ "nodes": "العقد",
+ "select_instance": "حدد مثيل"
+ },
+ "network": {
+ "header": "إدارة الشبكة",
+ "introduction": "إدارة وظائف الشبكة.",
+ "node_count": "{count} عقدة"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "تم الاستعلام عن جميع العقد",
+ "driverallnodesqueriedsomedead": "تم الاستعلام عن جميع العقد. تم العثور على بعض العقد ميتة",
+ "driverawakenodesqueries": "تم الاستعلام عن جميع العقد المستيقظة",
+ "driverfailed": "فشل الاتصال بوحدة تحكم Z-Wave",
+ "driverready": "تهيئة وحدة تحكم Z-Wave",
+ "driverremoved": "تمت إزالة برنامج التشغيل",
+ "driverreset": "تم إعادة تعيين برنامج التشغيل",
+ "offline": "OZWDaemon غير متصل",
+ "ready": "جاهز للاتصال",
+ "started": "متصل بـ MQTT",
+ "starting": "الاتصال بـ MQTT",
+ "stopped": "توقف OpenZWave"
+ },
+ "offline": "غير متصل",
+ "online": "متصل",
+ "starting": "يبدء",
+ "unknown": "مجهول"
+ },
+ "node": {
+ "button": "تفاصيل العقدة",
+ "not_found": "لم يتم العثور على العقدة"
+ },
+ "node_config": {
+ "wakeup_help": "يجب أن تكون العقد التي تعمل بالبطارية مستيقظة لتغيير تكوينها. إذا لم تكن العقدة مستيقظة، سيحاول OpenZWave تحديث تكوين العقدة في المرة التالية التي تستيقظ فيها، والتي قد تكون عدة ساعات (أو أيام) لاحقا. اتبع الخطوات التالية لتنبيه جهازك:"
+ },
+ "node_query_stages": {
+ "complete": "اكتملت عملية المقابلة",
+ "configuration": "الحصول على قيم التكوين من العقدة",
+ "dynamic": "الحصول على القيم المتغيرة بشكل متكرر من العقدة",
+ "instances": "الحصول على تفاصيل حول المثيلات أو القنوات التي يدعمها الجهاز",
+ "probe": "التحقق مما إذا كانت العقدة مستيقظة / حية",
+ "static": "الحصول على قيم ثابتة من الجهاز",
+ "wakeup": "إعداد الدعم لقوائم انتظار التنبيه والرسائل"
+ },
+ "nodes_table": {
+ "failed": "فشل",
+ "id": "معرف",
+ "manufacturer": "الشركه المصنعه",
+ "model": "الموديل",
+ "query_stage": "مرحلة الاستعلام",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "إذا كانت العقدة تعمل بالبطارية ، فتأكد من تنشيطها قبل المتابعة",
+ "button": "تحديث العقدة",
+ "complete": "اكتمل تحديث العقدة",
+ "description": "سيؤدي هذا إلى إخبار OpenZWave بإعادة إجراء مقابلة مع عقدة وتحديث فئات أوامر العقدة وقدراتها وقيمها.",
+ "node_status": "حالة العقدة",
+ "refreshing_description": "جاري تحديث معلومات العقدة…",
+ "start_refresh_button": "ابدأ التحديث",
+ "step": "خطوة",
+ "title": "تحديث معلومات العقدة",
+ "wakeup_header": "تعليمات الاستيقاظ لـ",
+ "wakeup_instructions_source": "يتم الحصول على تعليمات التنبيه من قاعدة بيانات جهاز مجتمع OpenZWave."
+ },
+ "select_instance": {
+ "header": "حدد مثيل OpenZWave",
+ "introduction": "لديك أكثر من مثيل OpenZWave قيد التشغيل. ما هو المثال الذي تريد إدارته؟"
+ },
+ "services": {
+ "add_node": "إضافة عقدة",
+ "remove_node": "إزالة عقدة"
+ }
+ },
+ "person": {
+ "add_person": "إضافة شخص",
+ "caption": "الأشخاص",
+ "confirm_delete": "هل أنت متأكد أنك تريد حذف هذا الشخص؟",
+ "confirm_delete2": "ستصبح جميع الأجهزة الخاصة بهذا الشخص غير محددة.",
+ "create_person": "إنشاء شخص",
+ "description": "إدارة الأشخاص الذين يتتبعهم Home Assistant.",
+ "detail": {
+ "admin": "مدير",
+ "confirm_delete_user": "هل أنت متأكد أنك تريد حذف حساب المستخدم لـ {name} ؟ لا يزال بإمكانك تتبع المستخدم ، ولكن لن يتمكن الشخص من تسجيل الدخول مرة أخرى.",
+ "create": "إنشاء",
+ "delete": "حذف",
+ "device_tracker_intro": "حدد الأجهزة التي تخص هذا الشخص.",
+ "device_tracker_pick": "اختر جهاز لتتبع",
+ "device_tracker_picked": "جهاز التتبع",
+ "link_integrations_page": "صفحة التكاملات",
+ "link_presence_detection_integrations": "تكاملات الكشف عن التواجد",
+ "linked_user": "مستخدم مرتبط",
+ "name": "الاسم",
+ "name_error_msg": "الاسم مطلوب",
+ "new_person": "شخص جديد",
+ "no_device_tracker_available_intro": "عندما يكون لديك أجهزة تشير إلى تواجد شخص ، ستتمكن من تعيينها إلى شخص هنا. يمكنك إضافة جهازك الأول عن طريق إضافة تكامل كشف التواجد من صفحة التكاملات.",
+ "update": "تحديث"
+ },
+ "introduction": "هنا يمكنك تحديد كل شخص مهتم بـ Home Assistant.",
+ "learn_more": "تعلم المزيد عن الناس",
+ "no_persons_created_yet": "يبدو أنك لم تنشئ أي أشخاص حتى الآن.",
+ "note_about_persons_configured_in_yaml": "ملاحظة: لا يمكن تحرير الأشخاص الذين تم تكوينهم عبر configuration.yaml عبر واجهة المستخدم.",
+ "person_not_found": "لم نتمكن من العثور على الشخص الذي كنت تحاول تحريره.",
+ "person_not_found_title": "لم يتم العثور على الشخص"
+ },
+ "scene": {
+ "activated": "المشهد المنشط {name}.",
+ "caption": "مشاهد",
+ "description": "التقط حالات الجهاز واستدعها بسهولة لاحقًا",
+ "editor": {
+ "default_name": "مشهد جديد",
+ "devices": {
+ "add": "إضافة جهاز",
+ "delete": "حذف جهاز",
+ "header": "الأجهزة",
+ "introduction": "أضف الأجهزة التي تريد تضمينها في المشهد الخاص بك. اضبط جميع الأجهزة على الحالة التي تريدها لهذا المشهد."
+ },
+ "entities": {
+ "device_entities": "إذا قمت بإضافة كيان ينتمي إلى جهاز ، فستتم إضافة الجهاز.",
+ "introduction": "يمكن هنا تعيين الكيانات التي لا تنتمي إلى جهاز.",
+ "without_device": "كيانات بدون جهاز"
+ },
+ "icon": "أيقونة",
+ "introduction": "استخدم المشاهد لإضفاء الحيوية على منزلك.",
+ "name": "الاسم",
+ "save": "حفظ",
+ "unsaved_confirm": "لديك تغييرات غير محفوظة. هل أنت متأكد من أنك تريد أن تغادر ؟"
+ },
+ "picker": {
+ "duplicate": "تكرار",
+ "duplicate_scene": "تكرار بطاقة",
+ "header": "محرر المشهد",
+ "headers": {
+ "name": "الاسم"
+ },
+ "learn_more": "تعرف على المزيد حول المشاهد",
+ "no_scenes": "لم نتمكن من العثور على أي مشاهد",
+ "pick_scene": "اختر مشهدًا لتحريره"
+ }
+ },
+ "script": {
+ "caption": "السكريبتات",
+ "description": "تنفيذ سلسلة من الإجراءات.",
+ "editor": {
+ "alias": "الاسم",
+ "default_name": "سكريبت جديد",
+ "delete_confirm": "هل أنت متأكد أنك تريد حذف هذا البرنامج النصي؟",
+ "header": "سكريبت: {name}",
+ "icon": "أيقونة",
+ "id": "معرف الكيان",
+ "id_already_exists": "هذا المعرف موجود بالفعل",
+ "introduction": "استخدم البرامج النصية لتشغيل سلسلة من الإجراءات.",
+ "load_error_not_editable": "فقط البرامج النصية داخل scripts.yaml قابلة للتحرير.",
+ "max": {
+ "parallel": "أقصى عدد من التشغيلات المتوازية",
+ "queued": "طول قائمة الإنتظار"
+ },
+ "modes": {
+ "description": "يتحكم الوضع في ما يحدث عند استدعاء البرنامج النصي بينما لا يزال قيد التشغيل من استدعاء واحد أو أكثر من الاستدعاءات السابقة. تحقق من {documentation_link} للحصول على مزيد من المعلومات.",
+ "label": "وضع",
+ "parallel": "موازي",
+ "queued": "في قائمة الإنتظار",
+ "restart": "إعادة تشغيل",
+ "single": "فردي (إفتراضي)"
+ },
+ "save_script": "حفظ السكربت",
+ "sequence": "تسلسل",
+ "show_trace": "عرض التتبع"
+ },
+ "picker": {
+ "add_script": "اضف سكريبت",
+ "dev_script": "تصحيح البرنامج النصي",
+ "duplicate": "تكرار",
+ "duplicate_script": "تكرار السكربت",
+ "header": "محرر البرامج النصية",
+ "headers": {
+ "name": "الاسم"
+ },
+ "introduction": "يتيح لك محرر البرنامج النصي إنشاء البرامج النصية وتحريرها. يرجى اتباع الرابط أدناه لقراءة التعليمات للتأكد من تهيئة Home Assistant بشكل صحيح.",
+ "learn_more": "تعرف على المزيد حول البرامج النصية",
+ "no_scripts": "لم نتمكن من العثور على أي سكريبت",
+ "show_info": "عرض معلومات حول السكربت"
+ }
+ },
+ "server_control": {
+ "caption": "عناصر التحكم بالخادم",
+ "description": "أعد تشغيل خادم Home Assistant وأوقفه",
+ "section": {
+ "reloading": {
+ "automation": "الأتمتة",
+ "command_line": "كيانات سطر الأوامر",
+ "core": "الموقع والتخصيصات",
+ "filesize": "كيانات حجم الملف",
+ "filter": "تصفية الكيانات",
+ "generic": "كيانات كاميرا IP عامة",
+ "generic_thermostat": "كيانات ترموستات عامة",
+ "group": "خدمات المجموعات وكيانات المجموعة والاشعارات",
+ "heading": "إعادة تحميل تكوين YAML",
+ "history_stats": "كيانات احصائيات التاريخ",
+ "homekit": "HomeKit",
+ "input_boolean": "قيم الإدخال المنطقية",
+ "input_datetime": "مدخل الوقت والتاريخ",
+ "input_number": "أرقام الإدخال",
+ "input_select": "تحديد المدخلات",
+ "input_text": "نصوص الإدخال",
+ "introduction": "يمكن إعادة تحميل بعض أجزاء Home Assistant دون الحاجة إلى إعادة التشغيل. سيؤدي النقر فوق أحد الخيارات أدناه إلى إلغاء تحميل تهيئة YAML الحالية وتحميل التكوين الجديد.",
+ "min_max": "الحد الأدنى/الأقصى للكيانات",
+ "mqtt": "كيانات MQTT المكونة يدويًا",
+ "person": "الناس",
+ "reload": "{domain}",
+ "rest": "اعادة ضبط الكيانات وإخطار الخدمات",
+ "rpi_gpio": "كيانات Raspberry Pi GPIO",
+ "scene": "مشاهد",
+ "script": "السكريبتات",
+ "smtp": "خدمات إعلام SMTP",
+ "statistics": "الكيانات الإحصائية",
+ "telegram": "خدمات اشعارات Telegram",
+ "template": "كيانات القالب",
+ "universal": "كيانات مشغل الوسائط العالمي",
+ "zone": "المناطق"
+ },
+ "server_management": {
+ "confirm_restart": "هل تريد بالتأكيد اعادة تشغيل Home Assistant؟",
+ "confirm_stop": "هل تريد بالتأكيد إيقاف Home Assistant؟",
+ "heading": "إدارة الخادم",
+ "introduction": "تحكم في خادم Home Assistant ... من Home Assistant.",
+ "restart": "إعادة التشغيل",
+ "stop": "ايقاف التشغيل"
+ },
+ "validation": {
+ "check_config": "تحقق من التكوين",
+ "heading": "التحقق من صحة التكوين",
+ "introduction": "تحقق من صحة التكوين الخاص بك إذا قمت مؤخرًا بإجراء بعض التغييرات على التكوين الخاص بك وتريد التأكد من أنها كلها صالحة.",
+ "invalid": "التكوين غير صالح",
+ "valid": "التكوين صالح!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "إضافة علامة",
+ "automation_title": "تم فحص العلامة {name}",
+ "caption": "العلامات",
+ "confirm_remove": "هل أنت متأكد أنك تريد إزالة العلامة {tag} ؟",
+ "confirm_remove_title": "إزالة العلامة؟",
+ "create_automation": "إنشاء أتمتة مع العلامة",
+ "description": "تشغيل الأتمتة عند فحص علامة NFC أو رمز الاستجابة السريعة وما إلى ذلك",
+ "detail": {
+ "companion_apps": "التطبيقات المصاحبة",
+ "create": "انشئ",
+ "create_and_write": "أنشئ واكتب",
+ "delete": "حذف",
+ "description": "وصف",
+ "name": "الاسم",
+ "new_tag": "علامة جديدة",
+ "tag_id": "معرف العلامة",
+ "tag_id_placeholder": "تولد تلقائيًا عند تركها فارغة",
+ "update": "تحديث"
+ },
+ "edit": "تعديل",
+ "headers": {
+ "last_scanned": "آخر فحص",
+ "name": "الاسم"
+ },
+ "learn_more": "تعرف على المزيد حول العلامات",
+ "never_scanned": "لم يتم البحث أبدا",
+ "no_tags": "لا توجد علامات",
+ "write": "كتابة"
+ },
+ "users": {
+ "add_user": {
+ "caption": "أضف مستخدم",
+ "create": "إنشاء",
+ "password": "كلمة المرور",
+ "password_confirm": "تأكيد كلمة المرور",
+ "password_not_match": "كلمات المرور غير متطابقة"
+ },
+ "caption": "المستخدمين",
+ "description": "إدارة حسابات مستخدمي Home Assistant",
+ "editor": {
+ "activate_user": "تفعيل المستخدم",
+ "active": "مفعل",
+ "admin": "مدير",
+ "caption": "عرض المستخدم",
+ "change_password": "تغيير كلمة المرور",
+ "confirm_user_deletion": "هل أنت متأكد أنك تريد حذف {name} ؟",
+ "deactivate_user": "إلغاء تنشيط المستخدم",
+ "delete_user": "حذف المستخدم",
+ "group": "مجموعة",
+ "id": "معرف",
+ "name": "اسم العرض",
+ "new_password": "كلمة مرور جديدة",
+ "owner": "مالك",
+ "password_changed": "تم تغيير كلمة المرور بنجاح",
+ "system_generated": "منشئ من قبل النظام",
+ "system_generated_users_not_editable": "غير قادر على تحديث المستخدمين الذين تم إنشاؤهم بواسطة النظام.",
+ "system_generated_users_not_removable": "غير قادر على إزالة المستخدمين الذين تم إنشاؤهم من قبل النظام.",
+ "unnamed_user": "مستخدم غير مسمى",
+ "update_user": "تحديث",
+ "username": "اسم المستخدم"
+ },
+ "picker": {
+ "headers": {
+ "group": "مجموعة",
+ "is_active": "نشط",
+ "is_owner": "المالك",
+ "name": "اسم العرض",
+ "system": "منشئ من قبل النظام",
+ "username": "اسم المستخدم"
+ }
+ },
+ "users_privileges_note": "ميزة مجموعة المستخدم هي عمل قيد التقدم. لن يتمكن المستخدم من إدارة المثيل عبر واجهة المستخدم. ما زلنا نراجع جميع نقاط نهاية واجهة برمجة التطبيقات للإدارة للتأكد من أنها تقيد الوصول بشكل صحيح إلى المسؤولين."
+ },
+ "zha": {
+ "add_device": "إضافة جهاز",
+ "add_device_page": {
+ "discovered_text": "ستظهر الأجهزة هنا عند إكتشافها.",
+ "no_devices_found": "لم يتم العثور على أي أجهزة ، تأكد من أنها في وضع الاقتران واجعلها مستيقظة أثناء اكتشافها قيد التشغيل.",
+ "pairing_mode": "تأكد من أن أجهزتك في وضع الاقتران. تحقق من تعليمات جهازك حول كيفية القيام بذلك.",
+ "search_again": "ابحث مرة أخرى",
+ "spinner": "البحث عن أجهزة ZHA Zigbee…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "سمات الكتلة المحددة",
+ "get_zigbee_attribute": "احصل على سمة Zigbee",
+ "header": "سمات الكتلة",
+ "help_attribute_dropdown": "حدد سمة لعرض قيمتها أو تعيين قيمتها.",
+ "help_get_zigbee_attribute": "احصل على قيمة السمة المحددة.",
+ "help_set_zigbee_attribute": "عين قيمة السمة للكتلة المحددة على الكيان المحدد.",
+ "introduction": "عرض وتحرير سمات الكتلة.",
+ "set_zigbee_attribute": "تعيين سمة Zigbee"
+ },
+ "cluster_commands": {
+ "header": "أوامر الكتلة"
+ },
+ "clusters": {
+ "header": "عناقيد",
+ "help_cluster_dropdown": "حدد كتلة لعرض السمات والأوامر.",
+ "introduction": "الكتل هي لبنات البناء لوظائف Zigbee. وهي تفصل الوظائف إلى وحدات منطقية. هناك أنواع العميل والخادم والتي تتألف من سمات وأوامر."
+ },
+ "common": {
+ "clusters": "العناقيد",
+ "manufacturer_code_override": "تجاوز رمز الشركة المصنعة",
+ "value": "قيمة"
+ },
+ "configuration_page": {
+ "shortcuts_title": "الاختصارات",
+ "update_button": "تحديث التكوين"
+ },
+ "device_pairing_card": {
+ "CONFIGURED_status_text": "قيد التهيئة",
+ "INITIALIZED": "اكتملت التهيئة",
+ "INITIALIZED_status_text": "الجهاز جاهز للاستخدام",
+ "INTERVIEW_COMPLETE": "اكتملت المقابلة",
+ "INTERVIEW_COMPLETE_status_text": "تكوين",
+ "PAIRED": "تم العثور على الجهاز",
+ "PAIRED_status_text": "بدء المقابلة"
+ },
+ "groups": {
+ "add_group": "أضف مجموعة",
+ "add_members": "إضافة أعضاء",
+ "create": "إنشاء مجموعة",
+ "create_group": "Zigbee أتمتة المنزل -- إنشاء مجموعة",
+ "create_group_details": "أدخل التفاصيل المطلوبة لإنشاء مجموعة zigbee جديدة",
+ "group_details": "فيما يلي جميع التفاصيل الخاصة بمجموعة Zigbee المحددة.",
+ "group_id": "معرف المجموعة",
+ "group_info": "معلومات المجموعة",
+ "group_name_placeholder": "أسم المجموعة",
+ "group_not_found": "لم يتم العثور على المجموعة!",
+ "groups": "المجموعات",
+ "members": "الأعضاء",
+ "remove_members": "إزالة الأعضاء",
+ "removing_members": "جاري إزالة الأعضاء"
+ },
+ "network": {
+ "caption": "الشبكة"
+ },
+ "visualization": {
+ "auto_zoom": "تكبير تلقائي",
+ "caption": "التصور",
+ "header": "تصور الشبكة",
+ "highlight_label": "تمييز الأجهزة",
+ "zoom_label": "تكبير على الجهاز"
+ }
+ },
+ "zone": {
+ "add_zone": "إضافة المنطقة",
+ "caption": "المناطق",
+ "configured_in_yaml": "لا يمكن تحرير المناطق التي تم تكوينها بواسطة configuration.yaml عبر واجهة المستخدم.",
+ "description": "إدارة المناطق التي تريد تتبع الأشخاص فيها",
+ "detail": {
+ "create": "إضافة",
+ "delete": "حذف",
+ "icon": "أيقونة",
+ "icon_error_msg": "يجب أن يكون الرمز بالتنسيق ''prefix:iconname''، على سبيل المثال:\" mdi: home \"",
+ "latitude": "خط العرض",
+ "longitude": "خط الطول",
+ "name": "الاسم",
+ "new_zone": "منطقة جديدة",
+ "passive_note": "يتم إخفاء المناطق السلبية في الواجهة الأمامية ولا يتم استخدامها كموقع لتتبع الأجهزة. هذا مفيد إذا كنت ترغب فقط في استخدامه للأتمتة.",
+ "required_error_msg": "هذا الحقل مطلوب",
+ "update": "تحديث"
+ },
+ "edit_home_zone": "لا يمكن تعديل نصف قطر المنطقة الرئيسية من Frontend بعد. اسحب العلامة على الخريطة لتحريك المنطقة الرئيسية.",
+ "introduction": "تسمح لك المناطق بتحديد مناطق معينة على وجه الأرض. عندما يكون الشخص داخل منطقة ما ، ستأخذ الحالة الاسم من المنطقة. يمكن أيضًا استخدام المناطق كمشغل أو حالة داخل إعدادات الأتمتة."
+ },
+ "zwave": {
+ "common": {
+ "index": "فهرس",
+ "instance": "مثيل",
+ "unknown": "غير معروف",
+ "value": "قيمة",
+ "wakeup_interval": "فترة الاستيقاظ"
+ },
+ "description": "إدارة شبكة Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "الانتقال الى OpenZWave",
+ "introduction": "سيساعدك هذا المعالج على الانتقال تكامل Z-Wave القديم إلى تكامل OpenZWave الموجود حاليا في الإصدار التجريبي."
+ }
+ },
+ "network_management": {
+ "header": "إدارة شبكة Z-Wave",
+ "introduction": "قم بتشغيل الأوامر التي تؤثر على شبكة Z-Wave. لن تحصل على تعليقات حول ما إذا كانت معظم الأوامر قد نجحت ، ولكن يمكنك التحقق من سجل OZW لمحاولة اكتشاف ذلك."
+ },
+ "network_status": {
+ "network_started": "بدء تشغيل شبكة Z-Wave",
+ "network_started_note_all_queried": "تم الاستعلام عن جميع العقد.",
+ "network_started_note_some_queried": "تم الاستعلام عن العقد المستيقظة. سيتم الاستعلام عن العقد النائمة عند التنبيه.",
+ "network_starting": "جارٍ بدء تشغيل شبكة Z-Wave …",
+ "network_starting_note": "قد يستغرق هذا بعض الوقت اعتمادا على حجم الشبكة.",
+ "network_stopped": "توقفت شبكة Z-Wave"
+ },
+ "node_config": {
+ "config_parameter": "معلمة التكوين",
+ "config_value": "قيمة التكوين",
+ "false": "خطأ",
+ "header": "خيارات تكوين العقدة",
+ "seconds": "ثواني",
+ "set_config_parameter": "تعيين معلمة التكوين",
+ "set_wakeup": "تعيين فترة الاستيقاظ",
+ "true": "صح"
+ },
+ "node_management": {
+ "add_to_group": "إضافة إلى المجموعة",
+ "entities": "كيانات هذه العقدة",
+ "entity_info": "معلومات الكيان",
+ "exclude_entity": "استبعد هذا الكيان من Home Assistant",
+ "group": "مجموعة",
+ "header": "إدارة عقد Z-Wave",
+ "introduction": "قم بتشغيل أوامر Z-Wave التي تؤثر على عقدة واحدة. اختر عقدة لترى قائمة بالأوامر المتاحة.",
+ "max_associations": "اعلى رقم للجمعيات:",
+ "node_group_associations": "ارتباطات مجموعة العقدة",
+ "node_protection": "حماية العقدة",
+ "node_to_control": "تحكم للعقدة",
+ "nodes": "العقد",
+ "nodes_hint": "تحديد عقدة لعرض خيارات كل عقدة",
+ "nodes_in_group": "العقد الأخرى في هذه المجموعة:",
+ "pooling_intensity": "كثافة الاقتراع",
+ "protection": "الحماية",
+ "remove_broadcast": "إزالة البث",
+ "remove_from_group": "إزالة من المجموعة",
+ "set_protection": "تعيين الحماية"
+ },
+ "ozw_log": {
+ "introduction": "اعرض السجل. 0 هو الحد الأدنى (تحميل السجل بالكامل) و 1000 هو الحد الأقصى. سيعرض التحميل سجلاً ثابتًا وسيتم تحديث الذيل تلقائيًا بآخر عدد محدد من الأسطر من السجل.",
+ "last_log_lines": "عدد أسطر السجل الأخيرة",
+ "load": "حمل",
+ "tail": "الذيل"
+ },
+ "services": {
+ "add_node": "إضافة عقدة",
+ "add_node_secure": "إضافة عقدة آمنة",
+ "cancel_command": "إلغاء الأمر",
+ "heal_network": "عالج الشبكة",
+ "heal_node": "اختبار عقدة",
+ "node_info": "معلومات العقدة",
+ "print_node": "طباعة عقدة",
+ "refresh_entity": "تحديث الكيان",
+ "refresh_node": "تحديث العقدة",
+ "remove_failed_node": "إزالة العقدة الفاشلة",
+ "remove_node": "إزالة عقدة",
+ "replace_failed_node": "استبدال العقدة الفاشلة",
+ "save_config": "حفظ التكوين",
+ "soft_reset": "إعادة تشغيل بسيطه",
+ "start_network": "بدء تشغيل الشبكة",
+ "stop_network": "إيقاف الشبكة",
+ "test_network": "اختبار الشبكة",
+ "test_node": "اختبار عقدة"
+ },
+ "values": {
+ "header": "قيم العقدة"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "إلغاء التضمين",
+ "controller_in_inclusion_mode": "أصبحت وحدة التحكم Z-Wave الآن في وضع التضمين.",
+ "follow_device_instructions": "اتبع الإرشادات المرفقة مع جهازك لبدء الاقتران على الجهاز.",
+ "inclusion_finished": "تم إضافة العقدة.",
+ "interview_failed": "فشلت مقابلة الجهاز. قد تتوفر معلومات إضافية في السجلات.",
+ "interview_started": "الجهاز قيد المقابلة. هذا قد يستغرق بعض الوقت.",
+ "secure_inclusion_warning": "تتطلب الأجهزة الآمنة نطاقًا تردديًا إضافيًا ؛ يمكن أن يؤدي وجود عدد كبير جدًا من الأجهزة الآمنة إلى إبطاء شبكة Z-Wave. نوصي باستخدام التضمين الآمن فقط للأجهزة التي تتطلب ذلك ، مثل الأقفال أو فتاحات أبواب المرآب.",
+ "view_device": "عرض الجهاز"
+ },
+ "common": {
+ "add_node": "إضافة عقدة",
+ "close": "إغلاق",
+ "heal_network": "عالج الشبكة",
+ "home_id": "معرف المنزل",
+ "network": "الشبكة",
+ "node_id": "معرف العقدة",
+ "reconfigure_server": "أعد تكوين الخادم",
+ "remove_node": "إزالة عقدة",
+ "source": "المصدر"
+ },
+ "dashboard": {
+ "driver_version": "إصدار برنامج التشغيل",
+ "dump_dead_nodes_text": "بعض العقد الخاصة بك لم تستجب ويفترض أنها ميتة. لن يتم تصديرها بالكامل.",
+ "dump_dead_nodes_title": "بعض العقد الخاصة بك ميتة",
+ "dump_debug": "قم بتنزيل ملف تفريغ لشبكتك للمساعدة في تشخيص المشكلات",
+ "dump_not_ready_confirm": "تحميل",
+ "dump_not_ready_text": "إذا أنشأت تصديرًا بينما لم تكن جميع العقد جاهزة ، فقد تفوتك البيانات المطلوبة. امنح شبكتك بعض الوقت للاستعلام عن جميع العقد. هل تريد الاستمرار في التفريغ؟",
+ "dump_not_ready_title": "ليست كل العقد جاهزة بعد",
+ "header": "إدارة شبكة Z-Wave",
+ "home_id": "معرف المنزل",
+ "introduction": "إدارة شبكة Z-Wave وعقد Z-Wave",
+ "nodes_ready": "العقد جاهزة",
+ "server_version": "إصدار الخادم"
+ },
+ "device_info": {
+ "device_config": "تكوين جهاز",
+ "node_ready": "عقدة جاهزة",
+ "node_status": "حالة العقدة",
+ "reinterview_device": "أعد إجراء المقابلة مع الجهاز",
+ "zwave_info": "معلومات Z-Wave"
+ },
+ "heal_network": {
+ "healing_cancelled": "تم إلغاء معالجة الشبكة.",
+ "healing_complete": "اكتملت معالجة الشبكة.",
+ "healing_failed": "المعالجة فشلت. قد تتوفر معلومات إضافية في السجلات.",
+ "in_progress": "معالجة الشبكة جارية. سيستغرق هذا بعض الوقت.",
+ "introduction": "ابدأ معالجة الشبكة على شبكة Z-Wave الخاصة بك. سيؤدي علاج الشبكة إلى إعادة حساب جميع الأجهزة لمساراتها مرة أخرى إلى وحدة التحكم ويوصى بذلك إذا قمت مؤخرًا بنقل الأجهزة أو وحدة التحكم الخاصة بك.",
+ "run_in_background": "يمكنك إغلاق مربع الحوار هذا وستستمر عملية معالجة الشبكة في الخلفية.",
+ "start_heal": "ابدأ المعالجة",
+ "stop_heal": "أوقف المعالجة.",
+ "title": "عالج شبكة Z-Wave الخاصة بك",
+ "traffic_warning": "تولد عملية المعالجة قدرًا كبيرًا من حركة المرور على شبكة Z-Wave. قد يتسبب هذا في استجابة الأجهزة ببطء (أو عدم الاستجابة على الإطلاق) أثناء تقدم المعالجة."
+ },
+ "logs": {
+ "log_level": "مستوى التسجيل في السجل",
+ "log_level_changed": "تم تغيير مستوى السجل إلى: {level}",
+ "subscribed_to_logs": "اشترك في Z-Wave JS سجل الرسائل…",
+ "title": "سجلات Z-Wave JS"
+ },
+ "navigation": {
+ "logs": "السجلات",
+ "network": "الشبكة"
+ },
+ "node_config": {
+ "attribution": "يتم توفير معلمات تكوين الجهاز وأوصافه من قبل {device_database}",
+ "battery_device_notice": "يجب أن تكون أجهزة البطارية نشطة لتحديث التكوين الخاص بها. يرجى الرجوع إلى دليل جهازك للحصول على إرشادات حول كيفية تنشيط الجهاز.",
+ "error_device_not_found": "لم يتم العثور علي الجهاز",
+ "header": "تكوين جهاز Z-Wave",
+ "introduction": "إدارة وضبط معلمات التكوين الخاصة بالجهاز (العقدة) للجهاز المحدد",
+ "parameter": "المعامل",
+ "parameter_is_read_only": "هذه المعلمة للقراءة فقط.",
+ "set_param_accepted": "تم تحديث المعلمة.",
+ "set_param_error": "حدث خطأ.",
+ "set_param_queued": "تم وضع تغيير المعلمة في قائمة الانتظار ، وسيتم تحديثه عند تنبيه الجهاز.",
+ "zwave_js_device_database": "قاعدة بيانات جهاز Z-Wave JS"
+ },
+ "node_status": {
+ "asleep": "نائم",
+ "awake": "مستيقظ",
+ "dead": "ميت",
+ "unknown": "غير معروف"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "ستحتاج إلى تنبيه الأجهزة التي تعمل بالبطارية قبل بدء إعادة المقابلة. ارجع إلى دليل جهازك للحصول على إرشادات حول كيفية تنبيه الجهاز.",
+ "in_progress": "الجهاز قيد المقابلة. هذا قد يستغرق بعض الوقت.",
+ "interview_complete": "اكتملت مقابلة الجهاز.",
+ "interview_failed": "فشلت مقابلة الجهاز. قد تتوفر معلومات إضافية في السجلات.",
+ "introduction": "إعادة مقابلة جهاز على شبكة Z-Wave. استخدم هذه الميزة إذا كان جهازك يحتوي على وظائف مفقودة أو غير صحيحة.",
+ "run_in_background": "يمكنك إغلاق مربع الحوار هذا وستستمر المقابلة في الخلفية.",
+ "start_reinterview": "ابدأ إعادة المقابلة",
+ "title": "أعد إجراء مقابلة مع جهاز Z-Wave"
+ },
+ "remove_failed_node": {
+ "removal_failed": "لا يمكن إزالة الجهاز من شبكة Z-Wave الخاصة بك."
+ },
+ "remove_node": {
+ "cancel_exclusion": "إلغاء الاستبعاد",
+ "follow_device_instructions": "اتبع الإرشادات المرفقة مع جهازك لبدء الاستبعاد على الجهاز.",
+ "introduction": "قم بإزالة عقدة من شبكة Z-Wave الخاصة بك ، وقم بإزالة الجهاز والكيانات المرتبطة بها من Home Assistant.",
+ "start_exclusion": "بدء الاستبعاد"
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "سيكون لديه حق الوصول إلى جميع البيانات في Home Assistant.",
+ "hide_message": "تحقق من المستندات لمكون panel_custom لإخفاء هذه الرسالة",
+ "question_trust": "هل تثق باللوحة الخارجية {name} في {link} ؟"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "المستمعون النشطون",
+ "documentation": "وثائق الأحداث",
+ "event_fired": "تم تشغيل الحدث {name}",
+ "notification_event_fired": "الحدث {type} تم إطلاقه بنجاح!",
+ "title": "أحداث"
+ },
+ "services": {
+ "accepts_target": "تقبل هذه الخدمة هدفًا ، على سبيل المثال: `entity_id: light.bed_light`",
+ "all_parameters": "جميع المعلمات المتاحة",
+ "no_template_ui_support": "لا تدعم واجهة المستخدم القوالب ، لا يزال بإمكانك استخدام محرر YAML",
+ "title": "الخدمات",
+ "ui_mode": "انتقل إلى وضع واجهة المستخدم",
+ "yaml_mode": "انتقل إلى وضع YAML",
+ "yaml_parameters": "المعلمات متاحة فقط في وضع YAML"
+ },
+ "states": {
+ "copy_id": "انسخ المعرف إلى الحافظة",
+ "description1": "قم بتعيين تمثيل الحالة الحالية لكيان داخل Home Assistant.",
+ "description2": "إذا كان الكيان ينتمي إلى جهاز، فلن يكون هناك اتصال فعلي مع هذا الجهاز.",
+ "last_changed": "آخر تعديل",
+ "last_updated": "آخر تحديث",
+ "title": "الحالات"
+ },
+ "templates": {
+ "domain": "المجال",
+ "entity": "الكيان",
+ "no_listeners": "لا يستمع هذا القالب لأي أحداث ولن يتم تحديثه تلقائيا.",
+ "reset": "إعادة التعيين إلى القالب التجريبي",
+ "time": "يتم تحديث هذا القالب في بداية كل دقيقة.",
+ "title": "نماذج"
+ }
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "لا يمكنك استخدام هذه الوظيفة إلا عندما تتحكم في واجهة مستخدم Lovelace.",
+ "saving_failed": "فشل حفظ تكوين واجهة المستخدم Lovelace.",
+ "yaml_unsupported": "لا يمكنك استخدام هذه الوظيفة عند استخدام واجهة مستخدم Lovelace في وضع YAML."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "هل أنت متأكد أنك تريد تشغيل الإجراء \" {action} \"؟",
+ "no_service": "لا توجد خدمة لتشغيل محددة",
+ "no_url": "لم يتم تحديد عنوان URL لفتحه"
+ },
+ "confirm_delete": "هل أنت متأكد أنك تريد حذف هذه البطاقة؟",
+ "empty_state": {
+ "go_to_integrations_page": "انتقل إلى صفحة التكاملات.",
+ "no_devices": "تسمح لك هذه الصفحة بالتحكم في أجهزتك ، ولكن يبدو أنك لم تعد أي أجهزة حتى الآن. توجه إلى صفحة التكاملات للبدء.",
+ "title": "مرحبًا بك في بيتك"
+ },
+ "entities": {
+ "never_triggered": "لم يتم تشغيله أبدا"
+ },
+ "picture-elements": {
+ "call_service": "اتصل بخدمة {name}",
+ "hold": "تعليق:",
+ "more_info": "إظهار المزيد من المعلومات: {name}",
+ "navigate_to": "انتقل إلى {location}",
+ "tap": "ضغط:",
+ "toggle": "تبديل {name}",
+ "url": "فتح النافذة لـ {url_path}"
+ },
+ "safe-mode": {
+ "description": "واجه Home Assistant مشكلة أثناء تحميل التكوينات الخاصة بك ويتم تشغيله الآن في الوضع الآمن. أنظر إلى سجل الأخطاء لمعرفة الخطأ.",
+ "header": "الوضع الآمن منشط"
+ },
+ "shopping-list": {
+ "add_item": "إضافة عنصر",
+ "checked_items": "العناصر المحددة",
+ "clear_items": "مسح العناصر المحددة",
+ "drag_and_drop": "السحب والإفلات",
+ "reorder_items": "إعادة ترتيب العناصر"
+ },
+ "starting": {
+ "description": "Home Assistant يبدأ، يرجى الانتظار…"
+ }
+ },
+ "changed_toast": {
+ "message": "تم تحديث تكوين واجهة المستخدم Lovelace للوحة المعلومات هذه. هل تريد التحديث لمشاهدة التغييرات؟"
+ },
+ "components": {
+ "timestamp-display": {
+ "invalid": "الطابع الزمني غير صالح",
+ "invalid_format": "تنسيق العرض غير صالح"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "url": "URL"
+ },
+ "url_path": "مسار URL"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "الحالات المتاحة",
+ "description": "تسمح لك بطاقة لوحة الإنذار بتفعيل وتعطيل لوحة التحكم الخاصة بالانذار .",
+ "name": "لوحة الإنذار"
+ },
+ "button": {
+ "default_action_help": "يعتمد الإجراء الافتراضي على إمكانيات الكيان ، وسيتم إما تبديله أو عرض مربع حوار مزيد من المعلومات.",
+ "description": "تتيح لك بطاقة الأزرار إضافة أزرار لأداء المهام.",
+ "name": "زر"
+ },
+ "calendar": {
+ "description": "تعرض بطاقة التقويم تقويما يتضمن اليوم والأسبوع وقائمة العرض",
+ "name": "التقويم",
+ "views": {
+ "dayGridDay": "يوم",
+ "dayGridMonth": "شهر"
+ }
+ },
+ "conditional": {
+ "card": "بطاقة",
+ "change_type": "نوع التغيير",
+ "condition_explanation": "ستظهر البطاقة عند استيفاء جميع الشروط أدناه.",
+ "conditions": "شروط",
+ "current_state": "الحالي",
+ "description": "تعرض البطاقة الشرطية بطاقة أخرى استنادًا إلى حالات الكيان.",
+ "name": "الشرط",
+ "state_equal": "الحالة تساوي",
+ "state_not_equal": "الحالة لا تساوي"
+ },
+ "config": {
+ "optional": "اختياري",
+ "required": "مطلوب"
+ },
+ "entities": {
+ "description": "بطاقة الكيانات هي أكثر أنواع البطاقات شيوعًا. تقوم بتجميع العناصر معًا في قوائم.",
+ "edit_special_row": "اعرض تفاصيل هذا الصف بالنقر على زر التعديل",
+ "name": "الكيانات",
+ "secondary_info_values": {
+ "last-changed": "آخر تعديل",
+ "last-triggered": "آخر تشغيل",
+ "last-updated": "آخر تحديث",
+ "none": "لا توجد معلومات ثانوية",
+ "tilt-position": "وضع الإمالة"
+ },
+ "show_header_toggle": "إظهار الزر العلوي؟"
+ },
+ "entity-filter": {
+ "description": "تتيح لك بطاقة تصفية الكيانات تحديد قائمة بالكيانات التي تريد تتبعها فقط عندما تكون في حالة معينة.",
+ "name": "عامل تصفية الكيان"
+ },
+ "entity": {
+ "description": "تمنحك بطاقة الكيان نظرة عامة سريعة عن حالة الكيان.",
+ "name": "الكيان"
+ },
+ "gauge": {
+ "description": "بطاقة القياس هي بطاقة أساسية تسمح برؤية بيانات الاستشعار بصريًا.",
+ "name": "مقياس",
+ "severity": {
+ "define": "عرف الخطورة؟",
+ "green": "أخضر",
+ "red": "أحمر",
+ "yellow": "أصفر"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "نسبة العرض إلى الارتفاع",
+ "attribute": "السمه",
+ "camera_image": "كيان الكاميرا",
+ "camera_view": "عرض الكاميرا",
+ "days_to_show": "ايام العرض",
+ "double_tap_action": "تأثير النقر المزدوج",
+ "entities": "الكيانات",
+ "entity": "كيان",
+ "hold_action": "تعليق الإجراء",
+ "hours_to_show": "ساعات العرض",
+ "icon": "أيقونة",
+ "icon_height": "ارتفاع الأيقونة",
+ "image": "مسار الصورة",
+ "manual": "يدويا",
+ "manual_description": "هل تحتاج إلى إضافة بطاقة مخصصة أو ترغب فقط في كتابة YAML يدويًا؟",
+ "maximum": "الحد الاقصي",
+ "minimum": "الحد الأدنى",
+ "name": "الاسم",
+ "no_theme": "لا توجد تصاميم متاحة",
+ "refresh_interval": "مدة التحديث",
+ "search": "بحث",
+ "secondary_info_attribute": "سمة المعلومات الثانوية",
+ "show_icon": "إظهار الأيقونة؟",
+ "show_name": "أظهر الاسم؟",
+ "show_state": "إظهار الحالة؟",
+ "state": "الحالة",
+ "state_color": "تلويين الايقونات بناء على الحالة ؟",
+ "tap_action": "إجراء النقر",
+ "theme": "سمة",
+ "title": "عنوان",
+ "unit": "وحدة",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "الأعمدة",
+ "description": "بطاقة اللمحة مفيدة لتجميع أجهزة استشعار متعددة في نظرة عامة مدمجة.",
+ "name": "Glance"
+ },
+ "grid": {
+ "columns": "الأعمدة",
+ "name": "شبكة"
+ },
+ "history-graph": {
+ "description": "تسمح لك بطاقة الرسم البياني التاريخي بعرض رسم بياني لكل من الكيانات المذكورة.",
+ "name": "الرسم البياني للمحفوظات"
+ },
+ "horizontal-stack": {
+ "description": "تتيح لك بطاقة التكديس الأفقي تجميع عدة بطاقات معًا ، بحيث تكون دائمًا بجانب بعضها البعض في مساحة عمود واحد.",
+ "name": "المكدس الأفقي"
+ },
+ "humidifier": {
+ "description": "تتيح بطاقة المرطب التحكم في كيان المرطب. يسمح لك بتغيير الرطوبة ووضع الكيان.",
+ "name": "المرطب"
+ },
+ "iframe": {
+ "description": "تسمح لك بطاقة صفحة الويب بتضمين صفحة ويب مباشرةً في Home Assistant.",
+ "name": "صفحة ويب"
+ },
+ "light": {
+ "description": "تسمح لك بطاقة الضوء بتغيير سطوع الضوء.",
+ "name": "الضوء"
+ },
+ "logbook": {
+ "name": "السجل"
+ },
+ "map": {
+ "dark_mode": "الوضع الداكن؟",
+ "default_zoom": "التكبير الافتراضي",
+ "description": "بطاقة الخريطة التي تتيح لك عرض الكيانات على الخريطة.",
+ "geo_location_sources": "مصادر تحديد الموقع الجغرافي",
+ "hours_to_show": "ساعات للعرض",
+ "name": "الخريطة",
+ "source": "المصدر"
+ },
+ "markdown": {
+ "content": "محتوى",
+ "description": "يتم استخدام بطاقة Markdown لعرض Markdown.",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "description": "يتم استخدام بطاقة التحكم بالوسائط لعرض كيانات مشغل الوسائط على واجهة مع عناصر تحكم سهلة الاستخدام.",
+ "name": "التحكم في الوسائط"
+ },
+ "picture-elements": {
+ "description": "بطاقة عناصر الصورة هي واحدة من أكثر أنواع البطاقات تنوعا. تسمح لك البطاقات بوضع الرموز أو النص وحتى الخدمات! على صورة تستند إلى إحداثيات.",
+ "name": "عناصر الصورة"
+ },
+ "picture-entity": {
+ "description": "تعرض بطاقة كيان الصورة كيانًا في شكل صورة. بدلاً من الصور من عنوان URL، يمكنه أيضًا عرض صورة كيانات الكاميرا.",
+ "name": "كيان الصورة"
+ },
+ "picture-glance": {
+ "description": "تُظهر بطاقة Picture Glance صورة وحالات الكيان المقابلة كرمز. تسمح الكيانات الموجودة على الجانب الأيمن بإجراءات التبديل ، بينما تعرض الكيانات الأخرى مربع حوار \"مزيد من المعلومات\".",
+ "name": "Picture Glance"
+ },
+ "picture": {
+ "description": "تسمح لك بطاقة الصورة بتعيين صورة لاستخدامها في التنقل إلى مسارات مختلفة في واجهتك أو لاستدعاء خدمة.",
+ "name": "صورة"
+ },
+ "plant-status": {
+ "description": "بطاقة حالة النبات هي لجميع محبين النباتات.",
+ "name": "حالة النبات"
+ },
+ "sensor": {
+ "description": "تمنحك بطاقة المستشعر لمحة عامة سريعة عن حالة المستشعرات الخاصة بك مع رسم بياني اختياري لتصور التغيير بمرور الوقت.",
+ "graph_type": "نوع الرسم البياني",
+ "name": "مستشعر"
+ },
+ "shopping-list": {
+ "description": "تتيح لك بطاقة قائمة التسوق إضافة عناصر وتحريرها وإلغاء تحديدها ومسحها من قائمة التسوق الخاصة بك.",
+ "integration_not_loaded": "تتطلب هذه البطاقة إعداد تكامل \"shopping_list\".",
+ "name": "قائمة التسوق"
+ },
+ "statistics-graph": {
+ "name": "رسم بياني للإحصائيات"
+ },
+ "thermostat": {
+ "description": "تتيح بطاقة الترموستات التحكم في كيان المناخ لديك. يسمح لك بتغيير درجة حرارة الكيان ووضعه.",
+ "name": "منظم التكييف"
+ },
+ "vertical-stack": {
+ "description": "تسمح لك بطاقة التكديس الرأسي بتجميع بطاقات متعددة بحيث تكون دائمًا في نفس العمود.",
+ "name": "المكدس العمودي"
+ },
+ "weather-forecast": {
+ "description": "تعرض بطاقة توقعات الطقس حالة الطقس. من المفيد جدًا تضمينه في الواجهات التي يعرضها الأشخاص على الحائط.",
+ "name": "النشرة الجوية",
+ "show_forecast": "التوقعات"
+ }
+ },
+ "cardpicker": {
+ "by_entity": "حسب الكيان",
+ "custom_card": "معدل",
+ "domain": "المجال",
+ "entity": "الكيان",
+ "no_description": "لا يوجد وصف متاح."
+ },
+ "common": {
+ "edit": "تعديل"
+ },
+ "edit_badges": {
+ "panel_mode": "لن يتم عرض هذه الشارات لأن هذا العرض في \"وضع اللوحة\".",
+ "view_no_badges": "لا يدعم نوع العرض الحالي الشارات."
+ },
+ "edit_card": {
+ "add": "إضافة بطاقة",
+ "confirm_cancel": "هل أنت متأكد من الإلغاء؟",
+ "delete": "حذف البطاقة",
+ "duplicate": "كرر البطاقة",
+ "edit": "تصحيح",
+ "header": "تكوين البطاقة",
+ "move": "نقل الى عرض",
+ "options": "المزيد من الخيارات",
+ "pick_card": "ما هي البطاقة التي ترغب في إضافتها؟",
+ "pick_card_view_title": "ما هي البطاقة التي تريد إضافتها إلى طريقة العرض {name} ؟",
+ "search_cards": "ابحث عن البطاقات",
+ "toggle_editor": "تبديل المحرر",
+ "typed_header": "{type} تكوين البطاقة",
+ "unsaved_changes": "لديك تغييرات غير محفوظة"
+ },
+ "edit_lovelace": {
+ "explanation": "يظهر هذا العنوان فوق كل صفحات واجهة المستخدم Lovelace.",
+ "header": "عنوان واجهة مستخدم Lovelace الخاصة بك",
+ "title": "عنوان"
+ },
+ "edit_view": {
+ "add": "إضافة عرض",
+ "delete": "حذف العرض",
+ "edit": "تحرير عرض",
+ "header": "عرض التكوين",
+ "header_name": "{name} عرض التكوين",
+ "move_left": "حرك العرض لليسار",
+ "move_right": "حرك العرض لليمين",
+ "tab_settings": "إعدادات",
+ "tab_visibility": "الرؤية",
+ "type": "نوع العرض",
+ "types": {
+ "panel": "لوحة (1 بطاقة)",
+ "sidebar": "الشريط الجانبي"
+ },
+ "visibility": {
+ "select_users": "تحديد المستخدمين الذين يجب أن يروا طريقة العرض هذه في التنقل"
+ }
+ },
+ "header": "تحرير واجهة المستخدم",
+ "header-footer": {
+ "choose_header_footer": "اختر {type}",
+ "types": {
+ "buttons": {
+ "name": "أزرار"
+ },
+ "graph": {
+ "name": "الرسم البياني"
+ },
+ "picture": {
+ "name": "صورة"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "ادارة لوحة المعلومات",
+ "manage_resources": "ادارة الموارد",
+ "open": "فتح قائمة واجهة المستخدم Lovelace",
+ "raw_editor": "محرر التكوين الخام"
+ },
+ "migrate": {
+ "header": "التكوين غير متوافق",
+ "migrate": "ترحيل التكوين",
+ "para_migrate": "يمكن لـ Home Assistant إضافة معرفات إلى جميع بطاقاتك وطرق العرض تلقائيًا لك بالضغط على زر \"ترحيل التكوين\".",
+ "para_no_id": "هذا العنصر ليس له معرّف ID . الرجاء إضافة معرف ID لهذا العنصر في \"ui-lovelace.yaml\"."
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "سنقوم تلقائيا بإنشاء طرق عرض واجهة مستخدم Lovelace الخاصة بك مع المناطق والأجهزة الخاصة بك إذا قمت بإزالة تكوين واجهة مستخدم Lovelace.",
+ "confirm_remove_config_title": "هل تريد بالتأكيد إزالة تكوين واجهة مستخدم Lovelace؟",
+ "confirm_unsaved_changes": "لديك تغييرات غير محفوظة ، هل أنت متأكد أنك تريد الخروج؟",
+ "confirm_unsaved_comments": "قد يحتوي التكوين الخاص بك على تعليق (تعليقات) ، ولن يتم حفظها. هل تريد الاستمرار؟",
+ "error_invalid_config": "التكوين الخاص بك غير صالح: {error}",
+ "error_remove": "تعذر إزالة التكوين: {error}",
+ "error_save_yaml": "تعذر حفظ YAML: {error}",
+ "header": "تعديل التكوين",
+ "reload": "إعادة تحميل",
+ "save": "حفظ",
+ "saved": "تم الحفظ",
+ "unsaved_changes": "التغييرات غير محفوظة"
+ },
+ "save_config": {
+ "close": "إغلاق",
+ "empty_config": "ابدأ بلوحة معلومات فارغة",
+ "header": "تحكم في واجهة مستخدم Lovelace",
+ "para": "يتم صيانة لوحة المعلومات هذه حاليًا بواسطة Home Assistant. يتم تحديثه تلقائيًا عند توفر كيانات جديدة أو مكونات Lovelace UI. إذا كنت تتحكم ، فلن يتم تحديث لوحة التحكم هذه تلقائيًا بعد الآن. يمكنك دائمًا إنشاء لوحة تحكم جديدة في التكوين للتلاعب بها.",
+ "para_sure": "هل أنت متأكد أنك تريد التحكم في واجهة المستخدم الخاصة بك؟",
+ "save": "تحكم",
+ "yaml_control": "للتحكم في وضع YAML ، قم بإنشاء ملف YAML بالاسم الذي حددته في التكوين الخاص بك للوحة القيادة هذه ، أو الافتراضي \"ui-lovelace.yaml\".",
+ "yaml_mode": "أنت تستخدم وضع YAML للوحة البيانات هذه ، مما يعني أنه لا يمكنك تغيير تكوين Lovelace من واجهة المستخدم. إذا كنت تريد إدارة لوحة التحكم هذه من واجهة المستخدم ، فقم بإزالة \"الوضع: yaml\" من تكوين Lovelace في \"config.yaml.\"."
+ },
+ "select_view": {
+ "dashboard_label": "لوحة المعلومات"
+ },
+ "suggest_card": {
+ "add": "إضافة إلى واجهة مستخدم Lovelace",
+ "create_own": "اختر بطاقة مختلفة"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "تحتوي طريقة العرض هذه على أكثر من بطاقة ، ولكن يمكن أن تعرض طريقة عرض اللوحة بطاقة واحدة فقط."
+ }
+ }
+ },
+ "menu": {
+ "close": "إغلاق",
+ "configure_ui": "تحرير لوحة المعلومات",
+ "help": "مساعدة",
+ "reload_resources": "إعادة تحميل الموارد",
+ "start_conversation": "ابدأ المحادثة"
+ },
+ "reload_lovelace": "إعادة تحميل واجهة المستخدم",
+ "reload_resources": {
+ "refresh_body": "يجب عليك تحديث الصفحة لإكمال إعادة التحميل ، هل تريد التحديث الآن؟",
+ "refresh_header": "هل تريد التحديث؟"
+ },
+ "unused_entities": {
+ "last_changed": "آخر تعديل",
+ "no_data": "لم يعثر على كيانات غير مستخدمة",
+ "search": "إبحث عن الكيانات"
+ },
+ "views": {
+ "confirm_delete": "حذف العرض؟",
+ "confirm_delete_existing_cards": "سيؤدي حذف هذا العرض إلى إزالة البطاقات أيضًا",
+ "confirm_delete_existing_cards_text": "هل أنت متأكد من أنك تريد حذف طريقة عرض ''{name}''؟ تحتوي طريقة العرض على {number} بطاقات سيتم حذفها. لا يمكن التراجع عن هذا الإجراء.",
+ "confirm_delete_text": "هل أنت متأكد من أنك تريد حذف عرض \"{name}\" ؟"
+ },
+ "warning": {
+ "attribute_not_found": "السمة {attribute} غير متاحة في: {entity}",
+ "entity_non_numeric": "الكيان غير رقمي: {entity}",
+ "entity_not_found": "الجهاز غير متوفر: {entity}",
+ "entity_unavailable": "الكيان غير متاح حاليًا: {entity}",
+ "starting": "Home Assistant يبدأ، قد لا يكون كل شيء متاح حتى الآن"
+ }
+ },
+ "mailbox": {
+ "delete_button": "حذف",
+ "delete_prompt": "حذف هذه الرسالة؟",
+ "empty": "ليس لديك رسائل",
+ "playback_title": "تشغيل الرسالة"
+ },
+ "my": {
+ "documentation": "الوثائق",
+ "error": "حدث خطأ غير معروف",
+ "faq_link": "الأسئلة الشائعة حول My Home Assistant",
+ "not_supported": "لا يدعم مثيل Home Assistant إعادة التوجيه هذه. تحقق من {link} لعمليات إعادة التوجيه المدعومة والإصدار الذي تم تقديمه فيه."
+ },
+ "page-authorize": {
+ "abort_intro": "إلغاء الدخول",
+ "authorizing_client": "أنت على وشك منح {clientId} حق الوصول إلى مثيل Home Assistant الخاص بك.",
+ "form": {
+ "error": "خطأ: {error}",
+ "next": "التالى",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "انتهت مدة الجلسة، يرجى تسجيل الدخول مرة أخرى."
+ },
+ "error": {
+ "invalid_auth": "خطأ في اسم المستخدم أو كلمة المرور",
+ "invalid_code": "رمز المصادقة غير صالح"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "كلمة المرور",
+ "username": "اسم المستخدم"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "رمز المصادقة الثنائية"
+ },
+ "description": "افتح **{mfa_module_name}** على جهازك لعرض رمز المصادقة الثنائي والتحقق من هويتك:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "انتهت مدة الجلسة، يرجى تسجيل الدخول مرة أخرى."
+ },
+ "error": {
+ "invalid_auth": "خطأ في اسم المستخدم أو كلمة المرور",
+ "invalid_code": "رمز المصادقة غير صالح"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "كلمة المرور",
+ "username": "اسم المستخدم"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "رمز المصادقة الثنائية"
+ },
+ "description": "افتح **{mfa_module_name}** على جهازك لعرض رمز المصادقة الثنائي والتحقق من هويتك:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "انتهت مدة الجلسة، يرجى تسجيل الدخول مرة أخرى.",
+ "no_api_password_set": "لم يتم تكوين كلمة مرور API."
+ },
+ "error": {
+ "invalid_auth": "كلمة مرور API غير صالحة",
+ "invalid_code": "رمز المصادقة غير صالح"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "كلمة مرور API"
+ },
+ "description": "الرجاء إدخال كلمة مرور API في تكوين HTTP:"
+ },
+ "mfa": {
+ "data": {
+ "code": "رمز المصادقة الثنائية"
+ },
+ "description": "افتح **{mfa_module_name}** على جهازك لعرض رمز المصادقة الثنائي والتحقق من هويتك:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "كمبيوترك غير مسموح به."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "مستخدم"
+ },
+ "description": "يرجى تحديد المستخدم الذي تريد تسجيل الدخول باسمه:"
+ }
+ }
+ }
+ },
+ "start_over": "البدء من جديد",
+ "unknown_error": "حدث خطأ ما",
+ "working": "الرجاء الانتظار"
+ },
+ "initializing": "جار التهيئة",
+ "logging_in_to_with": "تسجيل الدخول إلى ** {locationName} ** باستخدام ** {authProviderName} **.",
+ "logging_in_with": "تسجيل الدخول باستخدام **{authProviderName}**.",
+ "pick_auth_provider": "أو سجل الدخول باستخدام"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "بواسطة {name}",
+ "introduction": "مرحبا بك في بيتك! لقد وصلت إلى العرض التوضيحي لـ Home Assistant حيث نعرض أفضل واجهات المستخدم التي أنشأها مجتمعنا.",
+ "learn_more": "تعرف على المزيد حول Home Assistant",
+ "next_demo": "العرض التوضيحي التالي"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "الانشطة",
+ "air": "هواء",
+ "commute_home": "انتقل إلى المنزل",
+ "entertainment": "ترفيه",
+ "hdmi_input": "مدخل HDMI",
+ "hdmi_switcher": "محول HDMI",
+ "information": "معلومات",
+ "lights": "أضواء",
+ "morning_commute": "التنقل الصباحي",
+ "total_tv_time": "إجمالي وقت التلفزيون",
+ "turn_tv_off": "إيقاف تشغيل التلفزيون",
+ "volume": "حجم الصوت"
+ },
+ "names": {
+ "family_room": "غرفة العائلة",
+ "hallway": "الردهه",
+ "kitchen": "المطبخ",
+ "left": "يسار",
+ "master_bedroom": "غرفة النوم الرئيسية",
+ "mirror": "مرآة",
+ "patio": "الفناء",
+ "right": "يمين",
+ "temperature_study": "دراسة درجة الحرارة",
+ "upstairs": "الطابق العلوي"
+ },
+ "unit": {
+ "minutes_abbr": "د",
+ "watching": "يشاهد"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "التالى"
+ },
+ "core-config": {
+ "button_detect": "كشف",
+ "finish": "التالى",
+ "intro": "مرحبًا {name} ، مرحبًا بك في Home Assistant. ماذا تريد تسمية منزلك؟",
+ "intro_location": "نود أن نعرف أين تعيش. ستساعد هذه المعلومات في عرض المعلومات وإعداد الأتمتة القائمة على الشمس. لا يتم ابدا مشاركة هذه البيانات خارج الشبكة الخاصة بك.",
+ "intro_location_detect": "يمكننا مساعدتك في ملء هذه المعلومات عن طريق تقديم طلب لمرة واحدة إلى خدمة خارجية.",
+ "location_name": "اسم تثبيت Home Assistant الخاص بك",
+ "location_name_default": "المنزل"
+ },
+ "finish": "انتهى",
+ "integration": {
+ "finish": "إنهاء",
+ "intro": "يتم تمثيل الأجهزة والخدمات في Home Assistant كتكاملات. يمكنك إعدادها الآن ، أو القيام بذلك لاحقًا من شاشة التكوين.",
+ "more_integrations": "المزيد"
+ },
+ "intro": "هل أنت مستعد لإيقاظ منزلك واستعادة خصوصيتك والانضمام إلى مجتمع عالمي من اللاعبين؟",
+ "next": "التالى",
+ "restore": {
+ "addons": "الإضافات",
+ "confirm_password": "تأكيد كلمة مرور النسخ الاحتياطي",
+ "folders": "المجلدات",
+ "full_backup": "نسخة احتياطية كاملة",
+ "partial_backup": "نسخة احتياطية جزئية",
+ "password": "كلمة مرور النسخ الاحتياطي",
+ "password_protection": "حماية كلمة المرور",
+ "select_type": "تحديد ما يجب استعادته",
+ "type": "نوع النسخة الاحتياطية"
+ },
+ "user": {
+ "create_account": "إنشاء حساب",
+ "data": {
+ "name": "الاسم",
+ "password": "كلمة المرور",
+ "password_confirm": "تأكيد كلمة المرور",
+ "username": "المستخدم"
+ },
+ "error": {
+ "password_not_match": "كلمات المرور غير متطابقة",
+ "required_fields": "املأ جميع الحقول المطلوبة"
+ },
+ "intro": "لنبدأ بإنشاء حساب مستخدم.",
+ "required_field": "مطلوب"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "يفتح الميزات المتقدمة.",
+ "link_promo": "معرفة المزيد",
+ "title": "الوضع المتقدم"
+ },
+ "change_password": {
+ "confirm_new_password": "تأكيد كلمة المرور الجديدة",
+ "current_password": "كلمة المرور الحالية",
+ "error_new_is_old": "يجب أن تكون كلمة المرور الجديدة مختلفة عن كلمة المرور الحالية",
+ "error_new_mismatch": "كلمة المرور الجديدة التي تم إدخالها غير متطابقة",
+ "error_required": "مطلوب",
+ "header": "تغيير كلمة المرور",
+ "new_password": "كلمة السر الجديدة",
+ "submit": "إرسال",
+ "success": "تم تغيير كلمة المرور بنجاح"
+ },
+ "current_user": "أنت مسجّل الدخول حاليًا كـ {fullName} .",
+ "customize_sidebar": {
+ "button": "تعديل",
+ "description": "يمكنك أيضًا الضغط مع الاستمرار على رأس الشريط الجانبي لتنشيط وضع التعديل.",
+ "header": "تغيير الترتيب وإخفاء العناصر من الشريط الجانبي"
+ },
+ "dashboard": {
+ "description": "اختر لوحة معلومات افتراضية لهذا الجهاز.",
+ "dropdown_label": "لوحة المعلومات",
+ "header": "لوحة المعلومات"
+ },
+ "enable_shortcuts": {
+ "description": "قم بتمكين أو تعطيل اختصارات لوحة المفاتيح لتنفيذ إجراءات متنوعة في واجهة المستخدم.",
+ "header": "اختصارات لوحة المفاتيح"
+ },
+ "force_narrow": {
+ "description": "سيؤدي ذلك إلى إخفاء الشريط الجانبي افتراضيا، على غرار تجربة الجوال.",
+ "header": "إخفاء الشريط الجانبي دوما"
+ },
+ "is_owner": "أنت المالك",
+ "language": {
+ "dropdown_label": "اللغة",
+ "header": "اللغة",
+ "link_promo": "ساعد في الترجمة"
+ },
+ "logout": "تسجيل الخروج",
+ "logout_text": "هل أنت متأكد أنك تريد تسجيل الخروج؟",
+ "logout_title": "تسجيل الخروج؟",
+ "long_lived_access_tokens": {
+ "confirm_delete": "هل أنت متأكد أنك تريد حذف رمز الوصول لـ {name} ؟",
+ "create": "إنشاء رمز مميز",
+ "create_failed": "فشل إنشاء رمز الوصول المميز.",
+ "created": "أنشئ في {date}",
+ "delete_failed": "فشل حذف رمز الوصول المميز.",
+ "description": "قم بإنشاء رموز وصول طويلة الأمد للسماح لنصوصك بالتفاعل مع مثيل Home Assistant الخاص بك. سيكون كل رمز مميزًا صالحًا لمدة 10 سنوات من تاريخ إنشائه. رموز الوصول طويلة العمر التالية نشطة حاليًا.",
+ "empty_state": "ليس لديك رموز وصول طويلة الأمد حتى الآن.",
+ "header": "رموز الوصول طويلة الأمد",
+ "learn_auth_requests": "تعرف على كيفية عمل طلبات مصادقة.",
+ "name": "الاسم",
+ "prompt_copy_token": "نسخ رمز الوصول الخاص بك. لن يتم عرضه مرة أخرى.",
+ "prompt_name": "إعط الرمز المميز اسماً"
+ },
+ "mfa": {
+ "confirm_disable": "هل تريد حقا الغاء تفعيل {name}؟",
+ "disable": "تعطيل",
+ "enable": "تفعيل",
+ "header": "وحدات التحقق متعددة العوامل"
+ },
+ "mfa_setup": {
+ "close": "إغلاق",
+ "step_done": "تم التنصيب لـ {step}",
+ "submit": "إرسال",
+ "title_aborted": "تم الإلغاء",
+ "title_success": "تم بنجاح"
+ },
+ "number_format": {
+ "description": "اختر كيفية تنسيق الأرقام.",
+ "dropdown_label": "تنسيق الأرقام",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567،89",
+ "language": "تلقائي (استخدام إعدادات اللغة)",
+ "none": "لاشيء",
+ "space_comma": "1 234 567,89",
+ "system": "استخدم لغة النظام"
+ },
+ "header": "تنسيق الأرقام"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "اسم الجهاز",
+ "title": "ماذا يجب أن يسمى هذا الجهاز؟"
+ },
+ "description": "إرسال الإشعارات إلى هذا الجهاز.",
+ "error_load_platform": "كون notify.html5.",
+ "error_use_https": "يتطلب تمكين SSL للواجهة الأمامية.",
+ "header": "التنبيهات",
+ "link_promo": "معرفة المزيد",
+ "push_notifications": "التنبيهات"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "هل تريد بالتأكيد حذف رمز التحديث المميز لـ {name} ؟",
+ "created_at": "أنشئ في {date}",
+ "current_token_tooltip": "غير قادر على حذف الرمز المميز للتحديث الحالي",
+ "delete_failed": "فشل حذف الرمز المميز للتحديث.",
+ "description": "يمثل كل رمز تحديث مميز جلسة تسجيل دخول. ستتم إزالة رموز التحديث تلقائيًا عند النقر فوق تسجيل الخروج. رموز التحديث التالية نشطة حاليًا لحسابك.",
+ "header": "تحديث الرموز المميزة",
+ "last_used": "آخر استخدام بتاريخ {date} من {location}",
+ "not_used": "لم يتم استخدامها ابدأ",
+ "token_title": "تحديث الرمز لـ {clientId}"
+ },
+ "suspend": {
+ "description": "هل نغلق الاتصال بالخادم بعد ان يكون مخفي لمدة 5 دقائق؟",
+ "header": "إغلق الاتصال تلقائيًا"
+ },
+ "themes": {
+ "dropdown_label": "التصميم",
+ "error_no_theme": "لا توجد تصاميم متاحة.",
+ "header": "التصميم",
+ "link_promo": "تعرف على التصاميم"
+ },
+ "time_format": {
+ "description": "اختر كيفية تنسيق الأوقات.",
+ "dropdown_label": "تنسيق الوقت",
+ "formats": {
+ "12": "12 ساعة (صباحا/ مساء)",
+ "24": "24 ساعة",
+ "language": "تلقائي (استخدام إعدادات اللغة)",
+ "system": "استخدم لغة النظام"
+ },
+ "header": "تنسيق الوقت"
+ },
+ "vibrate": {
+ "description": "تمكين أو تعطيل الاهتزاز على هذا الجهاز عند التحكم في الأجهزة.",
+ "header": "اهتزاز"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "ابدأ المحادثة"
+ }
+ },
+ "sidebar": {
+ "done": "أُنجز",
+ "external_app_configuration": "تكوين التطبيق"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/bg.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/bg.json
new file mode 100644
index 00000000..3f613f17
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/bg.json
@@ -0,0 +1,3999 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Конфигурационен запис",
+ "device": "Устройство",
+ "integration": "Интеграция",
+ "user": "Потребител"
+ }
+ },
+ "groups": {
+ "owner": "Собственик",
+ "system-admin": "Администратори",
+ "system-read-only": "Потребители с достъп само за четене",
+ "system-users": "Потребители"
+ },
+ "panel": {
+ "calendar": "Календар",
+ "config": "Конфигурация",
+ "developer_tools": "Инструменти за разработчици",
+ "energy": "Енергия",
+ "history": "История",
+ "logbook": "Дневник",
+ "mailbox": "Пощенска кутия",
+ "map": "Карта",
+ "media_browser": "Медиен браузър",
+ "profile": "Профил",
+ "shopping_list": "Списък за пазаруване",
+ "states": "Общ преглед"
+ },
+ "state": {
+ "default": {
+ "off": "Изключен",
+ "on": "Включен",
+ "unavailable": "Недостъпен",
+ "unknown": "Неизвестно"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Автоматичен",
+ "off": "Изключен",
+ "on": "Включен"
+ },
+ "hvac_action": {
+ "cooling": "Охлаждане",
+ "drying": "Изсушаване",
+ "fan": "Вентилатор",
+ "heating": "Отопление",
+ "idle": "Неработещ",
+ "off": "Изключен"
+ },
+ "preset_mode": {
+ "activity": "Дейност",
+ "away": "Отсъства",
+ "boost": "Ускорен",
+ "comfort": "Комфорт",
+ "eco": "Еко",
+ "home": "Вкъщи",
+ "none": "Без",
+ "sleep": "Сън"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Автоматичен",
+ "away": "Отсъства",
+ "baby": "Бебе",
+ "boost": "Ускорен",
+ "comfort": "Комфорт",
+ "eco": "Еко",
+ "home": "У дома",
+ "normal": "Нормален",
+ "sleep": "Сън"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Охрана",
+ "armed_away": "Охрана",
+ "armed_custom_bypass": "Охрана",
+ "armed_home": "Охрана",
+ "armed_night": "Охрана",
+ "armed_vacation": "Охрана",
+ "arming": "Активиране",
+ "disarmed": "Деактивирана",
+ "disarming": "Деактивирaне",
+ "pending": "Изчаква",
+ "triggered": "Задействана"
+ },
+ "default": {
+ "entity_not_found": "Обектът не е намерен",
+ "error": "Грешка",
+ "unavailable": "Недост",
+ "unknown": "Неизвестно"
+ },
+ "device_tracker": {
+ "home": "Вкъщи",
+ "not_home": "Отсъства"
+ },
+ "person": {
+ "home": "Вкъщи",
+ "not_home": "Отсъства"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "По подразбиране",
+ "header": "Аудио",
+ "input": "Вход",
+ "output": "Изход"
+ },
+ "network": {
+ "container": "Контейнер",
+ "disabled": "Деактивиран",
+ "header": "Мрежа",
+ "host": "Хост"
+ },
+ "no_configuration": "Тази добавка не предлага конфигурация, с която да се занимавате…",
+ "options": {
+ "edit_in_ui": "Редактиране в потребителския интерфейс",
+ "edit_in_yaml": "Редактиране в YAML",
+ "header": "Опции",
+ "invalid_yaml": "Невалиден YAML",
+ "show_unused_optional": "Показване на неизползваните опции за конфигуриране по избор"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Неуспешно получаване на списък с промени на добавката",
+ "go_to_config": "Грешка при стартиране на добавката - неуспешна проверка на конфигурацията!",
+ "install": "Инсталирането на добавката не е успешно",
+ "restart": "Рестартирането на добавката не е успешно",
+ "start": "Стартирането на добавката не е успешно",
+ "start_invalid_config": "Към конфигурацията",
+ "stop": "Спирането на добавката не е успешно",
+ "uninstall": "Деинсталирането на добавката не е успешно",
+ "validate_config": "Грешка при проверка на конфигурацията на добавката"
+ },
+ "capability": {
+ "apparmor": {
+ "title": "AppArmor"
+ },
+ "docker_api": {
+ "title": "Пълен достъп до Docker"
+ },
+ "full_access": {
+ "title": "Пълен достъп до хардуера"
+ },
+ "ingress": {
+ "description": "Тази добавка използва Проникване (Ingress), за да вгради безопасно своя интерфейс в Home Assistant.",
+ "title": "Проникване"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "авт",
+ "docker": "docker",
+ "hardware": "хардуер",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "хост",
+ "host_pid": "хост pid",
+ "ingress": "Проникване",
+ "rating": "рейтинг",
+ "stage": "Етап"
+ },
+ "role": {
+ "admin": "админ",
+ "backup": "архивиране",
+ "default": "по подразбиране",
+ "homeassistant": "homeassistant",
+ "manager": "мениджър"
+ },
+ "stages": {
+ "experimental": "Експериментално"
+ }
+ },
+ "changelog": "Дневник на промените",
+ "cpu_usage": "Използване на CPU от добавката",
+ "hostname": "Име на хоста",
+ "install": "инсталиране",
+ "new_update_available": "{name} {version} е налично",
+ "not_available_arch": "Тази добавка не е съвместима с процесора на вашето устройство или операционната система, която сте инсталирали на вашето устройство.",
+ "not_available_version": "Изпълнявате Home Assistant {core_version_installed}, за да актуализирате до тази версия на добавката ви е необходима поне версия {core_version_needed} на Home Assistant",
+ "open_web_ui": "Отваряне на потребителския WEB интерфейс",
+ "option": {
+ "auto_update": {
+ "description": "Автоматично актуализиране на добавката, когато има налична нова версия",
+ "title": "Автоматично актуализиране"
+ },
+ "boot": {
+ "description": "Направете добавката да стартира по време на зареждане на системата",
+ "title": "Стартиране при зареждане на системата"
+ },
+ "ingress_panel": {
+ "description": "Добавете тази добавка към страничната си лента",
+ "title": "Показване в страничната лента"
+ },
+ "protected": {
+ "description": "Блокира елевиран системен достъп на добавката",
+ "title": "Режим на защита"
+ },
+ "watchdog": {
+ "description": "Това ще стартира добавката, ако се срине",
+ "title": "Watchdog"
+ }
+ },
+ "protection_mode": {
+ "content": "Режимът на защита на тази добавка е деактивиран! Това дава на добавката пълен достъп до цялата система, което добавя рискове за сигурността и може да повреди вашата система при неправилно използване. Деактивирайте режима на защита само ако знаете, имате нужда и се доверявате на източника на тази добавка.",
+ "enable": "Активиране на режим на защита",
+ "title": "Внимание: Режимът на защита е деактивиран!"
+ },
+ "ram_usage": "Използване на RAM от добавката",
+ "restart": "рестарт",
+ "start": "старт",
+ "stop": "стоп",
+ "uninstall": "деинсталиране",
+ "visit_addon_page": "Посетете страницата {name} за повече подробности"
+ },
+ "documentation": {
+ "get_documentation": "Неуспешно получаване на документация за добавката, {error}"
+ },
+ "failed_to_reset": "Нулирането на конфигурацията на добавката не е успешно, {error}",
+ "failed_to_save": "Запазването на конфигурацията на добавката не е успешно, {error}",
+ "logs": {
+ "get_logs": "Неуспешно получаване журнали на добавка, {грешка}"
+ },
+ "panel": {
+ "configuration": "Конфигурация",
+ "documentation": "Документация",
+ "info": "Информация",
+ "log": "Журнал"
+ },
+ "state": {
+ "installed": "Добавката е инсталирана",
+ "not_available": "Добавката не е налична във вашата система",
+ "not_installed": "Добавката не е инсталирана"
+ }
+ },
+ "backup": {
+ "addons": "Добавки",
+ "confirm_password": "Потвърдете паролата за резервното копие",
+ "could_not_create": "Не може да се създаде резервно копие",
+ "create": "Създаване",
+ "create_backup": "Създаване на резервно копие",
+ "create_blocked_not_running": "Създаването на резервно копие в момента не е възможно, тъй като системата е в състояние {state}.",
+ "created": "Създаден",
+ "delete_backup_confirm": "Изтрий",
+ "delete_backup_text": "Искате ли да изтриете {number} {number, plural,\n one {резервно копие}\n other {резервни копия}\n}?",
+ "delete_backup_title": "Изтриване на резервно копие",
+ "delete_selected": "Изтриване на избраните резервни копия",
+ "enter_password": "Моля, въведете парола.",
+ "failed_to_delete": "Изтриването не е успешно",
+ "folders": "Папки",
+ "full_backup": "Пълно резервно копие",
+ "name": "Име",
+ "no_backups": "Още нямате резервни копия.",
+ "partial_backup": "Частично резервно копие",
+ "password": "Парола",
+ "password_protection": "Защита с парола",
+ "passwords_not_matching": "Паролите не съвпадат",
+ "select_type": "Изберете какво да възстановите",
+ "selected": "{number} избрани",
+ "size": "Размер",
+ "type": "Тип",
+ "upload_backup": "Качете резервно копие"
+ },
+ "common": {
+ "cancel": "Отказ",
+ "close": "Затвори",
+ "description": "Описание",
+ "error": {
+ "unknown": "Неизвестна грешка",
+ "update_failed": "Актуализацията не е успешна"
+ },
+ "failed_to_restart_name": "Рестартирането на {name} не е успешно",
+ "failed_to_update_name": "Актуализирането на {name} не е успешно",
+ "learn_more": "Научете повече",
+ "menu": "Меню",
+ "new_version_available": "Налична е нова версия",
+ "newest_version": "Последна версия",
+ "no": "Не",
+ "refresh": "Опресняване",
+ "release_notes": "Бележки към изданието",
+ "reload": "Презареждане",
+ "reset_defaults": "Нулирайте по подразбиране",
+ "reset_options": "Нулиране на опциите",
+ "restart": "Рестартиране",
+ "restart_name": "Рестартиране на {name}",
+ "review": "преглед",
+ "running_version": "В момента използвате версия {version}",
+ "save": "Запис",
+ "show": "показване",
+ "show_more": "Показване на повече информация за това",
+ "update": "Актуализиране",
+ "update_available": "{count}{count, plural,\n one {обновление изчаква}\n other {{count} обновления изчакват}\n}",
+ "version": "Версия",
+ "yes": "Да"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Сигурни ли сте, че искате да нулирате всичките си опции?",
+ "title": "Нулиране на опциите"
+ },
+ "restart": {
+ "text": "Наистина ли искате да рестартирате {name}?",
+ "title": "Рестартиране {name}"
+ },
+ "update": {
+ "text": "Наистина ли искате да актуализирате {name} до версия {version}?",
+ "title": "Актуализиране на {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Налична е нова версия",
+ "addon_running": "Добавката се изпълнява",
+ "addon_stopped": "Добавката е спряна",
+ "addons": "Инсталирани добавки",
+ "no_addons": "Все още нямате инсталирани добавки. Насочете се към хранилището за добавки, за да започнете!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Отказ",
+ "description": "В момента използвате ''{current_path}'' като диск за данни. Преместването на дискове с данни ще рестартира устройството ви и се очаква да отнеме {time} минути. Инсталацията на вашия Home Assistant няма да бъде достъпна през този период. Не изключвайте захранването по време на преместване!",
+ "loading_devices": "Зареждане на устройства",
+ "move": "Преместване",
+ "moving": "Преместване на диск с данни",
+ "moving_desc": "Рестартиране и преместване на диск с данни. Моля, имайте търпение",
+ "no_devices": "Не са намерени подходящи свързани устройства",
+ "select_device": "Изберете нов диск с данни",
+ "title": "Преместване на диск с данни"
+ },
+ "hardware": {
+ "attributes": "Атрибути",
+ "device_path": "Път до устройството",
+ "id": "ID",
+ "search": "Търсене на хардуер",
+ "subsystem": "Подсистема",
+ "title": "Хардуер"
+ },
+ "network": {
+ "connected_to": "Свързан с {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Деактивиран",
+ "dns_servers": "DNS Сървъри",
+ "failed_to_change": "Промяната на мрежовите настройки не е успешна",
+ "gateway": "Адрес на шлюза",
+ "ip_netmask": "IP адрес/Мрежова маска",
+ "open": "Отворена",
+ "scan_ap": "Сканиране за точки за достъп",
+ "static": "Статичен",
+ "title": "Мрежови настройки",
+ "unsaved": "Имате незапазени промени, които ще се загубят, ако промените разделите, искате ли да продължите?",
+ "warning": "Ако промените Wi-Fi, IP адреса или адреса на шлюза, може да загубите връзката!",
+ "wep": "WEP",
+ "wpa": "wpa-psk"
+ },
+ "registries": {
+ "add_new_registry": "Добавяне на нов регистър",
+ "add_registry": "Добавяне на регистър",
+ "failed_to_add": "Добавянето на регистър не е успешно",
+ "failed_to_remove": "Премахването на регистър не е успешно",
+ "no_registries": "Няма конфигурирани регистри",
+ "password": "Парола",
+ "registry": "Регистър",
+ "remove": "Премахване",
+ "title_add": "Добавяне регистър на контейнер",
+ "title_manage": "Управление на регистрите на контейнери",
+ "username": "Потребителско име"
+ },
+ "repositories": {
+ "add": "Добавяне",
+ "remove": "Премахване",
+ "title": "Управление на хранилищата на добавки",
+ "used": "Хранилището се използва за инсталирани добавки и не може да бъде премахнато."
+ },
+ "restart_addon": {
+ "confirm_text": "Рестартиране на добавката",
+ "text": "Искате ли да рестартирате добавката с вашите промени?"
+ },
+ "update": {
+ "backup": "Резервно копие",
+ "create_backup": "Създайте резервно копие на {name} преди актуализиране",
+ "creating_backup": "Създава се резервно копие на {name}",
+ "updating": "Актуализиране на {name} до версия {version}"
+ }
+ },
+ "my": {
+ "error": "Възникна неизвестна грешка",
+ "error_addon_not_found": "Не е намерена добавка",
+ "error_addon_not_installed": "Исканата добавка не е инсталирана. Моля, първо я инсталирайте",
+ "error_addon_not_started": "Заявената добавка не е стартирана. Моля, първо я стартирайте",
+ "faq_link": "My Home Assistant ЧЗВ",
+ "not_supported": "Тази препратка не се поддържа от вашата Home Assistant инсталация. Последвайте {link} за поддържани препратки както и версиите при тяхното пускане."
+ },
+ "panel": {
+ "addons": "Добавки",
+ "backups": "Резервни копия",
+ "dashboard": "Табло",
+ "store": "Хранилище за добавки",
+ "system": "Система"
+ },
+ "store": {
+ "check_updates": "Проверка за актуализации",
+ "missing_addons": "Липсват добавки? Активирайте разширения режим в страницата на потребителския си профил",
+ "no_results_found": "Няма намерени резултати в {repository}.",
+ "registries": "Регистри",
+ "repositories": "Хранилища"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Използване на CPU от Core",
+ "ram_usage": "Използване на RAM от Core"
+ },
+ "host": {
+ "change": "Промяна",
+ "change_hostname": "Промяна в името на хоста",
+ "confirm_reboot": "Сигурни ли сте, че искате да рестартирате хоста?",
+ "confirm_shutdown": "Сигурни ли сте, че искате да изключите хоста?",
+ "deployment": "Зареждане",
+ "docker_version": "Версия на Docker",
+ "emmc_lifetime_used": "Използван живот на eMMC",
+ "failed_to_get_hardware_list": "Неуспешно получаване на списъка с хардуер",
+ "failed_to_import_from_usb": "Неуспешно импортиране от USB",
+ "failed_to_move": "Преместването на диска с данни не бе успешно",
+ "failed_to_reboot": "Неуспешно рестартиране на хоста",
+ "failed_to_set_hostname": "Неуспешно задаване на име на хост",
+ "failed_to_shutdown": "Неуспешно изключване на хоста",
+ "hardware": "Хардуер",
+ "hostname": "Име на хоста",
+ "import_from_usb": "Импортиране от USB",
+ "ip_address": "IP адрес",
+ "move_datadisk": "Преместване на диск с данни",
+ "new_hostname": "Моля, въведете ново име на хоста:",
+ "operating_system": "Операционна система",
+ "reboot_host": "Рестартиране на хоста",
+ "shutdown_host": "Изключване на хоста",
+ "used_space": "Използвано пространство"
+ },
+ "log": {
+ "get_logs": "Неуспешно получаване на {provider} журнали, {error}",
+ "log_provider": "Доставчик на журнал"
+ },
+ "supervisor": {
+ "beta_backup": "Уверете се, че имате резервни копия на вашите данни, преди да активирате тази функция.",
+ "beta_join_confirm": "Искате ли да се присъедините към бета канала?",
+ "beta_release_items": "Това включва бета версии за:",
+ "beta_warning": "Бета версиите са за тестери и ранни потребители и могат да съдържат нестабилни промени в кода",
+ "channel": "Канал",
+ "cpu_usage": "Използване на CPU от Supervisor",
+ "failed_to_reload": "Неуспешно презареждане на Supervisor",
+ "failed_to_set_option": "Неуспешно задаване на Супервайзър-опция",
+ "failed_to_update": "Неуспешно актуализиране на Supervisor",
+ "join_beta_action": "Присъединяване към бета канала",
+ "join_beta_description": "Получавайте бета актуализации за Home Assistant (RCs), Supervisor и хоста",
+ "leave_beta_action": "Напускане на бета канала",
+ "leave_beta_description": "Получавайте стабилни актуализации за Home Assistant, Supervisor и хоста",
+ "ram_usage": "Използване на RAM от Supervisor",
+ "reload_supervisor": "Презареждане на Supervisor",
+ "search": "Търсене",
+ "share_diagnostics": "Споделяне на диагностика",
+ "share_diagnostics_description": "Споделяйте доклади за сривове и диагностична информация.",
+ "share_diagonstics_description": "Искате ли да споделяте автоматично отчети за сривове и диагностична информация, когато Supervisor срещне неочаквани грешки? {line_break} Това ще ни позволи да отстраним проблемите, информацията е достъпна само за екипа на Home Assistant Core и няма да бъде споделяна с други. {line_break} Данните не включват никаква частна/чувствителна информация и можете да деактивирате това в настройките по всяко време, когато пожелаете.",
+ "share_diagonstics_title": "Помогнете за подобряването на Home Assistant",
+ "unhealthy_description": "Управлението на нездрава инсталация ще доведе до проблеми. По-долу са проблемите на вашата инсталация, следвайте връзките за възможни решения.",
+ "unhealthy_reason": {
+ "docker": "Средата на Docker не работи правилно",
+ "privileged": "Supervisor не е привилегирован",
+ "setup": "Настройката на Supervisor не е успешна",
+ "supervisor": "Supervisor не успя да се актуализира",
+ "untrusted": "Открито e ненадежден съдържание"
+ },
+ "unhealthy_title": "Вашата инсталация е нездрава",
+ "unsupported_description": "По-долу са откритите проблеми на вашата инсталация, следвайте връзките за възможни решения.",
+ "unsupported_reason": {
+ "apparmor": "AppArmor не е активиран на хоста",
+ "container": "Контейнери, за които е известно, че причиняват проблеми",
+ "content-trust": "Проверката за надеждно съдържанието е деактивирана.",
+ "dbus": "DBUS",
+ "docker_configuration": "Конфигурация на Docker",
+ "docker_version": "Docker Версия",
+ "job_conditions": "Игнорирани условия при работа",
+ "lxc": "LXC",
+ "network_manager": "Мрежов мениджър",
+ "os": "Операционна система",
+ "privileged": "Supervisor не е привилегирован",
+ "software": "Открит е неподдържан софтуер",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Използвате неподдържана инсталация",
+ "update_supervisor": "Актуализиране на Supervisor",
+ "warning": "ВНИМАНИЕ"
+ }
+ },
+ "update_available": {
+ "create_backup": "Създаване на резервно копие преди актуализиране",
+ "creating_backup": "Създаване на резервно копие на {name}",
+ "description": "Имате инсталирана версия {version}. Кликнете върху актуализиране, за да актуализирате до версия {newest_version}",
+ "no_update": "Няма налична актуализация за {name}",
+ "open_release_notes": "Отваряне на бележките за версията",
+ "update_name": "Актуализиране на {name}",
+ "updating": "Актуализиране на {name} до версия {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Искате ли да останете вписани?",
+ "confirm": "Да",
+ "decline": "Не,"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Под охрана",
+ "arm_custom_bypass": "Потребителски байпас",
+ "arm_home": "Под охрана - вкъщи",
+ "arm_night": "Под охрана - нощ",
+ "arm_vacation": "Под охрана - ваканция",
+ "clear_code": "Изчистване",
+ "code": "Код",
+ "disarm": "Деактивирaне"
+ },
+ "area": {
+ "area_not_found": "Областта не е намерена."
+ },
+ "automation": {
+ "last_triggered": "Последно задействане",
+ "trigger": "Изпълни"
+ },
+ "camera": {
+ "not_available": "Няма налично изображение"
+ },
+ "climate": {
+ "aux_heat": "Помощен нагревател",
+ "away_mode": "Режим на отсъствие",
+ "cooling": "{name} охлаждане",
+ "current_temperature": "{name} текуща температура",
+ "currently": "В момента",
+ "fan_mode": "Режим на вентилатора",
+ "heating": "{name} отопление",
+ "high": "високо",
+ "low": "ниско",
+ "on_off": "Вкл. / Изкл.",
+ "operation": "Режим",
+ "preset_mode": "Предварително зададени настройки",
+ "swing_mode": "Режим на люлеене",
+ "target_humidity": "Желана влажност",
+ "target_temperature": "Желана температура",
+ "target_temperature_entity": "{name} желана температура",
+ "target_temperature_mode": "{name} желана температура {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "спадане",
+ "increment": "нарастване",
+ "reset": "нулиране"
+ }
+ },
+ "cover": {
+ "position": "Позиция",
+ "tilt_position": "Наклон"
+ },
+ "fan": {
+ "direction": "Посока",
+ "forward": "Напред",
+ "oscillate": "Въртене",
+ "preset_mode": "Предварително зададен режим",
+ "reverse": "Назад",
+ "speed": "Скорост"
+ },
+ "humidifier": {
+ "humidity": "Желана влажност",
+ "mode": "Режим",
+ "on_entity": "{name} на",
+ "target_humidity_entity": "{name} желана влажност"
+ },
+ "light": {
+ "brightness": "Яркост",
+ "cold_white_value": "Студено бяла яркост",
+ "color_brightness": "Яркост на цвета",
+ "color_temperature": "Цветова температура",
+ "effect": "Ефект",
+ "warm_white_value": "Топло бяла яркост",
+ "white_value": "Стойност на бялото"
+ },
+ "lock": {
+ "code": "Код",
+ "lock": "Заключване",
+ "unlock": "Отключване"
+ },
+ "media_player": {
+ "browse_media": "Преглед на мултимедия",
+ "media_next_track": "Следващ",
+ "media_pause": "Пауза",
+ "media_play": "Възпроизвеждане",
+ "media_play_pause": "Възпроизвеждане/пауза",
+ "media_previous_track": "Предишен",
+ "media_stop": "Стоп",
+ "media_volume_down": "Намаляване на звука",
+ "media_volume_mute": "Изключване на звука",
+ "media_volume_unmute": "Включване на звука",
+ "media_volume_up": "Увеличаване на звука",
+ "sound_mode": "Режим на звука",
+ "source": "Източник",
+ "text_to_speak": "Текст за произнасяне",
+ "turn_off": "Изключи",
+ "turn_on": "Включи"
+ },
+ "persistent_notification": {
+ "dismiss": "Отхвърли"
+ },
+ "scene": {
+ "activate": "Активирай"
+ },
+ "script": {
+ "cancel": "Отказ",
+ "cancel_multiple": "Отмяна на {number}",
+ "run": "Изпълни"
+ },
+ "service": {
+ "run": "Изпълни"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "прекратяване",
+ "finish": "финал",
+ "pause": "пауза",
+ "start": "старт"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Продължете почистването",
+ "return_to_base": "Върни се в базовата станция",
+ "start_cleaning": "Започнете почистването",
+ "turn_off": "Изключи",
+ "turn_on": "Включи"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Режим на отсъствие",
+ "currently": "В момента",
+ "on_off": "Вкл. / Изкл.",
+ "operation": "Режим",
+ "target_temperature": "Желана температура"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Въздушно налягане",
+ "humidity": "Влажност",
+ "precipitation": "Валежи",
+ "temperature": "Температура",
+ "visibility": "Видимост",
+ "wind_speed": "Скорост на вятъра"
+ },
+ "cardinal_direction": {
+ "e": "И",
+ "ene": "ИСИ",
+ "ese": "ИЮИ",
+ "n": "С",
+ "ne": "СИ",
+ "nne": "ССИ",
+ "nnw": "ССЗ",
+ "nw": "СЗ",
+ "s": "Ю",
+ "se": "ЮИ",
+ "sse": "ЮЮИ",
+ "ssw": "ЮЮЗ",
+ "sw": "ЮЗ",
+ "w": "З",
+ "wnw": "ЗСЗ",
+ "wsw": "ЗЮЗ"
+ },
+ "day": "Ден",
+ "forecast": "Прогноза",
+ "high": "Високо",
+ "low": "Ниско",
+ "night": "Нощ"
+ }
+ },
+ "common": {
+ "and": "и",
+ "back": "Назад",
+ "cancel": "Отмени",
+ "close": "Затвори",
+ "continue": "Продължи",
+ "copied": "Копиран",
+ "copied_clipboard": "Копирано в клипборда",
+ "delete": "Изтриване",
+ "disable": "Деактивиране",
+ "enable": "Активиране",
+ "error_required": "Задължително",
+ "help": "Помощ",
+ "leave": "Излизане",
+ "loading": "Зареждане",
+ "menu": "Меню",
+ "move": "Преместване",
+ "next": "Следващ",
+ "no": "Не",
+ "not_now": "Не сега",
+ "overflow_menu": "Преливащо меню",
+ "previous": "Предишен",
+ "refresh": "Обнови",
+ "remove": "Премахване",
+ "rename": "Преименуване",
+ "save": "Запазване",
+ "skip": "Пропускане",
+ "stay": "Оставане",
+ "submit": "Изпращане",
+ "successfully_deleted": "Успешно изтриване",
+ "successfully_saved": "Успешно запазено",
+ "undo": "Отмяна",
+ "yes": "Да"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Добавка",
+ "error": {
+ "no_supervisor": {
+ "description": "Не е намерен Supervisor, така че добавките не могат да бъдат заредени.",
+ "title": "Няма Supervisor"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Добавяне",
+ "failed_create_area": "Неуспешно създаване на област.",
+ "name": "Име",
+ "text": "Въведете името на новата област.",
+ "title": "Добавете нова област"
+ },
+ "add_new": "Добавяне на нова област …",
+ "area": "Област",
+ "clear": "Изчистване",
+ "no_areas": "Нямате никакви области",
+ "no_match": "Не са намерени съответстващи области",
+ "show_areas": "Показване на области"
+ },
+ "attributes": {
+ "expansion_header": "Атрибути"
+ },
+ "blueprint-picker": {
+ "add_user": "Добавяне на потребител",
+ "remove_user": "Премахване на потребител",
+ "select_blueprint": "Изберете План"
+ },
+ "calendar": {
+ "my_calendars": "Моите календари",
+ "today": "Днес"
+ },
+ "data-table": {
+ "clear": "Изчистване",
+ "filtering_by": "Филтриране по",
+ "hidden": "{number} скрити",
+ "no-data": "Няма данни",
+ "search": "Търсене"
+ },
+ "date-range-picker": {
+ "end_date": "Крайна дата",
+ "ranges": {
+ "last_week": "Миналата седмица",
+ "this_week": "Тази седмица",
+ "today": "Днес",
+ "yesterday": "Вчера"
+ },
+ "select": "Изберете",
+ "start_date": "Начална дата"
+ },
+ "device-picker": {
+ "clear": "Изчистване",
+ "device": "Устройство",
+ "no_area": "Без област",
+ "no_devices": "Нямате никакви устройства",
+ "no_match": "Не са намерени съвпадащи устройства",
+ "show_devices": "Показване на устройства",
+ "toggle": "Превключване"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Атрибут",
+ "show_attributes": "Показване на атрибутите"
+ },
+ "entity-picker": {
+ "clear": "Изчистване",
+ "entity": "Обект",
+ "no_match": "Не са намерени съвпадащи обекти",
+ "show_entities": "Показване на обекти"
+ }
+ },
+ "history_charts": {
+ "loading_history": "Зареждане на история за състоянието…",
+ "no_history_found": "Не е намерена история за състоянието"
+ },
+ "logbook": {
+ "by": "от",
+ "by_service": "от услугата",
+ "entries_not_found": "Липсват логове в дневника",
+ "messages": {
+ "became_unavailable": "стана недостъпен",
+ "changed_to_state": "стана {state}",
+ "cleared_device_class": "изчистено ( {device_class} не е отчетено)",
+ "detected_device_class": "{device_class} отчетено",
+ "is_closing": "се затваря",
+ "is_opening": "се отваря",
+ "rose": "изгря",
+ "set": "залезе",
+ "turned_off": "изключен",
+ "turned_on": "включен",
+ "was_at_home": "беше у дома",
+ "was_at_state": "беше в {state}",
+ "was_away": "беше далеч",
+ "was_closed": "беше затворено",
+ "was_connected": "беше свързан",
+ "was_disconnected": "беше прекъснат",
+ "was_locked": "беше заключен",
+ "was_low": "беше ниско",
+ "was_normal": "беше нормален",
+ "was_opened": "беше отворен",
+ "was_plugged_in": "беше включен в",
+ "was_safe": "беше безопасно",
+ "was_unlocked": "беше отключен",
+ "was_unplugged": "беше изключен",
+ "was_unsafe": "бе небезопасно"
+ },
+ "retrieval_error": "Грешка по време на извличане на запис от дневника",
+ "show_trace": "Показване на следа"
+ },
+ "media-browser": {
+ "audio_not_supported": "Браузърът не поддържа този аудио елемент.",
+ "choose_player": "Изберете плейър",
+ "class": {
+ "album": "Албум",
+ "app": "Приложение",
+ "artist": "Изпълнител",
+ "channel": "Канал",
+ "composer": "Композитор",
+ "contributing_artist": "Допринасящ изпълнител",
+ "directory": "Библиотека",
+ "episode": "Епизод",
+ "game": "Игра",
+ "genre": "Жанр",
+ "image": "Изображение",
+ "movie": "Филм",
+ "music": "Музика",
+ "playlist": "Плейлист",
+ "podcast": "Подкаст",
+ "season": "Сезон",
+ "tv_show": "ТВ предаване",
+ "url": "URL",
+ "video": "Видео"
+ },
+ "documentation": "документация",
+ "learn_adding_local_media": "Научете повече за добавянето на мултимедия в {documentation} .",
+ "local_media_files": "Поставете вашите видео, аудио и графични файлове в медийната директория, за да можете да ги разглеждате и възпроизвеждате в браузъра или на поддържаните медийни плейъри.",
+ "media-player-browser": "Браузър на медийния плейър",
+ "media_browsing_error": "Грешка в медийния браузър",
+ "media_not_supported": "Плейърът на медийния браузър не поддържа този тип медия",
+ "media_player": "Медиен плейър",
+ "no_items": "Няма елементи",
+ "no_local_media_found": "Не са намерени местни медии",
+ "no_media_folder": "Изглежда, че все още не сте създали медийна директория.",
+ "play": "Възпроизвеждане",
+ "play-media": "Възпроизвеждане на медия",
+ "video_not_supported": "Браузърът не поддържа този видео елемент.",
+ "web-browser": "Уеб браузър"
+ },
+ "picture-upload": {
+ "label": "Снимка",
+ "unsupported_format": "Неподдържан формат, моля, изберете JPEG, PNG или GIF изображение."
+ },
+ "qr-scanner": {
+ "not_supported": "Вашият браузър не поддържа QR сканиране.",
+ "select_camera": "Изберете камера"
+ },
+ "related-filter-menu": {
+ "filter": "Филтър",
+ "filter_by_area": "Филтриране по област",
+ "filter_by_device": "Филтриране по устройство",
+ "filter_by_entity": "Филтриране по обект",
+ "filtered_by_area": "област: {area_name}",
+ "filtered_by_device": "устройство: {device_name}",
+ "filtered_by_entity": "обект: {entity_name}"
+ },
+ "related-items": {
+ "area": "Област",
+ "automation": "Част от следните автоматизации",
+ "device": "Устройство",
+ "entity": "Свързани обекти",
+ "group": "Част от следните групи",
+ "integration": "Интеграция",
+ "no_related_found": "Не са намерени свързани елементи.",
+ "scene": "Част от следните сцени",
+ "script": "Част от следните скриптове"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count}{count, plural,\n one {ден}\n other {дни}\n}",
+ "hour": "{count} {count, plural,\n one {час}\n other {часа}\n}",
+ "minute": "{count} {count, plural,\n one {минута}\n other {минути}\n}",
+ "second": "{count}{count, plural,\n one {секунда}\n other {секунди}\n}",
+ "week": "{count}{count, plural,\n one {седмица}\n other {седмици}\n}"
+ },
+ "future_duration": {
+ "day": "След {count} {count, plural,\n one {ден}\n other {дни}\n}",
+ "hour": "След {count} {count, plural,\n one {час}\n other {часа}\n}",
+ "minute": "След {count} {count, plural,\n one {минута}\n other {минути}\n}",
+ "second": "След {count} {count, plural,\n one {секунда}\n other {секунди}\n}",
+ "week": "След {count} {count, plural,\n one {седмица}\n other {седмици}\n}"
+ },
+ "just_now": "В момента",
+ "never": "Никога",
+ "past_duration": {
+ "day": "преди {count} {count, plural,\n one {ден}\n other {дни}\n}",
+ "hour": "преди {count} {count, plural,\n one {час}\n other {часа}\n}",
+ "minute": "преди {count} {count, plural,\n one {минута}\n other {минути}\n}",
+ "second": "преди {count} {count, plural,\n one {секунда}\n other {секунди}\n}",
+ "week": "преди {count} {count, plural,\n one {седмица}\n other {седмици}\n}"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Документация на интеграцията",
+ "required": "Това поле е задължително",
+ "target": "Цели"
+ },
+ "service-picker": {
+ "service": "Услуга"
+ },
+ "statistic-picker": {
+ "learn_more": "Научете повече за статистиката",
+ "statistic": "Статистика"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Статистиката се зарежда …",
+ "no_statistics_found": "Не са намерени статистически данни.",
+ "statistic_types": {
+ "max": "макс",
+ "min": "мин"
+ }
+ },
+ "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": "Премахване на обекта"
+ },
+ "user-picker": {
+ "add_user": "Добавяне на потребител",
+ "no_user": "Няма потребител",
+ "remove_user": "Премахване на потребител"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Ако е изключено, новооткритите обекти за {integration} няма да бъдат автоматично добавяни в Home Assistant",
+ "enable_new_entities_label": "Активирай новодобавените обекти.",
+ "enable_polling_description": "Дали Home Assistant трябва да обновява автоматично обектите от {integration}.",
+ "enable_polling_label": "Включи автоматично опресняване",
+ "restart_home_assistant": "Трябва да рестартирате Home Assistant, за да влязат в сила промените.",
+ "title": "Системни опции за {integration}",
+ "update": "Актуализация"
+ },
+ "domain_toggler": {
+ "reset_entities": "Нулиране на обекти",
+ "title": "Превключване на домейни"
+ },
+ "entity_registry": {
+ "control": "Контрол",
+ "dismiss": "Отхвърли",
+ "editor": {
+ "advanced": "Разширени настройки",
+ "change_device_area": "Промяна областта на устройството",
+ "confirm_delete": "Наистина ли искате да изтриете този запис?",
+ "delete": "Изтриване",
+ "device_class": "Показване като",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Врата",
+ "garage_door": "Гаражна врата",
+ "opening": "Друго",
+ "window": "Прозорец"
+ },
+ "cover": {
+ "door": "Врата",
+ "garage": "Гаражна врата",
+ "window": "Прозорец"
+ }
+ },
+ "device_disabled": "Устройството на този обект е деактивирано.",
+ "enabled_cause": "Деактивирано от {cause}.",
+ "enabled_delay_confirm": "Активираните обекти ще бъдат добавени към Home Assistant след {delay} секунди",
+ "enabled_description": "Изключените обекти няма да бъдат добавени в Home Assistant.",
+ "enabled_label": "Активирай обекта",
+ "enabled_restart_confirm": "Рестартирайте Home Assistant, за да завършите активирането на обектите",
+ "entity_id": "ID на обекта",
+ "icon": "Икона",
+ "icon_error": "Иконите трябва да са във формат „prefix: iconname“, напр. mdi:home",
+ "name": "Име",
+ "note": "Забележка: Това може да не работи още при всички интеграции.",
+ "open_device_settings": "Отваряне на настройките на устройството",
+ "unavailable": "Този обект не е достъпeн в момента.",
+ "update": "Актуализация"
+ },
+ "faq": "документация",
+ "info_customize": "Можете да презапишете някои атрибути в секцията {customize_link}.",
+ "no_unique_id": "Този обект (\"{entity_id}\") няма уникален идентификатор, затова неговите настройки не могат да бъдат управлявани от потребителския интерфейс. За повече информация вижте {faq_link}",
+ "related": "Свързани",
+ "settings": "Настройки"
+ },
+ "generic": {
+ "cancel": "Отмени",
+ "close": "затвори",
+ "default_confirmation_title": "Сигурни ли сте?",
+ "ok": "ДА"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Начална стойност",
+ "maximum": "Максимална стойност",
+ "minimum": "Минимална стойност",
+ "restore": "Възстановете последната известна стойност, когато стартира Home Assistant",
+ "step": "Размер на стъпката"
+ },
+ "generic": {
+ "icon": "Икона",
+ "name": "Име"
+ },
+ "input_datetime": {
+ "date": "Дата",
+ "datetime": "Дата и час",
+ "mode": "Какво искате да се въвежда",
+ "time": "Час"
+ },
+ "input_number": {
+ "max": "Максимална стойност",
+ "min": "Минимална стойност",
+ "step": "Размер на стъпката",
+ "unit_of_measurement": "Единици за измерване"
+ },
+ "input_select": {
+ "add": "Добавяне",
+ "add_option": "Добавяне на опция",
+ "no_options": "Все още няма опции.",
+ "options": "Опции"
+ },
+ "input_text": {
+ "max": "Максимална дължина",
+ "min": "Минимална дължина",
+ "password": "Парола",
+ "pattern": "Regex модел за валидиране от страна на клиента",
+ "text": "Текст"
+ },
+ "platform_not_loaded": "{platform} интеграцията не е заредена. Моля, добавете я във вашата конфигурация като добавите 'default_config:' или ''{platform}:''.",
+ "required_error_msg": "Полето е задължително",
+ "timer": {
+ "duration": "Продължителност"
+ },
+ "yaml_not_editable": "Настройките на този обект не могат да бъдат редактирани. Могат да се конфигурират само обектите, създадени от потребителския интерфейс."
+ },
+ "more_info_control": {
+ "details": "Детайли",
+ "edit": "Редактиране на обект",
+ "history": "История",
+ "last_changed": "Последна промяна",
+ "last_updated": "Последна актуализация",
+ "logbook": "Дневник",
+ "person": {
+ "create_zone": "Създайте зона от текущото местоположение"
+ },
+ "remote": {
+ "activity": "Текуща дейност"
+ },
+ "restored": {
+ "confirm_remove_text": "Наистина ли искате да изтриете този запис?",
+ "confirm_remove_title": "Премахване на обект?",
+ "not_provided": "Понастоящем този обект не е наличен и е сирак на премахната, променена или нефункционална интеграция или устройство.",
+ "remove_action": "Премахване на обект",
+ "remove_intro": "Ако обектът вече не се използва, можете да го почистите, като го премахнете."
+ },
+ "script": {
+ "last_action": "Последно задействане",
+ "last_triggered": "Последно задействане"
+ },
+ "settings": "Настройки на обекта",
+ "show_more": "Покажи повече",
+ "sun": {
+ "elevation": "Височина",
+ "rising": "Изгрев",
+ "setting": "Залез"
+ },
+ "updater": {
+ "title": "Инструкции за актуализиране"
+ },
+ "vacuum": {
+ "clean_spot": "Чисто място",
+ "commands": "Команди на прахосмукачка:",
+ "fan_speed": "Скорост на вентилатора",
+ "locate": "Намерете",
+ "pause": "Пауза",
+ "return_home": "Връщане у дома",
+ "start": "Старт",
+ "start_pause": "Старт/Пауза",
+ "status": "Състояние",
+ "stop": "Стоп"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Опит за анализиране на MQTT съобщения като JSON",
+ "entities": "Обекти",
+ "no_entities": "Няма обекти",
+ "no_triggers": "Няма тригери",
+ "recent_messages": "{n} последно получено(и) съобщение(я)",
+ "show_as_yaml": "Покажи като YAML",
+ "title": "{device} информация за отстраняване на грешки",
+ "triggers": "Тригери"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Опции"
+ },
+ "loading": {
+ "loading_flow": "Моля, изчакайте, докато опциите за {integration} се инициализират",
+ "loading_step": "Зарежда се следващата стъпка за {integration}"
+ },
+ "success": {
+ "description": "Опциите бяха запазени успешно."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Области",
+ "automation": "Автоматизации",
+ "blueprint": "Планове",
+ "core": "Общи",
+ "customize": "Персонализации",
+ "devices": "Устройства",
+ "energy": "Енергия",
+ "entities": "Обекти",
+ "helpers": "Помощници",
+ "info": "Информация",
+ "integrations": "Интеграции",
+ "logs": "Журнали",
+ "lovelace": "Табла на Lovelace",
+ "person": "Хора",
+ "scene": "Сцени",
+ "script": "Скриптове",
+ "server_control": "Управление на сървъра",
+ "tag": "Маркери",
+ "users": "Потребители",
+ "zone": "Зони"
+ },
+ "reload": {
+ "automation": "Презареждане на автоматизациите",
+ "command_line": "Презаредете обекти на командния ред",
+ "core": "Презаредете местоположение и персонализации",
+ "filter": "Филтриране на обектите",
+ "group": "Презаредете групи, групови обекти и услуги за уведомяване",
+ "history_stats": "Презаредете обекти с исторически данни",
+ "homekit": "Презареди HomeKit",
+ "mqtt": "Презареждане на ръчно конфигурираните MQTT обекти",
+ "person": "Презареждане на хората",
+ "reload": "Презареждане на {domain}",
+ "rest": "Презареждане на REST обекти и услуги за нотификация",
+ "rpi_gpio": "Raspberry Pi GPIO обекти",
+ "scene": "Презареждане на сцените",
+ "script": "Презареждане на скриптовете",
+ "smtp": "SMTP услуги за уведомяване",
+ "telegram": "Презареждане на Telegram услугите за нотификация",
+ "themes": "Теми",
+ "zone": "Презареждане на зоните"
+ },
+ "server_control": {
+ "perform_action": "{action} Сървъра",
+ "restart": "Рестартиране",
+ "stop": "Спиране"
+ },
+ "types": {
+ "navigation": "Навигирайте",
+ "reload": "Презареждане",
+ "server_control": "Сървър"
+ }
+ },
+ "filter_placeholder": "Филтър на обектите",
+ "key_c_hint": "Натиснете 'c' на която и да е страница, за да отворите тази лента за търсене",
+ "title": "Бързо търсене"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant не чу нищо",
+ "error": "Ами сега, възникна грешка",
+ "how_can_i_help": "Как мога да помогна?",
+ "label": "Въведете въпрос и натиснете „Enter“",
+ "label_voice": "Въведете и натиснете „Enter“ или докоснете микрофона, за да говорите"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Добавете устройства чрез това устройство",
+ "clusters": "Управление на клъстери",
+ "device_children": "Преглед на дъщерните устройства",
+ "reconfigure": "Преконфигуриране на устройството",
+ "remove": "Премахване на устройството",
+ "view_in_visualization": "Преглед във визуализация",
+ "zigbee_information": "Подпис на Zigbee устройството"
+ },
+ "confirmations": {
+ "remove": "Сигурни ли сте, че искате да премахнете устройството?"
+ },
+ "device_children": "Zigbee дъщерно устройство",
+ "device_signature": "Подпис на Zigbee устройството",
+ "last_seen": "Последно видян",
+ "manuf": "от {manufacturer}",
+ "no_area": "Без област",
+ "power_source": "Източник на захранване",
+ "quirk": "Хрумване",
+ "services": {
+ "reconfigure": "Преконфигурирайте ZHA устройство (оздравяване на устройство). Използвайте това, ако имате проблеми с устройството. Ако въпросното устройство е захранвано с батерии, моля, уверете се, че е будно и приема команди, когато използвате тази услуга.",
+ "remove": "Премахване на устройство от Zigbee мрежата.",
+ "updateDeviceName": "Задайте персонализирано име за това устройство в регистъра на устройствата."
+ },
+ "unknown": "Неизвестно",
+ "zha_device_card": {
+ "device_name_placeholder": "Променете името на устройството"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Атрибут",
+ "battery_device_warning": "Ще трябва да събудите устройствата, захранвани с батерии, преди да започнете процеса на преконфигуриране. Вижте ръководствата на вашите устройства за инструкции как да ги събудите.",
+ "bind_header": "Обвързване",
+ "button_hide": "Скрийте детайлите",
+ "button_show": "Покажи детайли",
+ "cluster_header": "Клъстер",
+ "configuration_complete": "Преконфигурирането на устройството завърши.",
+ "configuration_failed": "Преконфигурирането на устройството не бе успешно. Допълнителна информация може да бъде налична в дневниците.",
+ "configuring_alt": "Конфигуриране",
+ "heading": "Преконфигуриране на устройство",
+ "in_progress": "Устройството се преконфигурира. Това може да отнеме известно време.",
+ "introduction": "Преконфигуриране на устройство във вашата Zigbee мрежа. Използвайте тази функция, ако устройството ви не функционира правилно.",
+ "min_max_change": "мин/макс/промяна",
+ "reporting_header": "Отчитане",
+ "run_in_background": "Можете да затворите този диалогов прозорец и преконфигурирането ще продължи във фонов режим.",
+ "start_reconfiguration": "Стартиране на преконфигуриране"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\n one {ден}\n other {дни}\n}",
+ "hour": "{count} {count, plural,\n one {час}\n other {часа}\n}",
+ "minute": "{count} {count, plural,\n one {минута}\n other {минути}\n}",
+ "second": "{count} {count, plural,\n one {секунда}\n other {секунди}\n}",
+ "week": "{count} {count, plural,\n one {седмица}\n other {седмици}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Все още можете да редактирате вашата конфигурация в YAML.",
+ "editor_not_supported": "Визуалния редактор не се поддържа за тази конфигурация",
+ "error_detected": "Открити са грешки в конфигурацията",
+ "key_missing": "Липсва задължителният ключ \"{key}\".",
+ "no_template_editor_support": "Шаблоните не се поддържат във визуалния редактор",
+ "no_type_provided": "Не е указан тип."
+ },
+ "supervisor": {
+ "ask": "Помолете за помощ",
+ "observer": "Проверете Надзорника",
+ "reboot": "Опитайте да рестартирате хоста",
+ "system_health": "Проверете здравето на системата",
+ "title": "Не може да се зареди Supervisor панела!",
+ "wait": "Ако току-що сте стартирали, дайте достатъчно време за старт на Супервайзъра."
+ }
+ },
+ "login-form": {
+ "log_in": "Вход",
+ "password": "Парола",
+ "remember": "Запомни"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Щракнете върху бутона, за да конфигурирате {entity}",
+ "close": "Затвори",
+ "dismiss_all": "Отхвърли всички",
+ "empty": "Няма известия",
+ "title": "Известия"
+ },
+ "notification_toast": {
+ "connection_lost": "Връзката е прекъсната. Повторно свързване…",
+ "dismiss": "Отхвърли",
+ "integration_starting": "Стартиране на {integration}, не всичко ще бъде налично, докато процесът не приключи.",
+ "service_call_failed": "Неуспешно повикване на услуга {service}.",
+ "started": "Home Assistant стартира успешно!",
+ "starting": "Home Assistant стартира, не всичко ще е на разположение, докато не приключи.",
+ "triggered": "Задействане {name}",
+ "wrapping_up_startup": "Финализиране на стартирането, не всичко ще бъде налично, докато процесът не приключи."
+ },
+ "panel": {
+ "config": {
+ "areas": {
+ "add_picture": "Добавете изображение",
+ "caption": "Области",
+ "data_table": {
+ "area": "Област",
+ "devices": "Устройства",
+ "entities": "Обекти"
+ },
+ "delete": {
+ "confirmation_text": "Всички устройства в тази област ще станат неназначени.",
+ "confirmation_title": "Сигурни ли сте, че искате да изтриете тази област?"
+ },
+ "description": "Групирайте устройствата и обектите в области",
+ "edit_settings": "Настройки на областта",
+ "editor": {
+ "area_id": "ID на област",
+ "create": "Създаване",
+ "default_name": "Нова област",
+ "delete": "Изтриване",
+ "linked_entities_caption": "Обекти",
+ "name": "Име",
+ "name_required": "Името е задължително",
+ "no_linked_entities": "Няма обекти, свързани с тази област.",
+ "unknown_error": "Неизвестна грешка",
+ "update": "Актуализация"
+ },
+ "picker": {
+ "create_area": "Създайте област",
+ "header": "Области",
+ "integrations_page": "Интеграции",
+ "introduction": "Областите се използват за организиране на местоположението на устройствата. Тази информация ще се използва в Home Assistant, за да ви помогне при организирането на Вашия интерфейс, права за достъп и интеграции с други системи.",
+ "introduction2": "За да поставите устройства в дадена област, използвайте връзката по-долу, за да отидете на страницата за интеграции, след което кликнете върху конфигурирана интеграция, за да видите картите на устройството.",
+ "no_areas": "Изглежда, че все още нямате области!"
+ }
+ },
+ "automation": {
+ "caption": "Автоматизации",
+ "description": "Създайте персонализирани правила за поведение за вашия дом",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Използвайте план"
+ },
+ "header": "Създаване на нова автоматизация",
+ "how": "Как искате да създадете новата си автоматизация?",
+ "start_empty": "Започнете с празна автоматизация",
+ "start_empty_description": "Създаване на нова автоматизация от нулата",
+ "thingtalk": {
+ "create": "Създаване",
+ "header": "Опишете автоматизацията, която искате да създадете",
+ "input_label": "Какво трябва да прави тази автоматизация?",
+ "intro": "И ние ще се опитаме да я създадем за вас. Например: Изключете осветлението, когато си тръгна."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Добавяне на действие",
+ "delete": "Изтриване",
+ "delete_confirm": "Сигурни ли сте, че искате да изтриете?",
+ "duplicate": "Дублиране",
+ "header": "Действия",
+ "introduction": "Действията са това, което Home Assistant ще направи, когато се активира автоматизацията.",
+ "learn_more": "Научете повече за действията",
+ "name": "Действие",
+ "type": {
+ "choose": {
+ "add_option": "Добавяне на опция",
+ "conditions": "Условия",
+ "default": "Действия по подразбиране",
+ "label": "Изберете",
+ "option": "Опция {number}",
+ "remove_option": "Премахване на опцията",
+ "sequence": "Действия"
+ },
+ "condition": {
+ "label": "Условие"
+ },
+ "delay": {
+ "delay": "Забавяне",
+ "label": "Забавяне"
+ },
+ "device_id": {
+ "action": "Действие",
+ "extra_fields": {
+ "brightness_pct": "Яркост",
+ "code": "Код",
+ "flash": "Флаш",
+ "humidity": "Влажност",
+ "message": "Съобщение",
+ "mode": "Режим",
+ "position": "Позиция",
+ "title": "Заглавие",
+ "value": "Стойност"
+ },
+ "label": "Устройство"
+ },
+ "event": {
+ "event": "Събитие:",
+ "label": "Стартирай събитие",
+ "service_data": "Данни за услугата"
+ },
+ "repeat": {
+ "label": "Повторение",
+ "sequence": "Действия",
+ "type": {
+ "count": {
+ "label": "Брой"
+ },
+ "until": {
+ "conditions": "До условия",
+ "label": "до"
+ },
+ "while": {
+ "conditions": "Докато условия",
+ "label": "Докато"
+ }
+ },
+ "type_select": "Тип повторение"
+ },
+ "scene": {
+ "label": "Активиране на сцена"
+ },
+ "service": {
+ "label": "Извикване на услуга"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Продължи след изчакване",
+ "label": "Изчакайте спусък/тригър",
+ "timeout": "Време на изчакване (по избор)"
+ },
+ "wait_template": {
+ "continue_timeout": "Продължи след изчакване",
+ "label": "Изчакване",
+ "timeout": "Изчакване (по избор)",
+ "wait_template": "Шаблон за изчакване"
+ }
+ },
+ "type_select": "Тип действие",
+ "unsupported_action": "Няма поддръжка на потребителски интерфейс за действие: {action}"
+ },
+ "alias": "Име",
+ "blueprint": {
+ "blueprint_to_use": "Да се използва план",
+ "header": "План",
+ "no_blueprints": "Нямате никакви планове"
+ },
+ "conditions": {
+ "add": "Добавяне на условие",
+ "delete": "Изтриване",
+ "delete_confirm": "Сигурни ли сте, че искате да изтриете?",
+ "duplicate": "Дублиране",
+ "header": "Условия",
+ "introduction": "Условията са незадължителна част от правилото за автоматизация и могат да се използват, за да се предотврати настъпването на действие, когато се задейства тригера. Условията изглеждат много близки до тригерите, но са много различни. Тригерът ще разглежда събитията, случващи се в системата, докато условието разглежда само как системата изглежда в момента. Тригера може да наблюдава включването на ключ. Условието може само да види дали ключ е включен или изключен в момента.",
+ "learn_more": "Научете повече за условията",
+ "name": "Условие",
+ "type": {
+ "and": {
+ "label": "И"
+ },
+ "device": {
+ "condition": "Условие",
+ "extra_fields": {
+ "above": "Над",
+ "below": "Под",
+ "for": "Продължителност",
+ "hvac_mode": "HVAC режим",
+ "preset_mode": "Зададен режим"
+ },
+ "label": "Устройство"
+ },
+ "not": {
+ "label": "Не"
+ },
+ "numeric_state": {
+ "above": "Над",
+ "below": "Под",
+ "label": "Числово състояние",
+ "value_template": "Шаблон за стойност (незадължително)"
+ },
+ "or": {
+ "label": "Или"
+ },
+ "state": {
+ "label": "Състояние",
+ "state": "Състояние"
+ },
+ "sun": {
+ "after": "След:",
+ "after_offset": "Изместване след (по избор)",
+ "before": "Преди:",
+ "before_offset": "Изместване преди (по избор)",
+ "label": "Слънце",
+ "sunrise": "Изгрев",
+ "sunset": "Залез"
+ },
+ "template": {
+ "label": "Шаблон",
+ "value_template": "Шаблон за стойност"
+ },
+ "time": {
+ "after": "След",
+ "before": "Преди",
+ "label": "Време",
+ "type_input": "Стойност на помощника за дата/час",
+ "type_value": "Фиксирано време",
+ "weekdays": {
+ "fri": "Петък",
+ "mon": "Понеделник",
+ "sat": "Събота",
+ "sun": "Неделя",
+ "thu": "Четвъртък",
+ "tue": "Вторник",
+ "wed": "Сряда"
+ }
+ },
+ "trigger": {
+ "id": "Идентификатор на тригера",
+ "label": "Тригер",
+ "no_triggers": "Няма налични тригери"
+ },
+ "zone": {
+ "entity": "Обект с местоположение",
+ "label": "Зона",
+ "zone": "Зона"
+ }
+ },
+ "type_select": "Тип на условие",
+ "unsupported_condition": "Няма поддръжка на потребителски интерфейс за условие: {condition}"
+ },
+ "copy_to_clipboard": "Копиране в клипборда",
+ "default_name": "Нова автоматизация",
+ "description": {
+ "label": "Описание",
+ "placeholder": "Описание по избор"
+ },
+ "edit_ui": "Редактирайте с потребителския интерфейс",
+ "edit_yaml": "Редактирайте като YAML",
+ "enable_disable": "Активиране / деактивиране на автоматизацията",
+ "introduction": "Използвайте автоматизации, вдъхнете живот на дома си.",
+ "load_error_not_editable": "Само автоматизации от automations.yaml могат да се редактират.",
+ "load_error_unknown": "Грешка при зареждане на автоматизация ({еrr_no}).",
+ "modes": {
+ "description": "Режимът контролира какво се случва, когато автоматизацията се задейства, докато действията все още се изпълняват от предишен тригер. Проверете {documentation_link} за повече информация.",
+ "documentation": "документация за автоматизация",
+ "label": "Режим",
+ "parallel": "Паралелно",
+ "queued": "На опашка",
+ "restart": "Рестарт",
+ "single": "Еднократно (по подразбиране)"
+ },
+ "move_down": "Премести надолу",
+ "move_up": "Премести нагоре",
+ "save": "Запазване",
+ "show_trace": "Показване на следа",
+ "triggers": {
+ "add": "Добавяне на тригер",
+ "delete": "Изтриване",
+ "delete_confirm": "Сигурни ли сте, че искате да изтриете?",
+ "duplicate": "Дублиране",
+ "header": "Тригери",
+ "id": "Идентификатор на тригера (използва се от условието за тригер)",
+ "introduction": "Тригерите са това, което стартира обработката на правило за автоматизация. Възможно е да се зададат множество тригери за едно и също правило. След като тригера стартира, Home Assistant ще провери условията, ако има такива, и ще стартира действието.",
+ "learn_more": "Научете повече за тригерите",
+ "name": "Тригер",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Над",
+ "below": "Под",
+ "for": "Продължителност",
+ "zone": "Зона"
+ },
+ "label": "Устройство",
+ "trigger": "Тригер"
+ },
+ "event": {
+ "context_user_pick": "Изберете потребител",
+ "event_data": "Данни на събитието",
+ "event_type": "Тип на събитието",
+ "label": "Събитие"
+ },
+ "geo_location": {
+ "enter": "Влизане",
+ "event": "Събитие:",
+ "label": "Геолокация",
+ "leave": "Излизане",
+ "source": "Източник",
+ "zone": "Зона"
+ },
+ "homeassistant": {
+ "event": "Събитие:",
+ "label": "Home Assistant",
+ "shutdown": "Изключване",
+ "start": "Стартиране"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Съобщение (по избор)",
+ "topic": "Тема"
+ },
+ "numeric_state": {
+ "above": "Над",
+ "below": "Под",
+ "label": "Числово състояние",
+ "value_template": "Шаблон за стойност (незадължително)"
+ },
+ "state": {
+ "attribute": "Атрибут (по избор)",
+ "for": "За период от",
+ "from": "От",
+ "label": "Състояние",
+ "to": "Във"
+ },
+ "sun": {
+ "event": "Събитие:",
+ "label": "Слънце",
+ "offset": "Изместване (по избор)",
+ "sunrise": "Изгрев",
+ "sunset": "Залез"
+ },
+ "tag": {
+ "label": "Маркер"
+ },
+ "template": {
+ "label": "Шаблон",
+ "value_template": "Шаблон за стойност"
+ },
+ "time": {
+ "at": "Във",
+ "label": "Време",
+ "type_input": "Стойност на помощника за дата/час",
+ "type_value": "Фиксирано време"
+ },
+ "time_pattern": {
+ "hours": "Часове",
+ "label": "Времеви модел",
+ "minutes": "Минути",
+ "seconds": "Секунди"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook идентификатор"
+ },
+ "zone": {
+ "enter": "Влизане",
+ "entity": "Обект с местоположение",
+ "event": "Събитие:",
+ "label": "Зона",
+ "leave": "Излизане",
+ "zone": "Зона"
+ }
+ },
+ "type_select": "Тип на тригера",
+ "unsupported_platform": "Няма поддръжка на потребителски интерфейс за платформа: {platform}"
+ },
+ "unsaved_confirm": "Имате незапазени промени. Сигурни ли сте, че искате да напуснете?"
+ },
+ "picker": {
+ "add_automation": "Добавяне на автоматизация",
+ "delete_automation": "Изтрийте автоматизацията",
+ "delete_confirm": "Наистина ли искате да изтриете тази автоматизация?",
+ "dev_automation": "Автоматизирано отстраняване на грешки.",
+ "dev_only_editable": "Отстраняване на грешки е възможно само за автоматизации с уникален идентификационен номер.",
+ "duplicate": "Дублиране",
+ "duplicate_automation": "Дублиране на автоматизацията",
+ "edit_automation": "Редактиране на автоматизацията",
+ "header": "Редактор на автоматизации",
+ "headers": {
+ "name": "Име"
+ },
+ "introduction": "Редакторът на автоматизации позволява да създавате и редактирате автоматизации. Моля, последвайте препратката по-долу за да прочетете инструкциите за да се уверите, че Home Assistant е правилно конфигуриран.",
+ "learn_more": "Научете повече за автоматизациите",
+ "no_automations": "Не можахме да намерим никакви автоматизации подлежащи на редакция",
+ "only_editable": "Само автоматизации, дефинирани в automations.yaml, могат да се редактират.",
+ "pick_automation": "Изберете автоматизация за редактиране",
+ "show_info_automation": "Показване на информация за автоматизацията"
+ },
+ "thingtalk": {
+ "create": "Създайте автоматизация",
+ "task_selection": {
+ "error_empty": "Въведете команда или натиснете Пропускане",
+ "for_example": "Например:",
+ "header": "Създайте нова автоматизация",
+ "introduction": "Въведете по-долу какво трябва да направи тази автоматизация и ние ще се опитаме да я преобразуваме в автоматизация на Home Assistant.",
+ "language_note": "Забележка: Засега се поддържа само английски."
+ }
+ },
+ "trace": {
+ "edit_automation": "Редактиране на автоматизация",
+ "refresh": "Опресняване"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "форуми на общността",
+ "error_no_url": "Моля, въведете URL адреса на плана.",
+ "file_name": "Път на плана",
+ "header": "Импортирайте план",
+ "import_btn": "Предварителен преглед на план",
+ "import_header": "План \"{name}\"",
+ "import_introduction_link": "Можете да импортирате планове на други потребители от Github и {community_link}. Въведете URL адреса на плана по-долу.",
+ "importing": "Планът се зарежда ...",
+ "raw_blueprint": "Съдържание на плана",
+ "save_btn": "Импортирайте план",
+ "saving": "Импортиране на план …",
+ "unsupported_blueprint": "Този план не се поддържа",
+ "url": "URL адрес на плана"
+ },
+ "caption": "Планове",
+ "description": "Управление на планове",
+ "overview": {
+ "add_blueprint": "Импортирайте план",
+ "confirm_delete_header": "Да се изтрие ли този план?",
+ "confirm_delete_text": "Наистина ли искате да изтриете този план?",
+ "create_automation": "Създаване на автоматизация",
+ "create_script": "Създаване на скрипт",
+ "delete_blueprint": "Изтриване на плана",
+ "discover_more": "Открийте още планове",
+ "header": "Редактор на планове",
+ "headers": {
+ "domain": "Домейн",
+ "file_name": "Име на файл",
+ "name": "Име",
+ "type": "Тип"
+ },
+ "introduction": "Конфигурацията на план ви позволява да импортирате и управлявате вашите планове.",
+ "learn_more": "Научете повече за използването на планове",
+ "share_blueprint": "Споделяне на план",
+ "share_blueprint_no_url": "Планът не може да се сподели. Липсва URL-източник",
+ "types": {
+ "automation": "Автоматизация",
+ "script": "Скрипт"
+ },
+ "use_blueprint": "Създайте автоматизация"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Документация за конфигурацията",
+ "disable": "деактивирайте",
+ "enable": "активиране",
+ "enable_ha_skill": "Активирайте умението Home Assistant за Alexa",
+ "enable_state_reporting": "Разрешаване на отчитане на състояние",
+ "info": "С интеграцията на Alexa за облака Home Assistant ще можете да контролирате всичките си Home Assistant устройства от всяко устройство с активирана Alexa.",
+ "info_state_reporting": "Ако активирате отчитане на състояние, Home Assistant ще изпраща всички промени в състоянието на изложените обекти към Amazon. Това позволява да виждате винаги най-актуалните състояния в приложението Alexa, както и да ги използвате за да създавате рутини.",
+ "manage_entities": "Управление на обекти",
+ "sync_entities": "Синхронизиране на обекти с Amazon",
+ "sync_entities_error": "Неуспешно синхронизирани обекти:",
+ "title": "Alexa"
+ },
+ "connected": "Свързан",
+ "connecting": "Свързване…",
+ "connection_status": "Състояние на връзката с облака",
+ "fetching_subscription": "Извличане на абонамент…",
+ "google": {
+ "config_documentation": "Документация за конфигурацията",
+ "devices_pin": "ПИН код за Устройства за защита",
+ "enter_pin_hint": "Въведете ПИН за използване на устройства за защита",
+ "manage_entities": "Управление на обекти",
+ "not_configured_text": "Преди да можете да използвате Google Assistant, трябва да активирате умението Home Assistant Cloud за Google Assistant в приложението Google Home.",
+ "not_configured_title": "Google Assistant не е активиран",
+ "security_devices": "Устройства за защита",
+ "sync_entities": "Синхронизиране на обекти с Google",
+ "sync_entities_404_message": "Неуспешно синхронизиране на вашите обекти с Google, помолете Google „Hey Google, sync my devices“, за да синхронизира вашите обекти.",
+ "title": "Google Assistant"
+ },
+ "integrations": "Интеграции",
+ "integrations_introduction": "Интеграциите за Home Assistant Cloud ви позволяват свързването с услуги в облака, без да се налага да излагате публично своя Home Assistant в интернет.",
+ "integrations_introduction2": "Проверете уебсайта за ",
+ "integrations_link_all_features": "всички налични функции",
+ "manage_account": "Управление на акаунта",
+ "nabu_casa_account": "Акаунт в Nabu Casa",
+ "not_connected": "Не е свързан",
+ "remote": {
+ "access_is_being_prepared": "Подготвя се отдалечен достъп. Ще ви уведомим, когато е готов.",
+ "certificate_info": "Информация за сертификата",
+ "connected": "Свързан",
+ "info": "Home Assistant Cloud осигурява сигурна отдалечена връзка с вашата система, докато сте извън дома.",
+ "instance_is_available": "Вашата система е налична на",
+ "instance_will_be_available": "Вашата инсталация ще е налична на",
+ "link_learn_how_it_works": "Научете как работи",
+ "not_connected": "Не е свързан",
+ "reconnecting": "Повторно свързване",
+ "remote_enabled": {
+ "caption": "Автоматично свързване",
+ "description": "Активирайте тази опция, за да сте сигурни, че вашият Home Assistant е винаги достъпен от разстояние."
+ },
+ "title": "Дистанционен контрол"
+ },
+ "sign_out": "Отписване",
+ "thank_you_note": "Благодарим Ви, че сте част от Home Assistant Cloud. Именно заради хора като вас ние сме в състояние да направим страхотно изживяване за всички при автоматизацията на дома. Благодарим Ви!",
+ "tts": {
+ "default_language": "Език по подразбиране за използване",
+ "dialog": {
+ "example_message": "Здравейте, {name}, можете да възпроизвеждате произволен текст на всеки поддържан медиен плейър!",
+ "header": "Опитайте Текст в Реч",
+ "play": "Възпроизвеждане",
+ "target_browser": "Браузър"
+ },
+ "female": "Жена",
+ "male": "Мъж",
+ "title": "Текст в Реч",
+ "try": "Опитайте"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Неуспешно деактивиране на webhook:",
+ "loading": "Зареждане …",
+ "manage": "Управление",
+ "no_hooks_yet2": " или създавайки ",
+ "no_hooks_yet_link_integration": "webhook-базирана интеграция"
+ }
+ },
+ "alexa": {
+ "dont_expose_entity": "Не излагай обекта",
+ "expose": "Откриване към Alexa",
+ "expose_entity": "Изложи обекта",
+ "exposed": "{selected} изложен",
+ "exposed_entities": "Изложени обекти",
+ "follow_domain": "Следван домейн",
+ "manage_domains": "Управление на домейни",
+ "not_exposed": "{selected} неизложен",
+ "not_exposed_entities": "Не изложени обекти",
+ "title": "Alexa"
+ },
+ "description_features": "Контролирайте дома си, и когато не сте вкъщи, активирайте интегрирациите с Alexa и Google Assistant.",
+ "description_login": "Вписани сте като {email}",
+ "description_not_login": "Не сте влезли",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Дата на изтичане на сертификата:",
+ "certificate_information": "Информация за сертификата",
+ "close": "Затвори",
+ "fingerprint": "Отпечатък на сертификата:",
+ "will_be_auto_renewed": "ще бъде автоматично подновен"
+ },
+ "dialog_cloudhook": {
+ "close": "Затвори",
+ "copied_to_clipboard": "Копирано в клипборда",
+ "view_documentation": "Преглед на документацията"
+ },
+ "forgot_password": {
+ "check_your_email": "Проверете имейла си за инструкции как да нулирате паролата си.",
+ "email": "Имейл",
+ "email_error_msg": "Грешен имейл",
+ "instructions": "Въведете вашия имейл адрес и ние ще ви изпратим линк за нулиране на вашата парола.",
+ "send_reset_email": "Изпратете имейл за нулиране",
+ "subtitle": "Забравена парола",
+ "title": "Забравена парола"
+ },
+ "google": {
+ "disable_2FA": "Деактивирайте двуфакторното удостоверяване",
+ "dont_expose_entity": "Не излагай обекта",
+ "expose": "Откриване към Google Assistant",
+ "expose_entity": "Изложи обекта",
+ "exposed": "{selected} изложен",
+ "exposed_entities": "Изложени обекти",
+ "follow_domain": "следван домейн",
+ "manage_domains": "Управление на домейни",
+ "not_exposed": "{selected} неизложен",
+ "not_exposed_entities": "Не изложени обекти",
+ "sync_to_google": "Синхронизиране на промените с Google.",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Трябва да потвърдите имейла си, преди да влезете.",
+ "alert_password_change_required": "Трябва да промените паролата си, преди да влезете.",
+ "dismiss": "Отхвърли",
+ "email": "Имейл",
+ "email_error_msg": "Грешен имейл",
+ "forgot_password": "Забравена парола?",
+ "introduction": "Облакът Home Assistant осигурява защитена отдалечена връзка с вашата инсталация, докато сте далеч от дома. Също така позволява свързването с изцяло облачни услуги: Amazon Alexa и Google Assistant.",
+ "introduction2": "Тази услуга се управлява от нашия партньор",
+ "introduction2a": ", компания основана от основателите на Home Assistant и Hass.io.",
+ "introduction3": "Home Assistant Cloud е абонаментна услуга с безплатен едномесечен пробен период. Не е необходима информация за плащане.",
+ "learn_more_link": "Научете повече за Home Assistant Cloud",
+ "password": "Парола",
+ "password_error_msg": "Паролите са най-малко 8 знака",
+ "sign_in": "Впиши се",
+ "start_trial": "Започнете безплатния си едномесечен пробен период",
+ "title": "Облачно влизане",
+ "trial_info": "Не е необходима информация за плащане"
+ },
+ "register": {
+ "account_created": "Акаунтът е създаден! Проверете имейла си за инструкции как да активирате акаунта си.",
+ "create_account": "Създаване на акаунт",
+ "email_address": "Имейл адрес",
+ "email_error_msg": "Грешен имейл",
+ "feature_amazon_alexa": "Интеграция с Amazon Alexa",
+ "feature_google_home": "Интеграция с Google Assistant",
+ "feature_remote_control": "Контрол на Home Assistant далеч от дома",
+ "feature_webhook_apps": "Лесна интеграция с базирани на webhook приложения като OwnTracks",
+ "headline": "Започнете безплатния си пробен период",
+ "information": "Създайте акаунт с безплатен едномесечен пробен период в облака Home Assistant. Не се изисква информация за плащане.",
+ "information2": "Пробният период ще ви даде достъп до всички предимства на Home Assistant Cloud, включително:",
+ "information3": "Тази услуга се управлява от нашия партньор",
+ "information3a": ", компания основана от основателите на Home Assistant и Hass.io.",
+ "information4": "С регистрирането на акаунт се съгласявате със следните условия.",
+ "link_privacy_policy": "Политика за поверителност",
+ "link_terms_conditions": "Правила и условия",
+ "password": "Парола",
+ "password_error_msg": "Паролите са най-малко 8 знака",
+ "resend_confirm_email": "Повторно изпращане на имейл за потвърждение",
+ "start_trial": "Започнете пробен период",
+ "title": "Регистриране на акаунт"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Вие имате незапазени промени. Сигурни ли сте, че искате да напусните?"
+ },
+ "learn_more": "Научете повече"
+ },
+ "core": {
+ "caption": "Общи",
+ "description": "Променете общите настройки на Home Assistant",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Валута",
+ "edit_requires_storage": "Редакторът е деактивиран, защото конфигурацията е съхранена в configuration.yaml.",
+ "elevation": "Надморска височина",
+ "elevation_meters": "метра",
+ "external_url": "Външен URL",
+ "find_currency_value": "Намерете своята стойност",
+ "imperial_example": "Фаренхайт, паунд",
+ "internal_url": "Вътрешен URL",
+ "latitude": "Географска ширина",
+ "location_name": "Име на Вашия Home Assistant",
+ "longitude": "Географска дължина",
+ "metric_example": "Целзий, килограми",
+ "save_button": "Запази",
+ "time_zone": "Часова зона",
+ "unit_system": "Система единици",
+ "unit_system_imperial": "Имперски единици",
+ "unit_system_metric": "Метрични единици"
+ },
+ "header": "Общи настройки",
+ "introduction": "Промяната на конфигурацията може да бъде труден процес. Знаем това. Този раздел ще се опита да направи живота Ви малко по-лесен."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Следните атрибути вече са зададени в customize.yaml",
+ "attributes_outside": "Следните атрибути са персонализирани извън customize.yaml",
+ "attributes_override": "Можете да ги презапишете, ако искате.",
+ "caption": "Персонализиране",
+ "description": "Персонализирайте Вашите обекти",
+ "pick_attribute": "Изберете атрибут, който да презапишете",
+ "picker": {
+ "documentation": "Документация за персонализиране",
+ "header": "Персонализиране",
+ "introduction": "Настройте атрибутите за всеки обект. Добавени/редактирани персонализации ще имат ефект, когато обектът бъде опреснен."
+ },
+ "warning": {
+ "include_link": "включва customize.yaml"
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Управление на автоматизации, сцени, скриптове и помощници",
+ "title": "Автоматизации и сцени"
+ },
+ "blueprints": {
+ "description": "Управление на планове",
+ "title": "Планове"
+ },
+ "companion": {
+ "description": "Местоположение и известия"
+ },
+ "dashboards": {
+ "description": "Създаване на персонализирани набори от карти за управление на дома ви",
+ "title": "Табла"
+ },
+ "devices": {
+ "description": "Интеграции, устройства, обекти и области",
+ "title": "Устройства и услуги"
+ },
+ "energy": {
+ "description": "Наблюдавайте производството и потреблението на енергия",
+ "title": "Енергия"
+ },
+ "people": {
+ "description": "Управление на хората и зоните, които Home Assistant следи",
+ "title": "Хора и зони"
+ },
+ "settings": {
+ "description": "Основни настройки, сървърни контроли, журнали и информация",
+ "title": "Настройки"
+ },
+ "supervisor": {
+ "description": "Създаване на резервни копия, проверка на дневниците или рестартиране на системата",
+ "title": "Добавки, резервни копия и Supervisor"
+ },
+ "tags": {
+ "description": "Задействане на автоматизации при сканиране на NFC маркер, QR код и др.",
+ "title": "Маркери"
+ }
+ },
+ "devices": {
+ "add_prompt": "Все още не са добавени {name} с това устройство. Можете да добавите, като кликнете върху бутона + по-горе.",
+ "automation": {
+ "actions": {
+ "caption": "Когато нещо се задейства…",
+ "no_actions": "Няма действия",
+ "unknown_action": "Неизвестно действие"
+ },
+ "automations": "Автоматизации",
+ "conditions": {
+ "caption": "Направи нещо само ако…",
+ "no_conditions": "Няма условия",
+ "unknown_condition": "Неизвестно условие"
+ },
+ "create": "Създаване на автоматизация с устройството",
+ "create_disable": "Не може да се създаде автоматизация с деактивирано устройство",
+ "no_automations": "Няма автоматизации",
+ "no_device_automations": "Няма налични автоматизации за това устройство.",
+ "triggers": {
+ "caption": "Направи нещо, когато..."
+ },
+ "unknown_automation": "Неизвестна автоматизация"
+ },
+ "cant_edit": "Можете да редактирате само елементи, които са създадени в потребителския интерфейс.",
+ "caption": "Устройства",
+ "confirm_delete": "Сигурни ли сте, че искате да изтриете устройството?",
+ "data_table": {
+ "area": "Област",
+ "battery": "Батерия",
+ "device": "Устройство",
+ "integration": "Интеграция",
+ "manufacturer": "Производител",
+ "model": "Модел",
+ "no_devices": "Няма устройства"
+ },
+ "delete": "Изтриване",
+ "description": "Управление на конфигурираните устройства",
+ "device_info": "Информация за устройството",
+ "device_not_found": "Не е намерено устройство.",
+ "disabled": "Деактивирано",
+ "disabled_by": {
+ "config_entry": "Конфигурационен запис",
+ "integration": "Интеграция",
+ "user": "Потребител"
+ },
+ "edit_settings": "Редактиране на настройките",
+ "enabled_cause": "Устройството е деактивирано от {cause}.",
+ "enabled_label": "Активиране на устройството",
+ "entities": {
+ "add_entities_lovelace": "Добавете към Lovelace",
+ "config": "Конфиг.",
+ "control": "Контроли",
+ "diagnostic": "Диагностика",
+ "disabled_entities": "+{count} {count, plural,\n one {деактивиран обект}\n other {деактивирани обекта}\n}",
+ "entities": "Обекти",
+ "hide_disabled": "Скриване на деактивираните",
+ "none": "Това устройство няма обекти",
+ "sensor": "Сензори"
+ },
+ "name": "Име",
+ "no_devices": "Няма устройства",
+ "picker": {
+ "filter": {
+ "filter": "Филтър",
+ "hidden_devices": "{number} скрити {number, plural,\n one {устройство}\n other {устройства}\n}",
+ "show_all": "Покажи всички",
+ "show_disabled": "Показване на деактивираните устройства"
+ },
+ "search": "Търсене на устройства"
+ },
+ "scene": {
+ "create": "Създаване на сцена с устройството",
+ "create_disable": "Не може да се създаде сцена с деактивирано устройство",
+ "no_scenes": "Няма сцени",
+ "scenes": "Сцени"
+ },
+ "scenes": "Сцени",
+ "script": {
+ "create": "Създаване на скрипт с устройството",
+ "create_disable": "Не може да се създаде скрипт с деактивирано устройство",
+ "no_scripts": "Няма скриптове",
+ "scripts": "Скриптове"
+ },
+ "scripts": "Скриптове",
+ "unknown_error": "Неизвестна грешка",
+ "unnamed_device": "Устройство без име",
+ "update": "Актуализация",
+ "update_device_error": "Актуализирането на устройството не е успешно"
+ },
+ "energy": {
+ "battery": {
+ "learn_more": "Повече информация как да започнете."
+ },
+ "caption": "Енергия",
+ "delete_integration": "Наистина ли искате да изтриете тази интеграция? Това ще премахне обектите, които предоставя",
+ "delete_source": "Наистина ли искате да изтриете този източник?",
+ "description": "Следете производството и потреблението на енергия",
+ "device_consumption": {
+ "add_device": "Добави устройство",
+ "devices": "Устройства",
+ "dialog": {
+ "device_consumption_energy": "Консумирана енергия от устройството (kWh)",
+ "header": "Добавяне на устройство"
+ },
+ "learn_more": "Повече информация как да започнете.",
+ "selected_stat": "Проследяване на енергията за",
+ "sub": "Проследяването на използваната енергия от отделните устройства позволява на Home Assistant да разбие потреблението на енергия по устройства.",
+ "title": "Отделни устройства"
+ },
+ "gas": {
+ "add_gas_source": "Добавяне на източник на газ",
+ "dialog": {
+ "cost_number": "Използвайте фиксирана цена",
+ "cost_number_input": "Цена за m³",
+ "cost_number_suffix": "{currency}/m³",
+ "energy_stat": "Консумирана енергия (m³)",
+ "gas_usage": "Използване на газ",
+ "header": "Конфигуриране на потреблението на газ",
+ "m3_or_kWh": "m³ или kWh",
+ "paragraph": "Консумацията на газ е обемът газ, който тече към вашия дом."
+ },
+ "gas_consumption": "Консумация на газ",
+ "learn_more": "Повече информация как да започнете.",
+ "sub": "Позволете на Home Assistant да следи консумацията на газ.",
+ "title": "Консумация на газ"
+ },
+ "grid": {
+ "add_consumption": "Добавяне на консумация",
+ "add_return": "Добавяне на връщане",
+ "flow_dialog": {
+ "from": {
+ "cost_number": "Използвайте фиксирана цена",
+ "cost_number_input": "Цена за kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Изберете как Home Assistant трябва да следи разходите за консумираната енергия.",
+ "energy_stat": "Консумирана енергия (kWh)",
+ "header": "Конфигурирайте консумацията от мрежата",
+ "paragraph": "Консумацията от мрежата е енергията, която тече от енергийната мрежа към вашия дом."
+ },
+ "to": {
+ "cost_number_suffix": "{currency}/kWh",
+ "energy_stat": "Енергия, върната в мрежата (kWh)"
+ }
+ },
+ "grid_consumption": "Консумация от мрежата",
+ "learn_more": "Повече информация как да започнете.",
+ "return_to_grid": "Връщане към мрежата",
+ "title": "Електрическа мрежа"
+ },
+ "new_device_info": "След като настроите ново устройство, може да отнеме до 2 часа, преди новите данни да пристигнат във вашето табло за енергия.",
+ "solar": {
+ "add_solar_production": "Добавяне на слънчево производство",
+ "dialog": {
+ "header": "Конфигуриране на слънчеви панели"
+ },
+ "learn_more": "Повече информация как да започнете.",
+ "solar_production": "Слънчево производство",
+ "stat_production": "Вашето производство на слънчева енергия",
+ "title": "Слънчеви панели"
+ },
+ "validation": {
+ "issues": {
+ "entity_unexpected_unit_energy": {
+ "title": "Неочаквана мерна единица"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "title": "Неочаквана мерна единица"
+ },
+ "entity_unexpected_unit_gas": {
+ "title": "Неочаквана мерна единица"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "title": "Неочаквана мерна единица"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Обекти",
+ "description": "Управление на известните обекти",
+ "picker": {
+ "disable_selected": {
+ "button": "Деактивиране на избраните",
+ "confirm_text": "Деактивираните обекти няма да бъдат добавени в Home Assistant.",
+ "confirm_title": "Искате ли да забраните {number} {number, plural,\n one {обект}\n other {обекта}\n}?"
+ },
+ "enable_selected": {
+ "button": "Активиране на избраните",
+ "confirm_text": "Това ще ги направи отново достъпни в Home Assistant, ако сега са деактивирани.",
+ "confirm_title": "Искате ли да разрешите {number} {number, plural,\n one {обект}\n other {обекта}\n}?"
+ },
+ "filter": {
+ "filter": "Филтър",
+ "hidden_entities": "{number} скрити {number, plural,\n one {обект}\n other {обекта}\n}",
+ "show_all": "Покажи всички",
+ "show_disabled": "Показване на деактивираните обекти",
+ "show_readonly": "Показване на обектите само за четене",
+ "show_unavailable": "Показване на недостъпните обекти"
+ },
+ "header": "Обекти",
+ "headers": {
+ "area": "Област",
+ "disabled_by": "Деактивирано от",
+ "entity_id": "ID на обекта",
+ "integration": "Интеграция",
+ "name": "Име",
+ "status": "Състояние"
+ },
+ "introduction": "Home Assistant поддържа регистър на всички обекти, които някога е виждал, които могат да бъдат идентифицирани уникално. Всеки от тези обекти ще има идентификатор на обект, който ще бъде резервиран само за този обект.",
+ "introduction2": "Използвайте регистъра на обектите, за да промените името, идентификатора на обекта или да премахнете записа от Home Assistant. Моля имайте на предвид, че премахването на записа от регистъра на обектите няма да премахне обекта. За да направите това, следвайте препратката по-долу и я премахнете от страницата за интеграции.",
+ "remove_selected": {
+ "button": "Премахване на избраните",
+ "confirm_partly_title": "Само {number} {number, plural,\n one {избран обект}\n other {избрани обекта}\n} могат да бъдат премахнати.",
+ "confirm_title": "Искате ли да премахнете {number} {number, plural,\n one {обект}\n other {обекта}\n}?"
+ },
+ "search": "Търсене на обекти",
+ "selected": "{number} избрани",
+ "status": {
+ "disabled": "Деактивиран",
+ "ok": "ДА",
+ "readonly": "Само за четене",
+ "restored": "Възстановен",
+ "unavailable": "Недостъпен"
+ }
+ }
+ },
+ "header": "Конфигуриране на Home Assistant",
+ "helpers": {
+ "description": "Елементи, които помагат за изграждането на автоматизации",
+ "dialog": {
+ "create": "Създаване"
+ },
+ "picker": {
+ "headers": {
+ "entity_id": "ID на обекта",
+ "name": "Име",
+ "type": "Тип"
+ }
+ },
+ "types": {
+ "counter": "Брояч",
+ "input_boolean": "Превключване",
+ "input_button": "Бутон",
+ "input_datetime": "Дата и/или време",
+ "input_text": "Текст",
+ "timer": "Таймер"
+ }
+ },
+ "info": {
+ "built_using": "Изграден с използването на",
+ "caption": "Информация",
+ "copy_github": "За GitHub",
+ "description": "Версия, състояние на системата и връзки към документация",
+ "documentation": "Документация",
+ "frontend": "интерфейс",
+ "frontend_version": "Версия на интерфейса: {version} - {type}",
+ "home_assistant_logo": "Лого на Home Assistant",
+ "icons_by": "икони от",
+ "integrations": "Интеграции",
+ "issues": "Проблеми",
+ "license": "Публикувано под лиценза Apache 2.0",
+ "path_configuration": "Път към configuration.yaml: {path}",
+ "server": "сървър",
+ "source": "Изходен код:",
+ "system_health": {
+ "manage": "Управление",
+ "more_info": "повече информация"
+ }
+ },
+ "integrations": {
+ "add_integration": "Добавяне на интеграция",
+ "attention": "Задълителна проверка",
+ "caption": "Интеграции",
+ "config_entry": {
+ "area": "В {area}",
+ "check_the_logs": "Проверете журналите",
+ "configure": "Конфигуриране",
+ "delete": "Изтриване",
+ "delete_confirm": "Сигурни ли сте, че искате да изтриете интеграцията?",
+ "depends_on_cloud": "Зависи от облака",
+ "device_unavailable": "Устройството е недостъпно",
+ "devices": "{count} {count, plural,\n one {устройство}\n other {устройства}\n}",
+ "disable": {
+ "disable_confirm": "Наистина ли искате да забраните този конфигурационен запис? Устройствата и обекти му ще бъдат деактивирани.",
+ "disabled": "Деактивирана",
+ "disabled_by": {
+ "device": "устройство",
+ "integration": "интеграция",
+ "user": "потребител"
+ },
+ "disabled_cause": "Деактивирано от {cause}"
+ },
+ "disable_error": "Активирането или деактивирането на интеграцията не бе успешно",
+ "disable_restart_confirm": "Рестартирайте Home Assistant за да завършите деактивирането на тази интеграция",
+ "disabled_polling": "Автоматичното обновяване за данни е забранено",
+ "documentation": "Документация",
+ "enable_restart_confirm": "Рестартирайте Home Assistant за да завършите активирането на тази интеграция",
+ "entities": "{count} {count, plural,\n one {обект}\n other {обекта}\n}",
+ "entity_unavailable": "Обектът е недостъпен",
+ "firmware": "Фърмуер: {version}",
+ "hardware": "Хардуер: {version}",
+ "hub": "Свързан чрез",
+ "known_issues": "Известни проблеми",
+ "manuf": "от {manufacturer}",
+ "no_area": "Без област",
+ "not_loaded": "Не е заредено, проверете {logs_link}",
+ "provided_by_custom_integration": "Предоставя се от персонализирана интеграция",
+ "reload": "Презареждане",
+ "reload_confirm": "Интеграцията беше презаредена",
+ "reload_restart_confirm": "Рестартирайте Home Assistant, за да завършите презареждането на тази интеграция",
+ "rename": "Преименуване",
+ "restart_confirm": "Рестартирайте Home Assistant за да завършите премахването на интеграцията",
+ "services": "{count} {count, plural,\n one {услуга}\n other {услуги}\n}",
+ "state": {
+ "loaded": "Зареден",
+ "migration_error": "Грешка при миграцията",
+ "not_loaded": "Не е зареден"
+ },
+ "system_options": "Системни настройки",
+ "unknown_via_device": "Неразпознато устройство",
+ "unnamed_entry": "Запис без име",
+ "via": "Свързанo чрез"
+ },
+ "config_flow": {
+ "aborted": "Прекъснат",
+ "close": "Затвори",
+ "created_config": "Създадена конфигурация за {name} .",
+ "error": "Грешка",
+ "external_step": {
+ "description": "Завършването на тази стъпка изисква да посетите външен уебсайт.",
+ "open_site": "Отваряне на уеб сайт"
+ },
+ "finish": "Край",
+ "loading": {
+ "fallback_title": "интеграцията",
+ "loading_flow": "Моля, изчакайте, докато се настройва {integration}",
+ "loading_step": "Зарежда се следващата стъпка за {integration}"
+ },
+ "next": "Следващ",
+ "not_all_required_fields": "Не всички задължителни полета са попълнени.",
+ "not_loaded": "Интеграцията не можа да бъде заредена, опитайте да рестартирате Home Assistant.",
+ "submit": "Изпращане"
+ },
+ "configure": "Конфигуриране",
+ "configured": "Конфигуриран",
+ "confirm_new": "Искате ли да настроите {integration}?",
+ "description": "Управление на интеграции с услуги, устройства, …",
+ "disable": {
+ "disabled_integrations": "{number} деактивирани",
+ "show": "Покажи",
+ "show_disabled": "Показване на деактивираните интеграции"
+ },
+ "discovered": "Открита",
+ "home_assistant_website": "уебсайта на Home Assistant",
+ "ignore": {
+ "confirm_delete_ignore_title": "Да се спре ли игнорирането на {name}?",
+ "confirm_ignore": "Наистина ли не искате да настроите тази интеграция? Можете да отмените това, като кликнете върху „Показване на игнорирани интеграции“ в менюто горе вдясно.",
+ "ignore": "Игнориране",
+ "ignored": "Игнорирана",
+ "show_ignored": "Показване на игнорираните интеграции",
+ "stop_ignore": "Спрете да игнорирате"
+ },
+ "integration": "интеграция",
+ "integration_not_found": "Не е намерена интеграция.",
+ "new": "Настройте нова интеграция",
+ "no_integrations": "Изглежда, че все още нямате конфигурирани интеграции. Кликнете върху бутона по-долу, за да добавите първата си интеграция!",
+ "none": "Нищо не е конфигурирано към момента",
+ "none_found": "Не са намерени интеграции",
+ "none_found_detail": "Коригирайте критериите си за търсене.",
+ "note_about_integrations": "Все още не всички интеграции могат да бъдат конфигурирани чрез потребителския интерфейс.",
+ "note_about_website_reference": "Повече са достъпни на ",
+ "reconfigure": "Реконфигурация",
+ "rename_dialog": "Редактирайте името на този запис в конфигурацията",
+ "rename_input_label": "Име на записа",
+ "search": "Търсене на интеграции"
+ },
+ "introduction": "Тук е възможно да конфигурирате Вашите компоненти и Home Assistant. Не всичко е възможно да се конфигурира от Интерфейса, но работим по върпоса.",
+ "logs": {
+ "caption": "Журнали",
+ "clear": "Изчистване",
+ "custom_integration": "персонализирана интеграция",
+ "description": "Преглед на журналите на Home Assistant",
+ "error_from_custom_integration": "Тази грешка произтича от персонализирана интеграция.",
+ "level": {
+ "critical": "КРИТИЧНО",
+ "debug": "ДЕБЪГ",
+ "error": "ГРЕШКА",
+ "info": "ИНФО",
+ "warning": "ВНИМАНИЕ"
+ },
+ "load_full_log": "Зареждане на пълния журнал на Home Assistant",
+ "loading_log": "Зарежда се журнала за грешки...",
+ "multiple_messages": "съобщението е възникнало за първи път на {time} и се показва {counter} пъти",
+ "no_issues": "Няма нови проблеми!",
+ "refresh": "Опресняване"
+ },
+ "lovelace": {
+ "caption": "Lovelace Табла",
+ "dashboards": {
+ "cant_edit_default": "Стандартното Lovelace табло не може да се редактира от потребителския интерфейс. Можете да го скриете, като зададете друго табло по подразбиране.",
+ "cant_edit_yaml": "Табла, дефинирани в YAML, не могат да бъдат редактирани от потребителския интерфейс. Променете ги в configuration.yaml.",
+ "caption": "Табла",
+ "conf_mode": {
+ "yaml": "YAML файл"
+ },
+ "confirm_delete": "Наистина ли искате да изтриете това табло?",
+ "confirm_delete_text": "Таблото ви за управление ще бъде изтрито за постоянно.",
+ "confirm_delete_title": "Да се изтрие ли {dashboard_title}?",
+ "default_dashboard": "Това е таблото по подразбиране",
+ "detail": {
+ "create": "Създаване",
+ "delete": "Изтрий",
+ "dismiss": "Затвори",
+ "edit_dashboard": "Редактиране на таблото",
+ "icon": "Икона",
+ "new_dashboard": "Добавяне на ново табло",
+ "remove_default": "Премахване по подразбиране на това устройство",
+ "require_admin": "Само администратори",
+ "set_default": "Задаване по подразбиране на това устройство",
+ "show_sidebar": "Показване в страничната лента",
+ "title": "Заглавие",
+ "title_required": "Заглавието е задължително.",
+ "update": "Актуализиране",
+ "url": "URL",
+ "url_error_msg": "URL адресът трябва да съдържа '-' и не може да съдържа интервали или специални символи, с изключение на '_' и '-'"
+ },
+ "picker": {
+ "add_dashboard": "Добавяне на табло",
+ "headers": {
+ "conf_mode": "Метод за конфигуриране",
+ "default": "По подразбиране",
+ "filename": "Име на файл",
+ "require_admin": "Само администратори",
+ "sidebar": "Показване в страничната лента",
+ "title": "Заглавие"
+ },
+ "open": "Отваряне"
+ }
+ },
+ "description": "Създайте персонализирани набори от карти, за да контролирате дома си",
+ "resources": {
+ "cant_edit_yaml": "Използвате Lovelace в YAML режим, следователно не можете да управлявате ресурсите си чрез потребителския интерфейс. Управлявайте ги в configuration.yaml.",
+ "caption": "Ресурси",
+ "confirm_delete": "Сигурни ли сте, че искате да изтриете този ресурс?",
+ "detail": {
+ "create": "Създаване",
+ "delete": "Изтриване",
+ "dismiss": "Затвори",
+ "new_resource": "Добавяне на нов ресурс",
+ "type": "Тип на ресурса",
+ "update": "Актуализиране",
+ "url": "URL",
+ "url_error_msg": "URL е задължително поле",
+ "warning_header": "Бъдете предпазливи!"
+ },
+ "picker": {
+ "add_resource": "Добавяне на ресурс",
+ "headers": {
+ "type": "Тип",
+ "url": "URL"
+ },
+ "no_resources": "Няма ресурси"
+ },
+ "refresh_body": "Трябва да опресните страницата, за да завършите премахването. Искате ли да се опресните сега?"
+ }
+ },
+ "mqtt": {
+ "title": "MQTT"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Контролер",
+ "network": "Мрежа",
+ "node_id": "ID на възел",
+ "query_stage": "Етап на заявка",
+ "wakeup_instructions": "Инструкции за събуждане",
+ "zwave": "Z-Wave"
+ },
+ "navigation": {
+ "network": "Мрежа",
+ "node": {
+ "config": "Конфигуриране",
+ "dashboard": "Табло"
+ },
+ "nodes": "Възли"
+ },
+ "network": {
+ "header": "Управление на мрежата",
+ "node_count": "{count} възли"
+ },
+ "network_status": {
+ "details": {
+ "driverfailed": "Неуспешно свързване с Z-Wave контролера",
+ "driverready": "Инициализиране на Z-Wave контролера",
+ "ready": "Готов за свързване",
+ "started": "Свързан към MQTT",
+ "starting": "Свързване към MQTT"
+ },
+ "offline": "Извън линия",
+ "online": "На линия",
+ "starting": "Стартиране",
+ "unknown": "Неизвестно"
+ },
+ "node": {
+ "button": "Детайли за възела",
+ "not_found": "Не е намерен възел"
+ },
+ "node_config": {
+ "header": "Конфигурация на възел"
+ },
+ "node_metadata": {
+ "product_manual": "Ръководство за продукта"
+ },
+ "node_query_stages": {
+ "associations": "Обновяване на свързаните групи и членства",
+ "complete": "Разпита приключи"
+ },
+ "nodes_table": {
+ "failed": "Неуспешно",
+ "id": "ID",
+ "manufacturer": "Производител",
+ "model": "Модел",
+ "query_stage": "Етап на заявка",
+ "zwave_plus": "Z-Wave плюс"
+ },
+ "refresh_node": {
+ "button": "Обнови възела",
+ "description": "Това ще накара OpenZWave да разпита дадено устройство и да актуализира командните му класове, възможностите и стойностите му.",
+ "node_status": "Състояние на възела",
+ "refreshing_description": "Опресняване на информацията за възела…",
+ "step": "Стъпка",
+ "wakeup_header": "Инструкции за събуждане за"
+ },
+ "select_instance": {
+ "none_found": "Не можахме да намерим OpenZWave инстанция. Ако смятате че не е вярно, проверете Вашите OpenZWare и MQTT и се уверете. че Home Assistant може да комуникира със MQTT брокера."
+ },
+ "services": {
+ "add_node": "Добавяне на възел",
+ "cancel_command": "Отмени командата",
+ "remove_node": "Премахване на възел"
+ }
+ },
+ "person": {
+ "add_person": "Добавяне на човек",
+ "caption": "Хора",
+ "confirm_delete": "Сигурни ли сте, че искате да изтриете този човек?",
+ "confirm_delete2": "Всички устройства, принадлежащи на този човек, ще станат неназначени.",
+ "create_person": "Създаване на човек",
+ "description": "Управлявайте хората, които се следят от Home Assistant.",
+ "detail": {
+ "admin": "Администратор",
+ "allow_login": "Разрешаване на потребителя да се вписва",
+ "confirm_delete_user": "Сигурен ли сте, че искате да изтриете потребителски акаунт {name}? Все още ще можете да проследявате човека, но той, повече няма да може да се вписва.",
+ "create": "Създаване",
+ "delete": "Изтрий",
+ "device_tracker_intro": "Изберете устройствата, които принадлежат на това лице.",
+ "device_tracker_pick": "Изберете устройство за проследяване",
+ "device_tracker_picked": "Устройство за проследяване",
+ "link_presence_detection_integrations": "Интеграции за откриване на присъствие",
+ "linked_user": "Свързан потребител",
+ "local_only": "Може да се влиза само от локалната мрежа",
+ "name": "Име",
+ "name_error_msg": "Името е задължително",
+ "new_person": "Нов човек",
+ "update": "Актуализиране"
+ },
+ "learn_more": "Научете повече за хората",
+ "no_persons_created_yet": "Изглежда все още не сте добавили хора.",
+ "note_about_persons_configured_in_yaml": "Забележка: хората, конфигурирани чрез configuration.yaml, не могат да бъдат редактирани чрез потребителския интерфейс.",
+ "person_not_found": "Не успяхме да открием лицето, което се опитвате да редактирате.",
+ "person_not_found_title": "Не е намерено лице"
+ },
+ "scene": {
+ "activated": "Активирана сцена {name} .",
+ "caption": "Сцени",
+ "editor": {
+ "area": "Област",
+ "default_name": "Нова сцена",
+ "devices": {
+ "add": "Добавяне на устройство",
+ "delete": "Изтриване на устройството",
+ "header": "Устройства"
+ },
+ "entities": {
+ "add": "Добавяне на обект",
+ "delete": "Изтриване на обект",
+ "header": "Обекти",
+ "introduction": "Тук могат да се задават обекти, които не принадлежат към дадено устройство.",
+ "without_device": "Обекти без устройство"
+ },
+ "icon": "Икона",
+ "introduction": "Използвайте сцени, за да вдъхнете живот на дома си.",
+ "load_error_not_editable": "Само сцени в scenes.yaml могат да се редактират.",
+ "load_error_unknown": "Грешка при зареждането на сцена ({err_no}).",
+ "name": "Име",
+ "save": "Запази",
+ "unsaved_confirm": "Имате незапазени промени. Сигурни ли сте, че искате да напуснете?"
+ },
+ "picker": {
+ "add_scene": "Добавяне на сцена",
+ "delete_confirm": "Сигурни ли сте, че искате да изтриете тази сцена?",
+ "delete_scene": "Изтриване на сцената",
+ "duplicate": "Дублиране",
+ "duplicate_scene": "Дублиране на сцената",
+ "edit_scene": "Редактиране на сцената",
+ "header": "Редактор на сцени",
+ "headers": {
+ "name": "Име"
+ },
+ "learn_more": "Научете повече за сцените",
+ "no_scenes": "Не можахме да намерим сцени",
+ "only_editable": "Само сцени дефинирани в scenes.yaml могат да се редактират.",
+ "pick_scene": "Изберете сцена за редактиране",
+ "show_info_scene": "Показване на информация за сцената"
+ }
+ },
+ "script": {
+ "caption": "Скриптове",
+ "description": "Изпълнение на последователност от действия",
+ "editor": {
+ "alias": "Име",
+ "default_name": "Нов скрипт",
+ "delete_confirm": "Сигурни ли сте, че искате да изтриете този скрипт?",
+ "delete_script": "Изтриване на скрипта",
+ "header": "Скрипт: {name}",
+ "icon": "Икона",
+ "id": "ID на обекта",
+ "id_already_exists": "Това ID вече съществува",
+ "id_already_exists_save_error": "Не можете да запазите този скрипт, защото идентификаторът не е уникален, изберете друг идентификатор или го оставете празен, за да се генерира автоматично.",
+ "introduction": "Използвайте скриптове за изпълнение на последователност от действия.",
+ "link_available_actions": "Научете повече за наличните действия.",
+ "load_error_not_editable": "Само скриптове в scripts.yaml могат да бъдат редактирани.",
+ "modes": {
+ "label": "Режим",
+ "parallel": "Паралелно",
+ "queued": "На опашка",
+ "restart": "Рестарт",
+ "single": "Еднократно (по подразбиране)"
+ },
+ "save_script": "Запазване на скрипта",
+ "sequence": "Последователност",
+ "sequence_sentence": "Последователността на действията на този скрипт.",
+ "show_trace": "Проследи"
+ },
+ "picker": {
+ "add_script": "Добавяне на скрипт",
+ "dev_script": "Скрипт за отстраняване на грешки",
+ "duplicate": "Дублиране",
+ "duplicate_script": "Дублиране на скрипта",
+ "edit_script": "Редактиране на скрипта",
+ "header": "Скрипт-редактор",
+ "headers": {
+ "name": "Име"
+ },
+ "introduction": "Скрипт-редакторът позволява създаването и редактирането на скриптове. Врузката води към допълнитени инструкции за проверка на коректността при конфигурането на Home Assistant.",
+ "learn_more": "Научете повече за скриптовете",
+ "no_scripts": "Не намираме скриптове",
+ "run_script": "Изпълнете скрипта",
+ "show_info": "Показване на информация за скрипта"
+ }
+ },
+ "server_control": {
+ "caption": "Управление на сървъра",
+ "description": "Рестартиране и спиране на Home Assistant сървъра",
+ "section": {
+ "reloading": {
+ "automation": "Презареждане на автоматизациите",
+ "core": "Презареждане на местоположението и персонализациите",
+ "filter": "Филтриране на обектите",
+ "group": "Презареждане на групите, груповите обекти и услугите за уведомяване",
+ "heading": "Презареждане на YAML конфигурацията",
+ "homekit": "Презареждане на HomeKit",
+ "introduction": "Някои части от Home Assistant могат да се презаредят без да е необходимо рестартиране. Натискането на Презареждане ще отхвърли настоящата конфигурация и ще зареди новата конфигурация.",
+ "mqtt": "Презареждане на ръчно конфигурираните mqtt обекти",
+ "person": "Презареждане на хората",
+ "reload": "Презареждане на {domain}",
+ "rest": "Презареждане на REST обекти и услуги за нотификация",
+ "rpi_gpio": "Презареждане на GPIO обектите на Raspberry Pi",
+ "scene": "Презареждане на сцените",
+ "script": "Презареждане на скриптовете",
+ "smtp": "Презарежанде на smtp услугите за уведомяване",
+ "telegram": "Презареждане на telegram услугите за уведомяване",
+ "themes": "Теми",
+ "timer": "Таймери",
+ "zone": "Презаредете зони"
+ },
+ "server_management": {
+ "confirm_restart": "Сигурни ли сте, че искате да рестартирате Home Assistant?",
+ "confirm_stop": "Сигурни ли сте, че искате да спрете Home Assistant?",
+ "heading": "Управление на сървъра",
+ "introduction": "Контрол на Home Assistant сървъра... от Home Assistant.",
+ "restart": "Рестартирай",
+ "stop": "Спри"
+ },
+ "validation": {
+ "check_config": "Проверка на конфигурацията",
+ "heading": "Проверка на конфигурацията",
+ "introduction": "Проверете конфигурацията, ако скоро сте направили промени и искате да се уверите, че всичко работи",
+ "invalid": "Невалидна конфигурация",
+ "valid": "Валидна конфигурация!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Добавяне на маркер",
+ "automation_title": "Маркера {name} е сканиран",
+ "caption": "Маркери",
+ "confirm_remove": "Наистина ли искате да премахнете маркера {tag}?",
+ "confirm_remove_title": "Премахване на маркера?",
+ "create_automation": "Създаване на автоматизация с маркера",
+ "description": "Задействайте автоматизации при сканиране на NFC етикет, QR код и др",
+ "detail": {
+ "create": "Създаване",
+ "create_and_write": "Създаване и запис",
+ "delete": "Изтриване",
+ "description": "Описание",
+ "name": "Име",
+ "new_tag": "Нов маркер",
+ "tag_id": "ID на маркера",
+ "tag_id_placeholder": "Автоматично генериране, когато остане празно",
+ "update": "Актуализиране",
+ "usage": "Маркерът може да задейства автоматизация при сканиране. Можете да използвате NFC маркери, QR кодове или всякакъв друг маркер. Използвайте нашия {companion_link}, за да запишете този маркер в програмируем NFC маркер или да създадете QR код по-долу."
+ },
+ "edit": "Редактиране",
+ "headers": {
+ "last_scanned": "Последно сканиране",
+ "name": "Име"
+ },
+ "learn_more": "Научете повече за маркерите",
+ "never_scanned": "Никога не е сканиран",
+ "no_tags": "Няма маркери",
+ "write": "Запис"
+ },
+ "updates": {
+ "more_updates": "+ {count} актуализации",
+ "review": "преглед",
+ "show": "показване",
+ "show_all_updates": "Показване на всички актуализации",
+ "title": "{count} {count, plural,\n one {актуализация}\n other {актуализации}\n}",
+ "unable_to_fetch": "Наличните актуализации не могат да бъдат извлечени",
+ "version_available": "Налична е версия {version_available}"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Добавяне на потребител",
+ "create": "Създаване",
+ "local_only": "Само локално",
+ "password": "Парола",
+ "password_confirm": "Потвърди парола",
+ "password_not_match": "Паролите не съвпадат"
+ },
+ "caption": "Потребители",
+ "description": "Управлявайте потребителските акаунти на Home Assistant",
+ "editor": {
+ "activate_user": "Активиране на потребител",
+ "active": "Активен",
+ "active_tooltip": "Контролира дали потребителят може да влиза",
+ "admin": "Администратор",
+ "caption": "Преглед на потребителя",
+ "change_password": "Смяна на парола",
+ "confirm_user_deletion": "Наистина ли искате да изтриете {name}?",
+ "deactivate_user": "Деактивиране на потребителя",
+ "delete_user": "Изтриване на потребителя",
+ "group": "Група",
+ "id": "ID",
+ "local_only": "Може да се влиза само от локалната мрежа",
+ "name": "Показвано име",
+ "new_password": "Нова парола",
+ "owner": "Собственик",
+ "password_changed": "Паролата беше променена успешно",
+ "system_generated": "Генериран от системата",
+ "system_generated_users_not_editable": "Неуспешно обновяване на системно генерираните потребители",
+ "system_generated_users_not_removable": "Не може да се премахнат генерираните от системата потребители.",
+ "unnamed_user": "Неименуван потребител",
+ "update_user": "Актуализиране",
+ "username": "Потребителско име"
+ },
+ "is_local": "Локален потребител",
+ "is_owner": "Собственик",
+ "is_system": "Потребител на системата",
+ "picker": {
+ "add_user": "Добавяне на потребител",
+ "headers": {
+ "group": "Група",
+ "is_active": "Активен",
+ "is_owner": "Собственик",
+ "local": "Само локално",
+ "name": "Показвано име",
+ "system": "Генерирано от системата",
+ "username": "Потребителско име"
+ }
+ },
+ "users_privileges_note": "Функцията на потребителската група е в процес на разработка. Потребителят няма да може да администрира чрез потребителския интерфейс. Все още проверяваме всички крайни точки на API за управление, за да гарантираме, че те ограничават правилно достъпа до администратори."
+ },
+ "zha": {
+ "add_device": "Добавяне на устройство",
+ "add_device_page": {
+ "discovered_text": "Устройствата ще се показват тук, след като бъдат открити.",
+ "no_devices_found": "Не бяха намерени устройства, уверете се, че те са в режим на сдвояване и ги дръжте будни, докато откриването работи.",
+ "pairing_mode": "Уверете се, че вашите устройства са в режим на сдвояване. Проверете инструкциите на вашето устройство за да разберете как да направите това.",
+ "search_again": "Потърси отново",
+ "spinner": "Търсене на ZHA Zigbee устройства…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Атрибути на избрания клъстер"
+ },
+ "clusters": {
+ "header": "Клъстери",
+ "introduction": "Клъстерите са градивните елементи за функционалността на Zigbee. Те разделят функционалността на логически единици. Има типове клиенти и сървъри, състоящи се от атрибути и команди."
+ },
+ "common": {
+ "clusters": "Клъстери",
+ "value": "Стойност"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Преки пътища",
+ "update_button": "Актуализиране на конфигурацията"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Конфигурирането завърши",
+ "CONFIGURED_status_text": "Инициализация",
+ "INITIALIZED": "Инициализацията завърши",
+ "INITIALIZED_status_text": "Устройството е готово за употреба",
+ "INTERVIEW_COMPLETE": "Разпита приключи",
+ "INTERVIEW_COMPLETE_status_text": "Конфигуриране",
+ "PAIRED": "Намерено устройство",
+ "PAIRED_status_text": "Започване на разпит"
+ },
+ "groups": {
+ "add_group": "Добавяне на група",
+ "add_members": "Добавяне на членове",
+ "caption": "Групи",
+ "create": "Създай група",
+ "create_group": "Zigbee Home Automation - Създаване на група",
+ "create_group_details": "Въведете необходимите данни, за да създадете нова zigbee група",
+ "creating_group": "Създаване на група",
+ "delete": "Изтриване на група",
+ "group_details": "Тук са всички подробности за избраната Zigbee група.",
+ "group_info": "Информация за групата",
+ "group_name_placeholder": "Име на групата",
+ "group_not_found": "Не е намерена група!",
+ "groups": "Групи",
+ "members": "Членове",
+ "remove_members": "Премахване на членове",
+ "removing_members": "Премахване на членове"
+ },
+ "network": {
+ "caption": "Мрежа"
+ },
+ "visualization": {
+ "auto_zoom": "Автоматично увеличение",
+ "caption": "Визуализация",
+ "header": "Визуализация на мрежата",
+ "refresh_topology": "Обновяване на топологията",
+ "zoom_label": "Увеличете до устройство"
+ }
+ },
+ "zone": {
+ "add_zone": "Добавяне на зона",
+ "caption": "Зони",
+ "configured_in_yaml": "Зоните, конфигурирани чрез configuration.yaml, не могат да се редактират чрез потребителския интерфейс.",
+ "confirm_delete": "Наистина ли искате да изтриете тази зона?",
+ "create_zone": "Създаване на зона",
+ "description": "Управлявайте зоните, в които искате да проследявате хората",
+ "detail": {
+ "create": "Създаване",
+ "delete": "Изтрий",
+ "icon": "Икона",
+ "icon_error_msg": "Иконата трябва да е във формат „prefix:iconname“, например: „mdi:home“",
+ "latitude": "Географска ширина",
+ "longitude": "Географска дължина",
+ "name": "Име",
+ "new_zone": "Нова зона",
+ "passive": "Пасивна",
+ "radius": "Радиус",
+ "required_error_msg": "Полето е задължително",
+ "update": "Актуализиране"
+ },
+ "edit_home_zone": "Радиусът на зоната \"Дом\" все още не може да бъде редактиран. Плъзнете маркера на картата, за да преместите въпросната зона.",
+ "edit_zone": "Редактиране на зона",
+ "no_zones_created_yet": "Изглежда, че все още не сте създали никакви зони."
+ },
+ "zwave": {
+ "common": {
+ "index": "Индекс",
+ "instance": "Устройство",
+ "unknown": "неизвестно",
+ "value": "Стойност",
+ "wakeup_interval": "Интервал за събуждане"
+ },
+ "description": "Управлявайте своята Z-Wave мрежа",
+ "learn_more": "Научете повече за Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "Мигриране към OpenZWave",
+ "introduction": "Този съветник ще ви помогне да мигрирате от старата интеграция Z-Wave към интеграцията OpenZWave, която в момента е бета версия."
+ },
+ "zwave_js": {
+ "header": "Мигрирайте към Z-Wave JS",
+ "introduction": "Тази интеграция вече не се поддържа и ви съветваме да преминете към новата Z-Wave JS интеграция. Този съветник ще ви помогне да мигрирате от наследената Z-Wave интеграция към новата Z-Wave JS интеграция."
+ }
+ },
+ "network_management": {
+ "header": "Управление на Z-Wave мрежата",
+ "introduction": "Изпълнение на команди, които засягат Z-Wave мрежата. Няма да получите обратна информация за това дали повечето команди са успели, но можете да проверите OZW лог файла, за да се опитате да разберете."
+ },
+ "network_status": {
+ "network_started": "Z-Wave мрежата е стартирана",
+ "network_started_note_all_queried": "Всички устройства бяха разпитани.",
+ "network_started_note_some_queried": "Будните устройства бяха разпитани. Спящите устройства ще бъдат разпитани, когато са на линия.",
+ "network_starting": "Стартиране на Z-Wave мрежа…",
+ "network_starting_note": "Това може да отнеме известно време в зависимост от размера на мрежата Ви.",
+ "network_stopped": "Z-Wave мрежата е спряна"
+ },
+ "node_config": {
+ "config_parameter": "Конфигурационен параметър",
+ "config_value": "Конфигурационна стойност",
+ "false": "Невярно",
+ "header": "Конфигурационни опции на устройството",
+ "seconds": "секунди",
+ "set_config_parameter": "Задайте конфигурационен параметър",
+ "set_wakeup": "Настрой интервал за събуждане",
+ "true": "Вярно"
+ },
+ "node_management": {
+ "add_to_group": "Добавяне към група",
+ "group": "Група",
+ "node_protection": "Защита на възела",
+ "nodes": "Възли",
+ "nodes_in_group": "Други възли в тази група:",
+ "pooling_intensity": "Честота на опресняване",
+ "protection": "Защита",
+ "remove_from_group": "Премахване от групата"
+ },
+ "services": {
+ "add_node": "Добавяне на устройство",
+ "add_node_secure": "Добавяне на криптирано устройство",
+ "cancel_command": "Отмени командата",
+ "heal_network": "Оздравяване на мрежата",
+ "node_info": "Информация за възела",
+ "remove_node": "Премахване на устройство",
+ "save_config": "Запазване на конфигурацията",
+ "soft_reset": "Soft нулиране",
+ "start_network": "Стартиране на мрежата",
+ "stop_network": "Спиране на мрежата",
+ "test_network": "Тестване на мрежата"
+ },
+ "values": {
+ "header": "Стойности на устройсто"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "inclusion_failed": "Възелът не може да бъде добавен. Моля, проверете журналите за повече информация.",
+ "inclusion_finished": "Възелът е добавен.",
+ "interview_failed": "Разпита на устройството не бе успешен. Допълнителна информация може да е налична в логовете.",
+ "interview_started": "Устройството се разпитва. Това може да отнеме известно време.",
+ "qr_code": "QR код",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Пример: Стари брави на врати без поддръжка на S2",
+ "title": "S0 наследено"
+ },
+ "S2_AccessControl": {
+ "description": "Пример: Брави на врати и гаражни врати",
+ "title": "S2 Контрол на достъпа"
+ },
+ "S2_Authenticated": {
+ "description": "Пример: Осветление, сензори и системи за сигурност",
+ "title": "S2 удостоверено"
+ },
+ "S2_Unauthenticated": {
+ "title": "S2 неудостоверено"
+ }
+ },
+ "title": "Добавяне на Z-Wave възел"
+ },
+ "common": {
+ "add_node": "Добавяне на възел",
+ "back": "Назад",
+ "close": "Затвори",
+ "heal_network": "Заздравяване на мрежата",
+ "network": "Мрежа",
+ "node_id": "ID на възел",
+ "reconfigure_server": "Пренастройване на сървъра",
+ "remove_node": "Премахване на възел",
+ "source": "Източник"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n one {устройство}\n other {устройства}\n}",
+ "driver_version": "Версия на драйвера",
+ "dump_dead_nodes_title": "Някои от вашите възли са мъртви",
+ "dump_not_ready_confirm": "Изтегляне",
+ "dump_not_ready_title": "Не всички възли все още са готови",
+ "introduction": "Управлявайте вашата Z-Wave мрежа и Z-Wave възли",
+ "server_url": "URL адрес на сървъра",
+ "server_version": "Версия на сървъра"
+ },
+ "device_info": {
+ "device_config": "Конфигуриране на устройство",
+ "node_status": "Състояние на възела",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Версия {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "Заздравяването на мрежата е отменено.",
+ "healing_complete": "Заздравяването на мрежата е завършено.",
+ "healing_failed": "Заздравяването не успя. Допълнителна информация може да бъде налична в дневниците.",
+ "in_progress": "- Заздравяването на мрежата е в ход. Това ще отнеме известно време.",
+ "introduction": "Започнете заздравяване на Z-Wave мрежата. Заздравяването на мрежата ще предизвика всички устройства да преизчислят маршрутите си към контролера, което е препоръчително, ако наскоро сте премествали устройства или контролера си.",
+ "run_in_background": "Можете да затворите този диалогов прозорец и заздравяването на мрежата ще продължи във фонов режим.",
+ "start_heal": "Започване на заздравяването",
+ "stop_heal": "Спри заздравяването",
+ "title": "Заздравяване на Z-wave мрежата",
+ "traffic_warning": "Процесът на заздравяване генерира голямо количество трафик в мрежата на Z-Wave. Това може да накара устройствата да реагират бавно (или изобщо да не реагират), докато заздравяването е в ход."
+ },
+ "heal_node": {
+ "healing_failed_check_logs": "В журналите може да има допълнителна информация."
+ },
+ "navigation": {
+ "logs": "Логове",
+ "network": "Мрежа"
+ },
+ "network_status": {
+ "connected": "Свързан",
+ "connecting": "Свързване",
+ "unknown": "Неизвестен"
+ },
+ "node_config": {
+ "attribution": "Параметрите и описанията на конфигурацията на устройството се предоставят от {device_database}",
+ "battery_device_notice": "Устройствата на батерии трябва да са будни, за да актуализират конфигурацията си. Моля, вижте ръководството на устройството за инструкции как да го събудите.",
+ "error_device_not_found": "Не е намерено устройство",
+ "header": "Z-Wave конфигурация на устройството",
+ "introduction": "Управление и настройване на специфични конфигурационни параметри на подбраното устройството (възел, node)",
+ "parameter": "Параметър",
+ "parameter_is_read_only": "Този параметър е само за четене.",
+ "set_param_accepted": "Параметърът е актуализиран.",
+ "set_param_error": "Възникна грешка.",
+ "zwave_js_device_database": "Z-Wave JS база данни с устройства"
+ },
+ "node_status": {
+ "unknown": "Неизвестен"
+ },
+ "provisioned": {
+ "dsk": "DSK"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "Ще трябва да събудите устройствата, захранвани с батерии, преди да започнете повторното интервю. Вижте ръководството на вашето устройство за инструкции как да го събудите.",
+ "in_progress": "Устройството се разпитва. Това може да отнеме известно време.",
+ "interview_complete": "Разпита на устройството приключи.",
+ "interview_failed": "Разпита на устройството не бе успешен. Допълнителна информация може да е налична в логовете.",
+ "introduction": "Повторно разпитване на устройство във вашата Z-Wave мрежа. Използвайте тази функция, ако устройството има липсваща или неправилна функционалност.",
+ "run_in_background": "Можете да затворите този диалогов прозорец и разпита ще продължи във фонов режим.",
+ "start_reinterview": "Започване на нов разпит",
+ "title": "Повторен разпит на Z-Wave устройство"
+ },
+ "remove_failed_node": {
+ "in_progress": "Премахването на устройството е в ход.",
+ "removal_finished": "Възела {id} е премахнат от вашата мрежа Z-Wave."
+ },
+ "remove_node": {
+ "exclusion_failed": "Възелът не може да бъде премахнат. Моля, проверете журналите за повече информация.",
+ "title": "Премахване на Z-Wave възел"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Без"
+ },
+ "S0_Legacy": {
+ "description": "Пример: Стари брави за врати без поддръжка на S2",
+ "title": "S0 наследено"
+ },
+ "S2_AccessControl": {
+ "description": "Пример: Брави на врати и гаражни врати",
+ "title": "S2 контрол на достъпа"
+ },
+ "S2_Authenticated": {
+ "description": "Пример: Осветление, сензори и системи за сигурност",
+ "title": "S2 удостоверено"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Той ще има достъп до всички данни в Home Assistant."
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "available_events": "Налични събития",
+ "count_listeners": "({count} слушатели)",
+ "title": "Събития"
+ },
+ "services": {
+ "all_parameters": "Всички налични параметри",
+ "column_description": "Описание",
+ "column_example": "Пример",
+ "column_parameter": "Параметър",
+ "no_template_ui_support": "Потребителският интерфейс не поддържа шаблони, все още можете да използвате YAML редактора.",
+ "title": "Услуги",
+ "ui_mode": "Отидете в режим Потребителски интерфейс",
+ "yaml_mode": "Отидете в YAML режим",
+ "yaml_parameters": "Параметрите са налични само в YAML режим"
+ },
+ "states": {
+ "attributes": "Атрибути",
+ "copy_id": "Копиране на идентификатора в клипборда",
+ "current_entities": "Настоящи обекти",
+ "description1": "Задайте представянето на устройство или обект в Home Assistant.",
+ "description2": "Промяната е фиктивна, до следваща актуализация на устройството или обекта.",
+ "entity": "Обект",
+ "filter_attributes": "Филтриране на атрибутите",
+ "filter_entities": "Филтриране на обектите",
+ "filter_states": "Филтриране на състоянията",
+ "last_changed": "Последна промяна",
+ "last_updated": "Последна актуализация",
+ "more_info": "Повече информация",
+ "no_entities": "Няма обекти",
+ "set_state": "Задаване на състояние",
+ "state": "Състояние",
+ "state_attributes": "Атрибути на състоянието (YAML, по избор)",
+ "title": "Състояния"
+ },
+ "statistics": {
+ "fix_issue": {
+ "fix": "Поправяне на проблем",
+ "units_changed": {
+ "clear": "Изтриване на всички стари статистически данни за този обект"
+ }
+ },
+ "issues": {
+ "units_changed": "Мерната единица на този обект е променена от ''{metadata_unit}'' на ''{state_unit}''.",
+ "unsupported_unit": "Мерната единицата (''{state_unit}'') на този обект не съответства на мерната единица на класа на устройството ''{device_class}''."
+ },
+ "no_issue": "Няма проблем",
+ "title": "Статистика"
+ },
+ "templates": {
+ "all_listeners": "Този шаблон следи за всички събития на промяна на състояние.",
+ "description": "Шаблоните се изобразяват с помощта на механизма за шаблони Jinja2 с някои специфични разширения на Home Assistant.",
+ "domain": "Домейн",
+ "editor": "Редактор на шаблони",
+ "entity": "Обект",
+ "jinja_documentation": "Документация за Jinja2 шаблони",
+ "listeners": "Този шаблон следи за събития със следните промени на състояния:",
+ "no_listeners": "Този шаблон не слуша никакви събития и няма да се актуализира автоматично.",
+ "reset": "Връщане към демонстрационен шаблон",
+ "result_type": "Тип на резултата",
+ "template_extensions": "Разширения на шаблона за Home Assistant",
+ "time": "Този шаблон се актуализира в началото на всяка минута.",
+ "title": "Шаблон",
+ "unknown_error_template": "Неизвестна грешка при визуализирането на шаблон"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Следене на отделни устройства",
+ "energy_distribution_title": "Разпределение на енергия",
+ "energy_gas_graph_title": "Консумация на газ",
+ "energy_sources_table_title": "Източници",
+ "energy_usage_graph_title": "Консумация на енергия"
+ },
+ "charts": {
+ "by_device": "Консумация по устройство",
+ "solar": "Слънчева",
+ "stat_house_energy_meter": "Общо потребление на енергия"
+ },
+ "setup": {
+ "back": "Назад",
+ "done": "Покажи ми моето таблото за енергия!",
+ "next": "Напред"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Можете да използвате тази функция само когато сте поели контрола над потребителския интерфейс на Lovelace.",
+ "saving_failed": "Запазването на конфигурацията на потребителския интерфейс на Lovelace не бе успешно.",
+ "yaml_unsupported": "Не можете да използвате тази функция, когато използвате потребителския интерфейс на Lovelace в режим YAML."
+ },
+ "cards": {
+ "confirm_delete": "Наистина ли искате да изтриете тази карта?",
+ "empty_state": {
+ "go_to_integrations_page": "Отидете на страницата за интеграции.",
+ "no_devices": "Тази страница ви позволява да контролирате устройствата си, но изглежда, че все още нямате настроени устройства. Отидете на страницата за интеграции, за да започнете.",
+ "title": "Добре дошли у дома"
+ },
+ "energy": {
+ "energy_devices_graph": {
+ "energy_usage": "Консумация на енергия"
+ },
+ "energy_distribution": {
+ "battery": "Акумулатор",
+ "gas": "Газ",
+ "go_to_energy_dashboard": "Отидете на таблото за енергия",
+ "grid": "Мрежа",
+ "home": "Дом",
+ "non_fossil": "Неизкопаеми",
+ "solar": "Слънчева"
+ },
+ "energy_solar_graph": {
+ "forecast": "Прогноза {name}",
+ "production": "Производство {name}"
+ },
+ "energy_sources_table": {
+ "energy": "Енергия",
+ "grid_total": "Мрежа общо",
+ "source": "Източник"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Комбинирано от мрежата",
+ "total_consumed": "Общо консумирани {num} kWh",
+ "total_returned": "Общо върнати {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "net_consumed_grid": "Нетно потребление от мрежата",
+ "net_returned_grid": "Нетно върнато към мрежата"
+ },
+ "loading": "Зареждане...",
+ "no_data": "Няма данни за показване. Може да отнеме до 2 часа, за да пристигнат нови данни, след като конфигурирате таблото за енергия.",
+ "no_data_period": "Няма данни за този период.",
+ "solar_consumed_gauge": {
+ "not_produced_solar_energy": "Вие не сте произвеждали никаква слънчева енергия"
+ }
+ },
+ "map": {
+ "reset_focus": "Нулиране на фокуса"
+ },
+ "picture-elements": {
+ "call_service": "Извикай услуга {name}",
+ "hold": "Задържане:",
+ "more_info": "Показване на повече информация: {name}",
+ "navigate_to": "Придвижете се до {location}",
+ "tap": "Натиснете:",
+ "toggle": "Превключване на {name}",
+ "url": "Отваряне на прозорец към {url_path}"
+ },
+ "safe-mode": {
+ "header": "Активиран е безопасен режим"
+ },
+ "shopping-list": {
+ "add_item": "Добави артикул",
+ "checked_items": "Отметнати артикули",
+ "clear_items": "Изчистване на отметнатите артикули",
+ "drag_and_drop": "Плъзнете и пуснете",
+ "reorder_items": "Пренареждане на артикулите"
+ },
+ "show_more_info": "Показване на повече информация",
+ "starting": {
+ "description": "Home Assistant стартира, моля, изчакайте …"
+ }
+ },
+ "changed_toast": {
+ "message": "Конфигурацията на потребителския интерфейс на Lovelace за това табло е актуализирана. Опресняване, за да видите промените?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Ден",
+ "month": "Месец",
+ "next": "Следващ",
+ "previous": "Предишен",
+ "today": "Днес",
+ "week": "Седмица",
+ "year": "Година"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Извикване на услуга",
+ "default_action": "Действие по подразбиране",
+ "more-info": "Повече информация",
+ "none": "Няма действие",
+ "toggle": "Превключване",
+ "url": "URL Адрес"
+ },
+ "url_path": "URL път"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Налични състояния",
+ "description": "Картата \"Алармен панел\" ви позволява да активирате и дезактивирате интеграциите на контролния панел на алармата.",
+ "name": "Алармен панел"
+ },
+ "area": {
+ "name": "Област"
+ },
+ "button": {
+ "default_action_help": "Действието по подразбиране зависи от възможностите на обекта, то ще бъде или превключване, или показване на повече информация.",
+ "description": "Картата \"Бутон\" ви позволява да добавяте бутони ,които да изпълненяват задачи.",
+ "name": "Бутон"
+ },
+ "calendar": {
+ "calendar_entities": "Обекти в календара",
+ "description": "Картата Календар показва календар, включително изгледи за ден, седмица и списък",
+ "inital_view": "Начален изглед",
+ "name": "Календар",
+ "views": {
+ "dayGridDay": "Ден",
+ "dayGridMonth": "Месец",
+ "listWeek": "Списък"
+ }
+ },
+ "conditional": {
+ "card": "Карта",
+ "change_type": "Промяна на типа",
+ "condition_explanation": "Картата ще се покаже, когато са изпълнени ВСИЧКИ условия по-долу.",
+ "conditions": "Условия",
+ "current_state": "текущ",
+ "description": "Условната карта показва друга карта, базирана на състояния на обект.",
+ "name": "Условна",
+ "state_equal": "Състоянието е еквивалентно на",
+ "state_not_equal": "Състоянието не е еквивалентно на"
+ },
+ "config": {
+ "optional": "По желание",
+ "required": "Задължително"
+ },
+ "entities": {
+ "description": "Картата Обекти е най-често срещаният тип карта. Тя групира елементите заедно в списъци.",
+ "edit_special_row": "Прегледайте подробностите за този ред, като щракнете върху бутона за редактиране",
+ "entity_row": {
+ "attribute": "Атрибут",
+ "button": "Бутон",
+ "buttons": "Бутони",
+ "call-service": "Извикване на услуга",
+ "conditional": "Условна",
+ "divider": "Разделител",
+ "section": "Раздел",
+ "weblink": "Уеб връзка"
+ },
+ "entity_row_editor": "Редактор на обекти",
+ "name": "Обекти",
+ "secondary_info_values": {
+ "brightness": "Яркост",
+ "entity-id": "ID на обекта",
+ "last-changed": "Последна промяна",
+ "last-triggered": "Последно задействане",
+ "last-updated": "Последна актуализация",
+ "none": "Няма вторична информация",
+ "position": "Позиция",
+ "tilt-position": "Наклон"
+ },
+ "show_header_toggle": "Показване на превключване на заглавка?",
+ "special_row": "специален ред",
+ "toggle": "Превключване на обекти."
+ },
+ "entity-filter": {
+ "description": "Картата \"Филтър на обекти\" ви позволява да дефинирате списък с обекти, които искате да проследявате само в определено състояние.",
+ "name": "Филтър на обектите"
+ },
+ "entity": {
+ "description": "Картата \"Обект\" ви дава бърз преглед на състоянието на избран обект.",
+ "name": "Обект"
+ },
+ "gauge": {
+ "severity": {
+ "define": "Определете тежестта?",
+ "green": "Зелено",
+ "red": "Червено",
+ "yellow": "Жълто"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Съотношение на пропорциите",
+ "attribute": "Атрибут",
+ "camera_image": " Камера Обект",
+ "camera_view": "Камера Изглед",
+ "days_to_show": "Дни за показване",
+ "entities": "Обекти",
+ "entity": "Обект",
+ "hold_action": "Действие Задържане",
+ "hours_to_show": "Часове за показване",
+ "icon": "Икона",
+ "icon_height": "Височина на иконата",
+ "image": "Път до изображението",
+ "manual": "Ръчно",
+ "manual_description": "Необходимо е да добавите персонализиранa карта или просто искате ръчно да напишете YAML?",
+ "maximum": "Максимум",
+ "minimum": "Минимум",
+ "name": "Име",
+ "no_theme": "Няма тема",
+ "refresh_interval": "Интервал на опресняване",
+ "search": "Търсене",
+ "show_icon": "Показване на иконата?",
+ "show_name": "Показване на името?",
+ "show_state": "Показване на състоянието?",
+ "state": "Състояние",
+ "state_color": "Да се оцветят ли иконите спрямо състоянието?",
+ "tap_action": "Действие Докосване",
+ "theme": "Тема",
+ "title": "Заглавие",
+ "unit": "Единица",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Колони"
+ },
+ "grid": {
+ "columns": "Колони",
+ "description": "Картата Решетка ви позволява да показвате няколко карти, които да подредите в решетка.",
+ "name": "Решетка"
+ },
+ "humidifier": {
+ "description": "Картата \"Овлажнител\" дава контрол върху вашия овлажнител. Позволява ви да промените влажността и режима на обекта.",
+ "name": "Овлажнител"
+ },
+ "iframe": {
+ "name": "Уеб страница"
+ },
+ "light": {
+ "name": "Осветление"
+ },
+ "logbook": {
+ "description": "Картата \"Дневник\" показва списък със събития за обекти.",
+ "name": "Дневник"
+ },
+ "map": {
+ "dark_mode": "Тъмен режим?",
+ "default_zoom": "Мащабиране по подразбиране",
+ "geo_location_sources": "Източници на геолокация",
+ "name": "Карта",
+ "source": "Източник"
+ },
+ "markdown": {
+ "content": "Съдържание"
+ },
+ "media-control": {
+ "description": "Картата за управление на плейърите се използва за показване на обекти на мултимедийния плейър в интерфейс с лесни за използване контроли.",
+ "name": "Управление на плейърите"
+ },
+ "picture": {
+ "name": "Снимка"
+ },
+ "plant-status": {
+ "description": "Картата за Статус на растението е за всички прекрасни ботаници.",
+ "name": "Статус на растение"
+ },
+ "sensor": {
+ "graph_type": "Графичен тип",
+ "name": "Сензор",
+ "show_more_detail": "Показване на повече подробности"
+ },
+ "shopping-list": {
+ "description": "Картата \"Списък за пазаруване\" ви позволява да добавяте, редактирате, отметвате и изчиствате елементи от вашия списък за пазаруване.",
+ "integration_not_loaded": "Тази карта изисква да се настрои интеграцията на „shopping_list“.",
+ "name": "Списък за пазаруване"
+ },
+ "statistics-graph": {
+ "description": "Картата Графика на статистиката Ви позволява да показвате графика на статистиката за всеки от изброените обекти.",
+ "name": "Графика на статистиката",
+ "period": "Период",
+ "periods": {
+ "5minute": "5 минути",
+ "day": "Ден",
+ "hour": "Час",
+ "month": "Месец"
+ }
+ },
+ "thermostat": {
+ "description": "Картата \"Термостат\" дава контрол върху вашия климатичен обект. Позволява ви да промените температурата и режима на обекта.",
+ "name": "Термостат"
+ },
+ "vertical-stack": {
+ "name": "Вертикална колона"
+ },
+ "weather-forecast": {
+ "name": "Прогноза за времето",
+ "show_both": "Показване на текущото време и прогноза",
+ "show_forecast": "Показване на прогноза",
+ "show_only_current": "Показване само на текущото време",
+ "show_only_forecast": "Показване само на прогноза"
+ }
+ },
+ "cardpicker": {
+ "by_card": "По карта",
+ "by_entity": "По обект",
+ "custom_card": "Персонализирана",
+ "domain": "Домейн",
+ "entity": "Обект",
+ "no_description": "Няма налично описание."
+ },
+ "common": {
+ "add": "Добавяне",
+ "clear": "Изчистване",
+ "edit": "Редактиране",
+ "none": "Без"
+ },
+ "edit_badges": {
+ "panel_mode": "Тези значки няма да се показват, защото този изглед е в „Панелен режим“.",
+ "view_no_badges": "Значките не се поддържат от текущия тип изглед."
+ },
+ "edit_card": {
+ "add": "Добавяне на карта",
+ "clear": "Изчистване",
+ "confirm_cancel": "Сигурни ли сте, че искате да отмените?",
+ "delete": "Изтриване на картата",
+ "duplicate": "Дублиране на картата",
+ "edit": "Редактиране",
+ "header": "Конфигуриране на Карта",
+ "move": "Преместване в изглед",
+ "move_after": "Преместване на картата след",
+ "move_before": "Преместване на картата преди",
+ "move_down": "Преместете картата надолу",
+ "move_up": "Преместете картата нагоре",
+ "options": "Още опции",
+ "pick_card": "Изберете картата, която искате да добавите.",
+ "pick_card_view_title": "Коя карта бихте искали да добавите към изгледа си {name}?",
+ "search_cards": "Търсене на карти",
+ "show_code_editor": "Редактирайте кода",
+ "show_visual_editor": "Показване на визуален редактор",
+ "toggle_editor": "Превключете редактора",
+ "typed_header": "Конфигурация на карта {type}",
+ "unsaved_changes": "Имате незапазени промени"
+ },
+ "edit_lovelace": {
+ "edit_title": "Редактиране на заглавието",
+ "explanation": "Това заглавие се показва над всичките ви изгледи в Lovelace",
+ "header": "Заглавие на вашия Lovelace потребителски интерфейс",
+ "title": "Заглавие"
+ },
+ "edit_view": {
+ "add": "Добавяне на изглед",
+ "delete": "Изтриване на изгледа",
+ "edit": "Редактиране на изгледа",
+ "header": "Конфигурация на изглед",
+ "header_name": "Конфигурация на изглед {name}",
+ "move_left": "Преместване на изгледа наляво",
+ "move_right": "Преместване на изгледа надясно",
+ "tab_badges": "Значки",
+ "tab_settings": "Настройки",
+ "tab_visibility": "Видимост",
+ "type": "Вид на изгледа",
+ "types": {
+ "panel": "Панел (1 карта)",
+ "sidebar": "Странична лента"
+ },
+ "visibility": {
+ "select_users": "Изберете кои потребители да виждат този изглед в навигацията"
+ }
+ },
+ "header": "Редактиране на Lovelace",
+ "header-footer": {
+ "choose_header_footer": "Изберете {type}",
+ "footer": "Футър",
+ "header": "Хедър",
+ "types": {
+ "buttons": {
+ "name": "Бутони"
+ },
+ "graph": {
+ "name": "Графика"
+ },
+ "picture": {
+ "name": "Снимка"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Управление на таблата",
+ "manage_resources": "Управление на ресурсите",
+ "open": "Отваряне на Lovelace меню",
+ "raw_editor": "Текстов редактор на Lovelace"
+ },
+ "migrate": {
+ "header": "Несъвместима конфигурация",
+ "migrate": "Мигриране на конфигурация",
+ "para_migrate": "Home Assistant може автоматично да добави идентификатори към всичките ви карти и изгледи, при натискане на бутона \"Мигриране на конфигурация\".",
+ "para_no_id": "Този елемент няма идентификатор. Моля, добавете идентификатор към този елемент в \"ui-lovelace.yaml\"."
+ },
+ "move_card": {
+ "header": "Изберете изглед, към който да преместите картата"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Ние автоматично ще генерираме вашите изгледи на потребителския интерфейс на Lovelace с вашите области и устройства, ако премахнете вашата конфигурация на потребителския интерфейс на Lovelace.",
+ "confirm_remove_config_title": "Наистина ли искате да премахнете вашата конфигурация на потребителския интерфейс на Lovelace?",
+ "confirm_unsaved_changes": "Имате незапазени промени. Наистина ли искате да излезете?",
+ "confirm_unsaved_comments": "Вашата конфигурация може да съдържа коментар(и), те няма да бъдат запазени. Искате ли да продължите?",
+ "error_invalid_config": "Вашата конфигурация не е валидна: {error}",
+ "error_remove": "Конфигурацията не може да бъде премахната: {error}",
+ "header": "Редактиране на конфигурацията",
+ "reload": "Презареждане",
+ "save": "Запазване",
+ "saved": "Запазено",
+ "unsaved_changes": "Незапазени промени"
+ },
+ "save_config": {
+ "close": "Затвори",
+ "empty_config": "Започнете с празно табло",
+ "header": "Поемете контрол над потребителския интерфейс на Lovelace",
+ "para": "В момента това табло се поддържа от Home Assistant. То се актуализира автоматично, когато станат достъпни нови обекти или компоненти на потребителския интерфейс на Lovelace. Ако поемете контрола, това табло вече няма да се актуализира автоматично. Винаги можете да създадете ново табло за управление в конфигурация, с което да си играете.",
+ "para_sure": "Наистина ли искате да поемете управлението на потребителския интерфейс?",
+ "save": "Поемете контрола",
+ "yaml_mode": "Използвате YAML режим за това табло, което означава, че не можете да промените вашата Lovelace конфигурация от потребителския интерфейс. Ако искате да управлявате това табло от потребителския интерфейс, премахнете „mode: yaml“ от вашата Lovelace конфигурация в „configuration.yaml.“."
+ },
+ "select_view": {
+ "dashboard_label": "Табло",
+ "header": "Изберете изглед",
+ "views_label": "Изглед"
+ },
+ "suggest_card": {
+ "add": "Добавете към изгледа",
+ "create_own": "Избиране на друга карта",
+ "header": "Създадохме предложение за вас"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Този изглед съдържа повече от една карта, но изгледът на панел може да показва само 1 карта."
+ }
+ }
+ },
+ "menu": {
+ "close": "Затвори",
+ "configure_ui": "Редактиране на таблото",
+ "help": "Помощ",
+ "reload_resources": "Презареждане на ресурсите"
+ },
+ "reload_lovelace": "Презареждане на Lovelace",
+ "reload_resources": {
+ "refresh_body": "Трябва да опресните страницата, за да завършите презареждането. Искате ли да се опресните сега?",
+ "refresh_header": "Искате ли да опресните?"
+ },
+ "unused_entities": {
+ "available_entities": "Това са обектите, които имате на разположение, но все още не са във вашия потребителски интерфейс на Lovelace.",
+ "domain": "Домейн",
+ "entity": "Обект",
+ "entity_id": "ID на обекта",
+ "last_changed": "Последна промяна",
+ "no_data": "Не са намерени неизползвани обекти",
+ "search": "Търсене на обекти",
+ "select_to_add": "Изберете обектите, които искате да добавите към дадена карта, и след това щракнете върху бутона \"Добавяне на карта\".",
+ "title": "Неизползвани обекти"
+ },
+ "views": {
+ "confirm_delete": "Изтриване на изгледа?",
+ "confirm_delete_existing_cards": "Изтриването на този изглед също ще премахне картите",
+ "confirm_delete_existing_cards_text": "Наистина ли искате да изтриете изгледа си \"{name}\"? Изгледът съдържа {number} карти, които ще бъдат изтрити. Това действие не може да бъде отменено.",
+ "confirm_delete_text": "Наистина ли искате да изтриете изгледа си \"{name}\"?"
+ },
+ "warning": {
+ "attribute_not_found": "Атрибут {attribute} не е наличен в: {entity}",
+ "entity_non_numeric": "Обектът не е число: {entity}",
+ "entity_not_found": "Обектът не е достъпен: {entity}",
+ "entity_unavailable": "{entity} в момента е недостъпен",
+ "starting": "Home Assistant стартира, все още може да не е налице всичко"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Изтриване",
+ "delete_prompt": "Изтриване на това съобщение?",
+ "empty": "Нямате съобщения",
+ "playback_title": "Възпроизвеждане на съобщение"
+ },
+ "map": {
+ "edit_zones": "Редактиране на зони"
+ },
+ "my": {
+ "documentation": "документация",
+ "error": "Възникна неизвестна грешка",
+ "faq_link": "My Home Assistant ЧЗВ"
+ },
+ "page-authorize": {
+ "abort_intro": "Входът е прекратен",
+ "authorizing_client": "На път сте да дадете {clientId} достъп до вашия Home Assistant.",
+ "form": {
+ "error": "Грешка: {error}",
+ "next": "Следващ",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Сесията изтече, моля влезте отново."
+ },
+ "error": {
+ "invalid_auth": "Невалидно потребителско име или парола",
+ "invalid_code": "Невалиден код за аутентикация"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Парола",
+ "username": "Потребителско име"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Дву-факторен код за аутентикация"
+ },
+ "description": "Отворете **{mfa_module_name}** на Вашето устройство за да видите Вашия дву-факторен код за аутентикация и да удостоверите Вашата идентичност:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Сесията изтече, моля влезте отново."
+ },
+ "error": {
+ "invalid_auth": "Невалидно потребителско име или парола",
+ "invalid_code": "Невалиден код за аутентикация"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Парола",
+ "username": "Потребителско име"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Дву-факторен код за аутентикация"
+ },
+ "description": "Отворете **{mfa_module_name}** на Вашето устройство за да видите Вашия дву-факторен код за аутентикация и да удостоверите Вашата идентичност:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Сесията изтече, моля влезте отново.",
+ "no_api_password_set": "Нямате конфигурирана API парола."
+ },
+ "error": {
+ "invalid_auth": "Невалидна API парола",
+ "invalid_code": "Невалиден код за аутентикация"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "API парола"
+ },
+ "description": "Моля, въведете API паролата от вашата HTTP конфигурация:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Дву-факторен код за аутентикация"
+ },
+ "description": "Отворете **{mfa_module_name}** на Вашето устройство за да видите Вашия дву-факторен код за аутентикация и да удостоверите Вашата идентичност:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "step": {
+ "init": {
+ "data": {
+ "user": "Потребител"
+ },
+ "description": "Моля, изберете потребител, като който искате да влезете:"
+ }
+ }
+ }
+ },
+ "unknown_error": "Нещо се обърка",
+ "working": "Моля, изчакайте"
+ },
+ "initializing": "Инициализиране",
+ "logging_in_to_with": "Влизане в **{locationName}** с **{authProviderName}**.",
+ "logging_in_with": "Вход с **{authProviderName}**.",
+ "pick_auth_provider": "Или влезте с",
+ "store_token": "Запомни ме"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "от {name}",
+ "introduction": "Добре дошъл у дома! Достигнахте демонстрацията на Home Assistant, където ще покажем най-добрите потребителски интерфейси, създадени от нашата общност.",
+ "learn_more": "Научете повече за Home Assistant",
+ "next_demo": "Следваща демонстрация"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Дейност",
+ "air": "Въздух",
+ "commute_home": "Пътуване до дома",
+ "entertainment": "Забавление",
+ "hdmi_input": "HDMI вход",
+ "hdmi_switcher": "HDMI превключвател",
+ "information": "Информация",
+ "lights": "Осветление",
+ "morning_commute": "Сутрешно пътуване",
+ "total_tv_time": "Време пред телевизора",
+ "turn_tv_off": "Изключи телевизора",
+ "volume": "Сила на звука"
+ },
+ "names": {
+ "family_room": "Семейна стая",
+ "hallway": "Коридор",
+ "kitchen": "Кухня",
+ "left": "Ляво",
+ "master_bedroom": "Главна спалня",
+ "mirror": "Огледало",
+ "patio": "Веранда",
+ "right": "Дясно",
+ "upstairs": "Втори етаж"
+ },
+ "unit": {
+ "minutes_abbr": "мин",
+ "watching": "Гледане"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Следващ"
+ },
+ "core-config": {
+ "button_detect": "Откриване",
+ "finish": "Напред",
+ "intro": "Здравейте {name} , добре дошли в Home Assistant. Как бихте искали да назовете дома си?",
+ "intro_location": "Бихме искали да знаем къде живеете. Тази информация ще помогне за показването на информация и създаването на автоматизаци, които се активират от изгрев и залез. Тези данни никога не се споделят извън мрежата ви.",
+ "intro_location_detect": "Можем да ви помогнем да попълните тази информация, като изпратим еднократна заявка до външна услуга.",
+ "location_name": "Име на Вашата Home Assistant инсталация",
+ "location_name_default": "У дома"
+ },
+ "finish": "Завърши",
+ "integration": {
+ "finish": "Завърши",
+ "intro": "Устройствата и услугите са представени в Home Assistant като Интеграции. Можете да ги настроите сега или да го направите по-късно от конфигурационния екран.",
+ "more_integrations": "Още"
+ },
+ "intro": "Готови ли сте да събудите дома си, да отвоювате независимостта си и да се присъедините към световна общност от хора автоматизиращи домовете си?",
+ "next": "Следващ",
+ "restore": {
+ "addons": "Добавки",
+ "confirm_password": "Потвърдете паролата за резервното копие",
+ "description": "Като алтернатива можете да възстановите от предишно резервно копие.",
+ "folders": "Папки",
+ "full_backup": "Пълно резервно копие",
+ "hide_log": "Скриване на пълния дневник",
+ "in_progress": "Възстановяването е в ход",
+ "partial_backup": "Частично резервно копие",
+ "password": "Парола",
+ "password_protection": "Защита с парола",
+ "select_type": "Изберете какво да възстановите",
+ "show_log": "Показване на пълния дневник",
+ "type": "Тип"
+ },
+ "user": {
+ "create_account": "Създай акаунт",
+ "data": {
+ "name": "Име",
+ "password": "Парола",
+ "password_confirm": "Потвърждение на парола",
+ "username": "Потребителско име"
+ },
+ "error": {
+ "password_not_match": "Паролите не съвпадат",
+ "required_fields": "Попълнете всички задължителни полета"
+ },
+ "intro": "Започнете, като създадете потребителски акаунт.",
+ "required_field": "Задължително"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Отключва разширени функции.",
+ "link_promo": "Научете повече",
+ "title": "Разширен режим"
+ },
+ "change_password": {
+ "confirm_new_password": "Потвърждение на новата парола",
+ "current_password": "Настояща парола",
+ "error_new_is_old": "Новата парола трябва да се различава от текущата парола",
+ "error_new_mismatch": "Въведените стойности на нова парола не съвпадат",
+ "error_required": "Задължително",
+ "header": "Смяна на парола",
+ "new_password": "Нова парола",
+ "submit": "Промяна",
+ "success": "Паролата беше променена успешно"
+ },
+ "current_user": "В момента сте влезли като {fullName}.",
+ "customize_sidebar": {
+ "button": "Редактиране",
+ "description": "Можете също да натиснете и задържите заглавието на страничната лента, за да активирате режима за редактиране.",
+ "header": "Промяна на реда и скриване на елементи от страничната лента"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Общ преглед (по подразбиране)",
+ "description": "Изберете табло по подразбиране за това устройство.",
+ "dropdown_label": "Табло",
+ "header": "Табло"
+ },
+ "enable_shortcuts": {
+ "description": "Активирайте или деактивирайте клавишните комбинации за извършване на различни действия в потребителския интерфейс.",
+ "header": "Клавишни комбинации"
+ },
+ "force_narrow": {
+ "description": "Това ще скрие страничната лента по подразбиране, подобно на изгледа в мобилната версия.",
+ "header": "Винаги скривай страничната лента"
+ },
+ "is_owner": "Вие сте собственик.",
+ "language": {
+ "dropdown_label": "Език",
+ "header": "Език",
+ "link_promo": "Помогнете за превода"
+ },
+ "logout": "Изход",
+ "logout_text": "Наистина ли искате да излезете?",
+ "logout_title": "Изход",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Сигурни ли сте, че искате да изтриете кода за достъп за {name}?",
+ "create": "Създай код",
+ "create_failed": "Възникна грешка при създаването на код за достъп.",
+ "created": "Създаване {date}",
+ "delete_failed": "Възникна грешка при изтриването на кода за достъп.",
+ "description": "Създайте дългосрочни кодове за достъп за да могат скриптовете Ви да взаимодействат с Home Assistant. Всеки код е валиден за 10 години от създаването си. Следните дългосрочни кодове са активни в момента.",
+ "empty_state": "Все още нямате дългосрочни кодове за достъп.",
+ "header": "Дългосрочни кодове за достъп",
+ "learn_auth_requests": "Научете се как да правите оторизирани заявки.",
+ "name": "Име",
+ "prompt_copy_token": "Копирайте кода си за достъп. Той няма да бъде показан отново.",
+ "prompt_name": "Дайте име на кода за достъп"
+ },
+ "mfa": {
+ "confirm_disable": "Сигурни ли сте, че искате да деактивирате {name}?",
+ "disable": "Деактивиране",
+ "enable": "Активиране",
+ "header": "Модули за много-факторна аутентикация"
+ },
+ "mfa_setup": {
+ "close": "Затвори",
+ "step_done": "Настройката е извършена за {step}",
+ "submit": "Изпращане",
+ "title_aborted": "Преустановено",
+ "title_success": "Успешно!"
+ },
+ "number_format": {
+ "description": "Изберете как да се форматират числата.",
+ "dropdown_label": "Формат на числата",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Авто (езикова настройка)",
+ "none": "Без",
+ "space_comma": "1 234 567,89",
+ "system": "Системна настройка"
+ },
+ "header": "Формат на числата"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Име на устройството",
+ "title": "Как трябва да се нарича това устройство?"
+ },
+ "description": "Изпращане на известия до това устройство.",
+ "error_load_platform": "Конфигуриране на html5 известия",
+ "error_use_https": "Изисква наличен SSL за уеб-интерфейса.",
+ "header": "Известия",
+ "link_promo": "Научете повече",
+ "push_notifications": "Известия"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Сигурни ли сте, че искате да изтриете кода за опресняване за {name}?",
+ "created_at": "Създаден на {date}",
+ "current_token_tooltip": "Не може да се изтрие текущия код за опресняване",
+ "delete_failed": "Възникна грешка при изтриването на кода за опресняване.",
+ "description": "Всеки код за опресняване представлява оторизирана сесия. Кодовете за опресняване се премахват, когато натиснете \"Изход\". Следните кодове за опресняване са активни във Вашия акаунт.",
+ "header": "Кодове за опресняване",
+ "last_used": "Последно използван на {date} от {location}",
+ "not_used": "Никога не е бил използван",
+ "token_title": "Код за опресняване за {clientId}"
+ },
+ "suspend": {
+ "header": "Автоматично затваряне на връзката"
+ },
+ "themes": {
+ "accent_color": "Цвят на акцента",
+ "dark_mode": {
+ "auto": "Авто",
+ "dark": "Тъмна",
+ "light": "Светла"
+ },
+ "dropdown_label": "Тема",
+ "error_no_theme": "Няма налични теми.",
+ "header": "Тема",
+ "link_promo": "Научете повече за темите",
+ "primary_color": "Основен цвят",
+ "reset": "Нулиране"
+ },
+ "time_format": {
+ "description": "Изберете как да се форматира времето.",
+ "dropdown_label": "Формат на времето",
+ "formats": {
+ "12": "12 часа (AM/PM)",
+ "24": "24 часа",
+ "language": "Авто (езикова настройка)",
+ "system": "Системна настройка"
+ },
+ "header": "Формат на времето"
+ },
+ "vibrate": {
+ "description": "Разрешаване или забраняване на вибрациите на това устройство при управление на устройства.",
+ "header": "Вибрация"
+ }
+ }
+ },
+ "sidebar": {
+ "done": "Готово",
+ "external_app_configuration": "Конфигурация на приложението"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/bn.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/bn.json
new file mode 100644
index 00000000..885f5405
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/bn.json
@@ -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 বছরের জন্য বৈধ হবে। নিম্নলিখিত দীর্ঘস্থায়ী অ্যাক্সেস টোকেনগুলি বর্তমানে সক্রিয়।"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/bs.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/bs.json
new file mode 100644
index 00000000..d6cd35e3
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/bs.json
@@ -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"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/ca.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/ca.json
new file mode 100644
index 00000000..cf297779
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/ca.json
@@ -0,0 +1,4673 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Entrada de configuració",
+ "device": "Dispositiu",
+ "integration": "Integració",
+ "user": "Usuari"
+ }
+ },
+ "groups": {
+ "owner": "Propietari",
+ "system-admin": "Administradors",
+ "system-read-only": "Usuaris de només lectura",
+ "system-users": "Usuaris"
+ },
+ "panel": {
+ "calendar": "Calendari",
+ "config": "Configuració",
+ "developer_tools": "Eines per a desenvolupadors",
+ "energy": "Energia",
+ "history": "Historial",
+ "logbook": "Diari de registre",
+ "mailbox": "Bústia",
+ "map": "Mapa",
+ "media_browser": "Multimèdia",
+ "profile": "Perfil",
+ "shopping_list": "Llista de la compra",
+ "states": "Visualització principal"
+ },
+ "state": {
+ "default": {
+ "off": "OFF",
+ "on": "ON",
+ "unavailable": "No disponible",
+ "unknown": "Desconegut"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Automàtic",
+ "off": "Desactivat",
+ "on": "Activat"
+ },
+ "hvac_action": {
+ "cooling": "Refredant",
+ "drying": "Assecant",
+ "fan": "Ventilació",
+ "heating": "Escalfant",
+ "idle": "Inactiu",
+ "off": "Apagat"
+ },
+ "preset_mode": {
+ "activity": "Activitat",
+ "away": "Absent",
+ "boost": "Incrementat",
+ "comfort": "Confort",
+ "eco": "Econòmic",
+ "home": "A casa",
+ "none": "Cap",
+ "sleep": "Dormint"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Automàtic",
+ "away": "A fora",
+ "baby": "Nadó",
+ "boost": "Incrementat",
+ "comfort": "Confort",
+ "eco": "Econòmic",
+ "home": "A casa",
+ "normal": "Normal",
+ "sleep": "Dormint"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Activad.",
+ "armed_away": "Activad.",
+ "armed_custom_bypass": "Activad.",
+ "armed_home": "Activad.",
+ "armed_night": "Activad.",
+ "armed_vacation": "Activad.",
+ "arming": "Activan.",
+ "disarmed": "Desacti.",
+ "disarming": "Desacti.",
+ "pending": "Pendent",
+ "triggered": "Dispara."
+ },
+ "default": {
+ "entity_not_found": "Entitat no trobada",
+ "error": "Error",
+ "unavailable": "No disp.",
+ "unknown": "Descon."
+ },
+ "device_tracker": {
+ "home": "A casa",
+ "not_home": "Fora"
+ },
+ "person": {
+ "home": "A casa",
+ "not_home": "Fora"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Per defecte",
+ "header": "Àudio",
+ "input": "Entrada",
+ "output": "Sortida"
+ },
+ "network": {
+ "container": "Contenidor",
+ "disabled": "Desactivada",
+ "header": "Xarxa",
+ "host": "Amfitrió"
+ },
+ "no_configuration": "Aquest complement no exposa cap configuració amb la que t'hi puguis manegar…",
+ "options": {
+ "edit_in_ui": "Edita a la IU",
+ "edit_in_yaml": "Edita com a YAML",
+ "header": "Opcions",
+ "invalid_yaml": "YAML invàlid",
+ "show_unused_optional": "Mostra les opcions de configuració opcionals no utilitzades"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "No s'ha pogut obtenir el registre de canvis del complement",
+ "go_to_config": "Edita la configuració",
+ "install": "No s'ha pogut instal·lar el complement",
+ "restart": "No s'ha pogut reiniciar el complement",
+ "start": "No s'ha pogut iniciar el complement",
+ "start_invalid_config": "Vés a configuració",
+ "stop": "No s'ha pogut aturar el complement",
+ "uninstall": "No s'ha pogut desinstal·lar el complement",
+ "validate_config": "No s'ha pogut validar la configuració del complement"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor ('Application Armor') és un mòdul de seguretat del nucli Linux que restringeix certes capacitats dels complements com l'accés a la xarxa, l'accés complet a sockets o els permisos per llegir, escriure o executar fitxers específics.\n\nEls autors del complement poden proporcionar els seus perfils de seguretat optimitzats per al complement, o demanar que es desactivi. Si AppArmor està desactivat, augmenten els riscos de seguretat i, per tant, el nivell de seguretat del complement se'n veurà ressentit.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "Un complement pot autenticar usuaris amb Home Assistant, cosa que permet que els usuaris puguin iniciar sessió a aplicacions que s'estan executant dins de complements mitjançant el seu nom d'usuari/contrasenya de Home Assistant. Aquesta insígnia indica si l'autor del complement ha demanat aquesta funcionalitat.",
+ "title": "Autenticació de Home Assistant"
+ },
+ "docker_api": {
+ "description": "Aquest complement, per petició del seu autor, demana accés a la instància de Docker del teu sistema. Aquest mode porporciona un control complet de tot el teu sistema Home Assistant al complement. Això genera possibles riscos de seguretat i podria fer malbé el sistema si no s'utilitza adequadament. Per aquesta raó, aquesta funció afecta negativament al nivell de seguretat del complement. \n\nAquest nivell d'accés no s'atorga automàticament i cal que el confirms. Per fer-ho, has de desactivar manualment el mode de protecció del complement. Desactiva el mode de protecció només si coneixes i confies en l'origen del complement.",
+ "title": "Accés complet a Docker"
+ },
+ "full_access": {
+ "description": "Aquest complement té accés complet al maquinari del teu sistema per petició del seu autor. Aquest accés és similar al mode privilegiat de Docker. Com que això genera possibles riscos de seguretat, aquesta funció afecta negativament al nivell de seguretat del complement. \n\nAquest accés no s'atorga automàticament i cal que el confirms. Per fer-ho, has de desactivar manualment el mode de protecció del complement. Desactiva el mode de protecció només si coneixes i confies en l'origen del complement.",
+ "title": "Accés complet al maquinari"
+ },
+ "hassio_api": {
+ "description": "Aquest complement té accés a l'API del Supervisor per petició del seu autor. Per defecte, el complement pot accedir a informació de la versió del teu sistema. Si demana a l'API accés de gestió o d'administrador, obtindrà accés per controlar diferents parts de Home Assistant. Aquest permís s'indica amb aquesta insígnia i afecta negativament al nivell de seguretat del complement.",
+ "title": "Accés a l'API del Supervisor"
+ },
+ "homeassistant_api": {
+ "description": "Aquest complement té permís per accedir a la teva instància de Home Assistant directament mitjançant l'API de Home Assistant. Aquest mode també gestiona l'autenticació del complement, cosa que li permet interactuar amb Home Assistant sense necessitat de tokens d'autenticació addicionals.",
+ "title": "Accés a l'API de Home Assistant"
+ },
+ "host_network": {
+ "description": "Els complements normalment s'executen dins la seva pròpia capa de xarxa aïllada, cosa que els impedeix accedir a la xarxa del sistema operatiu amfitrió. En alguns casos, aquest aïllament pot limitar la prestació dels serveis del complement. Per tant, l'aïllament pot ser eliminat per l'autor del complement; en aquest cas, el complement té un accés complet a les capacitats de xarxa del dispositiu amfitrió. Això li porporciona més capacitats però en redueix la seguretat, per tant, el nivell de seguretat del complement es reduirà quan aquesta opció s'utilitzi.",
+ "title": "Xarxa amfitrió"
+ },
+ "host_pid": {
+ "description": "Habitualment, els processos que executen els complements estan aïllats dels altres processos del sistema. L'autor del complement ha demanat tenir accés i poder crear processos del sistema amfitrió. Aquest mode dóna accés i control total de tot el teu sistema Home Assistant al complement. Això genera possibles riscos de seguretat i podria fer malbé el sistema si no s'utilitza adequadament. Per aquesta raó, aquesta funció afecta negativament al nivell de seguretat del complement. \n\nAquest nivell d'accés no s'atorga automàticament i cal que el confirms. Per fer-ho, has de desactivar manualment el mode de protecció del complement. Desactiva el mode de protecció només si coneixes i confies en l'origen del complement.",
+ "title": "Espai de noms de processos de l'amfitrió"
+ },
+ "ingress": {
+ "description": "Aquest complement utilitza Ingress per poder incrustar la seva interfície de manera segura a Home Assistant.",
+ "title": "Ingress"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "autenticació",
+ "core": "Nucli",
+ "docker": "docker",
+ "hardware": "maquinari",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "amfitrió",
+ "host_pid": "PID d'amfitrió",
+ "ingress": "ingress",
+ "rating": "nivell",
+ "stage": "fase"
+ },
+ "rating": {
+ "description": "Home Assistant proporciona un nivell de seguretat a cadascun dels complements que n'indica els riscos que comporta el seu ús. Com més accés tingui el complement al teu sistema, menor serà la puntuació, ja que els possibles riscos de seguretat augmenten. \n\nEl nivell es troba en una escala de l'1 al 6. On l'1 és la puntuació més baixa (menys segur i risc més alt) i la puntuació 6 és la puntuació més alta (més segur i risc més baix).",
+ "title": "Nivell de seguretat del complement"
+ },
+ "role": {
+ "admin": "administrador",
+ "backup": "còpia de seguretat",
+ "default": "per defecte",
+ "homeassistant": "homeasistant",
+ "manager": "gestor"
+ },
+ "stage": {
+ "description": "Els complements poden estar en una de les tres fases següents: \n\n{icon_stable} **Estable**: complements llestos per a ser utilitzats a producció. \n\n{icon_experimental} **Experimental**: poden contenir errors i pot ser que encara no estiguin acabats. \n\n{icon_deprecated} **Obsolet**: complements que ja no rebran més actualitzacions.",
+ "title": "Fase del complement"
+ },
+ "stages": {
+ "deprecated": "Obsolet",
+ "experimental": "Experimental"
+ }
+ },
+ "changelog": "Registre de canvis",
+ "cpu_usage": "Ús de CPU del complement",
+ "hostname": "Nom d'amfitrió",
+ "install": "instal·la",
+ "new_update_available": "{name} {version} està disponible",
+ "not_available_arch": "Aquest complement no és compatible amb el processador del dispositiu o amb el sistema operatiu que està instal·lat al dispositiu.",
+ "not_available_version": "Estàs utilitzant Home Assistant {core_version_installed}, per actualitzar el complement a aquesta versió, necessites com mínim la versió {core_version_needed} de Home Assistant",
+ "open_web_ui": "Obre la IU web",
+ "option": {
+ "auto_update": {
+ "description": "Actualitza el complement automàticament quan hi hagi una nova versió disponible",
+ "title": "Actualització automàtica"
+ },
+ "boot": {
+ "description": "Fa que el complement s'iniciï durant l'arrencada del sistema",
+ "title": "Inici a l'arrencada"
+ },
+ "ingress_panel": {
+ "description": "Afegeix aquest complement a la barra lateral",
+ "title": "Mostra a la barra lateral"
+ },
+ "protected": {
+ "description": "Bloqueja l'accés privilegiat del complement al sistema",
+ "title": "Mode de protecció"
+ },
+ "watchdog": {
+ "description": "Això farà que s'iniciï el complement en cas de que falli",
+ "title": "Gos guardià"
+ }
+ },
+ "protection_mode": {
+ "content": "El mode de protecció en aquest complement està desactivat. Això fa que el complement tingui accés complet a tot el sistema, cosa que afegeix riscos de seguretat i pot fer malbé el sistema si s'utilitza incorrectament. Desactiva el mode de protecció només si coneixes i confies en l'origen del complement.",
+ "enable": "Activa",
+ "title": "Mode de protecció desactivat!"
+ },
+ "ram_usage": "Ús de RAM del complement",
+ "rebuild": "reconstrueix",
+ "restart": "reinicia",
+ "start": "inicia",
+ "stop": "atura",
+ "uninstall": "desinstal·la",
+ "visit_addon_page": "Vés a la pàgina {name} per a més detalls"
+ },
+ "documentation": {
+ "get_documentation": "No s'ha pogut obtenir la documentació del complement, {error}"
+ },
+ "failed_to_reset": "No s'ha pogut reiniciar la configuració del complement, {error}",
+ "failed_to_save": "No s'ha pogut desar la configuració del complement, {error}",
+ "logs": {
+ "get_logs": "No s'han pogut obtenir els registres del complement, {error}"
+ },
+ "panel": {
+ "configuration": "Configuració",
+ "documentation": "Documentació",
+ "info": "Informació",
+ "log": "Registre"
+ },
+ "state": {
+ "installed": "El complement està instal·lat",
+ "not_available": "El complement no està disponible pel teu sistema",
+ "not_installed": "El complement no està instal·lat"
+ }
+ },
+ "backup": {
+ "addons": "Complements",
+ "confirm_password": "Confirma la contrasenya de la còpia de seguretat",
+ "could_not_create": "No s'ha pogut crear la còpia de seguretat",
+ "create": "Crea",
+ "create_backup": "Crea còpia de seguretat",
+ "create_blocked_not_running": "Ara mateix no és possible crear una còpia de seguretat perquè el sistema es troba en estat {state}.",
+ "created": "Creada",
+ "delete_backup_confirm": "suprimeix",
+ "delete_backup_text": "Vols suprimir {number} {number, plural,\n one {còpia de seguretat}\n other {còpies de seguretat}\n}?",
+ "delete_backup_title": "Suprimeix còpia de seguretat",
+ "delete_selected": "Suprimeix les còpies de seguretat seleccionades",
+ "download_backup": "Baixa còpia de seguretat",
+ "enter_password": "Introdueix una contrasenya.",
+ "failed_to_delete": "No s'ha pogut suprimir",
+ "folders": "Carpetes",
+ "full_backup": "Còpia de seguretat completa",
+ "name": "Nom de la còpia de seguretat",
+ "no_backups": "Encara no tens cap còpia de seguretat.",
+ "partial_backup": "Còpia de seguretat parcial",
+ "password": "Contrasenya de la còpia de seguretat",
+ "password_protection": "Protecció amb contrasenya",
+ "passwords_not_matching": "Les contrasenyes no coincideixen",
+ "select_type": "Selecciona què vols restaurar",
+ "selected": "{number} seleccionada/es",
+ "size": "Mida",
+ "type": "Tipus de còpia de seguretat",
+ "upload_backup": "Puja còpia de seguretat"
+ },
+ "common": {
+ "cancel": "Cancel·la",
+ "close": "Tanca",
+ "description": "Descripció",
+ "error": {
+ "unknown": "Error desconegut",
+ "update_failed": "Ha fallat l'actualització"
+ },
+ "failed_to_restart_name": "No s'han pogut reiniciar {name}",
+ "failed_to_update_name": "No s'han pogut actualitzar {name}",
+ "learn_more": "Més informació",
+ "menu": "Menú",
+ "new_version_available": "Nova versió disponible",
+ "newest_version": "Última versió",
+ "no": "No",
+ "refresh": "Actualitza",
+ "release_notes": "Notes de la versió",
+ "reload": "Torna a carregar",
+ "reset_defaults": "Restableix els valors per defecte",
+ "reset_options": "Opcions de reinici",
+ "restart": "Reinicia",
+ "restart_name": "Reinicia {name}",
+ "review": "revisa",
+ "running_version": "Estàs utilitzant la versió {version}",
+ "save": "Desa",
+ "show": "mostra",
+ "show_more": "Mostra més informació al respecte",
+ "update": "Actualitza",
+ "update_available": "{count, plural,\n one {Actualització pendent}\n other {{count} actualitzacions pendents}\n}",
+ "version": "Versió",
+ "yes": "Sí"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Estàs segur que vols restablir totes les opcions?",
+ "title": "Restableix opcions"
+ },
+ "restart": {
+ "text": "Estàs segur que vols reiniciar {name}?",
+ "title": "Reinicia {name}"
+ },
+ "update": {
+ "text": "Estàs segur que vols actualitzar {name} a la versió {version}?",
+ "title": "Actualitza {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Nova versió disponible",
+ "addon_running": "El complement s'està executant",
+ "addon_stopped": "El complement està aturat",
+ "addons": "Complements instal·lats",
+ "no_addons": "Encara no tens cap complement instal·lat. Vés al directori de complements per començar!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Cancel·la",
+ "description": "Actualment utilitzes ''{current_path}'' com a datadisk. Si el desplaçes, el dispositiu es reiniciarà i el procés tardarà uns {time} minutes. No es podrà accedir a Home Assistant durant aquest període. No desconnectis res mentre duri el procés!",
+ "loading_devices": "Carregant dispositius",
+ "move": "Mou",
+ "moving": "Desplaçant datadisk",
+ "moving_desc": "Reiniciant i desplaçant datadisk. Tingues paciència",
+ "no_devices": "No s'han trobat dispositius compatibles connectats",
+ "select_device": "Selecciona nou datadisk",
+ "title": "Mou datadisk"
+ },
+ "hardware": {
+ "attributes": "Atributs",
+ "device_path": "Ruta del dispositiu",
+ "id": "ID",
+ "search": "Cerca maquinari",
+ "subsystem": "Subsistema",
+ "title": "Maquinari"
+ },
+ "network": {
+ "connected_to": "Connectat a {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Desactivada",
+ "dns_servers": "Servidors DNS",
+ "failed_to_change": "No s'ha pogut canviar la configuració de xarxa",
+ "gateway": "Adreça de la passarel·la",
+ "ip_netmask": "Adreça IP/màscara de xarxa",
+ "open": "Oberta",
+ "scan_ap": "Busca punts d'accés",
+ "static": "Estàtica",
+ "title": "Configuració de xarxa",
+ "unsaved": "Tens canvis sense desar, es perdran si canvies de pestanya, vols continuar?",
+ "warning": "Si canvies l'adreça Wi-Fi, IP o de la passarel·la, és possible que perdis la connexió!",
+ "wep": "WEP",
+ "wpa": "wpa-psk"
+ },
+ "registries": {
+ "add_new_registry": "Afegeix nou registre",
+ "add_registry": "Afegeix registre",
+ "failed_to_add": "No s'ha pogut afegir el registre",
+ "failed_to_remove": "No s'ha pogut eliminar el registre",
+ "no_registries": "No hi ha registres configurats",
+ "password": "Contrasenya",
+ "registry": "Registre",
+ "remove": "Elimina",
+ "title_add": "Afegeix nou registre de contenidors",
+ "title_manage": "Gestiona els registres de contenidors",
+ "username": "Nom d'usuari"
+ },
+ "repositories": {
+ "add": "Afegeix",
+ "remove": "Elimina",
+ "title": "Gestiona els repositoris de complements",
+ "used": "El repositori s'utilitza per a complements ja instal·lats i no es pot eliminar."
+ },
+ "restart_addon": {
+ "confirm_text": "Reinicia el complement",
+ "text": "Vols reiniciar el complement amb els teus canvis?"
+ },
+ "update": {
+ "backup": "Còpia de seguretat",
+ "create_backup": "Crear còpia de seguretat de {name} abans d'actualitzar",
+ "creating_backup": "Creant còpia de seguretat de {name}",
+ "updating": "S'està actualitzant {name} a la versió {version}"
+ }
+ },
+ "my": {
+ "error": "S'ha produït un error desconegut",
+ "error_addon_no_ingress": "El complement sol·licitat no admet ingress",
+ "error_addon_not_found": "No s'ha trobat el complement",
+ "error_addon_not_installed": "El complement sol·licitat no està instal·lat. Instal·la'l primer",
+ "error_addon_not_started": "El complement sol·licitat no s'està executant. Inicia'l primer",
+ "faq_link": "Preguntes freqüents de My Home Assistant",
+ "not_supported": "La instància de Home Assistant no admet aquesta redirecció. Consulta {link} per veure les redireccions compatibles i en quina versió es van introduir."
+ },
+ "panel": {
+ "addons": "Complements",
+ "backups": "Còpies de seguretat",
+ "dashboard": "Panell",
+ "store": "Directori de complements",
+ "system": "Sistema"
+ },
+ "store": {
+ "check_updates": "Comprova si hi ha actualitzacions",
+ "missing_addons": "Falten complements? Activa el mode avançat a la pàgina de perfil d'usuari",
+ "no_results_found": "No s'han trobat resultats a {repository}.",
+ "registries": "Registres",
+ "repositories": "Repositoris"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Ús de CPU del nucli",
+ "ram_usage": "Ús de RAM del nucli"
+ },
+ "host": {
+ "change": "Canvia",
+ "change_hostname": "Canvia el nom d'amfitrió",
+ "confirm_reboot": "Segur que vols reiniciar l'amfitrió?",
+ "confirm_shutdown": "Segur que vols apagar l'amfitrió?",
+ "deployment": "Desplegament",
+ "docker_version": "Versió de Docker",
+ "emmc_lifetime_used": "Vida de l'eMMC utilitzada",
+ "failed_to_get_hardware_list": "No s'ha pogut obtenir la llista del maquinari",
+ "failed_to_import_from_usb": "No s'ha pogut importar des d'USB",
+ "failed_to_move": "No s'ha pogut moure datadisk",
+ "failed_to_reboot": "No s'ha pogut reiniciar l'amfitrió",
+ "failed_to_set_hostname": "No s'ha pogut establir el nom d'amfitrió",
+ "failed_to_shutdown": "No s'ha pogut apagar l'amfitrió",
+ "hardware": "Maquinari",
+ "hostname": "Nom d'amfitrió",
+ "import_from_usb": "Importa des d'USB",
+ "ip_address": "Adreça IP",
+ "move_datadisk": "Mou datadisk",
+ "new_hostname": "Introdueix un nom d'amfitrió nou:",
+ "operating_system": "Sistema operatiu",
+ "reboot_host": "Reinicia amfitrió",
+ "shutdown_host": "Apaga amfitrió",
+ "used_space": "Espai utilitzat"
+ },
+ "log": {
+ "get_logs": "No s'han pogut obtenir els registres de {provider}, {error}",
+ "log_provider": "Proveïdor de registres"
+ },
+ "supervisor": {
+ "beta_backup": "Assegura't que tens còpies de seguretat de les teves dades abans d'activar aquesta funció.",
+ "beta_join_confirm": "Vols unir-te al canal beta?",
+ "beta_release_items": "Això inclou les versions beta de:",
+ "beta_warning": "Les versions beta són per a verificadors i els primers que vulguin provar-la, però poden tenir canvis de codi inestables",
+ "channel": "Canal",
+ "cpu_usage": "Ús de CPU del Supervisor",
+ "failed_to_reload": "No s'ha pogut tornar a carregar el Supervisor",
+ "failed_to_set_option": "No s'ha pogut configurar l'opció del Supervisor",
+ "failed_to_update": "No s'ha pogut actualitzar el Supervisor",
+ "join_beta_action": "Uneix-te al canal beta",
+ "join_beta_description": "Obtén actualitzacions beta de Home Assistant (RCs), del Supervisor i de l'amfitrió",
+ "leave_beta_action": "Deixa el canal beta",
+ "leave_beta_description": "Obtén actualitzacions estables de Home Assistant, del Supervisor i de l'amfitrió",
+ "ram_usage": "Ús de RAM del Supervisor",
+ "reload_supervisor": "Torna a carregar el Supervisor",
+ "search": "Cerca",
+ "share_diagnostics": "Comparteix diagnòstics",
+ "share_diagnostics_description": "Comparteix informes d'errors i informació de diagnòstic.",
+ "share_diagonstics_description": "Vols compartir automàticament informes d'error i informació de diagnòstic quan el Supervisor trobi amb errors inesperats?{line_break} Això ens permetrà solucionar problemes, la informació només és accessible per a l'equip de Home Assistant Core i no es compartirà amb altres persones.{line_break} Les dades no inclouen informació privada/confidencial, ho pots desactivar en qualsevol moment a la configuració.",
+ "share_diagonstics_title": "Ajuda a millorar Home Assistant",
+ "unhealthy_description": "Si utilitzes una instal·lació que no és bona, es produiran problemes. A continuació es mostra una llista de problemes relacionats amb la instal·lació, fes clic als enllaços per obtenir informació sobre com resoldre'ls.",
+ "unhealthy_reason": {
+ "docker": "L'entorn Docker no està funcionant correctament",
+ "privileged": "El Supervisor no és privilegiat",
+ "setup": "Ha fallat la configuració del Supervisor",
+ "supervisor": "El Supervisor no s'ha pogut actualitzar",
+ "untrusted": "S'ha detectat algun contingut que no és de confiança"
+ },
+ "unhealthy_title": "La teva instal·lació no és bona",
+ "unsupported_description": "A continuació es mostra una llista de problemes relacionats amb la instal·lació, fes clic als enllaços per obtenir informació sobre com resoldre'ls.",
+ "unsupported_reason": {
+ "apparmor": "AppArmor no està habilitat a l'amfitrió",
+ "container": "Els contenidors són coneguts per causar problemes",
+ "content-trust": "Validació de continguts de confiança desactivada",
+ "content_trust": "Validació de continguts de confiança desactivada",
+ "dbus": "DBUS",
+ "docker_configuration": "Configuració de Docker",
+ "docker_version": "Versió de Docker",
+ "job_conditions": "Condicions 'job' ignorades",
+ "lxc": "LXC",
+ "network_manager": "Gestor de xarxa",
+ "os": "Sistema operatiu",
+ "os_agent": "Agent de S.O.",
+ "privileged": "El Supervisor no és privilegiat",
+ "software": "Programari no compatible detectat",
+ "source_mods": "Modificacions de font",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Estàs executant una instal·lació no suportada",
+ "update_supervisor": "Actualitza el Supervisor",
+ "warning": "ATENCIÓ"
+ }
+ },
+ "update_available": {
+ "core_note": "El supervisor tornarà a la versió {version} després de l'actualització si la teva instància no s'inicia correctament.",
+ "create_backup": "Crea una còpia de seguretat abans d'actualitzar",
+ "creating_backup": "Creant còpia de seguretat de {name}",
+ "description": "Tens instal·lada la versió {version}. Fes clic a Actualitza per instal·lar la versió {newest_version}",
+ "no_update": "No hi ha cap actualització de {name} disponible",
+ "open_release_notes": "Obre les notes de versió",
+ "update_name": "Actualització {name}",
+ "updating": "S'està actualitzant {name} a la versió {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Vols desar aquest inici de sessió?",
+ "confirm": "Si",
+ "decline": "No"
+ },
+ "backup": {
+ "upload_backup": "Puja còpia de seguretat"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Activar, fora",
+ "arm_custom_bypass": "Bypass personalitzat",
+ "arm_home": "Activar, a casa",
+ "arm_night": "Activar, nocturn",
+ "arm_vacation": "Activa en mode vacances",
+ "clear_code": "Borrar",
+ "code": "Codi",
+ "disarm": "Desactivar"
+ },
+ "area": {
+ "area_not_found": "No s'ha trobat l'àrea."
+ },
+ "automation": {
+ "last_triggered": "Última execució",
+ "trigger": "Executa accions"
+ },
+ "button": {
+ "press": "Prem"
+ },
+ "camera": {
+ "not_available": "Imatge no disponible"
+ },
+ "climate": {
+ "aux_heat": "Calefactor auxiliar",
+ "away_mode": "Mode absent",
+ "cooling": "{name} refredant",
+ "current_temperature": "Temperatura actual de {name}",
+ "currently": "Actual",
+ "fan_mode": "Velocitat ventilador",
+ "heating": "{name} escalfant",
+ "high": "alt",
+ "low": "baix",
+ "on_off": "ON / OFF",
+ "operation": "Funcionament",
+ "preset_mode": "Programat",
+ "swing_mode": "Mode oscil·lació",
+ "target_humidity": "Humitat desitjada",
+ "target_temperature": "Temperatura desitjada",
+ "target_temperature_entity": "Temperatura desitjada de {name}",
+ "target_temperature_mode": "Temperatura desitjada de {name} {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "decrementa",
+ "increment": "incrementa",
+ "reset": "restableix"
+ }
+ },
+ "cover": {
+ "position": "Posició",
+ "tilt_position": "Inclinació"
+ },
+ "fan": {
+ "direction": "Direcció",
+ "forward": "Endavant",
+ "oscillate": "Oscil·lació",
+ "preset_mode": "Mode predefinit",
+ "reverse": "Invers",
+ "speed": "Velocitat"
+ },
+ "humidifier": {
+ "humidity": "Humitat desitjada",
+ "mode": "Mode",
+ "on_entity": "{name} ON",
+ "target_humidity_entity": "Temperatura desitjada de {name}"
+ },
+ "light": {
+ "brightness": "Brillantor",
+ "cold_white_value": "Brillantor de blancs freds",
+ "color_brightness": "Brillantor del color",
+ "color_temperature": "Temperatura de color",
+ "effect": "Efecte",
+ "warm_white_value": "Brillantor de blancs calents",
+ "white_value": "Brillantor de blanc"
+ },
+ "lock": {
+ "code": "Codi",
+ "lock": "Bloquejar",
+ "unlock": "Desbloquejar"
+ },
+ "media_player": {
+ "browse_media": "Navega pels mitjans",
+ "media_next_track": "Següent cançó",
+ "media_pause": "Pausa",
+ "media_play": "Reprodueix",
+ "media_play_pause": "Reprodueix/pausa",
+ "media_previous_track": "Cançó anterior",
+ "media_stop": "Atura",
+ "media_volume_down": "Abaixa el volum",
+ "media_volume_mute": "Desactiva el volum",
+ "media_volume_unmute": "Activa el volum",
+ "media_volume_up": "Apuja el volum",
+ "nothing_playing": "Res reproduint-se",
+ "sound_mode": "Mode de so",
+ "source": "Entrada",
+ "text_to_speak": "Text a veu",
+ "turn_off": "Apaga",
+ "turn_on": "Engega"
+ },
+ "persistent_notification": {
+ "dismiss": "Omet"
+ },
+ "scene": {
+ "activate": "Activar"
+ },
+ "script": {
+ "cancel": "Cancel·la",
+ "cancel_multiple": "Cancel·la {number}",
+ "run": "Executa"
+ },
+ "service": {
+ "run": "Executa"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "cancel·la",
+ "finish": "finalitza",
+ "pause": "pausa",
+ "start": "inicia"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Reprendre neteja",
+ "return_to_base": "Retorna a la base",
+ "start_cleaning": "Comença neteja",
+ "turn_off": "Apaga",
+ "turn_on": "Encén"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Mode fora",
+ "currently": "Actual",
+ "on_off": "ON / OFF",
+ "operation": "Funcionament",
+ "target_temperature": "Temperatura desitjada"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Pressió atmosfèrica",
+ "humidity": "Humitat",
+ "precipitation": "Precipitació",
+ "temperature": "Temperatura",
+ "visibility": "Visibilitat",
+ "wind_speed": "Velocitat del vent"
+ },
+ "cardinal_direction": {
+ "e": "E",
+ "ene": "ENE",
+ "ese": "ESE",
+ "n": "N",
+ "ne": "NE",
+ "nne": "NNE",
+ "nnw": "NNO",
+ "nw": "NO",
+ "s": "S",
+ "se": "SE",
+ "sse": "SSE",
+ "ssw": "SSO",
+ "sw": "SO",
+ "w": "O",
+ "wnw": "ONO",
+ "wsw": "OSO"
+ },
+ "day": "Dia",
+ "forecast": "Previsió",
+ "high": "Alt",
+ "low": "Baix",
+ "night": "Nit"
+ }
+ },
+ "common": {
+ "and": "i",
+ "back": "Torna",
+ "cancel": "Cancel·la",
+ "clear": "Esborra",
+ "close": "Tanca",
+ "continue": "Continua",
+ "copied": "Copiat",
+ "copied_clipboard": "Copiat al porta-retalls",
+ "delete": "Elimina",
+ "disable": "Desactiva",
+ "enable": "Activa",
+ "error_required": "Obligatori",
+ "help": "Ajuda",
+ "leave": "Surt",
+ "loading": "Carregant",
+ "menu": "Menú",
+ "move": "Mou",
+ "next": "Següent",
+ "no": "No",
+ "not_now": "Ara no",
+ "overflow_menu": "Menú desbordament",
+ "previous": "Anterior",
+ "refresh": "Actualitza",
+ "remove": "Elimina",
+ "rename": "Canvia el nom",
+ "save": "Desa",
+ "skip": "Omet",
+ "stay": "Queda't",
+ "submit": "Envia",
+ "successfully_deleted": "S'ha eliminat correctament",
+ "successfully_saved": "S'ha desat correctament",
+ "undo": "Desfés",
+ "yes": "Sí"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Complement",
+ "error": {
+ "fetch_addons": {
+ "description": "S'ha produït un error durant la càrrega dels complements.",
+ "title": "Error durant la càrrega dels complements"
+ },
+ "no_supervisor": {
+ "description": "Complements no compatibles.",
+ "title": "Sense Supervisor"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Afegeix",
+ "failed_create_area": "No s'ha pogut crear l'àrea.",
+ "name": "Nom",
+ "text": "Introdueix el nom de la nova àrea.",
+ "title": "Afegeix àrea nova"
+ },
+ "add_new": "Afegeix nova àrea…",
+ "area": "Àrea",
+ "clear": "Esborra",
+ "no_areas": "No tens cap àrea",
+ "no_match": "No s'han trobat àrees coincidents",
+ "show_areas": "Mostra àrees"
+ },
+ "attributes": {
+ "expansion_header": "Atributs"
+ },
+ "blueprint-picker": {
+ "add_user": "Afegeix usuari",
+ "remove_user": "Elimina usuari",
+ "select_blueprint": "Selecciona un blueprint"
+ },
+ "calendar": {
+ "my_calendars": "Calendaris",
+ "today": "Avui"
+ },
+ "data-table": {
+ "clear": "Esborra",
+ "filtering_by": "Filtratge per",
+ "hidden": "{number} amagat/s",
+ "no-data": "No hi ha dades",
+ "search": "Cerca"
+ },
+ "date-range-picker": {
+ "end_date": "Data final",
+ "ranges": {
+ "last_week": "Setmana passada",
+ "this_week": "Aquesta setmana",
+ "today": "Avui",
+ "yesterday": "Ahir"
+ },
+ "select": "Selecciona",
+ "start_date": "Data inici"
+ },
+ "device-picker": {
+ "clear": "Esborra",
+ "device": "Dispositiu",
+ "no_area": "Sense àrees",
+ "no_devices": "No tens cap dispositiu",
+ "no_match": "No s'han trobat dispositius coincidents",
+ "show_devices": "Mostra dispositius",
+ "toggle": "Commuta"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Atribut",
+ "show_attributes": "Mostra els atributs"
+ },
+ "entity-picker": {
+ "clear": "Esborra",
+ "edit": "Edita",
+ "entity": "Entitat",
+ "no_match": "No s'han trobat entitats coincidents",
+ "show_entities": "Mostra entitats"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "Integració d'històric desactivada",
+ "loading_history": "Carregant historial d'estats…",
+ "no_history_found": "No s'ha trobat cap històric d'estats."
+ },
+ "logbook": {
+ "by": "per",
+ "by_service": "pel servei",
+ "entries_not_found": "No s'han trobat esdeveniments registrats.",
+ "messages": {
+ "became_unavailable": "no està disponible",
+ "changed_to_state": "ha canviat a {state}",
+ "cleared_device_class": "s'ha esborrat (no s'ha detectat cap {device_class})",
+ "cleared_tampering": "manipulació esborrada",
+ "detected_device_class": "s'ha detectat {device_class}",
+ "detected_tampering": "manipulació detectada",
+ "is_closing": "s'està tancant",
+ "is_opening": "s'està obrint",
+ "rose": "ha sortit",
+ "set": "s'ha post",
+ "turned_off": "s'ha apagat",
+ "turned_on": "s'ha engegat",
+ "was_at_home": "s'ha detectat a casa",
+ "was_at_state": "s'ha detectat a {state}",
+ "was_away": "s'ha detectat fora",
+ "was_closed": "s'ha tancat",
+ "was_connected": "s'ha connectat",
+ "was_disconnected": "s'ha desconnectat",
+ "was_locked": "s'ha bloquejat",
+ "was_low": "és baix/a",
+ "was_normal": "és normal",
+ "was_opened": "s'ha obert",
+ "was_plugged_in": "s'ha endollat",
+ "was_safe": "és segur",
+ "was_unlocked": "s'ha desbloquejat",
+ "was_unplugged": "s'ha desendollat",
+ "was_unsafe": "és insegur"
+ },
+ "retrieval_error": "No s'ha pogut carregar el registre",
+ "show_trace": "Mostra la traça"
+ },
+ "media-browser": {
+ "audio_not_supported": "El teu navegador no és compatible amb l'element d'àudio.",
+ "choose_player": "Tria reproductor",
+ "class": {
+ "album": "Àlbum",
+ "app": "Aplicació",
+ "artist": "Artista",
+ "channel": "Canal",
+ "composer": "Compositor",
+ "contributing_artist": "Artista col·laborador",
+ "directory": "Biblioteca",
+ "episode": "Episodi",
+ "game": "Joc",
+ "genre": "Gènere",
+ "image": "Imatge",
+ "movie": "Pel·lícula",
+ "music": "Música",
+ "playlist": "Llista de reproducció",
+ "podcast": "Podcast",
+ "season": "Temporada",
+ "track": "Pista",
+ "tv_show": "Programa de TV",
+ "url": "URL",
+ "video": "Vídeo"
+ },
+ "documentation": "documentació",
+ "learn_adding_local_media": "Més informació sobre com afegir contingut multimèdia a la {documentation}.",
+ "local_media_files": "Col·loca els fitxers de vídeo, àudio i imatge al directori multimèdia i podràs navegar-hi i reproduir-los des del navegador o els reproductors multimèdia compatibles.",
+ "media-player-browser": "Multimèdia",
+ "media_browsing_error": "Error de navegació multimèdia",
+ "media_not_supported": "El reproductor multimèdia de navegador no és compatible amb aquest tipus de mitjà",
+ "media_player": "Reproductor multimèdia",
+ "no_items": "Sense elements",
+ "no_local_media_found": "No s'ha trobat cap mitjà local",
+ "no_media_folder": "Sembla que encara no has creat cap directori multimèdia.",
+ "pick": "Escull",
+ "pick-media": "Tria mitjans",
+ "play": "Reprodueix",
+ "play-media": "Reprodueix mitjans",
+ "setup_local_help": "Consulta la {documentation} per saber com configurar el contingut multimèdia local.",
+ "video_not_supported": "El teu navegador no és compatible amb l'element de vídeo.",
+ "web-browser": "Navegador web"
+ },
+ "picture-upload": {
+ "label": "Imatge",
+ "unsupported_format": "Format no compatible, tria una imatge JPEG, PNG o GIF."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Introdueix el valor del codi QR",
+ "manual_input": "Pots escanejar el codi QR amb un altre escàner de QR i enganxar el codi a l'entrada següent",
+ "not_supported": "El navegador no admet l'escaneig de QR.",
+ "only_https_supported": "Només pots escanejar un codi QR utilitzant una càmera a través d'HTTPS.",
+ "select_camera": "Selecciona càmera"
+ },
+ "related-filter-menu": {
+ "filter": "Filtra",
+ "filter_by_area": "Filtra per àrea",
+ "filter_by_device": "Filtra per dispositiu",
+ "filter_by_entity": "Filtra per entitat",
+ "filtered_by_area": "àrea: {area_name}",
+ "filtered_by_device": "dispositiu: {device_name}",
+ "filtered_by_entity": "entitat: {entity_name}"
+ },
+ "related-items": {
+ "area": "Àrea",
+ "automation": "Part de les següents automatitzacions",
+ "device": "Dispositiu",
+ "entity": "Entitats relacionades",
+ "group": "Part dels següents grups",
+ "integration": "Integració",
+ "no_related_found": "No s'han trobat elements relacionats.",
+ "scene": "Part de les següents escenes",
+ "script": "Part dels següents programes (scripts)"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one {dia}\n other {dies}\n}",
+ "hour": "{count} {count, plural,\n one {hora}\n other {hores}\n}",
+ "minute": "{count} {count, plural,\n one {minut}\n other {minuts}\n}",
+ "second": "{count} {count, plural,\n one {segon}\n other {segons}\n}",
+ "week": "{count} {count, plural,\n one {setmana}\n other {setmanes}\n}"
+ },
+ "future_duration": {
+ "day": "D'aquí a {count} {count, plural,\n one {dia}\n other {dies}\n}",
+ "hour": "D'aquí a {count} {count, plural,\n one {hora}\n other {hores}\n}",
+ "minute": "D'aquí a {count} {count, plural,\n one {minut}\n other {minuts}\n}",
+ "second": "D'aquí a {count} {count, plural,\n one {segon}\n other {segons}\n}",
+ "week": "D'aquí a {count} {count, plural,\n one {setmana}\n other {setmanes}\n}"
+ },
+ "just_now": "Ara mateix",
+ "never": "Mai",
+ "past_duration": {
+ "day": "fa {count} {count, plural,\n one {dia}\n other {dies}\n}",
+ "hour": "fa {count} {count, plural,\n one {hora}\n other {hores}\n}",
+ "minute": "fa {count} {count, plural,\n one {minut}\n other {minuts}\n}",
+ "second": "fa {count} {count, plural,\n one {segon}\n other {segons}\n}",
+ "week": "fa {count} {count, plural,\n one {setmana}\n other {setmanes}\n}"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Documentació de la integració",
+ "required": "Aquest camp és obligatori",
+ "service_data": "Dades del servei",
+ "target": "Objectius",
+ "target_description": "Àrees, dispositius o entitats objectiu d'aquesta crida de servei"
+ },
+ "service-picker": {
+ "service": "Servei"
+ },
+ "statistic-picker": {
+ "learn_more": "Més informació sobre les estadístiques",
+ "missing_entity": "Per què no apareix una entitat?",
+ "no_match": "No s'ha trobat cap estadística coincident",
+ "no_statistics": "No tens estadístiques",
+ "statistic": "Estadística"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Carregant estadístiques…",
+ "no_statistics_found": "No s'han trobat estadístiques.",
+ "statistic_types": {
+ "max": "màxims",
+ "mean": "mitjana",
+ "min": "mínims",
+ "sum": "suma"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Selecciona àrea",
+ "add_device_id": "Selecciona dispositiu",
+ "add_entity_id": "Selecciona entitat",
+ "expand": "Expandeix",
+ "expand_area_id": "Expandeix aquesta àrea en entitats i dispositius separats.",
+ "expand_device_id": "Expandeix aquest dispositiu en entitats separades.",
+ "remove": "Elimina",
+ "remove_area_id": "Elimina àrea",
+ "remove_device_id": "Elimina dispositiu",
+ "remove_entity_id": "Elimina entitat"
+ },
+ "user-picker": {
+ "add_user": "Afegeix usuari",
+ "no_user": "Cap usuari",
+ "remove_user": "Elimina usuari"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Si està activat, les noves entitats descobertes per {integration} s'afegiran automàticament a Home Assistant.",
+ "enable_new_entities_label": "Activa entitats afegides recentment.",
+ "enable_polling_description": "Si està activat, Home Assistant sondejarà automàticament {integration} per obtenir actualitzacions de les entitats.",
+ "enable_polling_label": "Activa el sondeig per obtenir actualitzacions.",
+ "restart_home_assistant": "Has de reiniciar Home Assistant per aplicar els canvis.",
+ "title": "Opcions del sistema per a {integration}",
+ "update": "Actualitza"
+ },
+ "domain_toggler": {
+ "reset_entities": "Restableix entitats",
+ "title": "Commutació de dominis"
+ },
+ "entity_registry": {
+ "control": "Control",
+ "customize_link": "personalitzacions d'entitat",
+ "dismiss": "Omet",
+ "editor": {
+ "advanced": "Configuració avançada",
+ "area": "Defineix només l'àrea de l'entitat",
+ "area_note": "De manera predeterminada, les entitats d'un dispositiu es troben a la mateixa àrea que el dispositiu. Si canvies l'àrea d'aquesta entitat, deixarà de seguir la del dispositiu.",
+ "change_device_area": "Canvia l'àrea del dispositiu",
+ "confirm_delete": "Estàs segur que vols eliminar aquesta entitat?",
+ "delete": "Elimina",
+ "device_class": "Mostra com a",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Porta",
+ "garage_door": "Porta de garatge",
+ "opening": "Altre",
+ "window": "Finestra"
+ },
+ "cover": {
+ "door": "Porta",
+ "garage": "Porta de garatge",
+ "window": "Finestra"
+ }
+ },
+ "device_disabled": "El dispositiu d'aquesta entitat està desactivat.",
+ "enabled_cause": "Desactivada per {cause}.",
+ "enabled_delay_confirm": "Les entitats activades s'afegiran a Home Assistant d'aquí a {delay} segons",
+ "enabled_description": "Les entitats desactivades no s'afegiran a Home Assistant.",
+ "enabled_label": "Activació d'entitat",
+ "enabled_restart_confirm": "Reinicia Home Assistant per acabar d'activar les entitats",
+ "entity_id": "ID de l'entitat",
+ "follow_device_area": "Segueix l'àrea del dispositiu",
+ "icon": "Icona",
+ "icon_error": "Els icones han de tenir el format 'prefix:nom_icona', per exemple: 'mdi:home'",
+ "name": "Nom",
+ "note": "Nota: podria no funcionar amb alguna de les integracions.",
+ "open_device_settings": "Obre la configuració del dispositiu",
+ "unavailable": "Entitat no està disponible.",
+ "update": "Actualitza"
+ },
+ "faq": "documentació",
+ "info_customize": "Pots sobreescriure alguns atributs a la secció {customize_link}.",
+ "no_unique_id": "Aquesta entitat (''{entity_id}'') no té un ID únic, per tant, la seva configuració no pot ser gestionada des de la interfície d'usuari. Consulta {faq_link} per a més detalls.",
+ "related": "Relacionat",
+ "settings": "Configuració"
+ },
+ "generic": {
+ "cancel": "Cancel·la",
+ "close": "Tanca",
+ "default_confirmation_title": "Estàs segur?",
+ "ok": "OK"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Valor inicial",
+ "maximum": "Valor màxim",
+ "minimum": "Valor mínim",
+ "restore": "Restaura l'últim valor conegut quan Home Assistant s'iniciï.",
+ "step": "Mida del pas"
+ },
+ "generic": {
+ "icon": "Icona",
+ "name": "Nom"
+ },
+ "input_datetime": {
+ "date": "Data",
+ "datetime": "Data i hora",
+ "mode": "Què vols introduir",
+ "time": "Hora"
+ },
+ "input_number": {
+ "box": "Camp d'entrada",
+ "max": "Valor màxim",
+ "min": "Valor mínim",
+ "mode": "Mode de visualització",
+ "slider": "Barra lliscant",
+ "step": "Mida del pas",
+ "unit_of_measurement": "Unitat de mesura"
+ },
+ "input_select": {
+ "add": "Afegeix",
+ "add_option": "Afegeix opció",
+ "no_options": "Encara no hi ha opcions.",
+ "options": "Opcions"
+ },
+ "input_text": {
+ "max": "Longitud màxima",
+ "min": "Longitud mínima",
+ "mode": "Mode de visualització",
+ "password": "Contrasenya",
+ "pattern": "Patró Regex per a la validació de client",
+ "text": "Text"
+ },
+ "platform_not_loaded": "La integració {platform} no està carregada. Afegeix-la a la teva configuració afegint 'default_config:' o bé ''{platform}:''.",
+ "required_error_msg": "Aquest camp és obligatori",
+ "timer": {
+ "duration": "Durada"
+ },
+ "yaml_not_editable": "La configuració d'aquesta entitat no es pot editar des de la interfície d'usuari. Només es poden editar des de la interfície aquelles entitats que s'han configurat des d'ella."
+ },
+ "image_cropper": {
+ "crop": "Retalla"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Tanca la coberta",
+ "close_tile_cover": "Inclinació de coberta tancada",
+ "close_tilt_cover": "Inclinació de coberta tancada",
+ "open_cover": "Obre la coberta",
+ "open_tilt_cover": "Inclinació de coberta oberta",
+ "stop_cover": "Atura la coberta"
+ },
+ "details": "Detalls",
+ "dismiss": "Omet el diàleg",
+ "edit": "Edita entitat",
+ "history": "Historial",
+ "last_changed": "Últim canvi",
+ "last_updated": "Última actualització",
+ "logbook": "Diari de registre",
+ "person": {
+ "create_zone": "Crea una zona a partir de la ubicació actual"
+ },
+ "remote": {
+ "activity": "Activitat actual"
+ },
+ "restored": {
+ "confirm_remove_text": "Estàs segur que vols eliminar aquesta entitat?",
+ "confirm_remove_title": "Eliminar l'entitat?",
+ "not_provided": "Actualment aquesta entitat no està disponible, prové d'una integració o dispositiu eliminat, modificat o que no funciona.",
+ "remove_action": "Elimina entitat",
+ "remove_intro": "Si l'entitat ja no s'utilitza, pots borrar-la eliminant-la."
+ },
+ "script": {
+ "last_action": "Última acció",
+ "last_triggered": "Disparat per última vegada"
+ },
+ "settings": "Configuració de l'entitat",
+ "show_more": "Mostra més",
+ "sun": {
+ "elevation": "Elevació",
+ "rising": "Sortint",
+ "setting": "Ponent-se"
+ },
+ "updater": {
+ "title": "Instruccions d'actualització"
+ },
+ "vacuum": {
+ "clean_spot": "Zona neta",
+ "commands": "Comandes de l'aspirador:",
+ "fan_speed": "Velocitat del ventilador",
+ "locate": "Localitza",
+ "pause": "Pausa",
+ "return_home": "Torna a casa",
+ "start": "Inici",
+ "start_pause": "Inicia/Pausa",
+ "status": "Estat",
+ "stop": "Atura"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Intenta analitzar els missatges MQTT com a format JSON",
+ "entities": "Entitats",
+ "no_entities": "No hi ha entitats",
+ "no_triggers": "No hi ha disparadors",
+ "payload_display": "Mostra les dades/payload",
+ "recent_messages": "{n} últim/s missatge/s rebut/s",
+ "show_as_yaml": "Mostra en YAML",
+ "title": "Informació de depuració de {device}",
+ "triggers": "Disparadors"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Opcions"
+ },
+ "loading": {
+ "loading_flow": "Espera mentre s'inicialitzen les opcions de {integration}",
+ "loading_step": "Carregant el següent pas de {integration}"
+ },
+ "success": {
+ "description": "Opcions guardades amb èxit."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Àrees",
+ "automation": "Automatització",
+ "blueprint": "Blueprints",
+ "core": "General",
+ "customize": "Personalització",
+ "devices": "Dispositius",
+ "energy": "Configuració d'energia",
+ "entities": "Entitats",
+ "helpers": "Ajudants",
+ "info": "Informació",
+ "integrations": "Integracions",
+ "logs": "Registres",
+ "lovelace": "Panells Lovelace",
+ "person": "Persones",
+ "scene": "Escenes",
+ "script": "Programes (scripts)",
+ "server_control": "Controls del servidor",
+ "tag": "Etiquetes",
+ "users": "Usuaris",
+ "zone": "Zones"
+ },
+ "reload": {
+ "automation": "Automatitzacions",
+ "command_line": "Entitats de línia de comandes",
+ "core": "Ubicació i personalitzacions",
+ "filesize": "Entitats de mida de fitxer",
+ "filter": "Filtra entitats",
+ "generic": "Entitats genèriques de càmera IP",
+ "generic_thermostat": "Entitats genèriques de termòstat",
+ "group": "Grups, grups d'entitats i serveis de notificació",
+ "history_stats": "Entitats d'estadístiques històriques",
+ "homekit": "HomeKit",
+ "input_boolean": "Entrades booleanes",
+ "input_datetime": "Entrades de data i hora",
+ "input_number": "Entrades numèriques",
+ "input_select": "Entrades de selecció",
+ "input_text": "Entrades de text",
+ "min_max": "Entitats min/max",
+ "mqtt": "Entitats MQTT configurades manualment",
+ "person": "Persones",
+ "ping": "Entitats de sensors binaris de ping",
+ "reload": "{domain}",
+ "rest": "Entitats i serveis de notificació rest",
+ "rpi_gpio": "Entitats GPIO de la Raspberry Pi",
+ "scene": "Escenes",
+ "script": "Programes (scripts)",
+ "smtp": "Serveis de notificació SMTP",
+ "statistics": "Entitats d'estadístiques",
+ "telegram": "Serveis de notificació de Telegram",
+ "template": "Entitats de plantilla",
+ "themes": "Temes",
+ "trend": "Entitats de tendència",
+ "universal": "Entitats del reproductor universal",
+ "zone": "Zones"
+ },
+ "server_control": {
+ "perform_action": "{action} servidor",
+ "restart": "Reinicia",
+ "stop": "Atura"
+ },
+ "types": {
+ "navigation": "Navega",
+ "reload": "Torna a carregar",
+ "server_control": "Servidor"
+ }
+ },
+ "filter_placeholder": "Filtre d'entitats",
+ "key_c_hint": "Prem 'c' en qualsevol pàgina per obrir aquest cercador",
+ "nothing_found": "No s'ha trobat res!",
+ "title": "Cerca ràpida"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant no ha sentit res",
+ "error": "Vaja, s'ha produït un error",
+ "found": "He trobat el següent:",
+ "how_can_i_help": "Com puc ajudar-te?",
+ "label": "Escriu una pregunta i prem 'Enter'",
+ "label_voice": "Escriu i prem 'Enter' o toca la icona del micròfon per parlar"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Afegeix dispositius a través d'aquest dispositiu",
+ "clusters": "Gestiona clústers",
+ "device_children": "Mostra fills",
+ "reconfigure": "Reconfigurar dispositiu",
+ "remove": "Eliminar dispositiu",
+ "view_in_visualization": "Mostra a la visualització",
+ "zigbee_information": "Signatura Zigbee del dispositiu"
+ },
+ "confirmations": {
+ "remove": "Estàs segur que vols eliminar el dispositiu?"
+ },
+ "device_children": "Dispositiu Zigbee fill",
+ "device_signature": "Signatura Zigbee del dispositiu",
+ "last_seen": "Vist per últim cop",
+ "manuf": "per {manufacturer}",
+ "no_area": "Sense Àrea",
+ "power_source": "Font d'alimentació",
+ "quirk": "Quirk",
+ "services": {
+ "reconfigure": "Reconfigura el dispositiu ZHA (dispositiu curatiu). Utilitza-ho si tens problemes amb el dispositiu. Si el dispositiu en qüestió està alimentat per bateria, assegura't que estigui despert i accepti ordres quan utilitzis aquest servei.",
+ "remove": "Elimina un dispositiu de la xarxa Zigbee.",
+ "updateDeviceName": "Estableix un nom personalitzat pel dispositiu al registre de dispositius.",
+ "zigbee_information": "Consulta la informació Zigbee del dispositiu."
+ },
+ "unknown": "Desconeguda",
+ "zha_device_card": {
+ "device_name_placeholder": "Canvia el nom del dispositiu"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Atribut",
+ "battery_device_warning": "Hauràs de despertar els dispositius amb bateria abans d'iniciar el procés de reconfiguració. Consulta el manual del dispositiu per saber els passos per a despertar-lo.",
+ "bind_header": "Vinculació",
+ "button_hide": "Amaga els detalls",
+ "button_show": "Mostra els detalls",
+ "cluster_header": "Clúster",
+ "configuration_complete": "Reconfiguració de dispositiu completada.",
+ "configuration_failed": "Ha fallat la reconfiguració del dispositiu. Pots trobar informació addicional als registres.",
+ "configuring_alt": "Configurant",
+ "heading": "S'està reconfigurant el dispositiu",
+ "in_progress": "El dispositiu s'està reconfigurant. Això pot trigar una estona.",
+ "introduction": "Reconfigura un dispositiu de la xarxa Zigbee. Fes-ho si el dispositiu no funciona correctament.",
+ "min_max_change": "min/max/canvi",
+ "reporting_header": "Informant",
+ "run_in_background": "Pots tancar aquest diàleg, la reconfiguració continuarà en segon pla.",
+ "start_reconfiguration": "Inicia la reconfiguració"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\n one {dia}\n other {dies}\n}",
+ "hour": "{count} {count, plural,\none {hora}\nother {hores}\n}",
+ "minute": "{count} {count, plural,\none {minut}\nother {minuts}\n}",
+ "second": "{count} {count, plural,\none {segon}\nother {segons}\n}",
+ "week": "{count} {count, plural,\n one {setmana}\n other {setmanes}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Encara pots editar la configuració a YAML.",
+ "editor_not_available": "L'editor visual no està disponible per al tipus ''{type}''.",
+ "editor_not_supported": "L'editor visual no és compatible amb aquesta configuració",
+ "error_detected": "S'han detectat errors de configuració",
+ "key_missing": "Falta la clau obligatòria ''{key}''.",
+ "key_not_expected": "L'editor visual no espera o no és compatible amb la clau ''{key}''.",
+ "key_wrong_type": "L'editor visual no admet el valor proporcionat de ''{key}''. ({type_correct}) és compatible, però s'ha rebut ({type_wrong}).",
+ "no_state_array_support": "No s'admeten estats de múltiples valors a l'editor visual",
+ "no_template_editor_support": "Les plantilles no són compatibles amb l'editor visual",
+ "no_type_provided": "No s'ha proporcionat cap tipus."
+ },
+ "supervisor": {
+ "ask": "Sol·licita ajuda",
+ "observer": "Comprova l'observador",
+ "reboot": "Intenta reiniciar l'amfitrió",
+ "system_health": "Comprova l'estat del sistema",
+ "title": "No s'ha pogut carregar el panell del Supervisor!",
+ "wait": "Si acabes de començar, assegura't que has deixat passar prou temps perquè el Supervisor s'iniciï."
+ }
+ },
+ "login-form": {
+ "log_in": "Iniciar sessió",
+ "password": "Contrasenya",
+ "remember": "Recordar"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Prem el botó per configurar {entity}",
+ "close": "Tanca",
+ "dismiss_all": "Omet tot",
+ "empty": "No hi ha notificacions",
+ "title": "Notificacions"
+ },
+ "notification_toast": {
+ "connection_lost": "Connexió perduda. Tornant a connectar…",
+ "dismiss": "Omet",
+ "integration_starting": "Iniciant {integration}, no estarà tot disponible fins que acabi.",
+ "service_call_failed": "Ha fallat la crida al servei {service}.",
+ "started": "Home Assistant s'ha iniciat!",
+ "starting": "Home Assistant està iniciant-se, no estarà tot disponible fins que acabi",
+ "triggered": "{name} disparat/ada",
+ "wrapping_up_startup": "Finalitzant l'arrencada, no estarà tot disponible fins que acabi."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Falten opcions de configuració? Activa el mode avançat",
+ "link_profile_page": "la teva pàgina de perfil"
+ },
+ "areas": {
+ "add_picture": "Afegeix imatge",
+ "assigned_to_area": "Assignat a aquesta àrea",
+ "caption": "Àrees",
+ "data_table": {
+ "area": "Àrea",
+ "devices": "Dispositius",
+ "entities": "Entitats"
+ },
+ "delete": {
+ "confirmation_text": "Tots els dispositius d'aquesta àrea quedaran sense assignar.",
+ "confirmation_title": "Estàs segur que vols eliminar aquesta àrea?"
+ },
+ "description": "Agrupa dispositius i entitats en àrees",
+ "edit_settings": "Configuració d'àrea",
+ "editor": {
+ "area_id": "ID d'àrea",
+ "create": "Crea",
+ "default_name": "Nova àrea",
+ "delete": "Elimina",
+ "linked_entities_caption": "Entitats",
+ "name": "Nom",
+ "name_required": "Nom obligatori",
+ "no_linked_entities": "No hi ha entitats vinculades amb aquesta àrea.",
+ "unknown_error": "Error desconegut",
+ "update": "Actualitza"
+ },
+ "picker": {
+ "create_area": "Crea àrea",
+ "header": "Àrees",
+ "integrations_page": "Pàgina d'integracions",
+ "introduction": "Les àrees s'utilitzen per organitzar la situació dels dispositius. Aquesta informació serà utilitzada per Home Assistant per ajudar-te a organitzar millor la teva interfície, els permisos i les integracions amb d'altres sistemes.",
+ "introduction2": "Per col·locar dispositius en una àrea, utilitza l'enllaç de sota per anar a la pàgina d'integracions i, a continuació, fes clic a una integració configurada per accedir a les targetes del dispositiu.",
+ "no_areas": "Sembla que encara no tens cap àrea configurada."
+ },
+ "targeting_area": "Amb l'àrea com a objectiu"
+ },
+ "automation": {
+ "caption": "Automatització",
+ "description": "Crea regles de comportament personalitzades per a casa teva",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Utilitza un blueprint"
+ },
+ "header": "Creació d'una nova automatització",
+ "how": "Com vols crear la nova automatització?",
+ "start_empty": "Comença amb una automatització buida",
+ "start_empty_description": "Crea una nova automatització des de zero",
+ "thingtalk": {
+ "create": "Crea",
+ "header": "Descriu l'automatització que vols crear",
+ "input_label": "Què vols que faci aquesta automatització?",
+ "intro": "I intentarem crear-la per tu. Per exemple: ''Turn the lights off when I leave''."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Afegir acció",
+ "delete": "Elimina",
+ "delete_confirm": "Segur que vols eliminar-ho?",
+ "duplicate": "Duplica",
+ "header": "Accions",
+ "introduction": "Les accions són allò que farà Home Assistant quan es dispari l'automatització.",
+ "learn_more": "Més informació sobre les accions",
+ "name": "Acció",
+ "type": {
+ "choose": {
+ "add_option": "Afegeix opció",
+ "conditions": "Condicions",
+ "default": "Accions per defecte",
+ "label": "Tria",
+ "option": "Opció {number}",
+ "remove_option": "Elimina opció",
+ "sequence": "Accions"
+ },
+ "condition": {
+ "label": "Condició"
+ },
+ "delay": {
+ "delay": "Durada",
+ "label": "Espera que passi un temps (retard)"
+ },
+ "device_id": {
+ "action": "Acció",
+ "extra_fields": {
+ "brightness_pct": "Brillantor",
+ "code": "Codi",
+ "flash": "Flaix",
+ "humidity": "Humitat",
+ "message": "Missatge",
+ "mode": "Mode",
+ "position": "Posició",
+ "title": "Títol",
+ "value": "Valor"
+ },
+ "label": "Dispositiu"
+ },
+ "event": {
+ "event": "Esdeveniment",
+ "label": "Disparar esdeveniment",
+ "service_data": "Dades del servei"
+ },
+ "repeat": {
+ "label": "Repeteix",
+ "sequence": "Accions",
+ "type": {
+ "count": {
+ "label": "Comptador"
+ },
+ "until": {
+ "conditions": "Condicions de ''Fins que''",
+ "label": "Fins que"
+ },
+ "while": {
+ "conditions": "Condicions de ''Mentre''",
+ "label": "Mentre"
+ }
+ },
+ "type_select": "Tipus de repetició"
+ },
+ "scene": {
+ "label": "Activa escena"
+ },
+ "service": {
+ "label": "Crida servei"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Continua amb temps d'espera",
+ "label": "Espera a un disparador",
+ "timeout": "Temps màxim d'espera (opcional)"
+ },
+ "wait_template": {
+ "continue_timeout": "Continua amb temps d'espera",
+ "label": "Espera a una plantilla",
+ "timeout": "Temps màxim d'espera (opcional)",
+ "wait_template": "Plantilla d'espera"
+ }
+ },
+ "type_select": "Tipus d'acció",
+ "unsupported_action": "Acció no compatible amb l'editor visual: {action}"
+ },
+ "alias": "Nom",
+ "blueprint": {
+ "blueprint_to_use": "Blueprint a utilitzar",
+ "header": "Blueprint",
+ "no_blueprints": "No tens blueprints",
+ "no_inputs": "Aquest blueprint no té entrades."
+ },
+ "conditions": {
+ "add": "Afegir condició",
+ "delete": "Elimina",
+ "delete_confirm": "Segur que vols eliminar-ho?",
+ "duplicate": "Duplica",
+ "header": "Condicions",
+ "introduction": "Les condicions són opcionals i impedeixen que s'executi l'automatització tret de que totes elles se satisfacin.",
+ "learn_more": "Més informació sobre les condicions",
+ "name": "Condició",
+ "type": {
+ "and": {
+ "label": "I (AND lògic)"
+ },
+ "device": {
+ "condition": "Condició",
+ "extra_fields": {
+ "above": "A sobre",
+ "below": "A sota",
+ "for": "Durada",
+ "hvac_mode": "Mode HVAC",
+ "preset_mode": "Mode predefinit"
+ },
+ "label": "Dispositiu"
+ },
+ "not": {
+ "label": "No"
+ },
+ "numeric_state": {
+ "above": "Per sobre de",
+ "below": "Per sota de",
+ "label": "Estat numèric",
+ "value_template": "Plantilla de valor (opcional)"
+ },
+ "or": {
+ "label": "O (OR lògic)"
+ },
+ "state": {
+ "label": "Estat",
+ "state": "Estat"
+ },
+ "sun": {
+ "after": "Després:",
+ "after_offset": "Òfset posterior (opcional)",
+ "before": "Abans:",
+ "before_offset": "Òfset anterior (opcional)",
+ "label": "Sol",
+ "sunrise": "Alba",
+ "sunset": "Capvespre"
+ },
+ "template": {
+ "label": "Plantilla",
+ "value_template": "Plantilla de valor"
+ },
+ "time": {
+ "after": "Després",
+ "before": "Abans",
+ "label": "Temporal",
+ "type_input": "Valor d'un ajudant de data/hora",
+ "type_value": "Temps fix",
+ "weekdays": {
+ "fri": "Divendres",
+ "mon": "Dilluns",
+ "sat": "Dissabte",
+ "sun": "Diumenge",
+ "thu": "Dijous",
+ "tue": "Dimarts",
+ "wed": "Dimecres"
+ }
+ },
+ "trigger": {
+ "id": "ID del disparador",
+ "label": "Disparador",
+ "no_triggers": "No hi ha disparadors disponibles"
+ },
+ "zone": {
+ "entity": "Entitat amb ubicació",
+ "label": "Zona",
+ "zone": "Zona"
+ }
+ },
+ "type_select": "Tipus de condició",
+ "unsupported_condition": "Condició no compatible amb l'editor visual: {condition}"
+ },
+ "copy_to_clipboard": "Copia al porta-retalls",
+ "default_name": "Nova automatització",
+ "description": {
+ "label": "Descripció",
+ "placeholder": "Descripció opcional"
+ },
+ "edit_ui": "Edita amb l'editor visual",
+ "edit_yaml": "Edita en YAML",
+ "enable_disable": "Activa/desactiva automatització",
+ "introduction": "Utilitza les automatitzacions per donar vida a casa teva.",
+ "load_error_not_editable": "Només les automatitzacions a automations.yaml són editables.",
+ "load_error_unknown": "Error en carregar l'automatització ({err_no}).",
+ "max": {
+ "parallel": "Nombre màxim d'execucions paral·leles",
+ "queued": "Longitud de la cua"
+ },
+ "modes": {
+ "description": "El mode controla què passa quan es dispara l'automatització i encara hi ha accions d'un disparament anterior executant-se. Consulta la {documentation_link} per a més informació.",
+ "documentation": "documentació d'automatització",
+ "label": "Mode",
+ "parallel": "Paral·lel",
+ "queued": "Afegeix al final",
+ "restart": "Reinici",
+ "single": "Individual (per defecte)"
+ },
+ "move_down": "Mou avall",
+ "move_up": "Mou amunt",
+ "save": "Desa",
+ "show_trace": "Mostra la traça",
+ "triggers": {
+ "add": "Afegeix disparador",
+ "delete": "Elimina",
+ "delete_confirm": "Segur que vols eliminar-ho?",
+ "duplicate": "Duplica",
+ "edit_id": "Edita l'ID de disparador",
+ "header": "Disparadors",
+ "id": "ID de disparador",
+ "introduction": "Els disparadors són les regles que fan que s'executi una automatització. Pots definir més d'un disparador per a cada automatització. Una vegada salti un disparador, Home Assistant validarà les condicions (si n'hi ha) i finalment cridarà l'acció.",
+ "learn_more": "Més informació sobre els disparadors",
+ "name": "Disparador",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "A sobre",
+ "below": "A sota",
+ "for": "Durada (opcional)",
+ "zone": "Zona"
+ },
+ "label": "Dispositiu",
+ "trigger": "Disparador"
+ },
+ "event": {
+ "context_user_pick": "Selecciona usuari",
+ "context_user_picked": "Esdeveniment cridat per usuari",
+ "context_users": "Limita-ho als esdeveniments disparats per",
+ "event_data": "Dades de l'esdeveniment",
+ "event_type": "Tipus d'esdeveniment",
+ "label": "Esdeveniment"
+ },
+ "geo_location": {
+ "enter": "Entra",
+ "event": "Esdeveniment:",
+ "label": "Geolocalització",
+ "leave": "Surt",
+ "source": "Font",
+ "zone": "Zona"
+ },
+ "homeassistant": {
+ "event": "Esdeveniment:",
+ "label": "Home Assistant",
+ "shutdown": "Aturada",
+ "start": "Inici"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Dades/payload (opcional)",
+ "topic": "Topic"
+ },
+ "numeric_state": {
+ "above": "Per sobre de",
+ "below": "Per sota de",
+ "label": "Estat numèric",
+ "value_template": "Plantilla de valor (opcional)"
+ },
+ "state": {
+ "attribute": "Atribut (opcional)",
+ "for": "Durant (opcional)",
+ "from": "Des de (opcional)",
+ "label": "Estat",
+ "to": "A (opcional)"
+ },
+ "sun": {
+ "event": "Esdeveniment:",
+ "label": "Sol",
+ "offset": "Òfset (opcional)",
+ "sunrise": "a l'Alba",
+ "sunset": "al Capvespre"
+ },
+ "tag": {
+ "label": "Etiqueta"
+ },
+ "template": {
+ "label": "Plantilla",
+ "value_template": "Plantilla de valor"
+ },
+ "time": {
+ "at": "A les",
+ "label": "Temporal",
+ "type_input": "Valor d'un ajudant de data/hora",
+ "type_value": "Temps fix"
+ },
+ "time_pattern": {
+ "hours": "Hores",
+ "label": "Patró temporal",
+ "minutes": "Minuts",
+ "seconds": "Segons"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "ID de Webhook"
+ },
+ "zone": {
+ "enter": "Entra",
+ "entity": "Entitat amb ubicació",
+ "event": "Esdeveniment:",
+ "label": "Zona",
+ "leave": "Surt",
+ "zone": "Zona"
+ }
+ },
+ "type_select": "Tipus de disparador",
+ "unsupported_platform": "Plataforma no compatible amb l'editor visual: {platform}"
+ },
+ "unsaved_confirm": "Hi ha canvis no desats. Segur que vols sortir?"
+ },
+ "picker": {
+ "add_automation": "Afegeix automatització",
+ "delete_automation": "Elimina l'automatització",
+ "delete_confirm": "Estàs segur que vols eliminar aquesta automatització?",
+ "dev_automation": "Depurar automatització",
+ "dev_only_editable": "Només es poden depurar les automatitzacions que tinguin un identificador únic.",
+ "duplicate": "Duplica",
+ "duplicate_automation": "Duplica l'automatització",
+ "edit_automation": "Edita automatització",
+ "header": "Editor d'automatitzacions",
+ "headers": {
+ "name": "Nom"
+ },
+ "introduction": "L'editor d'automatitzacions et permet crear i editar automatitzacions. Vés a l'enllaç de sota per veure'n les instruccions i assegurar-te que has configurat Home Assistant correctament.",
+ "learn_more": "Més informació sobre les automatitzacions",
+ "no_automations": "No s'ha pogut trobar cap automatització",
+ "only_editable": "Només es poden editar les automatitzacions definides al fitxer automations.yaml.",
+ "pick_automation": "Selecciona l'automatització a editar",
+ "show_info_automation": "Mostra informació sobre l'automatització"
+ },
+ "thingtalk": {
+ "create": "Crea automatització",
+ "link_devices": {
+ "ambiguous_entities": "Un o més dispositius tenen més d'una entitat coincident. Escull la que vulguis utilitzar.",
+ "header": "Genial! Ara hem d'enllaçar alguns dispositius",
+ "unknown_placeholder": "Marcador desconegut"
+ },
+ "task_selection": {
+ "error_empty": "Introdueix alguna ordre o prem a omet.",
+ "error_unsupported": "No hem pogut crear una automatització per a això (encara?).",
+ "for_example": "Per exemple:",
+ "header": "Creació d'una nova automatització",
+ "introduction": "Escriu a continuació el que hauria de fer l'automatització i intentarem convertir-ho en una automatització de Home Assistant.",
+ "language_note": "Nota: ara per are només s'admet en anglès"
+ }
+ },
+ "trace": {
+ "download_trace": "Baixa la traça",
+ "edit_automation": "Edita automatització",
+ "newer_trace": "Traça més nova",
+ "older_trace": "Traça més antiga",
+ "refresh": "Actualitza"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "fòrums de la comunitat",
+ "error_no_url": "Introdueix l'URL del blueprint.",
+ "file_name": "Directori del blueprint",
+ "header": "Importa un blueprint nou",
+ "import_btn": "Vista prèvia del blueprint",
+ "import_header": "Blueprint ''{name}''",
+ "import_introduction_link": "Pots importar blueprints d'altres usuaris des de Github i des dels {community_link}. Introdueix, a sota, l'URL del blueprint.",
+ "importing": "Carregant blueprint…",
+ "raw_blueprint": "Contingut del blueprint",
+ "save_btn": "Importa blueprint",
+ "saving": "Important blueprint…",
+ "unsupported_blueprint": "Aquest blueprint no és compatible",
+ "url": "URL del blueprint"
+ },
+ "caption": "Blueprints",
+ "description": "Gestiona els blueprints",
+ "overview": {
+ "add_blueprint": "Importa blueprint",
+ "confirm_delete_header": "Eliminar aquest blueprint?",
+ "confirm_delete_text": "Segur que vols eliminar aquest blueprint?",
+ "create_automation": "Crea automatització",
+ "create_script": "Crea programa",
+ "delete_blueprint": "Elimina blueprint",
+ "discover_more": "Descobreix més blueprints",
+ "header": "Editor de blueprints",
+ "headers": {
+ "domain": "Domini",
+ "file_name": "Nom del fitxer",
+ "name": "Nom",
+ "type": "Tipus"
+ },
+ "introduction": "La configuració dels blueprints et permet importar-ne i gestionar-los.",
+ "learn_more": "Més informació sobre l'ús dels blueprints",
+ "share_blueprint": "Comparteix blueprint",
+ "share_blueprint_no_url": "No s'ha pogut compartir el blueprint: no hi ha cap URL origen",
+ "types": {
+ "automation": "Automatització",
+ "script": "Programa"
+ },
+ "use_blueprint": "Crea automatització"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Documentació de configuració",
+ "disable": "desactiva",
+ "enable": "activa",
+ "enable_ha_skill": "Activa l'auxiliar de Home Assistant per Alexa",
+ "enable_state_reporting": "Activa els informes d'estat",
+ "info": "Amb la integració d'Alexa per Home Assistant Cloud podràs controlar tots els dispositius de Home Assistant a través dels dispositius compatibles amb Alexa.",
+ "info_state_reporting": "Si actives els informes d'estat, Home Assistant enviarà a Amazon tots els canvis d'estat de les entitats exposades. Això et permetrà veure els últims estats a l'aplicació Alexa i utilitzar-los per crear rutines.",
+ "manage_entities": "Gestió d'entitats",
+ "state_reporting_error": "No s'ha pogut {enable_disable} l'informe d'estat.",
+ "sync_entities": "Sincronitza entitats amb Amazon",
+ "sync_entities_error": "No s'han pogut sincronitzar les entitats:",
+ "title": "Alexa"
+ },
+ "connected": "Connectat",
+ "connecting": "Connectant…",
+ "connection_status": "Estat de connexió amb Cloud",
+ "fetching_subscription": "Obtenint subscripció…",
+ "google": {
+ "config_documentation": "Documentació de configuració",
+ "devices_pin": "PIN dels dispositius de seguretat",
+ "enable_ha_skill": "Activa Home Assistant Cloud per Google Assistant",
+ "enable_state_reporting": "Activa els informes d'estat",
+ "enter_pin_error": "No s'ha pogut desar el PIN:",
+ "enter_pin_hint": "Introdueix un PIN per utilitzar dispositius de seguretat",
+ "enter_pin_info": "Introdueix un PIN per interactuar amb dispositius de seguretat. Aquests dispositius són, per exemple, portes, garatges o panys. Se't demanarà que introdueixis o diguis aquest PIN quan interactuïs amb aquests dispositius mitjançant Google Assistant.",
+ "info": "Amb la integració de Google Assistant per Home Assistant Cloud podràs controlar tots els dispositius de Home Assistant a través dels dispositius compatibles amb Google Assistant.",
+ "info_state_reporting": "Si actives els informes d'estat, Home Assistant enviarà a Google tots els canvis d'estat de les entitats exposades. Això et permetrà veure els últims estats a l'aplicació de Google.",
+ "manage_entities": "Gestió d'entitats",
+ "not_configured_text": "Abans de poder fer servir Google Assistant, has d'activar Home Assistant Cloud per a Google Assistant a l'aplicació de Google Home.",
+ "not_configured_title": "Google Assistant no està activat",
+ "security_devices": "Dispositius de seguretat",
+ "sync_entities": "Sincronitza les entitats amb Google",
+ "sync_entities_404_message": "No s'han pogut sincronitzar les entitats amb Google, digues ''Hey Google, sincronitza els meus dispositius'' per sincronitzar-les.",
+ "title": "Google Assistant"
+ },
+ "integrations": "Integracions",
+ "integrations_introduction": "Les integracions per Home Assistant Cloud et permeten connectar-vos a d'altres serveis al núvol sense haver d'exposar la teva instància de Home Assistant públicament a Internet.",
+ "integrations_introduction2": "Consulta el lloc web per ",
+ "integrations_link_all_features": "totes les funcions disponibles",
+ "manage_account": "Gestió del compte",
+ "nabu_casa_account": "Compte Nabu Casa",
+ "not_connected": "No connectat",
+ "remote": {
+ "access_is_being_prepared": "S'està preparant el control remot. T'avisarem quan estigui a punt.",
+ "certificate_info": "Informació del certificat",
+ "connected": "Connectat",
+ "info": "Home Assistant Cloud t'ofereix una connexió remota i segura amb la teva instància mentre siguis fora de casa",
+ "instance_is_available": "La teva instància està disponible a",
+ "instance_will_be_available": "La teva instància estarà disponible a",
+ "link_learn_how_it_works": "Informació sobre com funciona",
+ "not_connected": "No connectat",
+ "reconnecting": "No connectat. Tornant-ho a intentar.",
+ "remote_enabled": {
+ "caption": "Connexió automàtica",
+ "description": "Activa aquesta opció per assegurar-te que la teva instància de Home Assistant sempre sigui accessible de forma remota."
+ },
+ "title": "Control remot"
+ },
+ "sign_out": "Tanca sessió",
+ "thank_you_note": "Gràcies per formar part de Home Assistant Cloud. És gràcies a persones com tu que podem oferir una experiència domòtica excel·lent per a tothom.",
+ "tts": {
+ "default_language": "Idioma predeterminat a utilitzar",
+ "dialog": {
+ "create_automation": "Crea automatització",
+ "example_message": "Hola {name}, pots reproduir qualsevol text en els reproductors multimèdia compatibles!",
+ "header": "Prova el text a veu",
+ "play": "Reprodueix",
+ "target": "Objectiu",
+ "target_browser": "Navegador"
+ },
+ "female": "Dona",
+ "info": "Afegeix personalitat a casa teva a mitjançant l'ús dels nostres serveis de text a veu. Pots utilitzar-los en automatitzacions i scripts a través del servei {service}.",
+ "male": "Home",
+ "title": "Text a veu",
+ "try": "Prova-ho"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "No s'ha pogut desactivar el webhook:",
+ "info": "Qualsevol cosa que estigui configurada per disparar-se a través d'un webhook pot disposar d'un URL accessible públicament que permet retornar-li dades a Home Assistant des de qualsevol lloc i sense exposar la teva instància a Internet.",
+ "link_learn_more": "Més informació sobre la creació d'automatizacions basats en webhook.",
+ "loading": "Carregant…",
+ "manage": "Gestiona",
+ "no_hooks_yet": "Sembla que encara no tens cap webhook. Comença configurant una ",
+ "no_hooks_yet2": "o bé creant una",
+ "no_hooks_yet_link_automation": "automatització de webhook",
+ "no_hooks_yet_link_integration": "integració basada en webhook",
+ "title": "Webhooks"
+ }
+ },
+ "alexa": {
+ "banner": "L'edició de quines entitats estan exposades a través de la IU està desactivada perquè hi ha filtres d'entitats configurats a configuration.yaml.",
+ "dont_expose_entity": "No exposis l'entitat",
+ "expose": "Exposa a Alexa",
+ "expose_entity": "Exposa l'entitat",
+ "exposed": "{selected} exposat",
+ "exposed_entities": "Entitats exposades",
+ "follow_domain": "Segueix domini",
+ "manage_domains": "Gestiona dominis",
+ "not_exposed": "{selected} no exposat",
+ "not_exposed_entities": "Entitats no exposades",
+ "title": "Alexa"
+ },
+ "description_features": "Controla la casa quan siguis fora i integra-hi Alexa i Google Assistant",
+ "description_login": "Sessió iniciada com a {email}",
+ "description_not_login": "No has iniciat sessió",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Data de caducitat del certificat:",
+ "certificate_information": "Informació del certificat",
+ "close": "Tanca",
+ "fingerprint": "Empremta del certificat:",
+ "will_be_auto_renewed": "es renovarà automàticament"
+ },
+ "dialog_cloudhook": {
+ "available_at": "El webhook està disponible a l'URL següent:",
+ "close": "Tanca",
+ "confirm_disable": "Estàs segur que vols desactivar aquest webhook?",
+ "copied_to_clipboard": "Copiat al porta-retalls",
+ "info_disable_webhook": "Si ja no vols fer servir aquest webhook, pots",
+ "link_disable_webhook": "desactiva-lo",
+ "managed_by_integration": "Aquest webhook està gestionat per una integració i no es pot desactivar.",
+ "view_documentation": "Mostra la documentació",
+ "webhook_for": "Webhook per {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "Consulta el correu electrònic per obtenir instruccions sobre com restablir la teva contrasenya.",
+ "email": "Correu electrònic",
+ "email_error_msg": "Correu electrònic invàlid",
+ "instructions": "Introdueix el teu correu electrònic i t'enviarem un enllaç per restablir la contrasenya.",
+ "send_reset_email": "Envia correu electrònic de restabliment",
+ "subtitle": "Has oblidat la teva contrasenya",
+ "title": "Oblit de la contrasenya"
+ },
+ "google": {
+ "banner": "L'edició de quines entitats estan exposades a través de la IU està desactivada perquè hi ha filtres d'entitats configurats a configuration.yaml.",
+ "disable_2FA": "Desactiva l'autenticació en dos passos",
+ "dont_expose_entity": "No exposis l'entitat",
+ "expose": "Exposa a Google Assistant",
+ "expose_entity": "Exposa l'entitat",
+ "exposed": "{selected} exposat",
+ "exposed_entities": "Entitats exposades",
+ "follow_domain": "Segueix domini",
+ "manage_domains": "Gestiona dominis",
+ "not_exposed": "{selected} no exposat",
+ "not_exposed_entities": "Entitats no exposades",
+ "sync_to_google": "Sincronitzant els canvis amb Google.",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Has de confirmar el teu correu electrònic abans d'iniciar sessió.",
+ "alert_password_change_required": "Has de canviar la teva contrasenya abans d'iniciar sessió.",
+ "dismiss": "Omet",
+ "email": "Correu electrònic",
+ "email_error_msg": "Correu electrònic invàlid",
+ "forgot_password": "Has oblidat la contrasenya?",
+ "introduction": "Home Assistant Cloud t'ofereix una connexió remota i segura amb la teva instància mentre siguis fora de casa. També et permet connectar-te amb els serveis disponibles al núvol: Amazon Alexa i Google Assistant.",
+ "introduction2": "Aquest servei està gestionat pel nostre soci ",
+ "introduction2a": ", una empresa fundada pels creadors de Home Assistant.",
+ "introduction3": "Home Assistant Cloud és un servei de subscripció amb una prova gratuïta d'un mes. No és necessària la informació de pagament.",
+ "learn_more_link": "Més informació sobre Home Assistant Cloud",
+ "password": "Contrasenya",
+ "password_error_msg": "La contrasenya han de tenir un mínim de 8 caràcters",
+ "sign_in": "Inicia sessió",
+ "start_trial": "Inicia la prova gratuïta d'1 mes",
+ "title": "Inici de sessió des del núvol (Cloud)",
+ "trial_info": "No és necessària la informació de pagament"
+ },
+ "register": {
+ "account_created": "Compte creat! Consulta el correu electrònic per obtenir instruccions sobre com activar el compte.",
+ "create_account": "Crear compte",
+ "email_address": "Correu electrònic",
+ "email_error_msg": "Correu electrònic invàlid",
+ "feature_amazon_alexa": "Integració amb Amazon Alexa",
+ "feature_google_home": "Integració amb Google Assistant",
+ "feature_remote_control": "Control de Home Assistant fora de casa",
+ "feature_webhook_apps": "Fàcil integració amb aplicacions basades en webhook com OwnTracks",
+ "headline": "Inicia la prova gratuïta",
+ "information": "Crea un compte per iniciar la prova gratuïta d'un mes amb Home Assistant Cloud. No és necessària la informació de pagament.",
+ "information2": "La prova et donarà accés a tots els avantatges de Home Assistant Cloud, inclosos:",
+ "information3": "Aquest servei està gestionat pel nostre soci ",
+ "information3a": ", una empresa fundada pels creadors de Home Assistant.",
+ "information4": "En registrar un compte, acceptes els termes i condicions següents.",
+ "link_privacy_policy": "Política de privacitat",
+ "link_terms_conditions": "Termes i condicions",
+ "password": "Contrasenya",
+ "password_error_msg": "La contrasenya han de tenir un mínim de 8 caràcters",
+ "resend_confirm_email": "Reenvia el correu de confirmació",
+ "start_trial": "Inicia la prova",
+ "title": "Registre del compte"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Hi han canvis no desats. Segur que vols sortir?"
+ },
+ "learn_more": "Més informació"
+ },
+ "core": {
+ "caption": "General",
+ "description": "Ubicació, xarxa i dades analítiques",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Moneda",
+ "edit_requires_storage": "L'editor està desactivat ja que la configuració es troba a configuration.yaml.",
+ "elevation": "Altitud",
+ "elevation_meters": "metres",
+ "external_url": "URL extern",
+ "find_currency_value": "Troba el teu valor",
+ "imperial_example": "Fahrenheit, lliures",
+ "internal_url": "URL intern",
+ "latitude": "Latitud",
+ "location_name": "Nom de la instal·lació de Home Assistant",
+ "longitude": "Longitud",
+ "metric_example": "Celsius, quilograms",
+ "save_button": "Desa",
+ "time_zone": "Zona horària",
+ "unit_system": "Sistema d'unitats",
+ "unit_system_imperial": "Imperial",
+ "unit_system_metric": "Mètric"
+ },
+ "header": "Configuració general",
+ "introduction": "Gestiona la teva ubicació, xarxa i dades analítiques."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Els atributs següents ja s'han definit a customize.yaml",
+ "attributes_not_set": "Els atributs següents no s'han configurat. Els pots configurar, si vols.",
+ "attributes_outside": "Els atributs següents es configuren des de fora del fitxer customize.yaml",
+ "attributes_override": "Si vols, pots substituir-los.",
+ "attributes_set": "Els següents atributs d'entitat s'estableixen programàticament.",
+ "caption": "Personalització",
+ "description": "Personalitza les entitats",
+ "different_include": "Possiblement a través d'un domini o una altra inclusió diferent.",
+ "pick_attribute": "Selecciona un atribut per substituir-lo",
+ "picker": {
+ "documentation": "Documentació de personalització",
+ "header": "Personalitzacions",
+ "introduction": "Personalitza els atributs de les entitats al teu gust. Les personalitzacions afegides/modificades apareixeran immediatament, les que s'hagin eliminat tindran efecte quan l'entitat s'actualitzi."
+ },
+ "warning": {
+ "include_link": "inclou customize.yaml",
+ "include_sentence": "Sembla que la teva configuració a configuration.yaml no",
+ "not_applied": "Els canvis realitzats aquí es desen, però no s'aplicaran fins que es torni a carregar la configuració, tret que la inclusió estigui present."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Gestiona automatitzacions, escenes, scripts i ajudants",
+ "title": "Automatitzacions i escenes"
+ },
+ "blueprints": {
+ "description": "Automatitzacions i scripts creats per la comunitat",
+ "title": "Blueprints"
+ },
+ "companion": {
+ "description": "Ubicació i notificacions",
+ "title": "App Companion"
+ },
+ "dashboards": {
+ "description": "Crea conjunts de targetes personalitzades per controlar casa teva",
+ "title": "Panells"
+ },
+ "devices": {
+ "description": "Integracions, dispositius, entitats i àrees",
+ "title": "Dispositius i serveis"
+ },
+ "energy": {
+ "description": "Monitoritza la teva producció i consum d'energia",
+ "title": "Energia"
+ },
+ "people": {
+ "description": "Gestiona les persones i zones a les que Home Assistant fa seguiment",
+ "title": "Persones i zones"
+ },
+ "settings": {
+ "description": "Configuració bàsica, controls del servidor, registres i informació",
+ "title": "Configuració"
+ },
+ "supervisor": {
+ "description": "Crea còpies de seguretat, comprova els registres o reinicia el sistema",
+ "title": "Complements, còpies de seguretat i Supervisor"
+ },
+ "tags": {
+ "description": "Executa automatitzacions quan una etiqueta NFC, un codi QR, etc; s'escanegi",
+ "title": "Etiquetes"
+ }
+ },
+ "devices": {
+ "add_prompt": "Encara no s'han afegit {name} mitjançant aquest dispositiu. Pots afegir-ne fent clic al botó + a sobre.",
+ "automation": {
+ "actions": {
+ "caption": "Quan es dispara alguna cosa…",
+ "no_actions": "Sense accions",
+ "unknown_action": "Acció desconeguda"
+ },
+ "automations": "Automatitzacions",
+ "conditions": {
+ "caption": "Només fer alguna cosa si…",
+ "no_conditions": "Sense condicions",
+ "unknown_condition": "Condició desconeguda"
+ },
+ "create": "Crea una automatització amb el dispositiu",
+ "create_disable": "No es pot crear una automatització amb dispositius desactivats",
+ "no_automations": "No hi ha automatitzacions",
+ "no_device_automations": "No hi ha automatitzacions disponibles per a aquest dispositiu.",
+ "triggers": {
+ "caption": "Feu alguna cosa quan…",
+ "no_triggers": "Sense disparadors",
+ "unknown_trigger": "Disparador desconegut"
+ },
+ "unknown_automation": "Automatització desconeguda"
+ },
+ "cant_edit": "Només pots editar els elements creats a la interfície d'usuari (UI).",
+ "caption": "Dispositius",
+ "confirm_delete": "Estàs segur que vols eliminar aquest dispositiu?",
+ "confirm_disable_config_entry": "No hi ha més dispositius per a l'entrada de configuració {entry_name}. En comptes, vols desactivar l'entrada de configuració?",
+ "confirm_rename_entity_ids": "Vols, també, canviar el nom dels ID's de les entitats?",
+ "confirm_rename_entity_ids_warning": "Això no canviarà cap configuració (com automatitzacions, scripts, escenes, panells) que estigui utilitzant aquestes entitats. Les hauràs d'actualitzar tu mateix per utilitzar els nous identificadors.",
+ "data_table": {
+ "area": "Àrea",
+ "battery": "Bateria",
+ "device": "Dispositiu",
+ "integration": "Integració",
+ "manufacturer": "Fabricant",
+ "model": "Model",
+ "no_devices": "Sense dispositius",
+ "no_integration": "Sense integració"
+ },
+ "delete": "Elimina",
+ "description": "Gestiona els dispositius configurats",
+ "device_info": "Informació del dispositiu",
+ "device_not_found": "Dispositiu no trobat.",
+ "disabled": "Desactivat",
+ "disabled_by": {
+ "config_entry": "Entrada de configuració",
+ "integration": "Integració",
+ "user": "Usuari"
+ },
+ "download_diagnostics": "Baixa diagnòstics",
+ "edit_settings": "Edita la configuració",
+ "enabled_cause": "El dispositiu està desactivat per {cause}.",
+ "enabled_description": "Els dispositius desactivats no es mostraran i les entitats que hi pertanyin es desactivaran i no s'afegiran a Home Assistant.",
+ "enabled_label": "Activa dispositiu",
+ "entities": {
+ "add_entities_lovelace": "Afegeix a Lovelace",
+ "config": "Configuració",
+ "control": "Controls",
+ "diagnostic": "Diagnòstic",
+ "disabled_entities": "+{count} {count, plural,\n one {entitat desabilitada}\n other {entitats desabilitades}\n}",
+ "entities": "Entitats",
+ "hide_disabled": "Amaga desactivades",
+ "none": "Aquest dispositiu no té entitats",
+ "sensor": "Sensors",
+ "state": "Estat"
+ },
+ "name": "Nom",
+ "no_devices": "No hi ha dispositius",
+ "open_configuration_url_device": "Visita el dispositiu",
+ "open_configuration_url_service": "Visita el servei",
+ "picker": {
+ "filter": {
+ "filter": "Filtra",
+ "hidden_devices": "{number} {number, plural,\n one {dispositiu amagat}\n other {dispositius amagats}\n}",
+ "show_all": "Mostra-ho tot",
+ "show_disabled": "Mostra dispositius desactivats"
+ },
+ "search": "Cerca dispositius"
+ },
+ "scene": {
+ "create": "Crea una escena amb el dispositiu",
+ "create_disable": "No es pot crear una escena amb dispositius desactivats",
+ "no_scenes": "No hi ha escenes",
+ "scenes": "Escenes"
+ },
+ "scenes": "Escenes",
+ "script": {
+ "create": "Crea un programa (script) amb el dispositiu",
+ "create_disable": "No es pot crear un script amb dispositius desactivats",
+ "no_scripts": "No hi ha scripts",
+ "scripts": "Scripts"
+ },
+ "scripts": "Programes (scripts)",
+ "unknown_error": "Error desconegut",
+ "unnamed_device": "Dispositiu sense nom",
+ "update": "Actualitza",
+ "update_device_error": "No s'ha pogut actualitzar el dispositiu"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Afegeix sistema amb bateria",
+ "battery_systems": "Sistemes amb bateria",
+ "dialog": {
+ "energy_into_battery": "Energia que entra a la bateria (kWh)",
+ "energy_out_of_battery": "Energia que surt de la bateria (kWh)",
+ "header": "Configuració de sistema amb bateria"
+ },
+ "learn_more": "Més informació sobre com començar.",
+ "sub": "Si tens un sistema amb bateria, pots configurar la seva monitorització per controlar la quantitat d'energia que s'emmagatzema o s'extreu de la bateria.",
+ "title": "Emmagatzematge amb bateria"
+ },
+ "caption": "Energia",
+ "delete_integration": "Segur que vols eliminar aquesta integració? S'eliminaran les entitats que proporciona",
+ "delete_source": "Estàs segur que vols eliminar aquesta font?",
+ "description": "Monitoritza la teva producció i consum d'energia",
+ "device_consumption": {
+ "add_device": "Afegeix dispositiu",
+ "add_stat": "Tria una entitat per fer-li el seguiment d'energia",
+ "devices": "Dispositius",
+ "dialog": {
+ "device_consumption_energy": "Consum del dispositiu (kWh)",
+ "header": "Afegeix un dispositiu",
+ "selected_stat_intro": "Seleccional l'entitat que representa el consum d'energia del dispositiu."
+ },
+ "learn_more": "Més informació sobre com començar.",
+ "selected_stat": "Seguint energia de",
+ "sub": "El seguiment de consum d'energia de dispositius individuals permet a Home Assistant desglossar l'ús d'energia per dispositius.",
+ "title": "Dispositius individuals"
+ },
+ "gas": {
+ "add_gas_source": "Afegeix una font de gas",
+ "dialog": {
+ "cost_entity": "Utilitza una entitat amb el preu actual",
+ "cost_entity_input": "Entitat amb el preu actual per {unit}",
+ "cost_number": "Utilitza un preu fix",
+ "cost_number_input": "Preu per {unit}",
+ "cost_number_suffix": "{currency}/m³",
+ "cost_para": "Tria com vols que Home Assistant faci el seguiment dels costos de l'energia consumida.",
+ "cost_stat": "Utilitza una entitat que segueix els costos totals",
+ "cost_stat_input": "Entitat de costos totals",
+ "energy_stat": "Energia consumida (m³)",
+ "gas_usage": "Consum de gas",
+ "header": "Configura el consum de gas",
+ "m3_or_kWh": "ft³, m³, Wh, kWh o MWh",
+ "no_cost": "No facis seguiment de costos",
+ "paragraph": "El consum de gas és el volum de gas que flueix cap a casa teva."
+ },
+ "gas_consumption": "Consum de gas",
+ "learn_more": "Més informació sobre com començar.",
+ "sub": "Fes que Home Assistant analitzi el teu consum de gas.",
+ "title": "Consum de gas"
+ },
+ "grid": {
+ "add_co2_signal": "Afegeix integració CO2 signal",
+ "add_consumption": "Afegeix consum",
+ "add_return": "Afegeix retorn",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Utilitza una entitat amb el preu actual",
+ "cost_entity_input": "Entitat amb el preu actual",
+ "cost_number": "Utilitza un preu fix",
+ "cost_number_input": "Preu per kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Tria com vols que Home Assistant faci el seguiment dels costos de l'energia consumida.",
+ "cost_stat": "Utilitza una entitat que segueix els costos totals",
+ "cost_stat_input": "Entitat de costos totals",
+ "energy_stat": "Energia consumida (kWh)",
+ "header": "Configura el consum de xarxa",
+ "no_cost": "No facis seguiment de costos",
+ "paragraph": "El consum de xarxa és l'energia que va des de la xarxa pública a casa teva."
+ },
+ "to": {
+ "cost_entity": "Utilitza una entitat amb el preu actual",
+ "cost_entity_input": "Entitat amb el preu actual",
+ "cost_number": "Utilitza un preu estàtic",
+ "cost_number_input": "Preu per kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Et retornen diners quan exportes energia a la xarxa?",
+ "cost_stat": "Utilitza una entitat que segueix el total de diners rebuts",
+ "cost_stat_input": "Entitat de compensació total",
+ "energy_stat": "Energia exportada a la xarxa (kWh)",
+ "header": "Configura la producció a xarxa",
+ "no_cost": "No em retornen diners",
+ "paragraph": "La producció a xarxa és l'energia que va des dels teus panells fotovoltaics a la xarxa pública."
+ }
+ },
+ "grid_carbon_footprint": "Petjada de carboni de la xarxa",
+ "grid_consumption": "Consum de xarxa",
+ "learn_more": "Més informació sobre com començar.",
+ "return_to_grid": "Retorn a la xarxa",
+ "sub": "Configura la quantitat d'energia que consumeixes i retornes a la xarxa (en cas que també en produeixis). Això fa que Home Assistant faci un seguiment complet de l'energia utilitzada a casa.",
+ "title": "Xarxa elèctrica"
+ },
+ "new_device_info": "Després de configurar un dispositiu nou, les noves dades poden trigar fins a dues hores a aparèixer al panell d'energia.",
+ "solar": {
+ "add_solar_production": "Afegeix producció solar",
+ "dialog": {
+ "add_forecast": "Afegeix previsió",
+ "dont_forecast_production": "No pronosticar la producció",
+ "forecast_production": "Previsió de producció",
+ "header": "Configuració de plaques solars",
+ "solar_production_energy": "Energia de producció solar (kWh)",
+ "solar_production_forecast": "Previsió de producció solar",
+ "solar_production_forecast_description": "Si afegeixes la previsió de producció solar, podràs veure ràpidament la producció esperada d'avui."
+ },
+ "learn_more": "Més informació sobre com començar.",
+ "solar_production": "Producció solar",
+ "stat_predicted_production": "Previsió de la teva producció d'energia solar",
+ "stat_production": "Producció d'energia solar",
+ "stat_return_to_grid": "Energia solar exportada a la xarxa",
+ "sub": "Fes que Home Assistant analitzi els panells solars i et doni informació sobre el seu rendiment.",
+ "title": "Panells fotovoltaics"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "Les entitats següents tenen un estat negatiu, només s'esperen estats positius:",
+ "title": "L'entitat té un estat negatiu"
+ },
+ "entity_not_defined": {
+ "description": "Comprova la integració o la configuració que proporciona:",
+ "title": "Entitat no definida"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "Les entitats següents tenen la clase d'estat 'measurement' però els falta 'last_reset':",
+ "title": "Falta la classe 'last reset'"
+ },
+ "entity_state_non_numeric": {
+ "description": "Les entitats següents tenen un estat que no es pot formatar com a un número:",
+ "title": "L'entitat té un estat no numèric"
+ },
+ "entity_unavailable": {
+ "description": "L'estat actual d'aquestes entitats configurades no està disponible:",
+ "title": "Entitat no disponible"
+ },
+ "entity_unexpected_device_class": {
+ "description": "Les entitats següents no tenen la classe de dispositiu esperada:",
+ "title": "Classe de dispositiu inesperada"
+ },
+ "entity_unexpected_state_class": {
+ "description": "Les entitats següents no tenen la classe d'estat esperada:",
+ "title": "Classe d'estat inesperada"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "Les entitats següents no tenen la classe d'estat esperada 'total_increasing'",
+ "title": "Classe d'estat inesperada"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "Les entitats següents no tenen la unitat de mesura esperada 'Wh', 'kWh' o 'MWh':",
+ "title": "Unitat de mesura inesperada"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "Les entitats següents no tenen la unitat de mesura esperada ''{currency}/kWh'', ''{currency}/Wh'' o ''{currency}/MWh'':",
+ "title": "Unitat de mesura inesperada"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "Les entitats següents no tenen la unitat de mesura esperada 'Wh', 'kWh', o 'MWh' pels sensors d'energia o 'm³' o 'ft³' pels sensors de gas:",
+ "title": "Unitat de mesura inesperada"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "Les entitats següents no tenen la unitat de mesura esperada ''{currency}/kWh'', ''{currency}/Wh'', ''{currency}/MWh'', ''{currency}/m³'' o ''{currency}/ft³'':",
+ "title": "Unitat de mesura inesperada"
+ },
+ "recorder_untracked": {
+ "description": "El \"recorder\" s'ha configurat per excloure les següents entitats:",
+ "title": "Entitat sense seguiment"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Entitats",
+ "description": "Gestiona les entitats conegudes",
+ "picker": {
+ "disable_selected": {
+ "button": "Desactiva seleccionada/es",
+ "confirm_text": "Les entitats desactivades no s'afegiran a Home Assistant.",
+ "confirm_title": "Vols desactivar {number} {number, plural,\n one {entitat}\n other {entitats}\n}?"
+ },
+ "enable_selected": {
+ "button": "Activa seleccionada/es",
+ "confirm_text": "Això farà que tornin a estar disponibles a Home Assistant si estan desactivades.",
+ "confirm_title": "Vols activar {number} {number, plural,\n one {entitat}\n other {entitats}\n}?"
+ },
+ "filter": {
+ "filter": "Filtra",
+ "hidden_entities": "{number} {number, plural,\n one {entitat amagada}\n other {entitats amagades}\n}",
+ "show_all": "Mostra-ho tot",
+ "show_disabled": "Mostra entitats desactivades",
+ "show_readonly": "Mostra entitats de només lectura",
+ "show_unavailable": "Mostra entitats no disponibles"
+ },
+ "header": "Entitats",
+ "headers": {
+ "area": "Àrea",
+ "disabled_by": "Desactivat per",
+ "entity_id": "ID de l'entitat",
+ "integration": "Integració",
+ "name": "Nom",
+ "status": "Estat"
+ },
+ "introduction": "Home Assistant manté un registre de totes les entitats que ha detectat alguna vegada les quals tenen una identificació única. Cadascuna d'aquestes entitats té un identificador, ID, assignat que està reservat només per a ella.",
+ "introduction2": "Utilitza el registre d'entitats per canviar el nom, canviar l'ID o eliminar l'entrada de Home Assistant.",
+ "remove_selected": {
+ "button": "Elimina seleccionada/es",
+ "confirm_partly_text": "Només pots eliminar {removable} de les {selected} entitats seleccionades. Les entitats només es poden eliminar quan la integració ja no les està proporcionant.\nA vegades pot ser que hagis de reiniciar Home Assistant per poder eliminar les entitats d'una antiga integració eliminada. Segur que vols eliminar les entitats?",
+ "confirm_partly_title": "Només {number} {number, plural,\n one {entitat seleccionada pot ser eliminada}\n other {entitats seleccionades poden ser eliminades}\n}.",
+ "confirm_text": "Hauries d'eliminar aquestes entitats de les configuracions de Lovelace i de les automatitzacions que les continguin.",
+ "confirm_title": "Vols eliminar {number} {number, plural,\n one {entitat}\n other {entitats}\n}?"
+ },
+ "search": "Cerca entitats",
+ "selected": "{number} seleccionada/es",
+ "status": {
+ "disabled": "Desactivada/es",
+ "ok": "D'acord",
+ "readonly": "Només lectura",
+ "restored": "Restaurades",
+ "unavailable": "No disponible/s"
+ }
+ }
+ },
+ "header": "Configuració de Home Assistant",
+ "helpers": {
+ "caption": "Ajudants",
+ "description": "Elements útils per a construir automatitzacions",
+ "dialog": {
+ "add_helper": "Afegeix ajudant",
+ "add_platform": "Afegeix {platform}",
+ "create": "Crea"
+ },
+ "picker": {
+ "add_helper": "Afegeix ajudant",
+ "headers": {
+ "editable": "Editable",
+ "entity_id": "ID de l'entitat",
+ "name": "Nom",
+ "type": "Tipus"
+ },
+ "no_helpers": "Sembla que encara no tens ajudants."
+ },
+ "types": {
+ "counter": "Comptador",
+ "input_boolean": "Interruptor",
+ "input_button": "Botó",
+ "input_datetime": "Data i/o hora",
+ "input_number": "Número",
+ "input_select": "Desplegable",
+ "input_text": "Text",
+ "timer": "Temporitzador"
+ }
+ },
+ "info": {
+ "built_using": "Creat utilitzant",
+ "caption": "Informació",
+ "copy_github": "Per GitHub",
+ "copy_menu": "Copia menú",
+ "copy_raw": "Text en brut",
+ "custom_uis": "Interfícies d'usuari personalitzades:",
+ "description": "Versió, estat del sistema i enllaços a la documentació",
+ "developed_by": "Desenvolupat per un munt de gent fantàstica.",
+ "documentation": "Documentació",
+ "frontend": "frontend-ui",
+ "frontend_version": "Versió de la interfície web d'usuari: {version} - {type}",
+ "home_assistant_logo": "Logotip de Home Assistant",
+ "icons_by": "Icones de",
+ "integrations": "Integracions",
+ "issues": "Problemes",
+ "license": "Publicat amb la llicència Apache 2.0",
+ "path_configuration": "Ruta al fitxer configuration.yaml: {path}",
+ "server": "servidor",
+ "setup_time": "Temps de configuració",
+ "source": "Font:",
+ "system_health": {
+ "manage": "Gestiona",
+ "more_info": "més informació"
+ },
+ "system_health_error": "El component Estat del Sistema no està configurat. Afegeix 'system_health:' a configuration.yaml"
+ },
+ "integrations": {
+ "add_integration": "Afegeix integració",
+ "attention": "Cal atenció",
+ "caption": "Integracions",
+ "config_entry": {
+ "area": "A {area}",
+ "check_the_logs": "Comprova els registres",
+ "configure": "Configura",
+ "delete": "Elimina",
+ "delete_confirm": "Estàs segur que vols eliminar la integració {title}?",
+ "depends_on_cloud": "Depèn del núvol",
+ "device_unavailable": "Dispositiu no disponible",
+ "devices": "{count} {count, plural,\n one {dispositiu}\n other {dispositius}\n}",
+ "disable": {
+ "disable_confirm": "Estàs segur que vols desactivar aquesta entrada de configuració? Els seus dispositius i entitats es desactivaran.",
+ "disabled": "Desactivada",
+ "disabled_by": {
+ "device": "dispositiu",
+ "integration": "integració",
+ "user": "usuari"
+ },
+ "disabled_cause": "Desactivada per {cause}"
+ },
+ "disable_error": "S'ha produït un error en activar o desactivar la integració",
+ "disable_restart_confirm": "Reinicia Home Assistant per acabar de desactivar aquesta integració",
+ "disabled_polling": "Sondeig automàtic per l'obtenció de dades actualitzades desactivat",
+ "documentation": "Documentació",
+ "download_diagnostics": "Baixa diagnòstics",
+ "enable_restart_confirm": "Reinicia Home Assistant per acabar d'activar aquesta integració",
+ "entities": "{count} {count, plural,\n one {entitat}\n other {entitats}\n}",
+ "entity_unavailable": "Entitat no disponible",
+ "firmware": "Firmware: {version}",
+ "hardware": "Maquinari: {version}",
+ "hub": "Connectat a través de",
+ "known_issues": "Problemes coneguts",
+ "manuf": "de {manufacturer}",
+ "no_area": "Sense àrea",
+ "not_loaded": "No carregada",
+ "open_configuration_url": "Mira el dispositiu",
+ "provided_by_custom_integration": "Proporcionada per una integració personalitzada",
+ "reload": "Torna a carregar",
+ "reload_confirm": "La integració s'ha tornat a carregar",
+ "reload_restart_confirm": "Reinicia Home Assistant per acabar de carregar aquesta integració",
+ "rename": "Canvia el nom",
+ "restart_confirm": "Reinicia Home Assistant per acabar d'eliminar aquesta integració",
+ "services": "{count} {count, plural,\n one {servei}\n other {serveis}\n}",
+ "state": {
+ "failed_unload": "No s'ha pogut desactivar",
+ "loaded": "Carregada",
+ "migration_error": "Error de migració",
+ "not_loaded": "No carregada",
+ "setup_error": "No s'ha pogut configurar",
+ "setup_retry": "S'està tornant a provar de configurar"
+ },
+ "system_options": "Opcions de sistema",
+ "unknown_via_device": "Dispositiu desconegut",
+ "unnamed_entry": "Entrada sense nom",
+ "via": "Connectat mitjançant"
+ },
+ "config_flow": {
+ "aborted": "Avortat",
+ "close": "Tanca",
+ "could_not_load": "El flux de dades de configuració no s'ha pogut carregar",
+ "created_config": "S'ha creat configuració per a {name}.",
+ "dismiss": "Omet el diàleg",
+ "error": "Error",
+ "error_saving_area": "Error desant àrea: {error}",
+ "external_step": {
+ "description": "Aquest pas requereix que visitis un lloc web extern per completar-lo.",
+ "open_site": "Vés al lloc web"
+ },
+ "finish": "Finalitza",
+ "loading": {
+ "fallback_title": "la integració",
+ "loading_flow": "Espera mentre es configura {integration}",
+ "loading_step": "Carregant el següent pas de {integration}"
+ },
+ "next": "Següent",
+ "not_all_required_fields": "No s'han omplert tots els camps obligatoris.",
+ "not_loaded": "No s'ha pogut carregar la integració, prova de reiniciar Home Assistant.",
+ "pick_flow_step": {
+ "new_flow": "No, configura una altra instància de {integration}",
+ "title": "N'hem descobert aquests, vols configurar-los?"
+ },
+ "submit": "Envia"
+ },
+ "configure": "Configurar",
+ "configured": "Configurades",
+ "confirm_new": "Vols configurar {integration}?",
+ "description": "Gestiona les integracions amb serveis o dispositius",
+ "details": "Detalls de la integració",
+ "disable": {
+ "disabled_integrations": "{number} desactivada/es",
+ "show": "Mostra",
+ "show_disabled": "Mostra integracions desactivades"
+ },
+ "discovered": "Descobertes",
+ "home_assistant_website": "lloc web de Home Assistant",
+ "ignore": {
+ "confirm_delete_ignore": "Això farà que quan la integració es descobreixi torni a aparèixer a les integracions descobertes. Pot ser que tardi una estona o es necessiti reiniciar.",
+ "confirm_delete_ignore_title": "Vols deixar d'ignorar {name}?",
+ "confirm_ignore": "Estàs segur que no vols configurar aquesta integració? Pots desfer-ho fent clic a 'Mostra les integracions ignorades' al menú de la part superior dreta.",
+ "confirm_ignore_title": "Ignorar descobriment de {name}?",
+ "ignore": "Ignora",
+ "ignored": "Ignorada",
+ "show_ignored": "Mostra les integracions ignorades",
+ "stop_ignore": "Deixa d'ignorar"
+ },
+ "integration": "integració",
+ "integration_not_found": "No s'ha trobat la integració.",
+ "new": "Configura una nova integració",
+ "no_integrations": "Sembla que encara no tens cap integració configurada. Prem al botó de sota per afegir la teva primera integració!",
+ "none": "Encara no hi ha res configurat",
+ "none_found": "No s'han trobat integracions",
+ "none_found_detail": "Ajusta els paràmetres de cerca.",
+ "note_about_integrations": "No s'ha trobat cap integració que coincident, és possible que la integració encara no estigui disponible per configurar-se a través de la interfície d'usuari.",
+ "note_about_website_reference": "En pots trobar més al ",
+ "reconfigure": "Reconfigura",
+ "rename_dialog": "Edita el nom de l'entrada de configuració",
+ "rename_input_label": "Nom de l'entrada",
+ "search": "Cerca integracions"
+ },
+ "introduction": "Aquí pots configurar Home Assistant i els teus components. Encara no és possible configurar-ho tot des de la interfície d'usuari, però hi estem treballant.",
+ "logs": {
+ "caption": "Registres",
+ "clear": "Esborra",
+ "copy": "Copia l'entrada de registre",
+ "custom_integration": "integració personalitzada",
+ "description": "Consulta els registres de Home Assistant",
+ "details": "Detalls del registre ({level})",
+ "error_from_custom_integration": "Aquest error té origen en una integració personalitzada.",
+ "level": {
+ "critical": "CRÍTIC",
+ "debug": "DEPURACIÓ",
+ "error": "ERROR",
+ "info": "INFO",
+ "warning": "ALERTA"
+ },
+ "load_full_log": "Carrega el registre complet de Home Assistant",
+ "loading_log": "Carregant registre d'errors…",
+ "multiple_messages": "missatge produit per primera vegada a les {time}, apareix {counter} vegades",
+ "no_errors": "No s'ha informat de cap error",
+ "no_issues": "No hi ha registres nous!",
+ "refresh": "Actualitza"
+ },
+ "lovelace": {
+ "caption": "Panells Lovelace",
+ "dashboards": {
+ "cant_edit_default": "El panell Lovelace per defecte, visualització general, no pot ser editat des de la interfície d'usuari. El pots amagar configurant-ne un altre com a panell per defecte.",
+ "cant_edit_yaml": "Els panells Lovelace definits en YAML no poden ser editats des de la interfñicie d'usuari. Edita'ls des de 'configuration.yaml'.",
+ "caption": "Panells",
+ "conf_mode": {
+ "storage": "Controlat per la IU",
+ "yaml": "Fitxer YAML"
+ },
+ "confirm_delete": "Estàs segur que vols eliminar aquest panell?",
+ "confirm_delete_text": "El panell s'eliminarà permanentment.",
+ "confirm_delete_title": "Eliminar {dashboard_title}?",
+ "default_dashboard": "Aquest és el panell per defecte",
+ "detail": {
+ "create": "Crea",
+ "delete": "Elimina",
+ "dismiss": "Tanca",
+ "edit_dashboard": "Edita el panell",
+ "icon": "Icona",
+ "new_dashboard": "Afegeix un nou panell",
+ "remove_default": "Elimina'l com a predeterminat en aquest dispositiu",
+ "require_admin": "Només administrador",
+ "set_default": "Estableix-lo com a predeterminat en aquest dispositiu",
+ "show_sidebar": "Mostra a la barra lateral",
+ "title": "Títol",
+ "title_required": "El títol és necessari.",
+ "update": "Actualitza",
+ "url": "URL",
+ "url_error_msg": "L'URL ha de contenir un '-' i no contenir espais o caràcters especials, excepte '_' i '-'."
+ },
+ "picker": {
+ "add_dashboard": "Afegeix panell",
+ "headers": {
+ "conf_mode": "Mètode de configuració",
+ "default": "Per defecte",
+ "filename": "Nom del fitxer",
+ "require_admin": "Només administrador",
+ "sidebar": "Mostra a la barra lateral",
+ "title": "Títol"
+ },
+ "open": "Obrir"
+ }
+ },
+ "description": "Crea conjunts de panells personalitzats per controlar la teva casa",
+ "resources": {
+ "cant_edit_yaml": "Estàs utilitzant Lovelace en mode YAML per tant no pots gestionar els recursos des de la interfície d'usuari. Els pots gestionar des del fitxer 'configuration.yaml'.",
+ "caption": "Recursos",
+ "confirm_delete": "Estàs segur que vols eliminar aquest recurs?",
+ "detail": {
+ "create": "Crea",
+ "delete": "Elimina",
+ "dismiss": "Tanca",
+ "new_resource": "Afegeix nou recurs",
+ "type": "Tipus de recurs",
+ "update": "Actualitza",
+ "url": "URL",
+ "url_error_msg": "L'URL és un camp obligatori",
+ "warning_header": "Vés amb compte!",
+ "warning_text": "Afegir recursos pot ser perillós, assegura't de conèixer i confiar en el seu origen. Els recursos fraudulents poden perjudicar greument el teu sistema."
+ },
+ "picker": {
+ "add_resource": "Afegeix recurs",
+ "headers": {
+ "type": "Tipus",
+ "url": "URL"
+ },
+ "no_resources": "Sense recursos"
+ },
+ "refresh_body": "Has d'actualitzar la pàgina per completar l'eliminació. Vols actualitzar-la ara?",
+ "refresh_header": "Vols actualitzar?",
+ "types": {
+ "css": "Fitxer d'estils",
+ "html": "HTML (obsolet)",
+ "js": "Fitxer JavaScript (obsolet)",
+ "module": "Mòdul JavaScript"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Escolta d'un tòpic",
+ "description_publish": "Publicació d'un paquet",
+ "listening_to": "Escoltant a",
+ "message_received": "Missatge {id} rebut a {topic} a les {time}:",
+ "payload": "Dades/missatge (plantilla permesa)",
+ "publish": "Publica",
+ "start_listening": "Comença a escoltar",
+ "stop_listening": "Deixa d'escoltar",
+ "subscribe_to": "Tòpic al qual subscriure's",
+ "title": "MQTT",
+ "topic": "tòpic"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Controlador",
+ "instance": "Instància",
+ "network": "Xarxa",
+ "node_id": "ID del node",
+ "ozw_instance": "Instància OpenZWave",
+ "query_stage": "Fase de consulta",
+ "wakeup_instructions": "Instruccions en despertar",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Ha fallat el node",
+ "stage": "Fase",
+ "zwave_info": "Informació Z-Wave"
+ },
+ "navigation": {
+ "network": "Xarxa",
+ "node": {
+ "config": "Configuració",
+ "dashboard": "Panell"
+ },
+ "nodes": "Nodes",
+ "select_instance": "Selecciona instància"
+ },
+ "network": {
+ "header": "Gestió de la xarxa",
+ "introduction": "Gestiona les funcions de tota la xarxa.",
+ "node_count": "{count} nodes"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "S'han cosultat tots els nodes",
+ "driverallnodesqueriedsomedead": "S'han consultat tots els nodes. Se n'han trobat alguns morts",
+ "driverawakenodesqueries": "S'han cosultat tots els nodes desperts",
+ "driverfailed": "No s'ha pogut connectar amb el controlador Z-Wave",
+ "driverready": "Iniciant el controlador Z-Wave",
+ "driverremoved": "El controlador s'ha eliminat",
+ "driverreset": "El controlador s'ha restablert",
+ "offline": "OZWDaemon fora de línia",
+ "ready": "A punt per connectar-se",
+ "started": "Connectat a MQTT",
+ "starting": "Connectant a MQTT",
+ "stopped": "OpenZWave aturat"
+ },
+ "offline": "Fora de línia",
+ "online": "En línia",
+ "starting": "Iniciant",
+ "unknown": "Desconegut"
+ },
+ "node": {
+ "button": "Detalls del node",
+ "not_found": "No s'ha trobat el node"
+ },
+ "node_config": {
+ "header": "Configuració de node",
+ "help_source": "El projecte OpenZWave proporciona les descripcions dels paràmetres de configuració i els textos d'ajuda.",
+ "introduction": "Gestiona els paràmetres de configuració d'un node Z-Wave.",
+ "wakeup_help": "Els nodes amb bateria han d'estar desperts per canviar-ne la seva configuració. Si el node no està despert, OpenZWave intentarà actualitzar la configuració la propera vegada que es desperti, que podria passar algunes hores (o dies) més tard. Segueix els següents passos per despertar el dispositiu ara:"
+ },
+ "node_metadata": {
+ "product_manual": "Manual del producte"
+ },
+ "node_query_stages": {
+ "associations": "Actualitzant de grups d'associacions i membres",
+ "cacheload": "Carregant informació del fitxer de memòria cau d'OpenZWave. Els nodes amb bateria romandran en aquesta fase fins que es despertin.",
+ "complete": "Procés de consulta completat",
+ "configuration": "Obtenint valors de configuració del node",
+ "dynamic": "Obtenint valors usualment canviants del node",
+ "instances": "Obtenint detalls sobre instàncies i canals compatibles amb el dispositiu",
+ "manufacturerspecific1": "Obtenint fabricant i codis ID de producte del node",
+ "manufacturerspecific2": "Obtenint fabricant i codis ID de producte addicionals del node",
+ "neighbors": "Obtenint llista de nodes veïns",
+ "nodeinfo": "Obtenint classes de comandes compatibles del node",
+ "nodeplusinfo": "Obtenint informació Z-Wave+ del node",
+ "probe": "Comprovant si el node està despert",
+ "protocolinfo": "Obtenint funcions Z-Wave bàsiques del controlador d'aquest node",
+ "session": "Obtenint valors inusualment canviants del node",
+ "static": "Obtenint valors estàtics del dispositiu",
+ "versions": "Obtenint informació de programari i versions de classes de comandes",
+ "wakeup": "Configurant el suport per a cues de despertar i missatges"
+ },
+ "nodes_table": {
+ "failed": "Ha fallat",
+ "id": "ID",
+ "manufacturer": "Fabricant",
+ "model": "Model",
+ "query_stage": "Fase de consulta",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Si el node funciona amb bateria, assegura't de que estigui actiu abans de continuar",
+ "button": "Actualitza node",
+ "complete": "Actualització del node completada",
+ "description": "Això farà que OpenZWave torni a consultar el node i n'actualitzi les classes de comandes, funcions i valors.",
+ "node_status": "Estat del node",
+ "refreshing_description": "Actualitzant la informació del node…",
+ "start_refresh_button": "Inicia l'actualització",
+ "step": "Pas",
+ "title": "Informació d'actualització del node",
+ "wakeup_header": "Instruccions per despertar de",
+ "wakeup_instructions_source": "Les instruccions per despertar provenen de la base de dades de dispositius de la comunitat OpenZWave."
+ },
+ "select_instance": {
+ "header": "Selecciona una instància d'OpenZWave",
+ "introduction": "Tens més d'una instància d'OpenZWave en funcionament. Quina instància vols gestionar?",
+ "none_found": "No s'ha pogut trobar cap instància d'OpenZWave. Si creus que això és incorrecte, comprova les configuracions d'OpenZWave i MQTT i assegurat que Home Assistant pugui comunicar-se amb el teu broker MQTT."
+ },
+ "services": {
+ "add_node": "Afegeix node",
+ "cancel_command": "Cancel·la ordre",
+ "remove_node": "Elimina node"
+ }
+ },
+ "person": {
+ "add_person": "Afegeix persona",
+ "caption": "Persones",
+ "confirm_delete": "Estàs segur que vols eliminar aquesta persona?",
+ "confirm_delete2": "Tots els dispositius vinculats a aquesta persona quedaran sense assignar.",
+ "create_person": "Crea persona",
+ "description": "Gestiona les persones a qui Home Assistant fa seguiment",
+ "detail": {
+ "admin": "Administrador",
+ "allow_login": "Permet l'inici de sessió de la persona",
+ "confirm_delete_user": "Estàs segur que vols eliminar el compte d'usuari de {name}? Encara li podràs fer seguiment, però no podrà tornar a iniciar sessió.",
+ "create": "Crea",
+ "delete": "Elimina",
+ "device_tracker_intro": "Selecciona els dispositius que pertanyen a aquesta persona.",
+ "device_tracker_pick": "Tria un dispositiu per fer-li el seguiment",
+ "device_tracker_picked": "Seguint dispositiu",
+ "link_integrations_page": "Pàgina d'integracions",
+ "link_presence_detection_integrations": "Integracions de detecció de presència",
+ "linked_user": "Usuari enllaçat",
+ "local_only": "Només es pot iniciar sessió des de la xarxa local",
+ "name": "Nom",
+ "name_error_msg": "El nom és necessari",
+ "new_person": "Persona nova",
+ "no_device_tracker_available_intro": "Quan tinguis dispositius que indiquen presència de persones, podràs assignar-los a una persona. Pots afegir el primer dispositiu afegint una integració de detecció de presència des de la pàgina d'integracions.",
+ "update": "Actualitza"
+ },
+ "introduction": "Aquí pots definir cada persona d'interès a Home Assistant.",
+ "learn_more": "Obté més informació sobre persones",
+ "no_persons_created_yet": "Sembla que encara no has creat cap persona.",
+ "note_about_persons_configured_in_yaml": "Nota: les persones configurades mitjançant configuration.yaml no es poden editar des de la IU.",
+ "person_not_found": "No s'ha pogut trobar la persona que vols editar.",
+ "person_not_found_title": "Persona no trobada"
+ },
+ "scene": {
+ "activated": "Escena {name} activada.",
+ "caption": "Escenes",
+ "description": "Captura els estats dels dispositius i recorda'ls més tard",
+ "editor": {
+ "area": "Àrea",
+ "default_name": "Nova escena",
+ "devices": {
+ "add": "Afegeix un dispositiu",
+ "delete": "Elimina el dispositiu",
+ "header": "Dispositius",
+ "introduction": "Afegeix els dispositius que vols incloure a l'escena. Configura tots els dispositius en els estats que es corresponguin amb aquesta escena."
+ },
+ "entities": {
+ "add": "Afegeix una entitat",
+ "delete": "Elimina l'entitat",
+ "device_entities": "Si afegeixes una entitat que pertany a un dispositiu, s'afegirà el dispositiu.",
+ "header": "Entitats",
+ "introduction": "Les entitats que no pertanyen a un dispositiu es poden configurar aquí.",
+ "without_device": "Entitats sense dispositiu"
+ },
+ "icon": "Icona",
+ "introduction": "Utilitza les escenes per donar més vida a casa teva.",
+ "load_error_not_editable": "Només es poden editar les escenes del fitxer scenes.yaml.",
+ "load_error_unknown": "Error en carregar l'escena ({err_no}).",
+ "name": "Nom",
+ "save": "Desa",
+ "unsaved_confirm": "Hi han canvis no desats. Segur que vols sortir?"
+ },
+ "picker": {
+ "add_scene": "Afegeix escena",
+ "delete_confirm": "Estàs segur que vols eliminar aquesta escena?",
+ "delete_scene": "Elimina l'escena",
+ "duplicate": "Duplica",
+ "duplicate_scene": "Duplica escena",
+ "edit_scene": "Edita escena",
+ "header": "Editor d'escenes",
+ "headers": {
+ "name": "Nom"
+ },
+ "introduction": "L'editor d'escenes et permet crear i editar escenes. Vés a l'enllaç de sota per veure'n les instruccions i assegurar-te que has configurat Home Assistant correctament.",
+ "learn_more": "Més informació sobre les escenes",
+ "no_scenes": "No s'ha pogut trobar cap escena",
+ "only_editable": "Només es poden editar les escenes definides al fitxer scenes.yaml.",
+ "pick_scene": "Selecciona l'escena a editar",
+ "show_info_scene": "Mostra informació sobre l'escena"
+ }
+ },
+ "script": {
+ "caption": "Programes (scripts)",
+ "description": "Executa una seqüència d'accions",
+ "editor": {
+ "alias": "Nom",
+ "default_name": "Nou script",
+ "delete_confirm": "Estàs segur que vols eliminar aquest script?",
+ "delete_script": "Elimina l'script",
+ "header": "Script: {name}",
+ "icon": "Icona",
+ "id": "ID de l'entitat",
+ "id_already_exists": "Aquest ID ja existeix",
+ "id_already_exists_save_error": "No pots desar aquest script perquè l'ID no és únic, tria'n un altre o deixa-ho en blanc perquè se'n generi un automàticament.",
+ "introduction": "Utilitza els scripts per executar una seqüència d'accions.",
+ "link_available_actions": "Més informació sobre les accions disponibles.",
+ "load_error_not_editable": "Només es poden editar els scripts del fitxer scripts.yaml.",
+ "max": {
+ "parallel": "Nombre màxim d'execucions paral·leles",
+ "queued": "Longitud de la cua"
+ },
+ "modes": {
+ "description": "El mode controla què passa quan s'invoca l'script mentre encara s'està executant a causa d'invocacions anteriors. Consulta {documentation_link} per a més informació.",
+ "documentation": "documentació de scripts",
+ "label": "Mode",
+ "parallel": "Paral·lel",
+ "queued": "Afegeix al final",
+ "restart": "Reinici",
+ "single": "Individual (per defecte)"
+ },
+ "save_script": "Desa l'script",
+ "sequence": "Seqüència",
+ "sequence_sentence": "Seqüència d'accions de l'script.",
+ "show_trace": "Mostra la traça"
+ },
+ "picker": {
+ "add_script": "Afegeix script",
+ "dev_script": "Depura script",
+ "duplicate": "Duplica",
+ "duplicate_script": "Duplica l'script",
+ "edit_script": "Edita l'script",
+ "header": "Editor de scripts",
+ "headers": {
+ "name": "Nom"
+ },
+ "introduction": "L'editor de scripts et permet crear i editar scripts. Vés a l'enllaç de sota per veure'n les instruccions i assegurar-te que has configurat Home Assistant correctament.",
+ "learn_more": "Més informació sobre els scripts",
+ "no_scripts": "No s'ha pogut trobar cap script",
+ "run_script": "Executa l'script",
+ "show_info": "Mostra informació sobre l'script"
+ }
+ },
+ "server_control": {
+ "caption": "Controls del servidor",
+ "description": "Valida i reinicia el servidor Home Assistant",
+ "section": {
+ "reloading": {
+ "automation": "Automatitzacions",
+ "command_line": "Entitats de línia de comandes",
+ "core": "Ubicació i personalitzacions",
+ "filesize": "Entitats de mida de fitxer",
+ "filter": "Filtra entitats",
+ "generic": "Entitats genèriques de càmera IP",
+ "generic_thermostat": "Entitats genèriques de termòstat",
+ "group": "Grups, grups d'entitats i serveis de notificació",
+ "heading": "Torna a carregar les configuracions YAML",
+ "history_stats": "Entitats d'estadístiques històriques",
+ "homekit": "HomeKit",
+ "input_boolean": "Entrades booleanes",
+ "input_button": "Entrades de botó",
+ "input_datetime": "Entrades de data i hora",
+ "input_number": "Entrades numèriques",
+ "input_select": "Entrades de selecció",
+ "input_text": "Entrades de text",
+ "introduction": "Algunes parts de Home Assistant es poden actualitzar sense necessitar reiniciar-lo. Si prems alguna de les opcions de sota s'esborrarà la seva configuració YAML actual i se'n carregarà la nova.",
+ "min_max": "Entitats min/max",
+ "mqtt": "Entitats MQTT configurades manualment",
+ "person": "Persones",
+ "ping": "Entitats de sensors binaris de ping",
+ "reload": "{domain}",
+ "rest": "Entitats i serveis de notificació rest",
+ "rpi_gpio": "Entitats GPIO de la Raspberry Pi",
+ "scene": "Escenes",
+ "script": "Programes (scripts)",
+ "smtp": "Serveis de notificació SMTP",
+ "statistics": "Entitats d'estadístiques",
+ "telegram": "Serveis de notificació de Telegram",
+ "template": "Entitats de plantilla",
+ "themes": "Temes",
+ "timer": "Temporitzadors",
+ "trend": "Entitats de tendència",
+ "universal": "Entitats del reproductor universal",
+ "zone": "Zones"
+ },
+ "server_management": {
+ "confirm_restart": "Segur que vols reiniciar Home Assistant?",
+ "confirm_stop": "Segur que vols aturar Home Assistant?",
+ "heading": "Gestió del servidor",
+ "introduction": "Controla Home Assistant.",
+ "restart": "Reinicia",
+ "stop": "Atura"
+ },
+ "validation": {
+ "check_config": "Comprova la configuració",
+ "heading": "Validació de la configuració",
+ "introduction": "Valida la configuració si recentment n'has fet algun canvi i vols assegurar-te de que sigui vàlida.",
+ "invalid": "Configuració invàlida",
+ "valid": "Configuració vàlida!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Afegeix etiqueta",
+ "automation_title": "S'escanegi l'etiqueta {name}",
+ "caption": "Etiquetes",
+ "confirm_remove": "Estàs segur que vols eliminar l'etiqueta {tag}?",
+ "confirm_remove_title": "Elimina l'etiqueta?",
+ "create_automation": "Crea una automatització amb una etiqueta",
+ "description": "Executa automatitzacions quan una etiqueta NFC, un codi QR, etc; s'escanegi",
+ "detail": {
+ "companion_apps": "aplicacions de companion",
+ "create": "Crea",
+ "create_and_write": "Crea i escriu",
+ "delete": "Elimina",
+ "description": "Descripció",
+ "name": "Nom",
+ "new_tag": "Nova etiqueta",
+ "tag_id": "ID de l'etiqueta",
+ "tag_id_placeholder": "Autogenerat si es deixa buit",
+ "update": "Actualitza",
+ "usage": "Una etiqueta pot disparar una automatització quan és escanejada, pots utilitzar etiquetes NFC, codis QR o qualsevol altre tipus d'etiqueta. Utilitza {companion_link} per escriure aquesta etiqueta a una etiqueta NFC programable o bé crea un codi QR."
+ },
+ "edit": "Edita",
+ "headers": {
+ "last_scanned": "Últim escaneig",
+ "name": "Nom"
+ },
+ "learn_more": "Més informació sobre les etiquetes",
+ "never_scanned": "Mai escanejat",
+ "no_tags": "Sense etiquetes",
+ "write": "Escriu"
+ },
+ "updates": {
+ "check_unavailable": {
+ "description": "Has d'utilitzar el sistema operatiu de Home Assistant per poder comprovar i instal·lar actualitzacions des de la interfície d'usuari.",
+ "title": "No s'ha pogut comprovar si hi ha actualitzacions"
+ },
+ "check_updates": "Comprova si hi ha actualitzacions",
+ "more_updates": "+ {count} actualitzacions",
+ "review": "revisa",
+ "show": "mostra",
+ "show_all_updates": "Mostra totes les actualitzacions",
+ "title": "{count} {count, plural,\n one {actualització}\n other {actualitzacions}\n}",
+ "unable_to_fetch": "No s'han pogut obtenir les actualitzacions",
+ "version_available": "Versió {version_available} disponible"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Afegir usuari",
+ "create": "Crear",
+ "local_only": "Només local",
+ "password": "Contrasenya",
+ "password_confirm": "Confirma la contrasenya",
+ "password_not_match": "Les contrasenyes no coincideixen"
+ },
+ "caption": "Usuaris",
+ "description": "Gestiona els comptes d'usuari de Home Assistant",
+ "editor": {
+ "activate_user": "Activar usuari",
+ "active": "Actiu",
+ "active_tooltip": "Controla si l'usuari pot iniciar sessió",
+ "admin": "Administrador",
+ "caption": "Mostra usuari",
+ "change_password": "Canviar contrasenya",
+ "confirm_user_deletion": "Estàs segur que vols eliminar {name}?",
+ "deactivate_user": "Desactivar usuari",
+ "delete_user": "Eliminar usuari",
+ "group": "Grup",
+ "id": "ID",
+ "local_only": "Només es pot iniciar sessió des de la xarxa local",
+ "name": "Nom de visualització",
+ "new_password": "Nova contrasenya",
+ "owner": "Propietari",
+ "password_changed": "La contrasenya s'ha canviat correctament",
+ "system_generated": "Usuari del sistema",
+ "system_generated_users_not_editable": "No es poden actualitzar usuaris del sistema.",
+ "system_generated_users_not_removable": "No es poden eliminar usuaris del sistema.",
+ "unnamed_user": "Usuari sense nom",
+ "update_user": "Actualitza",
+ "username": "Nom d'usuari"
+ },
+ "is_local": "Usuari local",
+ "is_not_active": "Desactivat",
+ "is_owner": "Propietari",
+ "is_system": "Usuari del sistema",
+ "picker": {
+ "add_user": "Afegeix usuari",
+ "headers": {
+ "group": "Grup",
+ "is_active": "Actiu",
+ "is_owner": "Propietari",
+ "local": "Local",
+ "name": "Nom de visualització",
+ "system": "Sistema",
+ "username": "Nom d'usuari"
+ }
+ },
+ "users_privileges_note": "El grup d'usuaris encara no està del tot acabat. L'usuari no podrà administrar la instància a través de la interfície d'usuari. Encara estem verificant tots els punts de l'API de gestió per assegurar-nos que limiten correctament l'accés als administradors."
+ },
+ "zha": {
+ "add_device": "Afegeix dispositiu",
+ "add_device_page": {
+ "discovered_text": "Els dispositius apareixeran aquí un cop descoberts.",
+ "no_devices_found": "No s'han trobat dispositius, assegura't que estiguin en mode vinculació i manten-los desperts mentre s'estiguin descobrint.",
+ "pairing_mode": "Assegura't que els dispositiu estiguin en mode vinculació. Consulta les instruccions del dispositiu per saber com fer-ho.",
+ "search_again": "Torna a cercar",
+ "spinner": "S'estan cercant dispositius ZHA Zigbee…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Atributs del clúster seleccionat",
+ "get_zigbee_attribute": "Obtenir l'atribut Zigbee",
+ "header": "Atributs clúster",
+ "help_attribute_dropdown": "Selecciona un atribut per visualitzar-ne o definiu-ne el valor.",
+ "help_get_zigbee_attribute": "Obté el valor de l'atribut seleccionat.",
+ "help_set_zigbee_attribute": "Estableix el valor d'atribut pel clúster especificat a l'entitat especificada.",
+ "introduction": "Consulta i edita els atributs del clúster.",
+ "set_zigbee_attribute": "Estableix l'atribut Zigbee"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Comandes del clúster seleccionat",
+ "header": "Comandes clúster",
+ "help_command_dropdown": "Selecciona una comanda per interactuar-hi.",
+ "introduction": "Veure i emetre comandes clúster.",
+ "issue_zigbee_command": "Emet la comanda Zigbee"
+ },
+ "clusters": {
+ "header": "Clústers",
+ "help_cluster_dropdown": "Selecciona un clúster per visualitzar-ne els atributs i comandes.",
+ "introduction": "Els clústers són els blocs de construcció per dotar Zigbee de funcionalitat. Separen la funcionalitat en unitats lògiques. N'hi ha de tipus client i servidor; estan formats per atributs i comandes (ordres)."
+ },
+ "common": {
+ "clusters": "Clústers",
+ "manufacturer_code_override": "Substitució del codi de fabricant",
+ "value": "Valor"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Dreceres",
+ "update_button": "Actualitza la configuració"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Configuració completada",
+ "CONFIGURED_status_text": "Inicialitzant",
+ "INITIALIZED": "Inicialització completada",
+ "INITIALIZED_status_text": "El dispositiu està llest per a utilitzar-se",
+ "INTERVIEW_COMPLETE": "Consulta completada",
+ "INTERVIEW_COMPLETE_status_text": "Configurant",
+ "PAIRED": "Dispositiu trobat",
+ "PAIRED_status_text": "Iniciant consulta"
+ },
+ "group_binding": {
+ "bind_button_help": "Vincula el grup seleccionat als clústers de dispositius seleccionats.",
+ "bind_button_label": "Vincula grup",
+ "cluster_selection_help": "Selecciona clústers per vincular-los al grup seleccionat.",
+ "group_picker_help": "Selecciona un grup per emetre una comanda de vinculació.",
+ "group_picker_label": "Grups vinculables",
+ "header": "Vinculació de grups",
+ "introduction": "Vincula i desvincula grups.",
+ "unbind_button_help": "Desvincula el grup seleccionat dels clústers de dispositius seleccionats.",
+ "unbind_button_label": "Desvincula grup"
+ },
+ "groups": {
+ "add_group": "Afegeix grup",
+ "add_members": "Afegeix membres",
+ "caption": "Grups",
+ "create": "Crea grup",
+ "create_group": "Domòtica Zigbee (ZHA) - Creació de grups",
+ "create_group_details": "Introdueix els detalls necessaris per crear un nou grup Zigbee",
+ "creating_group": "Creant grup",
+ "delete": "Elimina grup",
+ "group_details": "Detalls del grup Zigbee seleccionat.",
+ "group_id": "ID del grup",
+ "group_info": "Informació del grup",
+ "group_name_placeholder": "Nom del grup",
+ "group_not_found": "No s'ha trobat el grup.",
+ "groups": "Grups",
+ "members": "Membres",
+ "remove_members": "Elimina membres",
+ "removing_members": "Eliminant membres"
+ },
+ "network": {
+ "caption": "Xarxa"
+ },
+ "visualization": {
+ "auto_zoom": "Zoom automàtic",
+ "caption": "Visualització",
+ "enable_physics": "Activa físiques",
+ "header": "Visualització de xarxa",
+ "highlight_label": "Ressalta els dispositius",
+ "refresh_topology": "Actualitza la topologia",
+ "zoom_label": "Amplia al dispositiu"
+ }
+ },
+ "zone": {
+ "add_zone": "Afegeix zona",
+ "caption": "Zones",
+ "configured_in_yaml": "Les zones configurades mitjançant configuration.yaml no es poden editar des de la IU.",
+ "confirm_delete": "Estàs segur que vols eliminar aquesta zona?",
+ "create_zone": "Crea zona",
+ "description": "Gestiona les zones en les quals vols fer seguiment de persones",
+ "detail": {
+ "create": "Crea",
+ "delete": "Elimina",
+ "icon": "Icona",
+ "icon_error_msg": "La icona ha de tenir el format ''prefix:nom_icona'', per exemple: ''mdi:home''",
+ "latitude": "Latitud",
+ "longitude": "Longitud",
+ "name": "Nom",
+ "new_zone": "Zona nova",
+ "passive": "Passiva",
+ "passive_note": "Les zones passives estan amagades i no s'utilitzen com a ubicacions per a dispositius rastrejables. Però són utils per a la creació d'automatitzacions.",
+ "radius": "Radi",
+ "required_error_msg": "Aquest camp és obligatori",
+ "update": "Actualitza"
+ },
+ "edit_home_zone": "El radi de la zona principal (casa) encara no pot ser editat des de la interfície. Arrossega el marcador sobre el mapa per moure la zona principal.",
+ "edit_home_zone_narrow": "El radi de la zona principal (casa) encara no es pot editar des de la interfície. La ubicació es pot modificar a la configuració general.",
+ "edit_zone": "Edita zona",
+ "go_to_core_config": "Anar a la configuració general?",
+ "home_zone_core_config": "La ubicació de la zona principal (casa) és pot canviar des de la pàgina de configuració general. El radi d'aquesta zona encara no es pot editar des d'aquí. Vols anar a la configuració general?",
+ "introduction": "Les zones et permeten definir certes regions del planeta. Quan una persona es trobi dins d'una zona, l'estat prendrà el nom d'aquesta zona. També es poden utilitzar com a disparadors o condicions durant la creació d'automatitzacions.",
+ "no_zones_created_yet": "Sembla que encara no has creat cap zona."
+ },
+ "zwave": {
+ "common": {
+ "index": "Índex",
+ "instance": "Instància",
+ "unknown": "desconegut",
+ "value": "Valor",
+ "wakeup_interval": "Interval per despertar-se"
+ },
+ "description": "Gestiona la teva xarxa Z-Wave",
+ "learn_more": "Més informació sobre Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "Migra a OpenZWave",
+ "introduction": "Aquest assistent t'ajudarà a fer la migració des de la integració Z-Wave estàndard a la integració d'OpenZWave, actualment en versió beta."
+ },
+ "zwave_js": {
+ "header": "Migra a Z-Wave JS",
+ "introduction": "Aquesta integració ja no es manté, recomanem passar a la nova integració Z-Wave JS. Aquest assistent t'ajudarà a migrar de la integració antiga Z-Wave a la nova integració Z-Wave JS."
+ }
+ },
+ "network_management": {
+ "header": "Gestió de la xarxa Z-Wave",
+ "introduction": "Executa ordres a la xarxa Z-Wave. No es rebrà cap resposta si la majoria de les ordres han tingut èxit, però pots consultar el registre OZW."
+ },
+ "network_status": {
+ "network_started": "Xarxa Z-Wave iniciada",
+ "network_started_note_all_queried": "S'han consultat tots els nodes.",
+ "network_started_note_some_queried": "S'han consultat els nodes desperts. Els nodes adormits es consultaran quan es despertin.",
+ "network_starting": "Iniciant xarxa Z-Wave…",
+ "network_starting_note": "Això pot trigar una estona en funció de la mida de la teva xarxa.",
+ "network_stopped": "Xarxa Z-Wave aturada"
+ },
+ "node_config": {
+ "config_parameter": "Paràmetre de configuració",
+ "config_value": "Valor de configuració",
+ "false": "Fals",
+ "header": "Opcions de configuració del node",
+ "seconds": "segons",
+ "set_config_parameter": "Defineix el paràmetre de configuració",
+ "set_wakeup": "Estableix l'interval per despertar-se",
+ "true": "Cert"
+ },
+ "node_management": {
+ "add_to_group": "Afegeix a grup",
+ "entities": "Entitats d'aquest node",
+ "entity_info": "Informació de l'entitat",
+ "exclude_entity": "Exclou aquesta entitat de Home Assistant",
+ "group": "Grup",
+ "header": "Gestió de nodes Z-Wave",
+ "introduction": "Executa ordres Z-Wave que afecten un sol node. Tria un node per veure la llista d'ordres/comandes disponibles.",
+ "max_associations": "Associacions màximes:",
+ "node_group_associations": "Associacions de grup de nodes",
+ "node_protection": "Protecció de node",
+ "node_to_control": "Node a controlar",
+ "nodes": "Nodes",
+ "nodes_hint": "Selecciona un node per visualitzar-ne les seves opcions",
+ "nodes_in_group": "Altres nodes en aquest grup:",
+ "pooling_intensity": "Intensitat de sondeig",
+ "protection": "Protecció",
+ "remove_broadcast": "Elimina la difusió/broadcast",
+ "remove_from_group": "Elimina de grup",
+ "set_protection": "Estableix protecció"
+ },
+ "ozw_log": {
+ "header": "Registre d'OZW",
+ "introduction": "Consulta el registre. 0 és el mínim (carrega el registre complet) i 1000 és el màxim. La càrrega mostrarà un registre estàtic i la cua s'actualitzarà automàticament amb l'últim número de línies especificat.",
+ "last_log_lines": "Nombre d'últimes línies de registre",
+ "load": "Carrega",
+ "tail": "Cua"
+ },
+ "services": {
+ "add_node": "Afegeix node",
+ "add_node_secure": "Afegeix node amb seguretat",
+ "cancel_command": "Cancel·lar ordre",
+ "heal_network": "Guareix la xarxa",
+ "heal_node": "Cura node",
+ "node_info": "Informació de node",
+ "print_node": "Imprimeix node",
+ "refresh_entity": "Actualitza l'entitat",
+ "refresh_node": "Actualitza node",
+ "remove_failed_node": "Elimina node fallit",
+ "remove_node": "Elimina node",
+ "replace_failed_node": "Substitueix node fallit",
+ "save_config": "Desa la configuració",
+ "soft_reset": "Reinici suau",
+ "start_network": "Inicia la xarxa",
+ "stop_network": "Atura la xarxa",
+ "test_network": "Prova la xarxa",
+ "test_node": "Prova node"
+ },
+ "values": {
+ "header": "Valors dels node"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Cancel·la la inclusió",
+ "check_logs": "Consulta els registres per a més informació.",
+ "choose_inclusion_strategy": "Com vols afegir el dispositiu",
+ "controller_in_inclusion_mode": "El controlador Z-Wave ara està en mode d'inclusió.",
+ "enter_qr_code": "Introdueix el valor del codi QR",
+ "follow_device_instructions": "Segueix les instruccions del teu dispositiu per activar la vinculació al dispositiu.",
+ "inclusion_failed": "No s'ha pogut afegir el dispositiu.",
+ "inclusion_finished": "S'ha afegit el dispositiu.",
+ "interview_failed": "Ha fallat la consulta del dispositiu. Pots trobar informació addicional als registres.",
+ "interview_started": "S'està consultant el dispositiu. Això pot trigar una estona.",
+ "introduction": "Aquest assistent et guiarà perquè afegeixis un node a la teva xarxa Z-Wave.",
+ "provisioning_finished": "S'ha afegit el dispositiu. Estarà disponible un cop s'encengui.",
+ "qr_code": "Codi QR",
+ "qr_code_paragraph": "Si el teu dispositiu és compatible amb SmartStart, pots escanejar el codi QR per vincular-lo fàcilment.",
+ "scan_qr_code": "Escaneja codi QR",
+ "searching_device": "Cercant el dispositiu",
+ "secure_inclusion_warning": "Els dispositius segurs necessiten una amplada de banda més gran; si tens molts dispositius segurs pot ser que la xarxa Z-Wave vagi més lenta. Et recomanem que utilitzis la inclusió segura només en dispositius que realment ho necessitin com ara panys i controls de portes.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Exemple: panys antics que no admeten S2",
+ "title": "S0 estàndard"
+ },
+ "S2_AccessControl": {
+ "description": "Exemple: panys, portes, garatges",
+ "title": "Control d'accés S2"
+ },
+ "S2_Authenticated": {
+ "description": "Exemple: il·luminació, sensors, sistemes de seguretat",
+ "title": "S2 Autenticat"
+ },
+ "S2_Unauthenticated": {
+ "description": "És com l'S2 Autenticat, però sense la verificació de que el dispositiu inclòs és correcte",
+ "title": "S2 Sense autenticació"
+ }
+ },
+ "select_camera": "Selecciona càmera",
+ "start_inclusion": "Inicia la inclusió",
+ "start_secure_inclusion": "Inicia la inclusió segura",
+ "title": "Afegeix un dispositiu Z-Wave",
+ "use_secure_inclusion": "Utilitza la inclusió segura",
+ "view_device": "Mostra el dispositiu"
+ },
+ "common": {
+ "add_node": "Afegeix dispositiu",
+ "back": "Enrere",
+ "close": "Tanca",
+ "heal_network": "Guareix la xarxa",
+ "home_id": "ID principal",
+ "network": "Xarxa",
+ "node_id": "ID del dispositiu",
+ "reconfigure_server": "Torna a configurar el servidor",
+ "remove_node": "Elimina dispositiu",
+ "source": "Font"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n one {dispositiu}\n other {dispositius}\n}",
+ "driver_version": "Versió del controlador",
+ "dump_dead_nodes_text": "Alguns dels dispositius no han respost i s'han donat com a morts. Aquests no s'exportaran completament.",
+ "dump_dead_nodes_title": "Alguns dels teus dispositius estan morts",
+ "dump_debug": "Baixa les dades",
+ "dump_not_ready_confirm": "Baixa",
+ "dump_not_ready_text": "Si fas una exportació mentre no tots els dispositius estan preparats, pots perdre dades útils. Deixa més temps perque la xarxa consulti tots els dispositius. Vols seguir amb el procés?",
+ "dump_not_ready_title": "Encara no estan preparats tots els dispositius",
+ "header": "Gestiona la teva xarxa Z-Wave",
+ "home_id": "ID principal",
+ "introduction": "Gestiona la teva xarxa i dispositius Z-Wave",
+ "nodes_ready": "Dispositius preparats",
+ "not_ready": "{count} no preparat/s",
+ "provisioned_devices": "Dispositius proveïts",
+ "server_url": "URL del servidor",
+ "server_version": "Versió del servidor"
+ },
+ "device_info": {
+ "device_config": "Configura dispositiu",
+ "heal_node": "Cura dispositiu",
+ "highest_security": "Màxima seguretat",
+ "is_secure": "Segur",
+ "node_ready": "Dispositiu preparat",
+ "node_status": "Estat del dispositiu",
+ "reinterview_device": "Torna a consultar dispositiu",
+ "remove_failed": "Suprimeix dispositiu fallit",
+ "unknown": "Desconegut",
+ "zwave_info": "Informació Z-Wave",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Versió {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "La guarició de la xarxa s'ha cancel·lat.",
+ "healing_complete": "La guarició de la xarxa s'ha completat.",
+ "healing_failed": "La guarició ha fallat. Pots trobar informació addicional als registres.",
+ "in_progress": "La guarició de la xarxa està en curs. Trigarà una estona.",
+ "introduction": "Inicia una guarició de la teva xarxa Z-Wave. La guarició de xarxa farà que tots els dispositius tornin a calcular les seves rutes cap al controlador. Es recomana si recentment has canviat o mogut dispositius o el controlador.",
+ "run_in_background": "Pots tancar aquest diàleg, la guarició de la xarxa continuarà en segon pla.",
+ "start_heal": "Comença la guarició",
+ "stop_heal": "Atura la guarició",
+ "title": "Guareix la xarxa Z-Wave",
+ "traffic_warning": "El procés de guarició genera una gran quantitat de trànsit a la xarxa Z-Wave. Això pot fer que els dispositius responguin lentament (o gens) mentre la guarició està en procés."
+ },
+ "heal_node": {
+ "healing_complete": "{device} s'ha curat.",
+ "healing_failed": "{device} no s'ha pogut curar.",
+ "healing_failed_check_logs": "Pots trobar informació addicional als registres.",
+ "in_progress": "La curació de {device} està en curs.",
+ "introduction": "Fes que {device} actualitzi les seves rutes cap al controlador. Això pot ajudar amb problemes de comunicació si recentment has canviat o mogut el dispositiu o el controlador.",
+ "network_heal_in_progress": "Una curació de xarxa Z-Wave ja està en curs. Espera que acabi abans de curar un dispositiu específic.",
+ "start_heal": "Cura dispositiu",
+ "title": "Cura dispositiu Z-Wave",
+ "traffic_warning": "El procés de curació genera una gran quantitat de trànsit a la xarxa Z-Wave. Això pot fer que els dispositius responguin lentament (o gens) mentre dura el procés."
+ },
+ "logs": {
+ "download_logs": "Baixa els registres",
+ "log_level": "Nivell dels registres",
+ "log_level_changed": "Nivell de registre canviat a: {level}",
+ "subscribed_to_logs": "Subscrit als missatges de registre de Z-Wave JS…",
+ "title": "Registres de Z-Wave JS"
+ },
+ "navigation": {
+ "logs": "Registres",
+ "network": "Xarxa"
+ },
+ "network_status": {
+ "connected": "Connectat",
+ "connecting": "Connectant",
+ "unknown": "Desconegut"
+ },
+ "node_config": {
+ "attribution": "Els paràmetres de configuració i descripcions del dispositiu els proporcionen {device_database}",
+ "battery_device_notice": "Els dispositius amb bateria han d'estar desperts per actualitzar-ne la configuració. Consulta el manual del dispositiu per saber com despertar-lo.",
+ "error_device_not_found": "Dispositiu no trobat",
+ "header": "Configuració de dispositiu Z-Wave",
+ "introduction": "Gestiona i ajusta els paràmetres de configuració específics del dispositiu seleccionat",
+ "parameter": "Paràmetre",
+ "parameter_is_read_only": "Aquest paràmetre de només lectura.",
+ "set_param_accepted": "El paràmetre s'ha actualitzat.",
+ "set_param_error": "S'ha produït un error.",
+ "set_param_queued": "El canvi de paràmetre s'ha posat en espera i s'actualitzarà quan es desperti el dispositiu.",
+ "zwave_js_device_database": "Base de dades de dispositiu Z-Wave JS"
+ },
+ "node_status": {
+ "alive": "Viu",
+ "asleep": "Adormit",
+ "awake": "Despert",
+ "dead": "Mort",
+ "unknown": "Desconegut"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "Si desproveeixes el dispositiu, no s'afegirà a Home Assistant quan aquest estigui encès. Si el dispositiu ja ha estat afegit a Home Assistant, no se l'eliminarà.",
+ "confirm_unprovision_title": "Estàs segur que vols desproveir el dispositiu?",
+ "dsk": "DSK",
+ "included": "Inclosos",
+ "not_included": "No inclosos",
+ "security_classes": "Classes de seguretat",
+ "unprovison": "Desproveir"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "Hauràs de despertar els dispositius amb bateria abans d'iniciar el procés de consulta. Fes un cop d'ull al manual del dispositiu per saber com despertar-lo.",
+ "in_progress": "S'està consultant el dispositiu. Això pot trigar una estona.",
+ "interview_complete": "Consulta del dispositiu completada.",
+ "interview_failed": "Ha fallat la consulta del dispositiu. Pots trobar informació addicional als registres.",
+ "introduction": "Torna a consultar un dispositiu de la xarxa Zigbee. Fes-ho si el dispositiu no funciona correctament.",
+ "run_in_background": "Pots tancar aquest diàleg, la consulta continuarà en segon pla.",
+ "start_reinterview": "Torna a iniciar consulta",
+ "title": "Torna a consultar un dispositiu Z-Wave"
+ },
+ "remove_failed_node": {
+ "in_progress": "La supressió del dispositiu està en curs.",
+ "introduction": "Suprimeix un dispositiu fallit de la xarxa Z-Wave. Fes-ho si no pots excloure un dispositiu de forma normal (perquè està malmès).",
+ "removal_failed": "El dispositiu no s'ha pogut suprimir de la xarxa Z-Wave.",
+ "removal_finished": "El dispositiu {id} s'ha suprimit de la xarxa Z-Wave.",
+ "remove_device": "Suprimeix dispositiu",
+ "title": "Suprimeix un dispositiu Z-Wave fallit"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Cancel·la l'exclusió",
+ "controller_in_exclusion_mode": "El controlador Z-Wave ara està en mode d'exclusió.",
+ "exclusion_failed": "No s'ha pogut eliminar el dispositiu. Consulta els registres per a més informació.",
+ "exclusion_finished": "El dispositiu {id} s'ha eliminat de la xarxa Z-Wave.",
+ "follow_device_instructions": "Segueix les instruccions del teu dispositiu per activar l'exclusió al dispositiu.",
+ "introduction": "Elimina un dispositiu de la xarxa Z-Wave i suprimeix el dispositiu i entitats associades de Home Assistant.",
+ "start_exclusion": "Inicia l'exclusió",
+ "title": "Elimina un dispositiu Z-Wave"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Cap"
+ },
+ "S0_Legacy": {
+ "description": "Exemple: panys antics que no admeten S2",
+ "title": "S0 estàndard"
+ },
+ "S2_AccessControl": {
+ "description": "Exemple: panys, portes, garatges",
+ "title": "Control d'accés S2"
+ },
+ "S2_Authenticated": {
+ "description": "Exemple: il·luminació, sensors, sistemes de seguretat",
+ "title": "S2 Autenticat"
+ },
+ "S2_Unauthenticated": {
+ "description": "Com l'S2 Autenticat, però sense la verificació de que s'inclou el dispositiu correcte",
+ "title": "S2 Sense autenticació"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Tindrà accés a totes les dades de Home Assistant.",
+ "hide_message": "Mira la documentació de panel_custom per ocultar aquest missatge",
+ "question_trust": "Confies en el panell extern {name} de {link}?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Oients actius",
+ "alert_event_type": "El tipus d'esdeveniment és un camp obligatori",
+ "available_events": "Esdeveniments disponibles",
+ "count_listeners": " ({count} oient/s)",
+ "data": "Dades de l'esdeveniment (en YAML, opcionals)",
+ "description": "Crida un esdeveniment al bus d'esdeveniments.",
+ "documentation": "Documentació d'esdeveniments",
+ "event_fired": "Esdeveniment {name} cridat",
+ "fire_event": "Crida esdeveniment",
+ "listen_to_events": "Escolta esdeveniments",
+ "listening_to": "Escoltant a",
+ "notification_event_fired": "Esdeveniment {type} disparat correctament!",
+ "start_listening": "Comença a escoltar",
+ "stop_listening": "Deixa d'escoltar",
+ "subscribe_to": "Esdeveniment al qual subscriure's",
+ "title": "Esdeveniments",
+ "type": "Tipus d'esdeveniment"
+ },
+ "services": {
+ "accepts_target": "Aquest servei accepta un objectiu, per exemple: `entity_id: light.bed_light`",
+ "all_parameters": "Tots els paràmetres disponibles",
+ "call_service": "Crida servei",
+ "column_description": "Descripció",
+ "column_example": "Exemple",
+ "column_parameter": "Paràmetre",
+ "description": "L'eina Serveis et permet fer crides a qualsevol servei disponible a Home Assistant.",
+ "fill_example_data": "Omple amb dades d'exemple",
+ "no_template_ui_support": "La interfície d'usuari no admet plantilles, pots utilitzar l'editor YAML.",
+ "title": "Serveis",
+ "ui_mode": "Vés al mode d'interfície d'usuari",
+ "yaml_mode": "Vés al mode YAML",
+ "yaml_parameters": "Paràmetres només disponibles en mode YAML"
+ },
+ "states": {
+ "alert_entity_field": "L'entitat és un camp obligatori",
+ "attributes": "Atributs",
+ "copy_id": "Copia l'identificador al porta-retalls",
+ "current_entities": "Entitats actuals",
+ "description1": "Defineix la visualització de l'estat actual d'una entitat a Home Assistant.",
+ "description2": "Si l'entitat pertany a un dispositiu, no hi haurà cap comunicació amb el dispositiu.",
+ "entity": "Entitat",
+ "filter_attributes": "Filtra atributs",
+ "filter_entities": "Filtra entitats",
+ "filter_states": "Filtra estats",
+ "last_changed": "Últim canvi",
+ "last_updated": "Última actualització",
+ "more_info": "Més informació",
+ "no_entities": "No hi ha entitats",
+ "set_state": "Estableix estat",
+ "state": "Estat",
+ "state_attributes": "Atributs d'estats (en YAML, opcionals)",
+ "title": "Estats"
+ },
+ "statistics": {
+ "entity": "Entitat",
+ "fix_issue": {
+ "fix": "Arregla la incidència",
+ "units_changed": {
+ "clear": "Elimina d'aquesta entitat totes les dades estadístiques antigues",
+ "fix": "Arregla la incidència",
+ "title": "La unitat d'aquesta entitat ha canviat",
+ "update": "Actualitza els valors històrics de ''{metadata_unit}'' a ''{state_unit}''"
+ }
+ },
+ "issue": "Incidència",
+ "issues": {
+ "entity_no_longer_recorded": "Aquesta entitat ja no s'està registrant.",
+ "entity_not_recorded": "Aquesta entitat està exclosa de ser registrada.",
+ "no_state": "No hi ha cap estat disponible per a aquesta entitat.",
+ "units_changed": "La unitat d'aquesta entitat ha canviat de ''{metadata_unit}'' a ''{state_unit}''.",
+ "unsupported_state_class": "La classe d'estat ''{state_class}'' d'aquesta entitat no és compatible.",
+ "unsupported_unit": "La unitat (''{state_unit}'') d'aquesta entitat no coincideix amb la de la classe de dispositiu ''{device_class}''.",
+ "unsupported_unit_metadata": "La unitat (''{metadata_unit}'') de les estadístiques registrades no coincideix amb la compatible ''{supported_unit}'' de la classe de dispositiu ''{device_class}''.",
+ "unsupported_unit_state": "La unitat (''{state_unit}'') d'aquesta entitat no coincideix amb la de la classe de dispositiu ''{device_class}''."
+ },
+ "no_issue": "No hi ha cap incidència",
+ "title": "Estadístiques"
+ },
+ "templates": {
+ "all_listeners": "Aquesta plantilla escolta a tots els esdeveniments de canvi d'estat.",
+ "description": "Les plantilles es renderitzen mitjançant el motor Jinja2 amb algunes extensions específiques de Home Assistant.",
+ "domain": "Domini",
+ "editor": "Editor de plantilles",
+ "entity": "Entitat",
+ "jinja_documentation": "Documentació sobre plantilles amb Jinja2",
+ "listeners": "Aquesta plantilla escolta als següents esdeveniments de canvi d'estat:",
+ "no_listeners": "Aquesta plantilla no escolta cap esdeveniment i no s'actualitzarà automàticament.",
+ "reset": "Restableix a la plantilla de demostració",
+ "result_type": "Tipus de resultat",
+ "template_extensions": "Extensions de plantilla de Home Assistant",
+ "time": "Aquesta plantilla s'actualitza al començament de cada minut.",
+ "title": "Plantilla",
+ "unknown_error_template": "Error desconegut renderitzant plantilla"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Monitoritza dispositius individuals",
+ "energy_distribution_title": "Distribució d'energia",
+ "energy_gas_graph_title": "Consum de gas",
+ "energy_solar_graph_title": "Producció solar",
+ "energy_sources_table_title": "Fonts",
+ "energy_usage_graph_title": "Ús d’energia"
+ },
+ "charts": {
+ "by_device": "Consum per dispositiu",
+ "solar": "Solar",
+ "stat_house_energy_meter": "Consum total d'energia"
+ },
+ "setup": {
+ "back": "Torna",
+ "done": "Mostra'm el panell d'energia!",
+ "next": "Següent"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Només pots utilitzar aquesta funció quan tinguis el control de la IU Lovelace.",
+ "saving_failed": "S'ha produït un error en desar la configuració de la IU Lovelace.",
+ "yaml_unsupported": "Només pots utilitzar aquesta funció si fas servir Lovelace en mode YAML."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Estàs segur que vols executar l'acció ''{action}''?",
+ "no_entity_more_info": "No s'ha proporcionat cap entitat per mostrar el diàleg de més informació",
+ "no_entity_toggle": "No s'ha proporcionat cap entitat a commutar",
+ "no_navigation_path": "No s'ha especificat cap ruta de navegació",
+ "no_service": "No s'ha especificat cap servei a executar",
+ "no_url": "No s'ha especificat cap URL per obrir"
+ },
+ "confirm_delete": "Estàs segur que vols eliminar aquesta targeta?",
+ "empty_state": {
+ "go_to_integrations_page": "Vés a la pàgina d'integracions.",
+ "no_devices": "Aquesta pàgina et permet controlar els teus dispositius, però sembla que encara no en tens cap configurat. Vés a la pàgina d'integracions per a començar.",
+ "title": "Benvingut/da a casa"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "Aquesta targeta indica quina quantitat d'energia consumida a casa s'ha generat utilitzant combustibles no fòssils com per exemple solar, eòlica i nuclear. Com més alt, millor!",
+ "non_fossil_energy_consumed": "Energia consumida no fòssil",
+ "non_fossil_energy_not_calculated": "No s'ha pogut calcular l'energia consumida no fòssil"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Ús d’energia"
+ },
+ "energy_distribution": {
+ "battery": "Bateria",
+ "gas": "Gas",
+ "go_to_energy_dashboard": "Vés al panell d'energia",
+ "grid": "Xarxa",
+ "home": "Casa",
+ "non_fossil": "No fòssil",
+ "solar": "Solar",
+ "title_today": "Distribució d'energia d'avui"
+ },
+ "energy_solar_graph": {
+ "forecast": "Previsió {name}",
+ "production": "Producció {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Total de bateria",
+ "cost": "Cost",
+ "energy": "Energia",
+ "grid_total": "Total de la xarxa",
+ "source": "Font",
+ "total_costs": "Costos totals"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Combinat de la xarxa",
+ "consumed_battery": "Consum de bateria",
+ "consumed_solar": "Consum solar",
+ "total_consumed": "Total consumit {num} kWh",
+ "total_returned": "Total retornat {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Si l'agulla està al lila, s'ha retornat a la xarxa més energia de la consumida. Si està al blau, s'ha consumit més energia de la xarxa que la retornada.",
+ "energy_dependency": "Aquesta targeta indica el consum net d'energia.",
+ "grid_neutrality_not_calculated": "No s'ha pogut calcular la neutralitat de la xarxa",
+ "net_consumed_grid": "Consum net de la xarxa",
+ "net_returned_grid": "Producció neta retornada a la xarxa",
+ "red_green_color_explain": "Si és verd, significa que has produït més energia de la que has consumit de la xarxa. Si és vermell, vol dir que has depès de la xarxa per a una part del consum energètic de casa."
+ },
+ "loading": "Carregant...",
+ "no_data": "No hi ha dades per mostrar. Les noves dades poden tardar fins a dues hores a aparèixer després de configurar un panell d'energia.",
+ "no_data_period": "No hi ha dades per a aquest període.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "Aquesta targeta indica quina quantitat d'energia solar produïda s'utilitza a casa teva en lloc de ser retornada a la xarxa.",
+ "card_indicates_solar_energy_used_charge_home_bat": "Si aquest nombre sol ser força baix, excés de producció solar, podries considerar la possibilitat de carregar una bateria o un cotxe elèctric amb l'energia dels teus panells en moments de gran producció solar.",
+ "not_produced_solar_energy": "No has produït energia solar",
+ "self_consumed_solar_could_not_calc": "No s'ha pogut calcular l'energia solar autoconsumida",
+ "self_consumed_solar_energy": "Energia solar autoconsumida"
+ }
+ },
+ "entities": {
+ "never_triggered": "Mai disparada"
+ },
+ "iframe": {
+ "error_secure_context": "No es poden carregar els iframes que apunten a llocs web que utilitzen {target_protocol} si Home Assistant és proporcionat a través de {context_protocol}."
+ },
+ "map": {
+ "reset_focus": "Restableix el focus"
+ },
+ "picture-elements": {
+ "call_service": "Crida servei {name}",
+ "hold": "Manté:",
+ "more_info": "Mostra més informació: {name}",
+ "navigate_to": "Navega a {location}",
+ "tap": "Tocar:",
+ "toggle": "Commuta {name}",
+ "url": "Obre un finestra a {url_path}"
+ },
+ "safe-mode": {
+ "description": "Home Assistant ha tingut algun problema en carregar la configuració i ara s'està executant en mode segur. Mira el registre d'errors per veure què ha anat malament.",
+ "header": "Mode segur activat"
+ },
+ "shopping-list": {
+ "add_item": "Afegir element",
+ "checked_items": "Articles seleccionats",
+ "clear_items": "Esborrar els articles seleccionats",
+ "drag_and_drop": "Arrossega i deixa anar",
+ "reorder_items": "Reordena elements"
+ },
+ "show_more_info": "Mostra més informació",
+ "starting": {
+ "description": "Home Assistant s'està iniciant, espera un moment…"
+ }
+ },
+ "changed_toast": {
+ "message": "S'ha actualitzat la configuració de la IU Lovelace d'aquest panell. Vols actualitzar-lo per veure els canvis?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Dia",
+ "month": "Mes",
+ "next": "Següent",
+ "previous": "Anterior",
+ "today": "Avui",
+ "week": "Setmana",
+ "year": "Any"
+ },
+ "timestamp-display": {
+ "invalid": "Marca de temps invàlida",
+ "invalid_format": "Format de visualització invàlid"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Crida servei",
+ "default_action": "Acció per defecte",
+ "more-info": "Més informació",
+ "navigate": "Navega",
+ "none": "Sense acció",
+ "toggle": "Commuta",
+ "url": "URL"
+ },
+ "navigation_path": "Ruta de navegació",
+ "url_path": "Ruta de l'URL"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Estats disponibles",
+ "description": "La targeta panell d'alarma et permet activar i desactivar les integracions amb panell de control d'alarma.",
+ "name": "Panell d'alarma"
+ },
+ "area": {
+ "description": "La targeta d'àrea mostra automàticament les entitats d'una àrea específica.",
+ "name": "Àrea",
+ "show_camera": "Mostra el canal de la càmera en lloc de la imatge d'àrea"
+ },
+ "button": {
+ "default_action_help": "L'acció predeterminada depèn de les funcionalitats de l'entitat, o es commutarà o es mostrarà el diàleg de més informació.",
+ "description": "La targeta botó et permet afegir botons per realitzar diferents tasques.",
+ "name": "Botó"
+ },
+ "calendar": {
+ "calendar_entities": "Entitats de calendari",
+ "description": "La targeta Calendari mostra un calendari que inclou visualitzacions de dia, setmana i llista",
+ "inital_view": "Vista inicial",
+ "name": "Calendari",
+ "views": {
+ "dayGridDay": "Dia",
+ "dayGridMonth": "Mes",
+ "listWeek": "Llista"
+ }
+ },
+ "conditional": {
+ "card": "Targeta",
+ "change_type": "Canvia el tipus",
+ "condition_explanation": "La targeta es mostrarà quan es compleixin totes les condicions següents.",
+ "conditions": "Condicions",
+ "current_state": "actual",
+ "description": "La targeta condicional mostra una altra targeta en funció dels estats d'una entitat.",
+ "name": "Condicional",
+ "state_equal": "L'estat és igual a",
+ "state_not_equal": "L'estat NO és igual a"
+ },
+ "config": {
+ "optional": "opcional",
+ "required": "obligatori"
+ },
+ "entities": {
+ "description": "La targeta entitats és la més habitual. Agrupa diferents tipus d'entitats en una llista.",
+ "edit_special_row": "Fes clic al botó edita per veure els detalls de la fila",
+ "entity_row": {
+ "attribute": "Atribut",
+ "button": "Botó",
+ "buttons": "Botons",
+ "call-service": "Crida servei",
+ "cast": "Obté",
+ "conditional": "Condicional",
+ "divider": "Divisor",
+ "section": "Secció",
+ "weblink": "Enllaç web"
+ },
+ "entity_row_editor": "Editor de files d'entitats",
+ "name": "Entitats",
+ "secondary_info_values": {
+ "brightness": "Brillantor",
+ "entity-id": "ID de l'entitat",
+ "last-changed": "Últim canvi",
+ "last-triggered": "Disparada per última vegada",
+ "last-updated": "Última actualització",
+ "none": "Sense informació secundària",
+ "position": "Posició",
+ "tilt-position": "Inclinació"
+ },
+ "show_header_toggle": "Mostra commutació a la capçalera?",
+ "special_row": "fila especial",
+ "toggle": "Commuta les entitats."
+ },
+ "entity-filter": {
+ "description": "La targeta filtre d'entitats et permet definir una llista d'entitats les quals vols seguir/visualitzar només quan es trobin en un cert estat.",
+ "name": "Filtre d'entitats"
+ },
+ "entity": {
+ "description": "La targeta entitat mostra una visualització ràpida dels estats d'una o més entitats.",
+ "name": "Entitat"
+ },
+ "gauge": {
+ "description": "La galga és una targeta bàsica que et permet mostrar les dades d'un sensor de manera visual.",
+ "name": "Galga",
+ "needle_gauge": "Mostrar indicador d'agulla?",
+ "severity": {
+ "define": "Definir gravetat?",
+ "green": "Verd",
+ "red": "Vermell",
+ "yellow": "Groc"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Relació d'aspecte",
+ "attribute": "Atribut",
+ "camera_image": "Entitat de càmera",
+ "camera_view": "Visualització de càmera",
+ "days_to_show": "Dies a mostrar",
+ "double_tap_action": "Acció en tocar dues vegades",
+ "entities": "Entitats",
+ "entity": "Entitat",
+ "hold_action": "Acció en mantenir",
+ "hours_to_show": "Hores a mostrar",
+ "icon": "Icona",
+ "icon_height": "Alçada de la icona",
+ "image": "Ruta de la imatge",
+ "manual": "Manual",
+ "manual_description": "Afegir una targeta personalitzada o escriure el codi YAML manualment?",
+ "maximum": "Màxim",
+ "minimum": "Mínim",
+ "name": "Nom",
+ "no_theme": "Sense tema",
+ "refresh_interval": "Interval d'actualització",
+ "search": "Cerca",
+ "secondary_info_attribute": "Atribut d'informació secundària",
+ "show_icon": "Mostra icona?",
+ "show_name": "Mostra nom?",
+ "show_state": "Mostra estat?",
+ "state": "Estat",
+ "state_color": "Color de les icones basat en l'estat?",
+ "tap_action": "Acció en tocar",
+ "theme": "Tema",
+ "title": "Títol",
+ "unit": "Unitat",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Columnes",
+ "description": "La targeta visualització és útil per agrupar diversos sensors de forma general i compacta.",
+ "name": "Visualització"
+ },
+ "grid": {
+ "columns": "Columnes",
+ "description": "La targeta quadrícula et permet mostrar diferents targetes dins d'una quadrícula.",
+ "name": "Quadrícula",
+ "square": "Mostra les targetes en forma de quadrats"
+ },
+ "history-graph": {
+ "description": "La targeta gràfic històric et permet mostrar un gràfic per a cadascuna de les entitats establertes.",
+ "name": "Gràfic històric"
+ },
+ "horizontal-stack": {
+ "description": "La targeta pila horizontal et permet agrupar diferents targetes, una al costat de l'altra (horizontalment), pero dins d'una única columna.",
+ "name": "Pila horitzontal"
+ },
+ "humidifier": {
+ "description": "La targeta humidificador et permet controlar una entitat de tipus humidificador. Pots canviar-ne tant la humitat com el mode.",
+ "name": "Humidificador"
+ },
+ "iframe": {
+ "description": "La targeta pàgina web et permet incrustar els teus llocs web preferits directament a Home Assistant.",
+ "name": "Pàgina web"
+ },
+ "light": {
+ "description": "La targeta llum et permet ajustar la brillantor d'una llum.",
+ "name": "Llum"
+ },
+ "logbook": {
+ "description": "La targeta diari de registre mostra una llista d'esdeveniments de les entitats",
+ "name": "Diari de registre"
+ },
+ "map": {
+ "dark_mode": "Mode fosc?",
+ "default_zoom": "Zoom predeterminat",
+ "description": "La targeta mapa et permet mostrar diferents entitats sobre un mapa.",
+ "geo_location_sources": "Fonts de geolocalització",
+ "hours_to_show": "Hores a mostrar",
+ "name": "Mapa",
+ "source": "Font"
+ },
+ "markdown": {
+ "content": "Contingut",
+ "description": "La targeta Markdown s'utilitza per renderitzar llenguatge Markdown.",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "description": "La targeta control multimèdia s'utilitza per a visualitzar i controlar de forma senzilla entitats de tipus reproductor multimèdia.",
+ "name": "Control multimèdia"
+ },
+ "picture-elements": {
+ "description": "La targeta imatge amb elements és una de les targetes més versàtils. Et permet col·locar (utilitzant coordenades) icones, text o fins i tot serveis a sobre d'una imatge!",
+ "name": "Imatge amb elements"
+ },
+ "picture-entity": {
+ "description": "La targeta entitat d'imatge mostra una entitat en forma d'imatge. A més de mostrar imatges d'una URL, també pot mostrar les imatges d'una entitat de tipus càmera.",
+ "name": "Entitat d'imatge"
+ },
+ "picture-glance": {
+ "description": "La targeta de visualització d'imatge mostra una imatge i els estats de les entitats corresponents en un icona. Les entitats de la dreta permeten accions de commutació, altres mostren el diàleg de més informació.",
+ "name": "Visualització d'imatge",
+ "state_entity": "Entitat d'estat"
+ },
+ "picture": {
+ "description": "La targeta d'imatge et permet establir una imatge utilitzada per a navegar a diversos llocs de la interfície o tambe cridar un servei concret.",
+ "name": "Imatge"
+ },
+ "plant-status": {
+ "description": "La targeta condicions de planta/vegetal és per a tots els amants de la botànica.",
+ "name": "Condicions de planta/vegetal"
+ },
+ "sensor": {
+ "description": "La targeta sensor mostra una visió ràpida d'un dels teus sensors. En mostra l'estat i opcionalment un gràfic amb els canvis al llarg del temps.",
+ "graph_type": "Tipus de gràfic",
+ "name": "Sensor",
+ "show_more_detail": "Mostra més detalls"
+ },
+ "shopping-list": {
+ "description": "La targeta de llista de compres et permet afegir, editar, marcar i esborrar elements de la llista de compres.",
+ "integration_not_loaded": "Aquesta targeta necessita que la integració `shopping_list` estigui configurada.",
+ "name": "Llista de compres"
+ },
+ "statistics-graph": {
+ "description": "Amb la targeta gràfic d'estadístiques pot visualitzar un gràfic amb estadístiques de cadascuna de les entitats establertes.",
+ "name": "Gràfic d'estadístiques",
+ "period": "Període",
+ "periods": {
+ "5minute": "5 minuts",
+ "day": "Dia",
+ "hour": "Hora",
+ "month": "Mes"
+ }
+ },
+ "thermostat": {
+ "description": "La targeta termòstat et permet controlar una entitat de tipus climatització. Pots canviar-ne tant la temperatura com el mode.",
+ "name": "Termòstat"
+ },
+ "vertical-stack": {
+ "description": "La targeta pila vertical et permet agrupar diferents targetes dins d'una única columna.",
+ "name": "Pila vertical"
+ },
+ "weather-forecast": {
+ "description": "La targeta de previsió meteorològica, és molt útil per incloure en interfícies integrades en parets.",
+ "name": "Previsió meteorològica",
+ "show_both": "Mostra el temps actual i la previsió",
+ "show_forecast": "Mostra la previsió",
+ "show_only_current": "Mostra només el temps actual",
+ "show_only_forecast": "Mostra només la previsió"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Per targeta",
+ "by_entity": "Per entitat",
+ "custom_card": "Personalitzada",
+ "domain": "Domini",
+ "entity": "Entitat",
+ "no_description": "No hi ha cap descripció disponible."
+ },
+ "common": {
+ "add": "Afegeix",
+ "clear": "Esborra",
+ "edit": "Edita",
+ "none": "Cap"
+ },
+ "edit_badges": {
+ "panel_mode": "Aquestes insígnies no es mostraran ja que aquesta visualització està en ''mode panell''.",
+ "view_no_badges": "Les insígnies no son compatibles amb el tipus de visualització actual."
+ },
+ "edit_card": {
+ "add": "Afegir targeta",
+ "clear": "Esborra",
+ "confirm_cancel": "Segur que vols cancel·lar?",
+ "delete": "Elimina targeta",
+ "duplicate": "Duplica targeta",
+ "edit": "Editar",
+ "header": "Configuració de la targeta",
+ "move": "Moure a visualització",
+ "move_after": "Mou targeta després",
+ "move_before": "Mou targeta abans",
+ "move_down": "Mou targeta avall",
+ "move_up": "Mou targeta amunt",
+ "options": "Més opcions",
+ "pick_card": "Quina targeta vols afegir?",
+ "pick_card_view_title": "Quina targeta vols afegir a la visualització {name}?",
+ "search_cards": "Cerca targetes",
+ "show_code_editor": "Mostra l'editor de codi",
+ "show_visual_editor": "Mostra l'editor visual",
+ "toggle_editor": "Commutar l'editor",
+ "typed_header": "Configuració de la targeta {type}",
+ "unsaved_changes": "Hi ha canvis no desats"
+ },
+ "edit_lovelace": {
+ "edit_title": "Edita el títol",
+ "explanation": "Aquest títol es mostra a sobre de cada panell Lovelace.",
+ "header": "Títol de la interfície d'usuari Lovelace",
+ "title": "Títol"
+ },
+ "edit_view": {
+ "add": "Afegeix visualització",
+ "delete": "Eliminar visualització",
+ "edit": "Editar visualització",
+ "header": "Configuració de la visualització",
+ "header_name": "Configuració de la visualització {name}",
+ "move_left": "Desplaça la visualització cap a l'esquerra",
+ "move_right": "Desplaça la visualització cap a la dreta",
+ "tab_badges": "Insígnies",
+ "tab_settings": "Configuració",
+ "tab_visibility": "Visibilitat",
+ "type": "Tipus de visualització",
+ "types": {
+ "masonry": "Maçonari (predeterminat)",
+ "panel": "Panell (1 targeta)",
+ "sidebar": "Barra lateral"
+ },
+ "visibility": {
+ "select_users": "Selecciona quins usuaris podran veure aquesta visualització a la navegació"
+ }
+ },
+ "header": "Editar la interfície d'usuari (UI)",
+ "header-footer": {
+ "choose_header_footer": "Tria un {type}",
+ "footer": "Peu de pàgina",
+ "header": "Capçalera",
+ "types": {
+ "buttons": {
+ "name": "Botons"
+ },
+ "graph": {
+ "name": "Gràfic"
+ },
+ "picture": {
+ "name": "Imatge"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Gestiona els panells",
+ "manage_resources": "Gestiona els recursos",
+ "open": "Obre el menú de Lovelace",
+ "raw_editor": "Editor de codi"
+ },
+ "migrate": {
+ "header": "Configuració incompatible",
+ "migrate": "Migrar la configuració",
+ "para_migrate": "Home Assistant pot afegir ID's a totes les targetes i visualitzacions automàticament si prems al botó 'Migrar la configuració'.",
+ "para_no_id": "Aquest element no té ID. Afegeix un ID per aquest element a 'ui-lovelace.yaml'."
+ },
+ "move_card": {
+ "header": "Tria una visualització on desplaçar la tarjeta"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Si elimines la configuració de la interfície d'usuari Lovelace es generaran automàticament les visualitzacions de Lovelace amb les teves àrees i dispositius.",
+ "confirm_remove_config_title": "Estàs segur que vols eliminar la configuració de la interfície d'usuari Lovelace?",
+ "confirm_unsaved_changes": "Hi han canvis no desats. Segur que vols sortir?",
+ "confirm_unsaved_comments": "La configuració pot contenir comentaris que no es desaran. Vols continuar?",
+ "error_invalid_config": "La configuració no és vàlida: {error}",
+ "error_parse_yaml": "No es pot analitzar YAML: {error}",
+ "error_remove": "No s'ha pogut eliminar la configuració: {error}",
+ "error_save_yaml": "No es pot desar YAML: {error}",
+ "header": "Edita la configuració",
+ "lovelace_changed": "La configuració Lovelace s'ha actualitzat, vols tornar a carregar la nova configuració a l'editor i perdre els canvis actuals?",
+ "reload": "Torna a carregar",
+ "resources_moved": "Els recursos ja no s'han d'afegir a la configuració de Lovelace, però es poden afegir al tauler de configuració de Lovelace.",
+ "save": "Desa",
+ "saved": "Desat",
+ "unsaved_changes": "Canvis sense desar"
+ },
+ "save_config": {
+ "close": "Tanca",
+ "empty_config": "Comença amb un panell buit",
+ "header": "Pren el control de la interfície d'usuari Lovelace",
+ "para": "Aquest panell Lovelace està gestionat per Home Assistant. S'actualitza automàticament quan hi ha noves entitats o nous components de Lovelace disponibles. Si prens el control, aquest panell no s'actualitzarà automàticament. Sempre pots crear un nou panell a configuració i fer-hi proves.",
+ "para_sure": "Estàs segur que vols prendre el control de la interfície d'usuari?",
+ "save": "Prendre el control",
+ "yaml_config": "Per ajudar a familiaritzar-te, aquí tens la configuració actual del teu panell Lovelace:",
+ "yaml_control": "Per configurar el panell en mode YAML, crea un fitxer YAML amb el nom que hagis establert a la configuració del panell, o bé el nom per defecte 'ui-lovelace.yaml'.",
+ "yaml_mode": "Estàs utilitzant el mode YAML per aquest panell, per tant no pots editar-lo des de la interfície d'usuari. Si vols poder editar-lo des de la IU, elimina 'mode: yaml' del fitxer 'configuration.yaml' en l'apartat de configuració de Lovelace."
+ },
+ "select_view": {
+ "dashboard_label": "Panell",
+ "header": "Tria una visualització",
+ "views_label": "Visualització"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Editor de peu de pàgina",
+ "header": "Editor de capçalera",
+ "row": "Editor de fila d'entitats"
+ }
+ },
+ "suggest_card": {
+ "add": "Afegeix a la IU Lovelace",
+ "create_own": "Escull una targeta diferent",
+ "header": "T'hem creat un suggeriment"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Aquesta visualització conté més d'una targeta, però les visualitzacions en mode panell només poden mostrar una targeta."
+ }
+ }
+ },
+ "menu": {
+ "close": "Tanca",
+ "configure_ui": "Edita panell",
+ "exit_edit_mode": "Fet",
+ "help": "Ajuda",
+ "reload_resources": "Actualitza recursos",
+ "start_conversation": "Inicia conversa"
+ },
+ "reload_lovelace": "Actualiza la interfície d'usuari",
+ "reload_resources": {
+ "refresh_body": "Has d'actualitzar la pàgina per completar la càrrega. Vols actualitzar-la ara?",
+ "refresh_header": "Vols actualitzar?"
+ },
+ "unused_entities": {
+ "available_entities": "Aquestes són les entitats que tens disponibles, però que no es troben a la interfície d'usuari Lovelace.",
+ "domain": "Domini",
+ "entity": "Entitat",
+ "entity_id": "ID de l'entitat",
+ "last_changed": "Últim canvi",
+ "no_data": "No s'han trobat entitats sense utilitzar",
+ "search": "Cerca entitats",
+ "select_to_add": "Selecciona les entitats que vols afegir a una targeta i fés clic al botó d'afegir targeta.",
+ "title": "Entitats sense utilitzar"
+ },
+ "views": {
+ "confirm_delete": "Esborrar visualització?",
+ "confirm_delete_existing_cards": "Si elimines aquesta visualització, també s'eliminaran les targetes que conté",
+ "confirm_delete_existing_cards_text": "Estàs segur que vols eliminar la visualització ''{name}''? La visualització conté {number} targetes que s'eliminaran. Aquesta acció és irreversible.",
+ "confirm_delete_text": "Estàs segur que vols eliminar la visualització ''{name}''?"
+ },
+ "warning": {
+ "attribute_not_found": "L'atribut {attribute} de {entity} no és disponible.",
+ "entity_non_numeric": "Entitat no numèrica: {entity}",
+ "entity_not_found": "Entitat no disponible: {entity}",
+ "entity_unavailable": "Entitat actualment no disponible: {entity}",
+ "starting": "Home Assistant està iniciant-se, pot ser que encara no estigui tot disponible"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Elimina",
+ "delete_prompt": "Vols eliminar aquest missatge?",
+ "empty": "No tens missatges",
+ "playback_title": "Reproducció de missatges"
+ },
+ "map": {
+ "edit_zones": "Edita zones"
+ },
+ "my": {
+ "component_not_loaded": "La instància de Home Assistant no admet aquesta redirecció. Necessites la integració {integration} per poder fer aquesta redirecció.",
+ "documentation": "documentació",
+ "error": "S'ha produït un error desconegut",
+ "faq_link": "Preguntes freqüents de My Home Assistant",
+ "no_supervisor": "La teva instal·lació de Home Assistant no admet aquesta redirecció. Necessites tenir instal·lat o bé el Sistema Operatiu Home Assistant o Home Assistant Supervisat. Per a més informació, consulta {docs_link}.",
+ "not_supported": "La instància de Home Assistant no admet aquesta redirecció. Consulta {link} per veure les redireccions compatibles i en quina versió es van introduir."
+ },
+ "page-authorize": {
+ "abort_intro": "S'ha avortat l'inici de sessió",
+ "authorizing_client": "Estàs a punt de concedir al client {clientId} l'accés a la teva instància de Home Assistant.",
+ "form": {
+ "error": "Error: {error}",
+ "next": "Inicia sessió",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "La sessió ha caducat, torna a iniciar la sessió."
+ },
+ "error": {
+ "invalid_auth": "Nom d'usuari o contrasenya incorrectes",
+ "invalid_code": "El codi d'autenticació no és vàlid"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Contrasenya",
+ "username": "Nom d'usuari"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Codi de verificació en dos passos"
+ },
+ "description": "Obre el **{mfa_module_name}** al teu dispositiu per veure el codi de verificació en dos passos i verifica la teva identitat:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "La sessió ha caducat, torna a iniciar la sessió."
+ },
+ "error": {
+ "invalid_auth": "Nom d'usuari o contrasenya incorrectes",
+ "invalid_code": "El codi d'autenticació no és vàlid"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Contrasenya",
+ "username": "Nom d'usuari"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Codi de verificació en dos passos"
+ },
+ "description": "Obre el **{mfa_module_name}** al teu dispositiu per veure el codi de verificació en dos passos i verifica la teva identitat:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "La sessió ha caducat, torna a iniciar la sessió.",
+ "no_api_password_set": "No teniu una contrasenya API configurada."
+ },
+ "error": {
+ "invalid_auth": "Contrasenya API invàlida",
+ "invalid_code": "El codi d'autenticació no és vàlid"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Contrasenya API"
+ },
+ "description": "Introdueix la contrasenya API a la configuració http:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Codi de verificació en dos passos"
+ },
+ "description": "Obre el **{mfa_module_name}** al teu dispositiu per veure el codi de verificació en dos passos i verifica la teva identitat:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "El teu equip no està permès."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Usuari"
+ },
+ "description": "Selecciona l'usuari amb el qual iniciar la sessió:"
+ }
+ }
+ }
+ },
+ "start_over": "Comença de nou",
+ "unknown_error": "Alguna cosa no ha anat bé",
+ "working": "Si us plau, espereu"
+ },
+ "initializing": "S'està inicialitzant",
+ "logging_in_to_with": "Iniciant sessió a **{locationName}** amb **{authProviderName}**.",
+ "logging_in_with": "Iniciant sessió amb **{authProviderName}**.",
+ "pick_auth_provider": "O bé inicieu sessió amb",
+ "store_token": "Mantén-me connectat"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "per {name}",
+ "introduction": "Benvingut a casa! Has arribat a la demo de Home Assistant on es mostren algunes de les millors interfícies d'usuari creades per la comunitat.",
+ "learn_more": "Més informació sobre Home Assistant",
+ "next_demo": "Següent mostra"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Activitat",
+ "air": "Aire",
+ "commute_home": "Tornada cap a casa",
+ "entertainment": "Entreteniment",
+ "hdmi_input": "Entrada HDMI",
+ "hdmi_switcher": "Commutador HDMI",
+ "information": "Informació",
+ "lights": "Llums",
+ "morning_commute": "Desplaçament al matí",
+ "total_tv_time": "Temps de visualització",
+ "turn_tv_off": "Apaga la televisió",
+ "volume": "Volum"
+ },
+ "names": {
+ "family_room": "Sala d'estar",
+ "hallway": "Passadís",
+ "kitchen": "Cuina",
+ "left": "Esquerra",
+ "master_bedroom": "Dormitori principal",
+ "mirror": "Mirall",
+ "patio": "Pati",
+ "right": "Dreta",
+ "temperature_study": "Temperatura Study",
+ "upstairs": "Pis superior"
+ },
+ "unit": {
+ "minutes_abbr": "min",
+ "watching": "visualitzant"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Següent"
+ },
+ "core-config": {
+ "button_detect": "Detecta",
+ "finish": "Següent",
+ "intro": "Hola {name}, benvingut/uda a Home Assistant. Quin nom t'agradaria posar a la teva casa?",
+ "intro_location": "Voldirem saber la zona on vius. Aquesta informació servirà per poder mostrar certa informació i configurar automatitzacions relatives a la posició del sol. Aquestes dades mai es compartiran fora de la teva xarxa personal.",
+ "intro_location_detect": "Et podem ajudar a completar aquesta informació fent una única sol·licitud a un servei extern.",
+ "location_name": "Nom de la instal·lació de Home Assistant",
+ "location_name_default": "Casa"
+ },
+ "finish": "Acaba",
+ "integration": {
+ "finish": "Finalitza",
+ "intro": "Els dispositius i serveis es representen a Home Assistant com a integracions. Pots configurar-los ara o més tard des de la pàgina de configuració.",
+ "more_integrations": "Més"
+ },
+ "intro": "Estàs preparat donar vida pròpia a la teva llar, recuperar la teva privacitat i unir-te a una comunitat mundial de 'tinkerers'?",
+ "next": "Següent",
+ "restore": {
+ "addons": "Complements",
+ "confirm_password": "Confirma la contrasenya de la còpia de seguretat",
+ "description": "També pots restaurar des d'una còpia de seguretat anterior.",
+ "folders": "Carpetes",
+ "full_backup": "Còpia de seguretat completa",
+ "hide_log": "Amaga el registre complet",
+ "in_progress": "Restauració en curs",
+ "partial_backup": "Còpia de seguretat parcial",
+ "password": "Contrasenya de la còpia de seguretat",
+ "password_protection": "Protecció amb contrasenya",
+ "select_type": "Selecciona què vols restaurar",
+ "show_log": "Mostra el registre complet",
+ "type": "Tipus de còpia de seguretat",
+ "upload_backup": "Puja còpia de seguretat"
+ },
+ "user": {
+ "create_account": "Crear compte",
+ "data": {
+ "name": "Nom",
+ "password": "Contrasenya",
+ "password_confirm": "Confirma la contrasenya",
+ "username": "Nom d'usuari"
+ },
+ "error": {
+ "password_not_match": "Les contrasenyes no coincideixen",
+ "required_fields": "Omple tots els camps obligatoris"
+ },
+ "intro": "Comencem creant un nou compte d'usuari.",
+ "required_field": "Obligatori"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Desbloqueja funcions avançades.",
+ "link_promo": "Més informació",
+ "title": "Mode avançat"
+ },
+ "change_password": {
+ "confirm_new_password": "Confirmar contrasenya nova",
+ "current_password": "Contrasenya actual",
+ "error_new_is_old": "La contrasenya nova ha de ser diferent de la contrasenya actual",
+ "error_new_mismatch": "Els valors introduïts de la nova contrasenya no coincideixen",
+ "error_required": "Obligatori",
+ "header": "Canvi de contrasenya",
+ "new_password": "Contrasenya nova",
+ "submit": "Envia",
+ "success": "La contrasenya s'ha canviat correctament"
+ },
+ "current_user": "Has iniciat la sessió com a {fullName}.",
+ "customize_sidebar": {
+ "button": "Edita",
+ "description": "També pots mantenir premuda la capçalera de la barra lateral per activar el mode d'edició.",
+ "header": "Canvia l'ordre i/o amaga elements de la barra lateral"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Visualització general (per defecte)",
+ "description": "Tria un panell per defecte per a aquest dispositiu.",
+ "dropdown_label": "Panell",
+ "header": "Panell"
+ },
+ "enable_shortcuts": {
+ "description": "Activa o desactiva dreceres de teclat. Poden dur a terme diverses accions a la IU.",
+ "header": "Dreceres de teclat"
+ },
+ "force_narrow": {
+ "description": "Això ocultarà la barra lateral de manera similar als mòbils i tablets.",
+ "header": "Amaga sempre la barra lateral"
+ },
+ "is_owner": "Ets propietari.",
+ "language": {
+ "dropdown_label": "Idioma",
+ "header": "Idioma",
+ "link_promo": "Ajuda a traduir"
+ },
+ "logout": "Tanca sessió",
+ "logout_text": "Estàs segur que vols tancar la sessió?",
+ "logout_title": "Tancar sessió?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Estàs segur que vols eliminar el token d'autenticació d'accés per {name}?",
+ "create": "Crea un token d'autenticació",
+ "create_failed": "No s'ha pogut crear el token d'autenticació d'accés.",
+ "created": "Creat {date}",
+ "delete_failed": "No s'ha pogut eliminar el token d'autenticació d'accés.",
+ "description": "Crea tokens d'autenticació d'accés de llarga durada per permetre als teus programes/scripts interactuar amb la instància de Home Assistant. Cada token és vàlid durant deu anys després de la seva creació. Els següents tokens d'autenticació d'accés de llarga durada estan actius actualment.",
+ "empty_state": "Encara no tens tokens d'autenticació d'accés de llarga durada.",
+ "header": "Tokens d'autenticació d'accés de llarga durada",
+ "learn_auth_requests": "Aprèn a fer sol·licituds autenticades.",
+ "name": "Nom",
+ "prompt_copy_token": "Copia't el token d'autenticació d'accés. No es tornarà a mostrar més endavant.",
+ "prompt_name": "Posa un nom al token"
+ },
+ "mfa": {
+ "confirm_disable": "Estàs segur que vols desactivar {name}?",
+ "disable": "Desactiva",
+ "enable": "Activa",
+ "header": "Mòduls d'autenticació amb múltiples passos"
+ },
+ "mfa_setup": {
+ "close": "Tanca",
+ "step_done": "Configuració feta per a {step}",
+ "submit": "Envia",
+ "title_aborted": "S'ha avortat",
+ "title_success": "Èxit!"
+ },
+ "number_format": {
+ "description": "Tria el format dels números.",
+ "dropdown_label": "Format dels números",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Automàtic (utilitza la configuració d'idioma)",
+ "none": "Cap",
+ "space_comma": "1 234 567,89",
+ "system": "Utilitza la configuració regional del sistema"
+ },
+ "header": "Format dels números"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Nom del dispositiu",
+ "title": "Com vols anomenar aquest dispositiu?"
+ },
+ "description": "Envia notificacions a aquest dispositiu.",
+ "error_load_platform": "Configurar notify.html5.",
+ "error_use_https": "Requereix tenir SSL habilitat per a la interfície (frontend).",
+ "header": "Notificacions push",
+ "link_promo": "Més informació",
+ "push_notifications": "Notificacions push"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Estàs segur que vols eliminar el token d'actualització per a {name}?",
+ "created_at": "Creat {date}",
+ "current_token_tooltip": "No s'ha pogut eliminar el token d'autenticació d'actualització.",
+ "delete_failed": "No s'ha pogut eliminar el token d'autenticació d'actualització.",
+ "description": "Cada token d'autenticació d'actualització representa un inici de sessió diferent. Els tokens d'autenticació d'actualització s'eliminaran automàticament quan tanquis la sessió. A sota hi ha una llista de tokens d'autenticació d'actualització que estan actius actualment al teu compte.",
+ "header": "Refresca els tokens d'autenticació",
+ "last_used": "Darrer ús {date} des de {location}",
+ "not_used": "Mai no s'ha utilitzat",
+ "token_title": "Token d'actualització de {clientId}"
+ },
+ "suspend": {
+ "description": "Tanca la connexió amb el servidor després d'estar ocult durant 5 minuts.",
+ "header": "Tanca la connexió automàticament"
+ },
+ "themes": {
+ "accent_color": "Color d'èmfasi",
+ "dark_mode": {
+ "auto": "Auto",
+ "dark": "Fosc",
+ "light": "Clar"
+ },
+ "dropdown_label": "Tema",
+ "error_no_theme": "No hi ha temes disponibles.",
+ "header": "Tema",
+ "link_promo": "Crea temes personalitzats",
+ "primary_color": "Color primari",
+ "reset": "Restablir"
+ },
+ "time_format": {
+ "description": "Tria el format de data i hora.",
+ "dropdown_label": "Format de data i hora",
+ "formats": {
+ "12": "12 hores (AM/PM)",
+ "24": "24 hores",
+ "language": "Automàtic (utilitza la configuració d'idioma)",
+ "system": "Utilitza la configuració regional del sistema"
+ },
+ "header": "Format de data i hora"
+ },
+ "vibrate": {
+ "description": "Activa o desactiva la vibració en d'aquest dispositiu.",
+ "header": "Vibra"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Inicia conversa"
+ }
+ },
+ "sidebar": {
+ "done": "Fet",
+ "external_app_configuration": "Configuració de l'aplicació",
+ "hide_panel": "Amaga panell",
+ "show_panel": "Mostra panell",
+ "sidebar_toggle": "Commutació de la barra lateral"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/cs.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/cs.json
new file mode 100644
index 00000000..dd7ee3b4
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/cs.json
@@ -0,0 +1,4662 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Položka nastavení",
+ "device": "Zařízení",
+ "integration": "Integrace",
+ "user": "Uživatel"
+ }
+ },
+ "groups": {
+ "owner": "Vlastník",
+ "system-admin": "Správci",
+ "system-read-only": "Uživatelé jen pro čtení",
+ "system-users": "Uživatelé"
+ },
+ "panel": {
+ "calendar": "Kalendář",
+ "config": "Nastavení",
+ "developer_tools": "Vývojářské nástroje",
+ "energy": "Energie",
+ "history": "Historie",
+ "logbook": "Záznamy",
+ "mailbox": "Schránka",
+ "map": "Mapa",
+ "media_browser": "Média",
+ "profile": "Profil",
+ "shopping_list": "Nákupní seznam",
+ "states": "Přehled"
+ },
+ "state": {
+ "default": {
+ "off": "Vypnuto",
+ "on": "Zapnuto",
+ "unavailable": "Není k dispozici",
+ "unknown": "Nezjištěno"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Auto",
+ "off": "Neaktivní",
+ "on": "Aktivní"
+ },
+ "hvac_action": {
+ "cooling": "Chlazení",
+ "drying": "Sušení",
+ "fan": "Ventilátor",
+ "heating": "Topení",
+ "idle": "Nečinný",
+ "off": "Vypnuto"
+ },
+ "preset_mode": {
+ "activity": "Aktivita",
+ "away": "Pryč",
+ "boost": "Boost",
+ "comfort": "Komfort",
+ "eco": "Eco",
+ "home": "Doma",
+ "none": "Žádná",
+ "sleep": "Spánek"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Auto",
+ "away": "Pryč",
+ "baby": "Dítě",
+ "boost": "Boost",
+ "comfort": "Komfort",
+ "eco": "Ekonomický mód",
+ "home": "Doma",
+ "normal": "Běžný",
+ "sleep": "Spánek"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Zabezpečeno",
+ "armed_away": "Zabezpečeno",
+ "armed_custom_bypass": "Zabezpečeno",
+ "armed_home": "Zabezpečeno",
+ "armed_night": "Zabezpečeno",
+ "armed_vacation": "Zabezpečeno",
+ "arming": "Zabezpečování",
+ "disarmed": "Nezabezpečeno",
+ "disarming": "Odbezpečování",
+ "pending": "Čeká",
+ "triggered": "Spuštěn"
+ },
+ "default": {
+ "entity_not_found": "Entita nenalezena",
+ "error": "Chyba",
+ "unavailable": "Není",
+ "unknown": "Neví se"
+ },
+ "device_tracker": {
+ "home": "Doma",
+ "not_home": "Pryč"
+ },
+ "person": {
+ "home": "Doma",
+ "not_home": "Pryč"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Výchozí",
+ "header": "Zvuk",
+ "input": "Vstup",
+ "output": "Výstup"
+ },
+ "network": {
+ "container": "Kontejner",
+ "disabled": "Zakázáno",
+ "header": "Síť",
+ "host": "Hostitel"
+ },
+ "no_configuration": "Tento doplňek neposkytuje konfiguraci s kterou byste si mohli hrát…",
+ "options": {
+ "edit_in_ui": "Upravit v uživatelském rozhraní",
+ "edit_in_yaml": "Upravit přímo YAML",
+ "header": "Možnosti",
+ "invalid_yaml": "Neplatný YAML",
+ "show_unused_optional": "Zobrazit nepoužívané volitelné možnosti konfigurace"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Nepodařilo se získat seznam změn doplňku",
+ "go_to_config": "Upravit nastavení",
+ "install": "Instalace doplňku se nezdařila",
+ "restart": "Restartování doplňku se nezdařilo",
+ "start": "Spuštění doplňku se nezdařilo",
+ "start_invalid_config": "Přejít do konfigurace",
+ "stop": "Zastavení doplňku se nezdařilo",
+ "uninstall": "Odinstalace doplňku se nezdařila",
+ "validate_config": "Nepodařilo se ověřit konfiguraci doplňku"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor ('Application Armor') je modul zabezpečení jádra systému Linux, který omezuje možnosti doplňků, jako je přístup k síti, přístup k soketům a oprávnění číst, zapisovat nebo spouštět konkrétní soubory. \n\nAutoři doplňků mohou poskytnout své bezpečnostní profily optimalizované pro doplněk nebo požádat o jejich deaktivaci. Pokud je AppArmor zakázán, zvýší se bezpečnostní rizika a proto má negativní dopad na skóre zabezpečení doplňku.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "Doplněk může ověřovat uživatele pomocí Home Assistant, což umožňuje doplňkům možnost přihlašovat se do aplikací spuštěných uvnitř doplňků pomocí uživatelského jména / hesla Home Assistant. Tento odznak označuje, zda autor doplňku tuto schopnost požaduje.",
+ "title": "Autentifikace Home Assistant"
+ },
+ "docker_api": {
+ "description": "Autor doplňku požádal, aby měl doplněk správcovský přístup k instanci Dockeru spuštěné ve vašem systému. Tento režim poskytuje doplňku plný přístup a kontrolu nad celým vaším systémem Home Assistant, což zvyšuje bezpečnostní rizika a při zneužití může váš systém poškodit. Proto tato funkce negativně ovlivňuje skóre zabezpečení doplňku. \n\nTato úroveň přístupu není udělena automaticky a je třeba ji potvrdit. Chcete-li to provést, musíte ručně deaktivovat režim ochrany doplňku. Režim ochrany deaktivujte, pouze pokud víte, co děláte, potřebujete to a důvěřujete zdroji tohoto doplňku.",
+ "title": "Úplný přístup k Dockeru"
+ },
+ "full_access": {
+ "description": "Tento doplněk získá úplný přístup k hardwaru vašeho systému na žádost autora doplňku. Přístup je srovnatelný s privilegovaným režimem v Dockeru. Protože to představuje možná bezpečnostní rizika, tato funkce negativně ovlivňuje skóre zabezpečení doplňku. \n\nTato úroveň přístupu není udělena automaticky a je třeba ji potvrdit. Chcete-li to provést, musíte ručně deaktivovat režim ochrany doplňku. Režim ochrany deaktivujte, pouze pokud víte co děláte, potřebujete to a důvěřujete zdroji tohoto doplňku.",
+ "title": "Plný přístup k hardwaru"
+ },
+ "hassio_api": {
+ "description": "Doplňku byl na žádost autora doplňku umožněn přístup k rozhraní Supervisor API. Ve výchozím nastavení má doplněk přístup k obecným informacím o verzi vašeho systému. Když doplněk požaduje přístup k rozhraní API na úrovni „manažer“ nebo „správce“, získá přístup k ovládání více částí systému Home Assistant. Toto oprávnění je označeno tímto odznakem a negativně ovlivní skóre zabezpečení doplňku.",
+ "title": "Přístup k rozhraní Supervisor API"
+ },
+ "homeassistant_api": {
+ "description": "Tento doplněk má přístup k vaší spuštěné instanci Home Assistant přímo přes Home Assistant API. Tento režim taktéž zajištuje autentifikaci pro doplněk, což umožňuje doplňku komunikovat s Home Assistant bez nutnosti dalších ověřovacích tokenů.",
+ "title": "Přístup k API Home Assistant"
+ },
+ "host_network": {
+ "description": "Doplňky obvykle běží ve své vlastní izolované síťové vrstvě, což jim brání v přístupu k síti hostitelského operačního systému. V některých případech může tato izolace sítě omezit doplňky při poskytování jejich služeb a proto může izolace být zrušena autorem doplňku, což doplňku poskytne plný přístup k síťovým funkcím hostitelského počítače. To dává doplňku více síťových funkcí, ale snižuje zabezpečení, proto se sníží bezpečnostní hodnocení doplňku, pokud doplněk tuto možnost použije.",
+ "title": "Hostitelská síť"
+ },
+ "host_pid": {
+ "description": "Obvykle procesy, které doplněk spouští, jsou izolovány od všech ostatních systémových procesů. Autor doplňku požádal, aby měl doplněk přístup k systémovým procesům běžícím na instanci hostitelského systému a umožnil doplňku také spouštět procesy v hostitelském systému. Tento režim poskytuje doplňku plný přístup a kontrolu nad celým vaším systémem Home Assistant, což zvyšuje bezpečnostní rizika a při zneužití může váš systém poškodit. Proto tato funkce negativně ovlivňuje skóre zabezpečení doplňku. \n\nTato úroveň přístupu není udělena automaticky a je třeba ji potvrdit. Chcete-li to provést, musíte ručně deaktivovat režim ochrany doplňku. Režim ochrany deaktivujte, pouze pokud víte, co děláte, potřebujete to a důvěřujete zdroji tohoto doplňku.",
+ "title": "Obor názvů hostitelských procesů"
+ },
+ "ingress": {
+ "description": "Tento doplněk používá Ingress k bezpečné integraci svého rozhraní do Home Assistant.",
+ "title": "Ingress"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "autentifikace",
+ "core": "Jádro",
+ "docker": "docker",
+ "hardware": "hardware",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "hostitel",
+ "host_pid": "hostitelský pid",
+ "ingress": "ingress",
+ "rating": "hodnocení",
+ "stage": "fáze"
+ },
+ "rating": {
+ "description": "Home Assistant poskytuje každému z doplňků hodnocení zabezpečení, které označuje rizika spojená s používáním tohoto doplňku. Čím více přístupu doplněk ve vašem systému vyžaduje, tím nižší je skóre, čímž se zvyšují možná bezpečnostní rizika. \n\nSkóre je na stupnici od 1 do 6. Kde 1 je nejnižší skóre (považováno za nejméně bezpečné a nejvyšší riziko) a skóre 6 je nejvyšší skóre (považováno za nejbezpečnější a nejnižší riziko).",
+ "title": "Bezpečnostní hodnocení doplňku"
+ },
+ "role": {
+ "admin": "admin",
+ "backup": "záloha",
+ "default": "výchozí",
+ "homeassistant": "homeassistant",
+ "manager": "správce"
+ },
+ "stage": {
+ "description": "Doplňky mohou mít jednu ze tří fází: \n\n {icon_stable} **Stabilní**: Tyto doplňky jsou připraveny k produkčnímu nasazení.\n\n {icon_experimental} **Experimentální**: Mohou obsahovat chyby a mohou být nedokončené. \n\n {icon_deprecated} **Zastaralé**: Tyto doplňky již nebudou dostávat žádné aktualizace.",
+ "title": "Fáze doplňku"
+ },
+ "stages": {
+ "deprecated": "Zavržené",
+ "experimental": "Experimentální"
+ }
+ },
+ "changelog": "Seznam změn",
+ "cpu_usage": "Využití procesoru doplňkem",
+ "hostname": "Název hostitele",
+ "install": "nainstalovat",
+ "new_update_available": "{name} {version} je k dispozici",
+ "not_available_arch": "Tento doplněk není kompatibilní s procesorem vašeho zařízení nebo operačním systémem, který jste do zařízení nainstalovali.",
+ "not_available_version": "Používáte Home Assistant {core_version_installed}, pro aktualizaci na tuto verzi doplňku potřebujete alespoň Home Assistant ve verzi {core_version_needed}",
+ "open_web_ui": "Otevřít webové rozhraní",
+ "option": {
+ "auto_update": {
+ "description": "Automaticky aktualizovat doplněk, pokud je k dispozici nová verze",
+ "title": "Automatická aktualizace"
+ },
+ "boot": {
+ "description": "Spustit doplněk při spuštění systému",
+ "title": "Spustit při spuštění"
+ },
+ "ingress_panel": {
+ "description": "Přidejte si tento doplněk na svůj postranní panel",
+ "title": "Zobrazit v postranním panelu"
+ },
+ "protected": {
+ "description": "Blokuje doplňku zvýšený přístup do systému",
+ "title": "Režim ochrany"
+ },
+ "watchdog": {
+ "description": "Toto spustí doplněk, pokud dojde k jeho selhání",
+ "title": "Hlídací pes"
+ }
+ },
+ "protection_mode": {
+ "content": "Režim ochrany je v tomto doplňku zakázán! To poskytuje doplňku plný přístup k celému systému, což zvyšuje bezpečnostní rizika a mohlo by poškodit systém při nesprávném použití. Režim ochrany zakažte pouze v případě, že víte, co děláte, je to potřeba a důvěřujete zdroji tohoto doplňku.",
+ "enable": "Povolit",
+ "title": "Ochranný režim je vypnut!"
+ },
+ "ram_usage": "Využití paměti RAM doplňkem",
+ "rebuild": "obnovit",
+ "restart": "restartovat",
+ "start": "spustit",
+ "stop": "zastavit",
+ "uninstall": "odinstalovat",
+ "visit_addon_page": "Další podrobnosti naleznete na stránce {name}"
+ },
+ "documentation": {
+ "get_documentation": "Nepodařilo se získat dokumentaci k doplňku, {error}"
+ },
+ "failed_to_reset": "Obnovení konfigurace doplňku se nezdařilo, {error}",
+ "failed_to_save": "Uložení konfigurace doplňku se nezdařilo, {error}",
+ "logs": {
+ "get_logs": "Nepodařilo se získat logy doplňků, {error}"
+ },
+ "panel": {
+ "configuration": "Nastavení",
+ "documentation": "Dokumentace",
+ "info": "Informace",
+ "log": "Log"
+ },
+ "state": {
+ "installed": "Doplněk je nainstalován",
+ "not_available": "Doplněk není ve vašem systému k dispozici",
+ "not_installed": "Doplněk není nainstalován"
+ }
+ },
+ "backup": {
+ "addons": "Doplňky",
+ "confirm_password": "Potvrďte heslo zálohy",
+ "could_not_create": "Nelze vytvořit zálohu",
+ "create": "Vytvořit",
+ "create_backup": "Vytvořit zálohu",
+ "create_blocked_not_running": "Vytvoření zálohy není momentálně možné, protože systém je ve stavu \"{state}\".",
+ "created": "Vytvořeno",
+ "delete_backup_confirm": "smazat",
+ "delete_backup_text": "Chcete smazat {number} {number, plural,\n one {zálohu}\n few {zálohy}\n other {záloh}\n}?",
+ "delete_backup_title": "Smazat zálohu",
+ "delete_selected": "Smazat vybrané zálohy",
+ "enter_password": "Prosím zadejte heslo.",
+ "failed_to_delete": "Smazání se nezdařilo",
+ "folders": "Složky",
+ "full_backup": "Úplná záloha",
+ "name": "Název zálohy",
+ "no_backups": "Zatím nemáte žádné zálohy.",
+ "partial_backup": "Částečná záloha",
+ "password": "Heslo zálohy",
+ "password_protection": "Ochrana heslem",
+ "passwords_not_matching": "Hesla se neshodují",
+ "select_type": "Vyberte, co chcete obnovit",
+ "selected": "{number} vybraných",
+ "size": "Velikost",
+ "type": "Typ zálohy",
+ "upload_backup": "Nahrát zálohu"
+ },
+ "common": {
+ "cancel": "Zrušit",
+ "close": "Zavřít",
+ "description": "Popis",
+ "error": {
+ "unknown": "Neznámá chyba",
+ "update_failed": "Aktualizace se nezdařila"
+ },
+ "failed_to_restart_name": "Restartování {name} se nezdařilo",
+ "failed_to_update_name": "Aktualizace {name} se nezdařila",
+ "learn_more": "Další informace",
+ "menu": "Menu",
+ "new_version_available": "K dispozici je nová verze",
+ "newest_version": "Nejnovější verze",
+ "no": "Ne",
+ "refresh": "Obnovit",
+ "release_notes": "Poznámky k vydání",
+ "reload": "Nově načíst",
+ "reset_defaults": "Obnovit výchozí hodnoty",
+ "reset_options": "Obnovit možnosti",
+ "restart": "Restartovat",
+ "restart_name": "Restartovat {name}",
+ "review": "přezkoumání",
+ "running_version": "Aktuálně používáte verzi {version}",
+ "save": "Uložit",
+ "show": "zobrazit",
+ "show_more": "Zobrazit o tom více informací",
+ "update": "Aktualizovat",
+ "update_available": "{count, plural,\n one {Čekající aktualizace}\n few {{count} čekající aktualizace}\n other {{count} čekajících aktualizací}\n}",
+ "version": "Verze",
+ "yes": "Ano"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Opravdu chcete obnovit všechny možnosti?",
+ "title": "Obnovit možnosti"
+ },
+ "restart": {
+ "text": "Opravdu chcete restartovat {name}?",
+ "title": "Restartovat {name}"
+ },
+ "update": {
+ "text": "Opravdu chcete aktualizovat {name} na verzi {version}?",
+ "title": "Aktualizace {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "K dispozici je nová verze",
+ "addon_running": "Doplněk je spuštěn",
+ "addon_stopped": "Doplněk je zastaven",
+ "addons": "Nainstalované doplňky",
+ "no_addons": "Zatím nemáte nainstalované žádné doplňky. Chcete-li začít, přejděte do obchodu s doplňky."
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Zrušit",
+ "description": "V současné době používáte ''{current_path}'' jako datový disk. Přesun datových disků povede k restartu zařízení a odhadem zabere {time} minut. Během této doby nebude vaše instalace Home Assistant přístupná. Během přesunu neodpojujte napájení!",
+ "loading_devices": "Načítám zařízení…",
+ "move": "Přesunout",
+ "moving": "Přesouvání datového disku",
+ "moving_desc": "Probíhá restartování a přesun datového disku. Prosím, mějte trpělivost",
+ "no_devices": "Nebyla nalezena žádná vhodná připojená zařízení",
+ "select_device": "Vyberte nový datový disk",
+ "title": "Přesunout datového disku"
+ },
+ "hardware": {
+ "attributes": "Atributy",
+ "device_path": "Cesta k zařízení",
+ "id": "ID",
+ "search": "Hledat hardware",
+ "subsystem": "Subsystém",
+ "title": "Hardware"
+ },
+ "network": {
+ "connected_to": "Připojeno k {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Zakázáno",
+ "dns_servers": "Servery DNS",
+ "failed_to_change": "Nepodařilo se změnit nastavení sítě",
+ "gateway": "IP adresa brány",
+ "ip_netmask": "IP adresa/Maska sítě",
+ "open": "Otevřít",
+ "scan_ap": "Hledat přístupové body",
+ "static": "Statická",
+ "title": "Nastavení sítě",
+ "unsaved": "Máte neuložené změny, které budou ztraceny, pokud změníte záložku. Chcete pokračovat?",
+ "warning": "Pokud měníte nastavení Wi-Fi, IP adresu nebo adresu brány, můžete ztratit připojení!",
+ "wep": "WEP",
+ "wpa": "wpa-psk"
+ },
+ "registries": {
+ "add_new_registry": "Přidat nový registr",
+ "add_registry": "Přidat registr",
+ "failed_to_add": "Nepodařilo se přidat registr",
+ "failed_to_remove": "Odebrání registru se nezdařilo",
+ "no_registries": "Nejsou nastaveny žádné registry",
+ "password": "Heslo",
+ "registry": "Registr",
+ "remove": "Odebrat",
+ "title_add": "Přidat nový registr kontejnerů",
+ "title_manage": "Spravovat registry kontejnerů",
+ "username": "Uživatelské jméno"
+ },
+ "repositories": {
+ "add": "Přidat",
+ "remove": "Odebrat",
+ "title": "Správa úložišť doplňků",
+ "used": "Úložiště se používá pro nainstalované doplňky a nelze je odstranit."
+ },
+ "restart_addon": {
+ "confirm_text": "Restartovat doplněk",
+ "text": "Chcete doplněk restartovat se svými změnami?"
+ },
+ "update": {
+ "backup": "Záloha",
+ "create_backup": "Vytvořit zálohu {name} před aktualizací",
+ "creating_backup": "Vytváří se záloha {name}",
+ "updating": "Aktualizuje se {name} na verzi {version}"
+ }
+ },
+ "my": {
+ "error": "Nastala neznámá chyba",
+ "error_addon_no_ingress": "Požadovaný doplněk nepodporuje ingress",
+ "error_addon_not_found": "Doplněk nebyl nalezen",
+ "error_addon_not_installed": "Požadovaný doplněk není nainstalován. Nejprve jej prosím nainstalujte",
+ "error_addon_not_started": "Požadovaný doplněk není spuštěn. Nejprve jej prosím spusťte",
+ "faq_link": "Časté dotazy týkající se My Home Assistant",
+ "not_supported": "Toto přesměrování není vaší instancí Home Assistant podporováno. Zkontrolujte {link} pro podporovaná přesměrování a verzi, ve které byla zavedena."
+ },
+ "panel": {
+ "addons": "Doplňky",
+ "backups": "Zálohy",
+ "dashboard": "Ovládací panel",
+ "store": "Obchod s doplňky",
+ "system": "Systém"
+ },
+ "store": {
+ "check_updates": "Vyhledat aktualizace",
+ "missing_addons": "Chybí doplňky? Na stránce svého uživatelského profilu povolte pokročilý režim",
+ "no_results_found": "V {repository} nebyly nalezeny žádné výsledky.",
+ "registries": "Registry",
+ "repositories": "Repozitáře"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Využití procesoru jádrem",
+ "ram_usage": "Využití paměti RAM jádrem"
+ },
+ "host": {
+ "change": "Změnit",
+ "change_hostname": "Změnit název hostitele",
+ "confirm_reboot": "Opravdu chcete restartovat hostitele?",
+ "confirm_shutdown": "Opravdu chcete vypnout hostitele?",
+ "deployment": "Nasazení",
+ "docker_version": "Verze Dockeru",
+ "emmc_lifetime_used": "Použitá životnost eMMC",
+ "failed_to_get_hardware_list": "Nepodařilo se získat seznam hardwaru",
+ "failed_to_import_from_usb": "Import z USB se nezdařil",
+ "failed_to_move": "Nepodařilo se přesunout datový disk",
+ "failed_to_reboot": "Nepodařilo se restartovat hostitele",
+ "failed_to_set_hostname": "Nastavení názvu hostitele se nezdařilo",
+ "failed_to_shutdown": "Nepodařilo se vypnout hostitele",
+ "hardware": "Hardware",
+ "hostname": "Název hostitele",
+ "import_from_usb": "Importovat z USB",
+ "ip_address": "IP adresa",
+ "move_datadisk": "Přesunout datového disku",
+ "new_hostname": "Zadejte prosím nový název hostitele:",
+ "operating_system": "Operační systém",
+ "reboot_host": "Restartovat hostitele",
+ "shutdown_host": "Vypnout hostitele",
+ "used_space": "Použité místo"
+ },
+ "log": {
+ "get_logs": "Nepodařilo se získat logy {provider}, {error}",
+ "log_provider": "Poskytovatel logů"
+ },
+ "supervisor": {
+ "beta_backup": "Před aktivací této funkce se ujistěte, že máte zálohy svých dat.",
+ "beta_join_confirm": "Chcete se připojit k beta kanálu?",
+ "beta_release_items": "To zahrnuje beta verze pro:",
+ "beta_warning": "Beta verze jsou určeny pro testery a nedočkavce a mohou obsahovat nestabilní změny kódu",
+ "channel": "Kanál",
+ "cpu_usage": "Využití procesoru Supervisorem",
+ "failed_to_reload": "Nové načtení Supervisora se nezdařilo",
+ "failed_to_set_option": "Nastavení možnosti Supervisora se nezdařilo",
+ "failed_to_update": "Aktualizace Supervisora se nezdařila",
+ "join_beta_action": "Připojit se k beta kanálu",
+ "join_beta_description": "Získejte beta aktualizace pro Home Assistant (RC), Supervisor a hostitele",
+ "leave_beta_action": "Opustit beta kanál",
+ "leave_beta_description": "Získejte stabilní aktualizace pro Home Assistant, Supervisor a hostitele",
+ "ram_usage": "Využití paměti RAM Supervisorem",
+ "reload_supervisor": "Nově načíst Supervisor",
+ "search": "Hledat",
+ "share_diagnostics": "Sdílet diagnostické informace",
+ "share_diagnostics_description": "Sdílejte zprávy o selhání a diagnostické informace.",
+ "share_diagonstics_description": "Chcete automaticky sdílet zprávy o selhání a diagnostické informace, když Supervisor narazí na neočekávané chyby? {line_break} To nám umožní vyřešit problémy, informace jsou přístupné pouze týmu Home Assistant Core a nebudou sdíleny s ostatními. {line_break} Data neobsahují žádné soukromé / citlivé informace a tato volba může být kdykoliv deaktivována v nastavení.",
+ "share_diagonstics_title": "Pomozte vylepšit Home Asistent",
+ "unhealthy_description": "Používáním instalace, která není v pořádku způsobí problémy. Níže je uveden seznam problémů nalezených ve vaší instalaci. Kliknutím na odkazy se dozvíte, jak tyto problémy vyřešit.",
+ "unhealthy_reason": {
+ "docker": "Prostředí Docker nefunguje správně",
+ "privileged": "Supervisor není privilegovaný",
+ "setup": "Nastavení Supervisora se nezdařilo",
+ "supervisor": "Supervisor se nepodařilo aktualizovat",
+ "untrusted": "Zjištěn nedůvěryhodný obsah"
+ },
+ "unhealthy_title": "Instalace není v pořádku",
+ "unsupported_description": "Níže je uveden seznam problémů nalezených ve vaší instalaci. Kliknutím na odkazy se dozvíte, jak tyto problémy vyřešit.",
+ "unsupported_reason": {
+ "apparmor": "AppArmor není na hostiteli povolen",
+ "container": "Kontejnery, o nichž je známo, že způsobují problémy",
+ "content-trust": "Ověřování důvěryhodnosti obsahu je zakázáno.",
+ "content_trust": "Ověřování důvěryhodnosti obsahu je zakázáno",
+ "dbus": "DBUS",
+ "docker_configuration": "Konfigurace Dockeru",
+ "docker_version": "Verze Dockeru",
+ "job_conditions": "Ignorované podmínky úlohy",
+ "lxc": "LXC",
+ "network_manager": "Správce sítě",
+ "os": "Operační systém",
+ "os_agent": "Agent operačního systému",
+ "privileged": "Supervisor není privilegovaný",
+ "software": "Byl zjištěn nepodporovaný software",
+ "source_mods": "Úpravy zdroje",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Používáte nepodporovanou instalaci",
+ "update_supervisor": "Aktualizovat Supervisor",
+ "warning": "VAROVÁNÍ"
+ }
+ },
+ "update_available": {
+ "core_note": "Pokud vaše instance po aktualizaci nenaběhne, vrátí ji supervisor zpět na verzi {version}.",
+ "create_backup": "Vytvořit zálohu před aktualizací",
+ "creating_backup": "Vytváření zálohy {name}",
+ "description": "Máte nainstalovanou verzi {version}. Kliknutím na tlačítko Aktualizovat aktualizujete na verzi {newest_version}",
+ "no_update": "Pro {name} není k dispozici žádná aktualizace",
+ "open_release_notes": "Otevřít poznámky k vydání",
+ "update_name": "Aktualizovat {name}",
+ "updating": "Aktualizuji {name} na verzi {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Chcete toto přihlášení uložit?",
+ "confirm": "Ano",
+ "decline": "Ne"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Aktivovat režim nepřítomnost",
+ "arm_custom_bypass": "Vlastní obejítí",
+ "arm_home": "Aktivovat režim domov",
+ "arm_night": "Aktivovat noční režim",
+ "arm_vacation": "Aktivovat režim dovolená",
+ "clear_code": "Zrušit",
+ "code": "Kód",
+ "disarm": "Odbezpečit"
+ },
+ "area": {
+ "area_not_found": "Oblast nenalezena."
+ },
+ "automation": {
+ "last_triggered": "Naposledy spuštěno",
+ "trigger": "Spustit akce"
+ },
+ "button": {
+ "press": "Stisknutí"
+ },
+ "camera": {
+ "not_available": "Obrázek není k dispozici"
+ },
+ "climate": {
+ "aux_heat": "Pomocné teplo",
+ "away_mode": "Úsporný režim",
+ "cooling": "{name} chlazení",
+ "current_temperature": "{name} aktuální teplota",
+ "currently": "Aktuálně",
+ "fan_mode": "Režim ventilátoru",
+ "heating": "{name} topení",
+ "high": "vysoká",
+ "low": "nízká",
+ "on_off": "Zapnout / vypnout",
+ "operation": "Provoz",
+ "preset_mode": "Předvolba",
+ "swing_mode": "Režim kmitání",
+ "target_humidity": "Cílová vlhkost",
+ "target_temperature": "Cílová teplota",
+ "target_temperature_entity": "{name} cílová teplota",
+ "target_temperature_mode": "{name} cílová teplota {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "Snížit",
+ "increment": "Navýšit",
+ "reset": "Obnovit"
+ }
+ },
+ "cover": {
+ "position": "Pozice",
+ "tilt_position": "Náklon"
+ },
+ "fan": {
+ "direction": "Směr",
+ "forward": "Vpřed",
+ "oscillate": "Oscilovat",
+ "preset_mode": "Předvolba",
+ "reverse": "Vzad",
+ "speed": "Rychlost"
+ },
+ "humidifier": {
+ "humidity": "Cílová vlhkost",
+ "mode": "Režim",
+ "on_entity": "{name} zapnuto",
+ "target_humidity_entity": "{name} cílová vlhkost"
+ },
+ "light": {
+ "brightness": "Jas",
+ "cold_white_value": "Jas studené bílé",
+ "color_brightness": "Jas barev",
+ "color_temperature": "Teplota barvy",
+ "effect": "Efekt",
+ "warm_white_value": "Jas teplé bílé",
+ "white_value": "Jas bílé"
+ },
+ "lock": {
+ "code": "Kód",
+ "lock": "Zamknout",
+ "unlock": "Odemknout"
+ },
+ "media_player": {
+ "browse_media": "Procházet média",
+ "media_next_track": "Další skladba",
+ "media_pause": "Pauza",
+ "media_play": "Přehrát",
+ "media_play_pause": "Přehrát/pozastavit",
+ "media_previous_track": "Předchozí skladba",
+ "media_stop": "Stop",
+ "media_volume_down": "Snížit hlasitost",
+ "media_volume_mute": "Vypnout zvuk",
+ "media_volume_unmute": "Zapnout zvuk",
+ "media_volume_up": "Zvýšit hlasitost",
+ "nothing_playing": "Nic se nepřehrává",
+ "sound_mode": "Režim zvuku",
+ "source": "Zdroj",
+ "text_to_speak": "Převod textu na řeč",
+ "turn_off": "Vypnout",
+ "turn_on": "Zapnout"
+ },
+ "persistent_notification": {
+ "dismiss": "Zavřít"
+ },
+ "scene": {
+ "activate": "Aktivovat"
+ },
+ "script": {
+ "cancel": "Zrušit",
+ "cancel_multiple": "Zrušit {number}",
+ "run": "Spustit"
+ },
+ "service": {
+ "run": "Spustit"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "Zrušit",
+ "finish": "Dokončit",
+ "pause": "pauza",
+ "start": "Spustit"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Pokračovat v čištění",
+ "return_to_base": "Vrátit do stanice",
+ "start_cleaning": "Zahájit čištění",
+ "turn_off": "Vypnout",
+ "turn_on": "Zapnout"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Prázdninový režim",
+ "currently": "Momentálně",
+ "on_off": "Zapnout / vypnout",
+ "operation": "Provoz",
+ "target_temperature": "Cílová teplota"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Tlak vzduchu",
+ "humidity": "Vlhkost vzduchu",
+ "precipitation": "Srážky",
+ "temperature": "Teplota",
+ "visibility": "Viditelnost",
+ "wind_speed": "Rychlost větru"
+ },
+ "cardinal_direction": {
+ "e": "V",
+ "ene": "VSV",
+ "ese": "VJV",
+ "n": "S",
+ "ne": "SV",
+ "nne": "SSV",
+ "nnw": "SSZ",
+ "nw": "SZ",
+ "s": "J",
+ "se": "JV",
+ "sse": "JJV",
+ "ssw": "JJZ",
+ "sw": "JZ",
+ "w": "Z",
+ "wnw": "ZSZ",
+ "wsw": "ZJZ"
+ },
+ "day": "Den",
+ "forecast": "Předpověď",
+ "high": "Vysoká",
+ "low": "Nízká",
+ "night": "Noc"
+ }
+ },
+ "common": {
+ "and": "a",
+ "back": "Zpět",
+ "cancel": "Zrušit",
+ "clear": "Vymazat",
+ "close": "Zavřít",
+ "continue": "Pokračovat",
+ "copied": "Zkopírováno",
+ "copied_clipboard": "Zkopírováno do schránky",
+ "delete": "Smazat",
+ "disable": "Zakázat",
+ "enable": "Povolit",
+ "error_required": "Povinné",
+ "help": "Nápověda",
+ "leave": "Opustit",
+ "loading": "Načítání",
+ "menu": "Menu",
+ "move": "Přesunout",
+ "next": "Další",
+ "no": "Ne",
+ "not_now": "Nyní ne",
+ "overflow_menu": "Přesah menu",
+ "previous": "Předchozí",
+ "refresh": "Obnovit",
+ "remove": "Odebrat",
+ "rename": "Přejmenovat",
+ "save": "Uložit",
+ "skip": "Přeskočit",
+ "stay": "Zůstat",
+ "submit": "Odeslat",
+ "successfully_deleted": "Úspěšně smazáno",
+ "successfully_saved": "Úspěšně uloženo",
+ "undo": "Zpět",
+ "yes": "Ano"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Doplněk",
+ "error": {
+ "fetch_addons": {
+ "description": "Při načítání doplňků došlo k chybě.",
+ "title": "Chyba při načítání doplňků"
+ },
+ "no_supervisor": {
+ "description": "Doplňky nejsou podporovány.",
+ "title": "Žádný Supervisor"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Přidat",
+ "failed_create_area": "Nepodařilo se vytvořit oblast.",
+ "name": "Jméno",
+ "text": "Zadejte název nové oblasti.",
+ "title": "Přidat novou oblast"
+ },
+ "add_new": "Přidat novou oblast…",
+ "area": "Oblast",
+ "clear": "Vymazat",
+ "no_areas": "Nemáte žádné oblasti",
+ "no_match": "Nebyly nalezeny žádné odpovídající oblasti",
+ "show_areas": "Zobrazit oblasti"
+ },
+ "attributes": {
+ "expansion_header": "Atributy"
+ },
+ "blueprint-picker": {
+ "add_user": "Přidat uživatele",
+ "remove_user": "Odebrat uživatele",
+ "select_blueprint": "Vyberte šablonu"
+ },
+ "calendar": {
+ "my_calendars": "Moje kalendáře",
+ "today": "Dnes"
+ },
+ "data-table": {
+ "clear": "Vymazat",
+ "filtering_by": "Filtrované dle",
+ "hidden": "{number} skryté",
+ "no-data": "Žádná data",
+ "search": "Hledat"
+ },
+ "date-range-picker": {
+ "end_date": "Koncové datum",
+ "ranges": {
+ "last_week": "Minulý týden",
+ "this_week": "Tento týden",
+ "today": "Dnes",
+ "yesterday": "Včera"
+ },
+ "select": "Vybrat",
+ "start_date": "Počáteční datum"
+ },
+ "device-picker": {
+ "clear": "Zrušit",
+ "device": "Zařízení",
+ "no_area": "Žádná oblast",
+ "no_devices": "Nemáte žádná zařízení",
+ "no_match": "Nebyla nalezena žádná odpovídající zařízení",
+ "show_devices": "Zobrazit zařízení",
+ "toggle": "Přepnout"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Atribut",
+ "show_attributes": "Zobrazit atributy"
+ },
+ "entity-picker": {
+ "clear": "Zrušit",
+ "edit": "Upravit",
+ "entity": "Entita",
+ "no_match": "Nebyly nalezeny žádné odpovídající entity",
+ "show_entities": "Zobrazit entity"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "Integrace Historie je zákázána",
+ "loading_history": "Historie stavu se načítá…",
+ "no_history_found": "Historie stavu chybí."
+ },
+ "logbook": {
+ "by": "prostřednictvím",
+ "by_service": "službou",
+ "entries_not_found": "Nebyly nalezeny žádné události v logu.",
+ "messages": {
+ "became_unavailable": "bylo nedostupné",
+ "changed_to_state": "změněno na {state}",
+ "cleared_device_class": "zrušeno (nebylo zjištěno {device_class})",
+ "cleared_tampering": "žádná manipulace",
+ "detected_device_class": "zjištěno {device_class}",
+ "detected_tampering": "zjištěná manipulace",
+ "is_closing": "se zavírá",
+ "is_opening": "se otevírá",
+ "rose": "vyšlo",
+ "set": "zapadlo",
+ "turned_off": "vypnuto",
+ "turned_on": "zapnuto",
+ "was_at_home": "byl zjištěn doma",
+ "was_at_state": "byl zjištěn v {state}",
+ "was_away": "byl zjištěn pryč",
+ "was_closed": "bylo zavřeno",
+ "was_connected": "bylo připojeno",
+ "was_disconnected": "bylo odpojeno",
+ "was_locked": "bylo uzamčeno",
+ "was_low": "bylo nízké",
+ "was_normal": "bylo normální",
+ "was_opened": "bylo otevřeno",
+ "was_plugged_in": "bylo zapojeno",
+ "was_safe": "bylo v bezpečí",
+ "was_unlocked": "bylo odemčeno",
+ "was_unplugged": "bylo odpojeno",
+ "was_unsafe": "bylo v nebezpečí"
+ },
+ "retrieval_error": "Nelze načíst logy",
+ "show_trace": "Zobrazit trasu"
+ },
+ "media-browser": {
+ "audio_not_supported": "Váš prohlížeč nepodporuje element \"audio\".",
+ "choose_player": "Vyberte přehrávač",
+ "class": {
+ "album": "Album",
+ "app": "Aplikace",
+ "artist": "Umělec",
+ "channel": "Kanál",
+ "composer": "Skladatel",
+ "contributing_artist": "Přispívající umělec",
+ "directory": "Knihovna",
+ "episode": "Epizoda",
+ "game": "Hra",
+ "genre": "Žánr",
+ "image": "Obrázek",
+ "movie": "Film",
+ "music": "Hudba",
+ "playlist": "Seznam skladeb",
+ "podcast": "Podcast",
+ "season": "Sezóna",
+ "track": "Stopa",
+ "tv_show": "Televizní pořad",
+ "url": "URL adresa",
+ "video": "Video"
+ },
+ "documentation": "dokumentace",
+ "learn_adding_local_media": "Další informace o přidávání médií naleznete v {documentation}.",
+ "local_media_files": "Umístěte svá videa, zvukové či obrazové soubory do adresáře médií, abyste je mohli procházet a přehrávat v prohlížeči nebo na podporovaných přehrávačích médií.",
+ "media-player-browser": "Média",
+ "media_browsing_error": "Chyba při procházení médií",
+ "media_not_supported": "Přehrávač médií v prohlížeči nepodporuje tento typ média",
+ "media_player": "Přehrávač médií",
+ "no_items": "Žádné položky",
+ "no_local_media_found": "Nebyla nalezena žádná místní média",
+ "no_media_folder": "Vypadá to, že jste dosud nevytvořili adresář médií.",
+ "pick": "Vybrat",
+ "pick-media": "Vybrat média",
+ "play": "Přehrát",
+ "play-media": "Přehrát média",
+ "setup_local_help": "Pokyny k nastavení místních médií najdete v {documentation}.",
+ "video_not_supported": "Váš prohlížeč nepodporuje element \"video\".",
+ "web-browser": "Webový prohlížeč"
+ },
+ "picture-upload": {
+ "label": "Obrázek",
+ "unsupported_format": "Nepodporovaný formát, prosím vyberte obrázek typu JPEG, PNG nebo GIF."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Zadejte hodnotu QR kódu",
+ "manual_input": "QR kód můžete naskenovat pomocí jiného QR skeneru a vložit jej do níže uvedeného pole",
+ "not_supported": "Váš prohlížeč nepodporuje skenování QR kódů.",
+ "only_https_supported": "Kameru můžete použít ke skenování QR kódu pouze při použití protokolu HTTPS.",
+ "select_camera": "Vybrat kameru"
+ },
+ "related-filter-menu": {
+ "filter": "Filtrovat",
+ "filter_by_area": "Filtrovat dle oblasti",
+ "filter_by_device": "Filtrovat dle zařízení",
+ "filter_by_entity": "Filtrovat dle entity",
+ "filtered_by_area": "oblasti: {area_name}",
+ "filtered_by_device": "zařízení: {device_name}",
+ "filtered_by_entity": "entita: {entity_name}"
+ },
+ "related-items": {
+ "area": "Oblast",
+ "automation": "Část následujících automatizací",
+ "device": "Zařízení",
+ "entity": "Související entity",
+ "group": "Část následujících skupin",
+ "integration": "Integrace",
+ "no_related_found": "Nebyly nalezeny žádné související položky.",
+ "scene": "Část následujících scén",
+ "script": "Část následujících skriptů"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\none {den}\nfew {dny}\nother {dnů}\n}",
+ "hour": "{count} {count, plural,\none {hodina}\nfew {hodiny}\nother {hodin}\n}",
+ "minute": "{count} {count, plural,\none {minuta}\nfew {minuty}\nother {minut}\n}",
+ "second": "{count} {count, plural,\none {sekunda}\nfew {sekundy}\nother {sekund}\n}",
+ "week": "{count} {count, plural,\none {týden}\nfew {týdny}\nother {týdnů}\n}"
+ },
+ "future_duration": {
+ "day": "Za {count} {count, plural,\none {den}\nfew {dny}\nother {dní}\n}",
+ "hour": "Za {count} {count, plural,\none {hodinu}\nfew {hodiny}\nother {hodin}\n}",
+ "minute": "Za {count} {count, plural,\none {minutu}\nfew {minuty}\nother {minut}\n}",
+ "second": "Za {count} {count, plural,\none {sekundu}\nfew {sekundy}\nother {sekund}\n}",
+ "week": "Za {count} {count, plural,\none {týden}\nfew {týdny}\nother {týdnů}\n}"
+ },
+ "just_now": "Právě teď",
+ "never": "Nikdy",
+ "past_duration": {
+ "day": "Před {count} {count, plural,\none {dnem}\nother {dny}\n}",
+ "hour": "Před {count} {count, plural,\none {hodinou}\nother {hodinami}\n}",
+ "minute": "Před {count} {count, plural,\none {minutou}\nother {minutami}\n}",
+ "second": "Před {count} {count, plural,\none {sekundou}\nother {sekundami}\n}",
+ "week": "Před {count} {count, plural,\none {týdnem}\nother {týdny}\n}"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Dokumentace integrace",
+ "required": "Toto pole je povinné",
+ "service_data": "Data služby",
+ "target": "Cíle",
+ "target_description": "Co by tato služba měla používat jako cílové oblasti, zařízení nebo entity."
+ },
+ "service-picker": {
+ "service": "Služba"
+ },
+ "statistic-picker": {
+ "learn_more": "Další informace o statistikách",
+ "missing_entity": "Proč není moje entita uvedena v seznamu?",
+ "no_match": "Nebyly nalezeny žádné odpovídající statistiky",
+ "no_statistics": "Nemáte žádné statistiky",
+ "statistic": "Statistika"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Načítám statistiky…",
+ "no_statistics_found": "Nebyly nalezeny žádné statistiky.",
+ "statistic_types": {
+ "max": "maximum",
+ "mean": "průměr",
+ "min": "minimum",
+ "sum": "součet"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Vyberte oblast",
+ "add_device_id": "Vyberte zařízení",
+ "add_entity_id": "Vyberte entitu",
+ "expand": "Rozbalit",
+ "expand_area_id": "Rozdělit tuto oblast na samostatná zařízení a entity.",
+ "expand_device_id": "Rozdělit toto zařízení na samostatné entity.",
+ "remove": "Odebrat",
+ "remove_area_id": "Odebrat oblast",
+ "remove_device_id": "Odebrat zařízení",
+ "remove_entity_id": "Odebrat entitu"
+ },
+ "user-picker": {
+ "add_user": "Přidat uživatele",
+ "no_user": "Žádný uživatel",
+ "remove_user": "Odebrat uživatele"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Pokud se mají automaticky přidat nově objevená zařízení integrace {integration}.",
+ "enable_new_entities_label": "Povolit nově přidané entity.",
+ "enable_polling_description": "Má-li Home Assistant automaticky zjišťovat aktualizace entit integrace {integration}.",
+ "enable_polling_label": "Povolit dotazování na aktualizace.",
+ "restart_home_assistant": "Aby se změny projevily, je třeba restartovat Home Assistant.",
+ "title": "Upravit nastavení pro {integration}",
+ "update": "Aktualizovat"
+ },
+ "domain_toggler": {
+ "reset_entities": "Obnovit entity",
+ "title": "Přepnout domény"
+ },
+ "entity_registry": {
+ "control": "Řízení",
+ "customize_link": "přizpůsobení entit",
+ "dismiss": "Zavrhnout",
+ "editor": {
+ "advanced": "Pokročilá nastavení",
+ "area": "Nastavit pouze oblast entity",
+ "area_note": "Ve výchozím nastavení jsou entity zařízení ve stejné oblasti jako zařízení. Pokud změníte oblast této entity, nebude již sledovat oblast zařízení.",
+ "change_device_area": "Změna oblasti zařízení",
+ "confirm_delete": "Opravdu chcete tuto entitu smazat?",
+ "delete": "Odstranit",
+ "device_class": "Zobrazit jako",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Dveře",
+ "garage_door": "Garážová vrata",
+ "opening": "Jiný",
+ "window": "Okno"
+ },
+ "cover": {
+ "door": "Dveře",
+ "garage": "Garážová vrata",
+ "window": "Okno"
+ }
+ },
+ "device_disabled": "Zařízení této entity je zakázáno.",
+ "enabled_cause": "Zakázáno {cause}.",
+ "enabled_delay_confirm": "Povolené entity budou přidány do Home Assistant za {delay} sekund",
+ "enabled_description": "Zakázané entity nebudou přidány do Home Assistant.",
+ "enabled_label": "Povolit entitu",
+ "enabled_restart_confirm": "Restartujte Home Assistant a dokončete povolení entit",
+ "entity_id": "Entity ID",
+ "follow_device_area": "Sledovat oblast zařízení",
+ "icon": "Ikona",
+ "icon_error": "Ikony by měly být ve formátu 'prefix:nazevikony', např. 'mdi:home'",
+ "name": "Jméno",
+ "note": "Poznámka: U všech integrací to ještě nemusí fungovat.",
+ "open_device_settings": "Otevřít nastavení zařízení",
+ "unavailable": "Tato entita není dostupná.",
+ "update": "Aktualizovat"
+ },
+ "faq": "dokumentace",
+ "info_customize": "Některé atributy můžete přepsat v sekci {customize_link}.",
+ "no_unique_id": "Tato entita (\"{entity_id}\") nemá jedinečné ID, proto její nastavení nelze spravovat z uživatelského rozhraní. Další podrobnosti naleznete na stránce {faq_link}.",
+ "related": "Související",
+ "settings": "Nastavení"
+ },
+ "generic": {
+ "cancel": "Zrušit",
+ "close": "Zavřít",
+ "default_confirmation_title": "Opravdu?",
+ "ok": "OK"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Počáteční hodnota",
+ "maximum": "Maximální hodnota",
+ "minimum": "Minimální hodnota",
+ "restore": "Obnovit poslední známou hodnotu při spuštění Home Assistant",
+ "step": "Velikost kroku"
+ },
+ "generic": {
+ "icon": "Ikona",
+ "name": "Název"
+ },
+ "input_datetime": {
+ "date": "Datum",
+ "datetime": "Datum a čas",
+ "mode": "Co chcete zadat",
+ "time": "Čas"
+ },
+ "input_number": {
+ "box": "Vstupní pole",
+ "max": "Maximální hodnota",
+ "min": "Minimální hodnota",
+ "mode": "Režim zobrazení",
+ "slider": "Posuvník",
+ "step": "Velikost kroku posuvníku",
+ "unit_of_measurement": "Měrná jednotka"
+ },
+ "input_select": {
+ "add": "Přidat",
+ "add_option": "Přidat možnost",
+ "no_options": "Zatím nejsou k dispozici žádné možnosti.",
+ "options": "Možnosti"
+ },
+ "input_text": {
+ "max": "Maximální délka",
+ "min": "Minimální délka",
+ "mode": "Režim zobrazení",
+ "password": "Heslo",
+ "pattern": "Vzor regex pro ověření na straně klienta",
+ "text": "Text"
+ },
+ "platform_not_loaded": "Integrace {platform} není načtena. Přidejte ji do své konfigurace buďto přidáním \"default_config:\" nebo ''{platform}:''.",
+ "required_error_msg": "Toto pole je povinné",
+ "timer": {
+ "duration": "Doba trvání"
+ },
+ "yaml_not_editable": "Nastavení této entity nelze upravovat z uživatelského rozhraní. Pouze entity nastavené z uživatelského rozhraní lze spravovat v uživatelském rozhraní."
+ },
+ "image_cropper": {
+ "crop": "Oříznout"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Zavřít",
+ "close_tile_cover": "Zaklopit",
+ "close_tilt_cover": "Zaklopit",
+ "open_cover": "Otevřít",
+ "open_tilt_cover": "Naklopit",
+ "stop_cover": "Zastavit"
+ },
+ "details": "Podrobnosti",
+ "dismiss": "Zavřít dialog",
+ "edit": "Upravit entitu",
+ "history": "Historie",
+ "last_changed": "Naposledy změněno",
+ "last_updated": "Poslední aktualizace",
+ "logbook": "Záznamy",
+ "person": {
+ "create_zone": "Vytvořit zónu z aktuálního umístění"
+ },
+ "remote": {
+ "activity": "Současná aktivita"
+ },
+ "restored": {
+ "confirm_remove_text": "Opravdu chcete tuto entitu odebrat?",
+ "confirm_remove_title": "Odebrat entitu?",
+ "not_provided": "Tato entita je v současné době nedostupná a je pozůstatkem odstraněné, změněné nebo nefunkční integrace nebo zařízení.",
+ "remove_action": "Odebrat entitu",
+ "remove_intro": "Pokud se entita již delší dobu nepoužívá, můžete ji vyčistit jejím odebráním."
+ },
+ "script": {
+ "last_action": "Poslední akce",
+ "last_triggered": "Naposledy spuštěno"
+ },
+ "settings": "Nastavení entity",
+ "show_more": "Zobrazit více",
+ "sun": {
+ "elevation": "Výška nad obzorem",
+ "rising": "Vychází",
+ "setting": "Zapadá"
+ },
+ "updater": {
+ "title": "Pokyny pro aktualizaci"
+ },
+ "vacuum": {
+ "clean_spot": "Vyčistit místo",
+ "commands": "Příkazy vysavače:",
+ "fan_speed": "Rychlost ventilátoru",
+ "locate": "Lokalizovat",
+ "pause": "Pauza",
+ "return_home": "Návrat domů",
+ "start": "Start",
+ "start_pause": "Start / Pauza",
+ "status": "Stav",
+ "stop": "Stop"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Pokus o parsování MQTT zpráv jako JSON",
+ "entities": "Entity",
+ "no_entities": "Žádné entity",
+ "no_triggers": "Žádné spouštěče",
+ "payload_display": "Zobrazení MQTT zprávy",
+ "recent_messages": "{n} naposledy přijaté zprávy",
+ "show_as_yaml": "Zobrazit jako YAML",
+ "title": "Ladicí informace {device}",
+ "triggers": "Spouštěče"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Nastavení"
+ },
+ "loading": {
+ "loading_flow": "Počkejte prosím, než se připraví možnosti pro {integration}.",
+ "loading_step": "Načítání dalšího kroku pro {integraci}"
+ },
+ "success": {
+ "description": "Volby byly úspěšně uloženy."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Oblasti",
+ "automation": "Automatizace",
+ "blueprint": "Šablony",
+ "core": "Obecné",
+ "customize": "Přizpůsobení",
+ "devices": "Zařízení",
+ "energy": "Nastavení Energie",
+ "entities": "Entity",
+ "helpers": "Pomocníci",
+ "info": "Informace",
+ "integrations": "Integrace",
+ "logs": "Logy",
+ "lovelace": "Ovládací panely Lovelace",
+ "person": "Osoby",
+ "scene": "Scény",
+ "script": "Skripty",
+ "server_control": "Ovládání serveru",
+ "tag": "Štítky",
+ "users": "Uživatelé",
+ "zone": "Zóny"
+ },
+ "reload": {
+ "automation": "Automatizace",
+ "command_line": "Entity integrace Command line",
+ "core": "Umístění a přizpůsobení",
+ "filesize": "Entity integrace File size",
+ "filter": "Entity integrace Filter",
+ "generic": "Entity integrace Generic IP camera",
+ "generic_thermostat": "Entity integrace Generic thermostat",
+ "group": "Skupiny, skupiny entit a notifikační služby",
+ "history_stats": "Entity integrace History stats",
+ "homekit": "Integrace HomeKit",
+ "input_boolean": "Pomocníci - přepínače",
+ "input_datetime": "Pomocníci - data/časy",
+ "input_number": "Pomocníci - čísla",
+ "input_select": "Pomocníci - výběry",
+ "input_text": "Pomocníci - texty",
+ "min_max": "Entity integrace Min/Max",
+ "mqtt": "Ručně nastavené entity integrace MQTT",
+ "person": "Osoby",
+ "ping": "Entity integrace Ping",
+ "reload": "Integrace {domain}",
+ "rest": "Entity a notifikační služby integrace Rest",
+ "rpi_gpio": "Entity integrace Raspberry Pi GPIO",
+ "scene": "Scény",
+ "script": "Skripty",
+ "smtp": "Notifikační služby integrace SMTP",
+ "statistics": "Entity integrace Statistics",
+ "telegram": "Notifikační služby integrace Telegram",
+ "template": "Entity integrace Template",
+ "themes": "Motivy",
+ "trend": "Entity integrace Trend",
+ "universal": "Entity integrace Universal media player",
+ "zone": "Zóny"
+ },
+ "server_control": {
+ "perform_action": "{action} server",
+ "restart": "Restartovat",
+ "stop": "Zastavit"
+ },
+ "types": {
+ "navigation": "Navigovat",
+ "reload": "Nově načíst",
+ "server_control": "Server"
+ }
+ },
+ "filter_placeholder": "Filtr entit",
+ "key_c_hint": "Stisknutím „c“ na libovolné stránce otevřete tento vyhledávací panel",
+ "title": "Rychlé vyhledávání"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant nic neslyšel",
+ "error": "Jejda, došlo k chybě",
+ "found": "Našel jsem pro vás následující:",
+ "how_can_i_help": "Jak vám mohu pomoci?",
+ "label": "Zadejte dotaz a stiskněte tlačítko 'Enter'",
+ "label_voice": "Zadejte a stiskněte 'Enter' nebo klikněte na mikrofon pro mluvení"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Přidejte zařízení prostřednictvím tohoto zařízení",
+ "clusters": "Správa clusterů",
+ "device_children": "Zobrazit potomky",
+ "reconfigure": "Přenastavit zařízení",
+ "remove": "Odebrat zařízení",
+ "view_in_visualization": "Zobrazit ve vizualizaci",
+ "zigbee_information": "Podpis zařízení Zigbee"
+ },
+ "confirmations": {
+ "remove": "Opravdu chcete zařízení odebrat?"
+ },
+ "device_children": "Potomci Zigbee zařízení",
+ "device_signature": "Podpis zařízení Zigbee",
+ "last_seen": "Naposledy viděn",
+ "manuf": "od {manufacturer}",
+ "no_area": "Žádná oblast",
+ "power_source": "Zdroj napájení",
+ "quirk": "Zvláštnost",
+ "services": {
+ "reconfigure": "Přenastavení zařízení ZHA (oprava zařízení). Použijte, pokud se zařízením máte problémy. Je-li dotyčné zařízení napájené bateriemi, ujistěte se prosím, že je při používání této služby spuštěné a přijímá příkazy.",
+ "remove": "Odebrat zařízení ze sítě Zigbee.",
+ "updateDeviceName": "Nastavte vlastní název tohoto zařízení v seznamu zařízení.",
+ "zigbee_information": "Zobrazit Zigbee informace zařízení."
+ },
+ "unknown": "Neznámý",
+ "zha_device_card": {
+ "device_name_placeholder": "Změnit název zařízení"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Atribut",
+ "battery_device_warning": "Před zahájením procesu rekonfigurace budete muset probudit zařízení napájená z baterie. Pokyny k probuzení zařízení najdete v příručce k zařízení.",
+ "bind_header": "Vazba",
+ "button_hide": "Skrýt podrobnosti",
+ "button_show": "Podrobnosti",
+ "cluster_header": "Klastr",
+ "configuration_complete": "Změna konfigurace zařízení dokončena.",
+ "configuration_failed": "Rekonfigurace zařízení se nezdařila. Další informace mohou být k dispozici v logách.",
+ "configuring_alt": "Nastavuji",
+ "heading": "Znovunastavení zařízení",
+ "in_progress": "Zařízení se překonfigurová. Může to chvíli trvat.",
+ "introduction": "Překonfigurujte zařízení v síti Zigbee. Tuto funkci použijte, pokud zařízení nefunguje správně.",
+ "min_max_change": "min/max/změna",
+ "reporting_header": "Hlášení",
+ "run_in_background": "Toto dialogové okno můžete zavřít a změna konfigurace bude pokračovat na pozadí.",
+ "start_reconfiguration": "Spustit rekonfiguraci"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\none {den}\nfew {dny}\nother {dnů}\n}",
+ "hour": "{count} {count, plural,\n one {hodina}\n few {hodiny}\n other {hodin}\n}",
+ "minute": "{count} {count, plural,\none {minuta}\nfew {minuty}\nother {minut}\n}",
+ "second": "{count} {count, plural,\none {sekunda}\nfew {sekundy}\nother {sekund}\n}",
+ "week": "{count} {count, plural,\none {týden}\nfew {týdny}\nother {týdnů}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Své nastavení můžete stále upravovat v YAML.",
+ "editor_not_available": "Pro typ \"{type}\" není k dispozici žádný vizuální editor.",
+ "editor_not_supported": "Vizuální editor není pro toto nastavení podporován",
+ "error_detected": "Zjištěny chyby nastavení",
+ "key_missing": "Chybí požadovaný klíč \"{key}\".",
+ "key_not_expected": "Klíč \"{key}\" není vizuálním editorem očekáván nebo podporován.",
+ "key_wrong_type": "Zadávanou hodnotu \"{key}\" nepodporuje vizuální editor. Podporuje ({type_correct}), ale obdržel ({type_wrong}).",
+ "no_state_array_support": "Vizuální editor nepodporuje více hodnot stavu",
+ "no_template_editor_support": "Šablony nejsou podporovány v uživatelském rozhraní",
+ "no_type_provided": "Není k dispozici žádný typ."
+ },
+ "supervisor": {
+ "ask": "Požádat o pomoc",
+ "observer": "Zkontrolovat Observer",
+ "reboot": "Zkuste restartovat hostitele",
+ "system_health": "Kontrola stavu systému",
+ "title": "Nelze načíst panel Supervisora!",
+ "wait": "Pokud jste právě začali, ujistěte se, že jste poskytli dostatek času na start Supervisora."
+ }
+ },
+ "login-form": {
+ "log_in": "Přihlásit se",
+ "password": "Heslo",
+ "remember": "Zapamatovat"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Klepnutím na tlačítko nastavíte {entity}",
+ "close": "Zavřít",
+ "dismiss_all": "Zavřít vše",
+ "empty": "Žádné oznámení",
+ "title": "Oznámení"
+ },
+ "notification_toast": {
+ "connection_lost": "Připojení bylo ztraceno. Připojuji se znovu…",
+ "dismiss": "Zavřít",
+ "integration_starting": "Integrace {integration} se spouští - dokud nebude spuštění dokončeno, nemusí být vše k dispozici.",
+ "service_call_failed": "Službu {service} se nepodařilo zavolat.",
+ "started": "Home Assistant je spuštěn!",
+ "starting": "Home Assistant se spouští, ne všechno bude k dispozici, dokud nebude spuštění dokončeno.",
+ "triggered": "Spuštěno {name}",
+ "wrapping_up_startup": "Home Assistant se spouští, vše ještě nemusí být dostupné"
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Chybí vám možnosti nastavení? Zapněte rozšířený režim",
+ "link_profile_page": "stránka vašeho profilu"
+ },
+ "areas": {
+ "add_picture": "Přidat obrázek",
+ "assigned_to_area": "Přiřazeno do této oblasti",
+ "caption": "Oblasti",
+ "data_table": {
+ "area": "Oblast",
+ "devices": "Zařízení",
+ "entities": "Entity"
+ },
+ "delete": {
+ "confirmation_text": "Všechna zařízení v této oblasti budou nastavena jako nepřiřazena.",
+ "confirmation_title": "Opravdu chcete tuto oblast smazat?"
+ },
+ "description": "Seskupte zařízení a entity do oblastí",
+ "edit_settings": "Nastavení oblasti",
+ "editor": {
+ "area_id": "ID oblasti",
+ "create": "VYTVOŘIT",
+ "default_name": "Nová oblast",
+ "delete": "Odstranit",
+ "linked_entities_caption": "Entity",
+ "name": "Název",
+ "name_required": "Název je povinný",
+ "no_linked_entities": "S touto oblastí nejsou spojeny žádné entity.",
+ "unknown_error": "Neznámá chyba",
+ "update": "Aktualizovat"
+ },
+ "picker": {
+ "create_area": "Vytvořit oblast",
+ "header": "Oblasti",
+ "integrations_page": "Stránka integrací",
+ "introduction": "Oblasti se používají k uspořádání zařízení podle místa kde jsou. Tato informace bude použita k organizaci rozhraní, k nastavení oprávnění a v integraci s ostatnímy systémy.",
+ "introduction2": "Pro přídání zařízení do oblasti přejděte na stránku integrací pomocí odkazu níže, tam klikněte na nastavenou integraci, abyste se dostali ke kartám zařízení.",
+ "no_areas": "Vypadá to, že ještě nemáte žádné oblasti!"
+ },
+ "targeting_area": "Zacílení na tuto oblast"
+ },
+ "automation": {
+ "caption": "Automatizace",
+ "description": "Vytvořte si pro svůj domov vlastní pravidla chování",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Použít šablonu"
+ },
+ "header": "Vytvoření automatizace",
+ "how": "Jak chcete vytvořit svou novou automatizaci?",
+ "start_empty": "Začít s prázdnou automatizací",
+ "start_empty_description": "Vytvořit novou automatizaci od nuly",
+ "thingtalk": {
+ "create": "Vytvořit",
+ "header": "Popište automatizaci, kterou chcete vytvořit",
+ "input_label": "Co by měla tato automatizace dělat?",
+ "intro": "A pokusíme se ji pro vás vytvořit. Například: Po odchodu zhasnout světla."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Přidat akci",
+ "delete": "Smazat",
+ "delete_confirm": "Opravdu smazat?",
+ "duplicate": "Duplikovat",
+ "header": "Akce",
+ "introduction": "Akce jsou to, co Home Assistant provede při spuštění automatizace.",
+ "learn_more": "Další informace o akcích",
+ "name": "Akce",
+ "type": {
+ "choose": {
+ "add_option": "Přidat volbu",
+ "conditions": "Podmínky",
+ "default": "Výchozí akce",
+ "label": "Volby",
+ "option": "Volba {number}",
+ "remove_option": "Odebrat volbu",
+ "sequence": "Akce"
+ },
+ "condition": {
+ "label": "Stav"
+ },
+ "delay": {
+ "delay": "Doba trvání",
+ "label": "Pozdržení"
+ },
+ "device_id": {
+ "action": "Akce",
+ "extra_fields": {
+ "brightness_pct": "Jas",
+ "code": "Kód",
+ "flash": "Blikat",
+ "humidity": "Vlhkost vzduchu",
+ "message": "Zpráva",
+ "mode": "Režim",
+ "position": "Pozice",
+ "title": "Název",
+ "value": "Hodnota"
+ },
+ "label": "Zařízení"
+ },
+ "event": {
+ "event": "Událost",
+ "label": "Spustit událost",
+ "service_data": "Data služby"
+ },
+ "repeat": {
+ "label": "Opakovaní",
+ "sequence": "Akce",
+ "type": {
+ "count": {
+ "label": "Počet"
+ },
+ "until": {
+ "conditions": "Podmínky \"Dokud nenastane\"",
+ "label": "Dokud nenastane"
+ },
+ "while": {
+ "conditions": "Podmínky \"Pokud platí\"",
+ "label": "Pokud platí"
+ }
+ },
+ "type_select": "Typ opakování"
+ },
+ "scene": {
+ "label": "Aktivovat scénu"
+ },
+ "service": {
+ "label": "Zavolat službu"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Pokračovat po časovém limitu",
+ "label": "Počkat na spouštěč",
+ "timeout": "Časový limit (volitelný)"
+ },
+ "wait_template": {
+ "continue_timeout": "Pokračovat po časovém limitu",
+ "label": "Počkat na šablonu",
+ "timeout": "Časový limit (volitelné)",
+ "wait_template": "Šablona pro čekání"
+ }
+ },
+ "type_select": "Typ akce",
+ "unsupported_action": "Akce {action} není podporována v uživatelském rozhraní"
+ },
+ "alias": "Název",
+ "blueprint": {
+ "blueprint_to_use": "Šablona k použití",
+ "header": "Šablona",
+ "no_blueprints": "Nemáme žádné šablony",
+ "no_inputs": "Šablona nemá žádné vstupy."
+ },
+ "conditions": {
+ "add": "Přidat podmínku",
+ "delete": "Smazat",
+ "delete_confirm": "Opravdu smazat?",
+ "duplicate": "Duplikovat",
+ "header": "Podmínky",
+ "introduction": "Podmínky jsou volitelné a pokud nejsou všechny splněny, zabrání dalšímu provádění automatizace.",
+ "learn_more": "Další informace o podmínkách",
+ "name": "Podmínka",
+ "type": {
+ "and": {
+ "label": "A"
+ },
+ "device": {
+ "condition": "Podmínka",
+ "extra_fields": {
+ "above": "Větší než",
+ "below": "Menší než",
+ "for": "Doba trvání",
+ "hvac_mode": "Režim HVAC",
+ "preset_mode": "Předvolba"
+ },
+ "label": "Zařízení"
+ },
+ "not": {
+ "label": "Ne"
+ },
+ "numeric_state": {
+ "above": "Větší než",
+ "below": "Menší než",
+ "label": "Číselný stav",
+ "value_template": "Šablona hodnoty (volitelné)"
+ },
+ "or": {
+ "label": "Nebo"
+ },
+ "state": {
+ "label": "Stav",
+ "state": "Stav"
+ },
+ "sun": {
+ "after": "Po:",
+ "after_offset": "Prodleva po (volitelné)",
+ "before": "Před:",
+ "before_offset": "Prodleva před (volitelné)",
+ "label": "Slunce",
+ "sunrise": "Východ slunce",
+ "sunset": "Západ slunce"
+ },
+ "template": {
+ "label": "Šablona",
+ "value_template": "Šablona hodnoty"
+ },
+ "time": {
+ "after": "Po",
+ "before": "Před",
+ "label": "Čas",
+ "type_input": "Hodnota pomocníka \"Datum a/nebo čas\"",
+ "type_value": "Pevný čas",
+ "weekdays": {
+ "fri": "Pátek",
+ "mon": "Pondělí",
+ "sat": "Sobota",
+ "sun": "Neděle",
+ "thu": "Čtvrtek",
+ "tue": "Úterý",
+ "wed": "Středa"
+ }
+ },
+ "trigger": {
+ "id": "ID spouštěče",
+ "label": "Spouštěč",
+ "no_triggers": "Nejsou k dispozici žádné spouštěče"
+ },
+ "zone": {
+ "entity": "Entita s umístěním",
+ "label": "Zóna",
+ "zone": "Zóna"
+ }
+ },
+ "type_select": "Typ podmínky",
+ "unsupported_condition": "Podmínka {condition} není podporována v uživatelském rozhraní"
+ },
+ "copy_to_clipboard": "Zkopírovat do schránky",
+ "default_name": "Nová automatizace",
+ "description": {
+ "label": "Popis",
+ "placeholder": "Volitelný popis"
+ },
+ "edit_ui": "Upravit pomocí uživatelského rozhraní",
+ "edit_yaml": "Upravit jako YAML",
+ "enable_disable": "Povolit / zakázat automatizaci",
+ "introduction": "Pomocí automatizací oživte svůj domov.",
+ "load_error_not_editable": "Lze upravovat pouze automatizace v automations.yaml.",
+ "load_error_unknown": "Chyba při načítání automatizace ({err_no}).",
+ "max": {
+ "parallel": "Maximální počet paralelních spuštění",
+ "queued": "Délka fronty"
+ },
+ "modes": {
+ "description": "Režim určuje, co se stane, když je automatizace spuštěna a zároveň stále ještě běží akce na základě předchozího spuštění. Další informace naleznete na {documentation_link}.",
+ "documentation": "Dokumentace automatizací",
+ "label": "Režim",
+ "parallel": "Paralelně",
+ "queued": "Fronta",
+ "restart": "Restart",
+ "single": "Jediný (výchozí)"
+ },
+ "move_down": "Posunout dolů",
+ "move_up": "Posunout nahoru",
+ "save": "Uložit",
+ "show_trace": "Zobrazit trasu",
+ "triggers": {
+ "add": "Přidat spouštěč",
+ "delete": "Smazat",
+ "delete_confirm": "Opravdu smazat?",
+ "duplicate": "Duplikovat",
+ "edit_id": "Upravit ID spouštěče",
+ "header": "Spouštěče",
+ "id": "ID spouštěče",
+ "introduction": "Spouštěče spouštějí automatizaci. Pro jednu automatizaci je možné zadat více spouštěčů. Po spuštění ověří Home Assistant případné podmínky a zavolá akci.",
+ "learn_more": "Další informace o spouštěčích",
+ "name": "Spouštěč",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Větší než",
+ "below": "Menší než",
+ "for": "Doba trvání (nepovinné)",
+ "zone": "Zóna"
+ },
+ "label": "Zařízení",
+ "trigger": "Spouštěč"
+ },
+ "event": {
+ "context_user_pick": "Vyberte uživatele",
+ "context_user_picked": "Uživatel, který spustil událost",
+ "context_users": "Omezit na události spuštěné",
+ "event_data": "Data události",
+ "event_type": "Typ události",
+ "label": "Událost"
+ },
+ "geo_location": {
+ "enter": "Vstup",
+ "event": "Událost:",
+ "label": "Geolokace",
+ "leave": "Opuštění",
+ "source": "Zdroj",
+ "zone": "Zóna"
+ },
+ "homeassistant": {
+ "event": "Událost:",
+ "label": "Home Assistant",
+ "shutdown": "Ukončení",
+ "start": "Spuštění"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Datová část (volitelné)",
+ "topic": "Topic"
+ },
+ "numeric_state": {
+ "above": "Větší než",
+ "below": "Menší než",
+ "label": "Číselný stav",
+ "value_template": "Šablona hodnoty (volitelné)"
+ },
+ "state": {
+ "attribute": "Atribut (volitelný)",
+ "for": "Po dobu (volitelné)",
+ "from": "Z (volitelné)",
+ "label": "Stav",
+ "to": "Do (volitelné)"
+ },
+ "sun": {
+ "event": "Událost:",
+ "label": "Slunce",
+ "offset": "Posun",
+ "sunrise": "Východ slunce",
+ "sunset": "Západ slunce"
+ },
+ "tag": {
+ "label": "Štítek"
+ },
+ "template": {
+ "label": "Šablona",
+ "value_template": "Šablona hodnoty"
+ },
+ "time": {
+ "at": "V",
+ "label": "Čas",
+ "type_input": "Hodnota pomocníka \"Datum a/nebo čas\"",
+ "type_value": "Pevný čas"
+ },
+ "time_pattern": {
+ "hours": "Hodiny",
+ "label": "Časový vzorec",
+ "minutes": "Minuty",
+ "seconds": "Sekundy"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook ID"
+ },
+ "zone": {
+ "enter": "Vstup",
+ "entity": "Entita s umístěním",
+ "event": "Událost:",
+ "label": "Zóna",
+ "leave": "Opuštění",
+ "zone": "Zóna"
+ }
+ },
+ "type_select": "Typ spouštěče",
+ "unsupported_platform": "Platforma {platform} není podporována v uživatelském rozhraní"
+ },
+ "unsaved_confirm": "Máte neuložené změny. Opravdu chcete odejít?"
+ },
+ "picker": {
+ "add_automation": "Přidat automatizaci",
+ "delete_automation": "Odstranit automatizaci",
+ "delete_confirm": "Opravdu chcete odstranit tuto automatizaci?",
+ "dev_automation": "Debugovat automatizaci",
+ "dev_only_editable": "Pouze automatizace s unikátní ID jsou debugovatelné.",
+ "duplicate": "Duplikát",
+ "duplicate_automation": "Duplikovat automatizaci",
+ "edit_automation": "Upravit automatizaci",
+ "header": "Editor automatizací",
+ "headers": {
+ "name": "Název"
+ },
+ "introduction": "Editor automatizací umožňuje vytvářet a upravovat automatizace. Přečtěte si prosím pokyny na odkazu níže, abyste se ujistili, že jste Home Assistant nastavili správně.",
+ "learn_more": "Další informace o automatizacích",
+ "no_automations": "Nenašli jsme žádné automatizace",
+ "only_editable": "Upravitelné mohou být pouze automatizace definované v automations.yaml.",
+ "pick_automation": "Vyberte automatizaci, kterou chcete upravit",
+ "show_info_automation": "Zobrazit informace o automatizaci"
+ },
+ "thingtalk": {
+ "create": "Vytvořit automatizaci",
+ "link_devices": {
+ "ambiguous_entities": "Jedno nebo více zařízení má více než jednu odpovídající entitu, prosím vyberte tu, kterou chcete použít.",
+ "header": "Skvěle! Nyní musíme propojit některá zařízení",
+ "unknown_placeholder": "Neznámý zástupný symbol"
+ },
+ "task_selection": {
+ "error_empty": "Zadejte příkaz nebo klepněte na Přeskočit.",
+ "error_unsupported": "Nedokázali jsme vytvořit automatizaci (zatím?).",
+ "for_example": "Například:",
+ "header": "Vytvoření nové automatizace",
+ "introduction": "Zadejte níže, co by tato automatizace měla dělat, a my se ji pokusíme převést na automatizaci Home Assistant.",
+ "language_note": "Poznámka: Prozatím je podporována pouze angličtina."
+ }
+ },
+ "trace": {
+ "download_trace": "Stáhnout trasu",
+ "edit_automation": "Upravit automatizaci",
+ "newer_trace": "Novější trasa",
+ "older_trace": "Starší trasa",
+ "refresh": "Obnovit"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "komunitních fór",
+ "error_no_url": "Zadejte adresu URL adresu šablony",
+ "file_name": "Cesta k šabloně",
+ "header": "Import šablony",
+ "import_btn": "Náhled šablony",
+ "import_header": "Šablona \"{name}\"",
+ "import_introduction_link": "Můžete importovat šablony od ostatních uživatelů z GitHubu a {community_link}. Níže zadejte URL adresu šablony.",
+ "importing": "Načítám šablonu…",
+ "raw_blueprint": "Obsah šablony",
+ "save_btn": "Importovat šablonu",
+ "saving": "Importuji šablonu…",
+ "unsupported_blueprint": "Tato šablona není podporována.",
+ "url": "URL adresa šablony"
+ },
+ "caption": "Šablony",
+ "description": "Správa šablon",
+ "overview": {
+ "add_blueprint": "Import šablony",
+ "confirm_delete_header": "Odstranit tuto šablonu?",
+ "confirm_delete_text": "Opravdu chcete smazat tuto šablonu?",
+ "create_automation": "Vytvořit automatizaci",
+ "create_script": "Vytvořit skript",
+ "delete_blueprint": "Smazat šablonu",
+ "discover_more": "Objevte další šablony",
+ "header": "Editor šablon",
+ "headers": {
+ "domain": "Doména",
+ "file_name": "Název souboru",
+ "name": "Jméno",
+ "type": "Typ"
+ },
+ "introduction": "Nastavení šablon vám umožňuje importovat a spravovat vaše šablony.",
+ "learn_more": "Další informace o používání šablon",
+ "share_blueprint": "Sdílet šablonu",
+ "share_blueprint_no_url": "Nelze sdílet šablonu: žádná zdrojová URL adresa",
+ "types": {
+ "automation": "Automatizace",
+ "script": "Skript"
+ },
+ "use_blueprint": "Vytvořit automatizaci"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Dokumentace pro nastavení",
+ "disable": "zakázat",
+ "enable": "povolit",
+ "enable_ha_skill": "Povolte Home Assistant skill pro Alexu",
+ "enable_state_reporting": "Povolit hlášení stavu",
+ "info": "Díky integraci Alexa pro Home Assistant Cloud budete moci ovládat všechna zařízení v Home Assistant pomocí jakéhokoli zařízení podporujícího Alexa.",
+ "info_state_reporting": "Pokud povolíte hlášení stavu, Home Assistant bude posílat veškeré změny stavů všech exponovaných entit do Amazonu. Toto vám umožní sledovat aktuální stavy entity v aplikaci Alexa a použít tyto stavy k vytvoření rutin.",
+ "manage_entities": "Správa entit",
+ "state_reporting_error": "Nelze {enable_disable} hlášení stavu.",
+ "sync_entities": "Synchronizovat entity do Amazonu",
+ "sync_entities_error": "Chyba při synchronizaci entit:",
+ "title": "Alexa"
+ },
+ "connected": "Připojeno",
+ "connecting": "Připojování…",
+ "connection_status": "Stav cloudového připojení",
+ "fetching_subscription": "Načítání předplatného…",
+ "google": {
+ "config_documentation": "Dokumentace pro nastavení",
+ "devices_pin": "PIN pro zabezpečovací zařízení",
+ "enable_ha_skill": "Povolte Home Assistant Cloud pro Google Assistant",
+ "enable_state_reporting": "Povolit hlášení stavu",
+ "enter_pin_error": "Nelze uložit PIN:",
+ "enter_pin_hint": "Chcete-li používat zabezpečovací zařízení, zadejte kód PIN",
+ "enter_pin_info": "Chcete-li komunikovat se zabezpečovacími zařízeními, zadejte kód PIN. Zabezpečovací zařízení jsou dveře, garážová vrata a zámky. Při interakci s takovými zařízeními budete požádáni o zadání tohoto PIN kódu pomocí Google Assistant.",
+ "info": "Díky integraci Google Assistant pro Home Assistant Cloud budete moci ovládat všechna zařízení v Home Assistant pomocí jakéhokoli zařízení podporujícího Google Assistant.",
+ "info_state_reporting": "Pokud povolíte hlášení stavu, Home Assistant bude posílat veškeré změny stavů všech exponovaných entit do Google. Toto vám umožní sledovat vždy aktuální stavy entit v aplikaci Google.",
+ "manage_entities": "Správa entit",
+ "not_configured_text": "Než budete moci používat Google Assistant, musíte v aplikaci Google Home aktivovat dovednost Home Assistant Cloud pro Google Assistant.",
+ "not_configured_title": "Google Asistent není aktivován",
+ "security_devices": "Zabezpečovací zařízení",
+ "sync_entities": "Synchronizovat entity s Google",
+ "sync_entities_404_message": "Nepodařilo se synchronizovat vaše entity s Googlem, řekněte Googlu 'Hey Google, sync my devices', aby vaše entity synchronizovala.",
+ "title": "Google Assistant"
+ },
+ "integrations": "Integrace",
+ "integrations_introduction": "Integrace pro Home Assistant Cloud vám umožní připojit se ke cloudovým službám, aniž byste museli veřejně zpřístupnit vaší instanci Home Assistant na internetu.",
+ "integrations_introduction2": "Na webových stránkách najdete ",
+ "integrations_link_all_features": " všechny dostupné funkce",
+ "manage_account": "Správa účtu",
+ "nabu_casa_account": "Účet Nabu Casa",
+ "not_connected": "Není připojeno",
+ "remote": {
+ "access_is_being_prepared": "Připravuje se vzdálený přístup. Až bude připraven, dáme vám vědět.",
+ "certificate_info": "Informace o certifikátu",
+ "connected": "Připojeno",
+ "info": "Home Assistant Cloud poskytuje zabezpečené vzdálené připojení k vaší instanci zatímco jste mimo domov.",
+ "instance_is_available": "Vaše instance je k dispozici na ",
+ "instance_will_be_available": "Vaše instance bude k dispozici na",
+ "link_learn_how_it_works": "Zjistěte, jak to funguje",
+ "not_connected": "Nepřipojeno",
+ "reconnecting": "Nepřipojeno. Pokouším se znovu připojit.",
+ "remote_enabled": {
+ "caption": "Automaticky se připojit",
+ "description": "Povolením této možnosti zajistíte, aby byla vaše instance Home Assistant vždy vzdáleně přístupná."
+ },
+ "title": "Vzdálené ovládání"
+ },
+ "sign_out": "Odhlásit se",
+ "thank_you_note": "Děkujeme, že jste se stali součástí Home Assistant Cloud. Díky lidem, jako jste vy, jsme schopni udělat skvělý zážitek z domácí automatizace pro každého. Díky!",
+ "tts": {
+ "default_language": "Výchozí jazyk, který se má použít",
+ "dialog": {
+ "create_automation": "Vytvořit automatizaci",
+ "example_message": "Dobrý den, {name} , můžete přehrávat libovolný text na libovolném podporovaném přehrávači médií!",
+ "header": "Zkuste převod textu na řeč",
+ "play": "Přehrát",
+ "target": "Cíl",
+ "target_browser": "Prohlížeč"
+ },
+ "female": "Žena",
+ "info": "Přineste osobnost do svého domova tím, že s vámi mluví pomocí našich služeb pro převod textu na řeč. Tuto možnost můžete použít v automatizaci a skriptech pomocí služby {service}.",
+ "male": "Muž",
+ "title": "Převod textu do řeč",
+ "try": "Zkusit"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Nepodařilo se deaktivovat webhook:",
+ "info": "Všechno, co je nastaveno tak, aby bylo spouštěno webhookem, může mít veřejně přístupnou adresu URL, která vám umožní posílat data zpět Home Assistant odkudkoli, aniž by byla vaše instance vystavena internetu.",
+ "link_learn_more": "Další informace o vytváření automatizací využívajících webhook.",
+ "loading": "Načítání…",
+ "manage": "Spravovat",
+ "no_hooks_yet": "Vypadá to, že ještě nemáte žádné webhooky. Začněte nastavením ",
+ "no_hooks_yet2": "nebo vytvořením",
+ "no_hooks_yet_link_automation": "automatizace webhooků",
+ "no_hooks_yet_link_integration": "integrace založené na webhooku",
+ "title": "Webhooky"
+ }
+ },
+ "alexa": {
+ "banner": "Nastavení, které entity jsou vystaveny, pomocí uživatelského rozhraní je zakázáno, protože jste nastavili filtry entit v souboru configuration.yaml.",
+ "dont_expose_entity": "Nevystavovat entitu",
+ "expose": "Exponovat do Alexa",
+ "expose_entity": "Vystavit entitu",
+ "exposed": "{selected} vystaveno",
+ "exposed_entities": "Exponované entity",
+ "follow_domain": "Sledovat doménu",
+ "manage_domains": "Správa domén",
+ "not_exposed": "{selected} není vystaveno",
+ "not_exposed_entities": "Nevystavené entity",
+ "title": "Alexa"
+ },
+ "description_features": "Ovládejte domov, i když nejste doma, a propojte s Alexou a Google Assistantem",
+ "description_login": "Přihlášen jako {email}",
+ "description_not_login": "Nepřihlášen",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Datum vypršení platnosti certifikátu:",
+ "certificate_information": "Informace o certifikátu",
+ "close": "Zavřít",
+ "fingerprint": "Otisk certifikátu:",
+ "will_be_auto_renewed": "bude automaticky obnoveno"
+ },
+ "dialog_cloudhook": {
+ "available_at": "Webhook je k dispozici na následující URL adrese:",
+ "close": "Zavřít",
+ "confirm_disable": "Opravdu chcete deaktivovat tento webhook?",
+ "copied_to_clipboard": "Zkopírováno do schránky",
+ "info_disable_webhook": "Pokud již nechcete tento webhook používat, můžete",
+ "link_disable_webhook": "zakázat",
+ "managed_by_integration": "Tento webhook je řízen integrací a nelze jej zakázat.",
+ "view_documentation": "Zobrazit dokumentaci",
+ "webhook_for": "Webhook pro {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "Pokyny pro obnovení hesla naleznete v e-mailu.",
+ "email": "E-mail",
+ "email_error_msg": "Neplatný e-mail",
+ "instructions": "Zadejte vaši e-mailovou adresu a my vám pošleme odkaz pro obnovení hesla.",
+ "send_reset_email": "Odeslat obnovovací e-mail",
+ "subtitle": "Zapomněli jste heslo",
+ "title": "Zapomenuté heslo"
+ },
+ "google": {
+ "banner": "Nastavení, které entity jsou vystaveny, pomocí uživatelského rozhraní je zakázáno, protože jste nastavili filtry entit v souboru configuration.yaml.",
+ "disable_2FA": "Zakázat dvoufaktorové ověřování",
+ "dont_expose_entity": "Nevystavovat entitu",
+ "expose": "Exponovat do Google Assistant",
+ "expose_entity": "Vystavit entitu",
+ "exposed": "{selected} vystaveno",
+ "exposed_entities": "Exponované entity",
+ "follow_domain": "Sledovat doménu",
+ "manage_domains": "Správa domén",
+ "not_exposed": "{selected} není vystaveno",
+ "not_exposed_entities": "Nevystavené entity",
+ "sync_to_google": "Synchronizuji změny na Google.",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Než se přihlásíte, musíte svůj e-mail potvrdit.",
+ "alert_password_change_required": "Před přihlášením musíte změnit své heslo.",
+ "dismiss": "Zavřít",
+ "email": "E-mail",
+ "email_error_msg": "Neplatný e-mail",
+ "forgot_password": "Zapomněl jste heslo?",
+ "introduction": "Home Assistant Cloud poskytuje zabezpečené vzdálené připojení k vaší instanci zatímco jste mimo domov. Umožňuje také připojení ke cloudovým službám: Amazon Alexa a Google Assistant.",
+ "introduction2": "Tuto službu provozuje náš partner ",
+ "introduction2a": ", společnost založená zakladateli Home Assistant.",
+ "introduction3": "Home Assistant Cloud je předplacená služba s měsíční zkušební dobou zdarma. Nejsou nutné žádné platební údaje.",
+ "learn_more_link": "Další informace Home Assistant Cloud",
+ "password": "Heslo",
+ "password_error_msg": "Hesla mají alespoň 8 znaků",
+ "sign_in": "Přihlásit se",
+ "start_trial": "Spusťte bezplatnou měsíční zkušební dobu",
+ "title": "Přihlášení ke cloudu",
+ "trial_info": "Nejsou nutné žádné platební údaje"
+ },
+ "register": {
+ "account_created": "Účet vytvořen! Pokyny k aktivaci účtu naleznete v e-mailu.",
+ "create_account": "Vytvořit účet",
+ "email_address": "E-mailová adresa",
+ "email_error_msg": "Neplatný e-mail",
+ "feature_amazon_alexa": "Integrace s Amazon Alexa",
+ "feature_google_home": "Integrace s Google Assistant",
+ "feature_remote_control": "Ovládejte Home Assistant mimo domov",
+ "feature_webhook_apps": "Snadná integrace s aplikacemi využívajícími webhook, jako je OwnTracks",
+ "headline": "Spustit zkušební verzi",
+ "information": "Vytvořte si účet a využijte bezplatnou měsíční zkušební dobu s Home Assistant Cloud. Nejsou nutné žádné platební údaje.",
+ "information2": "Zkušební verze vám poskytne přístup ke všem výhodám Home Assistant Cloud, včetně:",
+ "information3": "Tuto službu provozuje náš partner ",
+ "information3a": ", společnost založená zakladateli Home Assistant.",
+ "information4": "Registrací účtu souhlasíte s následujícími podmínkami.",
+ "link_privacy_policy": "Zásady ochrany osobních údajů",
+ "link_terms_conditions": "Pravidla a podmínky",
+ "password": "Heslo",
+ "password_error_msg": "Hesla mají alespoň 8 znaků",
+ "resend_confirm_email": "Znovu odeslat potvrzovací e-mail",
+ "start_trial": "Spustit zkušební verzi",
+ "title": "Vytvořit účet"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Máte neuložené změny. Opravdu chcete odejít?"
+ },
+ "learn_more": "Další informace"
+ },
+ "core": {
+ "caption": "Obecné",
+ "description": "Poloha, síť a analytika",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Měna",
+ "edit_requires_storage": "Editor je zakázán, protože nastavení je uloženo v configuration.yaml.",
+ "elevation": "Nadmořská výška",
+ "elevation_meters": "metrů",
+ "external_url": "Externí adresa URL",
+ "find_currency_value": "Najděte svou hodnotu",
+ "imperial_example": "Stupně Fahrenheita, libry",
+ "internal_url": "Interní adresa URL",
+ "latitude": "Zeměpisná šířka",
+ "location_name": "Název instalace Home Assistant",
+ "longitude": "Zeměpisná délka",
+ "metric_example": "Stupně Celsia, kilogramy",
+ "save_button": "Uložit",
+ "time_zone": "Časové pásmo",
+ "unit_system": "Systém jednotek",
+ "unit_system_imperial": "Imperiální",
+ "unit_system_metric": "Metrický"
+ },
+ "header": "Obecná nastavení",
+ "introduction": "Spravujte svou polohu, síť a analytiku."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Následující vlastnosti jsou již nastaveny v customize.yaml",
+ "attributes_not_set": "Následující vlastnosti nebyly nastaveny. Nastavte je, jestli chcete.",
+ "attributes_outside": "Následující vlastnosti jsou přizpůsobeny mimo customize.yaml",
+ "attributes_override": "Pokud chcete, můžete je přepsat.",
+ "attributes_set": "Následující vlastnosti entit jsou nastaveny programově.",
+ "caption": "Přizpůsobení",
+ "description": "Přizpůsobte své entity",
+ "different_include": "Možné přidat přes doménu",
+ "pick_attribute": "Vyberte vlastnost, kterou chcete přepsat",
+ "picker": {
+ "documentation": "Dokumentace přizpůsobení",
+ "header": "Přizpůsobení",
+ "introduction": "Upravit atributy entity. Přídání/úprava bude mít okamžitý efekt. Odebraní se projeví až po aktualizaci entity."
+ },
+ "warning": {
+ "include_link": "zahrnout customize.yaml",
+ "include_sentence": "Zdá se, že configuration.yaml správně nefunguje",
+ "not_applied": "Změny zde provedené jsou zapsány, ale nebudou použity při novém načtení konfigurace, pokud není \"customize\" konfigurace nastavena v globální konfiguraci."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Správa automatizací, scén, skriptů a pomocníků",
+ "title": "Automatizace a scény"
+ },
+ "blueprints": {
+ "description": "Předpřipravené automatizace a skripty od komunity",
+ "title": "Šablony"
+ },
+ "companion": {
+ "description": "Poloha a oznámení",
+ "title": "Doprovodná aplikace"
+ },
+ "dashboards": {
+ "description": "Vytváření vlastních sad karet pro ovládání svého domova",
+ "title": "Ovládací panely"
+ },
+ "devices": {
+ "description": "Integrace, zařízení, entity a oblasti",
+ "title": "Zařízení a služby"
+ },
+ "energy": {
+ "description": "Sledování výroby a spotřeby energie",
+ "title": "Energie"
+ },
+ "people": {
+ "description": "Správa osob a zón, které Home Assistant sleduje",
+ "title": "Lidé a zóny"
+ },
+ "settings": {
+ "description": "Základní nastavení, ovládání systému, logy a informace",
+ "title": "Nastavení"
+ },
+ "supervisor": {
+ "description": "Vytváření záloh, kontrola logů nebo restartování systému",
+ "title": "Doplňky, zálohy a Supervisor"
+ },
+ "tags": {
+ "description": "Spouštění automatizací při naskenování NFC tagu, QR kódu atd.",
+ "title": "Štítky"
+ }
+ },
+ "devices": {
+ "add_prompt": "Pomocí tohoto zařízení dosud nebyly přidány žádné {name}. Můžete je přidat kliknutím na tlačítko + výše.",
+ "automation": {
+ "actions": {
+ "caption": "Když je něco spuštěno…",
+ "no_actions": "Žádné akce",
+ "unknown_action": "Neznámá akce"
+ },
+ "automations": "Automatizace",
+ "conditions": {
+ "caption": "Udělej něco, jen když…",
+ "no_conditions": "Žádné podmínky",
+ "unknown_condition": "Neznámá podmínka"
+ },
+ "create": "Vytvořit automatizaci se zařízením",
+ "create_disable": "Nelze vytvořit automatizaci se zakázaným zařízením",
+ "no_automations": "Žádné automatizace",
+ "no_device_automations": "Pro toto zařízení nejsou k dispozici žádné automatizace.",
+ "triggers": {
+ "caption": "Udělej něco, když…",
+ "no_triggers": "Žádné spouštěče",
+ "unknown_trigger": "Neznámý spouštěč"
+ },
+ "unknown_automation": "Neznámá automatizace"
+ },
+ "cant_edit": "Můžete upravovat pouze položky, které jsou vytvořeny v uživatelském rozhraní.",
+ "caption": "Zařízení",
+ "confirm_delete": "Opravdu chcete toto zařízení odstranit?",
+ "confirm_disable_config_entry": "Pro položku konfigurace {entry_name} nejsou k dispozici žádná další zařízení, chcete položku konfigurace místo toho zakázat?",
+ "confirm_rename_entity_ids": "Chcete také přejmenovat ID entit?",
+ "confirm_rename_entity_ids_warning": "Žádná nastavení (např. automatizace, skripty, scény, ovládací panely), která tyto entity aktuálně používá, nebudou změněna! Vše budete muset aktualizovat sami, aby se používaly nová ID entit!",
+ "data_table": {
+ "area": "Oblast",
+ "battery": "Baterie",
+ "device": "Zařízení",
+ "integration": "Integrace",
+ "manufacturer": "Výrobce",
+ "model": "Model",
+ "no_devices": "Žádná zařízení",
+ "no_integration": "Žádné integrace"
+ },
+ "delete": "Odstranit",
+ "description": "Správa připojených zařízení",
+ "device_info": "Informace o zařízení",
+ "device_not_found": "Zařízení nebylo nalezeno.",
+ "disabled": "Zakázáno",
+ "disabled_by": {
+ "config_entry": "Položka nastavení",
+ "integration": "Integrace",
+ "user": "Uživatel"
+ },
+ "download_diagnostics": "Stáhnout diagnostická data",
+ "edit_settings": "Upravit nastavení",
+ "enabled_cause": "Zařízení je zakázáno přes {cause}.",
+ "enabled_description": "Zakázaná zařízení se nebudou zobrazovat a entity patřící k těmto zařízením budou zakázány a nebudou přidány do Home Assistant.",
+ "enabled_label": "Povolit zařízení",
+ "entities": {
+ "add_entities_lovelace": "Přidat do Lovelace",
+ "config": "Nastavení",
+ "control": "Ovládací prvky",
+ "diagnostic": "Diagnostika",
+ "disabled_entities": "+{count} {count, plural,\n one {zakázaná entita}\n other {zakázaných entit}\n}",
+ "entities": "Entity",
+ "hide_disabled": "Skrýt zakázané",
+ "none": "Toto zařízení nemá žádné entity",
+ "sensor": "Senzory",
+ "state": "Stav"
+ },
+ "name": "Jméno",
+ "no_devices": "Žádná zařízení",
+ "open_configuration_url_device": "Navštívit zařízení",
+ "open_configuration_url_service": "Navštívit službu",
+ "picker": {
+ "filter": {
+ "filter": "Filtrovat",
+ "hidden_devices": "{number} {number, plural,\n one {skryté zařízení}\n few {skrytá zařízení}\n other {skrytých zařízení}\n}",
+ "show_all": "Zobrazit vše",
+ "show_disabled": "Zobrazit zakázaná zařízení"
+ },
+ "search": "Hledat zařízení"
+ },
+ "scene": {
+ "create": "Vytvořit scénu se zařízením",
+ "create_disable": "Nelze vytvořit scénu se zakázaným zařízením",
+ "no_scenes": "Žádné scény",
+ "scenes": "Scény"
+ },
+ "scenes": "Scény",
+ "script": {
+ "create": "Vytvořit skript se zařízením",
+ "create_disable": "Nelze vytvořit skript se zakázaným zařízením",
+ "no_scripts": "Žádné skripty",
+ "scripts": "Skripty"
+ },
+ "scripts": "Skripty",
+ "unknown_error": "Neznámá chyba",
+ "unnamed_device": "Nepojmenované zařízení",
+ "update": "Aktualizovat",
+ "update_device_error": "Aktualizace zařízení se nezdařila"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Přidat bateriový systém",
+ "battery_systems": "Bateriové systémy",
+ "dialog": {
+ "energy_into_battery": "Energie dodávaná do baterie (kWh)",
+ "energy_out_of_battery": "Energie spotřebovávaná z baterie (kWh)",
+ "header": "Nastavení bateriového systému"
+ },
+ "learn_more": "Více informací jak začít.",
+ "sub": "Pokud máte bateriový systém, můžete jej nastavit, aby sledoval, kolik energie bylo uloženo a kolik spotřebováno.",
+ "title": "Domácí bateriové úložiště"
+ },
+ "caption": "Energie",
+ "delete_integration": "Chcete tuto smazat tuto integraci? Odebere entity, které poskytuje",
+ "delete_source": "Opravdu chcete smazat tento zdroj?",
+ "description": "Sledujte svou výrobu a spotřebu energie",
+ "device_consumption": {
+ "add_device": "Přidat zařízení",
+ "add_stat": "Vyberte entitu pro sledování energie",
+ "devices": "Zařízení",
+ "dialog": {
+ "device_consumption_energy": "Spotřeba energie zařízení (kWh)",
+ "header": "Přidat zařízení",
+ "selected_stat_intro": "Vyberte entitu, která představuje spotřebu energie zařízení."
+ },
+ "learn_more": "Více informací jak začít.",
+ "selected_stat": "Sledování energie pro",
+ "sub": "Při sledování spotřeby energie jednotlivých zařízení může Home Assistant rozdělit spotřebu energie dle jednotlivých zařízení.",
+ "title": "Jednotlivá zařízení"
+ },
+ "gas": {
+ "add_gas_source": "Přidat zdroj plynu",
+ "dialog": {
+ "cost_entity": "Použít entitu s aktuální cenou",
+ "cost_entity_input": "Entita s aktuální cenou za {unit}",
+ "cost_number": "Použít fixní cenu",
+ "cost_number_input": "Cena za {unit}",
+ "cost_number_suffix": "{currency}/m³",
+ "cost_para": "Zvolte, jak má Home Assistant sledovat náklady na spotřebovanou energii.",
+ "cost_stat": "Použít entitu sledující celkové náklady",
+ "cost_stat_input": "Entita celkových nákladů",
+ "energy_stat": "Spotřebovaná energie (m³)",
+ "gas_usage": "Využití plynu",
+ "header": "Nastavení spotřeby plynu",
+ "m3_or_kWh": "ft³, m³, Wh, kWh nebo MWh",
+ "no_cost": "Nesledovat náklady",
+ "paragraph": "Spotřeba plynu je objem plynu, který proudí do vaší domácnosti."
+ },
+ "gas_consumption": "Spotřeba plynu",
+ "learn_more": "Více informací jak začít.",
+ "sub": "Nechte Home Assistant sledovat spotřebu plynu.",
+ "title": "Spotřeba plynu"
+ },
+ "grid": {
+ "add_co2_signal": "Přidat integraci CO2 signal",
+ "add_consumption": "Přidat spotřebu",
+ "add_return": "Přidat vracení",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Použít entitu s aktuální cenou",
+ "cost_entity_input": "Entita s aktuální cenou",
+ "cost_number": "Použít fixní cenu",
+ "cost_number_input": "Cena za kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Zvolte, jak má Home Assistant sledovat náklady na spotřebovanou energii.",
+ "cost_stat": "Použít entitu sledující celkové náklady",
+ "cost_stat_input": "Entita celkových nákladů",
+ "energy_stat": "Spotřebovaná energie (kWh)",
+ "header": "Nastavení spotřeby sítě",
+ "no_cost": "Nesledovat náklady",
+ "paragraph": "Spotřeba sítě je energie, která proudí z rozvodné sítě do vaší domácnosti."
+ },
+ "to": {
+ "cost_entity": "Použít entitu s aktuální sazbou",
+ "cost_entity_input": "Entita s aktuální sazbou",
+ "cost_number": "Použít fixní sazbu",
+ "cost_number_input": "Sazba za kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Dostáváte peníze zpět, když vracíte energii do sítě?",
+ "cost_stat": "Použít entitu sledující celkovou částku přijatých peněz",
+ "cost_stat_input": "Entita celkové kompenzace",
+ "energy_stat": "Energie vrácená do sítě (kWh)",
+ "header": "Nastavení výroby sítě",
+ "no_cost": "Nedostávám peníze zpět",
+ "paragraph": "Výroba sítě je energie, která proudí ze solárních panelů do rozvodné sítě."
+ }
+ },
+ "grid_carbon_footprint": "Uhlíková stopa sítě",
+ "grid_consumption": "Spotřeba ze sítě",
+ "learn_more": "Více informací jak začít.",
+ "return_to_grid": "Vracení do sítě",
+ "sub": "Nastavte množství energie, kterou spotřebováváte z rozvodné sítě, a případně také množství energie, kterou do rozvodné sítě vracíte. Home Assistant tak bude moci sledovat spotřebu energie celé vaší domácnosti.",
+ "title": "Rozvodná síť"
+ },
+ "new_device_info": "Po nastavení nového zařízení může trvat až 2 hodiny, než se nová data objeví na vašem energetickém panelu.",
+ "solar": {
+ "add_solar_production": "Přidát solární výrobu",
+ "dialog": {
+ "add_forecast": "Přidat předpověď",
+ "dont_forecast_production": "Nepředpovídat výrobu",
+ "forecast_production": "Předpověď výroby",
+ "header": "Nastavení solárních panelů",
+ "solar_production_energy": "Výroba solární energie (kWh)",
+ "solar_production_forecast": "Předpověď solární výroby",
+ "solar_production_forecast_description": "Přidání předpovědi výroby solární energie vám umožní rychle zjistit očekávanou výrobu pro dnešní den."
+ },
+ "learn_more": "Více informací jak začít.",
+ "solar_production": "Solární výroba",
+ "stat_predicted_production": "Předpověď výroby solární energie",
+ "stat_production": "Vaše výroba solární energie",
+ "stat_return_to_grid": "Solární energie vrácená do sítě",
+ "sub": "Nechte Home Assistant sledovat vaše solární panely a získejte přehled o jejich výkonu.",
+ "title": "Solární panely"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "Následující entity mají záporný stav, zatímco se očekává kladný stav:",
+ "title": "Entita má záparný stav"
+ },
+ "entity_not_defined": {
+ "description": "Zkontrolujte integraci nebo konfiguraci, která poskytuje:",
+ "title": "Entita není definována"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "Následující entity mají třídu stavu \"measurement\", ale nemají atribut \"last_reset\":",
+ "title": "Chybí čas posledního resetování"
+ },
+ "entity_state_non_numeric": {
+ "description": "Následující entity mají stav, který nelze analyzovat jako číslo:",
+ "title": "Entita má nečíselný stav"
+ },
+ "entity_unavailable": {
+ "description": "Stav těchto nastavených entit není v současné době k dispozici:",
+ "title": "Entita není dostupná"
+ },
+ "entity_unexpected_device_class": {
+ "description": "Následující entity nemají očekávanou třídu zařízení:",
+ "title": "Neočekávaná třída zařízení"
+ },
+ "entity_unexpected_state_class": {
+ "description": "Následující entity nemají očekávanou třídu stavu:",
+ "title": "Neočekávaná třída stavu"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "Následující entity nemají očekávanou třídu stavu \"total_increasing\"",
+ "title": "Neočekávaná třída stavu"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "Následující entity nemají očekávané měrné jednotky \"Wh\", \"kWh\" nebo \"MWh\":",
+ "title": "Neočekávaná měrná jednotka"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "Následující entity nemají očekávané měrné jednotky \"{currency}/Wh\", \"{currency}/kWh\" nebo \"{currency}/MWh\":",
+ "title": "Neočekávaná měrná jednotka"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "Následující entity nemají očekávané měrné jednotky \"Wh\", \"kWh\" nebo \"MWh\" pro senzor energie nebo \"m³\" či \"ft³\" pro senzor plynu:",
+ "title": "Neočekávaná měrná jednotka"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "Následující entity nemají očekávané měrné jednotky ''{currency}/Wh'', ''{currency}/kWh'', ''{currency}/MWh'', ''{currency}/m³'' nebo ''{currency}/ft³'':",
+ "title": "Neočekávaná měrná jednotka"
+ },
+ "recorder_untracked": {
+ "description": "Záznamník byl nastaven tak, aby tyto entity ignoroval:",
+ "title": "Entita není sledována"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Entity",
+ "description": "Správa známých entit",
+ "picker": {
+ "disable_selected": {
+ "button": "Zakázat vybrané",
+ "confirm_text": "Zakázané entity nebudou přidány do Home Assistant.",
+ "confirm_title": "Chcete zakázat {number} {number, plural,\n one {entitu}\n few {entity}\n other {entit}\n}?"
+ },
+ "enable_selected": {
+ "button": "Povolit vybrané",
+ "confirm_text": "Tím se znovu zpřístupní v Home Assistant, pokud jsou nyní deaktivované.",
+ "confirm_title": "Chcete povolit {number} {number, plural,\n one {entitu}\n few {entity}\n other {entit}\n}?"
+ },
+ "filter": {
+ "filter": "Filtr",
+ "hidden_entities": "{number} {number, plural,\n one {skrytá entita}\n few {skryté entity}\n other {skrytých entit}\n}",
+ "show_all": "Zobrazit vše",
+ "show_disabled": "Zobrazit zakázané entity",
+ "show_readonly": "Zobrazit entity jen pro čtení",
+ "show_unavailable": "Zobrazit nedostupné entity"
+ },
+ "header": "Entity",
+ "headers": {
+ "area": "Oblast",
+ "disabled_by": "Zakázáno",
+ "entity_id": "ID entity",
+ "integration": "Integrace",
+ "name": "Název",
+ "status": "Stav"
+ },
+ "introduction": "Homa Assistant uchovává záznam o každé entitě, kterou kdy viděl a která může být jednoznačně identifikována. Každá z těchto entit bude mít přiděleno ID, které bude rezervováno pouze pro tuto entitu.",
+ "introduction2": "Entitě můžete přepsat název, změnit její identifikátor nebo ji odebrat z Home Assistant.",
+ "remove_selected": {
+ "button": "Odstranit vybrané",
+ "confirm_partly_text": "Můžete odebrat pouze {removable} z vybraných {selected} entit. Entity lze odebrat pouze v případě, že integrace již entity neposkytuje. Občas je třeba restartovat Home Assistant před tím, než je možné odstranit entity ze smazané integrace. Opravdu chcete odebrat odstranitelné entity?",
+ "confirm_partly_title": "Lze odebrat pouze {number} {number, plural,\n one {vybraná entita}\n few {vybrané entity}\n other {vybraných entit}\n}.",
+ "confirm_text": "Entity lze odebrat pouze v případě, že integrace již entity neposkytuje.",
+ "confirm_title": "Chcete odstranit {number} {number, plural,\n one {entitu}\n few {entity}\n other {entit}\n}?"
+ },
+ "search": "Hledat entitu",
+ "selected": "{number} vybraných",
+ "status": {
+ "disabled": "Zakázáno",
+ "ok": "Ok",
+ "readonly": "Pouze pro čtení",
+ "restored": "Obnoveno",
+ "unavailable": "Nedostupné"
+ }
+ }
+ },
+ "header": "Nastavení Home Assistant",
+ "helpers": {
+ "caption": "Pomocníci",
+ "description": "Prvky, které pomáhají vytvářet automatizace",
+ "dialog": {
+ "add_helper": "Přidat pomocníka",
+ "add_platform": "Přidat {platform}",
+ "create": "Vytvořit"
+ },
+ "picker": {
+ "add_helper": "Přidat pomocníka",
+ "headers": {
+ "editable": "Upravitelné",
+ "entity_id": "ID entity",
+ "name": "Název",
+ "type": "Typ"
+ },
+ "no_helpers": "Vypadá to, že ještě nemáte žádné pomocníky!"
+ },
+ "types": {
+ "counter": "Počítadlo",
+ "input_boolean": "Přepínač",
+ "input_button": "Tlačítko",
+ "input_datetime": "Datum a/nebo čas",
+ "input_number": "Číslo",
+ "input_select": "Výběr",
+ "input_text": "Text",
+ "timer": "Časovač"
+ }
+ },
+ "info": {
+ "built_using": "Sestaveno pomocí",
+ "caption": "Informace",
+ "copy_github": "Pro GitHub",
+ "copy_menu": "Zkopírovat menu",
+ "copy_raw": "Nezpracovaný text",
+ "custom_uis": "Vlastní uživatelská rozhraní:",
+ "description": "Verze, stav systému a odkazy na dokumentaci",
+ "developed_by": "Vyvinuto partou úžasných lidí.",
+ "documentation": "Dokumentace",
+ "frontend": "frontend-ui",
+ "frontend_version": "Verze rozhraní frontend: {version} - {type}",
+ "home_assistant_logo": "Home Assistant logo",
+ "icons_by": "Ikony od",
+ "integrations": "Integrace",
+ "issues": "Problémy",
+ "license": "Publikováno pod licencí Apache 2.0",
+ "path_configuration": "Cesta k souboru configuration.yaml: {path}",
+ "server": "server",
+ "setup_time": "Doba nastavení",
+ "source": "Zdroj:",
+ "system_health": {
+ "manage": "Spravovat",
+ "more_info": "více informací"
+ },
+ "system_health_error": "Součást System Health není načtena. Přidejte 'system_health:' do configuration.yaml"
+ },
+ "integrations": {
+ "add_integration": "Přidat integraci",
+ "attention": "Vyžadována pozornost",
+ "caption": "Integrace",
+ "config_entry": {
+ "area": "V {area}",
+ "check_the_logs": "Zkontrolujte logy",
+ "configure": "Nastavit",
+ "delete": "Smazat",
+ "delete_confirm": "Opravdu chcete odstranit integraci \"{title}\"?",
+ "depends_on_cloud": "Závisí na cloudu",
+ "device_unavailable": "Zařízení není dostupné",
+ "devices": "{count} {count, plural,\n one {zařízení}\n other {zařízení}\n}",
+ "disable": {
+ "disable_confirm": "Opravdu chcete zakázat tuto položku konfigurace? Její zařízení a entity budou zakázány.",
+ "disabled": "Zakázáno",
+ "disabled_by": {
+ "device": "zařízením",
+ "integration": "integrací",
+ "user": "uživatelem"
+ },
+ "disabled_cause": "Zakázáno {cause}"
+ },
+ "disable_error": "Povolení nebo zakázání integrace se nezdařilo",
+ "disable_restart_confirm": "Restartujte Home Assistant pro dokončení odstranění této integrace",
+ "disabled_polling": "Automatické dotazování na aktualizovaná data je zakázáno",
+ "documentation": "Dokumentace",
+ "download_diagnostics": "Stáhnout diagnostická data",
+ "enable_restart_confirm": "Restartujte Home Assistant pro dokončení přidání této integrace",
+ "entities": "{count} {count, plural,\n one {entita}\n other {entit}\n}",
+ "entity_unavailable": "Entita není dostupná",
+ "firmware": "Firmware: {version}",
+ "hardware": "Hardware: {version}",
+ "hub": "Připojeno přes",
+ "known_issues": "Známé problémy",
+ "manuf": "od {manufacturer}",
+ "no_area": "Žádná oblast",
+ "not_loaded": "Nenačteno",
+ "open_configuration_url": "Navštívit zařízení",
+ "provided_by_custom_integration": "Poskytováno vlastní integrací",
+ "reload": "Nově načíst",
+ "reload_confirm": "Integrace byla nově načtena",
+ "reload_restart_confirm": "Restartujte Home Assistant pro nové načtení této integrace",
+ "rename": "Přejmenovat",
+ "restart_confirm": "Restartujte Home Assistant pro odstranění této integrace",
+ "services": "{count} {count, plural,\n one {služba}\n few {služby}\n other {služeb}\n}",
+ "state": {
+ "failed_unload": "Zrušení načtení se nezdařilo",
+ "loaded": "Načteno",
+ "migration_error": "Chyba migrace",
+ "not_loaded": "Nenačteno",
+ "setup_error": "Nastavení se nezdařilo",
+ "setup_retry": "Opakovaný pokus o nastavení"
+ },
+ "system_options": "Více možností",
+ "unknown_via_device": "Neznámé zařízení",
+ "unnamed_entry": "Nepojmenovaný záznam",
+ "via": "Připojeno přes"
+ },
+ "config_flow": {
+ "aborted": "Přerušeno",
+ "close": "Zavřít",
+ "could_not_load": "Konfiguraci nelze načíst",
+ "created_config": "Bylo vytvořeno nastavení pro {name}.",
+ "dismiss": "Zavřít dialog",
+ "error": "Chyba",
+ "error_saving_area": "Chyba při ukládání oblasti: {error}",
+ "external_step": {
+ "description": "K dokončení tohoto kroku je nutné navštívit externí webovou stránku.",
+ "open_site": "Otevřít webové stránky"
+ },
+ "finish": "Dokončit",
+ "loading": {
+ "fallback_title": "integrace",
+ "loading_flow": "Počkejte prosím, než se nastaví {integration}.",
+ "loading_step": "Načítání dalšího kroku pro {integraci}"
+ },
+ "next": "Další",
+ "not_all_required_fields": "Nejsou vyplněna všechna povinná pole.",
+ "not_loaded": "Integraci se nepodařilo načíst, zkuste restartovat Home Assistant.",
+ "pick_flow_step": {
+ "new_flow": "Ne, nastavit další instanci integrace {integration}",
+ "title": "Objevili jsme tyto integrace, chcete je nastavit?"
+ },
+ "submit": "Odeslat"
+ },
+ "configure": "Nastavit",
+ "configured": "Nastaveno",
+ "confirm_new": "Chcete nastavit {integration}?",
+ "description": "Správa integrací a jejich služeb či zařízení",
+ "details": "Podrobnosti o integraci",
+ "disable": {
+ "disabled_integrations": "{number} zakázáno",
+ "show": "Zobrazit",
+ "show_disabled": "Zobrazit zakázané integrace"
+ },
+ "discovered": "Objeveno",
+ "home_assistant_website": "stránky Home Assistant",
+ "ignore": {
+ "confirm_delete_ignore": "To způsobí, že se integrace znovu objeví ve vašich zjištěných integracích. Může to vyžadovat restartování nebo to může nějakou dobu trvat.",
+ "confirm_delete_ignore_title": "Přestat ignorovat {name}?",
+ "confirm_ignore": "Opravdu nechcete tuto integraci nastavit? Tuto akci můžete vrátit zpět klepnutím na \"Zobrazit ignorované integrace\" v nabídce vpravo nahoře.",
+ "confirm_ignore_title": "Ignorovat objevený {name}?",
+ "ignore": "Ignorovat",
+ "ignored": "Ignorováno",
+ "show_ignored": "Zobrazit ignorované integrace",
+ "stop_ignore": "Přestat ignorovat"
+ },
+ "integration": "integrace",
+ "integration_not_found": "Integrace nebyla nalezena.",
+ "new": "Nastavte novou integraci",
+ "no_integrations": "Vypadá to, že ještě nemáte nastaveny žádné integrace. Kliknutím na tlačítko níže přidáte svou první integraci!",
+ "none": "Zatím nic nastaveno",
+ "none_found": "Žádné integrace nenalezeny.",
+ "none_found_detail": "Upravte kritéria vyhledávání.",
+ "note_about_integrations": "Vašemu vyhledávání neodpovídá žádná integrace, je možné, že integraci, kterou chcete nastavit, ještě nelze nastavit prostřednictvím uživatelského rozhraní.",
+ "note_about_website_reference": "Další jsou k dispozici na ",
+ "reconfigure": "Přenastavit",
+ "rename_dialog": "Upravit název této položky nastavení",
+ "rename_input_label": "Název položky",
+ "search": "Hledat integraci"
+ },
+ "introduction": "Zde je možné nastavit vaše komponenty a Home Assistant.\nZatím není možné vše nastavit přímo z uživatelského rozhraní, ale pracujeme na tom.",
+ "logs": {
+ "caption": "Logy",
+ "clear": "Zrušit",
+ "copy": "Zkopírovat log",
+ "custom_integration": "vlastní integrace",
+ "description": "Zobrazení logů Home Assistant",
+ "details": "Detaily logování ({level})",
+ "error_from_custom_integration": "Tato chyba pochází z vlastní integrace.",
+ "level": {
+ "critical": "KRITICKÉ",
+ "debug": "LADĚNÍ",
+ "error": "CHYBA",
+ "info": "INFO",
+ "warning": "VAROVÁNÍ"
+ },
+ "load_full_log": "Načíst úplné logy Home Assistanta",
+ "loading_log": "Načítání logu chyb…",
+ "multiple_messages": "zpráva se poprvé objevila v {time} a zobrazuje se {counter} krát",
+ "no_errors": "Nebyly hlášeny žádné chyby",
+ "no_issues": "Nejsou žádné nové problémy!",
+ "refresh": "Obnovit"
+ },
+ "lovelace": {
+ "caption": "Ovládací panely Lovelace",
+ "dashboards": {
+ "cant_edit_default": "Standardní ovládací panel Lovelace (Přehled) nelze upravovat z uživatelského rozhraní. Můžete jej skrýt nastavením jiného ovládacího panelu jako výchozího.",
+ "cant_edit_yaml": "Ovládací panely definované v YAML nelze upravovat z uživatelského rozhraní. Změňte je v configuration.yaml.",
+ "caption": "Ovládací panely",
+ "conf_mode": {
+ "storage": "Řízeno uživatelským rozhraním",
+ "yaml": "Soubor YAML"
+ },
+ "confirm_delete": "Opravdu chcete odstranit tento ovládací panel?",
+ "confirm_delete_text": "Váš ovládací panel bude trvale smazán.",
+ "confirm_delete_title": "Smazat {dashboard_title}?",
+ "default_dashboard": "Toto je výchozí ovládací panel",
+ "detail": {
+ "create": "Vytvořit",
+ "delete": "Smazat",
+ "dismiss": "Zavřít",
+ "edit_dashboard": "Upravit ovládací panel",
+ "icon": "Ikona",
+ "new_dashboard": "Přidat nový ovládací panel",
+ "remove_default": "Odebrat jako výchozí na tomto zařízení",
+ "require_admin": "Pouze správce",
+ "set_default": "Nastavit jako výchozí na tomto zařízení",
+ "show_sidebar": "Zobrazit na postranním panelu",
+ "title": "Název",
+ "title_required": "Název je povinný.",
+ "update": "Aktualizovat",
+ "url": "URL adresa",
+ "url_error_msg": "Adresa URL by měla obsahovat - a nesmí obsahovat mezery ani speciální znaky, s výjimkou _ a -"
+ },
+ "picker": {
+ "add_dashboard": "Přidat ovládací panel",
+ "headers": {
+ "conf_mode": "Metoda nastavení",
+ "default": "Výchozí",
+ "filename": "Název souboru",
+ "require_admin": "Pouze správce",
+ "sidebar": "Zobrazit na postranním panelu",
+ "title": "Název"
+ },
+ "open": "Otevřít"
+ }
+ },
+ "description": "Vytvořte vlastní sady karet pro ovládání svého domova",
+ "resources": {
+ "cant_edit_yaml": "Používáte Lovelace v režimu YAML, proto nemůžete spravovat své zdroje prostřednictvím uživatelského rozhraní. Spravujte je v souboru configuration.yaml.",
+ "caption": "Zdroje",
+ "confirm_delete": "Opravdu chcete tento zdroj odstranit?",
+ "detail": {
+ "create": "Vytvořit",
+ "delete": "Smazat",
+ "dismiss": "Zavřít",
+ "new_resource": "Přidat nový zdroj",
+ "type": "Typ zdroje",
+ "update": "Aktualizovat",
+ "url": "URL adresa",
+ "url_error_msg": "URL adresa je povinné pole.",
+ "warning_header": "Buďte opatrní!",
+ "warning_text": "Přidávání zdrojů může být nebezpečné, ujistěte se, že znáte původ zdroje a důvěřujete jim. Špatné zdroje mohou vážně poškodit váš systém."
+ },
+ "picker": {
+ "add_resource": "Přidat zdroj",
+ "headers": {
+ "type": "Typ",
+ "url": "URL adresa"
+ },
+ "no_resources": "Žádné zdroje"
+ },
+ "refresh_body": "Chcete-li dokončit odebrání, musíte stránku obnovit. Chcete ji nyní obnovit?",
+ "refresh_header": "Chcete provést obnovení?",
+ "types": {
+ "css": "Stylesheet",
+ "html": "HTML (zastaralé)",
+ "js": "Soubor JavaScriptu (zastaralý)",
+ "module": "Modul JavaScriptu"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Naslouchat tématu",
+ "description_publish": "Publikovat paket",
+ "listening_to": "Naslouchám",
+ "message_received": "Zpráva {id} přijata na {topic} v {time} :",
+ "payload": "Obsah (povolena šablona)",
+ "publish": "Publikovat",
+ "start_listening": "Začít naslouchat",
+ "stop_listening": "Přestat naslouchat",
+ "subscribe_to": "Téma k odběru",
+ "title": "MQTT",
+ "topic": "téma"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Ovladač",
+ "instance": "Instance",
+ "network": "Síť",
+ "node_id": "ID uzlu",
+ "ozw_instance": "Instance OpenZWave",
+ "query_stage": "Fáze dotazu",
+ "wakeup_instructions": "Pokyny pro probuzení",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Uzel selhal",
+ "stage": "Fáze",
+ "zwave_info": "Informace o Z-Wave"
+ },
+ "navigation": {
+ "network": "Síť",
+ "node": {
+ "config": "Nastavení",
+ "dashboard": "Ovládací panel"
+ },
+ "nodes": "Uzly",
+ "select_instance": "Vyberte instanci"
+ },
+ "network": {
+ "header": "Správa sítě",
+ "introduction": "Správa funkcí pro celou síť",
+ "node_count": "{count} uzlů"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "Všechny uzly byly zkontaktovány",
+ "driverallnodesqueriedsomedead": "Všechny uzly byly zkontaktovány. Některé uzly byly nalezeny mrtvé",
+ "driverawakenodesqueries": "Všechny probuzené uzly byly zkontaktovány",
+ "driverfailed": "Nepodařilo se připojit k ovladači Z-Wave",
+ "driverready": "Inicializuji ovladač Z-Wave",
+ "driverremoved": "Ovladač byl odstraněn",
+ "driverreset": "Ovladač byl resetován",
+ "offline": "OZWDaemon je offline",
+ "ready": "Připraveno k připojení",
+ "started": "Připojeno k MQTT",
+ "starting": "Připojování k MQTT",
+ "stopped": "OpenZWave zastaven"
+ },
+ "offline": "Offline",
+ "online": "Online",
+ "starting": "Spouštění",
+ "unknown": "Nezjištěno"
+ },
+ "node": {
+ "button": "Podrobnosti uzlu",
+ "not_found": "Uzel nenalezen"
+ },
+ "node_config": {
+ "header": "Nastavení uzlu",
+ "help_source": "Popisy parametrů nastavení a text nápovědy poskytuje projekt OpenZWave.",
+ "introduction": "Správa různých parametrů nastavení uzlu Z-Wave.",
+ "wakeup_help": "Uzly napájené z baterie musí být vzhůru, aby mohly změnit své nastavení. Pokud uzel není vzhůru, OpenZWave se pokusí aktualizovat nastavení uzlu při příštím probuzení, což může být o několik hodin (nebo dní) později. Zařízení probudíte takto:"
+ },
+ "node_metadata": {
+ "product_manual": "Příručka k produktu"
+ },
+ "node_query_stages": {
+ "associations": "Obnovuji přidružené skupiny a členství",
+ "cacheload": "Načítám informace ze souboru mezipaměti OpenZWave. Uzly baterií zůstanou v této fázi, dokud se uzel neprobudí.",
+ "complete": "Proces komunikace je dokončen",
+ "configuration": "Získávám nastavení z uzlu",
+ "dynamic": "Získávám často se měnící hodnoty z uzlu",
+ "instances": "Získávám podrobnosti o tom, jaké instance nebo kanály zařízení podporuje",
+ "manufacturerspecific1": "Získávám z uzlu kody výrobce a produktů",
+ "manufacturerspecific2": "Získávám z uzlu další kódy výrobce a produktů",
+ "neighbors": "Získávám seznam sousedů uzlu",
+ "nodeinfo": "Získávám z uzlu podporované typy příkazů",
+ "nodeplusinfo": "Získávám informace o Z-Wave + z uzlu",
+ "probe": "Kontroluji, zda je uzel probuzený/živý",
+ "protocolinfo": "Získávám z ovladače Z-Wave základní schopnosti tohoto uzlu",
+ "session": "Získávám zřídka se měnící hodnoty z uzlu",
+ "static": "Získávám statické hodnoty ze zařízení",
+ "versions": "Získávám informace o verzích firmwaru a typech příkazů",
+ "wakeup": "Nastavuji podporu pro probouzecí fronty a zprávy"
+ },
+ "nodes_table": {
+ "failed": "Selhalo",
+ "id": "ID",
+ "manufacturer": "Výrobce",
+ "model": "Model",
+ "query_stage": "Fáze dotazu",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Pokud je uzel napájen z baterie, nezapomeňte jej probudit, než budete pokračovat",
+ "button": "Obnovit uzel",
+ "complete": "Obnova uzlu dokončena",
+ "description": "Toto řekne OpenZWave, aby znovu provedl komunikaci s uzlem a aktualizoval typy příkazů, schopnosti a hodnoty uzlu.",
+ "node_status": "Stav uzlu",
+ "refreshing_description": "Aktualizuji informací o uzlu…",
+ "start_refresh_button": "Spustit Obnovení",
+ "step": "Krok",
+ "title": "Aktualizovat informace o uzlu",
+ "wakeup_header": "Pokyny pro probuzení pro",
+ "wakeup_instructions_source": "Pokyny k probuzení pocházejí z komunitní databáze zařízení OpenZWave."
+ },
+ "select_instance": {
+ "header": "Vyberte instanci OpenZWave",
+ "introduction": "Máte více než jednu instanci OpenZWave. Kterou instanci chcete spravovat?",
+ "none_found": "Instance OpenZWave nebyla nalezena. Pokud se domníváte, že to není správně, zkontrolujte nastavení OpenZWave a MQTT a zajistěte, aby Home Assistant mohl komunikovat s vaším MQTT."
+ },
+ "services": {
+ "add_node": "Přidat uzel",
+ "cancel_command": "Zrušit příkaz",
+ "remove_node": "Odebrat uzel"
+ }
+ },
+ "person": {
+ "add_person": "Přidat osobu",
+ "caption": "Osoby",
+ "confirm_delete": "Opravdu chcete odstranit tuto osobu?",
+ "confirm_delete2": "Všechna zařízení patřící této osobě budou nastavena jako nepřiřazena.",
+ "create_person": "Vytvořit osobu",
+ "description": "Správa osob, které Home Assistant sleduje",
+ "detail": {
+ "admin": "Administrátor",
+ "allow_login": "Povolit osobě se přihlásit",
+ "confirm_delete_user": "Opravdu chcete smazat uživatelský účet pro {name} ? Stále můžete uživatele sledovat, ale daná osoba se již nebude moci přihlásit.",
+ "create": "Vytvořit",
+ "delete": "Smazat",
+ "device_tracker_intro": "Vyberte zařízení, která patří této osobě.",
+ "device_tracker_pick": "Vyberte zařízení, které chcete sledovat",
+ "device_tracker_picked": "Sledovat zařízení",
+ "link_integrations_page": "Stránka integrací",
+ "link_presence_detection_integrations": "Integrace detekce přítomnosti",
+ "linked_user": "Propojený uživatel",
+ "local_only": "Může se přihlásit pouze z místní sítě",
+ "name": "Jméno",
+ "name_error_msg": "Jméno je povinné",
+ "new_person": "Nová osoba",
+ "no_device_tracker_available_intro": "Pokud máte zařízení, která indikují přítomnost osoby, budete je moci zde přiřadit osobě. První zařízení můžete přidat přidáním integrace detekce přítomnosti ze stránky integrace.",
+ "update": "Aktualizovat"
+ },
+ "introduction": "Zde můžete definovat každou osobu v Home Assistant.",
+ "learn_more": "Další informace o osobách",
+ "no_persons_created_yet": "Vypadá to, že jste dosud žádné osoby nevytvořili.",
+ "note_about_persons_configured_in_yaml": "Poznámka: Osoby nastavené pomocí configuration.yaml nelze upravovat pomocí uživatelského rozhraní.",
+ "person_not_found": "Nedaří se nám najít osobu, kterou jste se pokoušeli upravit.",
+ "person_not_found_title": "Osoba nenalezena"
+ },
+ "scene": {
+ "activated": "Aktivovaná scéna {name}.",
+ "caption": "Scény",
+ "description": "Zachyťte stavy zařízení a snadno je později vyvolejte",
+ "editor": {
+ "area": "Oblast",
+ "default_name": "Nová scéna",
+ "devices": {
+ "add": "Přidat zařízení",
+ "delete": "Odstranit zařízení",
+ "header": "Zařízení",
+ "introduction": "Přidejte zařízení, která chcete zahrnout do své scény. Nastavte všechna zařízení do stavu, který chcete pro tuto scénu."
+ },
+ "entities": {
+ "add": "Přidat entitu",
+ "delete": "Odstranit entitu",
+ "device_entities": "Pokud přidáte entitu, která patří k zařízení, zařízení bude přidáno.",
+ "header": "Entity",
+ "introduction": "Zde lze nastavit entity, které nepatří k zařízení.",
+ "without_device": "Entity bez zařízení"
+ },
+ "icon": "Ikona",
+ "introduction": "Pomocí scén oživte svůj domov.",
+ "load_error_not_editable": "Lze upravovat pouze scény v souboru scenes.yaml.",
+ "load_error_unknown": "Chyba při načítání scény ({err_no}).",
+ "name": "Název",
+ "save": "Uložit",
+ "unsaved_confirm": "Máte neuložené změny. Opravdu chcete odejít?"
+ },
+ "picker": {
+ "add_scene": "Přidat scénu",
+ "delete_confirm": "Opravdu chcete tuto scénu smazat?",
+ "delete_scene": "Smazat scénu",
+ "duplicate": "Duplikovat",
+ "duplicate_scene": "Duplikovat scénu",
+ "edit_scene": "Upravit scénu",
+ "header": "Editor scén",
+ "headers": {
+ "name": "Název"
+ },
+ "introduction": "Editor scén vám umožňuje vytvářet a upravovat scény. Přečtěte si pokyny na odkazy níže, abyste se ujistili, že jste Home Assistant nastavili správně.",
+ "learn_more": "Další informace o scénách",
+ "no_scenes": "Nenašli jsme žádné scény",
+ "only_editable": "Lze upravovat pouze scény definované v souboru scenes.yaml.",
+ "pick_scene": "Vyberte scénu, kterou chcete upravit",
+ "show_info_scene": "Zobrazit informace o scéně"
+ }
+ },
+ "script": {
+ "caption": "Skripty",
+ "description": "Provádějte posloupnosti akcí",
+ "editor": {
+ "alias": "Název",
+ "default_name": "Nový skript",
+ "delete_confirm": "Opravdu chcete tento skript smazat?",
+ "delete_script": "Smazat skript",
+ "header": "Skript: {name}",
+ "icon": "Ikona",
+ "id": "ID entity",
+ "id_already_exists": "Toto ID již existuje",
+ "id_already_exists_save_error": "Tento skript nelze uložit, protože ID není jedinečné, vyberte jiné ID nebo jej nechte prázdné a bude automaticky vygenerováno.",
+ "introduction": "K provedení posloupnosti akcí použijte skripty.",
+ "link_available_actions": "Další informace o dostupných akcích.",
+ "load_error_not_editable": "Upravovat lze pouze skripty uvnitř scripts.yaml.",
+ "max": {
+ "parallel": "Maximální počet paralelních spuštění",
+ "queued": "Délka fronty"
+ },
+ "modes": {
+ "description": "Režim určuje, co se stane, když je skript spuštěn a zároveň stále ještě běží na základě předchozího spuštění. Další informace naleznete na {documentation_link}.",
+ "documentation": "Dokumentace skriptů",
+ "label": "Režim",
+ "parallel": "Paralelně",
+ "queued": "Fronta",
+ "restart": "Restart",
+ "single": "Jediný (výchozí)"
+ },
+ "save_script": "Uložit skript",
+ "sequence": "Sekvence",
+ "sequence_sentence": "Posloupnost akcí tohoto skriptu.",
+ "show_trace": "Zobrazit trasu"
+ },
+ "picker": {
+ "add_script": "Přidat skript",
+ "dev_script": "Ladit skript",
+ "duplicate": "Duplikát",
+ "duplicate_script": "Duplikovat skript",
+ "edit_script": "Upravit skript",
+ "header": "Editor skriptů",
+ "headers": {
+ "name": "Název"
+ },
+ "introduction": "Editor skriptů umožňuje vytvářet a upravovat skripty. Přečtěte si pokyny na odkazy níže, abyste se ujistili, že jste Home Assistant nastavili správně.",
+ "learn_more": "Další informace o skriptech",
+ "no_scripts": "Nenašli jsme žádné skripty",
+ "run_script": "Spustit skript",
+ "show_info": "Zobrazit informace o skriptu"
+ }
+ },
+ "server_control": {
+ "caption": "Ovládání serveru",
+ "description": "Ověření a restartování serveru Home Assistant",
+ "section": {
+ "reloading": {
+ "automation": "Automatizace",
+ "command_line": "Entity integrace Command line",
+ "core": "Umístění a přizpůsobení",
+ "filesize": "Entity integrace File size",
+ "filter": "Entity integrace Filter",
+ "generic": "Entity integrace Generic IP camera",
+ "generic_thermostat": "Entity integrace Generic thermostat",
+ "group": "Skupiny, skupiny entit a notifikační služby",
+ "heading": "Nové načtení YAML konfigurace",
+ "history_stats": "Entity integrace History stats",
+ "homekit": "Integrace HomeKit",
+ "input_boolean": "Pomocníci - přepínače",
+ "input_button": "Pomocníci - tlačítka",
+ "input_datetime": "Pomocníci - data/časy",
+ "input_number": "Pomocníci - čísla",
+ "input_select": "Pomocníci - výběry",
+ "input_text": "Pomocníci - texty",
+ "introduction": "Některé části Home Assistant lze nově načíst bez restartování. Kliknutím na jednu z níže uvedených možností se zruší jejich aktuální YAML konfigurace a načte se nová.",
+ "min_max": "Entity integrace Min/Max",
+ "mqtt": "Ručně nastavené entity integrace MQTT",
+ "person": "Osoby",
+ "ping": "Entity integrace Ping",
+ "reload": "Integrace {domain}",
+ "rest": "Entity a notifikační služby integrace Rest",
+ "rpi_gpio": "Entity integrace Raspberry Pi GPIO",
+ "scene": "Scény",
+ "script": "Skripty",
+ "smtp": "Notifikační služby integrace SMTP",
+ "statistics": "Entity integrace Statistics",
+ "telegram": "Notifikační služby integrace Telegram",
+ "template": "Entity integrace Template",
+ "themes": "Motivy",
+ "timer": "Časovače",
+ "trend": "Entity integrace Trend",
+ "universal": "Entity integrace Universal media player",
+ "zone": "Zóny"
+ },
+ "server_management": {
+ "confirm_restart": "Opravdu chcete restartovat Home Assistant?",
+ "confirm_stop": "Opravdu chcete zastavit službu Home Assistant?",
+ "heading": "Správa serveru",
+ "introduction": "Ovládejte svůj Home Assistant.",
+ "restart": "Restartovat",
+ "stop": "Zastavit"
+ },
+ "validation": {
+ "check_config": "Zkontrolujte konfiguraci",
+ "heading": "Ověření konfigurace",
+ "introduction": "Pokud jste nedávno provedli nějaké změny v konfiguraci a chcete se ujistit, že jsou všechny platné, proveďte ověření konfigurace.",
+ "invalid": "Konfigurace není v pořádku!",
+ "valid": "Konfigurace je v pořádku!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Přidat štítek",
+ "automation_title": "Štítek {name} je naskenován",
+ "caption": "Štítky",
+ "confirm_remove": "Opravdu chcete odebrat štítek {tag}?",
+ "confirm_remove_title": "Odebrat štítek?",
+ "create_automation": "Vytvořit automatizaci se štítkem",
+ "description": "Spouštění automatizací při naskenování NFC tagu, QR kódu atd.",
+ "detail": {
+ "companion_apps": "doprovodné aplikace",
+ "create": "Vytvořit",
+ "create_and_write": "Vytvořit a zapsat",
+ "delete": "Smazat",
+ "description": "Popis",
+ "name": "Název",
+ "new_tag": "Nový štítek",
+ "tag_id": "ID štítku",
+ "tag_id_placeholder": "Automaticky vygenerováno, pokud zůstane prázdné",
+ "update": "Aktualizovat",
+ "usage": "Štítek může po naskenování spustit automatizaci. Můžete použít NFC tagy, QR kódy nebo jakýkoli jiný druh štítku. Použijte naše {companion_link} k zapsání tohoto štítku na programovatelný NFC tag nebo vytvořte QR kód níže."
+ },
+ "edit": "Upravit",
+ "headers": {
+ "last_scanned": "Naposledy naskenováno",
+ "name": "Název"
+ },
+ "learn_more": "Další informace o štítcích",
+ "never_scanned": "Nikdy neskenováno",
+ "no_tags": "Žádné štítky",
+ "write": "Zapsat"
+ },
+ "updates": {
+ "more_updates": "+ {count} aktualizací",
+ "review": "přezkoumání",
+ "show": "zobrazit",
+ "show_all_updates": "Zobrazit všechny aktualizace",
+ "title": "{count} {count, plural,\n one {aktualizace}\n few {aktualizace}\n other {aktualizací}\n}",
+ "unable_to_fetch": "Nelze načíst aktualizace",
+ "version_available": "Verze {version_available} je k dispozici"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Přidat uživatele",
+ "create": "Vytvořit",
+ "local_only": "Pouze místní",
+ "password": "Heslo",
+ "password_confirm": "Potvrzení hesla",
+ "password_not_match": "Hesla se neshodují"
+ },
+ "caption": "Uživatelé",
+ "description": "Správa uživatelských účtů pro Home Assistant",
+ "editor": {
+ "activate_user": "Aktivovat uživatele",
+ "active": "Aktivní",
+ "active_tooltip": "Určuje, zda se uživatel může přihlásit",
+ "admin": "Administrátor",
+ "caption": "Zobrazit uživatele",
+ "change_password": "Změnit heslo",
+ "confirm_user_deletion": "Opravdu chcete smazat {name} ?",
+ "deactivate_user": "Deaktivovat uživatele",
+ "delete_user": "Odstranit uživatele",
+ "group": "Skupina",
+ "id": "ID",
+ "local_only": "Může se přihlásit pouze z místní sítě",
+ "name": "Zobrazované jméno",
+ "new_password": "Nové heslo",
+ "owner": "Vlastník",
+ "password_changed": "Heslo bylo změněno",
+ "system_generated": "Systémový uživatel",
+ "system_generated_users_not_editable": "Nelze upravovat systémové uživatele.",
+ "system_generated_users_not_removable": "Nelze odebrat systémové uživatele.",
+ "unnamed_user": "Nepojmenovaný uživatel",
+ "update_user": "Aktualizovat",
+ "username": "Uživatelské jméno"
+ },
+ "is_local": "Místní uživatel",
+ "is_not_active": "Zakázaný",
+ "is_owner": "Vlastník",
+ "is_system": "Systémový uživatel",
+ "picker": {
+ "add_user": "Přidat uživatele",
+ "headers": {
+ "group": "Skupina",
+ "is_active": "Aktivní",
+ "is_owner": "Vlastník",
+ "local": "Místní",
+ "name": "Zobrazované jméno",
+ "system": "Systémový",
+ "username": "Uživatelské jméno"
+ }
+ },
+ "users_privileges_note": "Skupiny uživatelů jsou v přípravě. Uživatel je nebude moci spravovat prostřednictvím uživatelského rozhraní. Stále kontrolujeme API pro správu, abychom zajistili, že správně omezuje přístup pouze pro administrátory."
+ },
+ "zha": {
+ "add_device": "Přidat zařízení",
+ "add_device_page": {
+ "discovered_text": "Jakmile se objeví nalezne, zobrazí se zde.",
+ "no_devices_found": "Nebyla nalezena žádná zařízení, ujistěte se, že jsou v režimu párování a udržujte je v aktivním stavu, zatímco je objevování spuštěno.",
+ "pairing_mode": "Zkontrolujte, zda jsou vaše zařízení v režimu párování. Postupujte podle pokynů svého zařízení.",
+ "search_again": "Hledat znovu",
+ "spinner": "Hledání zařízení ZHA Zigbee…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Atributy vybraného klastru",
+ "get_zigbee_attribute": "Získat atribut Zigbee",
+ "header": "Atributy klastru",
+ "help_attribute_dropdown": "Vyberte atribut, chcete-li zobrazit nebo nastavit jeho hodnotu.",
+ "help_get_zigbee_attribute": "Získat hodnotu vybraného atributu.",
+ "help_set_zigbee_attribute": "Nastavit hodnotu atributu pro vybraný klastr na vybrané entitě.",
+ "introduction": "Zobrazit a upravit atributy klastru.",
+ "set_zigbee_attribute": "Nastavit atribut Zigbee"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Příkazy vybraného klastru",
+ "header": "Příkazy klastru",
+ "help_command_dropdown": "Vyberte příkaz, se kterým chcete pracovat.",
+ "introduction": "Zobrazit a poslat příkazy klastru",
+ "issue_zigbee_command": "Poslat Zigbee příkaz"
+ },
+ "clusters": {
+ "header": "Clustery",
+ "help_cluster_dropdown": "Vyberte klastr pro zobrazení atributů a příkazů.",
+ "introduction": "Clustery jsou stavebními kameny funkčnosti Zigbee. Rozdělují funkčnost na logické jednotky. Existují typy klientů a serverů, které se skládají z atributů a příkazů."
+ },
+ "common": {
+ "clusters": "Clustery",
+ "manufacturer_code_override": "Přepsání kódu výrobce",
+ "value": "Hodnota"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Zástupci",
+ "update_button": "Aktualizovat nastavení"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Nastavení dokončeno",
+ "CONFIGURED_status_text": "Inicializuji",
+ "INITIALIZED": "Inicializace dokončena",
+ "INITIALIZED_status_text": "Zařízení je připraveno k použití",
+ "INTERVIEW_COMPLETE": "Dotazování dokončeno",
+ "INTERVIEW_COMPLETE_status_text": "Nastavuji",
+ "PAIRED": "Zařízení nalezeno",
+ "PAIRED_status_text": "Začínám dotazování"
+ },
+ "group_binding": {
+ "bind_button_help": "Připojit vybranou skupinu s vybranými clustery zařízení.",
+ "bind_button_label": "Připojit skupinu",
+ "cluster_selection_help": "Vyberte clustery, které chcete propojit s vybranou skupinou.",
+ "group_picker_help": "Vyberte skupinu, která může propojovat",
+ "group_picker_label": "Propojitelné skupiny",
+ "header": "Slučovnání skupin",
+ "introduction": "Rozdělit a sloučit skupiny",
+ "unbind_button_help": "Odpojit vybranou skupinu od vybraných clusterů zařízení.",
+ "unbind_button_label": "Odpojit skupinu"
+ },
+ "groups": {
+ "add_group": "Přidat do skupiny",
+ "add_members": "Přidání členů",
+ "caption": "Skupiny",
+ "create": "Vytvořit skupinu",
+ "create_group": "Zigbee Home Automation - Vytvoření skupiny",
+ "create_group_details": "Zadejte požadované podrobnosti pro vytvoření nové zigbee skupiny",
+ "creating_group": "Vytváření skupiny",
+ "delete": "Smazat skupinu",
+ "group_details": "Zde jsou všechny podrobnosti o vybrané skupině Zigbee.",
+ "group_id": "ID skupiny",
+ "group_info": "Informace o skupině",
+ "group_name_placeholder": "Název skupiny",
+ "group_not_found": "Skupina nenalezena!",
+ "groups": "Skupiny",
+ "members": "Členové",
+ "remove_members": "Odstranit členy",
+ "removing_members": "Odstranění členů"
+ },
+ "network": {
+ "caption": "Síť"
+ },
+ "visualization": {
+ "auto_zoom": "Automatické přiblížení",
+ "caption": "Vizualizace",
+ "enable_physics": "Povolit Physics",
+ "header": "Vizualizace sítě",
+ "highlight_label": "Zvýraznit zařízení",
+ "refresh_topology": "Aktualizovat topologii",
+ "zoom_label": "Přiblížit na zařízení"
+ }
+ },
+ "zone": {
+ "add_zone": "Přidat zónu",
+ "caption": "Zóny",
+ "configured_in_yaml": "Zóny nastavené pomocí configuration.yaml nelze upravovat v uživatelském rozhraní.",
+ "confirm_delete": "Opravdu chcete tuto zónu smazat?",
+ "create_zone": "Vytvořit zónu",
+ "description": "Spravá zón, ve kterých chcete sledovat osoby",
+ "detail": {
+ "create": "Vytvořit",
+ "delete": "Smazat",
+ "icon": "Ikona",
+ "icon_error_msg": "Ikona by měla být ve formátu \"předpona:jménoIkony\", například: \"mdi:home\"",
+ "latitude": "Zeměpisná šířka",
+ "longitude": "Zeměpisná délka",
+ "name": "Název",
+ "new_zone": "Nová zóna",
+ "passive": "Pasivní",
+ "passive_note": "Pasivní zóny jsou v uživatelském rozhraní skryté a nepoužívají se pro sledování zařízení. je to užitečné, pokud jej chcete použít pouze pro automatizaci.",
+ "radius": "Poloměr",
+ "required_error_msg": "Toto pole je povinné",
+ "update": "Aktualizovat"
+ },
+ "edit_home_zone": "Poloměr domovské zóny zatím nelze upravit z frontendu. Z frontendu se dá změnit jen poloha domovské zóny.",
+ "edit_home_zone_narrow": "Poloměr domovské zóny zatím nelze upravit z rozhraní. Umístění lze změnit z obecného nastavení.",
+ "edit_zone": "Upravit zónu",
+ "go_to_core_config": "Přejít na obecnou nastavení?",
+ "home_zone_core_config": "Umístění vaší domovské zóny lze upravit na stránce obecného nastavení. Poloměr domovské zóny zatím nelze upravit z rozhraní. Chcete přejít do obecného nastavení?",
+ "introduction": "Zóny umožňují určit určité oblasti na zemi. Když je osoba v zóně, stav převezme název ze zóny. Zóny lze také použít jako aktivační událost nebo podmínku v nastavení automatizace.",
+ "no_zones_created_yet": "Vypadá to, že nejsou vytvořené žádné zóny."
+ },
+ "zwave": {
+ "common": {
+ "index": "Index",
+ "instance": "Instance",
+ "unknown": "neznámý",
+ "value": "Hodnota",
+ "wakeup_interval": "Interval probuzení"
+ },
+ "description": "Správa síťě Z-Wave",
+ "learn_more": "Další informace o Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "Migrovat na OpenZWave",
+ "introduction": "Tento průvodce vám pomůže migrovat ze starší integrace Z-Wave do integrace OpenZWave, která je aktuálně v beta verzi."
+ },
+ "zwave_js": {
+ "header": "Migrace na Z-Wave JS",
+ "introduction": "Tato integrace již není udržována a doporučujeme vám přejít na novou integraci Z-Wave JS. Tento průvodce vám pomůže přejít ze starší integrace Z-Wave na novou integraci Z-Wave JS."
+ }
+ },
+ "network_management": {
+ "header": "Správa sítě Z-Wave",
+ "introduction": "Spouštějte příkazy, které ovlivňují síť Z-Wave. Nebudete mít žádnou zpětnou vazbu o tom, zda příkazy uspěly, ale můžete se podívat do logů OZW, kde to můžete zjistit."
+ },
+ "network_status": {
+ "network_started": "Síť Z-Wave spuštěna",
+ "network_started_note_all_queried": "Všechny uzly byly zkontaktovány.",
+ "network_started_note_some_queried": "Probuzené uzly byly zkontaktovány. Spící uzly budou zkontaktovány jakmile se probudí.",
+ "network_starting": "Spouštění sítě Z-Wave…",
+ "network_starting_note": "V závislosti na velikosti vaší sítě to může chvíli trvat.",
+ "network_stopped": "Síť Z-Wave byla zastavena"
+ },
+ "node_config": {
+ "config_parameter": "Parametr nastavení",
+ "config_value": "Hodnota nastavení",
+ "false": "False",
+ "header": "Možnosti nastavení uzlu",
+ "seconds": "sekund",
+ "set_config_parameter": "Nastavte parametr",
+ "set_wakeup": "Nastavit interval probuzení",
+ "true": "True"
+ },
+ "node_management": {
+ "add_to_group": "Přidat do skupiny",
+ "entities": "Entity tohoto uzlu",
+ "entity_info": "Informace o entitě",
+ "exclude_entity": "Vyloučit tuto entitu z Home Assistant",
+ "group": "Skupina",
+ "header": "Správa uzlů Z-Wave",
+ "introduction": "Spusťte příkazy Z-Wave, které ovlivňují jediný uzel. Vyberte uzel pro zobrazení seznamu dostupných příkazů.",
+ "max_associations": "Maximální počet asociací:",
+ "node_group_associations": "Přidružení skupiny uzlů",
+ "node_protection": "Ochrana uzlu",
+ "node_to_control": "Uzel k řízení",
+ "nodes": "Uzly",
+ "nodes_hint": "Vyberte uzel pro zobrazení možností daného uzlu",
+ "nodes_in_group": "Další uzly v této skupině:",
+ "pooling_intensity": "Intenzita dotazování",
+ "protection": "Ochrana",
+ "remove_broadcast": "Odebrat vysílání",
+ "remove_from_group": "Odebrat ze skupiny",
+ "set_protection": "Nastavit ochranu"
+ },
+ "ozw_log": {
+ "header": "Logy OZW",
+ "introduction": "Zobrazit log. 0 je minimum (načte celý log) a 1000 je maximum. \"Načíst\" zobrazí statický log a Konec automaticky bude logy aktualizovat s naposledy zvoleným počtem řádků.",
+ "last_log_lines": "Počet posledních řádků logu",
+ "load": "Načíst",
+ "tail": "Konec"
+ },
+ "services": {
+ "add_node": "Přidat uzel",
+ "add_node_secure": "Přidat zabezpečený uzel",
+ "cancel_command": "Zrušit příkaz",
+ "heal_network": "Vyléčit síť",
+ "heal_node": "Uzdravit uzel",
+ "node_info": "Informace o uzlu",
+ "print_node": "Otisk uzlu",
+ "refresh_entity": "Nově načíst Entitu",
+ "refresh_node": "Obnovit uzel",
+ "remove_failed_node": "Odebrat selhaný uzel",
+ "remove_node": "Odebrat uzel",
+ "replace_failed_node": "Nahradit selhaný uzel",
+ "save_config": "Uložit nastavení",
+ "soft_reset": "Měkký reset",
+ "start_network": "Spustit síť",
+ "stop_network": "Zastavit síť",
+ "test_network": "Testovat síť",
+ "test_node": "Otestovat uzel"
+ },
+ "values": {
+ "header": "Hodnoty uzlu"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Zrušit začlenění",
+ "check_logs": "Další informace naleznete v logách.",
+ "choose_inclusion_strategy": "Jak chcete přidat své zařízení",
+ "controller_in_inclusion_mode": "Váš ovladač Z-Wave je nyní v režimu začlenění.",
+ "enter_qr_code": "Zadejte hodnotu QR kódu",
+ "follow_device_instructions": "Podle pokynů dodaných se zařízením aktivujte párování na zařízení.",
+ "inclusion_failed": "Zařízení nelze přidat.",
+ "inclusion_finished": "Zařízení bylo přidán.",
+ "interview_failed": "Komunikace se zařízením se nezdařila. V logách mohou být k dispozici další informace.",
+ "interview_started": "Zařízení je dotazováno. To může nějakou dobu trvat.",
+ "introduction": "Tento průvodce vás provede přidáním uzlu do vaší sítě Z-Wave.",
+ "provisioning_finished": "Zařízení bylo přidáno. Jakmile jej zapnete, bude k dispozici.",
+ "qr_code": "QR kód",
+ "qr_code_paragraph": "Pokud vaše zařízení podporuje funkci SmartStart, můžete pro snadné spárování naskenovat QR kód.",
+ "scan_qr_code": "Naskenujte QR kód",
+ "searching_device": "Probíhá hledání zařízení",
+ "secure_inclusion_warning": "Zabezpečená zařízení vyžadují větší šířku pásma; příliš mnoho zabezpečených zařízení může zpomalit vaši síť Z-Wave. Bezpečné začlenění doporučujeme používat pouze u zařízení, která to vyžadují, jako jsou zámky nebo otvírače garážových vrat.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Příklad: Starší zámky dveří bez podpory S2",
+ "title": "S0 Starší verze"
+ },
+ "S2_AccessControl": {
+ "description": "Příklad: Dveřní zámky a garážová vrata",
+ "title": "S2 Řízení přístupu"
+ },
+ "S2_Authenticated": {
+ "description": "Příklad: Osvětlení, senzory a bezpečnostní systémy",
+ "title": "S2 Ověřeno"
+ },
+ "S2_Unauthenticated": {
+ "description": "Stejně jako S2 Ověřeno, ale bez ověření, zda je zahrnuto správné zařízení.",
+ "title": "S2 Neověřeno"
+ }
+ },
+ "select_camera": "Vybrat kameru",
+ "start_inclusion": "Zahájit začlenění",
+ "start_secure_inclusion": "Spusťte zabezpečené začlenění",
+ "title": "Přidání zařízení Z-Wave",
+ "use_secure_inclusion": "Použijte zabezpečené začlenění",
+ "view_device": "Zobrazit zařízení"
+ },
+ "common": {
+ "add_node": "Přidat zařízení",
+ "back": "Zpět",
+ "close": "Zavřít",
+ "heal_network": "Uzdravit síť",
+ "home_id": "ID domácnosti",
+ "network": "Síť",
+ "node_id": "ID zařízení",
+ "reconfigure_server": "Znovu nastavit server",
+ "remove_node": "Odebrat zařízení",
+ "source": "Zdroj"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n one {zařízení}\n few {zařízení}\n other {zařízení}\n}",
+ "driver_version": "Verze ovladače",
+ "dump_dead_nodes_text": "Některá zařízení neodpověděla a předpokládá se, že jsou mrtvé. Ta nebudou plně exportována.",
+ "dump_dead_nodes_title": "Některá zařízení jsou mrtvá",
+ "dump_debug": "Stáhnout data",
+ "dump_not_ready_confirm": "Stáhnout",
+ "dump_not_ready_text": "Pokud vytvoříte export, zatímco všechny zařízení ještě nejsou připravena, mohla by vám chybět potřebná data. Dejte své síti nějaký čas na dotazování všech zařízení. Chcete pokračovat s výpisem?",
+ "dump_not_ready_title": "Všechna zařízení ještě nejsou připravena",
+ "header": "Spravujte svoji síť Z-Wave",
+ "home_id": "ID domácnosti",
+ "introduction": "Správa sítě Z-Wave a zařízení Z-Wave",
+ "nodes_ready": "Zařízení připravena",
+ "not_ready": "{count} není připraveno",
+ "provisioned_devices": "Spravovaná zařízení",
+ "server_url": "URL adresa serveru",
+ "server_version": "Verze serveru"
+ },
+ "device_info": {
+ "device_config": "Nakonfigurujte zařízení",
+ "heal_node": "Uzdravit zařízení",
+ "highest_security": "Nejvyšší zabezpečení",
+ "is_secure": "Zabezpečené",
+ "node_ready": "Zařízení připraveno",
+ "node_status": "Stav zařízení",
+ "reinterview_device": "Znovu dotázat zařízení (Re-interview)",
+ "remove_failed": "Odebrat nefunkční zařízení",
+ "unknown": "Nezjištěno",
+ "zwave_info": "Z-Wave Info",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Verze {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "Uzdravení sítě bylo zrušeno.",
+ "healing_complete": "Uzdravení sítě je dokončeno.",
+ "healing_failed": "Uzdravení se nezdařilo. V logách mohou být k dispozici další informace.",
+ "in_progress": "Probíhá uzdravování sítě. Bude to chvíli trvat.",
+ "introduction": "Zahajte v síti Z-Wave uzdravení sítě. Obnovení sítě způsobí, že všechna zařízení přepočítají své trasy zpět do řadiče, a je doporučeno, pokud jste nedávno přesunuli zařízení nebo váš ovladač.",
+ "run_in_background": "Tento dialog můžete zavřít a uzdravování sítě bude pokračovat na pozadí.",
+ "start_heal": "Spustit uzdravování",
+ "stop_heal": "Zastavit uzdravování",
+ "title": "Uzdravte svou síť Z-Wave",
+ "traffic_warning": "Proces uzdravování generuje v síti Z-Wave velké množství provozu. To může způsobit, že zařízení budou během léčení reagovat pomalu (nebo vůbec)."
+ },
+ "heal_node": {
+ "healing_complete": "{device} bylo uzdraveno.",
+ "healing_failed": "{device} nemohlo být uzdraveno.",
+ "healing_failed_check_logs": "Další informace mohou být k dispozici v logách.",
+ "in_progress": "Probíhá uzdravování {device}.",
+ "introduction": "Požádejte {device}, aby aktualizoval své trasy zpět na řadič. To vám může pomoci s problémy s komunikací, pokud jste nedávno přesunuli zařízení nebo ovladač.",
+ "network_heal_in_progress": "Uzdravení sítě Z-Wave již probíhá. Před léčením konkrétního zařízení počkejte, až se dokončí.",
+ "start_heal": "Uzdravit zařízení",
+ "title": "Uzdravit zařízení Z-Wave",
+ "traffic_warning": "Proces uzdravování generuje v síti Z-Wave velké množství provozu. To může způsobit, že zařízení budou během léčení reagovat pomalu (nebo vůbec)."
+ },
+ "logs": {
+ "download_logs": "Stáhnout logy",
+ "log_level": "Úroveň logování",
+ "log_level_changed": "Úroveň logování změněna na: {level}",
+ "subscribed_to_logs": "Přihlášení k odběru zpráv logů Z-Wave JS…",
+ "title": "Z-Wave JS logy"
+ },
+ "navigation": {
+ "logs": "Logy",
+ "network": "Síť"
+ },
+ "network_status": {
+ "connected": "Připojeno",
+ "connecting": "Připojování",
+ "unknown": "Nezjištěno"
+ },
+ "node_config": {
+ "attribution": "Konfigurační parametry a popis zařízení poskytuje {device_database}",
+ "battery_device_notice": "Aby bylo možné aktualizovat konfiguraci, musí být bateriová zařízení vzhůru. Pokyny k probuzení zařízení naleznete v příručce k zařízení.",
+ "error_device_not_found": "Zařízení nenalezeno",
+ "header": "Konfigurace zařízení Z-Wave",
+ "introduction": "Spravujte a nastavte specifické parametry pro vybrané zařízení",
+ "parameter": "Parametr",
+ "parameter_is_read_only": "Tento parametr je jen pro čtení.",
+ "set_param_accepted": "Parametr byl aktualizován.",
+ "set_param_error": "Vyskytla se chyba.",
+ "set_param_queued": "Změna parametru byla zařazena do fronty a bude aktualizována, jakmile se zařízení probudí.",
+ "zwave_js_device_database": "Databáze zařízení Z-Wave JS"
+ },
+ "node_status": {
+ "alive": "Naživu",
+ "asleep": "Spící",
+ "awake": "Probuzený",
+ "dead": "Mrtvý",
+ "unknown": "Nezjištěno"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "Pokud zrušíte správu zařízení, nebude přidáno do aplikace Home Assistant, když je zapnuté. Pokud je již přidán do Aplikace Home Assistant, odebrání spravovaného zařízení jej neodebere z Home Assistant.",
+ "confirm_unprovision_title": "Opravdu chcete zrušit správu zařízení?",
+ "dsk": "DSK",
+ "included": "Zahrnuto",
+ "not_included": "Nezahrnuto",
+ "security_classes": "Bezpečnostní třídy",
+ "unprovison": "Nespravovat"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "Před opakovaným představením je třeba probudit zařízení napájená z baterie. Pokyny k probuzení zařízení naleznete v příručce k zařízení.",
+ "in_progress": "Zařízení je dotazováno. To může nějakou dobu trvat.",
+ "interview_complete": "Představení zařízení dokončeno.",
+ "interview_failed": "Dotazování zařízení se nezdařilo. Další informace mohou být k dispozici v logách.",
+ "introduction": "Znovu vyzpovídejte zařízení ve vaší Z-Wave síti. Tuto funkci použijte, pokud zařízení obsahuje chybějící nebo nesprávné funkce.",
+ "run_in_background": "Toto dialogové okno můžete zavřít a představení bude pokračovat na pozadí.",
+ "start_reinterview": "Znovu představit zařízení",
+ "title": "Opětovné vyzpovídání Z-Wave zařízení"
+ },
+ "remove_failed_node": {
+ "in_progress": "Probíhá odstraňování zařízení.",
+ "introduction": "Odstranění nefunkčního zařízení ze sítě Z-Wave. Tuto funkci použijte, pokud nemůžete zařízení normálně vyloučit, protože je poškozené.",
+ "removal_failed": "Zařízení se nepodařilo odebrat z vaší sítě Z-Wave.",
+ "removal_finished": "Zařízení {id} bylo odebrán z vaší sítě Z-Wave.",
+ "remove_device": "Odebrat zařízení",
+ "title": "Odeberte nefunkční zařízení Z-Wave"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Zrušit vyloučení",
+ "controller_in_exclusion_mode": "Kontroler Z-Wave je nyní v režimu vyloučení.",
+ "exclusion_failed": "Zařízení nelze odstranit. Další informace najdete v logách.",
+ "exclusion_finished": "Zařízení {id} bylo odebráno z vaší sítě Z-Wave.",
+ "follow_device_instructions": "Postupujte podle pokynů dodanéch se zařízením a aktivujte vyloučení na zařízení.",
+ "introduction": "Odeberte zařízení ze sítě Z-Wave a odeberte přidružená zařízení a entity z Home Assistant.",
+ "start_exclusion": "Zahájit vyloučení",
+ "title": "Odebrání zařízení Z-Wave"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Žádné"
+ },
+ "S0_Legacy": {
+ "description": "Příklad: Starší zámky dveří bez podpory S2",
+ "title": "S0 Starší verze"
+ },
+ "S2_AccessControl": {
+ "description": "Příklad: Zámky dveří a garážová vrata",
+ "title": "S2 řízení přístupu"
+ },
+ "S2_Authenticated": {
+ "description": "Příklad: Osvětlení, senzory a bezpečnostní systémy",
+ "title": "S2 Ověřeno"
+ },
+ "S2_Unauthenticated": {
+ "description": "Stejně jako S2 Ověřeno, ale bez ověření, zda je zahrnuto správné zařízení.",
+ "title": "S2 Neověřeno"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Bude mít přístup ke všem datům v Home Assistant.",
+ "hide_message": "Chcete-li skrýt tuto zprávu, zkontrolujte v dokumentech komponentu panel_custom",
+ "question_trust": "Důvěřujete externímu panelu {name} na {link} ?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Aktivní posluchači",
+ "alert_event_type": "Typ události je povinné pole",
+ "available_events": "Dostupné události",
+ "count_listeners": " ({count} posluchačů)",
+ "data": "Data události (YAML, volitelné)",
+ "description": "Spustit událost na sběrnici událostí.",
+ "documentation": "Dokumentace událostí.",
+ "event_fired": "Událost {name} spuštěna!",
+ "fire_event": "Spustit událost",
+ "listen_to_events": "Naslouchat událostem",
+ "listening_to": "Naslouchám",
+ "notification_event_fired": "Událost {type} úspěšně spuštěna!",
+ "start_listening": "Začít naslouchat",
+ "stop_listening": "Přestat naslouchat",
+ "subscribe_to": "Téma k odběru",
+ "title": "Události",
+ "type": "Typ události"
+ },
+ "services": {
+ "accepts_target": "Tato služba přijímá cíl, například: `entity_id: light.bed_light`",
+ "all_parameters": "Všechny dostupné parametry",
+ "call_service": "Zavolat službu",
+ "column_description": "Popis",
+ "column_example": "Příklad",
+ "column_parameter": "Parametr",
+ "description": "Vývojářský nástroj pro služby umožňuje zavolat jakoukoli dostupnou službu v Home Assistant",
+ "fill_example_data": "Vyplnit ukázková data",
+ "no_template_ui_support": "Uživatelské rozhraní nepodporuje šablony, stále můžete použít editor YAML.",
+ "title": "Služby",
+ "ui_mode": "Přejít do režimu uživatelského rozhraní",
+ "yaml_mode": "Přejít do režimu YAML",
+ "yaml_parameters": "Parametry jsou dostupné pouze v režimu YAML"
+ },
+ "states": {
+ "alert_entity_field": "Entita je povinné pole",
+ "attributes": "Atributy",
+ "copy_id": "Zkopírovat ID do schránky",
+ "current_entities": "Současné entity",
+ "description1": "Nastavte stav zařízení v Home Assistant.",
+ "description2": "Pokud entita patří k zařízení, neprobíhá s tímto zařízením žádná skutečná komunikace.",
+ "entity": "Entita",
+ "filter_attributes": "Filtrovat atributy",
+ "filter_entities": "Filtrovat entity",
+ "filter_states": "Filtrovat stavy",
+ "last_changed": "Naposledy změněno",
+ "last_updated": "Poslední aktualizace",
+ "more_info": "Více informací",
+ "no_entities": "Žádné entity",
+ "set_state": "Nastavit stav",
+ "state": "Stav",
+ "state_attributes": "Atributy stavu (YAML, volitelné)",
+ "title": "Stavy"
+ },
+ "statistics": {
+ "entity": "Entita",
+ "fix_issue": {
+ "fix": "Opravit problém",
+ "units_changed": {
+ "clear": "Odstranit všechna stará statistická data pro tuto entitu",
+ "fix": "Opravit problém",
+ "title": "Jednotka této entity se změnila",
+ "update": "Aktualizovat hodnoty historických statistik z \"{metadata_unit}\" na \"{state_unit}\""
+ }
+ },
+ "issue": "Problém",
+ "issues": {
+ "entity_no_longer_recorded": "Tato entita již není zaznamenávána.",
+ "entity_not_recorded": "Tato entita není zaznamenávána.",
+ "no_state": "Pro tuto entitu není k dispozici žádný stav.",
+ "units_changed": "Jednotka této entity se změnila z ''{metadata_unit}'' na ''{state_unit}''.",
+ "unsupported_state_class": "Třída stavu ''{state_class}'' této entity není podporována.",
+ "unsupported_unit": "Jednotka (''{state_unit}'') této entity neodpovídá jednotce třídy zařízení ''{device_class}''.",
+ "unsupported_unit_metadata": "Jednotka (''{metadata_unit}'') zaznamenaných statistik neodpovídá podporované jednotce \"{supported_unit} třídy zařízení ''{device_class}''.",
+ "unsupported_unit_state": "Jednotka (''{state_unit}'') této entity neodpovídá jednotce třídy zařízení ''{device_class}''."
+ },
+ "no_issue": "Žádné problémy",
+ "title": "Statistiky"
+ },
+ "templates": {
+ "all_listeners": "Tato šablona naslouchá všem změnám stavu.",
+ "description": "Šablony jsou vykreslovány pomocí šablonovacího systému Jinja2 s některými specifickými rozšířeními pro Home Assistant.",
+ "domain": "Doména",
+ "editor": "Editor šablon",
+ "entity": "Entita",
+ "jinja_documentation": "Dokumentace šablon Jinja2",
+ "listeners": "Tato šablona naslouchá následujícím změnám stavu:",
+ "no_listeners": "Tato šablona nenaslouchá žádným událostem a nebude automaticky aktualizována.",
+ "reset": "Obnovit ukázkovou šablonu",
+ "result_type": "Typ výsledku",
+ "template_extensions": "Rozšíření šablony Home Assistant",
+ "time": "Tato šablona se aktualizuje na začátku každé minuty.",
+ "title": "Šablony",
+ "unknown_error_template": "Neznámá chyba při vykreslení šablony"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Sledování jednotlivých zařízení",
+ "energy_distribution_title": "Distribuce energie",
+ "energy_gas_graph_title": "Spotřeba plynu",
+ "energy_solar_graph_title": "Solární výroba",
+ "energy_sources_table_title": "Zdroje",
+ "energy_usage_graph_title": "Spotřeba energie"
+ },
+ "charts": {
+ "by_device": "Spotřeba podle zařízení",
+ "solar": "Solární",
+ "stat_house_energy_meter": "Celková spotřeba energie"
+ },
+ "setup": {
+ "back": "Zpět",
+ "done": "Ukažte mi můj energetický panel!",
+ "next": "Další"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Tuto funkci můžete použít, pouze pokud jste převzali kontrolu nad Lovelace.",
+ "saving_failed": "Uložení nastavení Lovelace se nezdařilo.",
+ "yaml_unsupported": "Tuto funkci nemůžete použít, když používáte Lovelace v režimu YAML."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Opravdu chcete provést akci \"{action}\"?",
+ "no_entity_more_info": "Pro dialog s dalšími informacemi není poskytnuta žádná entita",
+ "no_entity_toggle": "K přepnutí není poskytnuta žádná entita",
+ "no_navigation_path": "Není zadána žádná navigační cesta",
+ "no_service": "Není zadána žádná služba pro spuštění",
+ "no_url": "Není zadána žádná adresa URL k otevření"
+ },
+ "confirm_delete": "Opravdu chcete tuto kartu smazat?",
+ "empty_state": {
+ "go_to_integrations_page": "Přejděte na stránku integrace.",
+ "no_devices": "Tato stránka umožňuje ovládat vaše zařízení; zdá se však, že ještě nemáte žádné zařízení nastavené. Nejprve tedy přejděte na stránku integrace.",
+ "title": "Vítejte doma"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "Tato karta udává, kolik energie spotřebované ve vaší domácnosti bylo vyrobeno z nefosilních paliv, jako je sluneční, větrná či jaderná energie. Čím vyšší, tím lepší!",
+ "non_fossil_energy_consumed": "Spotřeba nefosilní energie",
+ "non_fossil_energy_not_calculated": "Spotřebovanou nefosilní energii nebylo možné vypočítat"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Spotřeba energie"
+ },
+ "energy_distribution": {
+ "battery": "Baterie",
+ "gas": "Plyn",
+ "go_to_energy_dashboard": "Přejít na panel energií",
+ "grid": "Síť",
+ "home": "Domov",
+ "non_fossil": "Nefosilní",
+ "solar": "Solární",
+ "title_today": "Dnešní distribuce energie"
+ },
+ "energy_solar_graph": {
+ "forecast": "Předpověď {name}",
+ "production": "Výroba {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Celkem baterie",
+ "cost": "Náklady",
+ "energy": "Energie",
+ "grid_total": "Síť celkem",
+ "source": "Zdroj",
+ "total_costs": "Celkové náklady"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Kombinovaná ze sítě",
+ "consumed_battery": "Spotřebovaná baterie",
+ "consumed_solar": "Spotřebovaná solární energie",
+ "total_consumed": "Celkovem spotřebováno {num} kWh",
+ "total_returned": "Celkem vráceno {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Pokud je ručička ve fialové barvě, vrátili jste do sítě více energie, než jste z ní spotřebovali. Pokud je v modré barvě, spotřebovali jste ze sítě více energie, než jste do ní vrátili.",
+ "energy_dependency": "Tato karta ukazuje vaši čistou spotřebu energie.",
+ "grid_neutrality_not_calculated": "Neutralitu sítě nebylo možné vypočítat",
+ "net_consumed_grid": "Čistá spotřeba ze sítě",
+ "net_returned_grid": "Čistá výroba vrácená do sítě",
+ "red_green_color_explain": "Pokud je zelené, znamená to, že jste vyrobili více energie, než jste spotřebovali ze sítě. Pokud je červené, znamená to, že jste část energie spotřebovali ze sítě."
+ },
+ "loading": "Načítání ...",
+ "no_data": "Nejsou k dispozici žádné údaje. Po nastavení energetického panelu může trvat až 2 hodiny, než se objeví nová data.",
+ "no_data_period": "Pro toto období nejsou k dispozici žádné údaje.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "Tato karta ukazuje, kolik sluneční energie, kterou jste vyrobili, spotřebovala vaše domácnost, místo aby se vrátila do sítě.",
+ "card_indicates_solar_energy_used_charge_home_bat": "Pokud je toto číslo obvykle velmi nízké, což znamená přebytek solární produkce, možná byste měli zvážit nabíjení domácí baterie nebo elektromobilu ze solárních panelů v době vysoké solární produkce.",
+ "not_produced_solar_energy": "Nevyrobili jste žádnou solární energii",
+ "self_consumed_solar_could_not_calc": "Vlastní spotřebu solární energie nebylo možné vypočítat",
+ "self_consumed_solar_energy": "Vlastní spotřeba solární energie"
+ }
+ },
+ "entities": {
+ "never_triggered": "Nikdy nespuštěno"
+ },
+ "iframe": {
+ "error_secure_context": "Nelze načíst iframe směřující na webové stránky používající {target_protocol}, pokud je Home Assistant obsluhován přes {context_protocol}."
+ },
+ "map": {
+ "reset_focus": "Obnovit zaostření"
+ },
+ "picture-elements": {
+ "call_service": "Zavolat službu {name}",
+ "hold": "Podržte:",
+ "more_info": "Zobrazit více informací: {name}",
+ "navigate_to": "Přejděte na {location}",
+ "tap": "Klepněte:",
+ "toggle": "Přepnout {name}",
+ "url": "Otevřít okno adresy {url_path}"
+ },
+ "safe-mode": {
+ "description": "Home Assistant se při načítání konfigurace setkal s problémy a nyní běží v nouzovém režimu. Podívejte se do logu chyb a zjistěte, co se pokazilo.",
+ "header": "Nouzový režim aktivován"
+ },
+ "shopping-list": {
+ "add_item": "Přidat položku",
+ "checked_items": "Označené položky",
+ "clear_items": "Vymazat označené položky",
+ "drag_and_drop": "Přetáhnout",
+ "reorder_items": "Změnit pořadí položek"
+ },
+ "show_more_info": "Zobrazit více informací",
+ "starting": {
+ "description": "Home Assistant se spouští, čekejte prosím…"
+ }
+ },
+ "changed_toast": {
+ "message": "Nastavení Lovelace pro tento ovládací panel bylo aktualizováno. Chcete obnovit stránku?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Den",
+ "month": "Měsíc",
+ "next": "Další",
+ "previous": "Předchozí",
+ "today": "Dnes",
+ "week": "Týden",
+ "year": "Rok"
+ },
+ "timestamp-display": {
+ "invalid": "Neplatný čas",
+ "invalid_format": "Neplatný formát zobrazení"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Zavolání služby",
+ "default_action": "Výchozí akce",
+ "more-info": "Více informací",
+ "navigate": "Přechod na jinou stránku",
+ "none": "Žádná akce",
+ "toggle": "Přepínač",
+ "url": "URL adresa"
+ },
+ "navigation_path": "Cesta stránky",
+ "url_path": "Cesta URL"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Dostupné režimy",
+ "description": "Karta Ovládací panel alarmu umožňuje aktivovat či deaktivovat alarm integrovaných zabezpečovacích systémů.",
+ "name": "Ovládací panel alarmu"
+ },
+ "area": {
+ "description": "Karta Oblast automaticky zobrazuje entity konkrétní oblasti.",
+ "name": "Oblast",
+ "show_camera": "Zobrazit obraz z kamery místo obrázku oblasti"
+ },
+ "button": {
+ "default_action_help": "Výchozí akce závisí na vlastnostech entity - bude buď přepnuta, nebo se zobrazí další informace.",
+ "description": "Karta Tlačítko umožňuje přidat tlačítka k provádění úkolů.",
+ "name": "Tlačítko"
+ },
+ "calendar": {
+ "calendar_entities": "Entity kalendáře",
+ "description": "Karta Kalendář zobrazuje kalendář včetně zobrazení dnů, týdnů a seznamů",
+ "inital_view": "Výchozí pohled",
+ "name": "Kalendář",
+ "views": {
+ "dayGridDay": "Den",
+ "dayGridMonth": "Měsíc",
+ "listWeek": "Seznam"
+ }
+ },
+ "conditional": {
+ "card": "Karta",
+ "change_type": "Změnit typ",
+ "condition_explanation": "Karta se zobrazí, když jsou splněny VŠECHNY níže uvedené podmínky.",
+ "conditions": "Podmínky",
+ "current_state": "současné",
+ "description": "Podmínková karta zobrazuje další kartu na základě stavu entity.",
+ "name": "Podmínka",
+ "state_equal": "Stav se rovná",
+ "state_not_equal": "Stav se nerovná"
+ },
+ "config": {
+ "optional": "volitelné",
+ "required": "povinné"
+ },
+ "entities": {
+ "description": "Karta Entity je nejběžnějším typem karty. Seskupuje položky do seznamů.",
+ "edit_special_row": "Použijte tlačítko Upravit k zobrazení podrobností tohoto řádku",
+ "entity_row": {
+ "attribute": "Atribut",
+ "button": "Tlačítko",
+ "buttons": "Tlačítka",
+ "call-service": "Volání služby",
+ "cast": "Cast",
+ "conditional": "Podmínka",
+ "divider": "Oddělovač",
+ "section": "Sekce",
+ "weblink": "Webový odkaz"
+ },
+ "entity_row_editor": "Editor řádku entity",
+ "name": "Entity",
+ "secondary_info_values": {
+ "brightness": "Jas",
+ "entity-id": "ID entity",
+ "last-changed": "Naposledy změněno",
+ "last-triggered": "Naposledy spuštěno",
+ "last-updated": "Naposledy aktualizováno",
+ "none": "Žádné doplňující informace",
+ "position": "Pozice",
+ "tilt-position": "Náklon"
+ },
+ "show_header_toggle": "Zobrazit přepínač záhlaví?",
+ "special_row": "speciální řádek",
+ "toggle": "Přepnout entity."
+ },
+ "entity-filter": {
+ "description": "Karta Filtr entit umožňuje definovat seznam entit, které chcete sledovat pouze v určitém stavu.",
+ "name": "Filtr entit"
+ },
+ "entity": {
+ "description": "Karta Entity vám poskytuje rychlý přehled o stavu vaší entity.",
+ "name": "Entita"
+ },
+ "gauge": {
+ "description": "Karta Ručičkový ukazatel je základní karta pro vizuální zobrazení hodnoty senzoru.",
+ "name": "Ručičkový ukazatel",
+ "needle_gauge": "Zobrazit s ukazatelem?",
+ "severity": {
+ "define": "Definovat závažnost?",
+ "green": "Zelená",
+ "red": "Červená",
+ "yellow": "Žlutá"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Poměr stran",
+ "attribute": "Atribut",
+ "camera_image": "Entita kamery",
+ "camera_view": "Zobrazení kamery",
+ "days_to_show": "Počet dní k zobrazení",
+ "double_tap_action": "Akce při dvojitém poklepání",
+ "entities": "Entity",
+ "entity": "Entita",
+ "hold_action": "Akce při podržení",
+ "hours_to_show": "Hodin k zobrazení",
+ "icon": "Ikona",
+ "icon_height": "Výška ikony",
+ "image": "Cesta obrázku",
+ "manual": "Manuální",
+ "manual_description": "Potřebujete přidat vlastní kartu nebo jen chcete ručně zapsat YAML?",
+ "maximum": "Maximum",
+ "minimum": "Minimum",
+ "name": "Název",
+ "no_theme": "Žádný motiv",
+ "refresh_interval": "Interval obnovení",
+ "search": "Hledat",
+ "secondary_info_attribute": "Sekundární informační atribut",
+ "show_icon": "Zobrazit ikonu?",
+ "show_name": "Zobrazit název?",
+ "show_state": "Zobrazit stav?",
+ "state": "Stav",
+ "state_color": "Barevné ikony dle stavu?",
+ "tap_action": "Akce při stisknutí",
+ "theme": "Motiv",
+ "title": "Název",
+ "unit": "Jednotka",
+ "url": "URL adresa"
+ },
+ "glance": {
+ "columns": "Sloupce",
+ "description": "Karta Náhled je užitečná pro seskupení více senzorů v kompaktním přehledu.",
+ "name": "Rychlý náhled"
+ },
+ "grid": {
+ "columns": "Sloupce",
+ "description": "Karta Mřížka umožňuje zobrazit více karet v mřížce.",
+ "name": "Mřížka",
+ "square": "Vykreslit karty jako čtverce"
+ },
+ "history-graph": {
+ "description": "Karta Graf historie umožňuje zobrazit graf pro každou z uvedených entit.",
+ "name": "Graf historie"
+ },
+ "horizontal-stack": {
+ "description": "Karta Horizontální Stack umožňuje seskupovat více karet tak, že jsou vždy zobrazeny vedle sebe v prostoru šířky jednoho sloupce.",
+ "name": "Horizontální uskupení"
+ },
+ "humidifier": {
+ "description": "Karta zvlhčovače poskytuje kontrolu nad vaší entitou zvlhčovače. Umožní vám změnit vlhkost a režim entity.",
+ "name": "Zvlhčovač"
+ },
+ "iframe": {
+ "description": "Karta Webová stránka umožňuje vložit oblíbenou webovou stránku přímo do Home Assistanta.",
+ "name": "Webová stránka"
+ },
+ "light": {
+ "description": "Karta Světlo umožňuje změnit jas světla.",
+ "name": "Světlo"
+ },
+ "logbook": {
+ "description": "Karta Záznamy zobrazuje seznam událostí entit.",
+ "name": "Záznamy"
+ },
+ "map": {
+ "dark_mode": "Tmavý režim?",
+ "default_zoom": "Výchozí zvětšení",
+ "description": "Karta Mapa umožňuje zobrazit entity na mapě.",
+ "geo_location_sources": "Zdroje geolokace",
+ "hours_to_show": "Hodin k zobrazení",
+ "name": "Mapa",
+ "source": "Zdroj"
+ },
+ "markdown": {
+ "content": "Obsah",
+ "description": "Karta Markdown se používá k vykreslení Markdown.",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "description": "Karta Media Control se používá k zobrazení entit přehrávače médií na rozhraní se snadno použitelnými ovládacími prvky.",
+ "name": "Řízení médií"
+ },
+ "picture-elements": {
+ "description": "Karta Obrázkové elementy je jednou z nejvšestrannějších typů karet. Karta umožňuje umisťovat ikony, text nebo dokonce služby pomocí souřadnic do obrázku.",
+ "name": "Obrázkové elementy"
+ },
+ "picture-entity": {
+ "description": "Karta Obrázková entita zobrazuje entitu ve formě obrázku. Namísto obrázků z adresy URL může také zobrazit obrázek entit kamery.",
+ "name": "Obrazková entita"
+ },
+ "picture-glance": {
+ "description": "Karta Obrázkový náhled zobrazuje obrázek a odpovídající stav entity jako ikonu. Entity na pravé straně umožňují přepínání, jiné zobrazují dialogové okno s více informacemi.",
+ "name": "Obrázkový náhled",
+ "state_entity": "Stav entity"
+ },
+ "picture": {
+ "description": "Karta Obrázek vám umožňuje nastavit obrázek, který se použije pro navigaci na různá místa v rozhraní nebo pro volání služby.",
+ "name": "Obrázek"
+ },
+ "plant-status": {
+ "description": "Karta Stav rostliny je pro všechny naše úžasné botaniky.",
+ "name": "Stav rostliny"
+ },
+ "sensor": {
+ "description": "Karta Sensor poskytuje rychlý přehled o stavu senzorů s volitelným grafem pro vizualizaci změn v průběhu času.",
+ "graph_type": "Typ grafu",
+ "name": "Senzor",
+ "show_more_detail": "Zobrazit více podrobností"
+ },
+ "shopping-list": {
+ "description": "Karta Nákupní seznam umožňuje přidávat, upravovat, odškrtávat a mazat položky z nákupního seznamu.",
+ "integration_not_loaded": "Tato karta vyžaduje integraci `shopping_list`.",
+ "name": "Nákupní seznam"
+ },
+ "statistics-graph": {
+ "description": "Karta Statistický graf umožňuje zobrazit graf statistik pro každou z uvedených entit.",
+ "name": "Statistický graf",
+ "period": "Období",
+ "periods": {
+ "5minute": "5 minut",
+ "day": "Den",
+ "hour": "Hodina",
+ "month": "Měsíc"
+ }
+ },
+ "thermostat": {
+ "description": "Karta Termostat poskytuje kontrolu nad vaší klimatickou entitou. Umožňuje změnit teplotu a režim entity.",
+ "name": "Termostat"
+ },
+ "vertical-stack": {
+ "description": "Karta Vertical Stack umožňuje seskupovat více karet tak, že jsou vždy zobrazeny ve stejném sloupci.",
+ "name": "Svislá sada"
+ },
+ "weather-forecast": {
+ "description": "Karta Předpověď počasí zobrazuje počasí. Velmi užitečná pro použití v rozhraní, které lidé zobrazují na zdi.",
+ "name": "Předpověď počasí",
+ "show_both": "Zobrazit aktuální počasí a předpověď",
+ "show_forecast": "Zobrazit předpověď",
+ "show_only_current": "Zobrazit pouze aktuální počasí",
+ "show_only_forecast": "Zobrazit pouze předpověď"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Podle karty",
+ "by_entity": "Podle entity",
+ "custom_card": "Vlastní",
+ "domain": "Doména",
+ "entity": "Entita",
+ "no_description": "Žádný popis není k dispozici."
+ },
+ "common": {
+ "add": "Přidat",
+ "clear": "Vymazat",
+ "edit": "Upravit",
+ "none": "Žádný"
+ },
+ "edit_badges": {
+ "panel_mode": "Tyto odznaky se nebudou zobrazovat, protože pohled má nastaven režim \"Panel\".",
+ "view_no_badges": "Odznaky nejsou aktuálním typem zobrazení podporovány."
+ },
+ "edit_card": {
+ "add": "Přidat kartu",
+ "clear": "Vymazat",
+ "confirm_cancel": "Opravdu chcete zahodit změny?",
+ "delete": "Smazat kartu",
+ "duplicate": "Duplikovat kartu",
+ "edit": "Upravit",
+ "header": "Nastavení karty",
+ "move": "Přesunout",
+ "move_after": "Posunout kartu za",
+ "move_before": "Posunout kartu před",
+ "move_down": "Posunout kartu níže",
+ "move_up": "Posunout kartu výše",
+ "options": "Více možností",
+ "pick_card": "Kterou kartu chcete přidat?",
+ "pick_card_view_title": "Kterou kartu byste chtěli přidat do svého {name} pohledu?",
+ "search_cards": "Hledat karty",
+ "show_code_editor": "Zobrazit editor kódu",
+ "show_visual_editor": "Zobrazit vizuální editor",
+ "toggle_editor": "Přepnout Editor",
+ "typed_header": "Nastavení karty {type}",
+ "unsaved_changes": "Změny nejsou uloženy"
+ },
+ "edit_lovelace": {
+ "edit_title": "Upravit titulek",
+ "explanation": "Tento název je zobrazen nad všemi vašimi zobrazeními v Lovelace.",
+ "header": "Název vašeho uživatelského rozhraní Lovelace",
+ "title": "Název"
+ },
+ "edit_view": {
+ "add": "Přidat pohled",
+ "delete": "Odstranit pohled",
+ "edit": "Upravit pohled",
+ "header": "Zobrazit nastavení",
+ "header_name": "Zobrazit nastavení {name}",
+ "move_left": "Posunout pohled doleva",
+ "move_right": "Posunout pohled doprava",
+ "tab_badges": "Odznaky",
+ "tab_settings": "Nastavení",
+ "tab_visibility": "Viditelnost",
+ "type": "Typ zobrazení",
+ "types": {
+ "masonry": "Vyzdění (výchozí)",
+ "panel": "Panel (1 karta)",
+ "sidebar": "Postranní panel"
+ },
+ "visibility": {
+ "select_users": "Vyberte, kteří uživatelé by měli vidět tento pohled v navigaci"
+ }
+ },
+ "header": "Upravit UI",
+ "header-footer": {
+ "choose_header_footer": "Vyberte {type}",
+ "footer": "Zápatí",
+ "header": "Záhlaví",
+ "types": {
+ "buttons": {
+ "name": "Tlačítka"
+ },
+ "graph": {
+ "name": "Graf"
+ },
+ "picture": {
+ "name": "Obrázek"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Správa ovládacích panelů",
+ "manage_resources": "Správa zdrojů",
+ "open": "Otevřít Lovelace menu",
+ "raw_editor": "Editor kódu nastavení"
+ },
+ "migrate": {
+ "header": "Nastavení není kompatibilní",
+ "migrate": "Migrovat nastavení",
+ "para_migrate": "Home Assistant může automaticky přidat ID ke všem vašim kartám a pohledům stisknutím tlačítka \"Migrovat nastavení\".",
+ "para_no_id": "Tento prvek nemá ID. Přidejte k tomuto prvku ID v 'ui-lovelace.yaml'."
+ },
+ "move_card": {
+ "header": "Vyberte pohled, do kterého chcete kartu přesunout"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Pokud odeberete nastavení uživatelského rozhraní Lovelace, automaticky vygenerujeme pohledy Lovelace s vašimi oblastmi a zařízeními.",
+ "confirm_remove_config_title": "Opravdu chcete odstranit nastavení uživatelského rozhraní Lovelace?",
+ "confirm_unsaved_changes": "Máte neuložené změny. Opravdu chcete odejít?",
+ "confirm_unsaved_comments": "Vaše konfigurace obsahuje komentáře, které se neuloží. Chcete pokračovat?",
+ "error_invalid_config": "Vaše konfigurace není platná: {error}",
+ "error_parse_yaml": "Chyba při parsování YAML: {error}",
+ "error_remove": "Nelze odstranit nastavení: {error}",
+ "error_save_yaml": "Nelze uložit YAML: {error}",
+ "header": "Upravit nastavení",
+ "lovelace_changed": "Konfigurace Lovelace byla aktualizována, chcete načíst aktualizovanou konfiguraci do editoru a přijít o aktuální změny?",
+ "reload": "Nově načíst",
+ "resources_moved": "Zdroje by již neměly být přidávány do konfigurace Lovelace, ale mohou být přidávány v panelu nastavení Lovelace.",
+ "save": "Uložit",
+ "saved": "Uloženo",
+ "unsaved_changes": "Neuložené změny"
+ },
+ "save_config": {
+ "close": "Zavřít",
+ "empty_config": "Začít s prázdným ovládacím panel",
+ "header": "Převzít kontrolu nad vaší Lovelace UI",
+ "para": "Tento ovládací panel momentálně spravuje Home Assistant. Je automaticky aktualizován při přidání nové entity nebo Lovelace komponenty. Pokud převezmete kontrolu, nebudeme již provádět změny automaticky za vás. Vždy si můžete vytvořit nový ovládací panel na hraní.",
+ "para_sure": "Opravdu chcete převzít kontrolu nad uživalským rozhraním ?",
+ "save": "Převzít kontrolu",
+ "yaml_config": "Abyste mohli snadněji začít, zde je aktuální nastavení tohoto ovládacího panelu:",
+ "yaml_control": "Chcete-li převzít kontrolu v režimu YAML, vytvořte soubor YAML s názvem, který jste uvedli ve svém nastavení pro tento ovládací panel, nebo výchozí \"ui-lovelace.yaml\".",
+ "yaml_mode": "Používáte režim YAML, což znamená, že nemůžete změnit nastavení Lovelace z uživatelského rozhraní. Pokud chcete měnit Lovelace z uživatelského rozhraní, odstraňte \"mode: yaml\" z vašeho nastavení Lovelace v \"configuration.yaml\"."
+ },
+ "select_view": {
+ "dashboard_label": "Ovládací panel",
+ "header": "Vyberte pohled",
+ "views_label": "Pohled"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Editor zápatí",
+ "header": "Editor záhlaví",
+ "row": "Editor řádku entity"
+ }
+ },
+ "suggest_card": {
+ "add": "Přidat do Lovelance",
+ "create_own": "Vytvořit vlastní",
+ "header": "Vytvořili jsme pro vás návrh"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Toto zobrazení obsahuje více než jednu kartu, ale v panelovém zobrazení může zobrazovat pouze 1 kartu."
+ }
+ }
+ },
+ "menu": {
+ "close": "Zavřít",
+ "configure_ui": "Upravit ovládací panel",
+ "exit_edit_mode": "Hotovo",
+ "help": "Nápověda",
+ "reload_resources": "Nově načíst zdroje",
+ "start_conversation": "Zahájit konverzaci"
+ },
+ "reload_lovelace": "Nově načíst Lovelace",
+ "reload_resources": {
+ "refresh_body": "Chcete-li dokončit nové načtení, musíte stránku onovit. Chcete ji nyní obnovit?",
+ "refresh_header": "Chcete aktualizovat stránku?"
+ },
+ "unused_entities": {
+ "available_entities": "Toto jsou entity, které máte k dispozici, ale dosud nejsou ve vašem uživatelském rozhraní Lovelace.",
+ "domain": "Doména",
+ "entity": "Entita",
+ "entity_id": "ID entity",
+ "last_changed": "Naposledy změněno",
+ "no_data": "Nebyly nalezeny žádné nepoužívané entity",
+ "search": "Hledat entitu",
+ "select_to_add": "Vyberte entity, které chcete přidat do karty, a poté klikněte na tlačítko přidat kartu.",
+ "title": "Nepoužité entity"
+ },
+ "views": {
+ "confirm_delete": "Odstranit zobrazení?",
+ "confirm_delete_existing_cards": "Odstraněním tohoto pohledu dojde také k odebrání karet",
+ "confirm_delete_existing_cards_text": "Opravdu chcete smazat pohled ''{name}''? Pohled obsahuje {number} karty, které budou smazány. Tuto akci nelze vrátit zpět.",
+ "confirm_delete_text": "Opravdu chcete smazat pohled ''{name}''?"
+ },
+ "warning": {
+ "attribute_not_found": "Atribut {attribute} není k dispozici v: {entity}",
+ "entity_non_numeric": "Entita není číselná: {entity}",
+ "entity_not_found": "Entita není k dispozici: {entity}",
+ "entity_unavailable": "Entita není aktuálně dostupná: {entity}",
+ "starting": "Home Assistant se spouští, vše ještě nemusí být dostupné"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Smazat",
+ "delete_prompt": "Smazat tuto zprávu?",
+ "empty": "Nemáte žádné zprávy",
+ "playback_title": "Přehrávání zpráv"
+ },
+ "map": {
+ "edit_zones": "Upravit zóny"
+ },
+ "my": {
+ "component_not_loaded": "Toto přesměrování není vaší instancí Home Assistant podporováno. Potřebujete integraci \"{integration}\", aby šlo použít toto přesměrování.",
+ "documentation": "dokumentace",
+ "error": "Nastala neznámá chyba",
+ "faq_link": "Časté dotazy týkající se My Home Assistant",
+ "no_supervisor": "Toto přesměrování není podporováno vaší instalací Home Assistant. Potřebuje buď operační systém Home Assistant, nebo metodu instalace Home Assistant Supervised. Další informace naleznete na {docs_link}.",
+ "not_supported": "Toto přesměrování není vaší instancí Home Assistant podporováno. Zkontrolujte {link} pro podporovaná přesměrování a verzi, ve které byla zavedena."
+ },
+ "page-authorize": {
+ "abort_intro": "Přihlášení bylo zrušeno",
+ "authorizing_client": "Chystáte se dát {clientId} práva pro instanci Home Assistant.",
+ "form": {
+ "error": "Chyba: {error}",
+ "next": "Přihlásit",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Relace vypršela, přihlaste se prosím znovu."
+ },
+ "error": {
+ "invalid_auth": "Neplatné uživatelské jméno či heslo",
+ "invalid_code": "Neplatný ověřovací kód"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Heslo",
+ "username": "Uživatelské jméno"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Dvoufaktorový ověřovací kód"
+ },
+ "description": "Otevřete **{mfa_module_name}** na vašem zařízení pro zobrazení dvoufaktorového ověřovacího kódu a ověřte vaší identitu:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Relace vypršela, přihlaste se prosím znovu."
+ },
+ "error": {
+ "invalid_auth": "Neplatné uživatelské jméno či heslo",
+ "invalid_code": "Neplatný ověřovací kód"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Heslo",
+ "username": "Uživatelské jméno"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Dvoufaktorový ověřovací kód"
+ },
+ "description": "Otevřete **{mfa_module_name}** na vašem zařízení pro zobrazení dvoufaktorového ověřovacího kódu a ověřte vaší identitu:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Relace vypršela, přihlaste se prosím znovu.",
+ "no_api_password_set": "Nemáte nastavené heslo k API."
+ },
+ "error": {
+ "invalid_auth": "Neplatné heslo API",
+ "invalid_code": "Neplatný ověřovací kód"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Heslo API"
+ },
+ "description": "Zadejte heslo k API ve svém nastavení HTTP:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Dvoufaktorový ověřovací kód"
+ },
+ "description": "Otevřete **{mfa_module_name}** na vašem zařízení pro zobrazení dvoufaktorového ověřovacího kódu a ověřte vaší identitu:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Váš počítač není povolen."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Uživatel"
+ },
+ "description": "Vyberte uživatele, za kterého se chcete přihlásit:"
+ }
+ }
+ }
+ },
+ "start_over": "Začít znovu",
+ "unknown_error": "Něco se pokazilo",
+ "working": "Počkejte prosím"
+ },
+ "initializing": "Inicializuji",
+ "logging_in_to_with": "Přihlášení k **{locationName}** pomocí **{authProviderName}**.",
+ "logging_in_with": "Přihlásit se pomocí **{authProviderName}**.",
+ "pick_auth_provider": "Nebo se přihlaste s",
+ "store_token": "Zůstat přihlášený"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "od {name}",
+ "introduction": "Vítejte doma! Dostali jste se do demoverze Home Assistant, kde prezentujeme nejlepší uživatelská rozhraní vytvořená komunitou.",
+ "learn_more": "Další informace o Home Assistant",
+ "next_demo": "Další demo"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Aktivita",
+ "air": "Vzduch",
+ "commute_home": "Matka kotiin",
+ "entertainment": "Zábava",
+ "hdmi_input": "Vstup HDMI",
+ "hdmi_switcher": "Přepínač HDMI",
+ "information": "Informace",
+ "lights": "Světla",
+ "morning_commute": "Työmatka aamulla",
+ "total_tv_time": "Celkový čas strávený u televize",
+ "turn_tv_off": "Vypnout televizi",
+ "volume": "Hlasitost"
+ },
+ "names": {
+ "family_room": "Obývací pokoj",
+ "hallway": "Chodba",
+ "kitchen": "Kuchyně",
+ "left": "Vlevo",
+ "master_bedroom": "Hlavní ložnice",
+ "mirror": "Zrcadlo",
+ "patio": "Terasa",
+ "right": "Vpravo",
+ "temperature_study": "Studie teploty",
+ "upstairs": "Poschodí"
+ },
+ "unit": {
+ "minutes_abbr": "min",
+ "watching": "sledování"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Další"
+ },
+ "core-config": {
+ "button_detect": "Rozpoznat",
+ "finish": "Další",
+ "intro": "Dobrý den, {name} , vítejte v Home Assistant. Jak byste chtěli pojmenovat svůj domov?",
+ "intro_location": "Rádi bychom věděli, kde žijete. Tyto informace pomohou při zobrazování informací a určování přesné polohy slunce. Tato data nejsou nikdy sdílena mimo vaši síť.",
+ "intro_location_detect": "Můžeme vám pomoci vyplnit tyto informace jednorázovým požadavkem na externí službu.",
+ "location_name": "Název vaší instalace Home Assistant",
+ "location_name_default": "Domov"
+ },
+ "finish": "Dokončit",
+ "integration": {
+ "finish": "Dokončit",
+ "intro": "Zařízení a služby jsou v Home Assistant reprezentovány jako integrace. Ty můžete nastavit nyní nebo později v nastavení.",
+ "more_integrations": "Více"
+ },
+ "intro": "Jste připraveni oživit svůj domov, zachovat si své soukromí a připojit se k celosvětové komunitě tvůrců?",
+ "next": "Další",
+ "restore": {
+ "addons": "Doplňky",
+ "confirm_password": "Potvrďte heslo zálohy",
+ "description": "Případně můžete provést obnovu z předchozí zálohy.",
+ "folders": "Složky",
+ "full_backup": "Úplná záloha",
+ "hide_log": "Skrýt celý log",
+ "in_progress": "Probíhá obnovení",
+ "partial_backup": "Částečná záloha",
+ "password": "Heslo zálohy",
+ "password_protection": "Ochrana heslem",
+ "select_type": "Vyberte, co chcete obnovit",
+ "show_log": "Zobrazit celý log",
+ "type": "Typ zálohy"
+ },
+ "user": {
+ "create_account": "Vytvořit účet",
+ "data": {
+ "name": "Jméno",
+ "password": "Heslo",
+ "password_confirm": "Potvrzení hesla",
+ "username": "Uživatelské jméno"
+ },
+ "error": {
+ "password_not_match": "Hesla se neshodují",
+ "required_fields": "Vyplňte všechna povinná pole"
+ },
+ "intro": "Začněme tím, že vytvoříme uživatelský účet.",
+ "required_field": "Povinné"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Home Assistant standardně skrývá pokročilé funkce a předvolby. Zapnutím této funkce je můžete zpřístupnit. Toto nastavení je specifické pro každého uživatele a neovlivňuje ostatní uživatele Home Assistantu.",
+ "link_promo": "Další informace",
+ "title": "Pokročilý režim"
+ },
+ "change_password": {
+ "confirm_new_password": "Potvrďte nové heslo",
+ "current_password": "Současné heslo",
+ "error_new_is_old": "Nové heslo se musí lišit od aktuálního hesla",
+ "error_new_mismatch": "Zadaná nová hesla se neshodují",
+ "error_required": "Povinné",
+ "header": "Změnit heslo",
+ "new_password": "Nové heslo",
+ "submit": "Odeslat",
+ "success": "Heslo bylo úspěšně změněno"
+ },
+ "current_user": "Nyní jste přihlášeni jako {fullName}.",
+ "customize_sidebar": {
+ "button": "Upravit",
+ "description": "Režim úprav můžete aktivovat také stisknutím a podržením záhlaví postranního panelu.",
+ "header": "Změna pořadí a skrytí položek postranního panelu"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Přehled (výchozí)",
+ "description": "Vyberte výchozí ovládací panel pro toto zařízení.",
+ "dropdown_label": "Ovládací panel",
+ "header": "Ovládací panel"
+ },
+ "enable_shortcuts": {
+ "description": "Povolte nebo zakažte klávesové zkratky pro provádění různých akcí v uživatelském rozhraní.",
+ "header": "Klávesové zkratky"
+ },
+ "force_narrow": {
+ "description": "Tato volba skryje postranním panelu jako výchozí nastavení, podobně jako na mobilním zažízení.",
+ "header": "Vždy skrýt postranní panel"
+ },
+ "is_owner": "Jste vlastník.",
+ "language": {
+ "dropdown_label": "Jazyk",
+ "header": "Jazyk",
+ "link_promo": "Pomoc s překladem"
+ },
+ "logout": "Odhlásit",
+ "logout_text": "Opravdu se chcete odhlásit?",
+ "logout_title": "Odhlásit se?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Opravdu chcete smazat přístupový token pro {name} ?",
+ "create": "Vytvořte token",
+ "create_failed": "Nepodařilo se vytvořit přístupový token.",
+ "created": "Vytvořeno {date}",
+ "delete_failed": "Nepodařilo se odstranit přístupový token.",
+ "description": "Vytvořte přístupové tokeny s dlouhou životností, aby vaše skripty mohly komunikovat s instancí Home Assistant. Každý token bude platný po dobu 10 let od vytvoření. Tyto tokeny s dlouhou životností jsou v současné době aktivní.",
+ "empty_state": "Zatím nemáte žádné dlouhodobé přístupové tokeny.",
+ "header": "Tokeny s dlouhou životností",
+ "learn_auth_requests": "Naučte se, jak posílat ověřené požadavky.",
+ "name": "Název",
+ "prompt_copy_token": "Zkopírujte přístupový token. Už nikdy nebude znovu zobrazen.",
+ "prompt_name": "Pojmenujte token"
+ },
+ "mfa": {
+ "confirm_disable": "Opravdu chcete zakázat {name}?",
+ "disable": "Zakázat",
+ "enable": "Povolit",
+ "header": "Multifaktorové autentizační moduly"
+ },
+ "mfa_setup": {
+ "close": "Zavřít",
+ "step_done": "Dokončen krok {step}",
+ "submit": "Odeslat",
+ "title_aborted": "Zrušeno",
+ "title_success": "Úspěch!"
+ },
+ "number_format": {
+ "description": "Zvolte způsob formátování čísel.",
+ "dropdown_label": "Formát čísel",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Automaticky (dle nastaveného jazyka)",
+ "none": "Žádný",
+ "space_comma": "1 234 567,89",
+ "system": "Dle systému"
+ },
+ "header": "Formát čísel"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Jméno zařízení",
+ "title": "Jak by se toto zařízení mělo jmenovat?"
+ },
+ "description": "Posílat oznámení na toto zařízení",
+ "error_load_platform": "Nastavit notify.html5.",
+ "error_use_https": "Vyžaduje SSL pro frontend.",
+ "header": "Push notifikace",
+ "link_promo": "Další informace",
+ "push_notifications": "Push notifikace"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Opravdu chcete odstranit token pro {name}?",
+ "created_at": "Vytvořeno {date}",
+ "current_token_tooltip": "Nelze odstranit aktuální obnovení tokenu",
+ "delete_failed": "Nepodařilo se smazat token.",
+ "description": "Každý obnovovací token představuje relaci přihlášení. Obnovovací tokeny budou automaticky odstraněny po klepnutí na tlačítko Odhlásit. Pro váš účet jsou v současné době aktivní následující obnovovací tokeny:",
+ "header": "Obnovovací tokeny",
+ "last_used": "Naposledy použito {date} z {location}",
+ "not_used": "Nikdy nebylo použito",
+ "token_title": "Obnovovací token pro {clientId}"
+ },
+ "suspend": {
+ "description": "Měli bychom ukončit spojení se serverem, pokud není Home Assistant viditelný po dobu delší než 5 minut?",
+ "header": "Automaticky ukončovat spojení"
+ },
+ "themes": {
+ "accent_color": "Doplňková barva",
+ "dark_mode": {
+ "auto": "Automaticky",
+ "dark": "Tmavý",
+ "light": "Světlý"
+ },
+ "dropdown_label": "Motiv",
+ "error_no_theme": "Žádné motivy nejsou k dispozici.",
+ "header": "Motiv",
+ "link_promo": "Další info o motivech",
+ "primary_color": "Základní barva",
+ "reset": "Obnovit"
+ },
+ "time_format": {
+ "description": "Zvolte způsob formátování času.",
+ "dropdown_label": "Formát času",
+ "formats": {
+ "12": "12hodinový (AM/PM)",
+ "24": "24hodinový",
+ "language": "Automaticky (dle nastaveného jazyka)",
+ "system": "Dle systému"
+ },
+ "header": "Formát času"
+ },
+ "vibrate": {
+ "description": "Povolit nebo zakázat vibrace na tomto zařízení při ovládání ostatních zařízení.",
+ "header": "Vibrovat"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Zahájit konverzaci"
+ }
+ },
+ "sidebar": {
+ "done": "Hotovo",
+ "external_app_configuration": "Nastavení aplikace",
+ "hide_panel": "Skrýt panel",
+ "show_panel": "Zobrazit panel",
+ "sidebar_toggle": "Přepínač postranního panelu"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/cy.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/cy.json
new file mode 100644
index 00000000..7944a6ef
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/cy.json
@@ -0,0 +1,1284 @@
+{
+ "groups": {
+ "system-admin": "Gweinyddwyr",
+ "system-read-only": "Defnyddwyr Darllen yn Unig",
+ "system-users": "Defnyddwyr"
+ },
+ "panel": {
+ "config": "Ffurfweddu",
+ "developer_tools": "Offer datblygwr",
+ "history": "Hanes",
+ "logbook": "Llyfr llogi",
+ "mailbox": "Blwch post",
+ "map": "Map",
+ "shopping_list": "Rhestr siopa",
+ "states": "Trosolwg"
+ },
+ "state": {
+ "default": {
+ "unavailable": "Ddim ar gael",
+ "unknown": "Anhysbys"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Awto",
+ "off": "I ffwrdd",
+ "on": "Ar"
+ },
+ "preset_mode": {
+ "activity": "Gweithgaredd",
+ "away": "I ffwrdd",
+ "boost": "Cynydd",
+ "comfort": "Cyfforddus",
+ "eco": "Eco",
+ "home": "Cartref",
+ "none": "Dim",
+ "sleep": "Cysgu"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Arfogi",
+ "armed_away": "Arfogi",
+ "armed_custom_bypass": "Arfogi",
+ "armed_home": "Arfogi",
+ "armed_night": "Arfogi",
+ "arming": "Arfogi",
+ "disarmed": "Diarfogi",
+ "disarming": "Diarfogi",
+ "pending": "Disgwyl",
+ "triggered": "Sbarduno"
+ },
+ "default": {
+ "entity_not_found": "Heb ganfod endid",
+ "error": "Gwall",
+ "unavailable": "off",
+ "unknown": "?"
+ },
+ "device_tracker": {
+ "home": "Gartref",
+ "not_home": "I ffwrdd"
+ },
+ "person": {
+ "home": "Gartref",
+ "not_home": "I ffwrdd"
+ }
+ },
+ "ui": {
+ "card": {
+ "alarm_control_panel": {
+ "arm_custom_bypass": "Ffordd osgoi personol",
+ "arm_night": "Larwm nos"
+ },
+ "camera": {
+ "not_available": "Delwedd ddim ar gael"
+ },
+ "climate": {
+ "preset_mode": "Rhagosodiad"
+ },
+ "persistent_notification": {
+ "dismiss": "Anwybyddu"
+ },
+ "scene": {
+ "activate": "Actifadu"
+ },
+ "water_heater": {
+ "away_mode": "Dull i ffwrdd",
+ "currently": "Ar hyn o bryd",
+ "on_off": "Ar / i ffwrdd",
+ "operation": "Gweithredu",
+ "target_temperature": "Tymheredd targed"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Pwysedd aer",
+ "humidity": "Lleithder",
+ "precipitation": "Dyodiad",
+ "temperature": "Tymheredd",
+ "visibility": "Gwelededd",
+ "wind_speed": "Cyflymder gwynt"
+ },
+ "cardinal_direction": {
+ "e": "D",
+ "ene": "DGDd",
+ "ese": "DDDd",
+ "n": "G",
+ "ne": "GDd",
+ "nne": "GGDd",
+ "nnw": "GGO",
+ "nw": "GO",
+ "s": "D",
+ "se": "DDd",
+ "sse": "DDDd",
+ "ssw": "DDO",
+ "sw": "DO",
+ "w": "G",
+ "wnw": "GGO",
+ "wsw": "GDO"
+ },
+ "forecast": "Rhagolwg",
+ "high": "Uchel",
+ "low": "Isel"
+ }
+ },
+ "common": {
+ "cancel": "Canslo",
+ "delete": "Dileu",
+ "loading": "Llwytho",
+ "save": "Arbed",
+ "successfully_deleted": "Dileuwyd yn llwyddiannus",
+ "undo": "Dad-wneud"
+ },
+ "components": {
+ "device-picker": {
+ "device": "Dyfais"
+ },
+ "entity": {
+ "entity-picker": {
+ "entity": "Endid"
+ }
+ },
+ "logbook": {
+ "messages": {
+ "became_unavailable": "Daeth anargael",
+ "changed_to_state": "wedi newid i {state}",
+ "cleared_device_class": "clirio (ni ganfuwyd {device_class})",
+ "detected_device_class": "canfodwyd {device_class}",
+ "turned_off": "i ffwrdd",
+ "turned_on": "troi ymlaen",
+ "was_at_home": "oedd gartref",
+ "was_closed": "oedd ar gau",
+ "was_locked": "wedi'i gloi",
+ "was_opened": "agorwyd",
+ "was_plugged_in": "oedd wedi'i gysylltu",
+ "was_safe": "yn ddiogel",
+ "was_unlocked": "wedi'i ddatgloi",
+ "was_unplugged": "wedi'i ddatgysylltu",
+ "was_unsafe": "yn anniogel"
+ }
+ },
+ "relative_time": {
+ "future_duration": {
+ "day": "Mewn {count} {count, plural,\n one {day}\n other {days}\n}",
+ "week": "Mewn {count} {count, plural,\n one {week}\n other {weeks}\n}"
+ }
+ },
+ "service-picker": {
+ "service": "Gwasanaeth"
+ },
+ "user-picker": {
+ "add_user": "Ychwanegu defnyddiwr",
+ "no_user": "Dim defnyddiwr",
+ "remove_user": "Tynnu defnyddiwr"
+ }
+ },
+ "dialogs": {
+ "entity_registry": {
+ "editor": {
+ "delete": "Dileu",
+ "icon": "Eicon",
+ "name": "Enw",
+ "update": "Diweddariad"
+ },
+ "faq": "Dogfennaeth",
+ "no_unique_id": "Nid oes gan yr endid hwn ID unigryw, felly ni ellir rheoli ei osodiadau o'r UI."
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Gwerth cychwynnol",
+ "maximum": "Gwerth mwyaf",
+ "minimum": "Gwerth lleiaf",
+ "restore": "Adfer y gwerth hysbys diwethaf pan fydd Home Assistant yn cychwyn",
+ "step": "Maint cam"
+ },
+ "input_datetime": {
+ "date": "Dyddiad",
+ "datetime": "Dyddiad ac amser",
+ "mode": "Beth ydych chi eisiau roid fel mewnbwn",
+ "time": "Amser"
+ },
+ "input_number": {
+ "step": "Maint y cam"
+ },
+ "input_text": {
+ "max": "Hyd mwyaf",
+ "min": "Hyd lleiaf"
+ },
+ "platform_not_loaded": "Nid yw'r integreiddiad {platform} wedi'i lwytho. Ychwanegwch eich cyfluniad ato naill ai trwy ychwanegu 'default_config:' neu ''{platform}:''.",
+ "timer": {
+ "duration": "Hyd"
+ },
+ "yaml_not_editable": "Ni ellir olygu gosodiadau'r endid hwn o'r UI. Dim ond endidau a sefydlwyd o'r UI y gellir eu ffurfweddu o'r UI."
+ },
+ "more_info_control": {
+ "dismiss": "Gwrthod deialog",
+ "last_changed": "Newidiwyd ddiwethaf",
+ "script": {
+ "last_action": "Gweithrediad diwethaf"
+ },
+ "settings": "Gosodiadau endid",
+ "sun": {
+ "elevation": "Uchder",
+ "rising": "Cynyddu",
+ "setting": "Gosod"
+ },
+ "updater": {
+ "title": "Diweddaru Cyfarwyddiadau"
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "reload": {
+ "filesize": "Ailgychwyn endidau maint ffeil",
+ "history_stats": "Ail-lwytho endidau ystadegau hanes",
+ "homekit": "Ail-lwytho HomeKit",
+ "min_max": "AIl-lwytho endidau lleiaf/uchaf",
+ "mqtt": "Ailgychwyn endidau mqtt wedi'u ffurfweddu",
+ "ping": "Ailgychwyn endidau sensor ping binary",
+ "rpi_gpio": "Ailgychwyn endidau GPIO Raspberry Pi",
+ "smtp": "Ailgychwyn gwasanaethau hysbysu smtp",
+ "telegram": "Ailgychwyn gwasanaethau hysbysu telegram",
+ "trend": "Ail-lwytho endidau tuedd"
+ },
+ "server_control": {
+ "perform_action": "{action} Gweinydd",
+ "restart": "Ailgychwyn",
+ "stop": "Stop"
+ }
+ },
+ "filter_placeholder": "Hidlo Endid"
+ },
+ "voice_command": {
+ "label": "Teipiwch gwestiwn a gwasgwch 'Enter'",
+ "label_voice": "Teipiwch a pwyswch 'Enter' neu tapiwch y meicroffon i siarad"
+ }
+ },
+ "duration": {
+ "second": "Eiliad"
+ },
+ "login-form": {
+ "log_in": "Mewngofnodi",
+ "password": "Cyfrinair",
+ "remember": "Cofiwch"
+ },
+ "notification_drawer": {
+ "close": "Cau",
+ "dismiss_all": "Diystyru popeth"
+ },
+ "notification_toast": {
+ "dismiss": "Gwrthod"
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Opsiynau ffurfweddu ar goll? Galluogi modd uwch ymlaen",
+ "link_profile_page": "eich tudalen proffil"
+ },
+ "areas": {
+ "caption": "Gofrestrfa ardal",
+ "data_table": {
+ "area": "Ardal",
+ "devices": "Dyfeisiau"
+ },
+ "delete": {
+ "confirmation_text": "Bydd pob dyfais yn yr ardal hon yn cael ei ddadneilltuo.",
+ "confirmation_title": "Ydych chi'n siŵr bod chi eisiau dileu'r ardal hon?"
+ },
+ "description": "Trosolwg o bob ardal yn eich cartref.",
+ "editor": {
+ "create": "Creu",
+ "delete": "Dileu",
+ "update": "Diweddaru"
+ },
+ "picker": {
+ "create_area": "Creu Ardal",
+ "header": "Gofrestrfa ardal",
+ "integrations_page": "Tudalen rhyngwynebu",
+ "introduction": "Defnyddir ardaloedd i drefnu lle mae dyfeisiau. Defnyddir y wybodaeth hon drwy gydol Home Assistant i helpu chi i drefnu eich rhyngwyneb, caniatadau ac integreiddio â systemau eraill.",
+ "introduction2": "I osod dyfeisiau mewn ardal, defnyddiwch y ddolen isod i fynd i'r dudalen integreiddio ac yna cliciwch ar integreiddiau wedi'i ffurfweddu i gyrraedd y cardiau dyfais."
+ }
+ },
+ "automation": {
+ "caption": "Awtomeiddio",
+ "description": "Creu a golygu awtomeiddio",
+ "editor": {
+ "actions": {
+ "add": "Ychwanegu camau",
+ "delete": "Dileu",
+ "delete_confirm": "Ydych yn siŵr bod chi eisiau dileu?",
+ "duplicate": "Dyblygu",
+ "header": "Camau gweithredu",
+ "introduction": "Y camau gweithredu yw'r hyn mae Home Assistant yn gwneud pan mae'r awtomeiddio yn cael ei sbarduno\n\n[Dysgwch mwy am weithred.](https://home-assistant.io/docs/automation/action/)",
+ "learn_more": "Dysgu mwy am gamau gweithredu",
+ "name": "Gweithredu",
+ "type": {
+ "condition": {
+ "label": "Cyflwr"
+ },
+ "delay": {
+ "delay": "Oedi",
+ "label": "Oedi"
+ },
+ "event": {
+ "event": "Digwyddiad",
+ "label": "Digwyddiad tân",
+ "service_data": "Data gwasanaeth"
+ },
+ "service": {
+ "label": "Gwasanaeth galw"
+ },
+ "wait_template": {
+ "label": "Aros",
+ "timeout": "Terfyn amser (dewisol)",
+ "wait_template": "Templed Aros"
+ }
+ },
+ "type_select": "Math weithrediad",
+ "unsupported_action": "Gweithredu heb gefnogaeth: {action}"
+ },
+ "alias": "Enw",
+ "conditions": {
+ "add": "Ychwanegu amodau",
+ "delete": "Dileu",
+ "delete_confirm": "Siwr bod chi eisiau dileu?",
+ "duplicate": "Dyblygu",
+ "header": "Amodau",
+ "introduction": "Mae'r amodau'n rhan ddewisol o reol awtomeiddio, a gellir eu defnyddio i atal camau rhag digwydd pan fyddant yn cael eu sbarduno. Mae'r amodau'n edrych yn debyg iawn i sbardunau ond maent yn wahanol iawn. Bydd sbardun yn edrych ar ddigwyddiadau sy'n digwydd yn y system tra bod amod yn edrych ar sut mae'r system yn edrych ar hyn o bryd. Gall sbarduno arsylwi bod switsh yn cael ei droi ymlaen. Dim ond os yw switsh ar neu i ffwrdd ar hyn o bryd y gall cyflwr weld. \n\n [Dysgwch fwy am amodau.] (Https://home-assistant.io/docs/scripts/conditions/)",
+ "learn_more": "Dysgu mwy am amodau",
+ "name": "Cyflwr",
+ "type": {
+ "numeric_state": {
+ "above": "Uwch",
+ "below": "Llai",
+ "label": "Stad rhifol",
+ "value_template": "Templed gwerth (opsiynol)"
+ },
+ "state": {
+ "label": "Cyflwr",
+ "state": "Cyflwr"
+ },
+ "sun": {
+ "after": "Ar ôl:",
+ "after_offset": "Ar ôl gwrthbwyso (dewisol)",
+ "before": "Cyn:",
+ "before_offset": "Cyn gwrthbwyso (dewisol)",
+ "label": "Haul",
+ "sunrise": "Gwawrio",
+ "sunset": "Machlud"
+ },
+ "template": {
+ "label": "Templed",
+ "value_template": "Templed gwerth"
+ },
+ "time": {
+ "after": "Ar ôl",
+ "before": "Cyn",
+ "label": "Amser",
+ "weekdays": {
+ "mon": "Dydd Llun"
+ }
+ },
+ "zone": {
+ "entity": "Endid gyda lleoliad",
+ "label": "Ardal",
+ "zone": "Ardal"
+ }
+ },
+ "type_select": "Math o gyflwr",
+ "unsupported_condition": "Cyflwr heb gymorth: {condition}"
+ },
+ "copy_to_clipboard": "Copïo i'r Clipfwrdd",
+ "default_name": "Awtomeiddiad Newydd",
+ "edit_ui": "Golygu gyda UI",
+ "edit_yaml": "Golygu fel YAML",
+ "introduction": "Defnyddiwch awtomeiddio i ddod â'ch cartref yn fyw",
+ "load_error_not_editable": "Dim ond awtomiadau yn 'automations. yaml' y gellir golygu.",
+ "load_error_unknown": "Gwall wrth lwytho awtomeiddad ( {err_no} ).",
+ "save": "Arbed",
+ "triggers": {
+ "add": "Ychwanegu sbardun",
+ "delete": "Dileu",
+ "delete_confirm": "Ydych chi'n siŵr bod chi eisiau dileu hwn?",
+ "duplicate": "Dyblyg",
+ "header": "Sbardunau",
+ "introduction": "Sbarduno yw'r hyn sy'n dechrau proses rheol awtomeiddio. Mae'n bosib dewis nifer o sbardunau i'run rheol. Unwaith mae sbardun yn cychwyn, bydd Home Assistant yn dilysu'r amodau, os o gwbl, a galw'r gweithred. \n\n[dysgwch mwy am sbardunau.] (https://home-assistant.io/docs/automation/trigger/)",
+ "learn_more": "Dysgu mwy am sbardunau",
+ "name": "Sbardun",
+ "type": {
+ "event": {
+ "context_user_pick": "Ychwanegu defnyddiwr",
+ "context_user_picked": "Digwyddiad tanio defnyddiwr",
+ "context_users": "Cyfyngiad i ddigwyddiadau a ysgogwyd gan",
+ "event_data": "Data Digwyddiad",
+ "event_type": "Math o ddigwyddiad",
+ "label": "Digwyddiad"
+ },
+ "geo_location": {
+ "enter": "Mewn",
+ "event": "Digwyddiad:",
+ "label": "Lleoliad deaddyrol",
+ "leave": "Gadael",
+ "source": "Ffynhonnell",
+ "zone": "Parth"
+ },
+ "homeassistant": {
+ "event": "Digwyddiad:",
+ "label": "Home Assistant",
+ "shutdown": "Darfod",
+ "start": "Dechrau"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Prif-lwyth (dewisol)",
+ "topic": "Pwnc"
+ },
+ "numeric_state": {
+ "above": "Uwch",
+ "below": "Llai",
+ "label": "Cyflwr rhifol",
+ "value_template": "Templed Gwerth (dewisol)"
+ },
+ "state": {
+ "from": "O",
+ "label": "Stad",
+ "to": "I"
+ },
+ "sun": {
+ "event": "Digwyddiad",
+ "label": "Haul",
+ "offset": "Gwrthbwyso (dewisol)",
+ "sunrise": "Haul yn codi",
+ "sunset": "Machlud"
+ },
+ "template": {
+ "label": "Templed",
+ "value_template": "Templed gwerth"
+ },
+ "time": {
+ "at": "Ar",
+ "label": "Amser"
+ },
+ "time_pattern": {
+ "hours": "Oriau",
+ "label": "Patrwm Amser",
+ "minutes": "Munudau",
+ "seconds": "Eiliadau"
+ },
+ "webhook": {
+ "label": "Gwefachiad",
+ "webhook_id": "Enw Gwefachiad"
+ },
+ "zone": {
+ "enter": "Mewn",
+ "entity": "Endid gyda lleoliad",
+ "event": "Digwyddiad",
+ "label": "Parth",
+ "leave": "Gadael",
+ "zone": "Parth"
+ }
+ },
+ "type_select": "Math sbardun",
+ "unsupported_platform": "Llwyfan heb gymorth: {platform}"
+ },
+ "unsaved_confirm": "Mae gennych newidiadau heb eu cadw. Ydych chi'n siŵr bod chi eisiau gadael?"
+ },
+ "picker": {
+ "add_automation": "Ychwanegu awtomeiddiad",
+ "header": "Golygydd awtomeiddio",
+ "headers": {
+ "name": "Enw"
+ },
+ "introduction": "Mae'r olygydd awtomeiddio yn caniatáu ichi greu a golygu awtomeiddiau. Darllenwch [y cyfarwyddiadau] (https://home-assistant.io/docs/automation/editor/) i sicrhau bod chi wedi ffurfweddu'r Home Assistant yn gywir.",
+ "learn_more": "Dysgu mwy am awtomeiddio",
+ "no_automations": "Doeddem ddim yn gallu darganfod unrhyw awtomeiddiau",
+ "pick_automation": "Dewiswch awtomeiddiad i olygu"
+ }
+ },
+ "cloud": {
+ "description_features": "Rheolaeth oddi cartref, integreiddio gyda Alexa a Google Assistant.",
+ "description_login": "Wedi mewngofnodi fel {email}",
+ "description_not_login": "Heb fewngofnodi"
+ },
+ "core": {
+ "caption": "Cyffredinol",
+ "description": "Dilyswch eich ffeil ffurfweddu a rheoli'r gweinydd",
+ "section": {
+ "core": {
+ "core_config": {
+ "edit_requires_storage": "Golygydd wedi'i analluogi oherwydd bod ffurfwedd wedi'i storio mewn 'configuration.yaml'.",
+ "elevation": "Uchder",
+ "elevation_meters": "metrau",
+ "imperial_example": "Fahrenheit, pwys",
+ "latitude": "Lledred",
+ "location_name": "Enw eich gosodiad Home Assistant",
+ "longitude": "Hydred",
+ "metric_example": "Celsius, cilogramau",
+ "save_button": "Arbed",
+ "time_zone": "Parth Amser",
+ "unit_system": "System Uned",
+ "unit_system_imperial": "Imperial",
+ "unit_system_metric": "Metrig"
+ },
+ "header": "Rheoli ffurfweddu a gweinydd",
+ "introduction": "Gellir newid ffurfweddiad eich proses ddiflas. Rydym yn gwybod. Bydd yr adran hon yn ceisio gwneud eich bywyd ychydig yn haws."
+ }
+ }
+ },
+ "customize": {
+ "caption": "Addasu",
+ "description": "Addasu eich endidau",
+ "picker": {
+ "documentation": "Dogfennaeth addasu",
+ "header": "Addasu",
+ "introduction": "Addasu nodweddion yr endid. Bydd ychwanegu/golygu osodiadau bersonol i rym ar unwaith. Bydd addasiadau sydd wedi tynnu yn dod i rym pan fydd yr endid yn cael ei ddiweddaru."
+ }
+ },
+ "devices": {
+ "automation": {
+ "actions": {
+ "no_actions": "Dim gweithrediadau",
+ "unknown_action": "Gweithred anhysbys"
+ },
+ "conditions": {
+ "no_conditions": "Dim amodau",
+ "unknown_condition": "Cyflwr anhysbys"
+ },
+ "triggers": {
+ "no_triggers": "Dim sbardunau",
+ "unknown_trigger": "Sbardun anhysbys"
+ },
+ "unknown_automation": "Awtomeiddiad anhysbys"
+ },
+ "confirm_delete": "Ydych chi'n siŵr eich bod eisiau dileu y ddyfais hon?",
+ "confirm_rename_entity_ids": "A ydych chi hefyd eisiau ailenwi enwau eich endidau?",
+ "confirm_rename_entity_ids_warning": "Ni fydd hyn yn newid unrhyw ffurfweddiad (fel awtomeiddio, sgriptiau, golygfeydd, dashfyrddau) sy'n defnyddio'r endidau hyn ar hyn o bryd! Bydd yn rhaid i chi eu diweddaru eich hun i ddefnyddio'r IDau endid newydd!",
+ "data_table": {
+ "area": "Ardal",
+ "battery": "Batri",
+ "device": "Dyfais",
+ "integration": "Integreiddio",
+ "manufacturer": "Gwneuthurwr",
+ "model": "Model",
+ "no_devices": "Dim dyfeisiau"
+ },
+ "delete": "Dileu",
+ "device_not_found": "Heb ganfod y ddyfais.",
+ "no_devices": "Dim dyfeisiau",
+ "unknown_error": "Gwall anhysbys",
+ "unnamed_device": "Dyfais ddienw"
+ },
+ "entities": {
+ "caption": "Gofrestrfa Endid",
+ "description": "Trosolwg o holl endidau hysbys.",
+ "picker": {
+ "filter": {
+ "hidden_entities": "{number} hidden {number, plural,\n one {entity}\n other {entities}\n}",
+ "show_all": "Dangos popeth"
+ },
+ "header": "Gofrestrfa Endid",
+ "introduction": "Mae Home Assistant yn cadw gofrestrfa pob endid a welodd erioed ble gellir eu nodi yn unigryw. Bydd pob un endid wedi neilltuo efo endid adnabod sy'n cael eu cadw ar gyfer yr endid hwnnw.",
+ "introduction2": "Defnyddiwch y gofrestrfa endid i ddiystyru yr enw, newid ID endid neu gael gwared y cofnod Home Assistant. Noder, ni fydd dileu'r cofnod cofrestrfa endid yn dileu yr endid. I wneud hynny, dilynwch y ddolen isod a thynnu oddi ar y dudalen integreiddio."
+ }
+ },
+ "header": "Ffurfweddu Home Assistant",
+ "helpers": {
+ "types": {
+ "counter": "Cownter",
+ "timer": "Amserydd"
+ }
+ },
+ "integrations": {
+ "caption": "Integreiddiadau",
+ "config_entry": {
+ "delete_confirm": "A ydych yn siŵr bod chi eisiau dileu'r integreiddiad yma?",
+ "device_unavailable": "Dyfais ddim ar gael",
+ "entity_unavailable": "endid ar gael",
+ "firmware": "Cadarnwedd: {version}",
+ "hub": "Cysylltiad drwy",
+ "manuf": "gan {manufacturer}",
+ "no_area": "Dim Ardal",
+ "reload": "Ail-lwytho",
+ "reload_confirm": "Cafodd yr integreiddiad ei ail-lwytho",
+ "reload_restart_confirm": "Ailgychwyn Home Assistant i ddarfod yr integreiddiadau",
+ "restart_confirm": "Ailgychwyn Home Assistant i ddarfod dileu'r integreiddiad hwn"
+ },
+ "config_flow": {
+ "aborted": "Erthylwyd",
+ "close": "Cau",
+ "created_config": "Wedi creu config.php ar gyfer {name}.",
+ "error_saving_area": "Gwall wrth gadw ardal: {Error}",
+ "external_step": {
+ "description": "Mae'r cam angen ichi ymweld â wefan allanol i'w lenwi.",
+ "open_site": "Gwefan agored"
+ },
+ "finish": "Gorffen",
+ "not_all_required_fields": "Nid yw pob maes gofynnol wedi'i lenwi.",
+ "submit": "Cyflwyno"
+ },
+ "configure": "Ffurfweddu",
+ "configured": "Wedi'i ffurfweddu",
+ "description": "Rheoli dyfeisiau a gwasanaethau cysylltiedig",
+ "details": "Manylion integreiddio",
+ "discovered": "Darganfuwyd",
+ "ignore": {
+ "confirm_ignore": "Ydych chi'n siŵr nad ydych am sefydlu'r integreiddiad hwn? Gallwch ddad-wneud hyn drwy glicio ar y 'dangos integreiddiadau a anwybyddwyd' yn y ddewislen gorlif ar y dde uchaf."
+ },
+ "integration_not_found": "Heb ganfod integreiddiad",
+ "new": "Sefydlu integreiddiad newydd",
+ "none": "Dim byd wedi'i ffurfweddu eto."
+ },
+ "introduction": "Yma mae'n bosib ffurfweddu'ch cydrannau ac Home Assistant. Nid yw popeth yn bosib i'w ffurfweddu o'r UI eto, ond rydym yn gweithio arno.",
+ "lovelace": {
+ "dashboards": {
+ "cant_edit_default": "Ni ellir golygu dangosfwrdd safonol Lovelace o'r UI. Gallwch ei guddio trwy osod dangosfwrdd arall yn ddiofyn.",
+ "cant_edit_yaml": "Ni ellir golygu dangosfyrddau a ddiffinnir yn YAML o'r UI. Newidiwch nhw yn configuration.yaml.",
+ "default_dashboard": "Dyma'r dangosfwrdd diofyn",
+ "detail": {
+ "icon": "Eicon",
+ "title": "Teitl",
+ "url_error_msg": "Dylai'r URL gynnwys a - ac ni all gynnwys mannau na chymeriadau arbennig, heblaw am _ ac -"
+ }
+ },
+ "resources": {
+ "cant_edit_yaml": "Rydych chi'n defnyddio Lovelace yn y modd YAML, felly ni allwch reoli'ch adnoddau trwy'r UI. Rheolwch nhw yn configuration.yaml.",
+ "picker": {
+ "no_resources": "Dim adnoddau"
+ }
+ }
+ },
+ "mqtt": {
+ "title": "MQTT"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Rheolwr",
+ "instance": "Enghraifft",
+ "network": "Rhwydwaith",
+ "query_stage": "Cyfnod Ymholiad",
+ "wakeup_instructions": "Cyfarwyddiadau Deffro"
+ },
+ "navigation": {
+ "network": "Rhwydwaith",
+ "node": {
+ "config": "Ffurfweddu",
+ "dashboard": "Dashfwrdd"
+ },
+ "nodes": "Nodau",
+ "select_instance": "Dewis Enghraifft"
+ },
+ "network": {
+ "header": "Rheolaeth Rhwydwaith",
+ "introduction": "Rheoli swyddogaethau rhwydwaith-lydan",
+ "node_count": "nodau {count}"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "Holwyd pob nod",
+ "driverallnodesqueriedsomedead": "Holwyd pob nod. Cafwyd hyd i rai nodau yn farw",
+ "driverawakenodesqueries": "Holwyd pob nod effro",
+ "driverfailed": "Wedi methu cysylltu â rheolydd Z-Wave",
+ "driverready": "Cychwyn y rheolydd Z-Wave",
+ "driverremoved": "Mae'r gyrrwr wedi'i diddymu",
+ "driverreset": "Mae'r gyrrwr wedi cael ei ailosod",
+ "offline": "OZWDaemon all-lein",
+ "ready": "Barod i gysylltu",
+ "started": "Cysylltu â MQTT",
+ "starting": "Cysylltu â MQTT",
+ "stopped": "Stopiodd OpenZWave"
+ },
+ "offline": "All-lein",
+ "online": "Ar-lein",
+ "starting": "Cychwyn",
+ "unknown": "Anhysbys"
+ },
+ "node_config": {
+ "header": "Ffurfweddu nod",
+ "help_source": "Darperir disgrifiadau paramedr a thestun cymorth gan brosiect OpenZWave.",
+ "introduction": "Rheoli'r gwahanol baramedrau ffurfweddu ar gyfer nod Z-Wave.",
+ "wakeup_help": "Rhaid i nodau wedi'u pweru gan fatri fod yn effro i newid eu cyfluniad. Os nad yw'r nod yn effro, bydd OpenZWave yn ceisio diweddaru cyfluniad y nod tro nesaf y bydd yn deffro, a allai fod yn oriau lluosog (neu ddyddiau) yn ddiweddarach. Dilynwch y camau hyn i ddeffro'ch dyfais:"
+ },
+ "node_metadata": {
+ "product_manual": "Llawlyfr Cynnyrch"
+ },
+ "select_instance": {
+ "header": "Dewiswch Enghraifft OpenZWave",
+ "introduction": "Mae gennych fwy nag un enghraifft OpenZWave yn rhedeg. Pa enghraifft hoffech chi ei rheoli?",
+ "none_found": "Ni allem ddod o hyd i enghraifft OpenZWave. Os ydych chi'n credu bod hyn yn anghywir, gwiriwch eich setiau OpenZWave a MQTT a sicrhau y gall Home Assistant gyfathrebu â'ch brocer MQTT."
+ },
+ "services": {
+ "add_node": "Ychwanegu Nod",
+ "cancel_command": "Canslo Gorchymyn",
+ "remove_node": "Tynnu Nod"
+ }
+ },
+ "person": {
+ "caption": "Pobl",
+ "description": "Rheoli'r pobl mae Home Assistant yn tracio.",
+ "detail": {
+ "allow_login": "Caniatáu'r person i fewngofnodi",
+ "device_tracker_intro": "Dewiswch y dyfeisiau sy'n perthyn i'r person hwn.",
+ "device_tracker_pick": "Dewiswch dyfeis i'w dracio",
+ "device_tracker_picked": "Tracio Dyfeis",
+ "name": "Enw"
+ },
+ "learn_more": "Dysgu mwy am bobl",
+ "person_not_found": "Ni allem ddarganfod y person yr oeddech yn ceisio ei olygu.",
+ "person_not_found_title": "Person heb ei ddarganfod"
+ },
+ "scene": {
+ "editor": {
+ "default_name": "Golygfa Newydd",
+ "devices": {
+ "add": "Ychwanegu dyfais",
+ "delete": "Dileu dyfais",
+ "header": "Dyfeisiau",
+ "introduction": "Ychwanegwch y dyfeisiau rydych chi eisiau cynnwys yn eich golygfa. Gosodwch yr holl ddyfeisiau i'r cyflwr rydych eisiau ar gyfer yr olygfa hon."
+ },
+ "entities": {
+ "add": "Ychwanegu endid",
+ "delete": "Dileu endid",
+ "device_entities": "Os ydych chi'n ychwanegu endid sy'n perthyn i ddyfais, bydd y ddyfais yn cael ei hychwanegu.",
+ "header": "Endidau",
+ "introduction": "Gellir gosod endidau sydd ddim yn berthyn i ddyfeisiau yma.",
+ "without_device": "Endidau heb ddyfais"
+ },
+ "introduction": "Defnyddiwch olygfeydd i ddod â'ch cartref yn fyw.",
+ "load_error_not_editable": "Dim ond golygfeydd yn scenes.yaml y gellir eu golygu.",
+ "load_error_unknown": "Gwall wrth lwytho'r olygfa ({err_no}).",
+ "name": "Enw",
+ "save": "Arbed",
+ "unsaved_confirm": "Mae gennych newidiadau heb eu cadw. Ydych chi'n siŵr bod chi eisiau gadael?"
+ },
+ "picker": {
+ "headers": {
+ "name": "Enw"
+ }
+ }
+ },
+ "script": {
+ "caption": "Sgript",
+ "description": "Creu a golygu sgriptiau",
+ "editor": {
+ "save_script": "Arbed sgript"
+ },
+ "picker": {
+ "add_script": "Creu sgript newydd",
+ "headers": {
+ "name": "Enw"
+ },
+ "run_script": "Rhedeg sgript",
+ "show_info": "Dangos gwybodaeth am y sgript"
+ }
+ },
+ "server_control": {
+ "caption": "Rheoli gweinydd",
+ "section": {
+ "reloading": {
+ "automation": "Ail-lwytho awtomeiddiadau",
+ "command_line": "Ail-lwytho endidau llinell orchymyn",
+ "core": "Ail-lwytho craidd",
+ "filter": "Ail-lwytho endidau hidlo",
+ "group": "Ail-lwytho grwpiau",
+ "heading": "Ffurfweddiad yn ail-lwytho",
+ "introduction": "Gall rhai rhannau o Home Assistant ail-lwytho heb orfod ailgychwyn. Bydd taro ail-lwytho yn dadlwytho eu cyfluniad cyfredol a llwytho'r un newydd.",
+ "mqtt": "Ail-lwytho endidau mqtt wedi'u ffurfweddu",
+ "rest": "Ail-lwytho endidau gorffwys",
+ "script": "Ail-lwytho sgriptiau",
+ "statistics": "Ail-lwytho endidau ystadegau",
+ "universal": "Ail-lwytho endidau chwaraewyr cyfryngau cyffredinol"
+ },
+ "server_management": {
+ "heading": "Rheoli gweinydd",
+ "introduction": "Rheoli eich gweinydd Home Assistant.. o Home Assistant.",
+ "restart": "Ailgychwyn",
+ "stop": "Stopio"
+ },
+ "validation": {
+ "check_config": "Gwirio config",
+ "introduction": "Dilyswch eich ffurfweddiad os gwnaethoch rai newidiadau ffurfweddu yn ddiweddar ac rydych eisiau gwneud yn siŵr fod o'n ddilys",
+ "invalid": "Ffurfweddiad annilys",
+ "valid": "Ffurfweddiad dilys!"
+ }
+ }
+ },
+ "tag": {
+ "detail": {
+ "companion_apps": "apiau cydymaith",
+ "usage": "Gall tag sbarduno awtomeiddiad wrth ei sganio, gallwch ddefnyddio tagiau NFC, codau QR neu unrhyw fath arall o dag. Defnyddiwch ein {companion_link} i ysgrifennu'r tag hwn i dag NFC rhaglenadwy neu i greu cod QR isod."
+ },
+ "learn_more": "Dysgu mwy am dagiau"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Ychwanegu defnyddiwr",
+ "create": "Creu",
+ "password": "Cyfrinair"
+ },
+ "editor": {
+ "admin": "Gweinyddwr",
+ "caption": "Gweld defnyddiwr",
+ "name": "Enw",
+ "system_generated_users_not_editable": "Methu diweddaru defnyddwyr a gynhyrchir gan system.",
+ "update_user": "Diweddaru"
+ },
+ "picker": {
+ "headers": {
+ "group": "Grŵp",
+ "name": "Enw",
+ "system": "System"
+ }
+ }
+ },
+ "zha": {
+ "add_device_page": {
+ "spinner": "Chwilio am ddyfeisiau ZHA Zigbee…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Priodoleddau'r clwstwr a ddewiswyd",
+ "get_zigbee_attribute": "Cael Priodoledd Zigbee",
+ "header": "Priodoleddau clwstwr",
+ "help_attribute_dropdown": "Dewisiwch y priodoledd i weld neu osod ei werth",
+ "help_get_zigbee_attribute": "Cael y gwerth ar gyfer y priodoledd a ddewiswyd.",
+ "help_set_zigbee_attribute": "Gosod gwerth priodwedd ar gyfer y clwstwr penodedig ar yr endid penodedig.",
+ "introduction": "Gweld a golygu priodoleddau clwstwr.",
+ "set_zigbee_attribute": "Gosod priodoledd Zigbee"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Gorchmynion y clwstwr a ddewiswyd",
+ "header": "Gorchmynion clwstwr",
+ "help_command_dropdown": "Dewiswch orchymyn i ryngweithio ag ef.",
+ "introduction": "Gweld a chyhoeddi gorchmynion clwstwr.",
+ "issue_zigbee_command": "Cyhoeddi Gorchymyn Zigbee"
+ },
+ "clusters": {
+ "help_cluster_dropdown": "Dewiswch clwstwr i weld priodoleddau a gorchmynion."
+ }
+ },
+ "zwave": {
+ "description": "Rheoli eich rhwydwaith Z-Wave",
+ "learn_more": "Dysgu mwy am Z-Wave",
+ "node_config": {
+ "set_config_parameter": "Gosod Paramedr Ffurfweddu"
+ },
+ "ozw_log": {
+ "header": "OZW Log",
+ "introduction": "Gweld y log. 0 yn y lleiaf (llwyth cyfan log) a 1000 yn yr uchafswm. Llwyth yn dangos sefydlog o log ac yn y gynffon, bydd yn diweddariad automatig gyda nifer penodol diwethaf o linellau o log."
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Byddaf efo mynediad i holl ddata yn Home Assistant",
+ "hide_message": "Gwirio'r dogfennau ar gyfer y gydran panel_custom er mwyn cuddio'r neges hon",
+ "question_trust": "Ydych chi'n ymddiried yn y panel allanol {name} yn {link} ?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "title": "Digwyddiadau"
+ },
+ "services": {
+ "title": "Gwasanaethau"
+ },
+ "states": {
+ "title": "Cyflerau"
+ },
+ "templates": {
+ "no_listeners": "Nid yw'r templed hwn yn gwrando am unrhyw ddigwyddiadau ac ni fydd yn diweddaru'n awtomatig.",
+ "reset": "Ailosod i dempled demo",
+ "result_type": "Math canlyniad",
+ "time": "Mae'r templed yma yn diweddaru ar ddechrau pob munud.",
+ "title": "Templedi"
+ }
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "yaml_unsupported": "Cewch chi ddim defnyddio'r swyddogaeth hon wrth ddefnyddio UI Lovelace yn modd YAML."
+ },
+ "cards": {
+ "empty_state": {
+ "go_to_integrations_page": "Ewch i'r dudalen integreiddio.",
+ "no_devices": "Mae'r dudalen hon yn eich galluogi i reoli'ch dyfeisiau, ond mae'n edrych fel nad oes gennych ddyfeisiau wedi eu sefydlu eto. Ewch i'r dudalen integreiddio i ddechrau.",
+ "title": "Croeso Gartref"
+ },
+ "picture-elements": {
+ "call_service": "Galw gwasanaeth {name}",
+ "hold": "Disgwyl",
+ "more_info": "Dangos mwy o wybodaeth: {name}",
+ "navigate_to": "Ewch i {location}",
+ "tap": "Tarwch:",
+ "toggle": "Toglo {name}"
+ },
+ "shopping-list": {
+ "add_item": "Ychwanegu eitem",
+ "checked_items": "Eitemau wedi ticio",
+ "clear_items": "Clirio eitemau wedi ticio"
+ }
+ },
+ "changed_toast": {
+ "message": "Diweddarwyd ffurfwedd Lovelace, hoffech adnewyddu?"
+ },
+ "editor": {
+ "card": {
+ "alarm-panel": {
+ "available_states": "Cyflerau posib",
+ "name": "Panel Larwm"
+ },
+ "button": {
+ "description": "Mae'r cerdyn Botwm yn caniatáu ichi ychwanegu botymau i gyflawni tasgau."
+ },
+ "calendar": {
+ "description": "Mae'r cerdyn Calendr yn dangos calendr gan gynnwys gweddlun dydd, wythnos a restr",
+ "name": "Calendr"
+ },
+ "conditional": {
+ "card": "Cerdyn",
+ "change_type": "Newid math",
+ "condition_explanation": "Bydd y cerdyn yn cael ei ddangos pan fydd POB amod isod yn cael eu cyflawni.",
+ "conditions": "Amodau",
+ "current_state": "cyfredol",
+ "name": "Amodol",
+ "state_equal": "Cyflwr yn hafal i",
+ "state_not_equal": "Cyflwr ddim yn hafal i"
+ },
+ "entities": {
+ "description": "Y cerdyn Endidau yw'r math mwyaf cyffredin o gerdyn. Mae'n grwpio eitemau gyda'i gilydd fewn i restrau.",
+ "edit_special_row": "Gweld manylion y rhes yma drwy glicio ar y botwm golygu",
+ "entity_row_editor": "Golygydd Rhes endid",
+ "name": "Endidau",
+ "secondary_info_values": {
+ "brightness": "Disgleirdeb",
+ "entity-id": "ID Endid",
+ "last-changed": "Newidiwyd Ddiwethaf",
+ "last-triggered": "Sbardunwyd Ddiwethaf",
+ "last-updated": "Diweddarwyd Ddiwethaf",
+ "none": "Dim Gwybodaeth Eilaidd",
+ "position": "Safle",
+ "tilt-position": "Safle Tilt"
+ }
+ },
+ "entity-filter": {
+ "description": "Mae'r cerdyn Hidlo Endid yn caniatáu ichi ddiffinio rhestr o endidau ydych eisiau diilyn pan fyddant mewn cyflwr penodol.",
+ "name": "Hidlo Endid"
+ },
+ "entity": {
+ "description": "Mae'r cerdyn Endid yn rhoi trosolwg cyflym i chi o gyflwr eich endid.",
+ "name": "Endid"
+ },
+ "gauge": {
+ "description": "Mae'r cerdyn Gauge yn gerdyn sylfaenol sy'n caniatáu gweld data synhwyrydd yn weledol.",
+ "name": "Medrydd"
+ },
+ "generic": {
+ "attribute": "Priodoledd",
+ "double_tap_action": "Gweithred tab dwbl",
+ "manual": "Llawlyfr",
+ "manual_description": "Angen ychwanegu cerdyn 'custom' neu ddim ond eisiau ysgrifennu'r yaml?",
+ "no_theme": "Dim thema",
+ "state": "Stad"
+ },
+ "glance": {
+ "description": "Mae'r cerdyn Cipolwg yn ddefnyddiol i grwpio synwyryddion lluosog mewn trosolwg cryno.",
+ "name": "Cipolwg"
+ },
+ "history-graph": {
+ "description": "Mae'r cerdyn Graff Hanes yn caniatáu ichi arddangos graff ar gyfer pob un o'r endidau a restrir.",
+ "name": "Graff Hanes"
+ },
+ "horizontal-stack": {
+ "description": "Mae'r cerdyn Stack Llorweddol yn caniatáu ichi bentyrru cardiau lluosog, felly maen nhw bob amser yn eistedd wrth ymyl ei gilydd yng ngofod un golofn.",
+ "name": "Stac Fertigol"
+ },
+ "iframe": {
+ "description": "Mae'r cerdyn Tudalen we yn eich galluogi i blannu eich hoff dudalen we i Home Assistant.",
+ "name": "iFrame"
+ },
+ "light": {
+ "description": "Mae'r cerdyn Golau yn caniatáu ichi newid disgleirdeb y golau.",
+ "name": "Golau"
+ },
+ "map": {
+ "description": "Y cerdyn Map sy'n caniatáu ichi arddangos endidau ar fap.",
+ "hours_to_show": "Oriau i'w Dangos",
+ "name": "Map"
+ },
+ "markdown": {
+ "description": "Defnyddir y cerdyn marcio i rendro Markdown.",
+ "name": "Marclawr"
+ },
+ "media-control": {
+ "description": "Defnyddir y cerdyn Rheoli Cyfryngau i arddangos endidau chwaraewr cyfryngau ar ryngwyneb â rheolyddion hawdd eu defnyddio.",
+ "name": "Rheoli cyfryngau"
+ },
+ "picture-elements": {
+ "description": "Mae'r cerdyn Elfennau Lluniau yn un o'r mathau mwyaf amlbwrpas o gardiau. Mae'r cardiau'n caniatáu ichi osod eiconau neu destun a hyd yn oed gwasanaethau! Ar ddelwedd yn seiliedig ar gyfesurynnau.",
+ "name": "Elfennau'r Llun"
+ },
+ "picture-entity": {
+ "description": "Mae'r cerdyn Endid Lluniau yn arddangos endid ar ffurf delwedd. Yn lle delweddau o URL, gall hefyd ddangos y llun o endidau camera.",
+ "name": "Endid Llun"
+ },
+ "picture-glance": {
+ "description": "Mae'r cerdyn Cipolwg Llun yn dangos delwedd a chyflyrau endidau cyfatebol fel eicon. Mae'r endidau ar yr ochr dde yn caniatáu toglo gweithredoedd, mae eraill yn dangos y dialog mwy o wybodaeth.",
+ "name": "Cipolwg ar lun"
+ },
+ "picture": {
+ "description": "Mae'r cerdyn Lluniau yn caniatáu ichi osod delwedd i'w defnyddio ar gyfer llywio i amrywiol lwybrau yn eich rhyngwyneb neu i alw gwasanaeth.",
+ "name": "Llun"
+ },
+ "plant-status": {
+ "description": "Mae'r cerdyn Statws Planhigion ar gyfer yr holl fotanegwyr hyfryd allan yna.",
+ "name": "Statws planhigyn"
+ },
+ "sensor": {
+ "description": "Mae'r cerdyn Synhwyrydd yn rhoi trosolwg cyflym o gyflwr eich synwyryddion gyda graff dewisol i ddelweddu newid dros amser.",
+ "name": "Synhwyrydd"
+ },
+ "shopping-list": {
+ "description": "Mae'r cerdyn Rhestr Siopa yn caniatáu ichi ychwanegu, golygu, gwirio a chlirio eitemau o'ch rhestr siopa.",
+ "name": "Rhestr siopa"
+ },
+ "thermostat": {
+ "description": "Mae'r cerdyn Thermostat yn rhoi rheolaeth ar eich endid hinsawdd. Yn caniatáu ichi newid tymheredd a modd yr endid.",
+ "name": "Thermostat"
+ },
+ "vertical-stack": {
+ "description": "Mae'r cerdyn 'Vertical Stack' yn caniatáu ichi grwpio cardiau lluosog fel bod nhw bob tro yn eistedd yn yr un golofn.",
+ "name": "Stac Fertigol"
+ },
+ "weather-forecast": {
+ "description": "Mae'r cerdyn rhagolygon tywydd yn dangos y tywydd. Defnyddiol iawn i'w cynnwys ar ryngwynebau y mae pobl yn eu harddangos ar y wal.",
+ "name": "Rhagolwg tywydd"
+ }
+ },
+ "cardpicker": {
+ "custom_card": "Custom",
+ "no_description": "Dim disgrifiad ar gael."
+ },
+ "edit_badges": {
+ "panel_mode": "Ni fydd y bathodynnau hyn yn cael eu harddangos oherwydd bod y farn hon yn \"Modd Panel\"."
+ },
+ "edit_card": {
+ "add": "Ychwanegu Cerdyn",
+ "delete": "Dileu",
+ "duplicate": "Cerdyn dyblyg",
+ "edit": "Golygu",
+ "header": "Ffurfweddu Cerdyn",
+ "move": "Symud",
+ "move_after": "Symud cerdyn ar ôl",
+ "move_before": "Symud cerdyn cyn",
+ "pick_card": "Dewiswch y cerdyn rydych eisiau ychwanegu",
+ "show_code_editor": "Dangos Golygydd Cod",
+ "show_visual_editor": "Dangos Golygydd Gweledol",
+ "toggle_editor": "Toglo Golygydd"
+ },
+ "edit_lovelace": {
+ "edit_title": "Golygu teitl"
+ },
+ "edit_view": {
+ "add": "Ychwanegu golwg",
+ "delete": "Delete golwg",
+ "edit": "Golygu golwg",
+ "header": "Gweld Ffurfweddiad",
+ "move_left": "Symud y wedd i'r chwith",
+ "move_right": "Symud y wedd i'r dde",
+ "visibility": {
+ "select_users": "Dewiswch pa ddefnyddwyr ddylai weld yr olygfa hon yn y llywio"
+ }
+ },
+ "header": "Golygu rhyngwyneb defnyddiwr",
+ "menu": {
+ "raw_editor": "Golygydd ffurfweddu craidd"
+ },
+ "migrate": {
+ "header": "Ffurfweddiad anghydnaws",
+ "migrate": "Mudo ffurfweddiad",
+ "para_migrate": "Gall Home Assistant ychwanegu IDs i bob un o'ch cardiau ac edrychiadau yn awtomatig i chi wrth bwyso'r botwm 'Mudo ffurfweddiad'.",
+ "para_no_id": "Tydi'r elfen yma ddim efo ID. Plís ychwanegwch ID i'r elfen yma yn 'ui-lovelace.yaml'."
+ },
+ "raw_editor": {
+ "confirm_unsaved_changes": "Mae gennych newidiadau heb eu cadw. Ydych chi'n siŵr bod chi eisiau gadael?",
+ "confirm_unsaved_comments": "Mae eich cyfluniad yn cynnwys sylwadau (au), ni fydd y rhain yn cael eu cadw. Ydych chi eisio parhau?",
+ "error_invalid_config": "Dydy eich cyfluniad ddim yn ddilys: {error}",
+ "error_parse_yaml": "Methu gramadegu YAML: {error}",
+ "error_save_yaml": "Methu arbed YAML: {error}",
+ "header": "Golygu ffurfweddu",
+ "save": "Arbed",
+ "saved": "Arbed",
+ "unsaved_changes": "Newidiadau heb eu cadw"
+ },
+ "save_config": {
+ "empty_config": "Dechreuwch gyda dangosfwrdd gwag",
+ "header": "Cymerwch reolaeth ar eich rhyngwyneb defnyddiwr Lovelace",
+ "para": "Gwneith Home Assistant gynnal eich rhyngwyneb defnyddiwr yn ddiofyn, a'i diweddaru pan fydd endidau neu gydrannau Lovelace newydd yn dod ar gael. Os ydych yn cymryd rheolaeth nawn ddim gwneud newidiadau awtomatig pellach i chi.",
+ "para_sure": "A ydych yn siŵr bod chi eisiau rheoli eich rhyngwyneb defnyddiwr?",
+ "save": "Cymerwch reolaeth",
+ "yaml_mode": "Ydych yn defnyddio YAML modd, sy'n golygu nad ydych yn gallu newid eich Lovelace config o'r UI. Os ydych am newid Lovelace o UI, dileu 'modd: yaml' o eich cyfluniad Lovelace yn 'configuration.yaml.'"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Mae'r golwg yn cynnwys mwy nag un cerdyn, ond dim ond un cerdyn gall y golwg panel ei ddangos."
+ }
+ }
+ },
+ "menu": {
+ "close": "Cau",
+ "configure_ui": "Ffurfweddu rhyngwyneb defnyddiwr",
+ "exit_edit_mode": "Gadael modd golygu UI",
+ "help": "Help",
+ "reload_resources": "Ail-lwytho adnoddau",
+ "start_conversation": "Cychwyn sgwrs"
+ },
+ "reload_lovelace": "Ail-lwytho Lovelace",
+ "reload_resources": {
+ "refresh_body": "Rhaid i chi adnewyddu'r dudalen i gwblhau'r ail-lwytho, ydych chi eisiau adnewyddu rŵan?",
+ "refresh_header": "Ydych chi eisiau adnewyddu?"
+ },
+ "unused_entities": {
+ "available_entities": "Rhain yw'r endidau sydd gennych ar gael, ond dim ar eich Lovelace UI eto",
+ "domain": "Parth",
+ "entity": "Endid",
+ "entity_id": "ID Endid",
+ "last_changed": "Newid Diwethaf",
+ "select_to_add": "Dewiswch yr endidau rydych am eu hychwanegu at gerdyn ac yna cliciwch ar botwm ychwanegu cerdyn.",
+ "title": "Endidau heb ei ddefnyddio"
+ },
+ "warning": {
+ "attribute_not_found": "Priodoledd {attribute} ddim ar gael yn: {entity}",
+ "entity_non_numeric": "Endid di-rhifol: {entity}",
+ "entity_not_found": "Endid ddim ar gael: {entity}"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Dileu",
+ "delete_prompt": "Dileu'r neges hon?",
+ "empty": "Nid oes gennych negeseuon",
+ "playback_title": "Chwarae neges"
+ },
+ "page-authorize": {
+ "form": {
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Sesiwn wedi dod i ben, plis mewngofnodwch eto"
+ },
+ "error": {
+ "invalid_auth": "Defnyddiwr neu cyfrinair annilys",
+ "invalid_code": "Dilysiad annilys "
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Cyfrinair",
+ "username": "Enw defnyddiwr"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Cod dilysu dwy-ffactor"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "gan {name}",
+ "introduction": "Croeso adre! Rydych wedi cyrraedd demo Home Assistant lle rydym yn arddangos y UIs gorau a grewyd gan ein cymuned.",
+ "learn_more": "Dysgwch fwy am Home Assistant",
+ "next_demo": "Demo nesaf"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Gweithgaredd",
+ "air": "Aer",
+ "commute_home": "Cymudo i'r Cartref",
+ "entertainment": "Adloniant",
+ "hdmi_input": "Mewnbwn HDMI",
+ "hdmi_switcher": "Newidydd HDMI",
+ "information": "Gwybodaeth",
+ "lights": "Goleuadau",
+ "morning_commute": "Cymudo bore",
+ "total_tv_time": "Cyfanswm Amser Teledu",
+ "turn_tv_off": "Diffodd y teledu",
+ "volume": "Uchder"
+ },
+ "names": {
+ "family_room": "Ystafell Teulu",
+ "hallway": "Cyntedd",
+ "kitchen": "Cegin",
+ "left": "Chwith",
+ "master_bedroom": "Prif Ystafell Wely",
+ "mirror": "Drych",
+ "patio": "Patio",
+ "right": "Dde",
+ "upstairs": "I fyny'r grisiau"
+ },
+ "unit": {
+ "minutes_abbr": "munud",
+ "watching": "gwylio"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "core-config": {
+ "button_detect": "Canfod",
+ "finish": "Nesaf",
+ "intro": "Helo {name}, croeso i Home Assistant. Sut hoffech enwi eich tŷ?",
+ "intro_location": "Hoffem wybod ble rydych chi'n byw. Bydd y wybodaeth yn helpu i arddangos gwybodaeth a sefydlu awtomeiddiadau haul. Tydi'r data byth yn cael ei rannu thu allan i'ch rhwydwaith.",
+ "intro_location_detect": "Gallwn eich helpu i lenwi'r wybodaeth hon drwy wneud cais un-tro i wasanaeth allanol.",
+ "location_name": "Enw eich gosodiad Home Assistant",
+ "location_name_default": "Hafan"
+ },
+ "integration": {
+ "finish": "Gorffen",
+ "intro": "Cynrychiolir dyfeisiau a gwasanaethau yn Home Assistant fel integreiddiadau. Gallwch eu gosod nawr, neu'n ddiweddarach o'r sgrin ffurfweddu.",
+ "more_integrations": "Mwy"
+ },
+ "user": {
+ "data": {
+ "password_confirm": "Cadarnhewch y Cyfrinair"
+ },
+ "error": {
+ "password_not_match": "Cyfrineiriau ddim yn cyfateb"
+ }
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Mae Home Assistant yn cuddio nodweddion uwch ac opsiynau yn ddiofyn. Gallwch wneud y nodweddion hyn yn hygyrch trwy ticio'r toggle hwn. Mae hwn yn leoliad penodol i ddefnyddwyr ac nid yw'n effeithio ar ddefnyddwyr eraill sy'n defnyddio Home Assistant.",
+ "title": "Modd Uwch"
+ },
+ "dashboard": {
+ "description": "Dewiswch ddangosfwrdd diofyn ar gyfer y ddyfais hon.",
+ "dropdown_label": "Dangosfwrdd",
+ "header": "Dangosfwrdd"
+ },
+ "enable_shortcuts": {
+ "description": "Galluogi neu analluogi llwybrau byr bysellfwrdd ar gyfer perfformio gweithredoedd amrywiol yn yr UI.",
+ "header": "Llwybrau byr bysellfwrdd"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Enw dyfais",
+ "title": "Beth ddylid galw'r ddyfais yma?"
+ }
+ }
+ }
+ },
+ "sidebar": {
+ "external_app_configuration": "Ffurfweddu App"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/da.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/da.json
new file mode 100644
index 00000000..a2ef86d8
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/da.json
@@ -0,0 +1,4632 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Konfigurationsparameter",
+ "device": "Enhed",
+ "integration": "Integration",
+ "user": "Bruger"
+ }
+ },
+ "groups": {
+ "owner": "Ejer",
+ "system-admin": "Administratorer",
+ "system-read-only": "Skrivebeskyttede brugere",
+ "system-users": "Brugere"
+ },
+ "panel": {
+ "calendar": "Kalender",
+ "config": "Indstillinger",
+ "developer_tools": "Udviklerværktøjer",
+ "energy": "Energi",
+ "history": "Historik",
+ "logbook": "Logbog",
+ "mailbox": "Postkasse",
+ "map": "Kort",
+ "media_browser": "Mediebrowser",
+ "profile": "Profil",
+ "shopping_list": "Indkøbsliste",
+ "states": "Oversigt"
+ },
+ "state": {
+ "default": {
+ "off": "Fra",
+ "on": "Til",
+ "unavailable": "Utilgængelig",
+ "unknown": "Ukendt"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Auto",
+ "off": "Fra",
+ "on": "Til"
+ },
+ "hvac_action": {
+ "cooling": "Køling",
+ "drying": "Tørring",
+ "fan": "Blæser",
+ "heating": "Opvarmning",
+ "idle": "Inaktiv",
+ "off": "Fra"
+ },
+ "preset_mode": {
+ "activity": "Aktivitet",
+ "away": "Ude",
+ "boost": "Boost",
+ "comfort": "Komfort",
+ "eco": "Eco",
+ "home": "Hjemme",
+ "none": "Ingen",
+ "sleep": "Sover"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Auto",
+ "away": "Ude",
+ "baby": "Baby",
+ "boost": "Boost",
+ "comfort": "Komfort",
+ "eco": "Øko",
+ "home": "Hjemme",
+ "normal": "Normal",
+ "sleep": "Søvn"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Tilkoblet",
+ "armed_away": "Tilkoblet",
+ "armed_custom_bypass": "Tilkoblet",
+ "armed_home": "Tilkoblet",
+ "armed_night": "Tilkoblet",
+ "armed_vacation": "Tilkoblet",
+ "arming": "Tilkobler",
+ "disarmed": "Frakoblet",
+ "disarming": "Frakob",
+ "pending": "Venter",
+ "triggered": "Udløst"
+ },
+ "default": {
+ "entity_not_found": "Entiteten blev ikke fundet",
+ "error": "Fejl",
+ "unavailable": "Utilgæn",
+ "unknown": "Ukendt"
+ },
+ "device_tracker": {
+ "home": "Hjemme",
+ "not_home": "Ude"
+ },
+ "person": {
+ "home": "Hjemme",
+ "not_home": "Ude"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Standard",
+ "header": "Lyd",
+ "input": "Input",
+ "output": "Output"
+ },
+ "network": {
+ "container": "Container",
+ "disabled": "Deaktiveret",
+ "header": "Netværk",
+ "host": "Vært"
+ },
+ "no_configuration": "Dette tilføjelsesprogram har ingen konfiguration, som du kan tilpasse…",
+ "options": {
+ "edit_in_ui": "Rediger i brugergrænsefladen",
+ "edit_in_yaml": "Rediger i YAML",
+ "header": "Indstillinger",
+ "invalid_yaml": "Ugyldig YAML",
+ "show_unused_optional": "Vis valgfri konfigurationsindstillinger, der ikke er anvendt"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Ændringsloggen for tilføjelsesprogrammet kunne ikke hentes",
+ "go_to_config": "Tilføjelsesprogrammet kunne ikke startes - validering af konfigurationen mislykkedes!",
+ "install": "Tilføjelsesprogrammet kunne ikke installeres",
+ "restart": "Tilføjelsesprogrammet kunne ikke genstartes",
+ "start": "Tilføjelsesprogrammet kunne ikke startes",
+ "start_invalid_config": "Gå til konfiguration",
+ "stop": "Tilføjelsesprogrammet kunne ikke stoppes",
+ "uninstall": "Tilføjelsesprogrammet kunne ikke fjernes",
+ "validate_config": "Konfigurationen af tilføjelsesprogrammet kunne ikke valideres"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor ('Application Armor') er et Linux-kernesikkerhedsmodul, der begrænser tilføjelsesprogrammets adgang til netværket, adgang til netværkstrafik samt tilladelse til at læse, skrive eller afvikle bestemte filer.\n\nTilføjelsesprogrammets udviklere kan optimere sikkerhedsindstillingerne for tilføjelsesprogrammet eller anmode om, at de deaktiveres. Hvis AppArmor er deaktiveret, vil det øge sikkerhedsrisiciene og har derfor en negativ indvirkning på sikkerhedsscoren for tilføjelsesprogrammet.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "Et tilføjelsesprogram kan godkende Home Assistant brugere, så tilføjelsesprogrammet giver brugerne mulighed for at logge ind på programmer, der kører i tilføjelsesprogrammet ved hjælp af deres Home Assistant brugernavn/adgangskode. Dette symbol angiver, om udvikleren af tilføjelsesprogrammet har anvendt denne funktion.",
+ "title": "Home Assistant autentifikation"
+ },
+ "docker_api": {
+ "description": "Tilføjelsesprogrammets udviklere har anmodet om at få adgang til administration af Docker på dit system. Dette giver tilføjelsesprogrammet fuld adgang til og kontrol med hele dit Home Assistant system, hvilket medfører sikkerhedsrisici og kan beskadige dit system. Derfor påvirker dette sikkerhedsvurderingen for tilføjelsesprogrammet negativt.\n\nAdgangen tildeles ikke automatisk og skal bekræftes af dig. Du skal derfor deaktivere beskyttelsestilstanden på tilføjelsesprogrammet manuelt. Deaktiver kun beskyttelsestilstanden, hvis du kender OG har tillid til udviklerne af dette tilføjelsesprogram.",
+ "title": "Fuld adgang til Docker"
+ },
+ "full_access": {
+ "description": "Dette tilføjelsesprogram får fuld adgang til systemets hardware efter anmodning fra tilføjelsesprogrammets udviklere. Adgangen kan sammenlignes med den privilegerede tilstand i Docker. Da dette medfører mulige sikkerhedsrisici, påvirker dette tilføjelsesprogrammets sikkerhedsvurdering negativt.\n\nAdgangen tildeles ikke automatisk og skal bekræftes af dig. Du skal derfor deaktivere beskyttelsestilstanden på tilføjelsesprogrammet manuelt. Deaktiver kun beskyttelsestilstanden, hvis du kender OG har tillid til udviklerne af dette tilføjelsesprogram.",
+ "title": "Fuld adgang til hardware"
+ },
+ "hassio_api": {
+ "description": "Tilføjelsesprogrammet har fået adgang til Supervisor API efter anmodning fra tilføjelsesprogrammets udviklere. Som standard kan tilføjelsesprogrammet få adgang til generelle versionsoplysninger om dit system. Når tilføjelsesprogrammet anmoder om 'Manager' eller 'Administrator' adgangsrettigheder til API'et, får tilføjelsesprogrammet adgang til at kontrollere flere dele af dit Home Assistant system. Denne tilladelse er fremhævet med dette symbol og vil påvirke tilføjelsesprogrammets sikkerhedsvurdering negativt.",
+ "title": "Adgang til Supervisor API"
+ },
+ "homeassistant_api": {
+ "description": "Dette tilføjelsesprogram har tilladelse til at tilgå dit Home Assistant-system via API-kald. Denne tilstand håndterer også godkendelse for tilføjelsesprogrammet, hvilket gør det muligt for tilføjelsesprogrammet at interagere med Home Assistant uden yderligere godkendelsestokens.",
+ "title": "Adgang til Home Assistant API"
+ },
+ "host_network": {
+ "description": "Tilføjelsesprogrammer kører normalt i deres eget isolerede netværkslag, hvilket forhindrer dem i at få adgang til netværket på værtsoperativsystemet. I nogle tilfælde kan netværksisolationen begrænse tilføjelsesprogrammets funktionalitet, og derfor kan isolationen ophæves af udvikleren af tilføjelsesprogrammet, hvilket kan give programmet fuld adgang til værtsmaskinens netværksfunktioner. Dette reducerer sikkerheden og påvirker derfor sikkerhedsvurderingen af tilføjelsesprogrammet, når denne indstilling bruges af tilføjelsesprogrammet.",
+ "title": "Værtsnetværk"
+ },
+ "host_pid": {
+ "description": "Normalt er de processer, som tilføjelsesprogrammet kører, isoleret fra alle andre systemprocesser. Tilføjelsesprogrammets udviklere har anmodet om at få adgang til de systemprocesser, der kører på værtsoperativsystemet, og give tilføjelsesprogrammet mulighed for også at afvikle processer på værtssystemet. Dette giver tilføjelsesprogrammet fuld adgang til og kontrol til hele dit Home Assistant system, hvilket medfører sikkerhedsrisici og kan beskadige dit system. Derfor påvirker dette sikkerhedsvurderingen for tilføjelsesprogrammet negativt.\n\nDette adgangsniveau gives ikke automatisk og skal bekræftes af dig. Du skal derfor deaktivere beskyttelsestilstanden på tilføjelsesprogrammet manuelt. Deaktiver kun beskyttelsestilstanden, hvis du kender OG har tillid til udviklerne af dette tilføjelsesprogram.",
+ "title": "Navneområde for værtsprocesser"
+ },
+ "ingress": {
+ "description": "Denne tilføjelse bruger Ingress til at integrere sin grænseflade sikkert i Home Assistant.",
+ "title": "Ingress"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "godkendelse",
+ "core": "Core",
+ "docker": "docker",
+ "hardware": "hardware",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "vært",
+ "host_pid": "vært pid",
+ "ingress": "ingress",
+ "rating": "bedømmelse",
+ "stage": "fase"
+ },
+ "rating": {
+ "description": "Home Assistant viser en sikkerhedsvurdering for hvert tilføjelsesprogram. Vurderingen angiver risici forbundet med brugen af det pågældende tilføjelsesprogram. Sikkerhedsvurderingen tager bl.a. hensyn til hvilken adgang et givet tilføjelsesprogram kræver til dit system.\n\nSikkerhedsvurderingen giver en score på en skala fra 1 til 6, hvor 1 er den laveste score (betragtes som den mest usikre og højeste risiko), og en score på 6 er den højeste score (betragtes som den mest sikre og laveste risiko).",
+ "title": "Sikkerhedsklassifikation for tilføjelsesprogram"
+ },
+ "role": {
+ "admin": "Administrator",
+ "backup": "sikkerhedskopi",
+ "default": "standard",
+ "homeassistant": "homeassistant",
+ "manager": "manager"
+ },
+ "stage": {
+ "description": "Tilføjelsesprogrammer kan have en af tre faser:\n\n{icon_stable} **Stabil**: Disse tilføjelsesprogrammer er klar til brug i produktionen.\n\n{icon_experimental} **Eksperimentel**: Disse tilføjelsesprogrammer indeholde fejl og kan være ufærdige.\n\n{icon_deprecated} **Forældet**: Disse tilføjelsesprogrammer modtager ikke længere opdateringer.",
+ "title": "Fase for tilføjelsesprogram"
+ },
+ "stages": {
+ "deprecated": "Udfaset",
+ "experimental": "Eksperimentel"
+ }
+ },
+ "changelog": "Ændringshistorik",
+ "cpu_usage": "Tilføjelsesprogrammets forbrug af CPU",
+ "hostname": "Værtsnavn",
+ "install": "installer",
+ "new_update_available": "{name} {version} er tilgængelig",
+ "not_available_arch": "Dette tilføjelsesprogram er ikke kompatibelt med processoren på enheden eller det operativsystem, du har installeret på enheden.",
+ "not_available_version": "Du kører Home Assistant {core_version_installed}. For at opdatere dette tilføjelsesprogram, skal du køre version {core_version_needed} eller nyere versioner af Home Assistant",
+ "open_web_ui": "Åbn webbrugergrænseflade",
+ "option": {
+ "auto_update": {
+ "description": "Opdater automatisk tilføjelsesprogrammet, når en ny version er tilgængelig",
+ "title": "Automatisk opdatering"
+ },
+ "boot": {
+ "description": "Start tilføjelsesprogrammet under en systemstart",
+ "title": "Start ved opstart"
+ },
+ "ingress_panel": {
+ "description": "Føj dette tilføjelsesprogram til sidepanelet",
+ "title": "Vis i sidepanel"
+ },
+ "protected": {
+ "description": "Blokerer forhøjet systemadgang fra tilføjelsesprogrammet",
+ "title": "Beskyttelsestilstand"
+ },
+ "watchdog": {
+ "description": "Dette starter tilføjelsesprogrammet, hvis det går ned",
+ "title": "Vagthund"
+ }
+ },
+ "protection_mode": {
+ "content": "Beskyttelsestilstand på dette tilføjelsesprogram er deaktiveret! Dette giver tilføjelsesprogrammet fuld adgang til hele systemet, hvilket medfører sikkerhedsrisici og kan beskadige dit system. Deaktiver kun beskyttelsestilstanden, hvis du kender, har brug for og har tillid til udvikleren bag dette tilføjelsesprogram.",
+ "enable": "Aktivér",
+ "title": "Beskyttelsestilstand er deaktiveret!"
+ },
+ "ram_usage": "Tilføjelsesprogrammets forbrug af RAM",
+ "rebuild": "genopbyg",
+ "restart": "genstart",
+ "start": "start",
+ "stop": "stop",
+ "uninstall": "afinstaller",
+ "visit_addon_page": "Besøg siden {name} for at få flere oplysninger"
+ },
+ "documentation": {
+ "get_documentation": "Dokumentationen for tilføjelsesprogrammet kunne ikke hentes, {error}"
+ },
+ "failed_to_reset": "Konfigurationen af tilføjelsesprogrammet kunne ikke nulstilles, {error}",
+ "failed_to_save": "Konfigurationen af tilføjelsesprogrammet kunne ikke gemmes, {error}",
+ "logs": {
+ "get_logs": "Logfiler for tilføjelsesprogrammet kunne ikke hentes, {error}"
+ },
+ "panel": {
+ "configuration": "Konfiguration",
+ "documentation": "Dokumentation",
+ "info": "Info",
+ "log": "Logfil"
+ },
+ "state": {
+ "installed": "Tilføjelsesprogrammet er installeret",
+ "not_available": "Tilføjelsesprogrammet er ikke tilgængeligt på dit system",
+ "not_installed": "Tilføjelsesprogrammet er ikke installeret"
+ }
+ },
+ "backup": {
+ "addons": "Tilføjelsesprogrammer",
+ "confirm_password": "Bekræft adgangskode til sikkerhedskopi",
+ "could_not_create": "Kunne ikke oprette sikkerhedskopi",
+ "create": "Opret",
+ "create_backup": "Opret sikkerhedskopi",
+ "create_blocked_not_running": "Det er ikke muligt at oprette en sikkerhedskopi lige nu, fordi systemet er i tilstanden {state}.",
+ "created": "Oprettet",
+ "delete_backup_confirm": "Slet",
+ "delete_backup_text": "Vil du slette {number} {number, plural,\n one {sikkerhedskopi}\n other {sikkerhedskopier}\n}?",
+ "delete_backup_title": "Slet sikkerhedskopi",
+ "delete_selected": "Slet valgte sikkerhedskopier",
+ "enter_password": "Angiv en adgangskode.",
+ "failed_to_delete": "Kunne ikke slette",
+ "folders": "Mapper",
+ "full_backup": "Fuld sikkerhedskopiering",
+ "name": "Navn på sikkerhedskopi",
+ "no_backups": "Du har ingen sikkerhedskopier endnu.",
+ "partial_backup": "Delvis sikkerhedskopiering",
+ "password": "Adgangskode til sikkerhedskopi",
+ "password_protection": "Adgangskodebeskyttelse",
+ "passwords_not_matching": "Adgangskoderne stemmer ikke overens",
+ "select_type": "Vælg, hvad der skal gendannes",
+ "selected": "{number} valgt",
+ "type": "Sikkerhedskopitype",
+ "upload_backup": "Overfør sikkerhedskopi"
+ },
+ "common": {
+ "cancel": "Annuller",
+ "close": "Luk",
+ "description": "Beskrivelse",
+ "error": {
+ "unknown": "Ukendt fejl",
+ "update_failed": "Opdateringen mislykkedes"
+ },
+ "failed_to_restart_name": "Kunne ikke genstarte {name}",
+ "failed_to_update_name": "Kunne ikke opdatere {name}",
+ "learn_more": "Lær mere",
+ "menu": "Menu",
+ "new_version_available": "Ny version tilgængelig",
+ "newest_version": "Nyeste version",
+ "no": "Nej",
+ "refresh": "Opdater",
+ "release_notes": "Udgivelsesnoter",
+ "reload": "Genindlæs",
+ "reset_defaults": "Gendan standardindstillinger",
+ "reset_options": "Nulstil indstillinger",
+ "restart": "Genstart",
+ "restart_name": "Genstart {name}",
+ "review": "gennemgå",
+ "running_version": "Du bruger pt. version {version}",
+ "save": "Gem",
+ "show": "vis",
+ "show_more": "Vis flere oplysninger om dette",
+ "update": "Opdater",
+ "update_available": "{count, plural,\n one {opdatering}\n other {{count} opdateringer}\n} afventer",
+ "version": "Version",
+ "yes": "Ja"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Er du sikker på, at du vil nulstille alle dine indstillinger?",
+ "title": "Nulstil indstillinger"
+ },
+ "restart": {
+ "text": "Er du sikker på at du vil genstarte {name}?",
+ "title": "Genstart {name}"
+ },
+ "update": {
+ "text": "Er du sikker på, at du vil opdatere {name} til version {version} ?",
+ "title": "Opdater {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "En ny version er tilgængelig",
+ "addon_running": "Tilføjelsesprogrammet kører",
+ "addon_stopped": "Tilføjelsesprogrammet er stoppet",
+ "addons": "Tilføjelsesprogrammer",
+ "no_addons": "Du har endnu ikke installeret nogen tilføjelsesprogrammer. Gå over til butikken for tilføjelsesprogrammer for at komme i gang!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Annuller",
+ "description": "Du bruger i øjeblikket ''{current_path}'' som datadisk. Flytning af datadiske vil genstarte din enhed, og det anslås at tage {time} minutter. Din Home Assistant-installation vil ikke være tilgængelig i denne periode. Afbryd ikke strømmen under flytningen!",
+ "loading_devices": "Indlæser enheder",
+ "move": "Flyt",
+ "moving": "Flytter datadisk",
+ "moving_desc": "Genstarter og flytter datadisk. Vent venligst.",
+ "no_devices": "Ingen passende tilsluttede enheder fundet",
+ "select_device": "Vælg ny datadisk",
+ "title": "Flyt datadisk"
+ },
+ "hardware": {
+ "attributes": "Attributter",
+ "device_path": "Enhedssti",
+ "id": "Identifikationsnummer",
+ "search": "Søg efter hardware",
+ "subsystem": "Delsystem",
+ "title": "Hardware"
+ },
+ "network": {
+ "connected_to": "Forbundet til {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Deaktiveret",
+ "dns_servers": "DNS servere",
+ "failed_to_change": "Ændring af netværksindstillingerne fejlede",
+ "gateway": "Gateway adresse",
+ "ip_netmask": "IP adresse/netmaske",
+ "open": "Åben",
+ "scan_ap": "Scan for adgangspunkter",
+ "static": "Statisk",
+ "title": "Netværksindstillinger",
+ "unsaved": "Du har ikke gemte ændringer, hvis du fortsætter, vil disse gå tabt",
+ "warning": "Hvis du ændrer på Wi-Fi, IP eller Gateway adresser, vil du måske miste forbindelsen!",
+ "wep": "WEP",
+ "wpa": "wpa-psk"
+ },
+ "registries": {
+ "add_new_registry": "Tilføj nyt registry",
+ "add_registry": "Tilføj registry",
+ "failed_to_add": "Fejl under tilføjelse af registry",
+ "failed_to_remove": "fejlede i at fjerne registret",
+ "no_registries": "Ingen registries er konfigurerede",
+ "password": "Adgangskode",
+ "registry": "Registreringsdatabasen",
+ "remove": "Fjern",
+ "title_add": "Tilføj nyt containerregister",
+ "title_manage": "Håndtér container registries",
+ "username": "Brugernavn"
+ },
+ "repositories": {
+ "add": "Tilføj",
+ "remove": "Fjern",
+ "title": "Administrer tilføjelsesregistre",
+ "used": "Repository er i brug til installerede tilføjelsesprogrammer og kan ikke fjernes."
+ },
+ "restart_addon": {
+ "confirm_text": "Genstart tilføjelsesprogrammet",
+ "text": "Vil du genstarte tilføjelsesprogrammet med ændringerne?"
+ },
+ "update": {
+ "backup": "Sikkerhedskopi",
+ "create_backup": "Opret en sikkerhedskopi af {name}, før du opdaterer",
+ "creating_backup": "Opretter sikkerhedskopi af {name}",
+ "updating": "Opdaterer {name} til version {version}"
+ }
+ },
+ "my": {
+ "error": "Der opstod en ukendt fejl",
+ "error_addon_no_ingress": "Tilføjelsesprogrammet understøtter ikke ingress",
+ "error_addon_not_found": "Tilføjelsesprogrammet blev ikke fundet",
+ "error_addon_not_installed": "Tilføjelsesprogrammet er ikke installeret venligst installer det først",
+ "error_addon_not_started": "Tilføjelsesprogrammet kører ikke. Du skal starte det først",
+ "faq_link": "Ofte stillede spørgsmål om Home Assistant",
+ "not_supported": "Denne omdirigering understøttes ikke af din Home Assistant installation. Kontroller {link} for de understøttede omdirigeringer og den version, de blev introduceret i."
+ },
+ "panel": {
+ "addons": "Tilføjelsesprogrammer",
+ "backups": "Sikkerhedskopier",
+ "dashboard": "Betjeningspanel",
+ "store": "Butik for tilføjelsesprogrammer",
+ "system": "System"
+ },
+ "store": {
+ "missing_addons": "Mangler du tilføjelsesprogrammer? Aktivér avanceret tilstand på din brugerprofilside.",
+ "no_results_found": "Der blev ikke fundet nogen resultater i {repository}.",
+ "registries": "Registre",
+ "repositories": "Tilføjelsesregistre"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Core CPU-forbrug",
+ "ram_usage": "Core RAM-forbrug"
+ },
+ "host": {
+ "change": "Ændr",
+ "change_hostname": "Skift værtsnavn",
+ "confirm_reboot": "Er du sikker på, at du vil genstarte værten?",
+ "confirm_shutdown": "Er du sikker på, at du vil lukke værten ned?",
+ "deployment": "Installation",
+ "docker_version": "Docker-version",
+ "emmc_lifetime_used": "Anvendt eMMC-levetid",
+ "failed_to_get_hardware_list": "Hardwarelisten kunne ikke hentes",
+ "failed_to_import_from_usb": "Import fra USB mislykkedes",
+ "failed_to_move": "Datadisken kunne ikke flyttes",
+ "failed_to_reboot": "Genstart af vært mislykkedes",
+ "failed_to_set_hostname": "Indstilling af værtsnavn mislykkedes",
+ "failed_to_shutdown": "Nedlukning af vært mislykkedes",
+ "hardware": "Hardware",
+ "hostname": "Værtsnavn",
+ "import_from_usb": "Importer fra USB",
+ "ip_address": "IP-adresse",
+ "move_datadisk": "Flyt datadisk",
+ "new_hostname": "Indtast et nyt værtsnavn:",
+ "operating_system": "Operativsystem",
+ "reboot_host": "Genstart værten",
+ "shutdown_host": "Sluk vært",
+ "used_space": "Anvendt plads"
+ },
+ "log": {
+ "get_logs": "Kunne ikke hente {provider} -logfiler, {error}",
+ "log_provider": "Logudbyder"
+ },
+ "supervisor": {
+ "beta_backup": "Sørg for, at du har sikkerhedskopier af dine data, før du aktiverer denne funktion.",
+ "beta_join_confirm": "Vil du tilmelde dig beta-kanalen?",
+ "beta_release_items": "Dette omfatter betaversioner af:",
+ "beta_warning": "Betaversioner er henvendt til testere og tidlige brugere og kan indeholde ustabil kode",
+ "channel": "Kanal",
+ "cpu_usage": "Supervisor CPU-forbrug",
+ "failed_to_reload": "Genindlæsning af Supervisor mislykkedes",
+ "failed_to_set_option": "Indstilling af Supervisor optioner myslykkedes",
+ "failed_to_update": "Opdatering af Supervisor mislykkedes",
+ "join_beta_action": "Deltag i beta-kanal",
+ "join_beta_description": "Få beta-opdateringer til Home Assistant (RCs), Supervisor og værtsmaskinen",
+ "leave_beta_action": "Forlad betakanal",
+ "leave_beta_description": "Få stabile opdateringer til Home Assistant, Supervisor og værtsmaskinen",
+ "ram_usage": "Supervisor RAM-forbrug",
+ "reload_supervisor": "Genindlæs Supervisor",
+ "search": "Søg",
+ "share_diagnostics": "Del diagnostik",
+ "share_diagnostics_description": "Del oplysninger om nedbrud og diagnosticeringsinformationer.",
+ "share_diagonstics_description": "Ønsker du automatisk at dele rapporter og fejlfindingsoplysninger når supervisoren oplever uventede fejl? {line_break} Dette vil lade os løse problemerne, informationerne er kun tilgængelige for Home Assistant Core teamet og vil ikke blive delt med andre. {line_break} Dataene indeholder ikke private/følsomme informationer og du kan slå det fra i indstillingerne til hver en tid.",
+ "share_diagonstics_title": "Hjælp med at forbedre Home Assistant",
+ "unhealthy_description": "At køre en usund installation vil forårsage problemer. Nedenfor er en liste over problemer, der er fundet med din installation. Klik på linkene for at lære, hvordan du kan løse problemerne.",
+ "unhealthy_reason": {
+ "docker": "Docker-miljøet fungerer ikke korrekt",
+ "privileged": "Supervisor er ikke privilegeret",
+ "setup": "Opsætning af Supervisor mislykkedes",
+ "supervisor": "Opdatering af Supervisor mislykkedes",
+ "untrusted": "Der blev fundet indhold, der ikke er tillid til"
+ },
+ "unhealthy_title": "Din installation er usund",
+ "unsupported_description": "Nedenfor er en liste over problemer, der er fundet med din installation. Klik på linkene for at lære, hvordan du kan løse problemerne.",
+ "unsupported_reason": {
+ "apparmor": "AppArmor er ikke aktiveret på værten",
+ "container": "Containere, der erfaringsmæssigt giver problemer",
+ "content-trust": "Validering af indholds-tillid er deaktiveret",
+ "content_trust": "Indholdstillidsvalidering er deaktiveret",
+ "dbus": "DBUS",
+ "docker_configuration": "Konfiguration af Docker",
+ "docker_version": "Docker version",
+ "job_conditions": "Ignorerede jobbetingelser",
+ "lxc": "LXC",
+ "network_manager": "Netværksadministrator",
+ "os": "Operativsystem",
+ "os_agent": "OS-agent",
+ "privileged": "Supervisor er ikke privilegeret",
+ "software": "Ikke-understøttet software fundet",
+ "source_mods": "Kildeændringer",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Du anvender en ikke-understøttet installation",
+ "update_supervisor": "Opdater Supervisor",
+ "warning": "ADVARSEL"
+ }
+ },
+ "update_available": {
+ "core_note": "Supervisor vil rulle tilbage til version {version} hvis din instans ikke startes korrekt efter opdateringen.",
+ "create_backup": "Opret sikkerhedskopi før opdatering",
+ "creating_backup": "Opretter sikkerhedskopi af {name}",
+ "description": "{version} er installeret. Klik på Opdater for at opdatere til version {newest_version}",
+ "no_update": "Der er ingen tilgængelige opdateringer for {name}",
+ "open_release_notes": "Åbn udgivelsesnoter",
+ "update_name": "Opdater {name}",
+ "updating": "Opdaterer {name} til version {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Ønsker du at forblive logget ind?",
+ "confirm": "Ja",
+ "decline": "Nej"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Tilkobl ude",
+ "arm_custom_bypass": "Brugerdefineret bypass",
+ "arm_home": "Tilkobl hjemme",
+ "arm_night": "Tilkoblet nat",
+ "arm_vacation": "Tilkobl ferie",
+ "clear_code": "Ryd",
+ "code": "Kode",
+ "disarm": "Frakobl"
+ },
+ "area": {
+ "area_not_found": "Område ikke fundet."
+ },
+ "automation": {
+ "last_triggered": "Senest udløst",
+ "trigger": "Udfør"
+ },
+ "button": {
+ "press": "Tryk"
+ },
+ "camera": {
+ "not_available": "Billedet er ikke tilgængeligt"
+ },
+ "climate": {
+ "aux_heat": "Støtte-varme",
+ "away_mode": "Ude af huset-modus",
+ "cooling": "{name} køler",
+ "current_temperature": "{name} nuværende temperatur",
+ "currently": "Aktuelt",
+ "fan_mode": "Blæsertilstand",
+ "heating": "{name} opvarmer",
+ "high": "høj",
+ "low": "lav",
+ "on_off": "Tænd / sluk",
+ "operation": "Drifttype",
+ "preset_mode": "Forudindstilling",
+ "swing_mode": "Swing tilstand",
+ "target_humidity": "Målluftfugtighed",
+ "target_temperature": "Måltemperatur",
+ "target_temperature_entity": "{name} måltemperatur",
+ "target_temperature_mode": "{name} måltemperatur {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "formindsk",
+ "increment": "forøg",
+ "reset": "nulstil"
+ }
+ },
+ "cover": {
+ "position": "Position",
+ "tilt_position": "Vippeposition"
+ },
+ "fan": {
+ "direction": "Retning",
+ "forward": "Frem",
+ "oscillate": "Sving",
+ "preset_mode": "Forudindstillet tilstand",
+ "reverse": "Baglæns",
+ "speed": "Hastighed"
+ },
+ "humidifier": {
+ "humidity": "Målfugtighed",
+ "mode": "Tilstand",
+ "on_entity": "{name} tændt",
+ "target_humidity_entity": "{name} målfugtighed"
+ },
+ "light": {
+ "brightness": "Lysstyrke",
+ "cold_white_value": "kold hvid lysstyrke",
+ "color_brightness": "Farvetemperatur",
+ "color_temperature": "Farvetemperatur",
+ "effect": "Effekt",
+ "warm_white_value": "Varm hvid lysstyrke",
+ "white_value": "Hvidværdi"
+ },
+ "lock": {
+ "code": "Kode",
+ "lock": "Lås",
+ "unlock": "Lås op"
+ },
+ "media_player": {
+ "browse_media": "Gennemse medier",
+ "media_next_track": "Næste nummer",
+ "media_pause": "Pause",
+ "media_play": "Afspil",
+ "media_play_pause": "Afspil/pause",
+ "media_previous_track": "Forrige nummer",
+ "media_stop": "Stop",
+ "media_volume_down": "Lydstyrke ned",
+ "media_volume_mute": "Slå lyden fra",
+ "media_volume_unmute": "Slå lyden til",
+ "media_volume_up": "Lydstyrke op",
+ "sound_mode": "Lydtilstand",
+ "source": "Kilde",
+ "text_to_speak": "Tekst til tale",
+ "turn_off": "Sluk",
+ "turn_on": "Tænd"
+ },
+ "persistent_notification": {
+ "dismiss": "Afvis"
+ },
+ "scene": {
+ "activate": "Aktiver"
+ },
+ "script": {
+ "cancel": "Annuller",
+ "cancel_multiple": "Annuller {number}",
+ "run": "Kør"
+ },
+ "service": {
+ "run": "Kør"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "annuller",
+ "finish": "afslut",
+ "pause": "pause",
+ "start": "start"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Genoptag rengøring",
+ "return_to_base": "Tilbage til dock",
+ "start_cleaning": "Start rengøring",
+ "turn_off": "Sluk",
+ "turn_on": "Tænd"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Ikke til stede",
+ "currently": "Lige nu",
+ "on_off": "Tænd / sluk",
+ "operation": "Drift",
+ "target_temperature": "Måltemperatur"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Lufttryk",
+ "humidity": "Luftfugtighed",
+ "precipitation": "Nedbør",
+ "temperature": "Temperatur",
+ "visibility": "Sigtbarhed",
+ "wind_speed": "Vindhastighed"
+ },
+ "cardinal_direction": {
+ "e": "Ø",
+ "ene": "ØNØ",
+ "ese": "ØSØ",
+ "n": "N",
+ "ne": "NØ",
+ "nne": "NNØ",
+ "nnw": "NNV",
+ "nw": "NV",
+ "s": "S",
+ "se": "SØ",
+ "sse": "SSØ",
+ "ssw": "SSV",
+ "sw": "SV",
+ "w": "V",
+ "wnw": "VNV",
+ "wsw": "VSV"
+ },
+ "day": "Dag",
+ "forecast": "Vejrudsigt",
+ "high": "Maks.",
+ "low": "Min.",
+ "night": "Nat"
+ }
+ },
+ "common": {
+ "and": "og",
+ "back": "Tilbage",
+ "cancel": "Annuller",
+ "clear": "Ryd",
+ "close": "Luk",
+ "continue": "Fortsæt",
+ "copied": "Kopieret",
+ "copied_clipboard": "Kopieret til udklipsholderen",
+ "delete": "Slet",
+ "disable": "Deaktiver",
+ "enable": "Aktiver",
+ "error_required": "Påkrævet",
+ "help": "Hjælp",
+ "leave": "Forlad",
+ "loading": "Indlæser",
+ "menu": "Menu",
+ "move": "Flyt",
+ "next": "Næste",
+ "no": "Nej",
+ "not_now": "Ikke nu",
+ "overflow_menu": "Overløbsmenu",
+ "previous": "Forrige",
+ "refresh": "Opdater",
+ "remove": "Fjern",
+ "rename": "Omdøb",
+ "save": "Gem",
+ "skip": "Spring over",
+ "stay": "Bliv",
+ "submit": "Indsend",
+ "successfully_deleted": "Slettet",
+ "successfully_saved": "Gemt",
+ "undo": "Fortryd",
+ "yes": "Ja"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Tilføjelsesprogram",
+ "error": {
+ "fetch_addons": {
+ "description": "Der opstod en fejl under indlæsningen af tilføjelsesprogrammer.",
+ "title": "Fejl ved indlæsning af tilføjelsesprogrammer"
+ },
+ "no_supervisor": {
+ "description": "Tilføjelsesprogrammer understøttes ikke.",
+ "title": "Supervisor blev ikke fundet"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Tilføj",
+ "failed_create_area": "Området kunne ikke oprettes.",
+ "name": "Navn",
+ "text": "Angiv navnet på det nye område.",
+ "title": "Tilføj nyt område"
+ },
+ "add_new": "Tilføj nyt område…",
+ "area": "Område",
+ "clear": "Ryd",
+ "no_areas": "Du har ikke nogen områder",
+ "no_match": "Ingen matchende områder fundet",
+ "show_areas": "Vis områder"
+ },
+ "attributes": {
+ "expansion_header": "Attributter"
+ },
+ "blueprint-picker": {
+ "add_user": "Tilføj bruger",
+ "remove_user": "Fjern bruger",
+ "select_blueprint": "Vælg et Blueprint"
+ },
+ "calendar": {
+ "my_calendars": "Mine kalendere",
+ "today": "I dag"
+ },
+ "data-table": {
+ "clear": "Nulstil",
+ "filtering_by": "Filtrering efter",
+ "hidden": "{number} skjult",
+ "no-data": "Ingen data",
+ "search": "Søg"
+ },
+ "date-range-picker": {
+ "end_date": "Slutdato",
+ "ranges": {
+ "last_week": "Sidste uge",
+ "this_week": "Denne uge",
+ "today": "I dag",
+ "yesterday": "I går"
+ },
+ "select": "Vælg",
+ "start_date": "Startdato"
+ },
+ "device-picker": {
+ "clear": "Ryd",
+ "device": "Enhed",
+ "no_area": "Intet område",
+ "no_devices": "Du har ingen enheder",
+ "no_match": "Ingen matchende enheder fundet",
+ "show_devices": "Vis enheder",
+ "toggle": "Til/fra"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Attribut",
+ "show_attributes": "Vis attributter"
+ },
+ "entity-picker": {
+ "clear": "Ryd",
+ "edit": "Rediger",
+ "entity": "Entitet",
+ "no_match": "Ingen matchende entiteter fundet",
+ "show_entities": "Vis entiteter"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "Historikintegration deaktiveret",
+ "loading_history": "Indlæser tilstandshistorik…",
+ "no_history_found": "Ingen tilstandshistorik fundet."
+ },
+ "logbook": {
+ "by": "af",
+ "by_service": "efter tjeneste",
+ "entries_not_found": "Der blev ikke fundet nogen logbogshændelser.",
+ "messages": {
+ "became_unavailable": "blev utilgængelig",
+ "changed_to_state": "ændret til {state}",
+ "cleared_device_class": "ingen {device_class} registreret",
+ "cleared_tampering": "manipulation ikke registreret",
+ "detected_device_class": "registreret {device_class}",
+ "detected_tampering": "registrerede manipulation",
+ "is_closing": "lukker",
+ "is_opening": "åbner",
+ "rose": "stod op",
+ "set": "gik ned",
+ "turned_off": "blev slukket",
+ "turned_on": "tændte",
+ "was_at_home": "var hjemme",
+ "was_at_state": "blev registreret som {state}",
+ "was_away": "var væk",
+ "was_closed": "blev lukket",
+ "was_connected": "blev tilsluttet",
+ "was_disconnected": "blev afbrudt",
+ "was_locked": "blev låst",
+ "was_low": "var lav",
+ "was_normal": "var normal",
+ "was_opened": "blev åbnet",
+ "was_plugged_in": "blev tilsluttet strøm",
+ "was_safe": "blev sikker",
+ "was_unlocked": "blev låst op",
+ "was_unplugged": "blev frakoblet strøm",
+ "was_unsafe": "blev usikker"
+ },
+ "retrieval_error": "Logbogen kunne ikke indlæses",
+ "show_trace": "Vis sporing"
+ },
+ "media-browser": {
+ "audio_not_supported": "Din browser understøtter ikke lydelementet.",
+ "choose_player": "Vælg afspiller",
+ "class": {
+ "album": "Album",
+ "app": "App",
+ "artist": "Kunstner",
+ "channel": "Kanal",
+ "composer": "Komponist",
+ "contributing_artist": "Bidragende kunstner",
+ "directory": "Bibliotek",
+ "episode": "Episode",
+ "game": "Spil",
+ "genre": "Genre",
+ "image": "Billede",
+ "movie": "Film",
+ "music": "Musik",
+ "playlist": "Playlist",
+ "podcast": "Podcast",
+ "season": "Sæson",
+ "track": "Spor",
+ "tv_show": "TV show",
+ "url": "Webadresse",
+ "video": "Video"
+ },
+ "documentation": "Dokumentation",
+ "learn_adding_local_media": "Få flere oplysninger om tilføjelse af medier i {documentation} .",
+ "local_media_files": "Placer dine video-, lyd- og billedfiler i mediekataloget for at kunne gennemse og afspille dem i browseren eller på understøttede medieafspillere.",
+ "media-player-browser": "Medieafspiller",
+ "media_browsing_error": "Fejl ved mediebrowsing",
+ "media_not_supported": "Medieafspilleren understøtter ikke denne type medier",
+ "media_player": "Medieafspiller",
+ "no_items": "Ingen medier til afspilning",
+ "no_local_media_found": "Ingen lokale medier fundet",
+ "no_media_folder": "Det ser ud til, at du ikke har oprettet medie katalog endnu.",
+ "pick": "Vælg",
+ "pick-media": "Vælg medie",
+ "play": "Afspil",
+ "play-media": "Afspil medie",
+ "setup_local_help": "Se {documentation} for, hvordan du opsætter lokale medier.",
+ "video_not_supported": "Din browser understøtter ikke videoelementet.",
+ "web-browser": "Webbrowser"
+ },
+ "picture-upload": {
+ "label": "Billede",
+ "unsupported_format": "Ikke-understøttet format, vælg venligst et JPEG-, PNG- eller GIF-billede."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Indtast QR-kodeværdi",
+ "manual_input": "Du kan scanne QR-koden med en anden QR-scanner og indsætte koden i input-feltet nedenfor",
+ "not_supported": "Din browser understøtter ikke QR-scanning.",
+ "only_https_supported": "Du kan kun bruge dit kamera til at scanne en QR-kode, når du bruger HTTPS.",
+ "select_camera": "Vælg kamera"
+ },
+ "related-filter-menu": {
+ "filter": "Filter",
+ "filter_by_area": "Filtrer efter område",
+ "filter_by_device": "Filtrer efter enhed",
+ "filter_by_entity": "Filtrer efter entitet",
+ "filtered_by_area": "område: {area_name}",
+ "filtered_by_device": "enhed: {device_name}",
+ "filtered_by_entity": "entitet: {entity_name}"
+ },
+ "related-items": {
+ "area": "Område",
+ "automation": "En del af følgende automatiseringer",
+ "device": "Enhed",
+ "entity": "Relaterede entiteter",
+ "group": "En del af følgende grupper",
+ "integration": "Integration",
+ "no_related_found": "Ingen relaterede elementer fundet.",
+ "scene": "En del af følgende scener",
+ "script": "En del af følgende scripts"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\none {dag}\nother {dage}\n}",
+ "hour": "{count} {count, plural,\n one {time}\n other {timer}\n}",
+ "minute": "{count} {count, plural,\none {minut}\nother {minutter}\n}",
+ "second": "{count} {count, plural,\n one {sekund}\n other {sekunder}\n}",
+ "week": "{count} {count, plural,\none {uge}\nother {uger}\n}"
+ },
+ "future_duration": {
+ "day": "Om {count} {count, plural,\n one {dag}\n other {dage}\n}",
+ "hour": "Om {count} {count, plural,\n one {time}\n other {timer}\n}",
+ "minute": "Om {count} {count, plural,\n one {minut}\n other {minutter}\n}",
+ "second": "Om {count} {count, plural,\n one {sekund}\n other {sekunder}\n}",
+ "week": "Om {count} {count, plural,\n one {uge}\n other {uger}\n}"
+ },
+ "just_now": "Lige nu",
+ "never": "Aldrig",
+ "past_duration": {
+ "day": "{count} {count, plural,\n one {dag}\n other {dage}\n} siden",
+ "hour": "{count} {count, plural,\n one {time}\n other {timer}\n} siden",
+ "minute": "{count} {count, plural,\n one {minut}\n other {minutter}\n} siden",
+ "second": "{count} {count, plural,\n one {sekund}\n other {sekunder}\n} siden",
+ "week": "{count} {count, plural,\n one {uge}\n other {uger}\n} siden"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Dokumentation for integration",
+ "required": "Dette felt er påkrævet",
+ "service_data": "Service data",
+ "target": "Mål",
+ "target_description": "Hvad skal denne tjeneste bruge som mål områder, enheder eller entiteter."
+ },
+ "service-picker": {
+ "service": "Tjeneste"
+ },
+ "statistic-picker": {
+ "learn_more": "Få mere at vide om statistik",
+ "missing_entity": "Hvorfor vises min entitet ikke?",
+ "no_match": "Der blev ikke fundet nogen matchende statistik",
+ "no_statistics": "Du har ingen statistik",
+ "statistic": "Statistik"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Indlæser statistik …",
+ "no_statistics_found": "Ingen statistik fundet.",
+ "statistic_types": {
+ "max": "max",
+ "mean": "mean",
+ "min": "min",
+ "sum": "sum"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Vælg område",
+ "add_device_id": "Vælg enhed",
+ "add_entity_id": "Vælg entitet",
+ "expand": "Udvid",
+ "expand_area_id": "Opdel dette område i separate enheder og entiteter.",
+ "expand_device_id": "Opdel denne enhed i separate entiteter.",
+ "remove": "Fjern",
+ "remove_area_id": "Fjern område",
+ "remove_device_id": "Fjern enhed",
+ "remove_entity_id": "Fjern entitet"
+ },
+ "user-picker": {
+ "add_user": "Tilføj bruger",
+ "no_user": "Ingen bruger",
+ "remove_user": "Fjern bruger"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Hvis deaktiveret, tilføjes nyligt opdagede entiteter fra {integration} ikke automatisk til Home Assistant.",
+ "enable_new_entities_label": "Aktivér nyligt tilføjede entiteter.",
+ "enable_polling_description": "Hvis Home Assistant automatisk skal hente {integration} enheder for opdateringer.",
+ "enable_polling_label": "Aktiver automatisk henting af opdateringer",
+ "restart_home_assistant": "Du skal genstarte Home Assistant før dine ændringer aktiveres",
+ "title": "Systemindstillinger for {integration}",
+ "update": "Opdater"
+ },
+ "domain_toggler": {
+ "reset_entities": "Nulstil entiteter",
+ "title": "Skift domæner"
+ },
+ "entity_registry": {
+ "control": "Kontrol",
+ "customize_link": "entitetstilpasninger",
+ "dismiss": "Afvis",
+ "editor": {
+ "advanced": "Avancerede indstillinger",
+ "area": "Angiv entitetsomåde",
+ "area_note": "Som standard er entiteterne på en enhed i samme område som enheden. Hvis du ændrer området for denne entitet, følger den ikke længere enhedens område.",
+ "change_device_area": "Ændr enhedsområde",
+ "confirm_delete": "Er du sikker på, at du vil slette denne entitet?",
+ "delete": "Slet",
+ "device_class": "Vis som",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Dør",
+ "garage_door": "Garageport",
+ "opening": "Anden",
+ "window": "Vindue"
+ },
+ "cover": {
+ "door": "Dør",
+ "garage": "Garageport",
+ "window": "Vindue"
+ }
+ },
+ "device_disabled": "Denne entitets enheden er deaktiveret.",
+ "enabled_cause": "Deaktiveret af {cause}.",
+ "enabled_delay_confirm": "De aktiverede entiteter vil blive tilføjet til Home Assistant om {delay} sekunder",
+ "enabled_description": "Deaktiverede entiteter tilføjes ikke til Home Assistant.",
+ "enabled_label": "Aktivér entitet",
+ "enabled_restart_confirm": "Genstart Home Assistant for at fuldføre aktiveringen af entiteterne",
+ "entity_id": "Entitets-id",
+ "follow_device_area": "Følg enhedsområde",
+ "icon": "Ikon",
+ "icon_error": "Ikoner skal være i formatet 'præfiks:ikonnavn', fx. 'mdi:home'",
+ "name": "Navn",
+ "note": "Bemærk: Alle integrationer virker muligvis ikke med endnu.",
+ "open_device_settings": "Åbn enhedsindstillinger",
+ "unavailable": "Denne entitet er ikke tilgængelig.",
+ "update": "Opdater"
+ },
+ "faq": "dokumentation",
+ "info_customize": "Du kan overskrive nogle attributter i afsnittet {customize_link}.",
+ "no_unique_id": "Denne entitet (\" {entity_id} \") har ikke et unikt id, og dens indstillinger kan derfor ikke administreres fra brugerfladen. Se {faq_link} for flere detaljer.",
+ "related": "Relaterede",
+ "settings": "Indstillinger"
+ },
+ "generic": {
+ "cancel": "Annuller",
+ "close": "Luk",
+ "default_confirmation_title": "Er du sikker?",
+ "ok": "OK"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Startværdi",
+ "maximum": "Maksimumsværdi",
+ "minimum": "Minimumsværdi",
+ "restore": "Gendan den sidst kendte værdi, når Home Assistant starter",
+ "step": "Trin størrelse"
+ },
+ "generic": {
+ "icon": "Ikon",
+ "name": "Navn"
+ },
+ "input_datetime": {
+ "date": "Dato",
+ "datetime": "Dato og tid",
+ "mode": "Hvad vil du indtaste",
+ "time": "Tid"
+ },
+ "input_number": {
+ "box": "Inputfelt",
+ "max": "Maksimumsværdi",
+ "min": "Minimumsværdi",
+ "mode": "Visningstilstand",
+ "slider": "Skyder",
+ "step": "Trinstørrelse",
+ "unit_of_measurement": "Måleenhed"
+ },
+ "input_select": {
+ "add": "Tilføj",
+ "add_option": "Tilføj indstilling",
+ "no_options": "Der er ingen muligheder endnu.",
+ "options": "Indstillinger"
+ },
+ "input_text": {
+ "max": "Maksimumslængde",
+ "min": "Minimumslængde",
+ "mode": "Visningstilstand",
+ "password": "Adgangskode",
+ "pattern": "Regex-mønster til validering på klientsiden",
+ "text": "Tekst"
+ },
+ "platform_not_loaded": "{platform}-integrationen er ikke indlæst. Tilføj den til din konfiguration, enten ved at tilføje 'default_config:' eller ''{platform}:''.",
+ "required_error_msg": "Dette felt er påkrævet",
+ "timer": {
+ "duration": "Varighed"
+ },
+ "yaml_not_editable": "Indstillingerne for denne entitet kan ikke redigeres fra brugerfladen. Det er kun entiteter, der er konfigureret fra brugerfladen, der kan konfigureres herfra."
+ },
+ "image_cropper": {
+ "crop": "Beskær"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Luk cover",
+ "close_tile_cover": "Luk cover vippeposition",
+ "close_tilt_cover": "Luk cover vippeposition",
+ "open_cover": "Åbn cover",
+ "open_tilt_cover": "Luk cover vippeposition",
+ "stop_cover": "Stop cover"
+ },
+ "details": "Detaljer",
+ "dismiss": "Afvis dialog",
+ "edit": "Rediger entitet",
+ "history": "Historik",
+ "last_changed": "Sidst ændret",
+ "last_updated": "Sidst opdateret",
+ "logbook": "Logbog",
+ "person": {
+ "create_zone": "Opret zone fra den aktuelle lokalitet"
+ },
+ "remote": {
+ "activity": "Nuværende aktivitet"
+ },
+ "restored": {
+ "confirm_remove_text": "Er du sikker på, at du vil fjerne denne entitet?",
+ "confirm_remove_title": "Fjern entitet?",
+ "not_provided": "Denne entitet er i øjeblikket ikke tilgængelig og er blevet gjort forældreløs af en fjernet, ændret eller dysfunktionel integration eller enhed.",
+ "remove_action": "Fjern entitet",
+ "remove_intro": "Hvis entiteten ikke længere er i brug, kan du rydde op ved at fjerne den."
+ },
+ "script": {
+ "last_action": "Senest udført",
+ "last_triggered": "Senest udført"
+ },
+ "settings": "Entitetsindstillinger",
+ "show_more": "Vis mere",
+ "sun": {
+ "elevation": "Elevation",
+ "rising": "Solopgang",
+ "setting": "Solnedgang"
+ },
+ "updater": {
+ "title": "Opdateringsvejledning"
+ },
+ "vacuum": {
+ "clean_spot": "Rengør område",
+ "commands": "Støvsugerkommandoer",
+ "fan_speed": "Blæserhastighed",
+ "locate": "Lokaliser",
+ "pause": "Pause",
+ "return_home": "Retur til ladestation",
+ "start": "Start",
+ "start_pause": "Start/Pause",
+ "status": "Status",
+ "stop": "Stop"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Forsøg på at fortolke MQTT-meddelelser som JSON",
+ "entities": "Entiteter",
+ "no_entities": "Ingen entiteter",
+ "no_triggers": "Ingen udløsere",
+ "payload_display": "Payload-visning",
+ "recent_messages": "{n} senest modtagne meddelelser",
+ "show_as_yaml": "Vis som YAML",
+ "title": "{device} debug-oplysninger",
+ "triggers": "Udløsere"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Indstillinger"
+ },
+ "loading": {
+ "loading_flow": "Vent venligst, mens indstillingerne for {integration} bliver klargjort",
+ "loading_step": "Indlæser næste trin for {integration}"
+ },
+ "success": {
+ "description": "Indstillingerne blev gemt."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Områder",
+ "automation": "Automatiseringer",
+ "blueprint": "Blueprints",
+ "core": "Generelt",
+ "customize": "Tilpasninger",
+ "devices": "Enheder",
+ "energy": "Energi",
+ "entities": "Entiteter",
+ "helpers": "Hjælpere",
+ "info": "Oplysninger",
+ "integrations": "Integrationer",
+ "logs": "Logs",
+ "lovelace": "Lovelace-betjeningspaneler",
+ "person": "Personer",
+ "scene": "Scener",
+ "script": "Scripts",
+ "server_control": "Serveradministration",
+ "tag": "Tags",
+ "users": "Brugere",
+ "zone": "Zoner"
+ },
+ "reload": {
+ "automation": "Genindlæs automatiseringer",
+ "command_line": "Genindlæs kommandolinje entiteter",
+ "core": "Genindlæs lokalitet og tilpasninger",
+ "filesize": "Genindlæs filstørrelse entiteter",
+ "filter": "Genindlæs filter entiteter",
+ "generic": "Genindlæs generiske IP-kamera entiteter",
+ "generic_thermostat": "Genindlæs generiske termostat entiteter",
+ "group": "Genindlæs grupper",
+ "history_stats": "Genindlæs historik entiteter",
+ "homekit": "Genindlæs HomeKit",
+ "input_boolean": "Genindlæs booleske input",
+ "input_datetime": "Genindlæs inputdatotider",
+ "input_number": "Genindlæs inputnumre",
+ "input_select": "Genindlæs inputvalg",
+ "input_text": "Genindlæs inputtekster",
+ "min_max": "Genindlæs min / max entiteter",
+ "mqtt": "Genindlæs manuelt konfigurerede MQTT-entiteter",
+ "person": "Genindlæs personer",
+ "ping": "Genindlæs ping sensor entiteter",
+ "reload": "Genindlæs {domain}",
+ "rest": "Genindlæs REST entiteter og REST notifikationstjenester",
+ "rpi_gpio": "Genindlæs Raspberry Pi GPIO entiteter",
+ "scene": "Genindlæs scener",
+ "script": "Genindlæs scripts",
+ "smtp": "Genindlæs SMTP-beskedtjenester",
+ "statistics": "Genindlæs statistik entiteter",
+ "telegram": "Genindlæs Telegram notifikationstjenester",
+ "template": "Genindlæs template entiteter",
+ "trend": "Genindlæs trend entiteter",
+ "universal": "Genindlæs medieafspiller entiteter",
+ "zone": "Genindlæs zoner"
+ },
+ "server_control": {
+ "perform_action": "{action} server",
+ "restart": "Genstart",
+ "stop": "Stop"
+ },
+ "types": {
+ "navigation": "Naviger",
+ "reload": "Genindlæs",
+ "server_control": "Server"
+ }
+ },
+ "filter_placeholder": "Entitetsfilter"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant hørte ikke noget",
+ "error": "Ups, der er opstået en fejl",
+ "found": "Jeg fandt følgende til dig:",
+ "how_can_i_help": "Hvordan kan jeg hjælpe?",
+ "label": "Stil et spørgsmål, og tryk på 'Enter'",
+ "label_voice": "Skriv og tryk på 'Enter' eller tryk på mikrofonen for at tale"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Tilføj enheder via denne enhed",
+ "clusters": "Administrer klynger",
+ "device_children": "Se underordnede",
+ "reconfigure": "Genkonfigurer enhed",
+ "remove": "Fjern enhed",
+ "view_in_visualization": "Vis i Visualisering",
+ "zigbee_information": "Zigbee-enhedssignatur"
+ },
+ "confirmations": {
+ "remove": "Er du sikker på, at du vil fjerne enheden?"
+ },
+ "device_children": "Zigbee under enheder",
+ "device_signature": "Zigbee-enhedssignatur",
+ "last_seen": "Sidst set",
+ "manuf": "af {manufacturer}",
+ "no_area": "Intet område",
+ "power_source": "Strømkilde",
+ "quirk": "Quirk",
+ "services": {
+ "reconfigure": "Rekonfigurer ZHA-enhed (helbred enheden). Brug dette, hvis du har problemer med enheden. Hvis den pågældende enhed er en batteridrevet enhed, skal du sørge for at den er vågen og accepterer kommandoer, når du bruger denne tjeneste.",
+ "remove": "Fjern en enhed fra Zigbee-netværket.",
+ "updateDeviceName": "Angiv et brugerdefineret navn til denne enhed i enhedsregistret",
+ "zigbee_information": "Vis Zigbee-oplysningerne for enheden."
+ },
+ "unknown": "Ukendt",
+ "zha_device_card": {
+ "device_name_placeholder": "Skift enhedsnavn"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Attribut",
+ "battery_device_warning": "Du er nødt til at tænde for batteridrevne enheder før du stater konfigurationen. Læs mere i manualen til din enhed for at få mere information",
+ "bind_header": "Binding",
+ "button_hide": "Skjul detaljer",
+ "button_show": "Vis detaljer",
+ "cluster_header": "Klynge",
+ "configuration_complete": "Konfiguration af enheden er færdig",
+ "configuration_failed": "konfuguration af enheden fejlede. Yderligere information kam findes i logfilerne ",
+ "configuring_alt": "Konfigurerer",
+ "heading": "Omkonfigurering af enhed",
+ "in_progress": "Enheden rekonfigureres. Dette kan tage noget tid",
+ "introduction": "Konfigurer en enhed på dit Zigbee netværk. Brug denne mulighed hvos din enhed ikke virker korrekt",
+ "min_max_change": "min/maks/ændring",
+ "reporting_header": "Rapportering",
+ "run_in_background": "Du kan lukke denne dialogboks.Konfigurationen fortsætter i baggrunden",
+ "start_reconfiguration": "Start konfiguration"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\none {dag}\nother {dage}\n}",
+ "hour": "{count} {count, plural,\n one {time}\n other {timer}\n}",
+ "minute": "{count} {count, plural,\none {minut}\nother {minutter}\n}",
+ "second": "{count} {count, plural,\none {sekund}\nother {sekunder}\n}",
+ "week": "{count} {count, plural,\none {uge}\nother {uger}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Du kan stadig redigere din konfiguration i YAML.",
+ "editor_not_available": "Ingen visuel editor tilgængelig for typen \"{type}\".",
+ "editor_not_supported": "Visuel editor understøttes ikke til denne konfiguration",
+ "error_detected": "Der blev fundet konfigurationsfejl",
+ "key_missing": "Påkrævet nøgle \"{key}\" mangler.",
+ "key_not_expected": "Nøglen \"{key}\" er ikke forventet eller understøttes ikke af den visuelle editor.",
+ "key_wrong_type": "Den angivne værdi for \"{key}\" understøttes ikke af den visuelle editor. Vi understøtter ({type_correct}) men modtog ({type_wrong}).",
+ "no_state_array_support": "Flere tilstandsværdier understøttes ikke i visuel editor",
+ "no_template_editor_support": "Skabeloner understøttes ikke i visuel editor",
+ "no_type_provided": "Der er ikke angivet nogen type."
+ },
+ "supervisor": {
+ "ask": "Anmod om hjælp",
+ "observer": "Kontroller observatøren",
+ "reboot": "Prøv at genstarte værten",
+ "system_health": "Kontroller systemets sundhed",
+ "title": "Supervisor panelet kunne ikke indlæses!",
+ "wait": "Hvis du lige er startet, skal du sørge for, at du har givet Supervisor tid til at starte."
+ }
+ },
+ "login-form": {
+ "log_in": "Log ind",
+ "password": "Adgangskode",
+ "remember": "Husk"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Klik på knappen for at konfigurere {entity}",
+ "close": "Luk",
+ "dismiss_all": "Afvis alle",
+ "empty": "Ingen notifikationer",
+ "title": "Notifikationer"
+ },
+ "notification_toast": {
+ "connection_lost": "Forbindelse afbrudt. Opretter forbindelse igen…",
+ "dismiss": "Afvis",
+ "integration_starting": "Starter {integration}, ikke alt vil være tilgængeligt, før det er færdigt.",
+ "service_call_failed": "Kunne ikke kalde tjenesten {service}.",
+ "started": "Home Assistant er startet!",
+ "starting": "Home Assistant starter. Nogle funktioner er måske ikke tilgængelige før opstarten er færdig.",
+ "triggered": "Udløste {name}",
+ "wrapping_up_startup": "Færdigør opstarten af Home Assistant. Nogle funktioner er måske ikke tilgængelig før opstarten er færdig."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Mangler der konfigurationsindstillinger? Aktivér avanceret tilstand",
+ "link_profile_page": "din profilside"
+ },
+ "areas": {
+ "add_picture": "Tilføj et billede",
+ "caption": "Områder",
+ "data_table": {
+ "area": "Område",
+ "devices": "Enheder",
+ "entities": "Entiteter"
+ },
+ "delete": {
+ "confirmation_text": "Alle enheder i dette område vil blive utildelte.",
+ "confirmation_title": "Er du sikker på, at du vil slette dette område?"
+ },
+ "description": "Tilknyt enheder og entiteter til områder",
+ "edit_settings": "Områdeindstillinger",
+ "editor": {
+ "area_id": "Område-id",
+ "create": "Opret",
+ "default_name": "Nyt område",
+ "delete": "Slet",
+ "linked_entities_caption": "Entiteter",
+ "name": "Navn",
+ "name_required": "Navn er påkrævet",
+ "no_linked_entities": "Der er ingen entiteter forbundet til dette område",
+ "unknown_error": "Ukendt fejl",
+ "update": "Opdater"
+ },
+ "picker": {
+ "create_area": "Opret område",
+ "header": "Områder",
+ "integrations_page": "Integrationsside",
+ "introduction": "Områder bruges til at organisere hvor enheder befinder sig. Disse oplysninger vil blive brugt i Home Assistant til at hjælpe dig med at organisere din brugerflade, tilladelser og integrationer med andre systemer.",
+ "introduction2": "Hvis du vil placere enheder i et område, skal du bruge linket herunder til at navigere til integrationssiden og derefter klikke på en konfigureret integration for at komme til enhedskortene.",
+ "no_areas": "Det ser ud til, at du endnu ikke har nogen områder endnu!"
+ }
+ },
+ "automation": {
+ "caption": "Automatiseringer",
+ "description": "Administrer automatiseringer",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Brug et blueprint"
+ },
+ "header": "Opret en ny automatisering",
+ "how": "Hvordan vil du oprette din nye automatisering?",
+ "start_empty": "Start med en tom automatisering",
+ "start_empty_description": "Opret en ny automatisering fra bunden",
+ "thingtalk": {
+ "create": "Opret",
+ "header": "Beskriv automationen du vil lave",
+ "input_label": "Hvad skal denne automation gøre?",
+ "intro": "Og vi vil forsøge at skabe den for dig. For eksempel: Sluk lyset, når jeg forlader hjemmet."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Tilføj handling",
+ "delete": "Slet",
+ "delete_confirm": "Er du sikker på, at du vil slette?",
+ "duplicate": "Dupliker",
+ "header": "Handlinger",
+ "introduction": "Handlinger er, hvad Home Assistant skal gøre, når automatiseringen udløses.",
+ "learn_more": "Lær om handlinger",
+ "name": "Handling",
+ "type": {
+ "choose": {
+ "add_option": "Tilføj mulighed",
+ "conditions": "Betingelser",
+ "default": "Standardhandlinger",
+ "label": "Vælg",
+ "option": "Mulighed {number}",
+ "remove_option": "Fjern mulighed",
+ "sequence": "Handlinger"
+ },
+ "condition": {
+ "label": "Betingelse"
+ },
+ "delay": {
+ "delay": "Varighed",
+ "label": "Vent på, at tiden er gået (forsinkelse)"
+ },
+ "device_id": {
+ "action": "Handling",
+ "extra_fields": {
+ "brightness_pct": "Lysstyrke",
+ "code": "Kode",
+ "flash": "Flash",
+ "humidity": "Fugtighed",
+ "message": "Besked",
+ "mode": "Tilstand",
+ "position": "Position",
+ "title": "Titel",
+ "value": "Værdi"
+ },
+ "label": "Enhed"
+ },
+ "event": {
+ "event": "Hændelse:",
+ "label": "Afsend hændelse",
+ "service_data": "Service data"
+ },
+ "repeat": {
+ "label": "Gentag",
+ "sequence": "Handlinger",
+ "type": {
+ "count": {
+ "label": "Tæl"
+ },
+ "until": {
+ "conditions": "Indtil betingelserne",
+ "label": "Indtil"
+ },
+ "while": {
+ "conditions": "Mens betingelserne",
+ "label": "Mens"
+ }
+ },
+ "type_select": "Gentagelsestype"
+ },
+ "scene": {
+ "label": "Aktivér scene"
+ },
+ "service": {
+ "label": "Kald tjeneste"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Fortsæt ved timeout",
+ "label": "Vent på udløser",
+ "timeout": "Timeout (valgfri)"
+ },
+ "wait_template": {
+ "continue_timeout": "Fortsæt ved timeout",
+ "label": "Vent",
+ "timeout": "Timeout (valgfri)",
+ "wait_template": "Vente-skabelon"
+ }
+ },
+ "type_select": "Begivenhedstype",
+ "unsupported_action": "Ingen UI-understøttelse af handling: {action}"
+ },
+ "alias": "Navn",
+ "blueprint": {
+ "blueprint_to_use": "Blueprint klar til brug",
+ "header": "Blueprint",
+ "no_blueprints": "Du har ingen blueprint",
+ "no_inputs": "Dette blueprint har ingen input."
+ },
+ "conditions": {
+ "add": "Tilføj betingelse",
+ "delete": "Slet",
+ "delete_confirm": "Er du sikker på, at du vil slette?",
+ "duplicate": "Dupliker",
+ "header": "Betingelser",
+ "introduction": "Betingelser er valgfri og forhindrer yderligere udførelse, medmindre alle betingelser er opfyldt.",
+ "learn_more": "Lær om betingelser",
+ "name": "Betingelse",
+ "type": {
+ "and": {
+ "label": "Og"
+ },
+ "device": {
+ "condition": "Betingelse",
+ "extra_fields": {
+ "above": "Over",
+ "below": "Under",
+ "for": "Varighed",
+ "hvac_mode": "HVAC-tilstand",
+ "preset_mode": "Forudindstillet tilstand"
+ },
+ "label": "Enhed"
+ },
+ "not": {
+ "label": "Ikke"
+ },
+ "numeric_state": {
+ "above": "Over",
+ "below": "Under",
+ "label": "Numerisk tilstand",
+ "value_template": "Værdi-skabelon (valgfrit)"
+ },
+ "or": {
+ "label": "Eller"
+ },
+ "state": {
+ "label": "Tilstand",
+ "state": "Tilstand"
+ },
+ "sun": {
+ "after": "Efter:",
+ "after_offset": "Forskydning efter (valgfrit)",
+ "before": "Før:",
+ "before_offset": "Forskydning før (valgfrit)",
+ "label": "Sol",
+ "sunrise": "Solopgang",
+ "sunset": "Solnedgang"
+ },
+ "template": {
+ "label": "Skabelon",
+ "value_template": "Værdi-skabelon"
+ },
+ "time": {
+ "after": "Efter",
+ "before": "Før",
+ "label": "Tid",
+ "type_input": "Værdien af en dato / tid hjælper",
+ "type_value": "Fast tid",
+ "weekdays": {
+ "fri": "Fredag",
+ "mon": "Mandag",
+ "sat": "Lørdag",
+ "sun": "Søndag",
+ "thu": "Torsdag",
+ "tue": "Tirsdag",
+ "wed": "Onsdag"
+ }
+ },
+ "trigger": {
+ "id": "Udløser Id",
+ "label": "Udløser",
+ "no_triggers": "Ingen udløsere er tilgængelige"
+ },
+ "zone": {
+ "entity": "Entitet med lokalitet",
+ "label": "Zone",
+ "zone": "Zone"
+ }
+ },
+ "type_select": "Betingelsestype",
+ "unsupported_condition": "Ingen UI-understøttelse af betingelse: {condition}"
+ },
+ "copy_to_clipboard": "Kopier til udklipsholder",
+ "default_name": "Ny automatisering",
+ "description": {
+ "label": "Beskrivelse",
+ "placeholder": "Valgfri beskrivelse"
+ },
+ "edit_ui": "Rediger via brugerfladen",
+ "edit_yaml": "Rediger i YAML",
+ "enable_disable": "Aktiver/deaktiver automatisering",
+ "introduction": "Brug automatiseringer til at vække dit hjem til live.",
+ "load_error_not_editable": "Kun automatiseringer i 'automations.yaml' kan redigeres.",
+ "load_error_unknown": "Fejl ved indlæsning af automatisering ({err_no}).",
+ "max": {
+ "parallel": "Maksimalt antal parallelle kørsler",
+ "queued": "Kølængde"
+ },
+ "modes": {
+ "description": "Tilstanden styrer, hvad der sker, når automatiseringen udløses, mens handlingerne stadig kører fra en tidligere udløser. Læs {documentation_link} for at få flere oplysninger.",
+ "documentation": "automatiseringsdokumentationen",
+ "label": "Tilstand",
+ "parallel": "Parallelt",
+ "queued": "I kø",
+ "restart": "Genstart",
+ "single": "Enkelt (standard)"
+ },
+ "move_down": "Flyt ned",
+ "move_up": "Flyt op",
+ "save": "Gem",
+ "show_trace": "Vis sporing",
+ "triggers": {
+ "add": "Tilføj udløser",
+ "delete": "Slet",
+ "delete_confirm": "Er du sikker på, at du vil slette?",
+ "duplicate": "Dupliker",
+ "header": "Udløsere",
+ "id": "Udløser Id (anvendt af udløserbetingelsen)",
+ "introduction": "Udløsere er, hvad der starter behandlingen af en automatiseringsregel. Det er muligt at angive flere udløsere til samme regel. Når en udløser starter, vil Home Assistant validere eventuelle betingelser og udføre handlingen.",
+ "learn_more": "Lær om udløsere",
+ "name": "Udløser",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Over",
+ "below": "Under",
+ "for": "Varighed (valgfrit)",
+ "zone": "Zone"
+ },
+ "label": "Enhed",
+ "trigger": "Udløser"
+ },
+ "event": {
+ "context_user_pick": "Vælg bruger",
+ "context_user_picked": "Brugerinitieret hændelse",
+ "context_users": "Begræns til begivenheder udløst af",
+ "event_data": "Hændelsesdata",
+ "event_type": "Hændelsestype",
+ "label": "Hændelse"
+ },
+ "geo_location": {
+ "enter": "Ankommer",
+ "event": "Hændelse:",
+ "label": "Geolokalitet",
+ "leave": "Forlad",
+ "source": "Kilde",
+ "zone": "Zone"
+ },
+ "homeassistant": {
+ "event": "Hændelse:",
+ "label": "Home Assistant",
+ "shutdown": "Lukning",
+ "start": "Start"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Payload (valgfrit)",
+ "topic": "Emne"
+ },
+ "numeric_state": {
+ "above": "Over",
+ "below": "Under",
+ "label": "Numerisk tilstand",
+ "value_template": "Værdi-skabelon (valgfrit)"
+ },
+ "state": {
+ "attribute": "Attribut (valgfri)",
+ "for": "Varighed (valgfrit)",
+ "from": "Fra (valgfrit)",
+ "label": "Tilstand",
+ "to": "Til (valgfrit)"
+ },
+ "sun": {
+ "event": "Hændelse:",
+ "label": "Sol",
+ "offset": "Forskydning (valgfrit)",
+ "sunrise": "Solopgang",
+ "sunset": "Solnedgang"
+ },
+ "tag": {
+ "label": "Tag"
+ },
+ "template": {
+ "label": "Skabelon",
+ "value_template": "Værdi-skabelon"
+ },
+ "time": {
+ "at": "Klokken",
+ "label": "Tid",
+ "type_input": "Værdien af en dato / tid hjælper",
+ "type_value": "Fast tid"
+ },
+ "time_pattern": {
+ "hours": "Timer",
+ "label": "Tidsmønster",
+ "minutes": "Minutter",
+ "seconds": "Sekunder"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook-id"
+ },
+ "zone": {
+ "enter": "Ankom",
+ "entity": "Entitet med lokalitet",
+ "event": "Hændelse:",
+ "label": "Zone",
+ "leave": "Forlad",
+ "zone": "Zone"
+ }
+ },
+ "type_select": "Udløsertype",
+ "unsupported_platform": "Ingen UI-understøttelse af platform: {platform}"
+ },
+ "unsaved_confirm": "Du har ikke-gemte ændringer. Er du sikker på, at du vil forlade?"
+ },
+ "picker": {
+ "add_automation": "Tilføj automatisering",
+ "delete_automation": "Slet automatisering",
+ "delete_confirm": "Er du sikker på, at du vil slette denne automatisering?",
+ "dev_automation": "Fejlfindingsautomatisering",
+ "dev_only_editable": "Kun automatiseringer, der har fået tildelt et unikt ID, kan fejlsøges.",
+ "duplicate": "Kopier",
+ "duplicate_automation": "Kopier automatisering",
+ "edit_automation": "Rediger automatisering",
+ "header": "Automatiserings-editor",
+ "headers": {
+ "name": "Navn"
+ },
+ "introduction": "Automationseditoren giver dig mulighed for at oprette og redigere automatiseringer. Følg nedenstående link for at læse instruktionerne for at sikre dig, at du har konfigureret Home Assistant korrekt.",
+ "learn_more": "Lær om automatiseringer",
+ "no_automations": "Vi kunne ikke finde nogen redigerbare automatiseringer",
+ "only_editable": "Kun automatiseringer, der er defineret i 'automations.yaml', er redigerbare.",
+ "pick_automation": "Vælg automatisering for at redigere",
+ "show_info_automation": "Vis info om automatisering"
+ },
+ "thingtalk": {
+ "create": "Opret automation",
+ "link_devices": {
+ "ambiguous_entities": "En eller flere enheder har mere end én matchende entitet. Vælg venligst den du vil benytte.",
+ "header": "Enestående! Nu er det tid til at forbinde nogle enheder",
+ "unknown_placeholder": "Ukendt pladsholder"
+ },
+ "task_selection": {
+ "error_empty": "Indtast en kommando, eller tryk på spring over.",
+ "error_unsupported": "Vi kunne ikke oprette en automatisering til det (endnu?).",
+ "for_example": "For eksempel:",
+ "header": "Opret en ny automation",
+ "introduction": "Skriv nedenfor, hvad denne automation skal gøre, og vi vil forsøge at konvertere den til en Home Assistant automation.",
+ "language_note": "Bemærk: Kun engelsk understøttes indtil videre."
+ }
+ },
+ "trace": {
+ "download_trace": "Download sporing",
+ "edit_automation": "Rediger automatisering",
+ "newer_trace": "Nyere sporing",
+ "older_trace": "Tidligere sporing",
+ "refresh": "Opdater"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "Fællesskabsfora",
+ "error_no_url": "Indtast webadressen til blueprint.",
+ "file_name": "Blueprint sti",
+ "header": "Importer blueprint",
+ "import_btn": "Forhåndsvisning af blueprint",
+ "import_header": "Blueprint \"{name}\"",
+ "import_introduction_link": "Du kan importere blueprintsr fra andre brugere på Github og {community_link} . Indtast webadressen til blueprint nedenfor.",
+ "importing": "Indlæser blueprint ...",
+ "raw_blueprint": "Blueprint indhold",
+ "save_btn": "Importer blueprint",
+ "saving": "Importerer blueprint …",
+ "unsupported_blueprint": "Dette blueprint understøttes ikke",
+ "url": "Webadresse til blueprint"
+ },
+ "caption": "Blueprints",
+ "description": "Administrer blueprints",
+ "overview": {
+ "add_blueprint": "Importer blueprint",
+ "confirm_delete_header": "Slet dette blueprint?",
+ "confirm_delete_text": "Er du sikker på, at du vil slette dette blueprint?",
+ "create_automation": "Opret automatisering",
+ "create_script": "Opret script",
+ "delete_blueprint": "Slet blueprint",
+ "discover_more": "Find flere blueprints",
+ "header": "Blueprint Editor",
+ "headers": {
+ "domain": "Domæne",
+ "file_name": "Filnavn",
+ "name": "Navn",
+ "type": "Type"
+ },
+ "introduction": "Blueprint-konfigurationen giver dig mulighed for at importere og administrere dine blueprints.",
+ "learn_more": "Lær mere om brugen af blueprints",
+ "share_blueprint": "Del blueprint",
+ "share_blueprint_no_url": "Kan ikke dele blueprint: ingen kilde-url",
+ "types": {
+ "automation": "Automatisering",
+ "script": "Script"
+ },
+ "use_blueprint": "Opret automatisering"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Konfigurationsdokumentation",
+ "disable": "deaktivere",
+ "enable": "aktivere",
+ "enable_ha_skill": "Aktivér Home Assistant-skill til Alexa",
+ "enable_state_reporting": "Aktivér tilstandsrapportering",
+ "info": "Med Alexa-integrationen til Home Assistant Cloud kan du styre alle dine Home Assistant-enheder via enhver Alexa-aktiveret enhed.",
+ "info_state_reporting": "Hvis du aktiverer tilstandsrapportering, vil Home Assistant sende alle tilstandsændringer af eksponerede entiteter til Amazon. Dette giver dig mulighed for altid at se de seneste tilstande i Alexa-appen og bruge tilstandsændringer til at oprette rutiner.",
+ "manage_entities": "Administrer entiteter",
+ "state_reporting_error": "Kunne ikke {enable_disable} rapporteringstilstand.",
+ "sync_entities": "Synkroniser entiteter til Amazon",
+ "sync_entities_error": "Kunne ikke synkronisere entiteter:",
+ "title": "Alexa"
+ },
+ "connected": "Forbundet",
+ "connecting": "Forbinder…",
+ "connection_status": "Cloud-forbindelsesstatus",
+ "fetching_subscription": "Henter abonnement…",
+ "google": {
+ "config_documentation": "Konfigurationsdokumentation",
+ "devices_pin": "Pinkode til sikkerhedsenheder",
+ "enable_ha_skill": "Aktivér \"Home Assistant Cloud skill for Google Assistant\"",
+ "enable_state_reporting": "Aktivér tilstandsrapportering",
+ "enter_pin_error": "Pin kunne ikke gemmes:",
+ "enter_pin_hint": "Indtast en pinkode for at bruge sikkerhedsenheder",
+ "enter_pin_info": "Indtast en pin for at interagere med sikkerhedsenheder. Sikkerhedsenheder er døre, garageporte og låse. Du bliver bedt om at sige/indtaste denne pin, når du interagerer med sådanne enheder via Google Assistant.",
+ "info": "Med Google Assistant-integrationen til Home Assistant Cloud kan du styre alle dine Home Assistant-enheder via enhver Google Assistant-aktiveret enhed.",
+ "info_state_reporting": "Hvis du aktiverer tilstandsrapportering, vil Home Assistant sende alle tilstandsændringer af eksponerede entiteter til Google. Dette giver dig mulighed for altid at se de seneste tilstande i Google-appen.",
+ "manage_entities": "Administrer entiteter",
+ "not_configured_text": "Inden du kan bruge Google Assistant, skal du aktivere \"Home Assistant Cloud skill for Google Assistant\" i Google Home-appen.",
+ "not_configured_title": "Google Assistent er ikke aktiveret",
+ "security_devices": "Sikkerhedsenheder",
+ "sync_entities": "Synkroniser entiteter til Google",
+ "sync_entities_404_message": "Kunne ikke synkronisere dine entiteter til Google. Sig til Google \"Hey Google, synkronisér mine enheder\" for at synkronisere dine entiteter.",
+ "title": "Google Assistant"
+ },
+ "integrations": "Integrationer",
+ "integrations_introduction": "Integrationer til Home Assistant Cloud giver dig mulighed for at oprette forbindelse til tjenester i skyen, uden at skulle eksponere din Home Assistant-instans offentligt på internettet.",
+ "integrations_introduction2": "Tjek hjemmesiden for",
+ "integrations_link_all_features": "alle tilgængelige funktioner",
+ "manage_account": "Administrer konto",
+ "nabu_casa_account": "Nabu Casa-konto",
+ "not_connected": "Ikke forbundet",
+ "remote": {
+ "access_is_being_prepared": "Fjernadgang forberedes. Vi giver dig besked, når den er klar.",
+ "certificate_info": "Certifikatoplysninger",
+ "connected": "Tilsluttet",
+ "info": "Home Assistant Cloud leverer en sikker fjernforbindelse til din instans, når du er væk fra hjemmet.",
+ "instance_is_available": "Din instans er tilgængelig på",
+ "instance_will_be_available": "Din instans vil være tilgængelig på",
+ "link_learn_how_it_works": "Lær hvordan det fungerer",
+ "not_connected": "Ikke tilsluttet",
+ "reconnecting": "Ikke tilsluttet. Forsøger at genoprette forbindelsen.",
+ "remote_enabled": {
+ "caption": "Forbind automatisk",
+ "description": "Slå denne indstilling til for at sikre din Home Assistant applikation er tilgængelig udefra "
+ },
+ "title": "Fjernadgang"
+ },
+ "sign_out": "Log ud",
+ "thank_you_note": "Tak for at du er en del af Home Assistant Cloud. Det er på grund af folk som dig, at vi er i stand til at skabe en god hjemmeautomatiseringsoplevelse for alle. Tak skal du have!",
+ "tts": {
+ "default_language": "Standardsprog",
+ "dialog": {
+ "example_message": "Hej {name}, kan du afspille tekst på enhver understøttet medieafspiller!",
+ "header": "Prøv Tekst til tale",
+ "play": "Afspil",
+ "target": "Modtager",
+ "target_browser": "Browser"
+ },
+ "female": "Kvinde",
+ "info": "Personliggør dit hjem ved at få det til at tale med dig ved hjælp af vores Tekst-til-tale-tjenester. Du kan bruge dette i automatiseringer og scripts ved hjælp af tjenesten {service}.",
+ "male": "Mand",
+ "title": "Tekst til tale",
+ "try": "Prøv"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Webhook kunne ikke deaktiveres:",
+ "info": "Alt, hvad der er konfigureret til at blive udløst af en webhook, kan gives en offentligt tilgængelig webadresse, så du kan sende data tilbage til Home Assistant hvor som helst, uden at eksponere din instans til internettet.",
+ "link_learn_more": "Lær mere om at oprette webhook-drevne automatiseringer.",
+ "loading": "Indlæser…",
+ "manage": "Administrer",
+ "no_hooks_yet": "Det ser ud til, at du endnu ikke har nogen webhooks. Kom godt i gang ved at konfigurere en ",
+ "no_hooks_yet2": "eller ved at oprette en",
+ "no_hooks_yet_link_automation": "webhook-automatisering",
+ "no_hooks_yet_link_integration": "webhook-baseret integration",
+ "title": "Webhooks"
+ }
+ },
+ "alexa": {
+ "banner": "Redigering af, hvilke entiteter der er eksponeret via denne brugerflade, er deaktiveret, fordi du har konfigureret entitetsfiltre i 'configuration.yaml'.",
+ "dont_expose_entity": "Udstil ikke entitet",
+ "expose": "Eksponer til Alexa",
+ "expose_entity": "Udstil entitet",
+ "exposed": "{selected} er udstillet",
+ "exposed_entities": "Eksponerede entiteter",
+ "follow_domain": "Følg domæne",
+ "manage_domains": "Administrer domæner",
+ "not_exposed": "{selected} er ikke udstillet",
+ "not_exposed_entities": "Ikke-eksponerede entiteter",
+ "title": "Alexa"
+ },
+ "description_features": "Betjen når du er væk hjemmefra, integrer med Alexa og Google Assistant.",
+ "description_login": "Logget ind som {email}",
+ "description_not_login": "Ikke logget ind",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Udløbsdato for certifikat:",
+ "certificate_information": "Certifikatoplysninger",
+ "close": "Luk",
+ "fingerprint": "Certifikat-fingeraftryk:",
+ "will_be_auto_renewed": "vil automatisk blive fornyet"
+ },
+ "dialog_cloudhook": {
+ "available_at": "Webhook er tilgængelig på følgende webadresse:",
+ "close": "Luk",
+ "confirm_disable": "Er du sikker på, at du vil deaktivere denne webhook?",
+ "copied_to_clipboard": "Kopieret til udklipsholder",
+ "info_disable_webhook": "Hvis du ikke længere vil bruge denne webhook, kan du",
+ "link_disable_webhook": "deaktivere den",
+ "managed_by_integration": "Denne webhook administreres af en integration og kan ikke deaktiveres.",
+ "view_documentation": "Se dokumentation",
+ "webhook_for": "Webhook til {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "Tjek din email for instruktioner om, hvordan du nulstiller din adgangskode.",
+ "email": "E-mail",
+ "email_error_msg": "Ugyldig email",
+ "instructions": "Indtast din e-mail-adresse, så sender vi dig et link for at nulstille din adgangskode.",
+ "send_reset_email": "Send nulstillings-email",
+ "subtitle": "Glemt din adgangskode",
+ "title": "Glemt adgangskode"
+ },
+ "google": {
+ "banner": "Redigering af, hvilke entiteter der er eksponeret via denne brugerflade, er deaktiveret, fordi du har konfigureret entitetsfiltre i 'configuration.yaml'.",
+ "disable_2FA": "Deaktiver tofaktorgodkendelse",
+ "dont_expose_entity": "Udstil ikke entitet",
+ "expose": "Eksponer til Google Assistant",
+ "expose_entity": "Udstil entitet",
+ "exposed": "{selected} er udstillet",
+ "exposed_entities": "Eksponerede entiteter",
+ "follow_domain": "Følg domæne",
+ "manage_domains": "Administrer domæner",
+ "not_exposed": "{selected} er ikke udstillet",
+ "not_exposed_entities": "Ikke-eksponerede entiteter",
+ "sync_to_google": "Synkroniserer ændringer til Google.",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Du skal bekræfte din email, før du logger ind.",
+ "alert_password_change_required": "Du skal ændre din adgangskode, før du logger ind.",
+ "dismiss": "Afvis",
+ "email": "Email",
+ "email_error_msg": "Ugyldig email",
+ "forgot_password": "Glemt adgangskode?",
+ "introduction": "Home Assistant Cloud giver dig en sikker fjernforbindelse til din instans, når du er væk fra hjemmet. Det giver dig også mulighed for at oprette forbindelse til cloud-tjenesterne: Amazon Alexa og Google Assistant.",
+ "introduction2": "Denne tjeneste drives af vores partner",
+ "introduction2a": ", et selskab grundlagt af grundlæggerne af Home Assistant.",
+ "introduction3": "Home Assistant Cloud er en abonnementstjeneste med en gratis prøveperiode på en måned. Ingen betalingsoplysninger nødvendige.",
+ "learn_more_link": "Lær mere om Home Assistant Cloud",
+ "password": "Adgangskode",
+ "password_error_msg": "Adgangskoder er mindst 8 tegn",
+ "sign_in": "Log ind",
+ "start_trial": "Start din gratis prøveperiode på 1 måned",
+ "title": "Cloud-login",
+ "trial_info": "Betalingsoplysninger er ikke nødvendige"
+ },
+ "register": {
+ "account_created": "Konto oprettet! Tjek din e-mail for instruktioner om, hvordan du aktiverer din konto.",
+ "create_account": "Opret konto",
+ "email_address": "Email-adresse",
+ "email_error_msg": "Ugyldig email",
+ "feature_amazon_alexa": "Integration med Amazon Alexa",
+ "feature_google_home": "Integration med Google Assistant",
+ "feature_remote_control": "Styring af Home Assistant når du er ude af hjemmet",
+ "feature_webhook_apps": "Nem integration med webhook-baserede apps som OwnTracks",
+ "headline": "Start din gratis prøveperiode",
+ "information": "Opret en konto for at starte din gratis prøveperiode på en måned med Home Assistant Cloud. Ingen betalingsoplysninger nødvendige.",
+ "information2": "Prøveperioden giver dig adgang til alle fordelene ved Home Assistant Cloud, herunder:",
+ "information3": "Denne tjeneste drives af vores partner",
+ "information3a": ", et selskab grundlagt af grundlæggerne af Home Assistant.",
+ "information4": "Ved at registrere en konto, accepterer du følgende vilkår og betingelser.",
+ "link_privacy_policy": "Fortrolighedspolitik",
+ "link_terms_conditions": "Betingelser og vilkår",
+ "password": "Adgangskode",
+ "password_error_msg": "Adgangskoder er mindst 8 tegn",
+ "resend_confirm_email": "Gensend bekræftelsesmail",
+ "start_trial": "Start prøveperiode",
+ "title": "Registrer konto"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Du har ikke-gemte ændringer. Er du sikker på, at du vil forlade?"
+ },
+ "learn_more": "Lær mere"
+ },
+ "core": {
+ "caption": "Generelt",
+ "description": "Lokalitet, netværk og analyse",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Valuta",
+ "edit_requires_storage": "Editor er deaktiveret, fordi config er gemt i 'configuration.yaml'.",
+ "elevation": "Højde",
+ "elevation_meters": "meter",
+ "external_url": "Ekstern webadresse",
+ "find_currency_value": "Find din værdi",
+ "imperial_example": "Fahrenheit, pund",
+ "internal_url": "Intern webadresse",
+ "latitude": "Breddegrad",
+ "location_name": "Navn på din Home Assistant-installation",
+ "longitude": "Længdegrad",
+ "metric_example": "Celsius, kg",
+ "save_button": "Gem",
+ "time_zone": "Tidszone",
+ "unit_system": "Måleenheder",
+ "unit_system_imperial": "Imperielle",
+ "unit_system_metric": "Metriske"
+ },
+ "header": "Generel konfiguration",
+ "introduction": "Administrer din lokalitet, dit netværk og analyser."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "De følgende egenskaber er allerede indstillet i 'customize.yaml'",
+ "attributes_not_set": "Følgende egenskaber blev ikke angivet. Angiv dem, hvis du ønsker.",
+ "attributes_outside": "De følgende egenskaber tilpasses uden for 'customize.yaml'",
+ "attributes_override": "Du kan tilsidesætte dem, hvis du ønsker.",
+ "attributes_set": "Følgende egenskaber for entiteten angives programmeringsmæssigt.",
+ "caption": "Tilpasninger",
+ "description": "Tilpas dine entiteter",
+ "different_include": "Eventuelt via et domæne, et glob eller et andet include.",
+ "pick_attribute": "Vælg en egenskab, du vil tilsidesætte",
+ "picker": {
+ "documentation": "Dokumentation for tilpasning",
+ "header": "Tilpasninger",
+ "introduction": "Tilpas entitetsegenskaber. Tilføjede/redigerede tilpasninger træder i kraft med det samme. Fjernede tilpasninger træder i kraft når entiteten opdateres."
+ },
+ "warning": {
+ "include_link": "include customize.yaml",
+ "include_sentence": "Det lader til, at din 'configuration.yaml' ikke har korrekt",
+ "not_applied": "Ændringer, der er foretaget her, er skrevet i den, men vil ikke blive anvendt efter en konfigurationsgenindlæsning, medmindre 'include' er på plads."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Administrer automatiseringer, scener, scripts og hjælpere",
+ "title": "Automatiseringer og scener"
+ },
+ "blueprints": {
+ "description": "Automatiseringer og scripts, der er lavet på forhånd af fællesskabet",
+ "title": "Blueprints"
+ },
+ "companion": {
+ "description": "Lokalitet og notifikationer",
+ "title": "Companion App"
+ },
+ "dashboards": {
+ "description": "Opret tilpassede kortsæt til at styre dit hjem",
+ "title": "Betjeningspaneler"
+ },
+ "devices": {
+ "description": "Integrationer, enheder, entiteter og områder",
+ "title": "Enheder og tjenester"
+ },
+ "energy": {
+ "description": "Overvåg din energiproduktion og dit forbrug",
+ "title": "Energi"
+ },
+ "people": {
+ "description": "Administrer de personer og zoner, som Home Assistant følger",
+ "title": "Personer og zoner"
+ },
+ "settings": {
+ "description": "Grundlæggende indstillinger, serverkontrolelementer, logfiler og oplysninger",
+ "title": "Indstillinger"
+ },
+ "supervisor": {
+ "description": "Opret sikkerhedskopier, tjek logfiler eller genstart dit system",
+ "title": "Tilføjelsesprogrammer, sikkerhedskopier og Supervisor"
+ },
+ "tags": {
+ "description": "Udløs automatiseringer, når et NFC-tag, QR-kode osv. scannes",
+ "title": "Tags"
+ }
+ },
+ "devices": {
+ "add_prompt": "Intet {name} er blevet tilføjet ved hjælp af denne enhed endnu. Du kan tilføje et ved at klikke på + knappen ovenfor.",
+ "automation": {
+ "actions": {
+ "caption": "Når noget udløses…",
+ "no_actions": "Ingen handlinger",
+ "unknown_action": "Ukendt handling"
+ },
+ "automations": "Automatiseringer",
+ "conditions": {
+ "caption": "Gør kun noget, hvis…",
+ "no_conditions": "Ingen betingelser",
+ "unknown_condition": "Ukendt betingelse"
+ },
+ "create": "Opret automatisering med enhed",
+ "create_disable": "Kan ikke oprette automation med deaktiveret enhed",
+ "no_automations": "Ingen automatiseringer",
+ "no_device_automations": "Der er ingen automatiseringer til rådighed for denne enhed.",
+ "triggers": {
+ "caption": "Gør noget, når...",
+ "no_triggers": "Ingen udløsere",
+ "unknown_trigger": "Ukendt udløser"
+ },
+ "unknown_automation": "Ukendt automatisering"
+ },
+ "cant_edit": "Du kan kun redigere elementer, der er oprettet i brugerfladen.",
+ "caption": "Enheder",
+ "confirm_delete": "Er du sikker på, at du vil slette denne enhed?",
+ "confirm_disable_config_entry": "Der er ikke flere enheder til konfigurationen {entry_name} . Vil du i stedet deaktivere konfigurationen?",
+ "confirm_rename_entity_ids": "Vil du også omdøbe entitet-id'et for dine entiteter?",
+ "confirm_rename_entity_ids_warning": "Dette ændrer ikke nogen konfiguration (automatiseringer, scripts, scener, betjeningspaneler mv.), der i øjeblikket bruger disse enheder! Du skal selv opdatere dem for at bruge de nye entitets-id'er!",
+ "data_table": {
+ "area": "Område",
+ "battery": "Batteri",
+ "device": "Enhed",
+ "integration": "Integration",
+ "manufacturer": "Producent",
+ "model": "Model",
+ "no_devices": "Ingen enheder"
+ },
+ "delete": "Slet",
+ "description": "Administrer tilsluttede enheder",
+ "device_info": "Enhedsoplysninger",
+ "device_not_found": "Enhed blev ikke fundet.",
+ "disabled": "Deaktiveret",
+ "disabled_by": {
+ "config_entry": "Konfigurationsparameter",
+ "integration": "Integration",
+ "user": "Bruger"
+ },
+ "edit_settings": "Rediger indstillinger",
+ "enabled_cause": "Enheden er deaktiveret pga. {cause} .",
+ "enabled_description": "Deaktiverede enheder vises ikke, og entiteter, der hører til enheden, deaktiveres og tilføjes ikke til Home Assistant.",
+ "enabled_label": "Aktiver enhed",
+ "entities": {
+ "add_entities_lovelace": "Tilføj til Lovelace",
+ "config": "Konfiguration",
+ "control": "Kontrolelementer",
+ "diagnostic": "Diagnostisk",
+ "disabled_entities": "+{count} {count, plural,\n one {deaktiveret entitet}\n other {deaktiverede entiteter}\n}",
+ "entities": "Entiteter",
+ "hide_disabled": "Skjul deaktiverede",
+ "none": "Denne enhed har ingen entiteter",
+ "sensor": "Sensorer",
+ "state": "Tilstand"
+ },
+ "name": "Navn",
+ "no_devices": "Ingen enheder",
+ "open_configuration_url_device": "Besøg enhed",
+ "open_configuration_url_service": "Besøg tjeneste",
+ "picker": {
+ "filter": {
+ "filter": "Filtrer",
+ "hidden_devices": "{number} skjult(e) {number, plural,\n one {enhed}\n other {enheder}\n}",
+ "show_all": "Vis alle",
+ "show_disabled": "Vis deaktiverede enheder"
+ },
+ "search": "Søg efter enheder"
+ },
+ "scene": {
+ "create": "Opret scene med enhed",
+ "create_disable": "Kan ikke oprette scene med deaktiveret enhed",
+ "no_scenes": "Ingen scener",
+ "scenes": "Scener"
+ },
+ "scenes": "Scener",
+ "script": {
+ "create": "Opret script med enhed",
+ "create_disable": "Kan ikke oprette script med deaktiveret enhed",
+ "no_scripts": "Ingen scripts",
+ "scripts": "Scripts"
+ },
+ "scripts": "Scripts",
+ "unknown_error": "Ukendt fejl",
+ "unnamed_device": "Enhed uden navn",
+ "update": "Opdater",
+ "update_device_error": "Enhedsopdateringen fejlede"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Tilføj batterisystem",
+ "battery_systems": "Batterisystemer",
+ "dialog": {
+ "energy_into_battery": "Energi der går ind i batteriet (kWh)",
+ "energy_out_of_battery": "Energi der kommer ud af batteriet (kWh)",
+ "header": "Konfigurer batterisystem"
+ },
+ "learn_more": "Flere oplysninger om, hvordan du kommer i gang.",
+ "sub": "Hvis du har et batterisystem, kan du konfigurere det til at overvåge, hvor meget energi der blev lagret og brugt fra dit batteri.",
+ "title": "Lagring på hjemmebatteri"
+ },
+ "caption": "Energi",
+ "delete_integration": "Er du sikker på, at du vil slette denne integration? Det vil fjerne de entiteter, den leverer",
+ "delete_source": "Er du sikker på, at du vil slette denne kilde?",
+ "description": "Overvåg din energiproduktion og dit forbrug",
+ "device_consumption": {
+ "add_device": "Tilføj enhed",
+ "add_stat": "Vælg entitet til at overvåge energiforbrug fra",
+ "devices": "Enheder",
+ "dialog": {
+ "device_consumption_energy": "Enhedens energiforbrug (kWh)",
+ "header": "Tilføj en enhed",
+ "selected_stat_intro": "Vælg den entitet, der måler enhedens energiforbrug."
+ },
+ "learn_more": "Flere oplysninger om, hvordan du kommer i gang.",
+ "selected_stat": "Overvåger energiforbrug for",
+ "sub": "Ved at spore energiforbruget for de enkelte enheder kan Home Assistant opdele dit energiforbrug efter enhed.",
+ "title": "Individuelle enheder"
+ },
+ "gas": {
+ "add_gas_source": "Tilføj gaskilde",
+ "dialog": {
+ "cost_entity": "Brug en entitet med den aktuelle pris",
+ "cost_entity_input": "Entitet med den aktuelle pris pr. {unit}",
+ "cost_number": "Anvend en fast pris",
+ "cost_number_input": "Pris pr. {unit}",
+ "cost_number_suffix": "{currency}/m³",
+ "cost_para": "Vælg, hvordan Home Assistant skal holde styr på omkostningerne ved den forbrugte energi.",
+ "cost_stat": "Brug en entitet, der overvåger de samlede omkostninger",
+ "cost_stat_input": "Entitet med samlede omkostninger",
+ "energy_stat": "Forbrugt energi (m³)",
+ "gas_usage": "Gasforbrug",
+ "header": "Konfigurer gasforbrug",
+ "m3_or_kWh": "ft³, m³, Wh, kWh eller MWh",
+ "no_cost": "Spor ikke omkostninger",
+ "paragraph": "Gasforbrug er den mængde gas du forbruger i hjemmet"
+ },
+ "gas_consumption": "Gasforbrug",
+ "learn_more": "Flere oplysninger om, hvordan du kommer i gang.",
+ "sub": "Lad Home Assistant overvåge dit gasforbrug.",
+ "title": "Gasforbrug"
+ },
+ "grid": {
+ "add_co2_signal": "Tilføj CO2-signal-integration",
+ "add_consumption": "Tilføj forbrug",
+ "add_return": "Tilføj el-eksport",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Brug en entitet med den aktuelle pris",
+ "cost_entity_input": "Entitet med den aktuelle pris",
+ "cost_number": "Anvend en fast pris",
+ "cost_number_input": "Pris pr. kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Vælg, hvordan Home Assistant skal overvåge omkostningerne ved den forbrugte energi.",
+ "cost_stat": "Brug en entitet, der overvåger de samlede omkostninger",
+ "cost_stat_input": "Entitet med samlet pris",
+ "energy_stat": "Forbrugt energi (kWh)",
+ "header": "Konfigurer elnets-forbrug",
+ "no_cost": "Spor ikke omkostninger",
+ "paragraph": "Elnets-forbrug er den energi dit hjem modtager fra elnettet."
+ },
+ "to": {
+ "cost_entity": "Brug en entitet med den aktuelle enhedspris",
+ "cost_entity_input": "Entitet med den aktuelle enhedspris",
+ "cost_number": "Brug en fast enhedspris",
+ "cost_number_input": "Enhedspris pr. kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Får du penge tilbage, når du eksporterer energi til elnettet?",
+ "cost_stat": "Brug en entitet, der måler det samlede modtagne beløb",
+ "cost_stat_input": "Entitet med samlet kompensation",
+ "energy_stat": "Energi eksporteret til elnettet (kWh)",
+ "header": "Konfigurer elnets-produktion",
+ "no_cost": "Jeg får ikke penge tilbage",
+ "paragraph": "Elnets-produktion er den energi, der eksporteres til elnettet fra dine solceller."
+ }
+ },
+ "grid_carbon_footprint": "CO2-aftryk fra elnettet",
+ "grid_consumption": "Forbrug fra elnettet",
+ "learn_more": "Flere oplysninger om, hvordan du kommer i gang.",
+ "return_to_grid": "Eksport til elnettet",
+ "sub": "Konfigurer den mængde energi, du forbruger fra elnettet, og eksporterer til elnettet, hvis du producerer energi. Dette giver Home Assistant mulighed for at overvåge dit samlede energiforbrug i hjemmet.",
+ "title": "Elnet"
+ },
+ "new_device_info": "Efter opsætning af en ny enhed kan det tage op til 2 timer, før nye data vises i dit energi-betjeningspanel.",
+ "solar": {
+ "add_solar_production": "Tilføj solenergiproduktion",
+ "dialog": {
+ "add_forecast": "Tilføj prognose",
+ "dont_forecast_production": "Forudsig ikke produktion",
+ "forecast_production": "Forventet produktion",
+ "header": "Konfigurer solpaneler",
+ "solar_production_energy": "Solenergiproduktion (kWh)",
+ "solar_production_forecast": "Prognose for solenergiproduktion",
+ "solar_production_forecast_description": "Hvis du tilføjer en prognose for solenergiproduktion, kan du hurtigt se din forventede produktion for i dag."
+ },
+ "learn_more": "Flere oplysninger om, hvordan du kommer i gang.",
+ "solar_production": "Solenergiproduktion",
+ "stat_predicted_production": "Forventet energiproduktion fra solceller",
+ "stat_production": "Din energiproduktion fra solceller",
+ "stat_return_to_grid": "Solenergi eksporteret til elnettet",
+ "sub": "Lad Home Assistant overvåge dine solceller og give dig oplysninger om deres produktion.",
+ "title": "Solceller"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "Følgende entiteter har en negativ tilstand, mens der forventes en positiv tilstand:",
+ "title": "Entiteten har en negativ tilstand"
+ },
+ "entity_not_defined": {
+ "description": "Kontroller den integration eller konfiguration, der indeholder:",
+ "title": "Entiteten er ikke defineret"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "Følgende entiteter har tilstandsklassen ''measurement'', men 'last_reset' mangler:",
+ "title": "Seneste nulstilling mangler"
+ },
+ "entity_state_non_numeric": {
+ "description": "Følgende entiteter har en tilstand, der ikke kan fortolkes som et tal:",
+ "title": "Entiteten har en ikke-numerisk tilstand"
+ },
+ "entity_unavailable": {
+ "description": "Tilstanden for disse konfigurerede entiteter er i øjeblikket ikke tilgængelig:",
+ "title": "Entiteten er utilgængelig"
+ },
+ "entity_unexpected_device_class": {
+ "description": "Følgende entiteter har ikke den forventede enhedsklasse:",
+ "title": "Uventet enhedsklasse"
+ },
+ "entity_unexpected_state_class": {
+ "description": "Følgende entiteter har ikke den forventede tilstandsklasse:",
+ "title": "Uventet tilstandsklasse"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "Følgende entiteter har ikke den forventede tilstandsklasse \"total_increasing",
+ "title": "Uventet tilstandsklasse"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "Følgende entiteter har ikke de forventede måleenheder 'kWh' eller 'Wh':",
+ "title": "Uventet måleenhed"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "Følgende enheder har ikke de forventede måleenheder ''{currency}/kWh'' eller ''{currency}/Wh'':",
+ "title": "Uventet måleenhed"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "Følgende entiteter har ikke de forventede måleenheder 'kWh', 'm³' eller 'ft³':",
+ "title": "Uventet måleenhed"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "Følgende enheder har ikke de forventede måleenheder ''{currency}/kWh'', ''{currency}/Wh'', ''{currency}/m³'' eller ''{currency}/ft³'':",
+ "title": "Uventet måleenhed"
+ },
+ "recorder_untracked": {
+ "description": "Optageren er konfigureret til at ekskludere disse konfigurerede entiteter:",
+ "title": "Entiteten spores ikke"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Entiteter",
+ "description": "Administrer kendte entiteter",
+ "picker": {
+ "disable_selected": {
+ "button": "Deaktiver valgte",
+ "confirm_text": "Deaktiverede entiteter tilføjes ikke til Home Assistant.",
+ "confirm_title": "Vil du deaktivere {number} {number, plural,\n one {entitet}\n other {entiteter}\n}?"
+ },
+ "enable_selected": {
+ "button": "Aktivér valgte",
+ "confirm_text": "Dette vil gøre dem tilgængelige i Home Assistant igen, hvis de nu er deaktiverede.",
+ "confirm_title": "Vil du aktivere {number} {number, plural,\n one {entitet}\n other {entiteter}\n}?"
+ },
+ "filter": {
+ "filter": "Filtrer",
+ "hidden_entities": "{number} skjult(e) {number, plural,\n one {entitet}\n other {entiteter}\n}",
+ "show_all": "Vis alle",
+ "show_disabled": "Vis deaktiverede entiteter",
+ "show_readonly": "Vis skrivebeskyttede entiteter",
+ "show_unavailable": "Vis utilgængelige entiteter"
+ },
+ "header": "Entiteter",
+ "headers": {
+ "area": "Område",
+ "disabled_by": "Deaktiveret af",
+ "entity_id": "Entitets-id",
+ "integration": "Integration",
+ "name": "Navn",
+ "status": "Status"
+ },
+ "introduction": "Home Assistant fører et register over alle unikke entiteter, den nogensinde har set. Hver af disse entiteter vil få tildelt et entitets-id, som vil være forbeholdt netop denne entitet.",
+ "introduction2": "Brug entitetssregistret til at overskrive navnet, ændre entitets-id eller fjerne posten fra Home Assistant. Bemærk, at fjernelse af entitetens registreringspost ikke fjerner entiteten. For at gøre dette, skal du følge linket herunder og fjerne det fra integrationssiden.",
+ "remove_selected": {
+ "button": "Fjern valgte",
+ "confirm_partly_text": "Du kan kun fjerne {removable} af de valgte {selected} entiteter. Entiteter kan kun fjernes, når integrationen ikke længere leverer entiteterne. Nogle gange er du nødt til at genstarte Home Assistant, før du kan fjerne entiteterne fra en fjernet integration. Er du sikker på, at du vil fjerne de fjernbare entiteter?",
+ "confirm_partly_title": "Kun {number} {number, plural,\n one {valgt entitet}\n other {valgte entiteter}\n} kan fjernes.",
+ "confirm_text": "Du bør fjerne dem fra din Lovelace-konfiguration og automatiseringer, hvis de indeholder disse entiteter.",
+ "confirm_title": "Vil du fjerne {number} {number, plural,\n one {entitet}\n other {entiteter}\n}?"
+ },
+ "search": "Søg i entiteter",
+ "selected": "{number} valgt",
+ "status": {
+ "disabled": "Deaktiveret",
+ "ok": "Ok",
+ "readonly": "Skrivebeskyttet",
+ "restored": "Gendannet",
+ "unavailable": "Utilgængelig"
+ }
+ }
+ },
+ "header": "Konfigurer Home Assistant",
+ "helpers": {
+ "caption": "Hjælpere",
+ "description": "Administrer elementer, der hjælper med at opbygge automatiseringer",
+ "dialog": {
+ "add_helper": "Tilføj hjælper",
+ "add_platform": "Tilføj {platform}",
+ "create": "Opret"
+ },
+ "picker": {
+ "add_helper": "Tilføj hjælper",
+ "headers": {
+ "editable": "Redigerbar",
+ "entity_id": "Entitets-id",
+ "name": "Navn",
+ "type": "Type"
+ },
+ "no_helpers": "Det ser ud til, at du ikke har nogen hjælpere endnu!"
+ },
+ "types": {
+ "counter": "Tæller",
+ "input_boolean": "Til/fra",
+ "input_datetime": "Dato og/eller klokkeslæt",
+ "input_number": "Tal",
+ "input_select": "Dropdown",
+ "input_text": "Tekst",
+ "timer": "Timer"
+ }
+ },
+ "info": {
+ "built_using": "Bygget ved hjælp af",
+ "caption": "Oplysninger",
+ "copy_github": "Til GitHub",
+ "copy_menu": "Kopier menu",
+ "copy_raw": "Rå tekst",
+ "custom_uis": "Tilpassede brugergrænseflader:",
+ "description": "Version, systemtilstand og links til dokumentation",
+ "developed_by": "Udviklet af en masse fantastiske mennesker.",
+ "documentation": "Dokumentation",
+ "frontend": "brugerflade",
+ "frontend_version": "Brugerfladeversion: {version} - {type}",
+ "home_assistant_logo": "Home Assistant-logo",
+ "icons_by": "Ikoner af",
+ "integrations": "Integrationer",
+ "issues": "Problemer",
+ "license": "Udgivet under Apache 2.0-licensen",
+ "path_configuration": "Sti til 'configuration.yaml': {path}",
+ "server": "server",
+ "setup_time": "Opsætningstid",
+ "source": "Kilde:",
+ "system_health": {
+ "manage": "Administrer",
+ "more_info": "mere info"
+ },
+ "system_health_error": "System Health-komponenten er ikke indlæst. Føj 'system_health:' til 'config.yaml'"
+ },
+ "integrations": {
+ "add_integration": "Tilføj integration",
+ "attention": "Opmærksomhed påkrævet",
+ "caption": "Integrationer",
+ "config_entry": {
+ "area": "I {area}",
+ "check_the_logs": "Kontroller logfilerne",
+ "configure": "Konfigurer",
+ "delete": "Slet",
+ "delete_confirm": "Er du sikker på, at du vil slette integrationen {title}?",
+ "depends_on_cloud": "Afhængig af Cloud tjenester",
+ "device_unavailable": "Enheden er utilgængelig",
+ "devices": "{count} {count, plural,\n one {enhed}\n other {enheder}\n}",
+ "disable": {
+ "disable_confirm": "Er du sikker på, at du vil deaktivere denne integration? Integrationens enheder og entiteter vil blive deaktiveret.",
+ "disabled": "Deaktiveret",
+ "disabled_by": {
+ "device": "enhed",
+ "integration": "integration",
+ "user": "bruger"
+ },
+ "disabled_cause": "Deaktiveret af {cause}"
+ },
+ "disable_error": "Aktivering eller deaktivering af integrationen fejlede",
+ "disable_restart_confirm": "Genstart Home Assistant for at fuldføre deaktivering af denne integration",
+ "disabled_polling": "Den automatiske hentning af opdateret data er frakoblet",
+ "documentation": "Dokumentation",
+ "enable_restart_confirm": "Genstart Home Assistant for at fuldføre aktivering af denne integration",
+ "entities": "{count} {count, plural,\n one {entitet}\n other {entiteter}\n}",
+ "entity_unavailable": "Entiteten er utilgængelig",
+ "firmware": "Firmware: {version}",
+ "hardware": "Hardware: {version}",
+ "hub": "Forbundet via",
+ "manuf": "af {manufacturer}",
+ "no_area": "Intet område",
+ "not_loaded": "Ikke indlæst",
+ "provided_by_custom_integration": "Leveret af en brugerdefineret integration",
+ "reload": "Genindlæs",
+ "reload_confirm": "Integrationen blev genindlæst",
+ "reload_restart_confirm": "Genstart Home Assistant for at fuldføre genindlæsningen af integrationen",
+ "rename": "Omdøb",
+ "restart_confirm": "Genstart Home Assistant for at fuldføre fjernelsen af denne integration",
+ "services": "{count} {count, plural,\n one {tjeneste}\n other {tjenester}\n}",
+ "state": {
+ "failed_unload": "Det lykkedes ikke at fjerne",
+ "loaded": "Indlæst",
+ "migration_error": "Migrationsfejl",
+ "not_loaded": "Ikke indlæst",
+ "setup_error": "Konfigurationen mislykkedes",
+ "setup_retry": "Forsøger konfigurationen igen"
+ },
+ "system_options": "Systemindstillinger",
+ "unknown_via_device": "Ukendt enhed",
+ "unnamed_entry": "Unavngivet post",
+ "via": "Forbundet via"
+ },
+ "config_flow": {
+ "aborted": "Afbrudt",
+ "close": "Luk",
+ "could_not_load": "Konfigurationsflow kunne ikke indlæses",
+ "created_config": "Oprettede konfiguration for {name}.",
+ "dismiss": "Afvis dialog",
+ "error": "Fejl",
+ "error_saving_area": "Fejl ved lagring af område: {error}",
+ "external_step": {
+ "description": "Dette trin kræver, at du besøger et eksternt websted.",
+ "open_site": "Åbn websted"
+ },
+ "finish": "Afslut",
+ "loading": {
+ "fallback_title": "integrationen",
+ "loading_flow": "Vent, mens {integration} konfigureres",
+ "loading_step": "Indlæser næste trin for {integration}"
+ },
+ "next": "Næste",
+ "not_all_required_fields": "Ikke alle påkrævede felter er udfyldt.",
+ "not_loaded": "Integrationen kunne ikke indlæses, prøv at genstarte Home Assistant.",
+ "pick_flow_step": {
+ "new_flow": "Nej, konfigurer en anden forekomst af {integration}",
+ "title": "Vi opdagede disse, vil du oprette dem?"
+ },
+ "submit": "Send"
+ },
+ "configure": "Konfigurer",
+ "configured": "Konfigureret",
+ "confirm_new": "Vil du konfigurere {integration} ?",
+ "description": "Administrer integrationer",
+ "details": "Integrationsdetaljer",
+ "disable": {
+ "disabled_integrations": "{number} er deaktiveret",
+ "show": "Vis",
+ "show_disabled": "Vis deaktiverede integrationer"
+ },
+ "discovered": "Fundet",
+ "home_assistant_website": "Home Assistants hjemmeside",
+ "ignore": {
+ "confirm_delete_ignore": "Dette gør, at integrationen vises igen under dine fundne integrationer, når den bliver fundet. Dette kan kræve en genstart eller tage noget tid.",
+ "confirm_delete_ignore_title": "Stop med at ignorere {name}?",
+ "confirm_ignore": "Er du sikker på, at du ikke vil konfigurere denne integration? Du kan fortryde dette ved at klikke på 'Vis ignorerede integrationer' i menuen øverst til højre.",
+ "confirm_ignore_title": "Ignorer fundet af {name}?",
+ "ignore": "Ignorer",
+ "ignored": "Ignoreret",
+ "show_ignored": "Vis ignorerede integrationer",
+ "stop_ignore": "Stop med at ignorere"
+ },
+ "integration": "integration",
+ "integration_not_found": "Integrationen blev ikke fundet.",
+ "new": "Opret en ny integration",
+ "no_integrations": "Det ser ud til, at du ikke har konfigureret nogen integrationer endnu. Klik på knappen nedenfor for at tilføje din første integration!",
+ "none": "Intet konfigureret endnu",
+ "none_found": "Ingen integrationer fundet",
+ "none_found_detail": "Juster dine søgekriterier.",
+ "note_about_integrations": "Ikke alle integrationer kan konfigureres via brugerfladen endnu.",
+ "note_about_website_reference": "Flere er tilgængelige på ",
+ "reconfigure": "Omkonfigurere",
+ "rename_dialog": "Rediger navnet på denne konfigurationspost",
+ "rename_input_label": "Navn på post",
+ "search": "Søg i integrationer"
+ },
+ "introduction": "Her er det muligt at konfigurere dine komponenter og Home Assistant. Ikke alt er muligt at konfigurere fra brugerfladen endnu, men vi arbejder på det.",
+ "logs": {
+ "caption": "Logs",
+ "clear": "Ryd",
+ "copy": "Kopiér logregistrering",
+ "custom_integration": "brugerdefineret integration",
+ "description": "Se logs for Home Assistant",
+ "details": "Logdetaljer ({level})",
+ "error_from_custom_integration": "Denne fejl stammer fra en brugerdefineret integration.",
+ "level": {
+ "critical": "KRITISK",
+ "debug": "DEBUG",
+ "error": "FEJL",
+ "info": "INFO",
+ "warning": "ADVARSEL"
+ },
+ "load_full_log": "Indlæs fuld Home Assistant-log",
+ "loading_log": "Indlæser fejllog...",
+ "multiple_messages": "beskeden forekom først kl. {time} og ses {counter} gange",
+ "no_errors": "Der er ikke rapporteret nogen fejl.",
+ "no_issues": "Der er ingen nye problemer!",
+ "refresh": "Opdater"
+ },
+ "lovelace": {
+ "caption": "Lovelace-betjeningspaneler",
+ "dashboards": {
+ "cant_edit_default": "Standard-Lovelace-betjeningspanelet kan ikke redigeres fra brugerfladen. Du kan skjule det ved at indstille et andet betjeningspanel som standard.",
+ "cant_edit_yaml": "Betjeningspaneler, der er defineret i YAML, kan ikke redigeres fra brugerfladen. Ændr dem i configuration.yaml.",
+ "caption": "Betjeningspaneler",
+ "conf_mode": {
+ "storage": "Brugerfladekontrolleret",
+ "yaml": "YAML-fil"
+ },
+ "confirm_delete": "Er du sikker på, at du vil slette dette betjeningspanel?",
+ "confirm_delete_text": "Dit betjeningspanel slettes permanent.",
+ "confirm_delete_title": "Slet {dashboard_title}?",
+ "default_dashboard": "Dette er standardbetjeningspanelet",
+ "detail": {
+ "create": "Opret",
+ "delete": "Slet",
+ "dismiss": "Luk",
+ "edit_dashboard": "Rediger betjeningspanel",
+ "icon": "Ikon",
+ "new_dashboard": "Tilføj nyt betjeningspanel",
+ "remove_default": "Fjern som standard på denne enhed",
+ "require_admin": "Kun administrator",
+ "set_default": "Indstil som standard på denne enhed",
+ "show_sidebar": "Vis i sidebjælke",
+ "title": "Titel",
+ "title_required": "Titel er påkrævet.",
+ "update": "Opdater",
+ "url": "Webadresse",
+ "url_error_msg": "Webadressen skal indeholde en - og kan ikke indeholde mellemrum eller specialtegn undtagen _ og -"
+ },
+ "picker": {
+ "add_dashboard": "Tilføj betjeningspanel",
+ "headers": {
+ "conf_mode": "Konfigurationsmetode",
+ "default": "Standard",
+ "filename": "Filnavn",
+ "require_admin": "Kun administrator",
+ "sidebar": "Vis i sidebjælke",
+ "title": "Titel"
+ },
+ "open": "Åbn"
+ }
+ },
+ "description": "Administrer dine Lovelace-betjeningspaneler",
+ "resources": {
+ "cant_edit_yaml": "Du bruger Lovelace i YAML-tilstand, og derfor kan du ikke administrere dine ressourcer gennem brugerfladen. Administrer dem i configuration.yaml.",
+ "caption": "Ressourcer",
+ "confirm_delete": "Er du sikker på, at du vil slette denne ressource?",
+ "detail": {
+ "create": "Opret",
+ "delete": "Slet",
+ "dismiss": "Luk",
+ "new_resource": "Tilføj ny ressource",
+ "type": "Ressourcetype",
+ "update": "Opdater",
+ "url": "Webadresse",
+ "url_error_msg": "Webadresse er et påkrævet felt",
+ "warning_header": "Vær forsigtig!",
+ "warning_text": "Tilføjelse af ressourcer kan være farligt, sørg for at kende ressourcekilden, og at du stoler på dem. Dårlige ressourcer kan skade dit system betydeligt."
+ },
+ "picker": {
+ "add_resource": "Tilføj ressource",
+ "headers": {
+ "type": "Type",
+ "url": "Webadresse"
+ },
+ "no_resources": "Ingen ressourcer"
+ },
+ "refresh_body": "Du skal opdatere siden for at afslutte fjernelsen. Vil du opdatere nu?",
+ "refresh_header": "Vil du opdatere?",
+ "types": {
+ "css": "Stylesheet",
+ "html": "HTML (frarådes)",
+ "js": "JavaScript-fil (frarådes)",
+ "module": "JavaScript-modul"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Lyt til et emne",
+ "description_publish": "Udsend en pakke",
+ "listening_to": "Lytter til",
+ "message_received": "Besked {id} er modtaget på {topic} kl. {time}:",
+ "payload": "Payload (skabelon tilladt)",
+ "publish": "Udsend",
+ "start_listening": "Start med at lytte",
+ "stop_listening": "Stop med at lytte",
+ "subscribe_to": "Emne at abonnere på",
+ "title": "MQTT",
+ "topic": "emne"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Controller",
+ "instance": "Instans",
+ "network": "Netværk",
+ "node_id": "knudepunkts-id",
+ "ozw_instance": "OpenZWave-instans",
+ "query_stage": "Forespørgselsfase",
+ "wakeup_instructions": "Vågneinstruktioner",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Noden mislykkedes",
+ "stage": "Fase",
+ "zwave_info": "Z-Wave-info"
+ },
+ "navigation": {
+ "network": "Netværk",
+ "node": {
+ "config": "Konfiguration",
+ "dashboard": "Betjeningspanel"
+ },
+ "nodes": "Noder",
+ "select_instance": "Vælg Instans"
+ },
+ "network": {
+ "header": "Netværksadministration",
+ "introduction": "Administrer funktioner for hele netværket.",
+ "node_count": "{count} noder"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "Alle noder er blevet forespurgt",
+ "driverallnodesqueriedsomedead": "Alle noder er blevet forespurgt. Nogle noder er ikke længere aktive",
+ "driverawakenodesqueries": "Alle vågne noder er blevet forespurgt",
+ "driverfailed": "Der kunne ikke oprettes forbindelse til Z-Wave-controlleren",
+ "driverready": "Initialiserer Z-Wave-controlleren",
+ "driverremoved": "Driveren er blevet fjernet",
+ "driverreset": "Driveren er blevet nulstillet",
+ "offline": "OZWDaemon er offline",
+ "ready": "Klar til at oprette forbindelse",
+ "started": "Forbundet til MQTT",
+ "starting": "Opretter forbindelse til MQTT",
+ "stopped": "OpenZWave stoppet"
+ },
+ "offline": "Offline",
+ "online": "Online",
+ "starting": "Starter",
+ "unknown": "Ukendt"
+ },
+ "node": {
+ "button": "Nodeoplysninger",
+ "not_found": "Noden blev ikke fundet"
+ },
+ "node_config": {
+ "header": "Konfiguration af node",
+ "help_source": "Beskrivelser af konfigurationsparametre og hjælpetekster leveres af OpenZWave-projektet.",
+ "introduction": "Administrer de forskellige konfigurationsparametre for en Z-Wave-node.",
+ "wakeup_help": "Batteridrevne noder skal være vågne for at ændre deres konfiguration. Hvis noden ikke er vågen, vil OpenZWave forsøge at opdatere nodens konfiguration, næste gang den vågner, hvilket kan være flere timer (eller dage) senere. Følg disse trin for at vække enheden:"
+ },
+ "node_metadata": {
+ "product_manual": "Brugervejledning"
+ },
+ "node_query_stages": {
+ "associations": "Opdaterer tilknytningsgrupper og medlemskaber",
+ "cacheload": "Indlæser oplysninger fra OpenZWave cache-filen. Batteridrevne noder forbliver på dette trin, indtil noden vågner op.",
+ "complete": "Interviewprocessen er fuldført",
+ "configuration": "Henter konfigurationsværdier fra noden",
+ "dynamic": "Henter ofte skiftende værdier fra noden",
+ "instances": "Henter oplysninger om, hvilke forekomster eller kanaler, som en enhed understøtter",
+ "manufacturerspecific1": "Henter producent- og produkt-ID-koder fra noden",
+ "manufacturerspecific2": "Henter yderligere producent- og produkt-ID-koder fra noden",
+ "neighbors": "Henter en liste over nodens naboer",
+ "nodeinfo": "Henter understøttede kommandoklasser fra noden",
+ "nodeplusinfo": "Henter Z-Wave + -oplysninger fra noden",
+ "probe": "Kontrollerer, om noden er vågen / i live",
+ "protocolinfo": "Henter oplysninger fra controlleren om grundlæggende Z-Wave-funktioner for denne node",
+ "session": "Henter værdier fra noden, som sjældent opdateres",
+ "static": "Henter statiske værdier fra enheden",
+ "versions": "Henter oplysninger om firmware- og kommandoklasseversioner",
+ "wakeup": "Konfigurerer understøttelse af vækningskøer og meddelelser"
+ },
+ "nodes_table": {
+ "failed": "Mislykkedes",
+ "id": "Id",
+ "manufacturer": "Producent",
+ "model": "Model",
+ "query_stage": "Forespørgselsfase",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Hvis noden er batteridrevet, skal du sørge for at vække den, før du fortsætter",
+ "button": "Opdater node",
+ "complete": "Opdatering af noder er fuldført",
+ "description": "Dette vil få OpenZWave til at genindlæse en node og opdatere nodens kommandoklasser, funktioner og værdier.",
+ "node_status": "Nodestatus",
+ "refreshing_description": "Opdaterer nodeoplysninger …",
+ "start_refresh_button": "Start opdatering",
+ "step": "Trin",
+ "title": "Opdater nodeoplysninger",
+ "wakeup_header": "Opvågningsinstruktioner til",
+ "wakeup_instructions_source": "Opvågningsinstruktioner kommer fra OpenZWave fællesskabets enhedsdatabase."
+ },
+ "select_instance": {
+ "header": "Vælg en OpenZWave-instans",
+ "introduction": "Du kører mere end én OpenZWave instans. Hvilken instans vil du administrere?",
+ "none_found": "Vi kunne ikke finde en OpenZWave instans. Hvis dette skyldes en fejl, skal du kontrollere din OpenZWave- og MQTT-konfiguration og sikre, at Home Assistant kan kommunikere med din MQTT-mægler."
+ },
+ "services": {
+ "add_node": "Tilføj node",
+ "cancel_command": "Annuller kommando",
+ "remove_node": "Fjern node"
+ }
+ },
+ "person": {
+ "add_person": "Tilføj person",
+ "caption": "Personer",
+ "confirm_delete": "Er du sikker på, at du vil slette denne person?",
+ "confirm_delete2": "Alle enheder, der tilhører denne person, bliver utildelte.",
+ "create_person": "Opret person",
+ "description": "Administrer de personer, som Home Assistant skal spore.",
+ "detail": {
+ "admin": "Administrator",
+ "allow_login": "Tillad, at personen logger ind",
+ "confirm_delete_user": "Er du sikker på, at du vil slette brugerkontoen for {name} ? Du kan stadig spore brugeren, men personen kan ikke længere logge ind.",
+ "create": "Opret",
+ "delete": "Slet",
+ "device_tracker_intro": "Vælg de enheder, der tilhører denne person.",
+ "device_tracker_pick": "Vælg en enhed, der skal spores",
+ "device_tracker_picked": "Spor enhed",
+ "link_integrations_page": "Integrationsside",
+ "link_presence_detection_integrations": "Tilstedeværelsesdetektions-integrationer",
+ "linked_user": "Tilknyttet bruger",
+ "local_only": "Kan kun logge ind fra det lokale netværk",
+ "name": "Navn",
+ "name_error_msg": "Navn er påkrævet",
+ "new_person": "Ny person",
+ "no_device_tracker_available_intro": "Når du har enheder, der angiver en persons tilstedeværelse, kan du tildele dem til en person her. Du kan tilføje din første enhed ved at tilføje en tilstedeværelsesdetektions-integration fra integrationssiden.",
+ "update": "Opdater"
+ },
+ "introduction": "Her kan du definere hver person af interesse i Home Assistant.",
+ "learn_more": "Lær mere om personer",
+ "no_persons_created_yet": "Det ser ud til, at du ikke har oprettet nogen personer endnu.",
+ "note_about_persons_configured_in_yaml": "Bemærk: Personer, der er konfigureret via 'configuration.yaml' kan ikke redigeres via brugerfladen.",
+ "person_not_found": "Vi kunne ikke finde den person, du forsøgte at redigere.",
+ "person_not_found_title": "Personen blev ikke fundet"
+ },
+ "scene": {
+ "activated": "Aktiverede scenen {name}.",
+ "caption": "Scener",
+ "description": "Administrer scener",
+ "editor": {
+ "area": "Område",
+ "default_name": "Ny scene",
+ "devices": {
+ "add": "Tilføj en enhed",
+ "delete": "Slet enhed",
+ "header": "Enheder",
+ "introduction": "Tilføj de enheder, du vil have inkluderet i din scene. Indstil alle enheder til den tilstand, du ønsker for denne scene."
+ },
+ "entities": {
+ "add": "Tilføj en entitet",
+ "delete": "Slet entitet",
+ "device_entities": "Hvis du tilføjer en entitet, der hører til en enhed, tilføjes enheden også.",
+ "header": "Entiteter",
+ "introduction": "Entiteter, der ikke hører til en enhed, kan indstilles her.",
+ "without_device": "Entiteter uden enhed"
+ },
+ "icon": "Ikon",
+ "introduction": "Brug scener til at vække dit hjem til live",
+ "load_error_not_editable": "Kun scener i 'scenes.yaml' er redigerbare.",
+ "load_error_unknown": "Fejl under indlæsning af scene ({err_no}).",
+ "name": "Navn",
+ "save": "Gem",
+ "unsaved_confirm": "Du har ikke-gemte ændringer. Er du sikker på, at du vil forlade?"
+ },
+ "picker": {
+ "add_scene": "Tilføj scene",
+ "delete_confirm": "Er du sikker på, at du vil slette denne scene?",
+ "delete_scene": "Slet scene",
+ "duplicate": "Kopier",
+ "duplicate_scene": "Kopier scene",
+ "edit_scene": "Rediger scene",
+ "header": "Sceneredigering",
+ "headers": {
+ "name": "Navn"
+ },
+ "introduction": "Sceneredigering giver dig mulighed for at oprette og redigere scener. Følg nedenstående link for at læse instruktionerne for at sikre dig, at du har konfigureret Home Assistant korrekt.",
+ "learn_more": "Lær mere om scener",
+ "no_scenes": "Vi kunne ikke finde nogen redigerbare scener",
+ "only_editable": "Kun scener defineret i 'scenes.yaml' kan redigeres.",
+ "pick_scene": "Vælg scene for at redigere",
+ "show_info_scene": "Vis info om scene"
+ }
+ },
+ "script": {
+ "caption": "Scripts",
+ "description": "Udføre en sekvens af handlinger",
+ "editor": {
+ "alias": "Navn",
+ "default_name": "Nyt script",
+ "delete_confirm": "Er du sikker på, at du vil slette dette script?",
+ "delete_script": "Slet script",
+ "header": "Script: {name}",
+ "icon": "Ikon",
+ "id": "Entitets-id",
+ "id_already_exists": "Dette id findes allerede",
+ "id_already_exists_save_error": "Du kan ikke gemme dette script, fordi id'et ikke er unikt. Vælg et andet id eller lad det være tomt for automatisk at generere et.",
+ "introduction": "Brug scripts til at udløse en sekvens af handlinger.",
+ "link_available_actions": "Lær mere om tilgængelige handlinger.",
+ "load_error_not_editable": "Kun scripts i 'scripts.yaml' kan redigeres.",
+ "max": {
+ "parallel": "Maksimalt antal parallelle kørsler",
+ "queued": "Kølængde"
+ },
+ "modes": {
+ "description": "Tilstanden styrer, hvad der sker, når scriptet aktiveres, mens det stadig kører fra en eller flere tidligere aktiveringer. Læs {documentation_link} for at få flere oplysninger.",
+ "documentation": "script-dokumentationen",
+ "label": "Tilstand",
+ "parallel": "Parallelt",
+ "queued": "I kø",
+ "restart": "Genstart",
+ "single": "Enkelt (standard)"
+ },
+ "save_script": "Gem script",
+ "sequence": "Sekvens",
+ "sequence_sentence": "Sekvensen af handlinger i dette script.",
+ "show_trace": "Vis sporing"
+ },
+ "picker": {
+ "add_script": "Tilføj script",
+ "dev_script": "Fejlfinding af script",
+ "duplicate": "Kopier",
+ "duplicate_script": "Kopier script",
+ "edit_script": "Rediger script",
+ "header": "Script-redigering",
+ "headers": {
+ "name": "Navn"
+ },
+ "introduction": "Script-redigering giver dig mulighed for at oprette og redigere scripts. Følg nedenstående link for at læse instruktionerne for at sikre, at du har konfigureret Home Assistant korrekt.",
+ "learn_more": "Lær mere om scripts",
+ "no_scripts": "Vi kunne ikke finde nogen redigerbare scripts",
+ "run_script": "Kør script",
+ "show_info": "Vis info om script"
+ }
+ },
+ "server_control": {
+ "caption": "Serveradministration",
+ "description": "Validér og genstart Home Assistant-serveren",
+ "section": {
+ "reloading": {
+ "automation": "Genindlæs automatiseringer",
+ "command_line": "Genindlæs kommandolinje entiteter",
+ "core": "Genindlæs lokalitet og tilpasninger",
+ "filesize": "Genindlæs filstørrelse entiteter",
+ "filter": "Genindlæs filter entiteter",
+ "generic": "Genindlæs generiske IP-kamera entiteter",
+ "generic_thermostat": "Genindlæs generiske termostat entiteter",
+ "group": "Genindlæs grupper",
+ "heading": "Genindlæsning af YAML-konfiguration",
+ "history_stats": "Genindlæs historik entiteter",
+ "homekit": "Genindlæs HomeKit",
+ "input_boolean": "Genindlæs booleske input",
+ "input_datetime": "Genindlæs inputdatotider",
+ "input_number": "Genindlæs inputnumre",
+ "input_select": "Genindlæs inputvalg",
+ "input_text": "Genindlæs inputtekster",
+ "introduction": "Nogle dele af Home Assistant kan genindlæses uden en genstart. Tryk på genindlæs for at erstatte den nuværende YAML-konfiguration med den nye.",
+ "min_max": "Genindlæs min / max entiteter",
+ "mqtt": "Genindlæs manuelt konfigurerede MQTT-entiteter",
+ "person": "Genindlæs personer",
+ "ping": "Genindlæs ping sensor entiteter",
+ "reload": "Genindlæs {domain}",
+ "rest": "Genindlæs REST entiteter og REST notifikationstjenester",
+ "rpi_gpio": "Genindlæs Raspberry Pi GPIO entiteter",
+ "scene": "Genindlæs scener",
+ "script": "Genindlæs scripts",
+ "smtp": "Genindlæs SMTP-beskedtjenester",
+ "statistics": "Genindlæs statistik entiteter",
+ "telegram": "Genindlæs Telegram notifikationstjenester",
+ "template": "Genindlæs template entiteter",
+ "timer": "Timere",
+ "trend": "Genindlæs trend entiteter",
+ "universal": "Genindlæs medieafspiller entiteter",
+ "zone": "Genindlæs zoner"
+ },
+ "server_management": {
+ "confirm_restart": "Er du sikker på, at du vil genstarte Home Assistant?",
+ "confirm_stop": "Er du sikker på, at du vil stoppe Home Assistant?",
+ "heading": "Serveradministration",
+ "introduction": "Administrer din Home Assistant.",
+ "restart": "Genstart",
+ "stop": "Stop"
+ },
+ "validation": {
+ "check_config": "Tjek konfiguration",
+ "heading": "Validering af konfiguration",
+ "introduction": "Valider din konfiguration, hvis du for nylig har foretaget ændringer i konfigurationen og vil sikre dig, at den er gyldig",
+ "invalid": "Konfiguration ugyldig",
+ "valid": "Konfiguration gyldig!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Tilføj tag",
+ "automation_title": "Tag {name} blev scannet",
+ "caption": "Tags",
+ "confirm_remove": "Er du sikker på, at du vil fjerne tagget {tag} ?",
+ "confirm_remove_title": "Fjern tag?",
+ "create_automation": "Opret automatisering med tag",
+ "description": "Udløs automatiseringer, når et NFC-tag, QR-kode mv. scannes",
+ "detail": {
+ "companion_apps": "",
+ "create": "Opret",
+ "create_and_write": "Opret og skriv",
+ "delete": "Slet",
+ "description": "Beskrivelse",
+ "name": "Navn",
+ "new_tag": "Nyt tag",
+ "tag_id": "Tag-ID",
+ "tag_id_placeholder": "Genereres automatisk, hvis feltet efterlades tomt",
+ "update": "Opdater",
+ "usage": "Et tag kan udløse en automatisering, når det scannes, du kan bruge NFC-tags, QR-koder eller enhver anden form for tag. Brug vores {companion_link} til at skrive dette tag til et programmerbart NFC-tag eller opret en QR-kode nedenfor."
+ },
+ "edit": "Rediger",
+ "headers": {
+ "last_scanned": "Sidst scannet",
+ "name": "Navn"
+ },
+ "learn_more": "Lær mere om tags",
+ "never_scanned": "Aldrig scannet",
+ "no_tags": "Ingen tags",
+ "write": "Skriv"
+ },
+ "updates": {
+ "more_updates": "+ {count} opdateringer",
+ "review": "gennemgå",
+ "show": "vis",
+ "show_all_updates": "Vis alle opdateringer",
+ "title": "{count} {count, plural,\n one {opdatering}\n other {opdateringer}\n}",
+ "unable_to_fetch": "Kan ikke indlæse opdateringer",
+ "version_available": "Version {version_available} er tilgængelig"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Tilføj bruger",
+ "create": "Opret",
+ "local_only": "Kun lokalt",
+ "password": "Adgangskode",
+ "password_confirm": "Bekræft adgangskode",
+ "password_not_match": "Adgangskoderne er ikke ens"
+ },
+ "caption": "Brugere",
+ "description": "Administrer brugere",
+ "editor": {
+ "activate_user": "Aktivér bruger",
+ "active": "Aktiv",
+ "active_tooltip": "Kontrollerer, om brugeren kan logge ind",
+ "admin": "Administrator",
+ "caption": "Vis bruger",
+ "change_password": "Skift adgangskode",
+ "confirm_user_deletion": "Er du sikker på, at du vil slette {name}?",
+ "deactivate_user": "Deaktiver bruger",
+ "delete_user": "Slet bruger",
+ "group": "Gruppe",
+ "id": "Id",
+ "local_only": "Kan kun logge ind fra det lokale netværk",
+ "name": "Navn",
+ "new_password": "Ny Adgangskode",
+ "owner": "Ejer",
+ "password_changed": "Adgangskoden er ændret",
+ "system_generated": "Systemgenereret",
+ "system_generated_users_not_editable": "Systemoprettede brugere kan ikke opdateres.",
+ "system_generated_users_not_removable": "Kan ikke fjerne systemgenererede brugere.",
+ "unnamed_user": "Unavngiven bruger",
+ "update_user": "Opdater",
+ "username": "Brugernavn"
+ },
+ "picker": {
+ "add_user": "Tilføj bruger",
+ "headers": {
+ "group": "Gruppe",
+ "is_active": "Aktiv",
+ "is_owner": "Ejer",
+ "local": "Kun lokalt",
+ "name": "Navn",
+ "system": "Systemgenereret",
+ "username": "Brugernavn"
+ }
+ },
+ "users_privileges_note": "Bruger-gruppe funktionaliteten er stadig under udvikling. Brugeren vil ikke være i stand til at administrere instansen via brugergrænsefladen. Vi kigger stadig alle administrations-API-endepunkter igennem for at sikre, at de begrænser adgangen til administratorer."
+ },
+ "zha": {
+ "add_device": "Tilføj enhed",
+ "add_device_page": {
+ "discovered_text": "Enheder vil dukke op her, når de er fundet.",
+ "no_devices_found": "Ingen enheder blev fundet. Sørg for at de er i parringstilstand og hold dem vågne mens der søges.",
+ "pairing_mode": "Sørg for, at dine enheder er i parringstilstand. Se enhedens vejledning i, hvordan du gør dette.",
+ "search_again": "Søg igen",
+ "spinner": "Søger efter ZHA Zigbee-enheder…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Egenskaber for den valgte klynge",
+ "get_zigbee_attribute": "Hent Zigbee-egenskab",
+ "header": "Klyngeegenskaber",
+ "help_attribute_dropdown": "Vælg en egenskab for at se eller indstille dens værdi.",
+ "help_get_zigbee_attribute": "Hent værdien for den valgte egenskab.",
+ "help_set_zigbee_attribute": "Indstil egenskabsværdi for den specificerede klynge på den specificerede entitet.",
+ "introduction": "Se og rediger klyngeegenskaber",
+ "set_zigbee_attribute": "Angiv Zigbee-egenskab"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Kommandoer for den valgte klynge",
+ "header": "Klyngekommandoer",
+ "help_command_dropdown": "Vælg en kommando, du vil interagere med.",
+ "introduction": "Se og send klyngekommandoer.",
+ "issue_zigbee_command": "Send ZigBee-kommando"
+ },
+ "clusters": {
+ "header": "Klynger",
+ "help_cluster_dropdown": "Vælg en klynge for at se egenskaber og kommandoer.",
+ "introduction": "Klynger er byggestenene til Zigbee-funktionalitet. De adskiller funktionalitet i logiske enheder. Der er klient- og servertyper, og de består af egenskaber og kommandoer."
+ },
+ "common": {
+ "clusters": "Klynger",
+ "manufacturer_code_override": "Brugerdefineret producentkode",
+ "value": "Værdi"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Genveje",
+ "update_button": "Opdater konfiguration"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Konfiguration fuldført",
+ "CONFIGURED_status_text": "Initialiserer",
+ "INITIALIZED": "Initialiseringen er fuldført",
+ "INITIALIZED_status_text": "Enheden er klar til brug",
+ "INTERVIEW_COMPLETE": "Interview fuldført",
+ "INTERVIEW_COMPLETE_status_text": "Konfigurerer",
+ "PAIRED": "Enhed fundet",
+ "PAIRED_status_text": "Starter Interview"
+ },
+ "group_binding": {
+ "bind_button_help": "Sammenføj den valgte gruppe med de valgte enhedsklynger.",
+ "bind_button_label": "Sammenføj gruppe",
+ "cluster_selection_help": "Vælg klynger, der skal sammenføjes med den valgte gruppe.",
+ "group_picker_help": "Vælg en gruppe for at udstede en sammenføjningskommando.",
+ "group_picker_label": "Sammenføjbare grupper",
+ "header": "Gruppesammenføjning",
+ "introduction": "Sammenføj og fjern sammenføjning af grupper.",
+ "unbind_button_help": "Fjern sammenføjningen af den valgte gruppe med de valgte enhedsklynger.",
+ "unbind_button_label": "Fjern sammenføjning af gruppe"
+ },
+ "groups": {
+ "add_group": "Tilføj gruppe",
+ "add_members": "Tilføj medlemmer",
+ "caption": "Grupper",
+ "create": "Opret gruppe",
+ "create_group": "Zigbee Home Automation - Opret gruppe",
+ "create_group_details": "Indtast de nødvendige oplysninger for at oprette en ny ZigBee-gruppe",
+ "creating_group": "Opretter gruppe",
+ "delete": "Slet gruppe",
+ "group_details": "Her er alle detaljer for den valgte Zigbee-gruppe.",
+ "group_id": "Gruppe-id",
+ "group_info": "Gruppeoplysninger",
+ "group_name_placeholder": "Gruppenavn",
+ "group_not_found": "Gruppen blev ikke fundet!",
+ "groups": "Grupper",
+ "members": "Medlemmer",
+ "remove_members": "Fjern medlemmer",
+ "removing_members": "Fjerner medlemmer"
+ },
+ "network": {
+ "caption": "Netværk"
+ },
+ "visualization": {
+ "auto_zoom": "Zoom automatisk",
+ "caption": "Visualisering",
+ "header": "Netværksvisualisering",
+ "highlight_label": "Fremhæv Enheder",
+ "refresh_topology": "Opdater topologi",
+ "zoom_label": "Zoom til enhed"
+ }
+ },
+ "zone": {
+ "add_zone": "Tilføj zone",
+ "caption": "Zoner",
+ "configured_in_yaml": "Zoner der er konfigureret via configuration.yaml, kan ikke redigeres via brugerfladen.",
+ "confirm_delete": "Er du sikker på, at du vil slette denne zone?",
+ "create_zone": "Opret zone",
+ "description": "Administrer de zoner, du ønsker at spore personer i.",
+ "detail": {
+ "create": "Opret",
+ "delete": "Slet",
+ "icon": "Ikon",
+ "icon_error_msg": "Ikonet skal være i formatet \"præfiks:ikonnavn\", for eksempel: \"mdi:home\"",
+ "latitude": "Breddegrad",
+ "longitude": "Længdegrad",
+ "name": "Navn",
+ "new_zone": "Ny zone",
+ "passive": "Passiv",
+ "passive_note": "Passive zoner er skjult i brugerfladen og bruges ikke som lokalitet for enhedssporere. Dette er nyttigt, hvis du bare vil bruge dem til automatiseringer.",
+ "radius": "Radius",
+ "required_error_msg": "Dette felt er påkrævet",
+ "update": "Opdater"
+ },
+ "edit_home_zone": "Radius af hjemzonen kan ikke redigeres fra brugerfladen endnu. Træk markøren på kortet for at flytte hjemmezonen.",
+ "edit_home_zone_narrow": "Radius af hjemmezonen kan ikke redigeres fra brugerfladen endnu. Lokaliteten kan ændres fra den generelle konfiguration.",
+ "edit_zone": "Rediger zone",
+ "go_to_core_config": "Gå til generel konfiguration?",
+ "home_zone_core_config": "Lokaliteten af din hjemmezone kan redigeres fra den generelle konfigurationsside. Radius af hjemmezonen kan ikke redigeres fra brugerfladen endnu. Vil du gå til den generelle konfiguration?",
+ "introduction": "Zoner giver dig mulighed for at angive bestemte områder på jorden. Når en person er inden for en zone, vil tilstanden antage navnet fra zonen. Zoner kan også bruges som udløser eller tilstand inde i automatiseringsopsætninger.",
+ "no_zones_created_yet": "Det ser ud til, at du ikke har oprettet nogen zoner endnu."
+ },
+ "zwave": {
+ "common": {
+ "index": "Indeks",
+ "instance": "Instans",
+ "unknown": "ukendt",
+ "value": "Værdi",
+ "wakeup_interval": "Vækningsinterval"
+ },
+ "description": "Administrer dit Z-Wave-netværk",
+ "learn_more": "Lær mere om Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "Migrer til OpenZWave",
+ "introduction": "Denne guide hjælper dig med at migrere fra den tidligere Z-Wave-integration til OpenZWave-integrationen, der i øjeblikket er i betaversion."
+ },
+ "zwave_js": {
+ "header": "Migrer til Z-Wave JS",
+ "introduction": "Denne integration vedligeholdes ikke længere, og vi anbefaler at migrere til den nye Z-Wave JS-integration. Denne guide hjælper dig med at migrere fra den ældre Z-Wave-integration til den nye Z-Wave JS-integration."
+ }
+ },
+ "network_management": {
+ "header": "Administration af Z-Wave-netværk",
+ "introduction": "Kør kommandoer, der påvirker Z-Wave-netværket. Du får ikke feedback på, om de fleste kommandoer lykkedes, men du kan kontrollere OZW-loggen for at forsøge at finde ud af det."
+ },
+ "network_status": {
+ "network_started": "Z-Wave-netværk startet",
+ "network_started_note_all_queried": "Alle knudepunkter er blevet forespurgt.",
+ "network_started_note_some_queried": "Vågne knudepunkter er blevet forespurgt. Sovende knudepunkter vil blive forespurgt, når de vågner.",
+ "network_starting": "Starter Z-Wave-netværk…",
+ "network_starting_note": "Dette kan tage et stykke tid, afhængigt af netværkets størrelse.",
+ "network_stopped": "Z-Wave-netværk stoppet"
+ },
+ "node_config": {
+ "config_parameter": "Konfigurationsparameter",
+ "config_value": "Konfigurationsværdi",
+ "false": "Falsk",
+ "header": "Knudepunktskonfiguration",
+ "seconds": "sekunder",
+ "set_config_parameter": "Indstil konfigurationsparameter",
+ "set_wakeup": "Indstil vækningsinterval",
+ "true": "Sandt"
+ },
+ "node_management": {
+ "add_to_group": "Føj til gruppe",
+ "entities": "Entities fra dette knudepunkt",
+ "entity_info": "Entitetsoplysninger",
+ "exclude_entity": "Ekskluder denne entitet fra Home Assistant",
+ "group": "Gruppe",
+ "header": "Administration af Z-Wave-knudepunkter",
+ "introduction": "Udfør Z-Wave-kommandoer, der påvirker det enkelte knudepunkt. Vælg et knudepunkt for at se en liste over tilgængelige kommandoer.",
+ "max_associations": "Maks tilknytninger:",
+ "node_group_associations": "Knudepunktsgruppe-tilknytninger",
+ "node_protection": "Knudepunktsbeskyttelse",
+ "node_to_control": "Knudepunkt, der skal styres",
+ "nodes": "Knudepunkter",
+ "nodes_hint": "Vælg knudepunkt for at få vist knudepunkts-specifikke muligheder",
+ "nodes_in_group": "Andre knudepunkter i denne gruppe:",
+ "pooling_intensity": "Forespørgselsintensitet",
+ "protection": "Beskyttelse",
+ "remove_broadcast": "Fjern udsendelse",
+ "remove_from_group": "Fjern knudepunkt fra gruppe",
+ "set_protection": "Angiv beskyttelse"
+ },
+ "ozw_log": {
+ "header": "OZW-log",
+ "introduction": "Se loggen. 0 er minimum (indlæser hele loggen) og 1000 er maksimum. Indlæsning viser en statisk log, og enden opdateres automatisk med det sidst specificerede antal linjer i loggen.",
+ "last_log_lines": "Antal sidste loglinjer",
+ "load": "Indlæs",
+ "tail": "Hale"
+ },
+ "services": {
+ "add_node": "Tilføj knudepunkt",
+ "add_node_secure": "Tilføj sikkert knudepunkt",
+ "cancel_command": "Annuller kommando",
+ "heal_network": "Helbred netværk",
+ "heal_node": "Helbred knudepunkt",
+ "node_info": "Oplysninger om knudepunkt",
+ "print_node": "Udskriv node",
+ "refresh_entity": "Opdater entitet",
+ "refresh_node": "Opdater knudepunkt",
+ "remove_failed_node": "Fjern knudepunkt med problemer",
+ "remove_node": "Fjern knudepunkt",
+ "replace_failed_node": "Erstat knudepunkt med problemer",
+ "save_config": "Gem konfiguration",
+ "soft_reset": "Blød nulstilling",
+ "start_network": "Start netværk",
+ "stop_network": "Stop netværk",
+ "test_network": "Test netværk",
+ "test_node": "Test knudepunt"
+ },
+ "values": {
+ "header": "Knudepunktsværdier"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Afbryd inklusionstilstand",
+ "check_logs": "Kontroller logfilerne for at få flere oplysninger.",
+ "choose_inclusion_strategy": "Hvordan vil du tilføje din enhed",
+ "controller_in_inclusion_mode": "Din Z-Wave-controller er nu i inklusionstilstand.",
+ "enter_qr_code": "Indtast QR-kodeværdi",
+ "follow_device_instructions": "Følg instruktionerne, der fulgte med din enhed for at starte parring af enheden.",
+ "inclusion_failed": "Enheden kunne ikke tilføjes.",
+ "inclusion_finished": "Enheden er blevet tilføjet.",
+ "interview_failed": "Forespørgsel af enheden er mislykkedes. Der kan være yderligere oplysninger i logfilerne.",
+ "interview_started": "Enheden forespørges. Dette kan tage noget tid.",
+ "introduction": "Denne guide hjælper dig med at føje en node til dit Z-Wave-netværk.",
+ "provisioning_finished": "Enheden er blevet tilføjet. Når du tænder for den, bliver den tilgængelig.",
+ "qr_code": "QR kode",
+ "qr_code_paragraph": "Hvis din enhed understøtter SmartStart, kan du scanne QR-koden for nem parring.",
+ "scan_qr_code": "Scan QR-kode",
+ "searching_device": "Søger efter enhed",
+ "secure_inclusion_warning": "Sikre enheder kræver ekstra båndbredde. For mange sikre enheder kan gøre dit Z-Wave-netværk langsomt. Det anbefaler kun at bruge sikker inklusion til de enheder, hvor det er nødvendigt. For eksempel til låse eller garageportåbnere.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Eksempel: Ældre dørlåse uden S2-understøttelse",
+ "title": "S0 Legacy"
+ },
+ "S2_AccessControl": {
+ "description": "Eksempel: Dørlåse og garageporte",
+ "title": "S2 Adgangskontrol"
+ },
+ "S2_Authenticated": {
+ "description": "Eksempel: Lys, sensorer og sikkerhedssystemer",
+ "title": "S2 Authenticated"
+ },
+ "S2_Unauthenticated": {
+ "description": "Som S2 Authenticated, men uden bekræftelse på, at den korrekte enhed er inkluderet",
+ "title": "S2 Unauthenticated"
+ }
+ },
+ "select_camera": "Vælg kamera",
+ "start_inclusion": "Start inklusionstilstand",
+ "start_secure_inclusion": "Start sikker inklusionstilstand",
+ "title": "Tilføj en Z-Wave-enhed",
+ "use_secure_inclusion": "Brug sikker inklusionstilstand",
+ "view_device": "Vis enhed"
+ },
+ "common": {
+ "add_node": "Tilføj enhed",
+ "back": "Tilbage",
+ "close": "Luk",
+ "heal_network": "Helbred netværk",
+ "home_id": "Hjem-id",
+ "network": "Netværk",
+ "node_id": "Enheds-id",
+ "reconfigure_server": "Konfigurer serveren igen",
+ "remove_node": "Fjern enhed",
+ "source": "Kilde"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n one {enhed}\n other {enheder}\n}",
+ "driver_version": "Driverversion",
+ "dump_dead_nodes_text": "Nogle af dine enheder svarede ikke og antages at være døde. De vil ikke blive eksporteret.",
+ "dump_dead_nodes_title": "Nogle af dine enheder er døde",
+ "dump_debug": "Download data",
+ "dump_not_ready_confirm": "Hent",
+ "dump_not_ready_text": "Hvis du opretter en eksport, mens ikke alle enheder er klar, kan du gå glip af nødvendige data. Giv netværket lidt tid til at forespørge på alle enheder. Vil du fortsætte med eksporten?",
+ "dump_not_ready_title": "Ikke alle enheder er klar endnu",
+ "header": "Administrer dit Z-Wave-netværk",
+ "home_id": "Hjem-id",
+ "introduction": "Administrer dit Z-Wave-netværk og Z-Wave-enheder",
+ "nodes_ready": "Enheder er klar",
+ "not_ready": "{count} ikke klar",
+ "provisioned_devices": "Tildelte enheder",
+ "server_url": "Server-URL",
+ "server_version": "Serverversion"
+ },
+ "device_info": {
+ "device_config": "Konfigurer enhed",
+ "heal_node": "Helbred enhed",
+ "highest_security": "Højeste sikkerhed",
+ "is_secure": "Sikker",
+ "node_ready": "Enhed klar",
+ "node_status": "Enhedsstatus",
+ "reinterview_device": "Gentag forespørgsel af en Z-Wave enhed",
+ "remove_failed": "Fjern fejlbehæftet enhed",
+ "unknown": "Ukendt",
+ "zwave_info": "Z-Wave-info",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Version {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "Netværkshelbredelsen er blevet afbrudt.",
+ "healing_complete": "Netværkshelbredelsen er færdig.",
+ "healing_failed": "Helbredelse mislykkedes. Yderligere oplysninger kan evt. findes i logfilerne.",
+ "in_progress": "Netværkshelbredelse er i gang. Dette vil tage noget tid.",
+ "introduction": "Start en helbredelse af dit Z-Wave-netværk. En netværkshelbredelse vil få alle enheder til at genberegne deres ruter tilbage til controlleren . Dette anbefales, hvis du for nylig har flyttet enheder eller din controller.",
+ "run_in_background": "Du kan lukke dette vindue, og netværkshelbredelsen vil fortsætte i baggrunden.",
+ "start_heal": "Start helbredelse",
+ "stop_heal": "Stop helbredelsen",
+ "title": "Helbred dit Z-Wave-netværk",
+ "traffic_warning": "Helbredelsen medfører stor trafik på Z-Wave-netværket. Dette kan få enheder til at reagere langsomt (eller slet ikke), mens helbredelsen er i gang."
+ },
+ "heal_node": {
+ "healing_complete": "{device} er helbredt.",
+ "healing_failed": "{device} kunne ikke helbredes.",
+ "healing_failed_check_logs": "Yderligere oplysninger kan være tilgængelige i logfilerne.",
+ "in_progress": "Helbredelse af {device} er i gang.",
+ "introduction": "Bed {device} om at opdatere sine ruter tilbage til controlleren. Dette kan hjælpe med kommunikationsproblemer, hvis du for nylig har flyttet enheden eller controlleren.",
+ "network_heal_in_progress": "En helbredelse af dit Z-Wave-netværk er allerede i gang. Vent til den er færdig, før du helbreder en individuel enhed.",
+ "start_heal": "Helbred enhed",
+ "title": "Helbred en Z-Wave-enhed",
+ "traffic_warning": "Helbredelsen medfører stor trafik på Z-Wave-netværket. Dette kan få enheder til at reagere langsomt (eller slet ikke), mens helbredelsen er i gang."
+ },
+ "logs": {
+ "download_logs": "Download logfiler",
+ "log_level": "Log niveau",
+ "log_level_changed": "Logniveauet er ændret til: {level}",
+ "subscribed_to_logs": "Abonnerer på Z-Wave JS-logbeskeder...",
+ "title": "Z-Wave JS-logfiler"
+ },
+ "navigation": {
+ "logs": "Logfiler",
+ "network": "Netværk"
+ },
+ "network_status": {
+ "connected": "Forbundet",
+ "connecting": "Forbinder",
+ "unknown": "Ukendt"
+ },
+ "node_config": {
+ "attribution": "Enheds konfigurations parametre og beskrivelser leveres af {device_database}",
+ "battery_device_notice": "Batterienheder skal være tændt for at opdatere deres konfiguration. Se din enhedsmanual for instruktioner om, hvordan du tænder enheden.",
+ "error_device_not_found": "Enhed blev ikke fundet",
+ "header": "Konfiguration af Z-Wave-enhed",
+ "introduction": "Administrer og juster enhedsspecifikke konfigurationsparametre for den valgte enhed",
+ "parameter": "Parameter",
+ "parameter_is_read_only": "Denne parameter er skrivebeskyttet.",
+ "set_param_accepted": "Parameteren er blevet opdateret.",
+ "set_param_error": "Der opstod en fejl",
+ "set_param_queued": "Parameterændringen er sat i kø, og vil blive udført når enheden vågner",
+ "zwave_js_device_database": "Z-Wave JS-enhedsdatabasen"
+ },
+ "node_status": {
+ "alive": "I live",
+ "asleep": "Dvale",
+ "awake": "Vågen",
+ "dead": "Død",
+ "unknown": "Ukendt"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "Hvis du ophæver tildelingen af enheden, vil den ikke blive tilføjet til Home Assistant, når den tændes. Hvis den allerede er tilføjet til Home Assistant, fjernes den ikke fra Home Assistant, hvis du fjerner den tildelte enhed.",
+ "confirm_unprovision_title": "Er du sikker på, at du vil fjerne tildelingen af enheden?",
+ "dsk": "DSK",
+ "included": "Inkluderet",
+ "not_included": "Ikke inkluderet",
+ "security_classes": "Sikkerhedsklasser",
+ "unprovison": "Fjern tildeling"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "Du skal vække batteridrevne enheder, inden du starter forespørgslen. Se enhedens manual for instruktioner om, hvordan du vækker enheden.",
+ "in_progress": "Enheden forespørges. Dette kan tage noget tid.",
+ "interview_complete": "Enhedsinformationsudveksling er færdig",
+ "interview_failed": "Forespørgsel af enheden er mislykkedes. Der kan være yderligere oplysninger i logfilerne.",
+ "introduction": "Gentag forespørgsel af en enhed på dit Z-Wave-netværk. Brug denne funktion, hvis enheden har manglende eller forkert funktionalitet.",
+ "run_in_background": "Du kan lukke denne dialog og forespørgslen fortsætter i baggrunden.",
+ "start_reinterview": "Gentag forespørgsel",
+ "title": "Gentag forespørgsel af en Z-Wave enhed"
+ },
+ "remove_failed_node": {
+ "in_progress": "Fjernelse af enheden er i gang.",
+ "introduction": "Fjern en fejlbehæftet enhed fra dit Z-Wave-netværk. Brug denne funktion, hvis du ikke kan udelukke en enhed normalt, fordi den er defekt.",
+ "removal_failed": "Enheden kunne ikke fjernes fra dit Z-Wave-netværk.",
+ "removal_finished": "Enheden {id} er fjernet fra dit Z-Wave-netværk.",
+ "remove_device": "Fjern enhed",
+ "title": "Fjern en mislykket Z-Wave-enhed"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Annuller udelukkelse",
+ "controller_in_exclusion_mode": "Din Z-Wave-controller er nu i eksklusionstilstand.",
+ "exclusion_failed": "Enheden kunne ikke fjernes. Se i logfilerne for at få flere oplysninger.",
+ "exclusion_finished": "Enhed {id} er fjernet fra dit Z-Wave-netværk.",
+ "follow_device_instructions": "Følg de anvisninger, der fulgte med enheden, for at foretage eksklusion på enheden.",
+ "introduction": "Fjern en enhed fra dit Z-Wave-netværk, og fjern den tilknyttede enhed og entiteter fra Home Assistant.",
+ "start_exclusion": "Start udelukkelse",
+ "title": "Fjern en Z-Wave-enhed"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Ingen"
+ },
+ "S0_Legacy": {
+ "description": "Eksempel: Ældre dørlåse uden S2-understøttelse",
+ "title": "S0 Legacy"
+ },
+ "S2_AccessControl": {
+ "description": "Eksempel: Dørlåse og garageporte",
+ "title": "S2 Adgangskontrol"
+ },
+ "S2_Authenticated": {
+ "description": "Eksempel: Lys, sensorer og sikkerhedssystemer",
+ "title": "S2 Authenticated"
+ },
+ "S2_Unauthenticated": {
+ "description": "Som S2 Authenticated, men uden bekræftelse på, at den korrekte enhed er inkluderet",
+ "title": "S2 Unauthenticated"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Det vil have adgang til alle data i Home Assistant.",
+ "hide_message": "Kontroller dokumentationen for panel_custom-komponenten for at skjule denne meddelelse",
+ "question_trust": "Har du tillid til det eksterne panel {name} på {link}?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Aktive lyttere",
+ "alert_event_type": "Hændelsestype er et obligatorisk felt",
+ "available_events": "Tilgængelige hændelser",
+ "count_listeners": " ({count} lyttere)",
+ "data": "Hændelsesdata (YAML, valgfrit)",
+ "description": "Afsend en hændelse til Home Assistant-hændelses-bussen.",
+ "documentation": "Dokumentationen til hændelser",
+ "event_fired": "Hændelse {name} afsendt",
+ "fire_event": "Afsend hændelse",
+ "listen_to_events": "Lyt til hændelser",
+ "listening_to": "Lytter til",
+ "notification_event_fired": "Hændelse {type} blev afsendt!",
+ "start_listening": "Start med at lytte",
+ "stop_listening": "Stop med at lytte",
+ "subscribe_to": "Hændelse at abonnere på",
+ "title": "Hændelser",
+ "type": "Hændelsestype"
+ },
+ "services": {
+ "accepts_target": "Et mål for denne tjeneste kan angives, for eksempel: `entity_id: light.bed_light`",
+ "all_parameters": "Alle tilgængelige parametre",
+ "call_service": "Kald tjeneste",
+ "column_description": "Beskrivelse",
+ "column_example": "Eksempel",
+ "column_parameter": "Parameter",
+ "description": "Tjenesteværktøjet til udviklere giver dig mulighed for at kalde alle tilgængelige tjenester i Home Assistant.",
+ "fill_example_data": "Udfyld eksempeldata",
+ "no_template_ui_support": "Brugergrænsefladen understøtter ikke skabeloner, du kan stadig bruge YAML-editoren.",
+ "title": "Tjenester",
+ "ui_mode": "Gå til brugergrænsefladetilstand",
+ "yaml_mode": "Gå til YAML-tilstand",
+ "yaml_parameters": "Parametre er kun tilgængelige i YAML-tilstand"
+ },
+ "states": {
+ "alert_entity_field": "Entitet er et obligatorisk felt",
+ "attributes": "Egenskaber",
+ "copy_id": "Kopier ID til Udklipsholder",
+ "current_entities": "Aktuelle entiteter",
+ "description1": "Tilpas tilstanden for en enhed i Home Assistant.",
+ "description2": "Dette vil ikke kommunikere med den faktiske enhed.",
+ "entity": "Entitet",
+ "filter_attributes": "Filtrer egenskaber",
+ "filter_entities": "Filtrer entiteter",
+ "filter_states": "Filtrer tilstande",
+ "last_changed": "Sidst ændret",
+ "last_updated": "Sidst opdateret",
+ "more_info": "Mere information",
+ "no_entities": "Ingen entiteter",
+ "set_state": "Sæt tilstand",
+ "state": "Tilstand",
+ "state_attributes": "Tilstandsegenskaber (YAML, valgfri)",
+ "title": "Tilstande"
+ },
+ "statistics": {
+ "entity": "Entitet",
+ "fix_issue": {
+ "fix": "Løs problem",
+ "units_changed": {
+ "clear": "Slet alle gamle statistiske data for denne entitet",
+ "fix": "Løs problem",
+ "title": "Enheden for denne entitet er ændret",
+ "update": "Opdater de historiske statistiske værdier fra ''{metadata_unit}'' til ''{state_unit}''"
+ }
+ },
+ "issue": "Problem",
+ "issues": {
+ "entity_no_longer_recorded": "Der registreres ikke længere historik for denne entitet.",
+ "entity_not_recorded": "Der registreres ikke historik for denne entitet.",
+ "no_state": "Der er ingen tilstand tilgængelig for denne entitet.",
+ "units_changed": "Enheden for denne entitet blev ændret fra ''{metadata_unit}'' til ''{state_unit}''.",
+ "unsupported_state_class": "Tilstandsklassen ''{state_class}'' for denne entitet understøttes ikke.",
+ "unsupported_unit": "Enheden ('' {state_unit} '') for denne entitet matcher ikke en enhed af enhedsklassen '' {device_class} ''.",
+ "unsupported_unit_metadata": "Enheden (''{metadata_unit}'') i den gemte historik matcher ikke den understøttede enhed ''{supported_unit}'' af enhedsklassen ''{device_class}''.",
+ "unsupported_unit_state": "Enheden (''{state_unit}'') for denne entitet matcher ikke en enhed af enhedsklassen ''{device_class}''."
+ },
+ "no_issue": "Intet problem",
+ "title": "Statistik"
+ },
+ "templates": {
+ "all_listeners": "Denne skabelon lytter til alle ændringer til tilstande",
+ "description": "Skabeloner gengives ved hjælp af Jinja2-skabelonmotoren med nogle Home Assistant-specifikke udvidelser.",
+ "domain": "Domæne",
+ "editor": "Skabelonredigering",
+ "entity": "Entitet",
+ "jinja_documentation": "Jinja2-skabelon-dokumentation",
+ "listeners": "Denne skabelon lytter efter følgende ændrede tilstande:",
+ "no_listeners": "Denne skabelon lytter ikke til nogen begivenheder og opdateres ikke automatisk.",
+ "reset": "Nulstil til demo-skabelon",
+ "result_type": "Resultattype",
+ "template_extensions": "Skabelon-udvidelser til Home Assistant",
+ "time": "Denne skabelon opdateres hvert minut",
+ "title": "Skabelon",
+ "unknown_error_template": "Ukendt fejl ved gengivelse af skabelon"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Overvåg individuelle enheder",
+ "energy_distribution_title": "Energidistribution",
+ "energy_gas_graph_title": "Gasforbrug",
+ "energy_solar_graph_title": "Solenergiproduktion",
+ "energy_sources_table_title": "Kilder",
+ "energy_usage_graph_title": "Energiforbrug"
+ },
+ "charts": {
+ "by_device": "Forbrug pr. enhed",
+ "solar": "Solceller",
+ "stat_house_energy_meter": "Samlet energiforbrug"
+ },
+ "setup": {
+ "back": "Tilbage",
+ "done": "Vis mit energi-betjeningspanel",
+ "next": "Næste"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Du kan kun bruge denne funktion, når du har taget kontrol over Lovelace-brugerfladen.",
+ "saving_failed": "Det lykkedes ikke at gemme Lovelace-brugerfladekonfiguration.",
+ "yaml_unsupported": "Du kan ikke bruge denne funktion, når du bruger Lovelace-brugerfladen i YAML-tilstand."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Er du sikker på, at du vil afvikle handlingen \"{action} \"?",
+ "no_entity_more_info": "Der er ikke angivet en entitet til visning af dialogboksen med flere oplysninger",
+ "no_entity_toggle": "Der er ikke angivet en entitet, som skal slås til/fra",
+ "no_navigation_path": "Der er ikke angivet nogen navigationssti",
+ "no_service": "Der er ikke angivet en tjeneste, som skal afvikles",
+ "no_url": "Der er ikke angivet en URL-adresse, der skal åbnes"
+ },
+ "confirm_delete": "Er du sikker på, at du vil slette dette kort?",
+ "empty_state": {
+ "go_to_integrations_page": "Gå til integrationssiden.",
+ "no_devices": "Denne side giver dig mulighed for at styre dine enheder, men det ser ud til, at du endnu ikke har konfigureret enheder. Gå til integrationssiden for at komme i gang.",
+ "title": "Velkommen hjem"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "Dette kort angiver, hvor meget af den energi, der forbruges af dit hjem, der blev genereret ved hjælp af ikke-fossile brændstoffer som sol, vind og atomkraft. Jo højere, jo bedre!",
+ "non_fossil_energy_consumed": "Ikke-fossil energi forbrugt",
+ "non_fossil_energy_not_calculated": "Forbrugt ikke-fossil energi kunne ikke beregnes"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Energiforbrug"
+ },
+ "energy_distribution": {
+ "battery": "Batteri",
+ "gas": "Gas",
+ "go_to_energy_dashboard": "Gå til energi-betjeningspanelet",
+ "grid": "Elnet",
+ "home": "Hjem",
+ "non_fossil": "Ikke-fossilt",
+ "solar": "Sol",
+ "title_today": "Energidistribution i dag"
+ },
+ "energy_solar_graph": {
+ "forecast": "Prognose {name}",
+ "production": "Produktion {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Batteritotal",
+ "cost": "Pris",
+ "energy": "Energi",
+ "grid_total": "Total elnet",
+ "source": "Kilde",
+ "total_costs": "Samlet pris"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Kombineret fra elnettet",
+ "consumed_battery": "Forbrugt batteri",
+ "consumed_solar": "Forbrugt solenergi",
+ "total_consumed": "Forbrugt i alt {num} kWh",
+ "total_returned": "Eksporteret i alt {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Hvis nålen er i lilla, eksporterede du mere energi til elnettet, end du brugte fra det. Hvis den er i det blå, brugte du mere energi fra elnettet, end du eksporterede.",
+ "energy_dependency": "Dette kort angiver dit nettoenergiforbrug.",
+ "grid_neutrality_not_calculated": "Elnets-neutralitet kunne ikke udregnes",
+ "net_consumed_grid": "Nettoforbrug fra elnettet",
+ "net_returned_grid": "Netto eksporteret til elnettet",
+ "red_green_color_explain": "Hvis den er grøn, betyder det, at du har produceret mere energi, end du har forbrugt fra elnettet. Hvis den er rød, betyder det, at du har været afhængig af elnettet for en del af dit energiforbrug i hjemmet."
+ },
+ "loading": "Indlæser...",
+ "no_data": "Der er ingen data at vise. Det kan tage op til 2 timer, før der kommer nye data, efter at du har konfigureret dit energibetjeningspanel.",
+ "no_data_period": "Der er ingen data for denne periode.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "Dette kort angiver, hvor meget af den solenergi, du har produceret, der blev brugt i dit hjem i stedet for at blive eksporteret til elnettet.",
+ "card_indicates_solar_energy_used_charge_home_bat": "Hvis dette tal typisk er meget lavt, hvilket indikerer overskydende solproduktion, kan du overveje at oplade et hjemmebatteri eller elbil fra dine solpaneler i perioder med høj solproduktion.",
+ "not_produced_solar_energy": "Du har ikke produceret noget solenergi",
+ "self_consumed_solar_could_not_calc": "Egenforbrugt solenergi kunne ikke beregnes",
+ "self_consumed_solar_energy": "Egenforbrugt solenergi"
+ }
+ },
+ "entities": {
+ "never_triggered": "Aldrig udløst"
+ },
+ "iframe": {
+ "error_secure_context": "Kan ikke indlæse iframes, der peger på websteder, der bruger {target_protocol} hvis Home Assistant kører med {context_protocol} ."
+ },
+ "map": {
+ "reset_focus": "Nulstil fokus"
+ },
+ "picture-elements": {
+ "call_service": "Kald tjeneste {name}",
+ "hold": "Hold:",
+ "more_info": "Vis mere info: {name}",
+ "navigate_to": "Naviger til {location}",
+ "tap": "Tryk på:",
+ "toggle": "Skift {name}",
+ "url": "Åbn vindue til {url_path}"
+ },
+ "safe-mode": {
+ "description": "Home Assistant løb ind i problemer indlæsningen af din konfiguration, og kører nu i fejlsikret tilstand. Se på fejlloggen for at se, hvad der gik galt.",
+ "header": "Fejlsikret tilstand aktiveret"
+ },
+ "shopping-list": {
+ "add_item": "Tilføj element",
+ "checked_items": "Markerede elementer",
+ "clear_items": "Ryd markerede elementer",
+ "drag_and_drop": "Træk og slip",
+ "reorder_items": "Omarranger varer"
+ },
+ "show_more_info": "Vis flere oplysninger",
+ "starting": {
+ "description": "Home Assistant starter. Vent venligst."
+ }
+ },
+ "changed_toast": {
+ "message": "Lovelace-brugerfladekonfigurationen for dette betjeningspanel blev opdateret. Vil du genindlæse?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Dag",
+ "month": "Måned",
+ "next": "Næste",
+ "previous": "Forrige",
+ "today": "I dag",
+ "week": "Uge",
+ "year": "År"
+ },
+ "timestamp-display": {
+ "invalid": "Ugyldigt tidsstempel",
+ "invalid_format": "Ugyldigt visningsformat"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Kald tjeneste",
+ "default_action": "Standardhandling",
+ "more-info": "Mere info",
+ "navigate": "Naviger",
+ "none": "Ingen handling",
+ "toggle": "Skift",
+ "url": "Webadresse"
+ },
+ "navigation_path": "Navigationssti",
+ "url_path": "Webadresse"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Tilgængelige tilstande",
+ "description": "Alarmpanelkortet giver dig mulighed for at aktivere og deaktivere alarmkontrolpanelets integrationer.",
+ "name": "Alarmpanel"
+ },
+ "area": {
+ "description": "Kortet Område viser automatisk entiteter i et bestemt område.",
+ "name": "Område",
+ "show_camera": "Vis kamerafeed i stedet for områdebillede"
+ },
+ "button": {
+ "default_action_help": "Standardhandlingen afhænger af entitetens muligheder. Den skifter enten tilstand eller flere oplysninger vises.",
+ "description": "Med knapkortet kan du tilføje knapper til at udføre opgaver.",
+ "name": "Knap"
+ },
+ "calendar": {
+ "calendar_entities": "Kalenderentiteter",
+ "description": "Kalenderkortet viser en kalender med dag-, uge- og listevisninger",
+ "inital_view": "Indledende visning",
+ "name": "Kalender",
+ "views": {
+ "dayGridDay": "Dag",
+ "dayGridMonth": "Måned",
+ "listWeek": "Liste"
+ }
+ },
+ "conditional": {
+ "card": "Kort",
+ "change_type": "Skift type",
+ "condition_explanation": "Kortet vises, når ALLE nedenstående betingelser er opfyldt.",
+ "conditions": "Betingelser",
+ "current_state": "aktuelle",
+ "description": "Betinget-kortet viser et andet kort baseret på entitetstilstande.",
+ "name": "Betinget",
+ "state_equal": "Tilstand er lig med",
+ "state_not_equal": "Tilstand er ikke lig med"
+ },
+ "config": {
+ "optional": "valgfrit",
+ "required": "påkrævet"
+ },
+ "entities": {
+ "description": "Entiteter-kortet er det mest almindelige type kort. Det grupperer elementer på lister.",
+ "edit_special_row": "Se detaljerne for denne række ved at klikke på Rediger knappen",
+ "entity_row": {
+ "attribute": "Attribut",
+ "button": "Knap",
+ "buttons": "Knapper",
+ "call-service": "Kald tjeneste",
+ "cast": "Cast",
+ "conditional": "Betinget",
+ "divider": "Opdeler",
+ "section": "Afsnit",
+ "weblink": "Weblink"
+ },
+ "entity_row_editor": "Rediger entitetsrække",
+ "name": "Entiteter",
+ "secondary_info_values": {
+ "brightness": "Lysstyrke",
+ "entity-id": "Entitets-id",
+ "last-changed": "Senest ændret",
+ "last-triggered": "Sidst udløst",
+ "last-updated": "Sidst opdateret",
+ "none": "Ingen sekundære oplysninger",
+ "position": "Position",
+ "tilt-position": "Vippeposition"
+ },
+ "show_header_toggle": "Vis omskifter ved overskrift?",
+ "special_row": "speciel række",
+ "toggle": "Til/fra entiteter."
+ },
+ "entity-filter": {
+ "description": "Entitetsfilterkortet giver dig mulighed for at definere en liste af entiteter, du kun vil vise, når en bestemt tilstand er tilstede.",
+ "name": "Entitetsfilter"
+ },
+ "entity": {
+ "description": "Entitetskortet giver dig et hurtigt overblik over din entitets tilstand.",
+ "name": "Entitet"
+ },
+ "gauge": {
+ "description": "Målerkortet er et basalt kort, der gør det muligt visuelt at se sensordata.",
+ "name": "Måler",
+ "needle_gauge": "Vis som nåleindikator?",
+ "severity": {
+ "define": "Definer alvorlighed?",
+ "green": "Grøn",
+ "red": "Rød",
+ "yellow": "Gul"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Størrelsesforhold",
+ "attribute": "Egenskab",
+ "camera_image": "Kameraentitet",
+ "camera_view": "Kameravisning",
+ "days_to_show": "Dage, der skal vises",
+ "double_tap_action": "Handling ved dobbelttryk",
+ "entities": "Entiteter",
+ "entity": "Entitet",
+ "hold_action": "Handling ved hold",
+ "hours_to_show": "Vis i antal timer",
+ "icon": "Ikon",
+ "icon_height": "Ikonhøjde",
+ "image": "Sti til billede",
+ "manual": "Manuel",
+ "manual_description": "Har du brug for at tilføje et brugerdefineret kort eller bare manuelt skrive YAML?",
+ "maximum": "Maksimum",
+ "minimum": "Minimum",
+ "name": "Navn",
+ "no_theme": "Intet tema",
+ "refresh_interval": "Opdateringsinterval",
+ "search": "Søg",
+ "secondary_info_attribute": "Sekundær info-egenskab",
+ "show_icon": "Vis ikon?",
+ "show_name": "Vis navn?",
+ "show_state": "Vis tilstand?",
+ "state": "Tilstand",
+ "state_color": "Farvelæg ikoner baseret på tilstand?",
+ "tap_action": "Handling ved tryk",
+ "theme": "Tema",
+ "title": "Titel",
+ "unit": "Måleenhed",
+ "url": "Webadresse"
+ },
+ "glance": {
+ "columns": "Kolonner",
+ "description": "Blik-kortet er nyttigt til at gruppere flere sensorer i en kompakt oversigt.",
+ "name": "Blik"
+ },
+ "grid": {
+ "columns": "Kolonner",
+ "description": "Gitterkortet giver dig mulighed for at vise flere kort i et gitter.",
+ "name": "Gitter",
+ "square": "Vis kort som kvadrater"
+ },
+ "history-graph": {
+ "description": "Historikgraf-kortet kan vise en graf for hver af de anførte entiteter.",
+ "name": "Historikgraf"
+ },
+ "horizontal-stack": {
+ "description": "Vandret stak-kortet giver dig mulighed for at stable flere kort sammen, så de altid sidder ved siden af hinanden i en kolonne.",
+ "name": "Vandret stak"
+ },
+ "humidifier": {
+ "description": "Luftfugterkortet giver kontrol over din luftfugterentitet. Kortet giver dig mulighed for at ændre entitetens fugtighed og tilstand.",
+ "name": "Luftfugter"
+ },
+ "iframe": {
+ "description": "Websidekortet giver dig mulighed for at integrere din foretrukne webside direkte i Home Assistant.",
+ "name": "Webside"
+ },
+ "light": {
+ "description": "Lys-kortet giver dig mulighed for at ændre lysets lysstyrke.",
+ "name": "Lys"
+ },
+ "logbook": {
+ "description": "Logbogen viser en liste over begivenheder for entiteter.",
+ "name": "Logbog"
+ },
+ "map": {
+ "dark_mode": "Mørk tilstand?",
+ "default_zoom": "Standard-zoom",
+ "description": "Kort-kortet giver dig mulighed for at vise entiteter på et kort.",
+ "geo_location_sources": "Lokalitetskilder",
+ "hours_to_show": "Vis i antal timer",
+ "name": "Kort",
+ "source": "Kilde"
+ },
+ "markdown": {
+ "content": "Indhold",
+ "description": "Markdown-kortet bruges til at gengive Markdown.",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "description": "Mediekontrolkortet bruges til at vise medieafspillerenheder på en brugerflade med brugervenlige kontroller.",
+ "name": "Mediekontrol"
+ },
+ "picture-elements": {
+ "description": "Billedelementer-kortet er en af de mest alsidige korttyper. Kortene giver dig mulighed for at placere ikoner eller tekst og endda tjenester! På et billede baseret på koordinater.",
+ "name": "Billedelementer"
+ },
+ "picture-entity": {
+ "description": "Billedentitet-kortet viser en entitet i form af et billede. I stedet for billeder fra URL, kan det også vise billedet af kameraentiteter.",
+ "name": "Billedentitet"
+ },
+ "picture-glance": {
+ "description": "Billedblik-kortet viser et billede og den tilsvarende tilstand for en entitet som et ikon. Entiteterne på højre side tillader at skifte handlinger, andre viser dialogboksen for mere information.",
+ "name": "Billedblik",
+ "state_entity": "Entitet status"
+ },
+ "picture": {
+ "description": "Billedkortet giver dig mulighed for at indstille et billede, der skal bruges til navigation til forskellige stier i brugerfladen eller til at kalde en tjeneste.",
+ "name": "Billede"
+ },
+ "plant-status": {
+ "description": "Plantestatus-kortet er til alle de dejlige botanikere derude.",
+ "name": "Plantestatus"
+ },
+ "sensor": {
+ "description": "Sensorkortet giver dig et hurtigt overblik over dine sensorers tilstand med en valgfri graf til at visualisere forandringer over tid.",
+ "graph_type": "Graftype",
+ "name": "Sensor",
+ "show_more_detail": "Vis flere detaljer"
+ },
+ "shopping-list": {
+ "description": "På indkøbslistekortet kan du tilføje, redigere, afkrydse og rydde varer fra din indkøbsliste.",
+ "integration_not_loaded": "Dette kort kræver, at 'shopping_list'-integrationen er konfigureret.",
+ "name": "Indkøbsliste"
+ },
+ "statistics-graph": {
+ "description": "Kortet Statistikgraf giver dig mulighed for at vise en graf over statistikkerne for hver af de anførte enheder.",
+ "name": "Statistik graf"
+ },
+ "thermostat": {
+ "description": "Termostatkortet giver kontrol over din klimaentitet. Giver dig mulighed for at ændre entitetens temperatur og tilstand.",
+ "name": "Termostat"
+ },
+ "vertical-stack": {
+ "description": "Lodret stak-kortet giver dig mulighed for at gruppere flere kort, så de altid sidder i samme kolonne.",
+ "name": "Lodret stak"
+ },
+ "weather-forecast": {
+ "description": "Vejrudsigtskortet viser vejret - meget nyttigt at medtage på brugerflader, som folk viser på væggen.",
+ "name": "Vejrudsigt",
+ "show_both": "Vis aktuelt vejr og vejrudsigt",
+ "show_forecast": "Vis vejrudsigt",
+ "show_only_current": "Vis kun aktuelt vejr",
+ "show_only_forecast": "Vis kun vejrudsigt"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Efter kort",
+ "by_entity": "Efter entitet",
+ "custom_card": "Brugerdefineret",
+ "domain": "Domæne",
+ "entity": "Entitet",
+ "no_description": "Ingen beskrivelse tilgængelig."
+ },
+ "common": {
+ "add": "Tilføj",
+ "clear": "Ryd",
+ "edit": "Rediger",
+ "none": "Ingen"
+ },
+ "edit_badges": {
+ "panel_mode": "Disse badges vises ikke, fordi visningen er i \"Paneltilstand\".",
+ "view_no_badges": "Badges understøttes ikke af den aktuelle visningstype."
+ },
+ "edit_card": {
+ "add": "Tilføj kort",
+ "clear": "Ryd",
+ "confirm_cancel": "Er du sikker på, at du vil annullere?",
+ "delete": "Slet kort",
+ "duplicate": "Dubliker kort",
+ "edit": "Rediger",
+ "header": "Kortkonfiguration",
+ "move": "Flyt til visning",
+ "move_after": "Flyt kortet efter",
+ "move_before": "Flyt kortet før",
+ "move_down": "Flyt kort ned",
+ "move_up": "Flyt kort op",
+ "options": "Flere indstillinger",
+ "pick_card": "Hvilket kort vil du tilføje?",
+ "pick_card_view_title": "Hvilket kort vil du tilføje til din {name}-visning?",
+ "search_cards": "Søg i kort",
+ "show_code_editor": "Vis kode-editor",
+ "show_visual_editor": "Vis visuel editor",
+ "toggle_editor": "Editor til/fra",
+ "typed_header": "{type}-kortkonfiguration",
+ "unsaved_changes": "Du har ikke-gemte ændringer"
+ },
+ "edit_lovelace": {
+ "edit_title": "Rediger titel",
+ "explanation": "Denne titel vises over alle dine visninger i Lovelace-brugerfladen.",
+ "header": "Titel på din Lovelace-brugerflade",
+ "title": "Titel"
+ },
+ "edit_view": {
+ "add": "Tilføj visning",
+ "delete": "Slet visning",
+ "edit": "Rediger visning",
+ "header": "Vis konfiguration",
+ "header_name": "{name}-visningskonfiguration",
+ "move_left": "Flyt visningen til venstre",
+ "move_right": "Flyt visningen til højre",
+ "tab_badges": "Badges",
+ "tab_settings": "Indstillinger",
+ "tab_visibility": "Synlighed",
+ "type": "Vis type",
+ "types": {
+ "masonry": "Murværk (standard)",
+ "panel": "Panel (1 kort)",
+ "sidebar": "Sidemenu"
+ },
+ "visibility": {
+ "select_users": "Vælg, hvilke brugere der skal se denne visning i navigationen"
+ }
+ },
+ "header": "Rediger brugerflade",
+ "header-footer": {
+ "choose_header_footer": "Vælg en {type}",
+ "footer": "Sidefod",
+ "header": "Sidehoved",
+ "types": {
+ "buttons": {
+ "name": "Knapper"
+ },
+ "graph": {
+ "name": "Graf"
+ },
+ "picture": {
+ "name": "Billede"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Administrer betjeningspaneler",
+ "manage_resources": "Administrer ressourcer",
+ "open": "Åbn Lovelace-brugerflademenu",
+ "raw_editor": "Tekstbaseret redigering"
+ },
+ "migrate": {
+ "header": "Konfigurationen er ikke kompatibel",
+ "migrate": "Migrer opsætning",
+ "para_migrate": "Home Assistant kan tilføje id'er til alle dine kort og visninger automatisk for dig ved at trykke på knappen 'Migrer opsætning'.",
+ "para_no_id": "Dette element har ikke et id. Tilføj venligst et id til dette element i 'ui-lovelace.yaml'."
+ },
+ "move_card": {
+ "header": "Vælg en visning, som kortet skal flyttes til"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Vi genererer automatisk dine Lovelace-brugerfladevisninger med dine områder og enheder, hvis du fjerner din Lovelace-brugerfladekonfiguration.",
+ "confirm_remove_config_title": "Er du sikker på, at du vil fjerne din Lovelace-brugerfladekonfiguration?",
+ "confirm_unsaved_changes": "Du har ikke-gemte ændringer, er du sikker på, at du vil afslutte?",
+ "confirm_unsaved_comments": "Din konfiguration indeholder kommentarer. Disse vil ikke blive gemt. Vil du fortsætte?",
+ "error_invalid_config": "Din konfiguration er ugyldig: {error}",
+ "error_parse_yaml": "Kunne ikke fortolke YAML: {error}",
+ "error_remove": "Ude af stand til at fjerne konfiguration: {error}",
+ "error_save_yaml": "Kunne ikke gemme YAML: {error}",
+ "header": "Rediger konfiguration",
+ "lovelace_changed": "Lovelace-konfigurationen blev opdateret. Vil du indlæse den opdaterede konfiguration i editoren og miste dine aktuelle ændringer?",
+ "reload": "Genindlæs",
+ "resources_moved": "Ressourcer bør ikke længere føjes til Lovelace-konfigurationen, men kan tilføjes i Lovelace-konfigurationspanelet.",
+ "save": "Gem",
+ "saved": "Gemt",
+ "unsaved_changes": "Ikke-gemte ændringer"
+ },
+ "save_config": {
+ "close": "Luk",
+ "empty_config": "Start med et tomt betjeningspanel",
+ "header": "Tag kontrol over din 'Lovelace'-brugerflade",
+ "para": "Dette betjeningspanel vedligeholdes i øjeblikket af Home Assistant. Det opdateres automatisk, når nye entiteter eller Lovelace-brugerfladekomponenter bliver tilgængelige. Hvis du overtager kontrollen, opdateres dette betjeningspanel ikke længere automatisk. Du kan altid oprette et nyt betjeningspanel at lege med i konfigurationen.",
+ "para_sure": "Er du sikker på du ønsker at tage kontrol over din brugerflade?",
+ "save": "Tag kontrol",
+ "yaml_config": "For at hjælpe dig med at starte, er her den aktuelle konfiguration af dette betjeningspanel:",
+ "yaml_control": "For at tage kontrol i YAML-tilstand skal du oprette en YAML-fil med det navn, du har angivet i din konfiguration for dette betjeningspanel, eller standard-'ui-lovelace.yaml'-filen.",
+ "yaml_mode": "Du bruger YAML-tilstand for dette betjeningspanel. Det betyder, at du ikke kan ændre din Lovelace-konfiguration fra brugerfladen. Hvis du vil ændre dette betjeningspanel fra brugerfladen, skal du fjerne 'mode: yaml' fra din Lovelace-konfiguration i 'configuration.yaml.'"
+ },
+ "select_view": {
+ "dashboard_label": "Betjeningspanel",
+ "header": "Vælg en visning",
+ "views_label": "Visning"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Rediger sidefod",
+ "header": "Rediger sidehoved",
+ "row": "Rediger entitetsrække"
+ }
+ },
+ "suggest_card": {
+ "add": "Tilføj til Lovelace-brugerflade",
+ "create_own": "Lav dit eget",
+ "header": "Vi har lavet et forslag til dig"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Denne visning indeholder mere end ét kort, men en panelvisning kan kun vise 1 kort."
+ }
+ }
+ },
+ "menu": {
+ "close": "Luk",
+ "configure_ui": "Rediger betjeningspanel",
+ "exit_edit_mode": "Afslut brugerflade-redigeringstilstand",
+ "help": "Hjælp",
+ "reload_resources": "Genindlæs ressourcer",
+ "start_conversation": "Start samtale"
+ },
+ "reload_lovelace": "Genindlæs brugerflade",
+ "reload_resources": {
+ "refresh_body": "Du er nødt til at opdatere siden for at fuldføre genindlæsningen. Vil du opdatere nu?",
+ "refresh_header": "Vil du opdatere?"
+ },
+ "unused_entities": {
+ "available_entities": "Dette er de entiteter, du har til rådighed, som endnu ikke er i din Lovelace-brugerflade.",
+ "domain": "Domæne",
+ "entity": "Entitet",
+ "entity_id": "Entitets-id",
+ "last_changed": "Sidst ændret",
+ "no_data": "Der blev ikke fundet ubrugte entiteter",
+ "search": "Søg i entiteter",
+ "select_to_add": "Vælg de objekter, du vil føje til et kort, og klik derefter på knappen Tilføj kort.",
+ "title": "Ubrugte entiteter"
+ },
+ "views": {
+ "confirm_delete": "Slet visning?",
+ "confirm_delete_existing_cards": "Sletning af denne visning fjerner også kortene",
+ "confirm_delete_existing_cards_text": "Er du sikker på, at du vil slette visningen ''{name}''? Visningen indeholder {number} kort, der vil blive slettet. Denne handling kan ikke fortrydes.",
+ "confirm_delete_text": "Er du sikker på, at du vil slette visningen ''{name}''?"
+ },
+ "warning": {
+ "attribute_not_found": "Egenskaben {attribute} er ikke tilgængelig i: {entity}",
+ "entity_non_numeric": "Entitet er ikke-numerisk: {entity}",
+ "entity_not_found": "Entitet ikke tilgængelig: {entity}",
+ "entity_unavailable": "{entity} er ikke tilgængelig i øjeblikket",
+ "starting": "Home Assistant starter. Nogle funktioner er måske ikke tilgængelige endnu."
+ }
+ },
+ "mailbox": {
+ "delete_button": "Slet",
+ "delete_prompt": "Slet denne besked?",
+ "empty": "Du har ingen beskeder",
+ "playback_title": "Afspilning af besked"
+ },
+ "map": {
+ "edit_zones": "Rediger zoner"
+ },
+ "my": {
+ "component_not_loaded": "Denne omdirigering understøttes ikke af din Home Assistant installation. Du skal bruge integrationen {integration} for at kunne bruge denne omdirigering.",
+ "documentation": "dokumentation",
+ "error": "Der opstod en ukendt fejl",
+ "faq_link": "Ofte stillede spørgsmål om Home Assistant",
+ "no_supervisor": "Denne omdirigering understøttes ikke af din Home Assistant-installation. Dette understøttes af enten Home Assistant Operating System eller Home Assistant Supervised installationsmetoden. Se {docs_link} for flere oplysninger.",
+ "not_supported": "Denne omdirigering understøttes ikke af din Home Assistant installation. Kontroller {link} for de understøttede omdirigeringer og den version, de blev introduceret i."
+ },
+ "page-authorize": {
+ "abort_intro": "Login afbrudt",
+ "authorizing_client": "Du er ved at give {clientId} adgang til din Home Assistant-instans.",
+ "form": {
+ "error": "Fejl: {error}",
+ "next": "Login",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Session er udløbet, log ind igen."
+ },
+ "error": {
+ "invalid_auth": "Ugyldigt brugernavn eller adgangskode",
+ "invalid_code": "Ugyldig godkendelseskode"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Adgangskode",
+ "username": "Brugernavn"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Tofaktor-godkendelseskode"
+ },
+ "description": "Åbn **{mfa_module_name}** på din enhed for at se din tofaktor-godkendelseskode og bekræft din identitet:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Session er udløbet, log ind igen."
+ },
+ "error": {
+ "invalid_auth": "Ugyldigt brugernavn eller adgangskode",
+ "invalid_code": "Ugyldig godkendelseskode"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Adgangskode",
+ "username": "Brugernavn"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Tofaktor-godkendelseskode"
+ },
+ "description": "Åbn **{mfa_module_name}** på din enhed for at se din tofaktor-godkendelseskode og bekræft din identitet:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Session er udløbet, log ind igen.",
+ "no_api_password_set": "Du har ikke konfigureret en API-adgangskode."
+ },
+ "error": {
+ "invalid_auth": "Ugyldig API-adgangskode",
+ "invalid_code": "Ugyldig godkendelseskode"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "API-adgangskode"
+ },
+ "description": "Indtast venligst API-adgangskoden fra din http-konfiguration:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Tofaktor-godkendelseskode"
+ },
+ "description": "Åbn **{mfa_module_name}** på din enhed for at se din tofaktor-godkendelseskode og bekræft din identitet:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Din computer er ikke tilladt."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Bruger"
+ },
+ "description": "Vælg venligst den bruger, du vil logge ind som:"
+ }
+ }
+ }
+ },
+ "start_over": "Start forfra",
+ "unknown_error": "Noget gik galt",
+ "working": "Vent venligst"
+ },
+ "initializing": "Initialiserer",
+ "logging_in_to_with": "Logger ind på **{locationName}** med **{authProviderName}**.",
+ "logging_in_with": "Log ind med **{authProviderName}**.",
+ "pick_auth_provider": "Eller log ind med",
+ "store_token": "Forbliv logget ind"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "af {name}",
+ "introduction": "Velkommen hjem! Du er kommet til Home Assistants demo hvor vi viser de bedste brugerflader skabt af vores fællesskab.",
+ "learn_more": "Læs mere om Home Assistant",
+ "next_demo": "Næste demo"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Aktivitet",
+ "air": "Luft",
+ "commute_home": "Pendling til hjemmet",
+ "entertainment": "Underholdning",
+ "hdmi_input": "HDMI-indgang",
+ "hdmi_switcher": "HDMI-skifter",
+ "information": "Information",
+ "lights": "Lys",
+ "morning_commute": "Morgenpendling",
+ "total_tv_time": "Samlet tv-tid",
+ "turn_tv_off": "Sluk for fjernsynet",
+ "volume": "Lydstyrke"
+ },
+ "names": {
+ "family_room": "Alrum",
+ "hallway": "Gang",
+ "kitchen": "Køkken",
+ "left": "Venstre",
+ "master_bedroom": "Soveværelse",
+ "mirror": "Spejl",
+ "patio": "Terrasse",
+ "right": "Højre",
+ "temperature_study": "Temperatur Studie",
+ "upstairs": "Ovenpå"
+ },
+ "unit": {
+ "minutes_abbr": "min",
+ "watching": "ser"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Næste"
+ },
+ "core-config": {
+ "button_detect": "Detekter",
+ "finish": "Næste",
+ "intro": "Hej {name}, velkommen til Home Assistant. Hvordan vil du navngive dit hjem?",
+ "intro_location": "Vi vil gerne vide, hvor du bor. Disse oplysninger hjælper med at vise information og opsætte solbaserede automationer. Disse data deles aldrig uden for dit netværk.",
+ "intro_location_detect": "Vi kan hjælpe dig med at udfylde disse oplysninger ved at foretage en engangsforespørgsel til en ekstern tjeneste.",
+ "location_name": "Navn på din Home Assistant-installation",
+ "location_name_default": "Hjem"
+ },
+ "finish": "Afslut",
+ "integration": {
+ "finish": "Afslut",
+ "intro": "Enheder og tjenester er repræsenteret i Home Assistant som integrationer. Du kan konfigurere dem nu eller gøre det senere fra konfigurationsskærmen.",
+ "more_integrations": "Mere"
+ },
+ "intro": "Er du klar til at vække dit hjem til live, genvinde dit privatliv og blive medlem af et verdensomspændende fællesskab af tinkerers?",
+ "next": "Næste",
+ "restore": {
+ "addons": "Tilføjelsesprogrammer",
+ "confirm_password": "Bekræft adgangskode til sikkerhedskopi",
+ "description": "Alternativt kan du gendanne fra en tidligere sikkerhedskopi.",
+ "folders": "Mapper",
+ "full_backup": "Fuld sikkerhedskopiering",
+ "hide_log": "Skjul fuld log",
+ "in_progress": "Gendannelse er i gang",
+ "partial_backup": "Delvis sikkerhedskopiering",
+ "password": "Adgangskode til sikkerhedskopi",
+ "password_protection": "Adgangskodebeskyttelse",
+ "select_type": "Vælg, hvad der skal gendannes",
+ "show_log": "Vis den fulde log",
+ "type": "Sikkerhedskopitype"
+ },
+ "user": {
+ "create_account": "Opret konto",
+ "data": {
+ "name": "Navn",
+ "password": "Adgangskode",
+ "password_confirm": "Bekræft adgangskode",
+ "username": "Brugernavn"
+ },
+ "error": {
+ "password_not_match": "Adgangskoderne er ikke ens",
+ "required_fields": "Udfyld alle obligatoriske felter"
+ },
+ "intro": "Lad os komme i gang ved at oprette en brugerkonto.",
+ "required_field": "Påkrævet"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Låser op for avancerede funktioner.",
+ "link_promo": "Lær mere",
+ "title": "Avanceret tilstand"
+ },
+ "change_password": {
+ "confirm_new_password": "Bekræft ny adgangskode",
+ "current_password": "Nuværende adgangskode",
+ "error_new_is_old": "Ny adgangskode skal være forskellig fra den aktuelle adgangskode",
+ "error_new_mismatch": "Indtastede nye adgangskoder er ikke ens",
+ "error_required": "Påkrævet",
+ "header": "Skift adgangskode",
+ "new_password": "Ny adgangskode",
+ "submit": "Indsend",
+ "success": "Adgangskoden blev ændret"
+ },
+ "current_user": "Du er logget ind som {fullName}.",
+ "customize_sidebar": {
+ "button": "Rediger",
+ "description": "Du kan også trykke på sidebjælkens overskrift for at aktivere redigeringstilstand.",
+ "header": "Tilpas rækkefølgen og skjul elementer fra sidepanelet"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Oversigt (standard)",
+ "description": "Vælg et standardbetjeningspanel for denne enhed.",
+ "dropdown_label": "Betjeningspanel",
+ "header": "Betjeningspanel"
+ },
+ "enable_shortcuts": {
+ "description": "Aktiver eller deaktiver tastaturgenveje til at udføre forskellige handlinger i brugergrænsefladen.",
+ "header": "Tastaturgenveje"
+ },
+ "force_narrow": {
+ "description": "Dette vil skjule sidebjælken som standard, svarende til den mobile oplevelse.",
+ "header": "Skjul altid sidebjælken"
+ },
+ "is_owner": "Du er ejer.",
+ "language": {
+ "dropdown_label": "Sprog",
+ "header": "Sprog",
+ "link_promo": "Hjælp med at oversætte"
+ },
+ "logout": "Log af",
+ "logout_text": "Er du sikker på, at du vil logge ud?",
+ "logout_title": "Log ud?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Er du sikker på, at du vil slette adgangstoken til {name}?",
+ "create": "Opret token",
+ "create_failed": "Kunne ikke oprette adgangstoken.",
+ "created": "Oprettet {date}",
+ "delete_failed": "Kunne ikke slette adgangstoken.",
+ "description": "Opret langlivede adgangstokens, så dine scripts kan forbinde med din Home Assistant-instans. Hver token er gyldig i 10 år fra oprettelsen. Følgende langlivede adgangstokens er i øjeblikket aktive.",
+ "empty_state": "Du har ingen langlivede adgangstokens endnu.",
+ "header": "Langlivede adgangstokens",
+ "learn_auth_requests": "Lær, hvordan du laver godkendte forespørgsler.",
+ "name": "Navn",
+ "prompt_copy_token": "Kopier din adgangstoken. Den vil ikke blive vist igen.",
+ "prompt_name": "Giv tokenet et navn"
+ },
+ "mfa": {
+ "confirm_disable": "Er du sikker på du vil deaktivere {name}?",
+ "disable": "Deaktiver",
+ "enable": "Aktiver",
+ "header": "Multifaktor-godkendelsesmoduler"
+ },
+ "mfa_setup": {
+ "close": "Luk",
+ "step_done": "Opsætning af {step} færdig",
+ "submit": "Indsend",
+ "title_aborted": "Afbrudt",
+ "title_success": "Succes!"
+ },
+ "number_format": {
+ "description": "Vælg, hvordan tal formateres.",
+ "dropdown_label": "Talformat",
+ "formats": {
+ "comma_decimal": "1.234.567,89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Automatisk (brug sprogindstilling)",
+ "none": "Ingen",
+ "space_comma": "1 234 567,89",
+ "system": "Brug systemets landestandard"
+ },
+ "header": "Talformat"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Enhedsnavn",
+ "title": "Hvad skal denne enhed hedde?"
+ },
+ "description": "Send notifikationer til denne enhed.",
+ "error_load_platform": "Konfigurer notify.html5",
+ "error_use_https": "Kræver SSL aktiveret til brugerflade.",
+ "header": "Push-notifikationer",
+ "link_promo": "Lær mere",
+ "push_notifications": "Push-notifikationer"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Er du sikker på, at du vil slette opdateringsstoken til {name}?",
+ "created_at": "Oprettet den {date}",
+ "current_token_tooltip": "Kan ikke slette nuværende opdateringstoken",
+ "delete_failed": "Kunne ikke slette opdateringstoken.",
+ "description": "Hver opdateringstoken repræsenterer en login-session. Opdateringstokens fjernes automatisk, når du klikker på log ud. Følgende opdateringstokens er i øjeblikket aktive til din konto.",
+ "header": "Opdateringstokens",
+ "last_used": "Sidst anvendt den {date} fra {location}",
+ "not_used": "Har aldrig været brugt",
+ "token_title": "Opdateringstoken for {clientId}"
+ },
+ "suspend": {
+ "description": "Skal vi lukke forbindelsen til serveren efter den har været skjult i 5 minutter?",
+ "header": "Luk forbindelsen automatisk"
+ },
+ "themes": {
+ "accent_color": "Accentfarve",
+ "dark_mode": {
+ "auto": "Auto",
+ "dark": "Mørk",
+ "light": "Lys"
+ },
+ "dropdown_label": "Tema",
+ "error_no_theme": "Ingen temaer til rådighed.",
+ "header": "Tema",
+ "link_promo": "Lær om temaer",
+ "primary_color": "Primær farve",
+ "reset": "Nulstil"
+ },
+ "time_format": {
+ "description": "Vælg, hvordan klokkeslæt skal formateres.",
+ "dropdown_label": "Tidsformat",
+ "formats": {
+ "12": "12 timer (AM / PM)",
+ "24": "24 timer",
+ "language": "Automatisk (brug sprogindstilling)",
+ "system": "Brug systemets landestandard"
+ },
+ "header": "Tidsformat"
+ },
+ "vibrate": {
+ "description": "Aktivér eller deaktiver vibrationer på denne enhed, når du styrer enheder.",
+ "header": "Vibrer"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Start samtale"
+ }
+ },
+ "sidebar": {
+ "done": "Færdig",
+ "external_app_configuration": "App-konfiguration",
+ "hide_panel": "Skjul panel",
+ "show_panel": "Vis panel",
+ "sidebar_toggle": "Vis/skjul sidebjælke"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/de.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/de.json
new file mode 100644
index 00000000..798e8a7e
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/de.json
@@ -0,0 +1,4673 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Konfigurationseintrag",
+ "device": "Gerät",
+ "integration": "Integration",
+ "user": "Benutzer"
+ }
+ },
+ "groups": {
+ "owner": "Besitzer",
+ "system-admin": "Administratoren",
+ "system-read-only": "Nur-Lesen Benutzer",
+ "system-users": "Benutzer"
+ },
+ "panel": {
+ "calendar": "Kalender",
+ "config": "Einstellungen",
+ "developer_tools": "Entwicklerwerkzeuge",
+ "energy": "Energie",
+ "history": "Verlauf",
+ "logbook": "Logbuch",
+ "mailbox": "Posteingang",
+ "map": "Karte",
+ "media_browser": "Medien",
+ "profile": "Profil",
+ "shopping_list": "Einkaufsliste",
+ "states": "Übersicht"
+ },
+ "state": {
+ "default": {
+ "off": "Aus",
+ "on": "An",
+ "unavailable": "Nicht verfügbar",
+ "unknown": "Unbekannt"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Automatisch",
+ "off": "Aus",
+ "on": "An"
+ },
+ "hvac_action": {
+ "cooling": "Kühlung",
+ "drying": "Trocknen",
+ "fan": "Ventilator",
+ "heating": "Heizung",
+ "idle": "Leerlauf",
+ "off": "Aus"
+ },
+ "preset_mode": {
+ "activity": "Aktivität",
+ "away": "Abwesend",
+ "boost": "Maximal",
+ "comfort": "Komfort",
+ "eco": "Sparmodus",
+ "home": "Zuhause",
+ "none": "Keine",
+ "sleep": "Schlafen"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Automatisch",
+ "away": "Abwesend",
+ "baby": "Baby",
+ "boost": "Boost",
+ "comfort": "Komfort",
+ "eco": "Eco",
+ "home": "Zuhause",
+ "normal": "Normal",
+ "sleep": "Schlafen"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Aktiv",
+ "armed_away": "Aktiv",
+ "armed_custom_bypass": "Aktiv",
+ "armed_home": "Aktiv",
+ "armed_night": "Aktiv",
+ "armed_vacation": "Aktiv",
+ "arming": "Aktiv.",
+ "disarmed": "Inaktiv",
+ "disarming": "Deakt.",
+ "pending": "Warte",
+ "triggered": "Ausgel."
+ },
+ "default": {
+ "entity_not_found": "Entität nicht gefunden",
+ "error": "Fehler",
+ "unavailable": "N.v.",
+ "unknown": "Unbek."
+ },
+ "device_tracker": {
+ "home": "Zu Hause",
+ "not_home": "Abwes."
+ },
+ "person": {
+ "home": "Zu Hause",
+ "not_home": "Abwesend"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Standard",
+ "header": "Audio",
+ "input": "Audioeingang",
+ "output": "Audioausgang"
+ },
+ "network": {
+ "container": "Container",
+ "disabled": "Deaktiviert",
+ "header": "Netzwerk",
+ "host": "Host"
+ },
+ "no_configuration": "Für dieses Add-on gibt es keine Konfiguration. Also nichts mit dem du dich herumschlagen musst…",
+ "options": {
+ "edit_in_ui": "Mit der Benutzeroberfläche bearbeiten",
+ "edit_in_yaml": "Als YAML bearbeiten",
+ "header": "Optionen",
+ "invalid_yaml": "Ungültige YAML",
+ "show_unused_optional": "Nicht verwendete optionale Konfigurationsoptionen anzeigen"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Add-on-Änderungsprotokoll konnte nicht abgerufen werden",
+ "go_to_config": "Konfiguration bearbeiten",
+ "install": "Add-on konnte nicht installiert werden",
+ "restart": "Neustart des Add-on fehlgeschlagen",
+ "start": "Starten des Add-on fehlgeschlagen",
+ "start_invalid_config": "Zur Konfiguration gehen",
+ "stop": "Stoppen des Add-on fehlgeschlagen",
+ "uninstall": "Add-on konnte nicht deinstalliert werden",
+ "validate_config": "Validierung der Add-on-Konfiguration fehlgeschlagen"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor ('Application Armor') ist ein Linux-Kernel-Sicherheitsmodul, das Add-on-Funktionen wie Netzwerkzugriff, Raw-Socket-Zugriff und die Berechtigung zum Lesen, Schreiben oder Ausführen bestimmter Dateien einschränkt. \n\nAdd-on-Autoren können ihre Sicherheitsprofile bereitstellen, die für das Add-on optimiert sind, oder die Deaktivierung anfordern. Wenn AppArmor deaktiviert ist, erhöht dies das Sicherheitsrisiko und wirkt sich daher negativ auf die Sicherheitsbewertung des Add-ons aus.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "Ein Add-on kann Benutzer gegen Home Assistant authentifizieren, so dass Add-ons Benutzern die Möglichkeit bieten, sich mit ihrem Home Assistant-Benutzernamen/-Kennwort bei Anwendungen anzumelden, die in Add-ons ausgeführt werden. Dieses Abzeichen zeigt an, ob der Add-on-Autor diese Berechtigung anfordert.",
+ "title": "Home Assistant-Authentifizierung"
+ },
+ "docker_api": {
+ "description": "Der Add-on-Autor hat das Add-on angefordert, um Verwaltungszugriff auf die Docker-Instanz zu haben, die auf Deinem System ausgeführt wird. Dieser Modus gibt dem Add-on vollen Zugriff und Kontrolle auf dein gesamtes Home Assistant-System, was Sicherheitsrisiken erhöht und dein System beschädigen kann, wenn es missbraucht wird. Daher wirkt sich diese Funktion negativ auf den Add-on-Sicherheitsbewertung aus.\n\nDiese Zugriffsebene wird nicht automatisch gewährt und muss von dir bestätigt werden. Dazu musst du den Schutzmodus für das Add-on manuell deaktivieren. Deaktiviere den Schutzmodus nur, wenn du es wirklich musst UND der Quelle dieses Add-ons vertraust.",
+ "title": "Vollständiger Docker-Zugriff"
+ },
+ "full_access": {
+ "description": "Dieses Add-on erhält auf Wunsch des Add-on-Autors vollen Zugriff auf die Hardware Deines Systems. Der Zugriff ist mit dem privilegierten Modus in Docker vergleichbar. Da dies mögliche Sicherheitsrisiken eröffnet, wirkt sich diese Funktion negativ auf den Add-on-Sicherheitsbewertung aus.\n\nDiese Zugriffsebene wird nicht automatisch gewährt und muss von dir bestätigt werden. Dazu musst du den Schutzmodus für das Add-on manuell deaktivieren. Deaktiviere den Schutzmodus nur, wenn du es wirklich musst UND der Quelle dieses Add-ons vertraust.",
+ "title": "Voller Hardware-Zugriff"
+ },
+ "hassio_api": {
+ "description": "Dem Add-on wurde Zugriff auf die Supervisor-API gewährt, wie es der Add-on-Autors angefordert hat. Standardmäßig kann das Add-on auf allgemeine Versionsinformationen von deinem System zugreifen. Wenn das Add-on Zugriff auf die API mit \"Manager\"- oder \"Admin\"-Rechten anfordert, erhält es Zugriff auf mehrere Teile deines Home Assistant-Systems. Diese Berechtigung wird durch dieses Abzeichen angezeigt und wirkt sich negativ auf die Sicherheitsbewertung des Add-ons aus.",
+ "title": "Supervisor-API-Zugriff"
+ },
+ "homeassistant_api": {
+ "description": "Dieses Add-on kann direkt über die Home Assistant-API auf deine laufende Home Assistant-Instanz zugreifen. Dieser Modus behandelt auch die Authentifizierung für das Add-on, wodurch ein Add-on mit Home Assistant interagieren kann, ohne dass zusätzliche Authentifizierungstoken erforderlich sind.",
+ "title": "Home Assistant API-Zugriff"
+ },
+ "host_network": {
+ "description": "Add-ons werden in der Regel auf ihrer eigenen isolierten Netzwerkschicht ausgeführt, wodurch sie daran gehindert werden, auf das Netzwerk des Hostbetriebssystems zuzugreifen. In einigen Fällen kann diese Netzwerkisolation, Add-ons bei der Bereitstellung ihrer Dienste einschränken. Daher kann die Isolierung vom Add-on-Autor aufgehoben werden, sodass das Add-on vollen Zugriff auf die Netzwerkfunktionen deines Hostcomputers hat. Dadurch erhält das Add-on mehr Netzwerkfunktionen, verringert jedoch die Sicherheit! Daher wird die Sicherheitsbewertung des Add-ons verringert, wenn diese Option vom Add-on verwendet wird.",
+ "title": "Host-Netzwerk"
+ },
+ "host_pid": {
+ "description": "In der Regel sind die Prozesse, die das Add-on ausführt, von allen anderen Systemprozessen isoliert. Der Add-on-Autor hat das Add-on aufgefordert, einen Zugriff auf die auf der Hostsysteminstanz ausgeführten Systemprozesse zu haben und dem Add-on auch das Erstellen von Prozessen auf dem Hostsystem zu ermöglichen. Dieser Modus gibt dem Add-on vollen Zugriff und Kontrolle auf dein gesamtes Home Assistant-System, was Sicherheitsrisiken erhöht und dein System beschädigen kann, wenn es missbraucht wird. Daher wirkt sich diese Funktion negativ auf den Add-on-Sicherheitsbewertung aus.\n\nDiese Zugriffsebene wird nicht automatisch gewährt und muss von dir bestätigt werden. Dazu musst du den Schutzmodus für das Add-on manuell deaktivieren. Deaktiviere den Schutzmodus nur, wenn du es wirklich musst UND der Quelle dieses Add-ons vertraust.",
+ "title": "Namespace für Host-Prozesse"
+ },
+ "ingress": {
+ "description": "Dieses Add-on verwendet Ingress, um seine Benutzeroberfläche sicher in Home Assistant einzubetten.",
+ "title": "Ingress"
+ },
+ "label": {
+ "apparmor": "AppArmor",
+ "auth": "genehmigen",
+ "core": "Kern",
+ "docker": "Docker",
+ "hardware": "Hardware",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "Host",
+ "host_pid": "Host-PID",
+ "ingress": "Ingress",
+ "rating": "Bewertung",
+ "stage": "Phase"
+ },
+ "rating": {
+ "description": "Home Assistant bietet eine Sicherheitsbewertung für jedes Add-on, welche die Risiken aufzeigen, die bei der Verwendung dieses Add-ons verbunden sind. Je mehr Zugriff ein Add-on auf dein System benötigt, desto niedriger ist die Punktzahl, wodurch die möglichen Sicherheitsrisiken steigen.\n\nDie Punktzahl ist auf einer Skala von 1 bis 6. Wobei 1 die niedrigste Punktzahl ist (ein sehr unsicheres Add-on mit dem höchsten Risiko) und eine Punktzahl von 6 die höchste Punktzahl ist (eines der sichersten Add-ons mit dem niedrigsten Risiko).",
+ "title": "Addon-Sicherheitsbewertung"
+ },
+ "role": {
+ "admin": "Administrator",
+ "backup": "Backup",
+ "default": "Standard",
+ "homeassistant": "homeassistant",
+ "manager": "Manager"
+ },
+ "stage": {
+ "description": "Add-ons können sich in einer von drei Phasen befinden:\n\n{icon_stable} **Stabil**: Dies sind Add-ons, die bereits vollständig sind und Updates erhalten.\n\n{icon_experimental} **Experimentell**: Diese können Fehler enthalten und unvollendet sein.\n\n{icon_deprecated} **Veraltet**: Diese Add-ons erhalten keine Updates mehr.",
+ "title": "Add-on Phase"
+ },
+ "stages": {
+ "deprecated": "Veraltet",
+ "experimental": "Experimentell"
+ }
+ },
+ "changelog": "Änderungsprotokoll",
+ "cpu_usage": "CPU Auslastung des Add-on",
+ "hostname": "Hostname",
+ "install": "Installieren",
+ "new_update_available": "{name} {version} ist verfügbar",
+ "not_available_arch": "Dieses Add-on ist nicht mit dem Prozessor oder Betriebssystem deines Geräts kompatibel",
+ "not_available_version": "Du hast Home Assistant {core_version_installed} installiert, um auf diese Version des Add-ons zu aktualisieren, benötigst du mindestens die Home Assistant Version {core_version_needed}.",
+ "open_web_ui": "Benutzeroberfläche öffnen",
+ "option": {
+ "auto_update": {
+ "description": "Automatisches Aktualisieren des Add-on, wenn eine neue Version verfügbar ist",
+ "title": "Automatische Updates"
+ },
+ "boot": {
+ "description": "Das Add-on beim Systemstart starten",
+ "title": "Beim Booten starten"
+ },
+ "ingress_panel": {
+ "description": "Add-on zur Seitenleiste hinzufügen",
+ "title": "In der Seitenleiste anzeigen"
+ },
+ "protected": {
+ "description": "Blockiert den erhöhten Systemzugriff über das Add-on",
+ "title": "Gesicherter Modus"
+ },
+ "watchdog": {
+ "description": "Dadurch wird das Add-on gestartet, wenn es abstürzt",
+ "title": "Watchdog"
+ }
+ },
+ "protection_mode": {
+ "content": "Der Schutzmodus für dieses Add-on ist deaktiviert! Dadurch erhält das Add-on vollen Zugriff auf das gesamte System, was Sicherheitsrisiken mit sich bringt und dein System bei unsachgemäßer Verwendung beschädigen kann. Deaktiviere den Schutzmodus nur, wenn du dieses Add-on benötigst und die Quelle dieses Add-ons kennst UND ihr vertraust.",
+ "enable": "Aktivieren",
+ "title": "Der gesicherte Modus ist deaktiviert!"
+ },
+ "ram_usage": "RAM Auslastung des Add-on",
+ "rebuild": "neu bauen",
+ "restart": "Neu starten",
+ "start": "Starten",
+ "stop": "Stoppen",
+ "uninstall": "Deinstallieren",
+ "visit_addon_page": "Weitere Informationen findest du auf der Seite {name}"
+ },
+ "documentation": {
+ "get_documentation": "Fehler beim Abrufen der Add-on-Dokumentation, {error}"
+ },
+ "failed_to_reset": "Fehler beim Zurücksetzen der Add-on-Konfiguration, {error}",
+ "failed_to_save": "Fehler beim Speichern der Add-on-Konfiguration, {error}",
+ "logs": {
+ "get_logs": "Fehler beim Abrufen der Add-on-Protokolle, {error}"
+ },
+ "panel": {
+ "configuration": "Konfiguration",
+ "documentation": "Dokumentation",
+ "info": "Informationen",
+ "log": "Protokoll"
+ },
+ "state": {
+ "installed": "Add-on ist installiert",
+ "not_available": "Das Add-on ist auf deinem System nicht verfügbar",
+ "not_installed": "Add-on ist nicht installiert"
+ }
+ },
+ "backup": {
+ "addons": "Add-ons",
+ "confirm_password": "Backup-Passwort bestätigen",
+ "could_not_create": "Backup konnte nicht erstellt werden",
+ "create": "Erstellen",
+ "create_backup": "Backup erstellen",
+ "create_blocked_not_running": "Das Erstellen eines Backups ist derzeit nicht möglich, da sich das System im Zustand {state} befindet.",
+ "created": "Erstellt",
+ "delete_backup_confirm": "löschen",
+ "delete_backup_text": "Möchtest du {number, plural,\n one {das}\n other {die}\n} {number} {number, plural,\n one {Backup}\n other {Backups}\n} löschen?",
+ "delete_backup_title": "Backup löschen",
+ "delete_selected": "Ausgewählte Backups löschen",
+ "download_backup": "Backup herunterladen",
+ "enter_password": "Bitte Passwort eingeben.",
+ "failed_to_delete": "Löschen fehlgeschlagen",
+ "folders": "Ordner",
+ "full_backup": "Vollständiges Backup",
+ "name": "Backup-Name",
+ "no_backups": "Du hast noch keine Backups.",
+ "partial_backup": "Partielles Backup",
+ "password": "Backup-Passwort",
+ "password_protection": "Passwortschutz",
+ "passwords_not_matching": "Passwörter stimmen nicht überein",
+ "select_type": "Wähle aus, was wiederhergestellt werden soll",
+ "selected": "{number} ausgewählt",
+ "size": "Größe",
+ "type": "Backup-Typ",
+ "upload_backup": "Backup hochladen"
+ },
+ "common": {
+ "cancel": "Abbrechen",
+ "close": "Schließen",
+ "description": "Beschreibung",
+ "error": {
+ "unknown": "Unbekannter Fehler",
+ "update_failed": "Update fehlgeschlagen"
+ },
+ "failed_to_restart_name": "Neustart von {name} fehlgeschlagen",
+ "failed_to_update_name": "Update von {name} fehlgeschlagen",
+ "learn_more": "Mehr Informationen",
+ "menu": "Menü",
+ "new_version_available": "Neue Version verfügbar",
+ "newest_version": "Neueste Version",
+ "no": "Nein",
+ "refresh": "Aktualisieren",
+ "release_notes": "Versionshinweise",
+ "reload": "Neu laden",
+ "reset_defaults": "Auf Werkseinstellungen zurücksetzen",
+ "reset_options": "Einstellungen zurücksetzen",
+ "restart": "Neustart",
+ "restart_name": "{name} neu starten",
+ "review": "Überprüfung",
+ "running_version": "Du verwendest Version {version}",
+ "save": "Speichern",
+ "show": "anzeigen",
+ "show_more": "Zeige mehr Informationen",
+ "update": "Aktualisieren",
+ "update_available": "{count, plural,\n one {Aktualisierung}\n other {{count} Aktualisierungen}\n} ausstehend",
+ "version": "Version",
+ "yes": "Ja"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Bist du dir sicher, alle Einstellungen zurückzusetzen?",
+ "title": "Optionen zum Zurücksetzen"
+ },
+ "restart": {
+ "text": "Bist du dir sicher, dass du {name} neu starten willst?",
+ "title": "{name} neu starten"
+ },
+ "update": {
+ "text": "Bist du sicher, dass du {name} auf Version {version} aktualisieren möchtest?",
+ "title": "Aktualisiere {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Neue Version verfügbar",
+ "addon_running": "Add-on wird ausgeführt",
+ "addon_stopped": "Add-on ist gestoppt",
+ "addons": "Installierte Add-ons",
+ "no_addons": "Du hast noch keine Add-ons installiert. Gehe zum Add-on Store, um loszulegen!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Abbrechen",
+ "description": "Du verwendest derzeit ''{current_path}'' als Datendiskette. Das Verschieben von Datenträgern führt zu einem Neustart Ihres Geräts und dauert schätzungsweise {time} Minuten. Deine Home Assistant-Installation ist während dieser Zeit nicht zugänglich. Trenne das Gerät während des Verschiebens nicht vom Strom!",
+ "loading_devices": "Lade Geräte",
+ "move": "Bewegen",
+ "moving": "Verschieben von Datenträgern",
+ "moving_desc": "Neustart und Verschieben der Datenträger. Bitte habe etwas Geduld",
+ "no_devices": "Keine geeigneten angeschlossenen Geräte gefunden",
+ "select_device": "Wähle eine neue Datendisk",
+ "title": "Datenträger verschieben"
+ },
+ "hardware": {
+ "attributes": "Attribute",
+ "device_path": "Gerätepfad",
+ "id": "ID",
+ "search": "Hardware suchen",
+ "subsystem": "Subsystem",
+ "title": "Hardware"
+ },
+ "network": {
+ "connected_to": "Verbunden mit {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Deaktiviert",
+ "dns_servers": "DNS-Server",
+ "failed_to_change": "Ändern der Netzwerkeinstellungen fehlgeschlagen",
+ "gateway": "Gateway-Adresse",
+ "ip_netmask": "IP-Adresse/Netzmaske",
+ "open": "Offen",
+ "scan_ap": "Nach Zugangspunkten suchen",
+ "static": "Statisch",
+ "title": "Netzwerkeinstellungen",
+ "unsaved": "Nicht gespeicherte Änderungen gehen beim Wechsel des Tabs verloren. Willst Du fortfahren?",
+ "warning": "Wenn du die WLAN-, IP- oder Gateway-Adressen änderst, verlierst du möglicherweise die Verbindung!",
+ "wep": "WEP",
+ "wpa": "WPA-PSK"
+ },
+ "registries": {
+ "add_new_registry": "Neue Registrierung hinzufügen",
+ "add_registry": "Registrierung hinzufügen",
+ "failed_to_add": "Fehler beim Hinzufügen der Registrierung",
+ "failed_to_remove": "Fehler beim Entfernen der Registrierung",
+ "no_registries": "Keine Registrierungen konfiguriert",
+ "password": "Passwort",
+ "registry": "Registrierung",
+ "remove": "Entfernen",
+ "title_add": "Neue Container-Registrierung hinzufügen",
+ "title_manage": "Verwalten von Container-Registrierungen",
+ "username": "Benutzername"
+ },
+ "repositories": {
+ "add": "Hinzufügen",
+ "remove": "Entfernen",
+ "title": "Add-on Repositorys verwalten",
+ "used": "Das Repository wird für installierte Add-ons verwendet und kann nicht entfernt werden."
+ },
+ "restart_addon": {
+ "confirm_text": "Add-on neu starten",
+ "text": "Möchtest du das Add-on mit deinen Änderungen neu starten?"
+ },
+ "update": {
+ "backup": "Backup",
+ "create_backup": "Erstelle vor dem Aktualisieren ein Backup von {name}",
+ "creating_backup": "Erstellen eines Backups von {name}",
+ "updating": "Aktualisiere {name} auf Version {version}"
+ }
+ },
+ "my": {
+ "error": "Ein unbekannter Fehler ist aufgetreten.",
+ "error_addon_no_ingress": "Das angeforderte Add-on unterstützt keinen Ingress",
+ "error_addon_not_found": "Add-on nicht gefunden",
+ "error_addon_not_installed": "Das angeforderte Add-on ist nicht installiert. Bitte installiere es zuerst",
+ "error_addon_not_started": "Das angeforderte Add-on läuft nicht. Bitte starte es zuerst",
+ "faq_link": "Meine Home Assistant FAQ",
+ "not_supported": "Diese Weiterleitung wird von deiner Home Assistant-Instanz nicht unterstützt. Überprüfe den {link} auf die unterstützten Weiterleitungen und die Version, in der sie eingeführt wurden."
+ },
+ "panel": {
+ "addons": "Add-ons",
+ "backups": "Backups",
+ "dashboard": "Dashboard",
+ "store": "Add-on Store",
+ "system": "System"
+ },
+ "store": {
+ "check_updates": "Auf Updates prüfen",
+ "missing_addons": "Fehlende Add-ons? Aktiviere den erweiterten Modus auf deiner Benutzerprofilseite",
+ "no_results_found": "Keine Ergebnisse in {repository} gefunden",
+ "registries": "Einträge",
+ "repositories": "Repositories"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Core CPU Nutzung",
+ "ram_usage": "Core Arbeitsspeicherbedarf"
+ },
+ "host": {
+ "change": "Ändern",
+ "change_hostname": "Hostname ändern",
+ "confirm_reboot": "Bist du sicher, dass du den Host neu starten willst?",
+ "confirm_shutdown": "Bist du sicher, dass du den Host herunterfahren willst?",
+ "deployment": "Einsatz",
+ "docker_version": "Docker-Version",
+ "emmc_lifetime_used": "eMMC verschlissen",
+ "failed_to_get_hardware_list": "Fehler beim Abrufen der Hardwareliste",
+ "failed_to_import_from_usb": "Fehler beim Importieren von USB",
+ "failed_to_move": "Fehler beim Verschieben der Datenträger",
+ "failed_to_reboot": "Fehler beim Neustart des Hosts",
+ "failed_to_set_hostname": "Das Setzen des Hostnamen ist fehlgeschlagen",
+ "failed_to_shutdown": "Fehler beim Herunterfahren des Hosts",
+ "hardware": "Hardware",
+ "hostname": "Hostname",
+ "import_from_usb": "Von USB importieren",
+ "ip_address": "IP-Adresse",
+ "move_datadisk": "Datenträger verschieben",
+ "new_hostname": "Bitte einen neuen Hostnamen eingeben:",
+ "operating_system": "Betriebssystem",
+ "reboot_host": "Host Neustarten",
+ "shutdown_host": "Host herunterfahren",
+ "used_space": "Belegter Speicherplatz"
+ },
+ "log": {
+ "get_logs": "Fehler beim Abrufen der {provider} -Protokolle, {error}",
+ "log_provider": "Protokollanbieter"
+ },
+ "supervisor": {
+ "beta_backup": "Stelle sicher dass du Backups gemacht hast, bevor du diese Funktion aktivierst.",
+ "beta_join_confirm": "Möchtest du dem Beta Kanal beitreten?",
+ "beta_release_items": "Dies beinhaltet Beta-Versionen für:",
+ "beta_warning": "Beta-Versionen sind für Tester und Early Adopters gedacht und können instabile Codeänderungen enthalten",
+ "channel": "Kanal",
+ "cpu_usage": "CPU Auslastung von Supervisor",
+ "failed_to_reload": "Fehler beim Aktualisieren des Supervisor",
+ "failed_to_set_option": "Fehler beim Setzen einer Supervisor Option",
+ "failed_to_update": "Der Supervisor konnte nicht aktualisiert werden",
+ "join_beta_action": "Beta-Kanal beitreten",
+ "join_beta_description": "Erhalte Beta-Updates für Home Assistant (RCs), Supervisor und Host",
+ "leave_beta_action": "Beta-Kanal verlassen",
+ "leave_beta_description": "Erhalte stabile Updates für Home Assistant, Supervisor und Host",
+ "ram_usage": "Arbeitsspeicherbedarf des Supervisors",
+ "reload_supervisor": "Supervisor neu laden",
+ "search": "Suche",
+ "share_diagnostics": "Diagnose teilen",
+ "share_diagnostics_description": "Teile Absturzberichte und Diagnoseinformationen.",
+ "share_diagonstics_description": "Möchtest du Absturzberichte und Diagnoseinformationen automatisch freigeben, wenn der Supervisor auf unerwartete Fehler stößt? {line_break} Auf diese Weise können wir die Probleme beheben. Die Informationen sind nur für das Home Assistant Core Team zugänglich und werden nicht an andere weitergegeben. {line_break} Die Daten enthalten keine privaten/sensiblen Informationen und du kannst diese jederzeit in den Einstellungen deaktivieren.",
+ "share_diagonstics_title": "Hilf Home Assistant zu verbessern",
+ "unhealthy_description": "Das Ausführen einer fehlerhaften Installation führt zu Problemen. Unten findest du eine Liste der Probleme, die bei deiner Installation aufgetreten sind. Klicke auf die Links, um zu erfahren, wie Du diese Probleme beheben kannst.",
+ "unhealthy_reason": {
+ "docker": "Die Docker Umgebung arbeitet nicht fehlerfrei",
+ "privileged": "Der Supervisor ist nicht berechtigt",
+ "setup": "Die Einrichtung des Supervisors ist fehlgeschlagen",
+ "supervisor": "Supervisor konnte nicht aktualisiert werden",
+ "untrusted": "Nicht vertrauenswürdiger Inhalt erkannt"
+ },
+ "unhealthy_title": "Deine Installation ist fehlerhaft",
+ "unsupported_description": "Unten ist eine Liste der Probleme, die bei deiner Installation aufgetreten sind. Klicke auf die Links, um zu erfahren, wie du die Probleme beheben kannst.",
+ "unsupported_reason": {
+ "apparmor": "AppArmor ist auf dem Host nicht aktiviert",
+ "container": "Container, von denen bekannt ist, dass sie Probleme verursachen",
+ "content-trust": "Content-Trust-Validierung ist deaktiviert",
+ "content_trust": "Content-Trust-Validierung ist deaktiviert",
+ "dbus": "DBUS",
+ "docker_configuration": "Docker Konfiguration",
+ "docker_version": "Docker Version",
+ "job_conditions": "Ignorierte Jobbedingungen",
+ "lxc": "LXC",
+ "network_manager": "Netzwerk-Manager",
+ "os": "Betriebssystem",
+ "os_agent": "OS-Agent",
+ "privileged": "Der Supervisor ist nicht berechtigt",
+ "software": "Nicht unterstützte Software erkannt",
+ "source_mods": "Änderungen am Quellcode",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Deine Installation wird nicht unterstützt",
+ "update_supervisor": "Supervisor aktualisieren",
+ "warning": "WARNUNG"
+ }
+ },
+ "update_available": {
+ "core_note": "Der Supervisor führt ein Rollback auf Version {version} durch, wenn Ihre Instance nach dem Update nicht mehr auftaucht.",
+ "create_backup": "Vor der Aktualisierung ein Backup erstellen",
+ "creating_backup": "Erstellen eines Backups von {name}",
+ "description": "Du hast {version} installiert. Klicke auf Aktualisieren, um auf Version {newest_version} zu aktualisieren.",
+ "no_update": "Kein Update für {name} verfügbar",
+ "open_release_notes": "Versionshinweise öffnen",
+ "update_name": "Aktualisiere {name}",
+ "updating": "Aktualisiere {name} auf Version {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Möchtest du angemeldet bleiben?",
+ "confirm": "Ja",
+ "decline": "Nein"
+ },
+ "backup": {
+ "upload_backup": "Backup hochladen"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Aktivieren - Unterwegs",
+ "arm_custom_bypass": "Benutzerdefinierter Bypass",
+ "arm_home": "Aktivieren - Zuhause",
+ "arm_night": "Aktivieren - Nacht",
+ "arm_vacation": "Aktiviere Urlaub",
+ "clear_code": "Löschen",
+ "code": "Code",
+ "disarm": "Deaktivieren"
+ },
+ "area": {
+ "area_not_found": "Bereich nicht gefunden."
+ },
+ "automation": {
+ "last_triggered": "Zuletzt ausgelöst",
+ "trigger": "Aktionen ausführen"
+ },
+ "button": {
+ "press": "Drücken"
+ },
+ "camera": {
+ "not_available": "Bild nicht verfügbar"
+ },
+ "climate": {
+ "aux_heat": "Hilfswärme",
+ "away_mode": "Abwesenheitsmodus",
+ "cooling": "{name} Kühlung",
+ "current_temperature": "{name} aktuelle Temperatur",
+ "currently": "Aktuell",
+ "fan_mode": "Ventilator-Modus",
+ "heating": "{name} Heizung",
+ "high": "hoch",
+ "low": "niedrig",
+ "on_off": "An / aus",
+ "operation": "Aktion",
+ "preset_mode": "Voreinstellung",
+ "swing_mode": "Schwenk-Modus",
+ "target_humidity": "Soll-Luftfeuchtigkeit",
+ "target_temperature": "Soll-Temperatur",
+ "target_temperature_entity": "{name} Zieltemperatur",
+ "target_temperature_mode": "{name} Zieltemperatur {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "dekrementieren",
+ "increment": "inkrementieren",
+ "reset": "zurücksetzen"
+ }
+ },
+ "cover": {
+ "position": "Position",
+ "tilt_position": "Kippstellung"
+ },
+ "fan": {
+ "direction": "Richtung",
+ "forward": "Vorwärts",
+ "oscillate": "Oszillieren",
+ "preset_mode": "Voreinstellung",
+ "reverse": "Rückwärts",
+ "speed": "Geschwindigkeit"
+ },
+ "humidifier": {
+ "humidity": "Soll-Luftfeuchtigkeit",
+ "mode": "Modus",
+ "on_entity": "{name} eingeschaltet",
+ "target_humidity_entity": "{name} Soll-Luftfeuchtigkeit"
+ },
+ "light": {
+ "brightness": "Helligkeit",
+ "cold_white_value": "Kaltweiße Helligkeit",
+ "color_brightness": "Farbhelligkeit",
+ "color_temperature": "Farbtemperatur",
+ "effect": "Effekt",
+ "warm_white_value": "Warmweiße Helligkeit",
+ "white_value": "Weißwert"
+ },
+ "lock": {
+ "code": "Code",
+ "lock": "Verriegeln",
+ "unlock": "Entriegeln"
+ },
+ "media_player": {
+ "browse_media": "Medien durchsuchen",
+ "media_next_track": "Nächster Titel",
+ "media_pause": "Pause",
+ "media_play": "Abspielen",
+ "media_play_pause": "Spielen/Pause",
+ "media_previous_track": "Vorheriger Titel",
+ "media_stop": "Stopp",
+ "media_volume_down": "Lautstärke verringern",
+ "media_volume_mute": "Lautstärke stumm",
+ "media_volume_unmute": "Stummschaltung aufheben",
+ "media_volume_up": "Lautstärke erhöhen",
+ "nothing_playing": "Nichts wird abgespielt",
+ "sound_mode": "Sound-Modus",
+ "source": "Quelle",
+ "text_to_speak": "Text zum Sprechen",
+ "turn_off": "Ausschalten",
+ "turn_on": "Einschalten"
+ },
+ "persistent_notification": {
+ "dismiss": "Ausblenden"
+ },
+ "scene": {
+ "activate": "Aktivieren"
+ },
+ "script": {
+ "cancel": "Abbrechen",
+ "cancel_multiple": "Abbrechen {number}",
+ "run": "Ausführen"
+ },
+ "service": {
+ "run": "Ausführen"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "Abbrechen",
+ "finish": "Ende",
+ "pause": "Pause",
+ "start": "Start"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Reinigung fortsetzen",
+ "return_to_base": "Zurück zur Dockingstation",
+ "start_cleaning": "Reinigung starten",
+ "turn_off": "Ausschalten",
+ "turn_on": "Einschalten"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Abwesenheitsmodus",
+ "currently": "Aktuell",
+ "on_off": "An / Aus",
+ "operation": "Betrieb",
+ "target_temperature": "Solltemperatur"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Luftdruck",
+ "humidity": "Luftfeuchtigkeit",
+ "precipitation": "Niederschlag",
+ "temperature": "Temperatur",
+ "visibility": "Sichtweite",
+ "wind_speed": "Windgeschwindigkeit"
+ },
+ "cardinal_direction": {
+ "e": "O",
+ "ene": "ONO",
+ "ese": "OSO",
+ "n": "N",
+ "ne": "NO",
+ "nne": "NNO",
+ "nnw": "NNW",
+ "nw": "NW",
+ "s": "S",
+ "se": "SO",
+ "sse": "SSO",
+ "ssw": "SSW",
+ "sw": "SW",
+ "w": "W",
+ "wnw": "WNW",
+ "wsw": "WSW"
+ },
+ "day": "Tag",
+ "forecast": "Prognose",
+ "high": "Hoch",
+ "low": "Niedrig",
+ "night": "Nacht"
+ }
+ },
+ "common": {
+ "and": "und",
+ "back": "Zurück",
+ "cancel": "Abbrechen",
+ "clear": "Löschen",
+ "close": "Schließen",
+ "continue": "Weiter",
+ "copied": "Kopiert",
+ "copied_clipboard": "In die Zwischenablage kopiert",
+ "delete": "Löschen",
+ "disable": "Deaktivieren",
+ "enable": "Aktivieren",
+ "error_required": "Benötigt",
+ "help": "Hilfe",
+ "leave": "Verlassen",
+ "loading": "Laden",
+ "menu": "Menü",
+ "move": "Verschieben",
+ "next": "Weiter",
+ "no": "Nein",
+ "not_now": "Später",
+ "overflow_menu": "Überlauf-Menü",
+ "previous": "Vorher",
+ "refresh": "Aktualisieren",
+ "remove": "Entfernen",
+ "rename": "Umbenennen",
+ "save": "Speichern",
+ "skip": "Überspringen",
+ "stay": "Bleiben",
+ "submit": "Absenden",
+ "successfully_deleted": "Erfolgreich gelöscht",
+ "successfully_saved": "Erfolgreich gespeichert",
+ "undo": "Rückgängig",
+ "yes": "Ja"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Add-on",
+ "error": {
+ "fetch_addons": {
+ "description": "Beim Laden von Add-ons ist ein Fehler aufgetreten.",
+ "title": "Fehler beim Laden von Add-ons"
+ },
+ "no_supervisor": {
+ "description": "Add-ons werden nicht unterstützt.",
+ "title": "Kein Supervisor"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Hinzufügen",
+ "failed_create_area": "Der Bereich konnte nicht erstellt werden.",
+ "name": "Name",
+ "text": "Gib den Namen des neuen Bereichs ein.",
+ "title": "Neuen Bereich hinzufügen"
+ },
+ "add_new": "Neuen Bereich hinzufügen",
+ "area": "Bereich",
+ "clear": "Löschen",
+ "no_areas": "Du hast keine Bereiche",
+ "no_match": "Keine übereinstimmende Bereiche gefunden",
+ "show_areas": "Bereiche anzeigen"
+ },
+ "attributes": {
+ "expansion_header": "Attribute"
+ },
+ "blueprint-picker": {
+ "add_user": "Benutzer hinzufügen",
+ "remove_user": "Benutzer entfernen",
+ "select_blueprint": "Wähle eine Vorlage aus"
+ },
+ "calendar": {
+ "my_calendars": "Meine Kalender",
+ "today": "Heute"
+ },
+ "data-table": {
+ "clear": "Löschen",
+ "filtering_by": "Filtern nach",
+ "hidden": "{number} ausgeblendet",
+ "no-data": "Keine Daten",
+ "search": "Suche"
+ },
+ "date-range-picker": {
+ "end_date": "Enddatum",
+ "ranges": {
+ "last_week": "Letzte Woche",
+ "this_week": "Diese Woche",
+ "today": "Heute",
+ "yesterday": "Gestern"
+ },
+ "select": "Auswählen",
+ "start_date": "Anfangsdatum"
+ },
+ "device-picker": {
+ "clear": "Löschen",
+ "device": "Gerät",
+ "no_area": "Kein Bereich",
+ "no_devices": "Du hast keine Geräte",
+ "no_match": "Keine übereinstimmende Geräte gefunden",
+ "show_devices": "Geräte anzeigen",
+ "toggle": "Umschalten"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Attribut",
+ "show_attributes": "Attribute anzeigen"
+ },
+ "entity-picker": {
+ "clear": "Löschen",
+ "edit": "Bearbeiten",
+ "entity": "Entität",
+ "no_match": "Keine übereinstimmende Entitäten gefunden",
+ "show_entities": "Entitäten anzeigen"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "Integration \"Historie\" deaktiviert",
+ "loading_history": "Lade Zustandsverlauf…",
+ "no_history_found": "Kein Zustandsverlauf gefunden."
+ },
+ "logbook": {
+ "by": "durch",
+ "by_service": "durch Service",
+ "entries_not_found": "Keine Logbuch-Ereignisse gefunden.",
+ "messages": {
+ "became_unavailable": "nicht mehr verfügbar",
+ "changed_to_state": "wechselte zu {state}",
+ "cleared_device_class": "zurückgesetzt (kein(e) {device_class} erkannt)",
+ "cleared_tampering": "beseitigte Manipulation",
+ "detected_device_class": "{device_class} erkannt",
+ "detected_tampering": "erkannte Manipulation",
+ "is_closing": "wird geschlossen",
+ "is_opening": "wird geöffnet",
+ "rose": "aufgegangen",
+ "set": "untergegangen",
+ "turned_off": "ausgeschaltet",
+ "turned_on": "eingeschaltet",
+ "was_at_home": "wurde zu Hause erkannt",
+ "was_at_state": "wurde bei {state} erkannt",
+ "was_away": "wurde als abwesend erkannt",
+ "was_closed": "wurde geschlossen",
+ "was_connected": "wurde verbunden",
+ "was_disconnected": "wurde getrennt",
+ "was_locked": "wurde gesperrt",
+ "was_low": "war niedrig",
+ "was_normal": "war normal",
+ "was_opened": "wurde geöffnet",
+ "was_plugged_in": "wurde eingesteckt",
+ "was_safe": "war sicher",
+ "was_unlocked": "wurde entsperrt",
+ "was_unplugged": "wurde ausgesteckt",
+ "was_unsafe": "war unsicher"
+ },
+ "retrieval_error": "Logbuch konnte nicht geladen werden",
+ "show_trace": "Trace anzeigen"
+ },
+ "media-browser": {
+ "audio_not_supported": "Dein Browser unterstützt das Audioelement nicht.",
+ "choose_player": "Wähle ein Abspielgerät",
+ "class": {
+ "album": "Album",
+ "app": "App",
+ "artist": "Künstler",
+ "channel": "Kanal",
+ "composer": "Komponist",
+ "contributing_artist": "Mitwirkender Künstler",
+ "directory": "Bibliothek",
+ "episode": "Episode",
+ "game": "Spiel",
+ "genre": "Genre",
+ "image": "Bild",
+ "movie": "Film",
+ "music": "Musik",
+ "playlist": "Wiedergabeliste",
+ "podcast": "Podcast",
+ "season": "Episode",
+ "track": "Titel",
+ "tv_show": "TV-Sendung",
+ "url": "URL",
+ "video": "Video"
+ },
+ "documentation": "Dokumentation",
+ "learn_adding_local_media": "Erfahre mehr über das Hinzufügen von Medien in der {documentation}.",
+ "local_media_files": "Platziere deine Video-, Audio- und Bilddateien im Medienverzeichnis, um sie im Browser oder auf unterstützten Mediaplayern durchsuchen und abspielen zu können.",
+ "media-player-browser": "Medien",
+ "media_browsing_error": "Fehler beim Durchsuchen der Medien",
+ "media_not_supported": "Der Browser Media Player unterstützt diese Art von Medien nicht",
+ "media_player": "Media Player",
+ "no_items": "Keine Einträge",
+ "no_local_media_found": "Keine lokalen Medien gefunden",
+ "no_media_folder": "Es sieht so aus, als hättest du noch kein Medienverzeichnis erstellt.",
+ "pick": "Auswählen",
+ "pick-media": "Medien auswählen",
+ "play": "Abspielen",
+ "play-media": "Medien abspielen",
+ "setup_local_help": "Lese die {documentation} über die Einrichtung lokaler Medien.",
+ "video_not_supported": "Dein Browser unterstützt das Videoelement nicht.",
+ "web-browser": "Webbrowser"
+ },
+ "picture-upload": {
+ "label": "Bild",
+ "unsupported_format": "Nicht unterstütztes Format, bitte wähle ein JPEG-, PNG- oder GIF-Bild."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "QR-Code Wert eingeben",
+ "manual_input": "Du kannst den QR-Code mit einem anderen QR-Scanner einscannen und den Code in die untenstehende Eingabe einfügen",
+ "not_supported": "Dein Browser unterstützt kein Scannen von QR-Codes.",
+ "only_https_supported": "Du kannst deine Kamera nur dann zum Scannen eines QR-Codes verwenden, wenn du HTTPS verwendest.",
+ "select_camera": "Kamera auswählen"
+ },
+ "related-filter-menu": {
+ "filter": "Filter",
+ "filter_by_area": "Nach Bereich filtern",
+ "filter_by_device": "Nach Gerät filtern",
+ "filter_by_entity": "Nach Entität filtern",
+ "filtered_by_area": "Bereich: {area_name}",
+ "filtered_by_device": "Gerät: {device_name}",
+ "filtered_by_entity": "Entität: {entity_name}"
+ },
+ "related-items": {
+ "area": "Bereich",
+ "automation": "Teil der folgenden Automatisierungen",
+ "device": "Gerät",
+ "entity": "Verwandte Entitäten",
+ "group": "Teil der folgenden Gruppen",
+ "integration": "Integration",
+ "no_related_found": "Es wurden keine verwandten Elemente gefunden.",
+ "scene": "Teil der folgenden Szenen",
+ "script": "Teil der folgenden Skripte"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\none {Tag}\nother {Tagen}\n}",
+ "hour": "{count} {count, plural,\none {Stunde}\nother {Stunden}\n}",
+ "minute": "{count} {count, plural,\none {Minute}\nother {Minuten}\n}",
+ "second": "{count} {count, plural,\none {Sekunde}\nother {Sekunden}\n}",
+ "week": "{count} {count, plural,\none {Woche}\nother {Wochen}\n}"
+ },
+ "future_duration": {
+ "day": "In {count} {count, plural,\n one {Tag}\n other {Tagen}\n}",
+ "hour": "In {count} {count, plural,\n one {Stunde}\n other {Stunden}\n}",
+ "minute": "In {count} {count, plural,\n one {Minute}\n other {Minuten}\n}",
+ "second": "In {count} {count, plural,\n one {Sekunde}\n other {Sekunden}\n}",
+ "week": "In {count} {count, plural,\n one {Woche}\n other {Wochen}\n}"
+ },
+ "just_now": "Gerade jetzt",
+ "never": "Noch nie",
+ "past_duration": {
+ "day": "Vor {count} {count, plural,\n one {Tag}\n other {Tagen}\n}",
+ "hour": "Vor {count} {count, plural,\n one {Stunde}\n other {Stunden}\n}",
+ "minute": "Vor {count} {count, plural,\n one {Minute}\n other {Minuten}\n}",
+ "second": "Vor {count} {count, plural,\n one {Sekunde}\n other {Sekunden}\n}",
+ "week": "Vor {count} {count, plural,\n one {Woche}\n other {Wochen}\n}"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Integrationsdokumentation",
+ "required": "Dieses Feld ist erforderlich",
+ "service_data": "Dienstdaten",
+ "target": "Ziele",
+ "target_description": "Was dieser Dienst als Bereiche, Geräte oder Entitäten verwenden soll."
+ },
+ "service-picker": {
+ "service": "Dienst"
+ },
+ "statistic-picker": {
+ "learn_more": "Erfahre mehr über Statistiken",
+ "missing_entity": "Warum ist meine Entität nicht aufgeführt?",
+ "no_match": "Keine passenden Statistiken gefunden",
+ "no_statistics": "Du hast keine Statistiken",
+ "statistic": "Statistik"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Statistik wird geladen…",
+ "no_statistics_found": "Keine Statistik gefunden.",
+ "statistic_types": {
+ "max": "max",
+ "mean": "mittel",
+ "min": "min",
+ "sum": "Summe"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Bereich auswählen",
+ "add_device_id": "Gerät auswählen",
+ "add_entity_id": "Entität auswählen",
+ "expand": "Erweitern",
+ "expand_area_id": "Teile diesen Bereich in separate Geräte und Entitäten auf.",
+ "expand_device_id": "Teile dieses Gerät in separate Entitäten auf.",
+ "remove": "Entfernen",
+ "remove_area_id": "Bereich entfernen",
+ "remove_device_id": "Gerät entfernen",
+ "remove_entity_id": "Entität entfernen"
+ },
+ "user-picker": {
+ "add_user": "Benutzer hinzufügen",
+ "no_user": "Kein Benutzer",
+ "remove_user": "Benutzer entfernen"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Wenn aktiviert werden neu erkannte Entitäten für {integration} automatisch zu Home Assistant hinzugefügt.",
+ "enable_new_entities_label": "Neu hinzugefügte Entitäten aktivieren.",
+ "enable_polling_description": "Ob Home Assistant automatisch {integration} Entitäten nach Updates abfragen soll.",
+ "enable_polling_label": "Aktiviere Polling für Updates.",
+ "restart_home_assistant": "Du musst Home Assistant neu starten, damit deine Änderungen wirksam werden.",
+ "title": "Einstellungen für {integration}",
+ "update": "Aktualisieren"
+ },
+ "domain_toggler": {
+ "reset_entities": "Entitäten zurücksetzen",
+ "title": "Domänen umschalten"
+ },
+ "entity_registry": {
+ "control": "Steuerung",
+ "customize_link": "Entitätsanpassungen",
+ "dismiss": "Ausblenden",
+ "editor": {
+ "advanced": "Erweiterte Einstellungen",
+ "area": "Nur Entitätsbereich festlegen",
+ "area_note": "Standardmäßig befinden sich die Entitäten eines Geräts in demselben Bereich wie das Gerät. Wenn du den Bereich dieser Entität änderst, folgt sie nicht mehr dem Bereich des Geräts.",
+ "change_device_area": "Gerätebereich ändern",
+ "confirm_delete": "Möchtest du diese Entität wirklich löschen?",
+ "delete": "Löschen",
+ "device_class": "Anzeigen als",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Tür",
+ "garage_door": "Garagentor",
+ "opening": "Andere",
+ "window": "Fenster"
+ },
+ "cover": {
+ "door": "Tür",
+ "garage": "Garagentor",
+ "window": "Fenster"
+ }
+ },
+ "device_disabled": "Das Gerät dieser Entität ist deaktiviert.",
+ "enabled_cause": "Deaktiviert durch {cause}.",
+ "enabled_delay_confirm": "Die aktivierten Entitäten werden in {delay} Sekunden zu Home Assistant hinzugefügt",
+ "enabled_description": "Deaktivierte Entitäten werden nicht zu Home Assistant hinzugefügt.",
+ "enabled_label": "Entität aktivieren",
+ "enabled_restart_confirm": "Starte Home Assistant neu, um die Aktivierung der Entitäten abzuschließen",
+ "entity_id": "Entitäts-ID",
+ "follow_device_area": "Gerätebereich übernehmen",
+ "icon": "Symbol",
+ "icon_error": "Symbole sollten das Format 'Präfix:iconname' haben, z. B. 'mdi:home'",
+ "name": "Namen",
+ "note": "Hinweis: Dies funktioniert möglicherweise noch nicht bei allen Integrationen.",
+ "open_device_settings": "Geräteeinstellungen öffnen",
+ "unavailable": "Diese Entität ist nicht verfügbar.",
+ "update": "Aktualisieren"
+ },
+ "faq": "Dokumentation",
+ "info_customize": "Du kannst einige Attribute im Abschnitt {customize_link} überschreiben.",
+ "no_unique_id": "Diese Entität (\"{entity_id}\") hat keine eindeutige ID, daher können die Einstellungen nicht über die UI verwaltet werden. Schaue in der {faq_link} nach für mehr Details.",
+ "related": "Verwandte",
+ "settings": "Einstellungen"
+ },
+ "generic": {
+ "cancel": "Abbrechen",
+ "close": "Schließen",
+ "default_confirmation_title": "Bist du sicher?",
+ "ok": "OK"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Anfangswert",
+ "maximum": "Maximaler Wert",
+ "minimum": "Minimaler Wert",
+ "restore": "Den letzten bekannten Wert wiederherstellen, wenn Home Assistant startet",
+ "step": "Schrittgröße"
+ },
+ "generic": {
+ "icon": "Symbol",
+ "name": "Name"
+ },
+ "input_datetime": {
+ "date": "Datum",
+ "datetime": "Datum und Uhrzeit",
+ "mode": "Was möchtest du eingeben",
+ "time": "Uhrzeit"
+ },
+ "input_number": {
+ "box": "Eingabefeld",
+ "max": "Maximaler Wert",
+ "min": "Minimaler Wert",
+ "mode": "Anzeigemodus",
+ "slider": "Schieberegler",
+ "step": "Schrittgröße",
+ "unit_of_measurement": "Maßeinheit"
+ },
+ "input_select": {
+ "add": "Hinzufügen",
+ "add_option": "Option hinzufügen",
+ "no_options": "Es gibt noch keine Optionen.",
+ "options": "Optionen"
+ },
+ "input_text": {
+ "max": "Maximale Länge",
+ "min": "Minimale Länge",
+ "mode": "Anzeigemodus",
+ "password": "Passwort",
+ "pattern": "Regex-Muster für die clientseitige Validierung",
+ "text": "Text"
+ },
+ "platform_not_loaded": "Die {platform}-Integration ist nicht geladen. Bitte füge sie deiner Konfiguration hinzu, indem du entweder 'default_config:' oder ''{platform}:'' einfügst.",
+ "required_error_msg": "Dieses Feld ist erforderlich",
+ "timer": {
+ "duration": "Dauer"
+ },
+ "yaml_not_editable": "Die Einstellungen dieser Entität können nicht über die Benutzeroberfläche bearbeitet werden. Nur über die Benutzeroberfläche eingerichtete Entitäten können über die Benutzeroberfläche konfiguriert werden."
+ },
+ "image_cropper": {
+ "crop": "Zuschneiden"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Abdeckung schließen",
+ "close_tile_cover": "Abdeckung kippend schließen",
+ "close_tilt_cover": "Abdeckung kippend schließen",
+ "open_cover": "Abdeckung öffnen",
+ "open_tilt_cover": "Abdeckung kippend öffnen",
+ "stop_cover": "Abdeckung stoppen"
+ },
+ "details": "Details",
+ "dismiss": "Dialog ausblenden",
+ "edit": "Entität bearbeiten",
+ "history": "Verlauf",
+ "last_changed": "Zuletzt geändert",
+ "last_updated": "Zuletzt aktualisiert",
+ "logbook": "Logbuch",
+ "person": {
+ "create_zone": "Zone vom aktuellen Standort erstellen"
+ },
+ "remote": {
+ "activity": "aktuelle Aktivität"
+ },
+ "restored": {
+ "confirm_remove_text": "Bist du dir sicher, dass du diese Entität löschen möchtest?",
+ "confirm_remove_title": "Entität entfernen?",
+ "not_provided": "Diese Entität ist derzeit nicht verfügbar und ist verwitwet für eine entfernte, geänderte oder gestörte Integration oder ein Gerät.",
+ "remove_action": "Entität entfernen",
+ "remove_intro": "Wenn die Entität nicht mehr verwendet wird, können Sie sie bereinigen, indem Sie sie entfernen."
+ },
+ "script": {
+ "last_action": "Letzte Aktion",
+ "last_triggered": "Zuletzt ausgelöst"
+ },
+ "settings": "Entitätseinstellungen",
+ "show_more": "Mehr anzeigen",
+ "sun": {
+ "elevation": "Höhe",
+ "rising": "Aufgang",
+ "setting": "Untergang"
+ },
+ "updater": {
+ "title": "Update-Anweisungen"
+ },
+ "vacuum": {
+ "clean_spot": "Stelle säubern",
+ "commands": "Staubsaugerbefehle:",
+ "fan_speed": "Lüftergeschwindigkeit",
+ "locate": "Lokalisieren",
+ "pause": "Pause",
+ "return_home": "Zum Hub zurückkehren",
+ "start": "Start",
+ "start_pause": "Start/Pause",
+ "status": "Status",
+ "stop": "Stoppen"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Versuchen MQTT-Nachrichten als JSON zu parsen",
+ "entities": "Entitäten",
+ "no_entities": "Keine Entitäten",
+ "no_triggers": "Keine Auslöser",
+ "payload_display": "Payload anzeigen",
+ "recent_messages": "{n} zuletzt empfangene Nachricht(en)",
+ "show_as_yaml": "Als YAML anzeigen",
+ "title": "{device} Debug-Informationen",
+ "triggers": "Auslöser"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Optionen"
+ },
+ "loading": {
+ "loading_flow": "Bitte warte, während die Optionen für {integration} initialisiert werden",
+ "loading_step": "Nächster Schritt für {integration} wird geladen"
+ },
+ "success": {
+ "description": "Optionen wurden erfolgreich gespeichert."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Bereiche",
+ "automation": "Automatisierungen",
+ "blueprint": "Vorlagen",
+ "core": "Allgemein",
+ "customize": "Anpassung",
+ "devices": "Geräte",
+ "energy": "Energiekonfiguration",
+ "entities": "Entitäten",
+ "helpers": "Helfer",
+ "info": "Info",
+ "integrations": "Integrationen",
+ "logs": "Logs",
+ "lovelace": "Lovelace Dashboards",
+ "person": "Personen",
+ "scene": "Szenen",
+ "script": "Skripte",
+ "server_control": "Serversteuerung",
+ "tag": "NFC Tags",
+ "users": "Benutzer",
+ "zone": "Zonen"
+ },
+ "reload": {
+ "automation": "Automatisierungen",
+ "command_line": "Kommandozeilen-Entitäten",
+ "core": "Ort & Anpassungen",
+ "filesize": "Dateigröße-Entitäten",
+ "filter": "Filter-Entitäten",
+ "generic": "Allgemeine IP-Kamera Entitäten",
+ "generic_thermostat": "Generische Thermostatentitäten",
+ "group": "Gruppen, Gruppenentitäten und Benachrichtigungsdienste",
+ "history_stats": "Verlaufsstatistik-Entitäten",
+ "homekit": "HomeKit",
+ "input_boolean": "Eingabe-Booleans",
+ "input_datetime": "Eingabe-Datums- und Zeitfelder",
+ "input_number": "Eingabenummern",
+ "input_select": "Eingabe-Auswahl",
+ "input_text": "Eingabetexte",
+ "min_max": "Min/Max-Entitäten",
+ "mqtt": "Manuell konfigurierte MQTT-Entitäten",
+ "person": "Personen",
+ "ping": "Binäre Ping-Sensorentitäten",
+ "reload": "{domain}",
+ "rest": "Rest-Entitäten und Benachrichtigungsdienste",
+ "rpi_gpio": "Raspberry Pi GPIO Entitäten",
+ "scene": "Szenen",
+ "script": "Skripte",
+ "smtp": "SMTP-Benachrichtigungsdienste",
+ "statistics": "Statistik-Entitäten",
+ "telegram": "Telegram-Benachrichtigungsdienste",
+ "template": "Template-Entitäten",
+ "themes": "Themes",
+ "trend": "Trend-Entitäten",
+ "universal": "Universelle Media Player-Entitäten",
+ "zone": "Zonen"
+ },
+ "server_control": {
+ "perform_action": "Server {action}",
+ "restart": "Neu starten",
+ "stop": "Stoppen"
+ },
+ "types": {
+ "navigation": "Navigieren",
+ "reload": "Neu laden",
+ "server_control": "Server"
+ }
+ },
+ "filter_placeholder": "Entitätsfilter",
+ "key_c_hint": "Drücke auf einer beliebigen Seite 'c', um diese Suchleiste zu öffnen",
+ "nothing_found": "Nichts gefunden!",
+ "title": "Schnelle Suche"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant hat nichts gehört",
+ "error": "Ups, ein Fehler ist aufgetreten.",
+ "found": "Ich habe folgendes für dich gefunden:",
+ "how_can_i_help": "Wie kann ich helfen?",
+ "label": "Gib eine Frage ein und klicke auf 'Enter'.",
+ "label_voice": "Schreibe und bestätige über die Eingabetaste oder tippe auf das Mikrofon um zu sprechen"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Geräte über dieses Gerät hinzufügen",
+ "clusters": "Cluster verwalten",
+ "device_children": "Endgeräte anzeigen",
+ "reconfigure": "Gerät neu konfigurieren",
+ "remove": "Gerät entfernen",
+ "view_in_visualization": "Visualisierung in einer Map",
+ "zigbee_information": "ZigBee-Gerätesignatur"
+ },
+ "confirmations": {
+ "remove": "Möchtest du das Gerät wirklich entfernen?"
+ },
+ "device_children": "Zigbee-Endgeräte",
+ "device_signature": "ZigBee-Gerätesignatur",
+ "last_seen": "Zuletzt gesehen",
+ "manuf": "von {manufacturer}",
+ "no_area": "Kein Bereich",
+ "power_source": "Energiequelle",
+ "quirk": "Eigenart",
+ "services": {
+ "reconfigure": "Konfiguriere das ZHA-Gerät neu (Gerät heilen). Verwende diese Option, wenn du Probleme mit dem Gerät hast. Wenn es sich bei dem fraglichen Gerät um ein batteriebetriebenes Gerät handelt, vergewissere dich, dass es wach ist und Befehle akzeptiert, wenn du diesen Dienst nutzt.",
+ "remove": "Ein Gerät aus dem ZigBee-Netzwerk entfernen.",
+ "updateDeviceName": "Lege einen benutzerdefinierten Namen für dieses Gerät in der Geräteregistrierung fest.",
+ "zigbee_information": "Zeige die ZigBee-Informationen für das Gerät an."
+ },
+ "unknown": "Unbekannt",
+ "zha_device_card": {
+ "device_name_placeholder": "Gerätename ändern"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Attribut",
+ "battery_device_warning": "Du musst batteriebetriebene Geräte aktivieren, bevor du den Neukonfigurationsvorgang startest. Anweisungen zum Aktivieren des Geräts findest du im Handbuch deines Geräts.",
+ "bind_header": "Bindung",
+ "button_hide": "Details ausblenden",
+ "button_show": "Details anzeigen",
+ "cluster_header": "Cluster",
+ "configuration_complete": "Geräteneukonfiguration abgeschlossen.",
+ "configuration_failed": "Die Neukonfiguration des Geräts ist fehlgeschlagen. Weitere Informationen sind möglicherweise in den Protokollen verfügbar.",
+ "configuring_alt": "Konfigurieren",
+ "heading": "Gerät neu konfigurieren",
+ "in_progress": "Das Gerät wird neu konfiguriert. Dies könnte eine Weile dauern.",
+ "introduction": "Konfiguriere ein Gerät in deinem Zigbee-Netzwerk neu. Verwende diese Funktion, wenn dein Gerät nicht ordnungsgemäß funktioniert.",
+ "min_max_change": "min/max/change",
+ "reporting_header": "Reporting",
+ "run_in_background": "Du kannst diesen Dialog schließen und die Neukonfiguration wird im Hintergrund fortgesetzt.",
+ "start_reconfiguration": "Neukonfiguration starten"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\none {Tag}\nother {Tage}\n}",
+ "hour": "{count} {count, plural,\none {Stunde}\nother {Stunden}\n}",
+ "minute": "{count} {count, plural,\none {Minute}\nother {Minuten}\n}",
+ "second": "{count} {count, plural,\none {Sekunde}\nother {Sekunden}\n}",
+ "week": "{count} {count, plural,\none {Woche}\nother {Wochen}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Du kannst deine Konfiguration weiterhin in YAML bearbeiten.",
+ "editor_not_available": "Kein visueller Editor für Typ \"{type}\" verfügbar.",
+ "editor_not_supported": "Visueller Editor wird für diese Konfiguration nicht unterstützt.",
+ "error_detected": "Konfigurationsfehler erkannt",
+ "key_missing": "Erforderlicher Schlüssel \"{key}\" fehlt.",
+ "key_not_expected": "Der Schlüssel \"{key}\" wird vom visuellen Editor nicht erwartet oder nicht unterstützt.",
+ "key_wrong_type": "Der angegebene Wert für \"{key}\" wird vom visuellen Editor nicht unterstützt. Wir unterstützen ({type_correct}), haben aber ({type_wrong}) erhalten.",
+ "no_state_array_support": "Mehrere Statuswerte werden im visuellen Editor nicht unterstützt",
+ "no_template_editor_support": "Templates werden im visuellen Editor nicht unterstützt",
+ "no_type_provided": "Kein Typ angegeben."
+ },
+ "supervisor": {
+ "ask": "Um Hilfe bitten",
+ "observer": "Überprüfe den Observer",
+ "reboot": "Versuche den Host neu zu starten",
+ "system_health": "Überprüfe Systemzustand",
+ "title": "Supervisor-Bedienfeld konnte nicht geladen werden!",
+ "wait": "Wenn du gerade erst hochgefahren hast, dann stelle sicher dass du dem Supervisor genug Zeit zum Starten gegeben hast."
+ }
+ },
+ "login-form": {
+ "log_in": "Anmelden",
+ "password": "Passwort",
+ "remember": "Merken"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Klicke auf die Schaltfläche, um {entity} zu konfigurieren",
+ "close": "Schließen",
+ "dismiss_all": "Alle schließen",
+ "empty": "Keine Benachrichtigungen",
+ "title": "Benachrichtigungen"
+ },
+ "notification_toast": {
+ "connection_lost": "Verbindung getrennt. Verbinde erneut…",
+ "dismiss": "Ausblenden",
+ "integration_starting": "Starte {integration}. Währenddessen ist noch nicht alles verfügbar.",
+ "service_call_failed": "Fehler beim Aufrufen des Diensts {service}.",
+ "started": "Home Assistant wurde vollständig gestartet!",
+ "starting": "Home Assistant startet. Währenddessen ist noch nicht alles verfügbar.",
+ "triggered": "{name} ausgelöst",
+ "wrapping_up_startup": "Startvorgang fast fertig. Währenddessen ist noch nicht alles verfügbar."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Fehlende Konfigurationsoptionen? Aktiviere den erweiterten Modus.",
+ "link_profile_page": "deine Profilseite"
+ },
+ "areas": {
+ "add_picture": "Bild hinzufügen",
+ "assigned_to_area": "Diesem Bereich zugewiesen",
+ "caption": "Bereiche",
+ "data_table": {
+ "area": "Bereich",
+ "devices": "Geräte",
+ "entities": "Entitäten"
+ },
+ "delete": {
+ "confirmation_text": "Die Zuordnung aller Geräte zu diesem Bereich wird aufgelöst.",
+ "confirmation_title": "Möchtest du diesen Bereich wirklich löschen?"
+ },
+ "description": "Geräte und Entitäten in Bereiche gruppieren",
+ "edit_settings": "Bereichseinstellungen",
+ "editor": {
+ "area_id": "Bereich-ID",
+ "create": "Erstellen",
+ "default_name": "Neuer Bereich",
+ "delete": "Löschen",
+ "linked_entities_caption": "Entitäten",
+ "name": "Name",
+ "name_required": "Name erforderlich",
+ "no_linked_entities": "Es sind keine Entitäten mit diesem Bereich verknüpft.",
+ "unknown_error": "Unbekannter Fehler",
+ "update": "Aktualisieren"
+ },
+ "picker": {
+ "create_area": "Bereich erstellen",
+ "header": "Bereiche",
+ "integrations_page": "Integrationsseite",
+ "introduction": "In Bereichen wird festgelegt, wo sich Geräte befinden. Diese Informationen werden in Home Assistant verwendet, um Sie bei der Organisation Ihrer Benutzeroberfläche, Berechtigungen und Integrationen mit anderen Systemen zu unterstützen.",
+ "introduction2": "Um Geräte in einem Bereich zu platzieren, navigiere mit dem Link unten zur Integrationsseite und klicke dann auf eine konfigurierte Integration, um zu den Gerätekarten zu gelangen.",
+ "no_areas": "Sieht aus als hättest du noch keine Bereiche!"
+ },
+ "targeting_area": "Ausrichtung auf diesen Bereich"
+ },
+ "automation": {
+ "caption": "Automatisierungen",
+ "description": "Individuelle Regeln für dein Zuhause erstellen",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Eine Vorlage verwenden"
+ },
+ "header": "Erstelle eine neue Automatisierung",
+ "how": "Wie möchtest du deine neue Automatisierung erstellen?",
+ "start_empty": "Mit einer leeren Automatisierung starten",
+ "start_empty_description": "Erstelle eine neue Automatisierung von Grund auf",
+ "thingtalk": {
+ "create": "Erstellen",
+ "header": "Beschreibe die Automatisierung, die du erstellen möchtest",
+ "input_label": "Was soll diese Automatisierung tun?",
+ "intro": "Und wir werden versuchen, sie für dich zu erstellen. Zum Beispiel: Schalte das Licht aus, wenn ich gehe."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Aktion hinzufügen",
+ "delete": "Löschen",
+ "delete_confirm": "Möchtest du das wirklich löschen?",
+ "duplicate": "Duplizieren",
+ "header": "Aktionen",
+ "introduction": "Aktionen werden von Home Assistant ausgeführt, wenn Automatisierungen ausgelöst werden.",
+ "learn_more": "Erfahre mehr über Aktionen",
+ "name": "Aktion",
+ "type": {
+ "choose": {
+ "add_option": "Option hinzufügen",
+ "conditions": "Bedingungen",
+ "default": "Standard-Aktionen",
+ "label": "Auswählen",
+ "option": "Option {number}",
+ "remove_option": "Option entfernen",
+ "sequence": "Aktionen"
+ },
+ "condition": {
+ "label": "Bedingung"
+ },
+ "delay": {
+ "delay": "Dauer",
+ "label": "Warten auf den Ablauf der Zeit (Verzögerung)"
+ },
+ "device_id": {
+ "action": "Aktion",
+ "extra_fields": {
+ "brightness_pct": "Helligkeit",
+ "code": "Code",
+ "flash": "Blinken",
+ "humidity": "Luftfeuchtigkeit",
+ "message": "Nachricht",
+ "mode": "Modus",
+ "position": "Position",
+ "title": "Titel",
+ "value": "Wert"
+ },
+ "label": "Gerät"
+ },
+ "event": {
+ "event": "Ereignis",
+ "label": "Ereignis auslösen",
+ "service_data": "Dienstdaten"
+ },
+ "repeat": {
+ "label": "Wiederholen",
+ "sequence": "Aktionen",
+ "type": {
+ "count": {
+ "label": "Anzahl"
+ },
+ "until": {
+ "conditions": "Bis-Bedingungen",
+ "label": "Bis"
+ },
+ "while": {
+ "conditions": "Während-Bedingungen",
+ "label": "Während"
+ }
+ },
+ "type_select": "Wiederholungstyp"
+ },
+ "scene": {
+ "label": "Szene aktivieren"
+ },
+ "service": {
+ "label": "Dienst ausführen"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Bei Timeout fortsetzen",
+ "label": "Warten auf einen Auslöser",
+ "timeout": "Timeout (optional)"
+ },
+ "wait_template": {
+ "continue_timeout": "Bei Timeout fortsetzen",
+ "label": "Warten auf eine Vorlage",
+ "timeout": "Timeout (optional)",
+ "wait_template": "Warte-Template"
+ }
+ },
+ "type_select": "Aktionstyp",
+ "unsupported_action": "Visueller Editor nicht unterstützt für Aktion: {action}"
+ },
+ "alias": "Name",
+ "blueprint": {
+ "blueprint_to_use": "Zu verwendende Vorlage",
+ "header": "Vorlage",
+ "no_blueprints": "Du hast keine Vorlagen",
+ "no_inputs": "Diese Vorlage hat keine Eingänge."
+ },
+ "conditions": {
+ "add": "Bedingung hinzufügen",
+ "delete": "Löschen",
+ "delete_confirm": "Möchtest du das wirklich löschen?",
+ "duplicate": "Duplizieren",
+ "header": "Bedingungen",
+ "introduction": "Die Bedingungen sind optional und verhindern die weitere Ausführung, sofern nicht alle Bedingungen erfüllt sind.",
+ "learn_more": "Erfahre mehr über Bedingungen",
+ "name": "Zustand",
+ "type": {
+ "and": {
+ "label": "Und"
+ },
+ "device": {
+ "condition": "Bedingung",
+ "extra_fields": {
+ "above": "Über",
+ "below": "Unter",
+ "for": "Dauer",
+ "hvac_mode": "HLK-Modus",
+ "preset_mode": "Voreinstellung"
+ },
+ "label": "Gerät"
+ },
+ "not": {
+ "label": "Nicht"
+ },
+ "numeric_state": {
+ "above": "Über",
+ "below": "Unter",
+ "label": "Numerischer Zustand",
+ "value_template": "Wert-Template (optional)"
+ },
+ "or": {
+ "label": "Oder"
+ },
+ "state": {
+ "label": "Zustand",
+ "state": "Zustand"
+ },
+ "sun": {
+ "after": "Nach:",
+ "after_offset": "Nach Versatz (optional)",
+ "before": "Vor:",
+ "before_offset": "Vor Versatz (optional)",
+ "label": "Sonne",
+ "sunrise": "Sonnenaufgang",
+ "sunset": "Sonnenuntergang"
+ },
+ "template": {
+ "label": "Template",
+ "value_template": "Wert-Template"
+ },
+ "time": {
+ "after": "Nach",
+ "before": "Vor",
+ "label": "Zeit",
+ "type_input": "Wert eines Datums-/Zeit-Helfers",
+ "type_value": "Feste Zeit",
+ "weekdays": {
+ "fri": "Freitag",
+ "mon": "Montag",
+ "sat": "Samstag",
+ "sun": "Sonntag",
+ "thu": "Donnerstag",
+ "tue": "Dienstag",
+ "wed": "Mittwoch"
+ }
+ },
+ "trigger": {
+ "id": "Trigger-ID",
+ "label": "Trigger",
+ "no_triggers": "Keine Trigger verfügbar"
+ },
+ "zone": {
+ "entity": "Entität mit Standort",
+ "label": "Zone",
+ "zone": "Zone"
+ }
+ },
+ "type_select": "Bedingungstyp",
+ "unsupported_condition": "Visueller Editor nicht unterstützt für Bedingung: {condition}"
+ },
+ "copy_to_clipboard": "In die Zwischenablage kopieren",
+ "default_name": "Neue Automatisierung",
+ "description": {
+ "label": "Beschreibung",
+ "placeholder": "Optionale Beschreibung"
+ },
+ "edit_ui": "Im visuellen Editor bearbeiten",
+ "edit_yaml": "Als YAML bearbeiten",
+ "enable_disable": "Automatisierung aktivieren / deaktivieren",
+ "introduction": "Benutze Automatisierungen, um deinem Zuhause Leben einzuhauchen.",
+ "load_error_not_editable": "Nur Automatisierungen in automations.yaml sind editierbar.",
+ "load_error_unknown": "Fehler beim Laden der Automatisierung ({err_no}).",
+ "max": {
+ "parallel": "Maximale Anzahl paralleler Läufe",
+ "queued": "Länge der Warteschlange"
+ },
+ "modes": {
+ "description": "Der Modus steuert, was passiert, wenn ein Skript aufgerufen wird, während es noch von einem oder mehreren vorherigen Aufrufen ausgeführt wird. Lies {documentation_link} für weitere Informationen.",
+ "documentation": "Automatisierungs-Dokumentation",
+ "label": "Modus",
+ "parallel": "Parallel",
+ "queued": "In Warteschlange",
+ "restart": "Neu starten",
+ "single": "Einzeln (Standard)"
+ },
+ "move_down": "Runterschieben",
+ "move_up": "Hochschieben",
+ "save": "Speichern",
+ "show_trace": "Trace anzeigen",
+ "triggers": {
+ "add": "Auslöser hinzufügen",
+ "delete": "Löschen",
+ "delete_confirm": "Möchtest du das wirklich löschen?",
+ "duplicate": "Duplizieren",
+ "edit_id": "Trigger-ID bearbeiten",
+ "header": "Auslöser",
+ "id": "Trigger-ID",
+ "introduction": "Auslöser starten automatisierte Abläufe. Es ist möglich, mehrere Auslöser für dieselbe Abfolge zu definieren. Wenn ein Auslöser aktiviert wird, prüft Home Assistant die Bedingungen, sofern vorhanden, und führt die Aktion aus.",
+ "learn_more": "Erfahre mehr über Auslöser",
+ "name": "Auslöser",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Über",
+ "below": "Unter",
+ "for": "Dauer (optional)",
+ "zone": "Zone"
+ },
+ "label": "Gerät",
+ "trigger": "Auslöser"
+ },
+ "event": {
+ "context_user_pick": "Benutzer auswählen",
+ "context_user_picked": "Ereignis auslösender Benutzer",
+ "context_users": "Auf Ereignisse beschränken, die ausgelöst wurden durch",
+ "event_data": "Ereignisdaten",
+ "event_type": "Ereignistyp",
+ "label": "Ereignis"
+ },
+ "geo_location": {
+ "enter": "Betreten",
+ "event": "Ereignis:",
+ "label": "Geolokalisierung",
+ "leave": "Verlassen",
+ "source": "Quelle",
+ "zone": "Zone"
+ },
+ "homeassistant": {
+ "event": "Ereignis:",
+ "label": "Home Assistant",
+ "shutdown": "Beenden",
+ "start": "Start"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Payload (optional)",
+ "topic": "Thema"
+ },
+ "numeric_state": {
+ "above": "Über",
+ "below": "Unter",
+ "label": "Numerischer Zustand",
+ "value_template": "Wert-Template (optional)"
+ },
+ "state": {
+ "attribute": "Attribut (Optional)",
+ "for": "Für (optional)",
+ "from": "Von (optional)",
+ "label": "Zustand",
+ "to": "Zu (optional)"
+ },
+ "sun": {
+ "event": "Ereignis:",
+ "label": "Sonne",
+ "offset": "Versatz (optional)",
+ "sunrise": "Sonnenaufgang",
+ "sunset": "Sonnenuntergang"
+ },
+ "tag": {
+ "label": "Tag"
+ },
+ "template": {
+ "label": "Template",
+ "value_template": "Wert-Template"
+ },
+ "time": {
+ "at": "Um",
+ "label": "Zeit",
+ "type_input": "Wert eines Datums-/Zeit-Helfers",
+ "type_value": "Feste Zeit"
+ },
+ "time_pattern": {
+ "hours": "Stunden",
+ "label": "Zeitraster",
+ "minutes": "Minuten",
+ "seconds": "Sekunden"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook ID"
+ },
+ "zone": {
+ "enter": "Betreten",
+ "entity": "Entität mit Standort",
+ "event": "Ereignis:",
+ "label": "Zone",
+ "leave": "Verlassen",
+ "zone": "Zone"
+ }
+ },
+ "type_select": "Auslösertyp",
+ "unsupported_platform": "Visueller Editor nicht unterstützt für Plattform: {platform}"
+ },
+ "unsaved_confirm": "Du hast ungespeicherte Änderungen. Bist du dir sicher, dass du den Editor verlassen möchtest?"
+ },
+ "picker": {
+ "add_automation": "Automatisierung hinzufügen",
+ "delete_automation": "Automatisierung löschen",
+ "delete_confirm": "Bist du sicher, dass du diese Automatisierung löschen möchtest?",
+ "dev_automation": "Automatisierung debuggen",
+ "dev_only_editable": "Nur Automatisierungen, die eine eindeutige ID haben, können debuggt werden.",
+ "duplicate": "Duplizieren",
+ "duplicate_automation": "Automatisierung duplizieren",
+ "edit_automation": "Automatisierung bearbeiten",
+ "header": "Automatisierungseditor",
+ "headers": {
+ "name": "Name"
+ },
+ "introduction": "Mit dem Automations-Editor können Automatisierungen erstellt und bearbeitet werden. Bitte folge dem nachfolgenden Link, um die Anleitung zu lesen und um sicherzustellen, dass du Home Assistant richtig konfiguriert hast.",
+ "learn_more": "Erfahre mehr über Automatisierungen",
+ "no_automations": "Wir konnten keine Automatisierungen finden",
+ "only_editable": "Nur Automatisierungen in automations.yaml sind editierbar.",
+ "pick_automation": "Wähle eine Automatisierung zum Bearbeiten",
+ "show_info_automation": "Informationen über die Automatisierung anzeigen"
+ },
+ "thingtalk": {
+ "create": "Automatisierung erstellen",
+ "link_devices": {
+ "ambiguous_entities": "Ein oder mehrere Geräte haben mehr als eine übereinstimmende Entität. Wähle diejenige aus, die du verwenden möchtest.",
+ "header": "Großartig! Jetzt müssen wir einige Geräte verknüpfen",
+ "unknown_placeholder": "Unbekannter Platzhalter"
+ },
+ "task_selection": {
+ "error_empty": "Gib einen Befehl ein oder tippe auf Überspringen.",
+ "error_unsupported": "Dafür konnten wir (noch?) keine Automatisierung erstellen.",
+ "for_example": "Zum Beispiel:",
+ "header": "Eine neue Automatisierung erstellen",
+ "introduction": "Gib unten ein, was diese Automatisierung tun soll und wir werden versuchen, dies in eine Home Assistant-Automatisierung umzuwandeln.",
+ "language_note": "Hinweis: Im Moment wird nur Englisch unterstützt."
+ }
+ },
+ "trace": {
+ "download_trace": "Ablaufverfolgung herunterladen",
+ "edit_automation": "Automatisierung bearbeiten",
+ "newer_trace": "Neuere Ablaufverfolgung",
+ "older_trace": "Ältere Ablaufverfolgung",
+ "refresh": "Aktualisieren"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "Community-Foren",
+ "error_no_url": "Bitte gebe die URL der Vorlage ein.",
+ "file_name": "Vorlagenpfad",
+ "header": "Vorlage importieren",
+ "import_btn": "Vorschau Vorlage",
+ "import_header": "Vorlage \"{name}\"",
+ "import_introduction_link": "Du kannst Vorlagen anderer Benutzer aus GitHub und den {community_link} importieren. Gib unten die URL der Vorlage ein.",
+ "importing": "Vorlage wird geladen...",
+ "raw_blueprint": "Inhalt der Vorlage",
+ "save_btn": "Vorlage importieren",
+ "saving": "Vorlage wird importiert…",
+ "unsupported_blueprint": "Diese Vorlage wird nicht unterstützt",
+ "url": "URL der Vorlage"
+ },
+ "caption": "Vorlagen",
+ "description": "Vorlagen verwalten",
+ "overview": {
+ "add_blueprint": "Vorlage hinzufügen",
+ "confirm_delete_header": "Diese Vorlage löschen?",
+ "confirm_delete_text": "Bist du sicher, dass du diese Vorlage löschen möchtest?",
+ "create_automation": "Automatisierung erstellen",
+ "create_script": "Skript erstellen",
+ "delete_blueprint": "Vorlage löschen",
+ "discover_more": "Entdecke weitere Vorlagen",
+ "header": "Vorlagen-Editor",
+ "headers": {
+ "domain": "Domain",
+ "file_name": "Dateiname",
+ "name": "Name",
+ "type": "Typ"
+ },
+ "introduction": "Mit der Vorlagenkonfiguration kannst du deine Vorlagen importieren und verwalten.",
+ "learn_more": "Erfahre mehr über die Benutzung von Vorlagen",
+ "share_blueprint": "Vorlage teilen",
+ "share_blueprint_no_url": "Vorlage kann nicht geteilt werden: Keine Quell-URL",
+ "types": {
+ "automation": "Automatisierung",
+ "script": "Skript"
+ },
+ "use_blueprint": "Automatisierung erstellen"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Konfigurationsdokumentation",
+ "disable": "deaktiviert",
+ "enable": "aktiviert",
+ "enable_ha_skill": "Aktiviere den Home Assistant-Skill für Alexa",
+ "enable_state_reporting": "Statusberichterstattung aktivieren",
+ "info": "Mit der Alexa-Integration für Home Assistant Cloud können Sie alle Ihre Home Assistant-Geräte über jedes Alexa-fähige Gerät steuern.",
+ "info_state_reporting": "Wenn die Statusberichterstellung aktiviert wird, sendet Home Assistant alle Statusänderungen exponierter Entitäten an Amazon. So wird in der Alexa-App immer der neueste Status angezeigt.",
+ "manage_entities": "Entitäten verwalten",
+ "state_reporting_error": "Der Berichtsstatus kann nicht {enable_disable} werden.",
+ "sync_entities": "Entitäten zu Amazon synchronisieren",
+ "sync_entities_error": "Fehler beim Synchronisieren von Entitäten:",
+ "title": "Alexa"
+ },
+ "connected": "Verbunden",
+ "connecting": "Verbinde…",
+ "connection_status": "Cloud-Verbindungsstatus",
+ "fetching_subscription": "Abo wird abgerufen …",
+ "google": {
+ "config_documentation": "Konfigurationsdokumentation",
+ "devices_pin": "Sicherheitsgeräte PIN",
+ "enable_ha_skill": "Aktiviere den Home Assistant-Skill für Google Assistant",
+ "enable_state_reporting": "Statusberichterstattung aktivieren",
+ "enter_pin_error": "PIN kann nicht gespeichert werden:",
+ "enter_pin_hint": "Gib eine PIN ein, um Sicherheitsgeräte zu verwenden",
+ "enter_pin_info": "Bitte geben Sie eine PIN ein, um mit Sicherheitsgeräten zu interagieren. Sicherheitsgeräte sind Türen, Garagentore und Schlösser. Sie werden aufgefordert, diese PIN zu sagen/einzugeben, wenn Sie mit solchen Geräten über Google Assistant interagierst.",
+ "info": "Mit der Google Assistant-Integration für Home Assistant Cloud kannst du alle deine Home Assistant-Geräte über jedes Google Assistant-fähige Gerät steuern.",
+ "info_state_reporting": "Wenn die Statusberichterstellung aktiviert wird, sendet Home Assistant alle Statusänderungen exponierter Entitäten an Google. So wird in der Google-App immer der neueste Status angezeigt.",
+ "manage_entities": "Entitäten verwalten",
+ "not_configured_text": "Bevor du Google Assistant verwenden kannst, musst du in der Google Home-App den Home Assistant Cloud-Skill für Google Assistant aktivieren.",
+ "not_configured_title": "Google Assistant ist nicht aktiviert",
+ "security_devices": "Sicherheitsgeräte",
+ "sync_entities": "Entitäten mit Google synchronisieren",
+ "sync_entities_404_message": "Fehler beim Synchronisieren deiner Entitäten mit Google. Bitte Google, \"Hey Google, synchronisiere meine Geräte\", deine Entitäten zu synchronisieren.",
+ "title": "Google Assistant"
+ },
+ "integrations": "Integrationen",
+ "integrations_introduction": "Mit den Integrationen der Home Assistant Cloud können Diensten in der Cloud verbunden werden, ohne dass die Home Assistant-Installation öffentlich im Internet erreichbar sein muss.",
+ "integrations_introduction2": "Überprüfe die Website für ",
+ "integrations_link_all_features": " alle verfügbaren Funktionen",
+ "manage_account": "Konto verwalten",
+ "nabu_casa_account": "Nabu Casa Konto",
+ "not_connected": "Nicht verbunden",
+ "remote": {
+ "access_is_being_prepared": "Der Fernzugriff wird vorbereitet. Wir werden dich benachrichtigen, wenn alles fertig ist.",
+ "certificate_info": "Zertifikatsinformationen",
+ "connected": "Verbunden",
+ "info": "Home Assistant Cloud bietet eine sichere Remote-Verbindung zu Ihrer Instanz, wenn Sie nicht zu Hause sind.",
+ "instance_is_available": "Deine Instanz ist verfügbar unter",
+ "instance_will_be_available": "Deine Instanz wird verfügbar sein unter",
+ "link_learn_how_it_works": "Lerne, wie es funktioniert",
+ "not_connected": "Nicht verbunden",
+ "reconnecting": "Nicht verbunden. Es wird versucht, die Verbindung wiederherzustellen.",
+ "remote_enabled": {
+ "caption": "Automatisch verbinden",
+ "description": "Aktiviere diese Option um sicherzustellen dass deine Home Assistant Instanz immer aus der Ferne erreichbar ist."
+ },
+ "title": "Fernsteuerung"
+ },
+ "sign_out": "Abmelden",
+ "thank_you_note": "Vielen Dank, dass du Teil der Home Assistant Cloud bist. Es ist wegen Menschen wie dir, dass wir in der Lage sind, eine großartige Home Automation Erfahrung für alle zu machen. Danke!",
+ "tts": {
+ "default_language": "Zu verwendende Standardsprache",
+ "dialog": {
+ "create_automation": "Automatisierung erstellen",
+ "example_message": "Hallo {name} , du kannst beliebigen Text auf jedem unterstützten Media Player abspielen!",
+ "header": "Text-zu-Sprache ausprobieren",
+ "play": "Abspielen",
+ "target": "Ziel",
+ "target_browser": "Browser"
+ },
+ "female": "Weiblich",
+ "info": "Bringe Flair in dein Haus, indem du es mit unseren Text-zu-Sprache-Diensten zu dir sprechen lässt. Du kannst dies in Automatisierungen und Skripten verwenden, indem du den Dienst {service} nutzst.",
+ "male": "Männlich",
+ "title": "Text-zu-Sprache",
+ "try": "Probieren"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Fehler beim Deaktivieren des Webhooks:",
+ "info": "Alles, was so konfiguriert ist, dass es durch einen Webhook ausgelöst wird, kann mit einer öffentlich zugänglichen URL versehen werden, damit Daten von überall an Home Assistant gesendet werden können, ohne deine Installation dem Internet zu öffnen.",
+ "link_learn_more": "Weitere Informationen zum Erstellen webhookgestützter Automatisierungen.",
+ "loading": "Wird geladen …",
+ "manage": "Verwalten",
+ "no_hooks_yet": "Sieht so aus, als gäbe es noch keine Webhooks. Beginne mit der Konfiguration eines ",
+ "no_hooks_yet2": "oder durch Erstellen eines",
+ "no_hooks_yet_link_automation": "Webhook-Automatisierung",
+ "no_hooks_yet_link_integration": "Webhook-basierte Integration",
+ "title": "Webhooks"
+ }
+ },
+ "alexa": {
+ "banner": "Das Bearbeiten der Entitäten, die über diese Benutzeroberfläche verfügbar gemacht werden, ist deaktiviert, da in configuration.yaml Entitätsfilter konfiguriert sind.",
+ "dont_expose_entity": "Entität nicht anzeigen",
+ "expose": "In Alexa anzeigen",
+ "expose_entity": "Entität anzeigen",
+ "exposed": "{selected} verfügbar gemacht",
+ "exposed_entities": "Exponierte Entitäten",
+ "follow_domain": "Domain folgen",
+ "manage_domains": "Domains verwalten",
+ "not_exposed": "{selected} wird nicht verfügbar gemacht",
+ "not_exposed_entities": "Nicht angezeigte Entitäten",
+ "title": "Alexa"
+ },
+ "description_features": "Fernsteuerung und Integration mit Alexa und Google Assistant",
+ "description_login": "Angemeldet als {email}",
+ "description_not_login": "Nicht angemeldet",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Ablaufdatum des Zertifikats:",
+ "certificate_information": "Zertifikatsinformationen",
+ "close": "Schließen",
+ "fingerprint": "Zertifikat Fingerabdruck:",
+ "will_be_auto_renewed": "wird automatisch erneuert"
+ },
+ "dialog_cloudhook": {
+ "available_at": "Der Webhook ist unter der folgenden URL verfügbar:",
+ "close": "Schließen",
+ "confirm_disable": "Möchtest du diesen Webhook wirklich deaktivieren?",
+ "copied_to_clipboard": "In die Zwischenablage kopiert",
+ "info_disable_webhook": "Wenn du diesen Webhook nicht mehr nutzen willst, kannst du",
+ "link_disable_webhook": "deaktiviere es",
+ "managed_by_integration": "Dieser Webhook wird von einer Integration verwaltet und kann nicht deaktiviert werden.",
+ "view_documentation": "Dokumentation anzeigen",
+ "webhook_for": "Webhook für {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "In deinen E-Mails findest du die Anweisungen zum Zurücksetzen deines Passworts.",
+ "email": "E-Mail",
+ "email_error_msg": "Ungültige E-Mail",
+ "instructions": "Gib deine E-Mail-Adresse ein und wir senden dir einen Link zum Zurücksetzen deines Passworts.",
+ "send_reset_email": "Reset-E-Mail senden",
+ "subtitle": "Passwort vergessen",
+ "title": "Passwort vergessen"
+ },
+ "google": {
+ "banner": "Das Bearbeiten der Entitäten, die über diese Benutzeroberfläche verfügbar gemacht werden, ist deaktiviert, da in configuration.yaml Entitätsfilter konfiguriert sind.",
+ "disable_2FA": "Zweifaktor-Authentifizierung deaktivieren",
+ "dont_expose_entity": "Entität nicht verfügbar machen",
+ "expose": "Im Google Assistenten anzeigen",
+ "expose_entity": "Entität verfügbar machen",
+ "exposed": "{selected} verfügbar gemacht",
+ "exposed_entities": "Exponierte Entitäten",
+ "follow_domain": "Domain folgen",
+ "manage_domains": "Domains verwalten",
+ "not_exposed": "{selected} wird nicht verfügbar gemacht",
+ "not_exposed_entities": "Nicht angezeigte Entitäten",
+ "sync_to_google": "Änderungen mit Google synchronisieren.",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Du musst deine E-Mail-Adresse bestätigen, bevor du dich anmelden kannst.",
+ "alert_password_change_required": "Du musst dein Passwort ändern, bevor du dich anmelden kannst.",
+ "dismiss": "Ausblenden",
+ "email": "E-Mail",
+ "email_error_msg": "Ungültige E-Mail",
+ "forgot_password": "Passwort vergessen?",
+ "introduction": "Home Assistant Cloud bietet eine sichere Remote-Verbindung zu deiner Instanz, wenn du nicht zu Hause bist. Es erlaubt auch die Verbindung zu Amazon Alexa und Google Assistant.",
+ "introduction2": "Diesen Service betreibt unser Partner ",
+ "introduction2a": "ein Unternehmen, das von den Gründern von Home Assistant gegründet wurde.",
+ "introduction3": "Home Assistant Cloud ist ein Abonnementdienst mit einer kostenlosen einmonatigen Testperiode. Keine Zahlungsinformationen erforderlich.",
+ "learn_more_link": "Erfahre mehr über Home Assistant Cloud",
+ "password": "Passwort",
+ "password_error_msg": "Passwörter bestehen aus mindestens 8 Zeichen",
+ "sign_in": "Anmelden",
+ "start_trial": "Starte deine kostenlose 1-monatige Testphase",
+ "title": "Cloud-Anmeldung",
+ "trial_info": "Keine Zahlungsinformationen erforderlich"
+ },
+ "register": {
+ "account_created": "Account erstellt! Schau in deiner E-Mail nach, wie du dein Konto aktivieren kannst.",
+ "create_account": "Benutzerkonto anlegen",
+ "email_address": "E-Mail-Addresse",
+ "email_error_msg": "Ungültige E-Mail",
+ "feature_amazon_alexa": "Integration mit Amazon Alexa",
+ "feature_google_home": "Integration mit Google Assistant",
+ "feature_remote_control": "Steuere Home Assistant aus der Ferne",
+ "feature_webhook_apps": "Einfache Integration mit Webhook-basierten Apps wie OwnTracks",
+ "headline": "Testperiode starten",
+ "information": "Erstellen ein Konto, um eine kostenlose einmonatige Testperiode mit Home Assistant Cloud zu starten. Keine Zahlungsinformationen sind erforderlich.",
+ "information2": "Die Testperiode gibt Ihnen Zugriff auf alle Vorteile von Home Assistant Cloud, einschließlich:",
+ "information3": "Dieser Service wird von unserem Partner betrieben. ",
+ "information3a": "ein Unternehmen, das von den Gründern von Home Assistant gegründet wurde.",
+ "information4": "Durch die Registrierung eines Kontos erklärst du dich mit den folgenden Bedingungen einverstanden.",
+ "link_privacy_policy": "Datenschutz-Bestimmungen",
+ "link_terms_conditions": "Allgemeine Geschäftsbedingungen",
+ "password": "Passwort",
+ "password_error_msg": "Passwörter bestehen aus mindestens 8 Zeichen.",
+ "resend_confirm_email": "Bestätigungsmail erneut senden",
+ "start_trial": "Testperiode starten",
+ "title": "Konto registrieren"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Du hast ungespeicherte Änderungen. Bist du dir sicher, dass du den Editor verlassen möchtest?"
+ },
+ "learn_more": "Mehr erfahren"
+ },
+ "core": {
+ "caption": "Allgemein",
+ "description": "Standort, Netzwerk und Analysen",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Währung",
+ "edit_requires_storage": "Editor deaktiviert, da die Konfiguration in configuration.yaml gespeichert ist.",
+ "elevation": "Höhe",
+ "elevation_meters": "Meter",
+ "external_url": "Externe URL",
+ "find_currency_value": "Finde deinen Wert",
+ "imperial_example": "Fahrenheit, Pfund",
+ "internal_url": "Interne URL",
+ "latitude": "Breitengrad",
+ "location_name": "Name deiner Home Assistant Installation",
+ "longitude": "Längengrad",
+ "metric_example": "Celsius, Kilogramm",
+ "save_button": "Speichern",
+ "time_zone": "Zeitzone",
+ "unit_system": "Einheitensystem",
+ "unit_system_imperial": "Imperial",
+ "unit_system_metric": "Metrisch"
+ },
+ "header": "Allgemeine Einstellungen",
+ "introduction": "Verwalte deinen Standort, dein Netzwerk und deine Analysen."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Folgende Attribute sind bereits in customize.yaml gesetzt",
+ "attributes_not_set": "Die folgenden Attribute wurden nicht gesetzt. Setze sie, wenn du möchtest.",
+ "attributes_outside": "Die folgenden Attribute werden außerhalb von customize.yaml angepasst.",
+ "attributes_override": "Du kannst sie überschreiben, wenn du möchtest.",
+ "attributes_set": "Die folgenden Attribute der Entität sind programmatisch festgelegt.",
+ "caption": "Anpassung",
+ "description": "Entitäten individuell anpassen",
+ "different_include": "Möglich über eine Domain, einen Glob oder einen anderen Include.",
+ "pick_attribute": "Wähle ein Attribut zum Überschreiben aus.",
+ "picker": {
+ "documentation": "Anpassungsdokumentation",
+ "header": "Anpassungen",
+ "introduction": "Optimieren Sie die Entitätenattribute. Hinzugefügte/bearbeitete Anpassungen werden sofort wirksam. Entfernte Anpassungen werden wirksam, wenn die Entität aktualisiert wird."
+ },
+ "warning": {
+ "include_link": "binde customize.yaml ein",
+ "include_sentence": "Es scheint, dass deine configuration.yaml nicht korrekt ist.",
+ "not_applied": "Die hier vorgenommenen Änderungen werden eingetragen, aber erst nach einem erneuten Laden der Konfiguration angewendet, wenn das Include vorhanden ist."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Automatisierungen, Szenen, Skripte und Helfer verwalten",
+ "title": "Automatisierungen & Szenen"
+ },
+ "blueprints": {
+ "description": "Vorgefertigte Automatisierungen und Skripte von der Community",
+ "title": "Vorlagen"
+ },
+ "companion": {
+ "description": "Standort und Benachrichtigungen",
+ "title": "Mobile App"
+ },
+ "dashboards": {
+ "description": "Individuelle Oberflächen erstellen, um dein Zuhause zu steuern",
+ "title": "Dashboards"
+ },
+ "devices": {
+ "description": "Integrationen, Geräte, Entitäten und Bereiche",
+ "title": "Geräte & Dienste"
+ },
+ "energy": {
+ "description": "Energieproduktion und Verbrauch überwachen",
+ "title": "Energie"
+ },
+ "people": {
+ "description": "Personen und Zonen verwalten, die von Home Assistant verfolgt werden",
+ "title": "Personen & Zonen"
+ },
+ "settings": {
+ "description": "Allgemeine Einstellungen, Serversteuerung, Logs und Info",
+ "title": "Einstellungen"
+ },
+ "supervisor": {
+ "description": "Backups erstellen, Protokolle prüfen oder System neu starten",
+ "title": "Add-ons, Backups & Supervisor"
+ },
+ "tags": {
+ "description": "Automatisierungen auslösen, wenn ein NFC-Tag, QR-Code usw. gescannt wird",
+ "title": "NFC Tags"
+ }
+ },
+ "devices": {
+ "add_prompt": "Es existiert noch kein(e) {name} mit diesem Gerät. Füge ein(e) hinzu, indem du auf den + Knopf drückst.",
+ "automation": {
+ "actions": {
+ "caption": "Wenn etwas ausgelöst wird …",
+ "no_actions": "Keine Aktionen",
+ "unknown_action": "Unbekannte Aktion"
+ },
+ "automations": "Automatisierungen",
+ "conditions": {
+ "caption": "Tue nur dann etwas, wenn…",
+ "no_conditions": "Keine Bedingungen",
+ "unknown_condition": "Unbekannte Bedingung"
+ },
+ "create": "Automatisierung mit Gerät erstellen",
+ "create_disable": "Kann keine Automatisierung mit deaktiviertem Gerät erstellen",
+ "no_automations": "Keine Automatisierungen",
+ "no_device_automations": "Für dieses Gerät sind keine Automatisierungen verfügbar.",
+ "triggers": {
+ "caption": "Tue etwas, wenn...",
+ "no_triggers": "Keine Auslöser",
+ "unknown_trigger": "Unbekannter Auslöser"
+ },
+ "unknown_automation": "Unbekannte Automatisierung"
+ },
+ "cant_edit": "Du kannst nur Elemente bearbeiten, die in der Benutzeroberfläche erstellt wurden.",
+ "caption": "Geräte",
+ "confirm_delete": "Möchtest du dieses Gerät wirklich löschen?",
+ "confirm_disable_config_entry": "Es gibt keine Geräte mehr für den Konfigurationseintrag {entry_name}. Möchtest du stattdessen den Konfigurationseintrag deaktivieren?",
+ "confirm_rename_entity_ids": "Möchten Sie auch die Entitäts-IDs Ihrer Entitäten umbenennen?",
+ "confirm_rename_entity_ids_warning": "Dies ändert keine Konfiguration (wie Automatisierungen, Skripte, Szenen, Dashboards), die derzeit diese Entitäten verwendet! Du musst sie selbst aktualisieren, um die neuen Entitäts-IDs zu verwenden!",
+ "data_table": {
+ "area": "Bereich",
+ "battery": "Batterie",
+ "device": "Gerät",
+ "integration": "Integration",
+ "manufacturer": "Hersteller",
+ "model": "Modell",
+ "no_devices": "keine Geräte",
+ "no_integration": "Keine Integration"
+ },
+ "delete": "Löschen",
+ "description": "Verbundene Geräte verwalten",
+ "device_info": "Geräteinformationen",
+ "device_not_found": "Gerät nicht gefunden.",
+ "disabled": "Deaktiviert",
+ "disabled_by": {
+ "config_entry": "Konfigurationseintrag",
+ "integration": "Integration",
+ "user": "Benutzer"
+ },
+ "download_diagnostics": "Diagnoseinformationen herunterladen",
+ "edit_settings": "Einstellungen bearbeiten",
+ "enabled_cause": "Das Gerät ist durch {cause} deaktiviert.",
+ "enabled_description": "Deaktivierte Geräte werden nicht angezeigt und zum Gerät gehörende Entitäten werden deaktiviert und nicht zum Home Assistant hinzugefügt.",
+ "enabled_label": "Gerät aktivieren",
+ "entities": {
+ "add_entities_lovelace": "Zu Lovelace hinzufügen",
+ "config": "Konfiguration",
+ "control": "Steuerelemente",
+ "diagnostic": "Diagnose",
+ "disabled_entities": "+{count} {count, plural,\n one {deaktivierte Entität}\n other {deaktivierte Entitäten}\n}",
+ "entities": "Entitäten",
+ "hide_disabled": "Deaktivierte ausblenden",
+ "none": "Dieses Gerät hat keine Entitäten",
+ "sensor": "Sensoren",
+ "state": "Zustand"
+ },
+ "name": "Name",
+ "no_devices": "Keine Geräte",
+ "open_configuration_url_device": "Gerät besuchen",
+ "open_configuration_url_service": "Dienst besuchen",
+ "picker": {
+ "filter": {
+ "filter": "Filter",
+ "hidden_devices": "{number} {number, plural,\n one {verstecktes Gerät}\n other {versteckte Geräte}\n}",
+ "show_all": "Alle anzeigen",
+ "show_disabled": "Deaktivierte Geräte anzeigen"
+ },
+ "search": "Geräte suchen"
+ },
+ "scene": {
+ "create": "Szene mit Gerät erstellen",
+ "create_disable": "Kann keine Szene mit deaktiviertem Gerät erstellen",
+ "no_scenes": "Keine Szenen",
+ "scenes": "Szenen"
+ },
+ "scenes": "Szenen",
+ "script": {
+ "create": "Szene mit Gerät erstellen",
+ "create_disable": "Kann kein Skript mit deaktiviertem Gerät erstellen",
+ "no_scripts": "Keine Skripte",
+ "scripts": "Skripte"
+ },
+ "scripts": "Skripte",
+ "unknown_error": "Unbekannter Fehler",
+ "unnamed_device": "Unbenanntes Gerät",
+ "update": "Aktualisieren",
+ "update_device_error": "Aktualisieren des Geräts fehlgeschlagen"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Batteriesystem hinzufügen",
+ "battery_systems": "Batteriesysteme",
+ "dialog": {
+ "energy_into_battery": "Energie, die in die Batterie fließt (kWh)",
+ "energy_out_of_battery": "Energie, die aus der Batterie kommt (kWh)",
+ "header": "Batteriesystem konfigurieren"
+ },
+ "learn_more": "Weitere Informationen zu den ersten Schritten.",
+ "sub": "Wenn du ein Batteriesystem hast, kannst du es konfigurieren, dass überwacht wird, wie viel Energie von deiner Batterie gespeichert und verbraucht wurde.",
+ "title": "Batteriespeicher zu Hause"
+ },
+ "caption": "Energie",
+ "delete_integration": "Bist du sicher, dass du diese Integration löschen willst? Die Entitäten, die sie bereitstellt, werden entfernt",
+ "delete_source": "Bist du sicher, dass du diese Quelle löschen willst?",
+ "description": "Überwache deine Energieproduktion und deinen Verbrauch",
+ "device_consumption": {
+ "add_device": "Gerät hinzufügen",
+ "add_stat": "Wähle eine Entität aus, um deren Energie zu verfolgen",
+ "devices": "Geräte",
+ "dialog": {
+ "device_consumption_energy": "Geräteverbrauch Energie (kWh)",
+ "header": "Ein Gerät hinzufügen",
+ "selected_stat_intro": "Wähle die Entität, die den Energieverbrauch des Geräts darstellt."
+ },
+ "learn_more": "Weitere Informationen zum Einstieg.",
+ "selected_stat": "Energie verfolgen für",
+ "sub": "Durch die Nachverfolgung des Energieverbrauchs einzelner Geräte kann Home Assistant deinen Energieverbrauch nach Geräten aufteilen.",
+ "title": "Einzelne Geräte"
+ },
+ "gas": {
+ "add_gas_source": "Gasquelle hinzufügen",
+ "dialog": {
+ "cost_entity": "Verwende eine Entität mit aktuellem Preis",
+ "cost_entity_input": "Entität mit dem aktuellen Preis pro {unit}",
+ "cost_number": "Einen statischen Preis verwenden",
+ "cost_number_input": "Preis pro {unit}",
+ "cost_number_suffix": "{currency}/m³",
+ "cost_para": "Wähle aus, wie Home Assistant die Kosten der verbrauchten Energie verfolgen soll.",
+ "cost_stat": "Verwende eine Entität, die die Gesamtkosten verfolgt",
+ "cost_stat_input": "Gesamtkosten-Entität",
+ "energy_stat": "Verbrauchte Energie (m³)",
+ "gas_usage": "Gasverbrauch",
+ "header": "Gasverbrauch konfigurieren",
+ "m3_or_kWh": "ft³, m³, Wh, kWh oder MWh",
+ "no_cost": "Kosten nicht verfolgen",
+ "paragraph": "Der Gasverbrauch ist die Gasmenge, die zu dir nach Hause fließt."
+ },
+ "gas_consumption": "Gasverbrauch",
+ "learn_more": "Weitere Informationen zu den ersten Schritten.",
+ "sub": "Lass Home Assistant deinen Gasverbrauch überwachen",
+ "title": "Gasverbrauch"
+ },
+ "grid": {
+ "add_co2_signal": "CO2-Signalintegration hinzufügen",
+ "add_consumption": "Verbrauch hinzufügen",
+ "add_return": "Rückgabe hinzufügen",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Verwende eine Entität mit aktuellem Preis",
+ "cost_entity_input": "Entität mit dem aktuellen Preis",
+ "cost_number": "Verwende einen statischen Preis",
+ "cost_number_input": "Preis pro kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Wähle aus, wie Home Assistant die Kosten der verbrauchten Energie verfolgen soll.",
+ "cost_stat": "Verwende eine Entität, die die Gesamtkosten verfolgt",
+ "cost_stat_input": "Gesamtkosten-Entität",
+ "energy_stat": "Verbrauchte Energie (kWh)",
+ "header": "Netzverbrauch konfigurieren",
+ "no_cost": "Kosten nicht verfolgen",
+ "paragraph": "Der Netzverbrauch ist die Energie, die aus dem Energienetz zu deinem Haus fließt."
+ },
+ "to": {
+ "cost_entity": "Verwende eine Entität mit aktuellem Preis",
+ "cost_entity_input": "Entität mit dem aktuellen Preis",
+ "cost_number": "Verwende einen statischen Preis",
+ "cost_number_input": "Preis pro kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Bekommst du Geld zurück, wenn du Energie ins Netz zurückspeist?",
+ "cost_stat": "Verwende eine Entität, die das gesamte erhaltene Geld verfolgt",
+ "cost_stat_input": "Gesamtvergütungs-Entität",
+ "energy_stat": "In das Netz zurückgespeiste Energie (kWh)",
+ "header": "Netzeinspeisung konfigurieren",
+ "no_cost": "Ich bekomme kein Geld zurück",
+ "paragraph": "Die Netzeinspeisung ist die Energie, die von deinen Solarmodulen ins Netz eingespeist wird."
+ }
+ },
+ "grid_carbon_footprint": "Kohlenstoff-Fußabdruck des Netzes",
+ "grid_consumption": "Netzverbrauch",
+ "learn_more": "Weitere Informationen zum Einstieg.",
+ "return_to_grid": "Zurück zum Netz",
+ "sub": "Konfiguriere die Energiemenge, die du aus dem Netz verbrauchst, und wenn du Energie erzeugst, an das Netz zurückgibst. Auf diese Weise kann Home Assistant den Energieverbrauch deines gesamten Hauses verfolgen.",
+ "title": "Stromnetz"
+ },
+ "new_device_info": "Nach dem Einrichten eines neuen Geräts kann es bis zu 2 Stunden dauern, bis neue Daten in deinem Energie-Dashboard erscheinen.",
+ "solar": {
+ "add_solar_production": "Solarproduktion hinzufügen",
+ "dialog": {
+ "add_forecast": "Prognose hinzufügen",
+ "dont_forecast_production": "Keine Produktionsprognose",
+ "forecast_production": "Prognostizierte Produktion",
+ "header": "Konfigurieren von Solarmodulen",
+ "solar_production_energy": "Solare Produktionsenergie (kWh)",
+ "solar_production_forecast": "Prognose der Solarproduktion",
+ "solar_production_forecast_description": "Durch das Hinzufügen von Informationen zur Solarproduktionsprognose kannst du dir schnell einen Überblick über die zu erwartende Produktion für den heutigen Tag verschaffen."
+ },
+ "learn_more": "Weitere Informationen zum Einstieg.",
+ "solar_production": "Solarproduktion",
+ "stat_predicted_production": "Vorhersage deiner Solarstromproduktion",
+ "stat_production": "Deine Solarstromproduktion",
+ "stat_return_to_grid": "Solarenergie ins Netz zurückgespeist",
+ "sub": "Lass Home Assistant deine Solarmodule überwachen und dir Einblick in deren Leistung geben.",
+ "title": "Sonnenkollektoren"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "Die folgenden Entitäten haben einen negativen Zustand, während ein positiver Zustand erwartet wird:",
+ "title": "Entität hat einen negativen Zustand"
+ },
+ "entity_not_defined": {
+ "description": "Überprüfe die Integration oder Konfiguration, die Folgendes bietet:",
+ "title": "Entität nicht definiert"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "Die folgenden Entitäten haben die Zustandsklasse \"measurement\", aber \"last_reset\" fehlt:",
+ "title": "Letzter Reset fehlt"
+ },
+ "entity_state_non_numeric": {
+ "description": "Die folgenden Entitäten haben einen Zustand, der nicht als Zahl geparst werden kann:",
+ "title": "Entität hat einen nicht numerischen Status"
+ },
+ "entity_unavailable": {
+ "description": "Der Status dieser konfigurierten Entitäten ist derzeit nicht verfügbar:",
+ "title": "Entität nicht verfügbar"
+ },
+ "entity_unexpected_device_class": {
+ "description": "Die folgenden Entitäten haben nicht die erwartete Geräteklasse:",
+ "title": "Unerwartete Geräteklasse"
+ },
+ "entity_unexpected_state_class": {
+ "description": "Die folgenden Entitäten haben nicht die erwartete Zustandsklasse:",
+ "title": "Unerwartete Zustandsklasse"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "Die folgenden Entitäten haben nicht die erwartete Zustandsklasse 'total_increasing'",
+ "title": "Unerwartete Zustandsklasse"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "Die folgenden Entitäten haben nicht die erwarteten Maßeinheiten \"Wh\", \"kWh\" oder \"MWh\":",
+ "title": "Unerwartete Maßeinheit"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "Die folgenden Einheiten haben nicht die erwarteten Maßeinheiten '' {currency}/kWh'', '' {currency}/Wh'' oder '' {currency}/MWh'':",
+ "title": "Unerwartete Maßeinheit"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "Die folgenden Entitäten haben nicht die erwarteten Maßeinheiten \"Wh\", \"kWh\" oder \"MWh\" für einen Energiesensor oder \"m³\" oder \"ft³\" für einen Gassensor:",
+ "title": "Unerwartete Maßeinheit"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "Die folgenden Entitäten haben nicht die erwarteten Maßeinheiten '' {currency}/kWh'', '' {currency}/Wh'', '' {currency}/MWh'', '' {currency}/m³'' oder '' {currency}/ft³'':",
+ "title": "Unerwartete Maßeinheit"
+ },
+ "recorder_untracked": {
+ "description": "Der Rekorder wurde so konfiguriert, dass er diese konfigurierten Entitäten ausschließt:",
+ "title": "Entität nicht nachverfolgt"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Entitäten",
+ "description": "Bekannte Entitäten verwalten",
+ "picker": {
+ "disable_selected": {
+ "button": "Ausgewählte deaktivieren",
+ "confirm_text": "Deaktivierte Entitäten werden zu Home Assistant nicht hinzugefügt.",
+ "confirm_title": "Möchtest du {number} {number, plural,\n one {Entität}\n other {Entitäten}\n} deaktivieren?"
+ },
+ "enable_selected": {
+ "button": "Ausgewählte aktivieren",
+ "confirm_text": "Dadurch stehen sie in Home Assistant wieder zur Verfügung, wenn sie jetzt deaktiviert sind.",
+ "confirm_title": "Möchtest du {number} {number, plural,\n one {Entität}\n other {Entitäten}\n} aktivieren?"
+ },
+ "filter": {
+ "filter": "Filter",
+ "hidden_entities": "{number} versteckte {number, plural,\n one {Entität}\n other {Entitäten}\n}",
+ "show_all": "Alle anzeigen",
+ "show_disabled": "Anzeigen deaktivierter Entitäten",
+ "show_readonly": "Anzeigen schreibgeschützter Entitäten",
+ "show_unavailable": "Anzeigen nicht verfügbarer Entitäten"
+ },
+ "header": "Entitäten",
+ "headers": {
+ "area": "Bereich",
+ "disabled_by": "Deaktiviert durch",
+ "entity_id": "Entitäts-ID",
+ "integration": "Integration",
+ "name": "Name",
+ "status": "Status"
+ },
+ "introduction": "Home Assistant führt eine Registrierung aller Entitäten, die er je gesehen hat und die eindeutig identifiziert werden können. Jeder dieser Entitäten wird eine Entitäts-ID zugewiesen, die nur für diese Entität reserviert ist.",
+ "introduction2": "Verwenden Sie die Entitätsregistrierung, um den Namen zu überschreiben, die Entität-ID zu ändern oder den Eintrag aus Home Assistant zu entfernen. Beachten Sie, dass das Entfernen des Entitätsregistrierungs-Eintrags die Entität nicht löscht. Folgen Sie dazu dem Link unten und entfernen Sie ihn in der Integrationsseite.",
+ "remove_selected": {
+ "button": "Ausgewählte entfernen",
+ "confirm_partly_text": "Du kannst nur {removable} der ausgewählten {selected} Entitäten entfernen. Entitäten können nur entfernt werden, wenn die Integration die Entitäten nicht mehr bereitstellt. Manchmal musst du Home Assistant neu starten, bevor du die Entitäten einer entfernten Integration entfernen kannst. Möchtest du die entfernbaren Entitäten wirklich entfernen?",
+ "confirm_partly_title": "Nur {number} {number, plural,\n one {markierte Entität kann}\n other {markierte Entitäten können}\n} entfernt werden.",
+ "confirm_text": "Du solltest sie aus deiner Lovelace-Konfiguration und deinen Automatisierungen entfernen, wenn sie diese Entitäten enthalten.",
+ "confirm_title": "Möchtest du {number} {number, plural,\n one {Entität}\n other {Entitäten}\n} entfernen?"
+ },
+ "search": "Entitäten suchen",
+ "selected": "{number} ausgewählt",
+ "status": {
+ "disabled": "Deaktiviert",
+ "ok": "Ok",
+ "readonly": "Schreibgeschützt",
+ "restored": "Wiederhergestellt",
+ "unavailable": "Nicht verfügbar"
+ }
+ }
+ },
+ "header": "Home Assistant konfigurieren",
+ "helpers": {
+ "caption": "Helfer",
+ "description": "Elemente verwalten, die beim Aufbau von Automatisierungen helfen",
+ "dialog": {
+ "add_helper": "Helfer hinzufügen",
+ "add_platform": "{platform} hinzufügen",
+ "create": "Erstellen"
+ },
+ "picker": {
+ "add_helper": "Helfer hinzufügen",
+ "headers": {
+ "editable": "Editierbar",
+ "entity_id": "Entitäts-ID",
+ "name": "Name",
+ "type": "Typ"
+ },
+ "no_helpers": "Sieht so aus, als hättest du noch keine Helfer!"
+ },
+ "types": {
+ "counter": "Zähler",
+ "input_boolean": "Umschalten",
+ "input_button": "Taste",
+ "input_datetime": "Datum und/oder Uhrzeit",
+ "input_number": "Nummer",
+ "input_select": "Dropdown",
+ "input_text": "Text",
+ "timer": "Timer"
+ }
+ },
+ "info": {
+ "built_using": "Gebaut mit",
+ "caption": "Info",
+ "copy_github": "Für GitHub",
+ "copy_menu": "Menü kopieren",
+ "copy_raw": "Roher Text",
+ "custom_uis": "Benutzerdefinierte UIs:",
+ "description": "Version, Systemzustand und Links zur Dokumentation",
+ "developed_by": "Entwickelt von einem Haufen toller Leute.",
+ "documentation": "Dokumentation",
+ "frontend": "Frontend-UI",
+ "frontend_version": "Frontend-Version: {version} - {type}",
+ "home_assistant_logo": "Home Assistant-Logo",
+ "icons_by": "Icons von",
+ "integrations": "Integrationen",
+ "issues": "Probleme",
+ "license": "Veröffentlicht unter der Apache 2.0 Lizenz",
+ "path_configuration": "Pfad zu configuration.yaml: {path}",
+ "server": "Server",
+ "setup_time": "Setup-Dauer",
+ "source": "Quelle:",
+ "system_health": {
+ "manage": "Verwalten",
+ "more_info": "Mehr Info"
+ },
+ "system_health_error": "System Health-Komponente wird nicht geladen. Füge 'system_health:' zu configuration.yaml hinzu"
+ },
+ "integrations": {
+ "add_integration": "Integration hinzufügen",
+ "attention": "Aufmerksamkeit erforderlich",
+ "caption": "Integrationen",
+ "config_entry": {
+ "area": "In {area}",
+ "check_the_logs": "Prüfe die Protokolle",
+ "configure": "Konfigurieren",
+ "delete": "Löschen",
+ "delete_confirm": "Möchtest du die {title} Integration wirklich löschen?",
+ "depends_on_cloud": "Abhängig von der Cloud",
+ "device_unavailable": "Gerät nicht verfügbar",
+ "devices": "{count} {count, plural,\n one {Gerät}\n other {Geräte}\n}",
+ "disable": {
+ "disable_confirm": "Möchtest du diesen Konfigurationseintrag wirklich deaktivieren? Die Geräte und Entitäten werden deaktiviert.",
+ "disabled": "Deaktiviert",
+ "disabled_by": {
+ "device": "Gerät",
+ "integration": "Integration",
+ "user": "Benutzer"
+ },
+ "disabled_cause": "Deaktiviert durch {cause}."
+ },
+ "disable_error": "Aktivieren oder Deaktivieren der Integration fehlgeschlagen",
+ "disable_restart_confirm": "Home Assistant neu starten, um das Deaktivieren dieser Integration abzuschließen",
+ "disabled_polling": "Automatisches Abfragen von aktualisierten Daten deaktiviert",
+ "documentation": "Dokumentation",
+ "download_diagnostics": "Diagnoseinformationen herunterladen",
+ "enable_restart_confirm": "Home Assistant neu starten, um das Aktivieren dieser Integration abzuschließen",
+ "entities": "{count} {count, plural,\none {Entität}\nother {Entitäten}\n}",
+ "entity_unavailable": "Entität nicht verfügbar",
+ "firmware": "Firmware: {version}",
+ "hardware": "Hardware: {version}",
+ "hub": "Verbunden über",
+ "known_issues": "Bekannte Probleme",
+ "manuf": "von {manufacturer}",
+ "no_area": "Kein Bereich",
+ "not_loaded": "Nicht geladen",
+ "open_configuration_url": "Gerät besuchen",
+ "provided_by_custom_integration": "Bereitgestellt durch eine benutzerdefinierte Integration",
+ "reload": "Neu laden",
+ "reload_confirm": "Die Integration wurde neu geladen",
+ "reload_restart_confirm": "Home Assistant neu starten, um das Neuladen dieser Integration abzuschließen",
+ "rename": "Umbenennen",
+ "restart_confirm": "Starte Home Assistant neu, um das Entfernen dieser Integration abzuschließen",
+ "services": "{count} {count, plural,\n one {Dienst}\n other {Dienste}\n}",
+ "state": {
+ "failed_unload": "Entladen fehlgeschlagen",
+ "loaded": "Geladen",
+ "migration_error": "Migrationsfehler",
+ "not_loaded": "Nicht geladen",
+ "setup_error": "Fehler beim Einrichten",
+ "setup_retry": "Setup erneut versuchen"
+ },
+ "system_options": "Systemoptionen",
+ "unknown_via_device": "Unbekanntes Gerät",
+ "unnamed_entry": "Unbenannter Eintrag",
+ "via": "Verbunden über"
+ },
+ "config_flow": {
+ "aborted": "Abgebrochen",
+ "close": "Schließen",
+ "could_not_load": "Der Konfigurationsfluss konnte nicht geladen werden",
+ "created_config": "Konfiguration für {name} erstellt.",
+ "dismiss": "Dialog schließen",
+ "error": "Fehler",
+ "error_saving_area": "Fehler beim Speichern des Bereichs: {error}",
+ "external_step": {
+ "description": "Für diesen Schritt musst du eine externe Website besuchen, um den Vorgang abzuschließen.",
+ "open_site": "Website öffnen"
+ },
+ "finish": "Fertig",
+ "loading": {
+ "fallback_title": "die Integration",
+ "loading_flow": "Bitte warte, während die Integration {integration} eingerichtet wird",
+ "loading_step": "Nächster Schritt für {integration} wird geladen"
+ },
+ "next": "Weiter",
+ "not_all_required_fields": "Nicht alle Pflichtfelder sind ausgefüllt.",
+ "not_loaded": "Die Integration konnte nicht geladen werden. Versuche Home Assistant neu zu starten.",
+ "pick_flow_step": {
+ "new_flow": "Nein, richte eine andere Instanz von {integration} ein",
+ "title": "Wir haben diese entdeckt, willst du sie einrichten?"
+ },
+ "submit": "Absenden"
+ },
+ "configure": "Konfigurieren",
+ "configured": "Konfiguriert",
+ "confirm_new": "Möchtest du {integration} einrichten?",
+ "description": "Verwalte verbundene Geräte und Dienste",
+ "details": "Details zur Integration",
+ "disable": {
+ "disabled_integrations": "{number} deaktiviert",
+ "show": "Anzeigen",
+ "show_disabled": "Deaktivierte Integrationen anzeigen"
+ },
+ "discovered": "Entdeckt",
+ "home_assistant_website": "Home Assistant Website",
+ "ignore": {
+ "confirm_delete_ignore": "Dies wird die Integration in deinen entdeckten Integrationen wieder erscheinen lassen, wenn sie entdeckt wird. Dies kann einen Neustart erfordern oder einige Zeit dauern.",
+ "confirm_delete_ignore_title": "{name} nicht mehr ignorieren?",
+ "confirm_ignore": "Bist du sicher, dass du diese Integration nicht einrichten willst? Du kannst dies rückgängig machen, indem du im Kontextmenü oben rechts auf 'Ignorierte Integrationen anzeigen' klickst.",
+ "confirm_ignore_title": "Ignoriere die Entdeckung von {name}?",
+ "ignore": "Ignorieren",
+ "ignored": "Ignoriert",
+ "show_ignored": "Ignorierte Integrationen anzeigen",
+ "stop_ignore": "Nicht mehr ignorieren"
+ },
+ "integration": "Integration",
+ "integration_not_found": "Integration nicht gefunden.",
+ "new": "Richte eine neue Integration ein",
+ "no_integrations": "Du hast anscheinend noch keine Integrationen konfiguriert. Klicke auf die Schaltfläche unten, um eine erste Integration hinzuzufügen!",
+ "none": "Noch nichts konfiguriert",
+ "none_found": "Keine Integrationen gefunden",
+ "none_found_detail": "Passe deine Suchkriterien an.",
+ "note_about_integrations": "Es wurden keine Integrationen für deine Suche gefunden. Möglicherweise ist die Integration, die du einrichten möchtest, noch nicht zum Einrichten über die Benutzeroberfläche verfügbar.",
+ "note_about_website_reference": "Weitere Informationen findest du auf der ",
+ "reconfigure": "Neu konfigurieren",
+ "rename_dialog": "Bearbeite den Namen dieses Konfigurationseintrags",
+ "rename_input_label": "Eintragsname",
+ "search": "Integrationen suchen"
+ },
+ "introduction": "Hier ist es möglich, deine Komponenten und Home Assistant zu konfigurieren. Noch ist nicht alles über die GUI einstellbar, aber wir arbeiten daran.",
+ "logs": {
+ "caption": "Logs",
+ "clear": "Löschen",
+ "copy": "Protokolleintrag kopieren",
+ "custom_integration": "benutzerdefinierte Integration",
+ "description": "Home Assistant Logs einsehen",
+ "details": "Protokolldetails ({level})",
+ "error_from_custom_integration": "Dieser Fehler wurde von einer benutzerdefinierten Integration verursacht",
+ "level": {
+ "critical": "KRITISCH",
+ "debug": "DEBUG",
+ "error": "FEHLER",
+ "info": "INFO",
+ "warning": "WARNUNG"
+ },
+ "load_full_log": "Vollständiges Home Assistant-Protokoll laden",
+ "loading_log": "Fehlerprotokoll wird geladen...",
+ "multiple_messages": "Die Nachricht ist zum ersten Mal um {time} aufgetreten und erscheint {counter} mal",
+ "no_errors": "Es wurden keine Fehler gemeldet",
+ "no_issues": "Es gibt keine neuen Probleme!",
+ "refresh": "Aktualisieren"
+ },
+ "lovelace": {
+ "caption": "Lovelace Dashboards",
+ "dashboards": {
+ "cant_edit_default": "Das Standard-Dashboard von Lovelace, Übersicht, kann nicht über die Benutzeroberfläche bearbeitet werden. Du kannst es ausblenden, indem du ein anderes Dashboard als Standard festlegst.",
+ "cant_edit_yaml": "In YAML definierte Dashboards können nicht über die Benutzeroberfläche bearbeitet werden. Du kannst sie aber in der configuration.yaml ändern.",
+ "caption": "Dashboards",
+ "conf_mode": {
+ "storage": "Grafischer Editor",
+ "yaml": "YAML-Datei"
+ },
+ "confirm_delete": "Bist du sicher, dass du dieses Dashboard löschen möchtest?",
+ "confirm_delete_text": "Dein Dashboard wird dauerhaft gelöscht.",
+ "confirm_delete_title": "{dashboard_title} löschen?",
+ "default_dashboard": "Dies ist das Standard-Dashboard",
+ "detail": {
+ "create": "Erstellen",
+ "delete": "Löschen",
+ "dismiss": "Schließen",
+ "edit_dashboard": "Dashboard bearbeiten",
+ "icon": "Seitenleistensymbol",
+ "new_dashboard": "Neues Dashboard hinzufügen",
+ "remove_default": "Als Standard auf diesem Gerät entfernen",
+ "require_admin": "Nur Admin",
+ "set_default": "Auf diesem Gerät als Standard festlegen",
+ "show_sidebar": "In der Seitenleiste anzeigen",
+ "title": "Titel der Seitenleiste",
+ "title_required": "Titel ist erforderlich.",
+ "update": "Aktualisieren",
+ "url": "URL",
+ "url_error_msg": "Die URL sollte ein - enthalten und darf keine Leerzeichen oder Sonderzeichen enthalten, außer _ und -"
+ },
+ "picker": {
+ "add_dashboard": "Dashboard hinzufügen",
+ "headers": {
+ "conf_mode": "Konfigurationsmethode",
+ "default": "Standard",
+ "filename": "Dateiname",
+ "require_admin": "Nur Admin",
+ "sidebar": "In der Seitenleiste anzeigen",
+ "title": "Titel"
+ },
+ "open": "Öffnen"
+ }
+ },
+ "description": "Erstelle individuelle Oberflächen, um dein Zuhause zu steuern",
+ "resources": {
+ "cant_edit_yaml": "Du verwendest Lovelace im YAML-Modus. Daher kannst du deine Ressourcen nicht über die Benutzeroberfläche verwalten. Verwalte sie in der configuration.yaml.",
+ "caption": "Ressourcen",
+ "confirm_delete": "Bist du sicher, dass du diese Ressource löschen möchtest?",
+ "detail": {
+ "create": "Erstellen",
+ "delete": "Löschen",
+ "dismiss": "Schließen",
+ "new_resource": "Neue Ressource hinzufügen",
+ "type": "Ressource-Typ",
+ "update": "Aktualisieren",
+ "url": "URL",
+ "url_error_msg": "URL ist ein Pflichtfeld",
+ "warning_header": "Sei vorsichtig!",
+ "warning_text": "Das Hinzufügen von Ressourcen kann gefährlich sein. Stelle sicher, dass du die Quelle der Ressource kennst und ihr vertraust. Ressourcen aus bösartigen Quellen können dein System ernsthaft beschädigen."
+ },
+ "picker": {
+ "add_resource": "Ressource hinzufügen",
+ "headers": {
+ "type": "Typ",
+ "url": "URL"
+ },
+ "no_resources": "keine Ressourcen"
+ },
+ "refresh_body": "Die Seite muss aktualisiert werden, um das Entfernen abzuschließen. Möchtest du jetzt aktualisieren?",
+ "refresh_header": "Möchtest du aktualisieren?",
+ "types": {
+ "css": "Stylesheet",
+ "html": "HTML (veraltet)",
+ "js": "JavaScript-Datei (veraltet)",
+ "module": "JavaScript-Modul"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Auf einen Topic hören",
+ "description_publish": "Ein Paket veröffentlichen",
+ "listening_to": "Anhören von",
+ "message_received": "Nachricht {id} empfangen auf {topic} um {time}:",
+ "payload": "Payload (Template erlaubt)",
+ "publish": "Veröffentlichen",
+ "start_listening": "Anfangen zuzuhören",
+ "stop_listening": "Aufhören zuzuhören",
+ "subscribe_to": "Topic abonnieren",
+ "title": "MQTT",
+ "topic": "Topic"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Controller",
+ "instance": "Instanz",
+ "network": "Netzwerk",
+ "node_id": "Knoten-ID",
+ "ozw_instance": "OpenZWave-Instanz",
+ "query_stage": "Abfragephase",
+ "wakeup_instructions": "Aufweckanleitung",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Knoten fehlgeschlagen",
+ "stage": "Phase",
+ "zwave_info": "Z-Wave Infos"
+ },
+ "navigation": {
+ "network": "Netzwerk",
+ "node": {
+ "config": "Konfiguration",
+ "dashboard": "Dashboard"
+ },
+ "nodes": "Knoten",
+ "select_instance": "Instanz auswählen"
+ },
+ "network": {
+ "header": "Netzwerkverwaltung",
+ "introduction": "Verwalten der Netzwerk-Funktionen.",
+ "node_count": "{count} Knoten"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "Alle Knoten wurden abgefragt",
+ "driverallnodesqueriedsomedead": "Alle Knoten wurden abgefragt. Einige Knoten wurden tot aufgefunden",
+ "driverawakenodesqueries": "Alle wachen Knoten wurden abgefragt",
+ "driverfailed": "Verbindung zum Z-Wave-Controller fehlgeschlagen",
+ "driverready": "Initialisierung des Z-Wave Controllers",
+ "driverremoved": "Der Treiber wurde entfernt",
+ "driverreset": "Der Treiber wurde zurückgesetzt",
+ "offline": "OZWDaemon offline",
+ "ready": "Bereit zum Verbinden",
+ "started": "Verbunden mit MQTT",
+ "starting": "Verbinde zu MQTT",
+ "stopped": "OpenZWave gestoppt"
+ },
+ "offline": "Offline",
+ "online": "Online",
+ "starting": "Startet",
+ "unknown": "Unbekannt"
+ },
+ "node": {
+ "button": "Gerätedetails",
+ "not_found": "Gerät nicht gefunden."
+ },
+ "node_config": {
+ "header": "Knotenkonfiguration",
+ "help_source": "Hilfetexte und Beschreibungen der Konfigurationsparameter stellt das OpenZWave-Projekt zur Verfügung.",
+ "introduction": "Verwalte die verschiedenen Konfigurationsparameter für einen Z-Wave Knoten.",
+ "wakeup_help": "Batteriebetriebene Knoten müssen wach sein, um ihre Konfiguration zu ändern. Wenn der Knoten nicht aktiv ist, versucht OpenZWave beim nächsten Aufwachen, die Konfiguration des Knotens zu aktualisieren. Dies kann mehrere Stunden (oder Tage) später sein. Führe die folgenden Schritte aus, um dein Gerät zu aktivieren:"
+ },
+ "node_metadata": {
+ "product_manual": "Produkthandbuch"
+ },
+ "node_query_stages": {
+ "associations": "Aktualisiert die verbundenen Gruppen und Mitgliedschaften",
+ "cacheload": "Informationen aus der OpenZWave-Cache-Datei laden. Die Batterieknoten bleiben in diesem Stadium, bis der Knoten aufwacht.",
+ "complete": "Der Interviewprozess ist abgeschlossen",
+ "configuration": "Die Konfigurationsdaten werden vom Netzknoten abrufen",
+ "dynamic": "Abrufen häufig wechselnder Werte vom Knoten",
+ "instances": "Details den vom Gerät unterstützten Instanzen oder Kanälen werden abgerufen",
+ "manufacturerspecific1": "Abrufen von Hersteller- und Produkt-ID-Codes vom Knoten",
+ "manufacturerspecific2": "Zusätzliche Hersteller- und Produkt-ID-Codes vom Knoten abrufen",
+ "neighbors": "Eine Liste der Umgebung des Netzknoten wird abgerufen",
+ "nodeinfo": "Abrufen unterstützter Befehlsklassen vom Knoten",
+ "nodeplusinfo": "Abrufen von Z-Wave + Informationen vom Knoten",
+ "probe": "Prüfen, ob der Knoten wach/lebendig ist",
+ "protocolinfo": "Abrufen grundlegender Z-Wave-Funktionen dieses Knotens vom Controller",
+ "session": "Abrufen sporadisch wechselnder Werte vom Knoten",
+ "static": "Statische Werte des Gerätes werden abgerufen",
+ "versions": "Abrufen von Informationen zu Firmware- und Befehlsklassenversionen",
+ "wakeup": "Unterstützung für Weckwarteschlangen und Nachrichten einrichten"
+ },
+ "nodes_table": {
+ "failed": "Fehlgeschlagen",
+ "id": "ID",
+ "manufacturer": "Hersteller",
+ "model": "Modell",
+ "query_stage": "Abfragephase",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Wenn der Netzknoten batteriebetrieben ist, muss er zunächst aktiviert werden, bevor du fortfahren kannst.",
+ "button": "Geräte aktualisieren",
+ "complete": "Netzknotenaktualisierung abgeschlossen",
+ "description": "Dies wird OpenZWave anweisen, einen Knoten erneut zu befragen und die Befehlsklassen, Funktionen und Werte des Knotens zu aktualisieren.",
+ "node_status": "Netzknotenstatus",
+ "refreshing_description": "Netzknoteninformationen werden aktualisiert…",
+ "start_refresh_button": "Aktualisierung starten",
+ "step": "Schritt",
+ "title": "Knoteninformationen aktualisieren",
+ "wakeup_header": "Weckanleitung für",
+ "wakeup_instructions_source": "Weckanweisungen stammen aus der OpenZWave-Community-Gerätedatenbank."
+ },
+ "select_instance": {
+ "header": "OpenZWave Instanz auswählen",
+ "introduction": "Du hast mehr als eine aktive OpenZWave-Instanz. Welche möchtest du verwalten?",
+ "none_found": "Wir haben keine OpenZWave-Instanz gefunden. Wenn du der Meinung bist, dass dies nicht korrekt ist, überprüfe deine OpenZWave- und MQTT-Setups und stelle sicher, dass der Home Assistant mit dem MQTT-Broker kommunizieren kann."
+ },
+ "services": {
+ "add_node": "Knoten hinzufügen",
+ "cancel_command": "Befehl abbrechen",
+ "remove_node": "Knoten entfernen"
+ }
+ },
+ "person": {
+ "add_person": "Person hinzufügen",
+ "caption": "Personen",
+ "confirm_delete": "Möchtest du diese Person wirklich löschen?",
+ "confirm_delete2": "Alle Geräte, die zu dieser Person gehören, werden nicht mehr zugeordnet.",
+ "create_person": "Person erstellen",
+ "description": "Personen verwalten, denen Home Assistant folgt",
+ "detail": {
+ "admin": "Administrator",
+ "allow_login": "Erlaube dieser Person, sich einzuloggen.",
+ "confirm_delete_user": "Bist Du sicher, dass Du das Benutzerkonto für {name} löschen möchtest? Du kannst der Person immer noch folgen, aber sie kann sich nicht mehr anmelden.",
+ "create": "Erstellen",
+ "delete": "Löschen",
+ "device_tracker_intro": "Wähle die Geräte, die dieser Person gehören.",
+ "device_tracker_pick": "Wähle zu verfolgendes Gerät",
+ "device_tracker_picked": "Verfolge Gerät",
+ "link_integrations_page": "Integrationsseite",
+ "link_presence_detection_integrations": "Integrationen zur Anwesenheitserkennung",
+ "linked_user": "Verknüpfter Benutzer",
+ "local_only": "Anmeldung nur über das lokale Netzwerk möglich",
+ "name": "Name",
+ "name_error_msg": "Name erforderlich",
+ "new_person": "Neue Person",
+ "no_device_tracker_available_intro": "Wenn du Geräte hast, die die Anwesenheit einer Person anzeigen, kannst du diese hier einer Person zuordnen. Du kannst dein erstes Gerät hinzufügen, indem du eine Integration zur Anwesenheitserkennung auf der Integrationsseite hinzufügst.",
+ "update": "Aktualisieren"
+ },
+ "introduction": "Hier können Sie jede Person von Interesse in Home Assistant definieren.",
+ "learn_more": "Erfahre mehr über Person",
+ "no_persons_created_yet": "Sieht so aus, als hättest du noch keine Personen angelegt.",
+ "note_about_persons_configured_in_yaml": "Hinweis: Personen, die über configuration.yaml konfiguriert wurden, können nicht über die Benutzeroberfläche bearbeitet werden.",
+ "person_not_found": "Wir konnten die Person, die du bearbeiten wolltest, nicht finden.",
+ "person_not_found_title": "Person nicht gefunden"
+ },
+ "scene": {
+ "activated": "Aktivierte Szene {name}.",
+ "caption": "Szenen",
+ "description": "Gerätezustände erfassen und später einfach wieder abrufen",
+ "editor": {
+ "area": "Bereich",
+ "default_name": "Neue Szene",
+ "devices": {
+ "add": "Ein Gerät hinzufügen",
+ "delete": "Gerät löschen",
+ "header": "Geräte",
+ "introduction": "Füge die Geräte hinzu, die in deine Szene aufgenommen werden sollen. Stelle alle Geräte so ein, wie sie in der Szene sein sollen."
+ },
+ "entities": {
+ "add": "Eine Entität hinzufügen",
+ "delete": "Entität löschen",
+ "device_entities": "Wenn du eine Entität hinzufügst, die zu einem Gerät gehört, wird das Gerät hinzugefügt.",
+ "header": "Entitäten",
+ "introduction": "Entitäten, die nicht zu einem Gerät gehören, können hier festgelegt werden.",
+ "without_device": "Entitäten ohne Gerät"
+ },
+ "icon": "Symbol",
+ "introduction": "Benutze Szenen, um deinem Zuhause Leben einzuhauchen.",
+ "load_error_not_editable": "Nur Szenen in der scenes.yaml sind editierbar.",
+ "load_error_unknown": "Fehler beim Laden der Szene ({err_no}).",
+ "name": "Name",
+ "save": "Speichern",
+ "unsaved_confirm": "Du hast ungespeicherte Änderungen. Bist du dir sicher, dass du den Editor verlassen möchtest?"
+ },
+ "picker": {
+ "add_scene": "Szene hinzufügen",
+ "delete_confirm": "Bist du sicher, dass du diese Szene löschen möchtest?",
+ "delete_scene": "Szene löschen",
+ "duplicate": "Duplizieren",
+ "duplicate_scene": "Szene duplizieren",
+ "edit_scene": "Szene bearbeiten",
+ "header": "Szenen-Editor",
+ "headers": {
+ "name": "Name"
+ },
+ "introduction": "Mit dem Szeneneditor können Szenen erstellt und bearbeitet werden. Bitte folge dem untenstehenden Link, um die Anleitung zu finden. Dies stellt sicher, dass Home Assistant korrekt konfiguriert ist.",
+ "learn_more": "Erfahre mehr über Szenen.",
+ "no_scenes": "Wir konnten keine Szenen finden",
+ "only_editable": "Nur Szenen in der scenes.yaml sind editierbar.",
+ "pick_scene": "Wähle eine Szene zum Bearbeiten aus.",
+ "show_info_scene": "Informationen über die Szene anzeigen"
+ }
+ },
+ "script": {
+ "caption": "Skripte",
+ "description": "Eine Sequenz aus Aktionen ausführen",
+ "editor": {
+ "alias": "Name",
+ "default_name": "Neues Skript",
+ "delete_confirm": "Möchtest du dieses Skript wirklich löschen?",
+ "delete_script": "Skript löschen",
+ "header": "Skript: {name}",
+ "icon": "Symbol",
+ "id": "Entitäts-ID",
+ "id_already_exists": "Diese ID existiert bereits",
+ "id_already_exists_save_error": "Du kannst dieses Skript nicht speichern, da die ID nicht eindeutig ist. Wähle eine andere ID aus oder lasse sie leer, um automatisch eine zu generieren.",
+ "introduction": "Verwende Skripte, um eine Abfolge von Aktionen auszuführen.",
+ "link_available_actions": "Erfahre mehr über verfügbare Aktionen.",
+ "load_error_not_editable": "Nur Skripte in scripts.yaml können bearbeitet werden.",
+ "max": {
+ "parallel": "Maximale Anzahl paralleler Läufe",
+ "queued": "Länge der Warteschlange"
+ },
+ "modes": {
+ "description": "Der Modus steuert, was passiert, wenn ein Skript aufgerufen wird, während es noch von einem oder mehreren vorherigen Aufrufen ausgeführt wird. Lies {documentation_link} für weitere Informationen.",
+ "documentation": "Skript-Dokumentation",
+ "label": "Modus",
+ "parallel": "Parallel",
+ "queued": "In Warteschlange",
+ "restart": "Neu starten",
+ "single": "Einzeln (Standard)"
+ },
+ "save_script": "Skript speichern",
+ "sequence": "Sequenz",
+ "sequence_sentence": "Die Abfolge der Aktionen dieses Skripts.",
+ "show_trace": "Trace anzeigen"
+ },
+ "picker": {
+ "add_script": "Neues Skript erstellen",
+ "dev_script": "Debug-Skript",
+ "duplicate": "Duplizieren",
+ "duplicate_script": "Skript duplizieren",
+ "edit_script": "Skript bearbeiten",
+ "header": "Skript-Editor",
+ "headers": {
+ "name": "Name"
+ },
+ "introduction": "Mit dem Skript-Editor können Skripte erstellt und bearbeitet werden. Bitte folge dem untenstehenden Link, um die Anleitung zu finden. Das stellt sicher, dass Home Assistant richtig konfiguriert ist.",
+ "learn_more": "Weitere Informationen zu Skripten",
+ "no_scripts": "Wir konnten keine Skripte finden",
+ "run_script": "Skript ausführen",
+ "show_info": "Informationen zum Skript anzeigen"
+ }
+ },
+ "server_control": {
+ "caption": "Serversteuerung",
+ "description": "Validierung und Neustart des Home Assistant-Servers",
+ "section": {
+ "reloading": {
+ "automation": "Automatisierungen",
+ "command_line": "Kommandozeilen-Entitäten",
+ "core": "Ort & Anpassungen",
+ "filesize": "Dateigröße-Entitäten",
+ "filter": "Filter-Entitäten",
+ "generic": "Allgemeine IP-Kamera Entitäten",
+ "generic_thermostat": "Generische Thermostatentitäten",
+ "group": "Gruppen, Gruppenentitäten und Benachrichtigungsdienste",
+ "heading": "Neuladen der YAML-Konfiguration",
+ "history_stats": "Verlaufsstatistik-Entitäten",
+ "homekit": "HomeKit",
+ "input_boolean": "Eingabe-Booleans",
+ "input_button": "Eingabe-Tasten",
+ "input_datetime": "Eingabe-Datums- und Zeitfelder",
+ "input_number": "Eingabenummern",
+ "input_select": "Eingabe-Auswahl",
+ "input_text": "Eingabetexte",
+ "introduction": "Einige Komponenten von Home Assistant können ohne einen Neustart neu geladen werden. \"Neu laden\" entlädt dabei die aktuelle Konfiguration und lädt die neue Konfiguration.",
+ "min_max": "Min/Max-Entitäten",
+ "mqtt": "Manuell konfigurierte MQTT-Entitäten",
+ "person": "Personen",
+ "ping": "Binäre Ping-Sensorentitäten",
+ "reload": "{domain}",
+ "rest": "Rest-Entitäten und Benachrichtigungsdienste",
+ "rpi_gpio": "Raspberry Pi GPIO Entitäten",
+ "scene": "Szenen",
+ "script": "Skripte",
+ "smtp": "SMTP-Benachrichtigungsdienste",
+ "statistics": "Statistik-Entitäten",
+ "telegram": "Telegram-Benachrichtigungsdienste",
+ "template": "Template-Entitäten",
+ "themes": "Themes",
+ "timer": "Timer",
+ "trend": "Trend-Entitäten",
+ "universal": "Universelle Media Player-Entitäten",
+ "zone": "Zonen"
+ },
+ "server_management": {
+ "confirm_restart": "Möchtest du Home Assistant wirklich neu starten?",
+ "confirm_stop": "Möchtest du Home Assistant wirklich beenden?",
+ "heading": "Serververwaltung",
+ "introduction": "Steuere deinen Home Assistant.",
+ "restart": "Neu starten",
+ "stop": "Stoppen"
+ },
+ "validation": {
+ "check_config": "Konfiguration prüfen",
+ "heading": "Konfiguration überprüfen",
+ "introduction": "Überprüfen Sie Ihre Konfiguration, wenn Sie kürzlich Änderungen vorgenommen haben und sicherstellen möchten, dass alle Änderungen gültig sind",
+ "invalid": "Konfiguration fehlerhaft",
+ "valid": "Konfiguration in Ordnung"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Tag hinzufügen",
+ "automation_title": "NFC Tag {name} ist gescannt",
+ "caption": "NFC Tags",
+ "confirm_remove": "Möchtest du den Tag {tag} wirklich entfernen?",
+ "confirm_remove_title": "Tag entfernen?",
+ "create_automation": "Automatisierung mit NFC Tag erstellen",
+ "description": "Automatisierungen auslösen, wenn ein NFC-Tag, QR-Code usw. gescannt wird",
+ "detail": {
+ "companion_apps": "Mobile Apps",
+ "create": "Erstellen",
+ "create_and_write": "Erstellen und schreiben",
+ "delete": "Löschen",
+ "description": "Beschreibung",
+ "name": "Name",
+ "new_tag": "Neuer NFC Tag",
+ "tag_id": "NFC Tag ID",
+ "tag_id_placeholder": "Automatisch generiert, wenn leer gelassen",
+ "update": "Aktualisieren",
+ "usage": "Ein Tag kann eine Automatisierung auslösen, wenn er gescannt wird. Du kannst NFC-Tags, QR-Codes oder jede andere Art von Tags verwenden. Verwende unsere {companion_link}, um diesen Tag in ein programmierbares NFC-Tag zu schreiben oder einen QR-Code zu erstellen."
+ },
+ "edit": "Bearbeiten",
+ "headers": {
+ "last_scanned": "Zuletzt gescannt",
+ "name": "Name"
+ },
+ "learn_more": "Erfahre mehr über NFC Tags",
+ "never_scanned": "Nie gescannt",
+ "no_tags": "Keine NFC Tags",
+ "write": "Schreiben"
+ },
+ "updates": {
+ "check_unavailable": {
+ "description": "Du musst das Home Assistant Betriebssystem verwenden, um Updates von Home Assistant über die Benutzeroberfläche prüfen und installieren zu können.",
+ "title": "Suche nach Updates nicht möglich"
+ },
+ "check_updates": "Auf Updates prüfen",
+ "more_updates": "+ {count} Updates",
+ "review": "Überprüfung",
+ "show": "anzeigen",
+ "show_all_updates": "Alle Updates anzeigen",
+ "title": "{count} {count, plural,\n one {Update}\n other {Updates}\n}",
+ "unable_to_fetch": "Updates können nicht geladen werden",
+ "version_available": "Version {version_available} ist verfügbar"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Benutzer hinzufügen",
+ "create": "Benutzerkonto anlegen",
+ "local_only": "Nur lokal",
+ "password": "Passwort",
+ "password_confirm": "Passwort bestätigen",
+ "password_not_match": "Passwörter stimmen nicht überein"
+ },
+ "caption": "Benutzer",
+ "description": "Home Assistant-Benutzerkonten verwalten",
+ "editor": {
+ "activate_user": "Benutzer aktivieren",
+ "active": "Aktiv",
+ "active_tooltip": "Steuert, ob sich der Benutzer anmelden kann",
+ "admin": "Administrator",
+ "caption": "Benutzer anzeigen",
+ "change_password": "Passwort ändern",
+ "confirm_user_deletion": "Möchtest du {name} wirklich löschen?",
+ "deactivate_user": "Benutzer deaktivieren",
+ "delete_user": "Benutzer löschen",
+ "group": "Gruppe",
+ "id": "ID",
+ "local_only": "Anmeldung nur über das lokale Netzwerk möglich",
+ "name": "Anzeigename",
+ "new_password": "Neues Passwort",
+ "owner": "Besitzer",
+ "password_changed": "Das Passwort wurde erfolgreich geändert",
+ "system_generated": "Systembenutzer",
+ "system_generated_users_not_editable": "Systembenutzer können nicht aktualisiert werden.",
+ "system_generated_users_not_removable": "Systembenutzer können nicht entfernt werden.",
+ "unnamed_user": "Namenloser Benutzer",
+ "update_user": "Aktualisieren",
+ "username": "Benutzername"
+ },
+ "is_local": "Lokaler Benutzer",
+ "is_not_active": "Deaktiviert",
+ "is_owner": "Besitzer",
+ "is_system": "Systembenutzer",
+ "picker": {
+ "add_user": "Benutzer hinzufügen",
+ "headers": {
+ "group": "Gruppe",
+ "is_active": "Aktiv",
+ "is_owner": "Besitzer",
+ "local": "Lokal",
+ "name": "Anzeigename",
+ "system": "System",
+ "username": "Benutzername"
+ }
+ },
+ "users_privileges_note": "Benutzergruppen befinden sich derzeit noch in Entwicklung. Der Benutzer wird nicht in der Lage sein, Änderungen an der Instanz über die Benutzeroberfläche vorzunehmen. Derzeit überprüfen wir noch alle API Endpunkte und stellen sicher, dass diese nur von Administratoren genutzt werden können."
+ },
+ "zha": {
+ "add_device": "Gerät hinzufügen",
+ "add_device_page": {
+ "discovered_text": "Geräte werden hier angezeigt sobald sie erkannt worden sind.",
+ "no_devices_found": "Es wurden keine Geräte erkannt. Stelle sicher, dass sie sich im Pairing-Modus befinden und halte sie aktiv, solange die Erkennung läuft.",
+ "pairing_mode": "Stelle sicher, dass sich deine Geräte im Pairing-Modus befinden. Überprüfe dazu die Anweisungen deines Geräts.",
+ "search_again": "Erneut suchen",
+ "spinner": "Suche nach ZHA Zigbee Geräten…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Attribute des ausgewählten Clusters",
+ "get_zigbee_attribute": "Zigbee-Attribut abrufen",
+ "header": "Cluster-Attribute",
+ "help_attribute_dropdown": "Wähle ein Attribut aus, um dessen Wert anzuzeigen oder festzulegen.",
+ "help_get_zigbee_attribute": "Ruft den Wert für das ausgewählte Attribut ab.",
+ "help_set_zigbee_attribute": "Setzt den Attributwert für den angegebenen Cluster auf der angegebenen Entität.",
+ "introduction": "Anzeigen und Bearbeiten von Cluster-Attributen.",
+ "set_zigbee_attribute": "Zigbee-Attribut setzen"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Befehle des ausgewählten Clusters",
+ "header": "Cluster-Befehle",
+ "help_command_dropdown": "Wähle einen Befehl zur Interaktion aus.",
+ "introduction": "Anzeigen und Ausgeben von Cluster-Befehlen.",
+ "issue_zigbee_command": "Zigbee-Kommando absetzen"
+ },
+ "clusters": {
+ "header": "Cluster",
+ "help_cluster_dropdown": "Wähle einen Cluster aus, um Attribute und Befehle anzuzeigen.",
+ "introduction": "Cluster sind die Bausteine für die Zigbee-Funktionalität. Sie trennen die Funktionalität in logische Einheiten. Es gibt Client- und Server-Typen, die sich aus Attributen und Befehlen zusammensetzen."
+ },
+ "common": {
+ "clusters": "Cluster",
+ "manufacturer_code_override": "Hersteller-Code Überschreiben",
+ "value": "Wert"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Verknüpfungen",
+ "update_button": "Konfiguration aktualisieren"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Konfiguration abgeschlossen",
+ "CONFIGURED_status_text": "Initialisieren",
+ "INITIALIZED": "Initialisierung abgeschlossen",
+ "INITIALIZED_status_text": "Das Gerät ist einsatzbereit",
+ "INTERVIEW_COMPLETE": "Interview abgeschlossen",
+ "INTERVIEW_COMPLETE_status_text": "Konfigurieren",
+ "PAIRED": "Gerät gefunden",
+ "PAIRED_status_text": "Interview starten"
+ },
+ "group_binding": {
+ "bind_button_help": "Binde die ausgewählte Gruppe an die ausgewählten Geräte-Cluster.",
+ "bind_button_label": "Gruppe binden",
+ "cluster_selection_help": "Wähle einen Cluster aus, die an die ausgewählte Gruppe gebunden werden sollen.",
+ "group_picker_help": "Wähle eine Gruppe aus, um einen Bindungsbefehl zu erteilen.",
+ "group_picker_label": "Bindbare Gruppen",
+ "header": "Gruppenbindung",
+ "introduction": "Binden und Aufheben der Bindung von Gruppen.",
+ "unbind_button_help": "Trenne die Bindung der ausgewählten Gruppe von den ausgewählten Geräte-Clustern.",
+ "unbind_button_label": "Gruppe auflösen"
+ },
+ "groups": {
+ "add_group": "Gruppe hinzufügen",
+ "add_members": "Mitglieder hinzufügen",
+ "caption": "Gruppen",
+ "create": "Gruppe erstellen",
+ "create_group": "Zigbee Home Automation - Gruppe erstellen",
+ "create_group_details": "Gib die erforderlichen Details ein, um eine neue Zigbee-Gruppe zu erstellen",
+ "creating_group": "Erstelle Gruppe",
+ "delete": "Gruppe löschen",
+ "group_details": "Hier sind alle Details der ausgewählten Zigbee Gruppe.",
+ "group_id": "Gruppen-ID",
+ "group_info": "Gruppen Information",
+ "group_name_placeholder": "Gruppenname",
+ "group_not_found": "Gruppe nicht gefunden!",
+ "groups": "Gruppen",
+ "members": "Mitglieder",
+ "remove_members": "Mitglieder entfernen",
+ "removing_members": "Entferne Mitglieder"
+ },
+ "network": {
+ "caption": "Netzwerk"
+ },
+ "visualization": {
+ "auto_zoom": "Automatischer Zoom",
+ "caption": "Visualisierung",
+ "enable_physics": "Physik aktivieren",
+ "header": "Netzwerkvisualisierung",
+ "highlight_label": "Geräte hervorheben",
+ "refresh_topology": "Topologie aktualisieren",
+ "zoom_label": "Auf Gerät zoomen"
+ }
+ },
+ "zone": {
+ "add_zone": "Zone hinzufügen",
+ "caption": "Zonen",
+ "configured_in_yaml": "Zonen, die über configuration.yaml konfiguriert wurden, können nicht über die Benutzeroberfläche bearbeitet werden.",
+ "confirm_delete": "Möchtest du diesen Bereich wirklich löschen?",
+ "create_zone": "Zone erstellen",
+ "description": "Verwalte die Zonen, in denen du Personen folgen möchtest",
+ "detail": {
+ "create": "Erstellen",
+ "delete": "Löschen",
+ "icon": "Icon",
+ "icon_error_msg": "Das Icon sollte das Format \"Präfix:ICONNAME\" haben, zum Beispiel: \"mdi:home\"",
+ "latitude": "Breitengrad",
+ "longitude": "Längengrad",
+ "name": "Name",
+ "new_zone": "Neue Zone",
+ "passive": "Passiv",
+ "passive_note": "Passive Zonen sind im Frontend versteckt und werden nicht als Ort für Device Tracker verwendet. Dies ist nützlich, wenn du sie nur für Automatisierungen verwenden möchtest.",
+ "radius": "Radius",
+ "required_error_msg": "Dieses Feld ist erforderlich",
+ "update": "Aktualisieren"
+ },
+ "edit_home_zone": "Der Radius der Home-Zone kann noch nicht über das Frontend bearbeitet werden. Ziehe die Markierung auf der Karte, um die Heimatzone zu verschieben.",
+ "edit_home_zone_narrow": "Der Radius der Home-Zone kann noch nicht vom Frontend aus bearbeitet werden. Der Standort kann von der allgemeinen Konfiguration aus geändert werden.",
+ "edit_zone": "Zone bearbeiten",
+ "go_to_core_config": "Zur allgemeinen Konfiguration gehen?",
+ "home_zone_core_config": "Der Standort deiner Homezone kann auf der allgemeinen Konfigurationsseite bearbeitet werden. Der Radius der Homezone kann vom Frontend aus noch nicht bearbeitet werden. Möchtest du zur allgemeinen Konfiguration gehen?",
+ "introduction": "Mit Zonen kannst du bestimmte Regionen auf der Erde angeben. Befindet sich eine Person in einer Zone, übernimmt der Zustand den Namen aus der Zone. Zonen können auch als Auslöser oder Bedingung in Automatisierungs-Setups verwendet werden.",
+ "no_zones_created_yet": "Es sieht so aus, als hättest du noch keine Zonen erstellt."
+ },
+ "zwave": {
+ "common": {
+ "index": "Index",
+ "instance": "Instanz",
+ "unknown": "Unbekannt",
+ "value": "Wert",
+ "wakeup_interval": "Aufwachintervall"
+ },
+ "description": "Z-Wave-Netzwerk verwalten",
+ "learn_more": "Erfahre mehr über Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "Migration zu OpenZWave",
+ "introduction": "Dieser Assistent hilft dir bei der Migration von der alten Z-Wave-Integration zur OpenZWave-Integration, die sich derzeit in der Beta befindet."
+ },
+ "zwave_js": {
+ "header": "Umstellung auf Z-Wave JS",
+ "introduction": "Diese Integration wird nicht mehr gepflegt und wir empfehlen dir, auf die neue Z-Wave JS-Integration umzusteigen. Dieser Assistent hilft dir bei der Migration von der alten Z-Wave-Integration zur neuen Z-Wave-JS-Integration."
+ }
+ },
+ "network_management": {
+ "header": "Z-Wave Netzwerkverwaltung",
+ "introduction": "Führt Befehle aus, die das Z-Wave Netzwerk betreffen. Es wird keine Rückmeldung darüber geben, ob die meisten Befehle erfolgreich waren, aber das OZW-Protokoll kann Hinweise darauf enthalten."
+ },
+ "network_status": {
+ "network_started": "Z-Wave Netzwerk gestartet",
+ "network_started_note_all_queried": "Alle Knoten wurden abgefragt.",
+ "network_started_note_some_queried": "Aktive Knoten wurden abgefragt. Schlafende Knoten werden abgefragt, sobald sie aktiv werden.",
+ "network_starting": "Z-Wave Netzwerk wird gestartet…",
+ "network_starting_note": "Dies kann je nach Größe des Netzwerks eine Weile dauern.",
+ "network_stopped": "Z-Wave Netzwerk gestoppt"
+ },
+ "node_config": {
+ "config_parameter": "Konfigurationsparameter",
+ "config_value": "Konfigurationswert",
+ "false": "Falsch",
+ "header": "Knotenkonfiguration",
+ "seconds": "Sekunden",
+ "set_config_parameter": "Konfiguration speichern",
+ "set_wakeup": "Aufwachintervall einrichten",
+ "true": "Richtig"
+ },
+ "node_management": {
+ "add_to_group": "Zur Gruppe hinzufügen",
+ "entities": "Entitäten dieses Knotens",
+ "entity_info": "Entitätsinformationen",
+ "exclude_entity": "Entität von Home Assistant ausschließen",
+ "group": "Gruppe",
+ "header": "Z-Wave-Knotenverwaltung",
+ "introduction": "Führe Z-Wave-Befehle aus, die einen einzelnen Knoten betreffen. Wähle einen Knoten aus, um eine Liste der verfügbaren Befehle anzuzeigen.",
+ "max_associations": "Maximale Zuordnungen:",
+ "node_group_associations": "Zuordnungen zu Kontengruppen",
+ "node_protection": "Knotenschutz",
+ "node_to_control": "Zu steuernder Knoten",
+ "nodes": "Knoten",
+ "nodes_hint": "Knoten auswählen, um Optionen pro Knoten anzuzeigen",
+ "nodes_in_group": "Andere Knoten in dieser Gruppe:",
+ "pooling_intensity": "Abfragehäufigkeit",
+ "protection": "Schutz",
+ "remove_broadcast": "Broadcast entfernen",
+ "remove_from_group": "Aus der Gruppe entfernen",
+ "set_protection": "Schutz einstellen"
+ },
+ "ozw_log": {
+ "header": "OZW Log",
+ "introduction": "Schauen Sie das Protokoll an. 0 ist das Minimum (lädt das gesamte Protokoll) und 1000 ist das Maximum. Beim Laden wird ein statisches Protokoll angezeigt und das Ende wird automatisch mit der zuletzt angegebenen Anzahl von Zeilen des Protokolls aktualisiert.",
+ "last_log_lines": "Anzahl der letzten Logzeilen",
+ "load": "Laden",
+ "tail": "Ende"
+ },
+ "services": {
+ "add_node": "Knoten hinzufügen",
+ "add_node_secure": "Knoten verschlüsselt hinzufügen",
+ "cancel_command": "Befehl abbrechen",
+ "heal_network": "Netzwerk heilen",
+ "heal_node": "Knoten heilen",
+ "node_info": "Knoteninformationen",
+ "print_node": "Knoten drucken",
+ "refresh_entity": "Entität aktualisieren",
+ "refresh_node": "Knoten aktualisieren",
+ "remove_failed_node": "Fehlerhaften Knoten entfernen",
+ "remove_node": "Knoten entfernen",
+ "replace_failed_node": "Ausgefallenen Knoten ersetzen",
+ "save_config": "Konfiguration speichern",
+ "soft_reset": "Soft Reset",
+ "start_network": "Netzwerk starten",
+ "stop_network": "Netzwerk stoppen",
+ "test_network": "Netzwerk testen",
+ "test_node": "Testknoten"
+ },
+ "values": {
+ "header": "Knotenwerte"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Erfassung abbrechen",
+ "check_logs": "Weitere Informationen findest du in den Protokollen.",
+ "choose_inclusion_strategy": "Wie möchtest du dein Gerät hinzufügen?",
+ "controller_in_inclusion_mode": "Dein Z-Wave-Controller befindet sich jetzt im Inklusionsmodus.",
+ "enter_qr_code": "QR-Code Wert eingeben",
+ "follow_device_instructions": "Befolge die mit dem Gerät gelieferten Anweisungen, um die Kopplung am Gerät auszulösen.",
+ "inclusion_failed": "Das Gerät konnte nicht hinzugefügt werden.",
+ "inclusion_finished": "Das Gerät wurde hinzugefügt.",
+ "interview_failed": "Das Geräteinterview ist fehlgeschlagen. Zusätzliche Informationen sind möglicherweise in den Logs verfügbar.",
+ "interview_started": "Das Gerät wird gerade eingerichtet. Dies könnte eine Weile dauern.",
+ "introduction": "Dieser Assistent führt dich durch das Hinzufügen eines Knotens zu deinem Z-Wave-Netzwerk.",
+ "provisioning_finished": "Das Gerät wurde hinzugefügt. Sobald du es einschaltest, wird es verfügbar sein.",
+ "qr_code": "QR-Code",
+ "qr_code_paragraph": "Wenn dein Gerät SmartStart unterstützt, kannst du den QR-Code für eine einfache Kopplung scannen.",
+ "scan_qr_code": "QR-Code scannen",
+ "searching_device": "Gerät suchen",
+ "secure_inclusion_warning": "Sichere Geräte benötigen zusätzliche Bandbreite; zu viele sichere Geräte können dein Z-Wave-Netzwerk ausbremsen. Wir empfehlen, die sichere Einbindung nur für Geräte zu verwenden, die sie benötigen, wie Schlösser oder Garagentoröffner.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Beispiel: Legacy-Türschlösser ohne S2-Unterstützung",
+ "title": "S0 Legacy"
+ },
+ "S2_AccessControl": {
+ "description": "Beispiel: Türschlösser und Garagentore",
+ "title": "S2 Zugangskontrolle"
+ },
+ "S2_Authenticated": {
+ "description": "Beispiel: Beleuchtung, Sensoren und Sicherheitssysteme",
+ "title": "S2 Authentifiziert"
+ },
+ "S2_Unauthenticated": {
+ "description": "Wie S2 Authentifiziert, aber ohne Überprüfung, dass das richtige Gerät enthalten ist",
+ "title": "S2 Nicht authentifiziert"
+ }
+ },
+ "select_camera": "Kamera auswählen",
+ "start_inclusion": "Starten der Erfassung",
+ "start_secure_inclusion": "Starten der sicheren Erfassung",
+ "title": "Hinzufügen eines Z-Wave-Geräts",
+ "use_secure_inclusion": "Sichere Einbindung verwenden",
+ "view_device": "Gerät anzeigen"
+ },
+ "common": {
+ "add_node": "Gerät hinzufügen",
+ "back": "Zurück",
+ "close": "Schließen",
+ "heal_network": "Netzwerk heilen",
+ "home_id": "Heim-ID",
+ "network": "Netzwerk",
+ "node_id": "Geräte ID",
+ "reconfigure_server": "Server neu konfigurieren",
+ "remove_node": "Gerät entfernen",
+ "source": "Quelle"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n one {Gerät}\n other {Geräte}\n}",
+ "driver_version": "Treiberversion",
+ "dump_dead_nodes_text": "Einige deiner Geräte haben nicht geantwortet und gelten als tot. Diese werden nicht vollständig exportiert.",
+ "dump_dead_nodes_title": "Einige deiner Geräte sind tot",
+ "dump_debug": "Daten herunterladen",
+ "dump_not_ready_confirm": "Herunterladen",
+ "dump_not_ready_text": "Wenn du einen Export erstellst, während nicht alle Geräte bereit sind, können benötigte Daten fehlen. Gib deinem Netzwerk etwas Zeit, um alle Geräte abzufragen. Möchtest du mit dem Dump fortfahren?",
+ "dump_not_ready_title": "Noch nicht alle Geräte sind bereit",
+ "header": "Verwalte dein Z-Wave-Netzwerk",
+ "home_id": "Heim-ID",
+ "introduction": "Verwalte dein Z-Wave-Netzwerk und Z-Wave-Geräte",
+ "nodes_ready": "Geräte bereit",
+ "not_ready": "{count} nicht bereit",
+ "provisioned_devices": "Bereitgestellte Geräte",
+ "server_url": "Server-URL",
+ "server_version": "Serverversion"
+ },
+ "device_info": {
+ "device_config": "Gerät konfigurieren",
+ "heal_node": "Gerät heilen",
+ "highest_security": "Höchste Sicherheit",
+ "is_secure": "Sicher",
+ "node_ready": "Gerät bereit",
+ "node_status": "Gerätestatus",
+ "reinterview_device": "Gerät erneut interviewen",
+ "remove_failed": "Ausgefallenes Gerät entfernen",
+ "unknown": "Unbekannt",
+ "zwave_info": "Z-Wave Info",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Version {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "Die Netzwerkheilung wurde abgebrochen.",
+ "healing_complete": "Die Netzwerkheilung ist abgeschlossen.",
+ "healing_failed": "Heilung fehlgeschlagen. Zusätzliche Informationen könnten in den Protokollen verfügbar sein.",
+ "in_progress": "Die Netzwerkheilung ist im Gange. Dies wird einige Zeit in Anspruch nehmen.",
+ "introduction": "Startet einen Netzwerk-Heal im Z-Wave-Netzwerk. Ein Netzwerk-Heal veranlasst alle Geräte, ihre Routen zurück zum Controller neu zu berechnen und wird empfohlen, wenn kürzlich Geräte oder Controller verschoben wurden.",
+ "run_in_background": "Dieser Dialog kann geschlossen werden und die Netzwerkheilung wird im Hintergrund fortgesetzt.",
+ "start_heal": "Starten der Heilung",
+ "stop_heal": "Stoppen der Heilung",
+ "title": "Heile dein Z-Wave-Netzwerk",
+ "traffic_warning": "Der Heilungsprozess erzeugt eine große Menge an Datenverkehr im Z-Wave-Netzwerk. Dies kann dazu führen, dass Geräte langsam (oder gar nicht) reagieren, während der Heilungsprozess läuft."
+ },
+ "heal_node": {
+ "healing_complete": "{device} wurde geheilt.",
+ "healing_failed": "{device} konnte nicht geheilt werden.",
+ "healing_failed_check_logs": "Zusätzliche Informationen können in den Protokollen verfügbar sein.",
+ "in_progress": "Die Heilung von {device} ist im Gange.",
+ "introduction": "Sage {device}, dass es seine Routen zurück zum Controller aktualisieren soll. Dies kann bei Kommunikationsproblemen helfen, wenn du das Gerät oder deinen Controller kürzlich verschoben hast.",
+ "network_heal_in_progress": "Eine Z-Wave-Netzwerkheilung ist bereits im Gange. Bitte warte, bis der Vorgang abgeschlossen ist, bevor du ein einzelnes Gerät heilst.",
+ "start_heal": "Gerät heilen",
+ "title": "Ein Z-Wave-Gerät heilen",
+ "traffic_warning": "Der Heilungsprozess erzeugt eine große Menge an Datenverkehr im Z-Wave-Netzwerk. Dies kann dazu führen, dass Geräte langsam (oder gar nicht) reagieren, während der Heilungsprozess läuft."
+ },
+ "logs": {
+ "download_logs": "Protokolle herunterladen",
+ "log_level": "Protokollstufe",
+ "log_level_changed": "Log Level geändert auf: {level}",
+ "subscribed_to_logs": "Abonniert Z-Wave JS-Protokollnachrichten …",
+ "title": "Z-Wave JS Protokolle"
+ },
+ "navigation": {
+ "logs": "Protokolle",
+ "network": "Netzwerk"
+ },
+ "network_status": {
+ "connected": "Verbunden",
+ "connecting": "Verbinden",
+ "unknown": "Unbekannt"
+ },
+ "node_config": {
+ "attribution": "Gerätekonfigurationsparameter und -beschreibungen werden von der {device_database} bereitgestellt",
+ "battery_device_notice": "Batteriebetriebene Geräte müssen wach sein, um ihre Konfiguration zu aktualisieren. Anweisungen zum Aufwecken des Geräts findest du im Handbuch deines Geräts.",
+ "error_device_not_found": "Gerät nicht gefunden",
+ "header": "Z-Wave Gerätekonfiguration",
+ "introduction": "Verwalten und Anpassen der gerätespezifischen Konfigurationsparameter für das ausgewählte Gerät",
+ "parameter": "Parameter",
+ "parameter_is_read_only": "Dieser Parameter ist schreibgeschützt.",
+ "set_param_accepted": "Der Parameter wurde aktualisiert.",
+ "set_param_error": "Ein Fehler ist aufgetreten.",
+ "set_param_queued": "Die Parameteränderung wurde in die Warteschlange gestellt und wird beim Aufwachen des Geräts aktualisiert.",
+ "zwave_js_device_database": "Z-Wave JS Gerätedatenbank"
+ },
+ "node_status": {
+ "alive": "Lebendig",
+ "asleep": "Schläft",
+ "awake": "Wach",
+ "dead": "Tot",
+ "unknown": "Unbekannt"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "Wenn du die Bereitstellung des Geräts aufhebst, wird es nicht zum Home Assistant hinzugefügt, wenn es eingeschaltet wird. Wenn das Gerät bereits zu Home Assistant hinzugefügt wurde, wird es durch das Entfernen des bereitgestellten Geräts nicht aus Home Assistant entfernt.",
+ "confirm_unprovision_title": "Bist du sicher, dass du das Gerät nicht mehr bereitstellen willst?",
+ "dsk": "DSK",
+ "included": "Eingebunden",
+ "not_included": "Nicht eingebunden",
+ "security_classes": "Sicherheitsklassen",
+ "unprovison": "Bereitstellung aufheben"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "Du musst batteriebetriebene Geräte aktivieren, bevor du den Neukonfigurationsvorgang startest. Anweisungen zum Aktivieren des Geräts findest du im Handbuch deines Geräts.",
+ "in_progress": "Das Gerät wird interviewt. Dies könnte eine Weile dauern.",
+ "interview_complete": "Geräteinterview abgeschlossen.",
+ "interview_failed": "Das Geräteinterview ist fehlgeschlagen. Zusätzliche Informationen sind möglicherweise in den Logs verfügbar.",
+ "introduction": "Starte ein erneutes Geräteinterview auf deinem Z-Wave-Netzwerk. Verwende diese Funktion, wenn dein Gerät fehlende oder falsche Funktionen anzeigt.",
+ "run_in_background": "Du kannst diesen Dialog schließen und das Interview wird im Hintergrund fortgesetzt.",
+ "start_reinterview": "Neues Interview starten",
+ "title": "Ein Z-Wave-Gerät erneut interviewen"
+ },
+ "remove_failed_node": {
+ "in_progress": "Das Entfernen des Geräts wird ausgeführt.",
+ "introduction": "Entfernt ein ausgefallenes Gerät aus deinem Z-Wave-Netzwerk. Verwende diese Option, wenn du ein Gerät nicht normal ausschließen kannst, weil es defekt ist.",
+ "removal_failed": "Das Gerät konnte nicht aus deinem Z-Wave-Netzwerk entfernt werden.",
+ "removal_finished": "Das Gerät {id} wurde aus deinem Z-Wave-Netzwerk entfernt.",
+ "remove_device": "Gerät entfernen",
+ "title": "Ein ausgefallenes Z-Wave-Gerät entfernen"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Entfernung von Geräten abbrechen",
+ "controller_in_exclusion_mode": "Dein Z-Wave Controller befindet sich jetzt im Ausschluss-Modus",
+ "exclusion_failed": "Das Gerät konnte nicht entfernt werden. Bitte prüfe die Protokolle für weitere Informationen.",
+ "exclusion_finished": "Das Gerät {id} wurde aus deinem Z-Wave-Netzwerk entfernt.",
+ "follow_device_instructions": "Befolge die mit dem Gerät gelieferten Anweisungen, um die Kopplung am Gerät auszulösen.",
+ "introduction": "Entferne ein Gerät aus deinem Z-Wave-Netzwerk und entferne die zugehörigen Geräte und Entitäten aus Home Assistant.",
+ "start_exclusion": "Entfernung von Geräten starten",
+ "title": "Entfernen eines Z-Wave-Geräts"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Keine"
+ },
+ "S0_Legacy": {
+ "description": "Beispiel: Legacy-Türschlösser ohne S2-Unterstützung",
+ "title": "S0 Legacy"
+ },
+ "S2_AccessControl": {
+ "description": "Beispiel: Türschlösser und Garagentore",
+ "title": "S2 Zugangskontrolle"
+ },
+ "S2_Authenticated": {
+ "description": "Beispiel: Beleuchtung, Sensoren und Sicherheitssysteme",
+ "title": "S2 Authentifiziert"
+ },
+ "S2_Unauthenticated": {
+ "description": "Wie S2 Authentifiziert, aber ohne Überprüfung, dass das richtige Gerät enthalten ist",
+ "title": "S2 Nicht authentifiziert"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Es wird Zugriff auf alle Daten in Home Assistant haben.",
+ "hide_message": "Überprüfe die Dokumentation für die panel_custom Komponente, um diese Meldung auszublenden.",
+ "question_trust": "Vertraust du dem externen Panel {name} unter {link}?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Aktive Zuhörer",
+ "alert_event_type": "Der Ereignistyp ist ein Pflichtfeld.",
+ "available_events": "Verfügbare Ereignisse",
+ "count_listeners": "({count} Listener)",
+ "data": "Ereignisdaten (YAML, optional)",
+ "description": "Löse ein Ereignis im Ereignisbus aus.",
+ "documentation": "Dokumentation von Ereignissen.",
+ "event_fired": "Ereignis {name} ausgelöst",
+ "fire_event": "Ereignis auslösen",
+ "listen_to_events": "Hören auf Ereignisse",
+ "listening_to": "Hören auf",
+ "notification_event_fired": "Ereignis {type} erfolgreich ausgelöst!",
+ "start_listening": "Anfangen zuzuhören",
+ "stop_listening": "Aufhören zuzuhören",
+ "subscribe_to": "Ereignis, welches abboniert werden soll",
+ "title": "Ereignisse",
+ "type": "Ereignistyp"
+ },
+ "services": {
+ "accepts_target": "Dieser Dienst akzeptiert ein Ziel, zum Beispiel: \"entity_id: light.bed_light\"",
+ "all_parameters": "Alle verfügbare Parameter",
+ "call_service": "Dienst ausführen",
+ "column_description": "Beschreibung",
+ "column_example": "Beispiel",
+ "column_parameter": "Parameter",
+ "description": "Mit dem Dienstentwicklungstool kannst du jeden verfügbaren Dienst in Home Assistant aufrufen.",
+ "fill_example_data": "Mit Beispieldaten füllen",
+ "no_template_ui_support": "Die Benutzeroberfläche unterstützt keine Templates. Du kannst aber weiterhin den YAML-Editor verwenden.",
+ "title": "Dienste",
+ "ui_mode": "Zum UI Modus",
+ "yaml_mode": "Zum YAML Modus",
+ "yaml_parameters": "Parameter nur im YAML Modus verfügbar"
+ },
+ "states": {
+ "alert_entity_field": "Die Entität ist ein Pflichtfeld",
+ "attributes": "Attribute",
+ "copy_id": "ID in die Zwischenablage kopieren",
+ "current_entities": "Aktuelle Entitäten",
+ "description1": "Legt die aktuelle Zustandsdarstellung einer Entität in Home Assistant fest.",
+ "description2": "Wenn die Entität zu einem Gerät gehört, findet keine tatsächliche Kommunikation mit diesem Gerät statt.",
+ "entity": "Entität",
+ "filter_attributes": "Attribute filtern",
+ "filter_entities": "Entitäten filtern",
+ "filter_states": "Zustände filtern",
+ "last_changed": "Zuletzt geändert",
+ "last_updated": "Zuletzt aktualisiert",
+ "more_info": "Mehr Info",
+ "no_entities": "Keine Entitäten",
+ "set_state": "Status setzen",
+ "state": "Zustand",
+ "state_attributes": "Statusattribute (YAML, optional)",
+ "title": "Zustände"
+ },
+ "statistics": {
+ "entity": "Entität",
+ "fix_issue": {
+ "fix": "Problem beheben",
+ "units_changed": {
+ "clear": "Alle alten Statistikdaten für diese Entität löschen",
+ "fix": "Problem beheben",
+ "title": "Die Einheit dieser Entität wurde geändert",
+ "update": "Aktualisierung der historischen Statistikwerte von ''{metadata_unit}'' nach ''{state_unit}''"
+ }
+ },
+ "issue": "Problem",
+ "issues": {
+ "entity_no_longer_recorded": "Diese Entität wird nicht mehr erfasst.",
+ "entity_not_recorded": "Diese Entität ist von der Erfassung ausgeschlossen.",
+ "no_state": "Für diese Entität ist kein Status verfügbar.",
+ "units_changed": "Die Einheit dieser Entität wurde von ''{metadata_unit}'' auf ''{state_unit}'' geändert.",
+ "unsupported_state_class": "Die Zustandsklasse ''{state_class}'' dieser Entität wird nicht unterstützt.",
+ "unsupported_unit": "Die Einheit (''{state_unit}'') dieser Entität stimmt nicht mit einer Einheit der Geräteklasse ''{device_class}'' überein.",
+ "unsupported_unit_metadata": "Die Einheit (''{metadata_unit}'') der aufgezeichneten Statistik stimmt nicht mit der unterstützten Einheit ''{supported_unit}'' der Geräteklasse ''{device_class}'' überein.",
+ "unsupported_unit_state": "Die Einheit (''{state_unit}'') dieser Entität stimmt nicht mit einer Einheit der Geräteklasse ''{device_class}'' überein."
+ },
+ "no_issue": "Kein Problem",
+ "title": "Statistik"
+ },
+ "templates": {
+ "all_listeners": "Dieses Template überwacht alle Zustandsänderungsereignisse.",
+ "description": "Templates werden durch die Jinja2-Template-Engine mit einigen für Home Assistant spezifischen Erweiterungen gerendert.",
+ "domain": "Domain",
+ "editor": "Template-Editor",
+ "entity": "Entität",
+ "jinja_documentation": "Jinja2 Template Dokumentation",
+ "listeners": "Dieses Template überwacht die folgenden Statusänderungsereignisse:",
+ "no_listeners": "Dieses Template überwacht keine Ereignisse und wird nicht automatisch aktualisiert.",
+ "reset": "Zurücksetzen auf Demo-Template",
+ "result_type": "Ergebnistyp",
+ "template_extensions": "Home Assistant-Template Erweiterungen",
+ "time": "Dieses Template wird zu Beginn jeder Minute aktualisiert.",
+ "title": "Template",
+ "unknown_error_template": "Unbekannter Fehler beim Rendern des Templates"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Einzelne Geräte überwachen",
+ "energy_distribution_title": "Energieverteilung",
+ "energy_gas_graph_title": "Gasverbrauch",
+ "energy_solar_graph_title": "Solarproduktion",
+ "energy_sources_table_title": "Quellen",
+ "energy_usage_graph_title": "Energieverbrauch"
+ },
+ "charts": {
+ "by_device": "Verbrauch nach Gerät",
+ "solar": "Solar",
+ "stat_house_energy_meter": "Gesamt-Energieverbrauch"
+ },
+ "setup": {
+ "back": "Zurück",
+ "done": "Zeig mir mein Energie-Dashboard!",
+ "next": "Weiter"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Du kannst diese Funktion nur verwenden, wenn du die Kontrolle über Lovelace übernommen hast.",
+ "saving_failed": "Speichern der Lovelace-Konfiguration ist fehlgeschlagen.",
+ "yaml_unsupported": "Du kannst diese Funktion nicht verwenden, wenn du Lovelace im YAML-Modus verwendest."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Bist du sicher, dass du die Aktion \"{action}\" ausführen möchtest?",
+ "no_entity_more_info": "Keine Entität für Mehr-Info Dialog angegeben",
+ "no_entity_toggle": "Keine Entität zum Umschalten angegeben",
+ "no_navigation_path": "Kein Navigationspfad angegeben",
+ "no_service": "Kein Dienst zur Ausführung angegeben",
+ "no_url": "Keine URL zum Öffnen angegeben"
+ },
+ "confirm_delete": "Möchten Sie diese Karte wirklich löschen?",
+ "empty_state": {
+ "go_to_integrations_page": "Gehe zur Integrationsseite.",
+ "no_devices": "Auf dieser Seite kannst du deine Geräte steuern, es sieht jedoch so aus, als hättest du noch keine eingerichtet. Gehe zur Integrationsseite, um damit zu beginnen.",
+ "title": "Willkommen Zuhause"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "Diese Karte zeigt an, wie viel der von deinem Haus verbrauchten Energie durch nicht-fossile Brennstoffe wie Sonne, Wind und Atomkraft erzeugt wurde. Je höher, desto besser!",
+ "non_fossil_energy_consumed": "Verbrauch an nicht-fossiler Energie",
+ "non_fossil_energy_not_calculated": "Verbrauchte nicht-fossile Energie konnte nicht berechnet werden"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Energieverbrauch"
+ },
+ "energy_distribution": {
+ "battery": "Batterie",
+ "gas": "Gas",
+ "go_to_energy_dashboard": "Zum Energie-Dashboard gehen",
+ "grid": "Netz",
+ "home": "Zu Hause",
+ "non_fossil": "Nicht-fossil",
+ "solar": "Solar",
+ "title_today": "Energieverteilung heute"
+ },
+ "energy_solar_graph": {
+ "forecast": "Vorhersage {name}",
+ "production": "Produktion {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Batterie gesamt",
+ "cost": "Kosten",
+ "energy": "Energie",
+ "grid_total": "Netz gesamt",
+ "source": "Quelle",
+ "total_costs": "Gesamtkosten"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Kombiniert aus Netz",
+ "consumed_battery": "Verbrauchte Batterie",
+ "consumed_solar": "Verbrauchte Solarenergie",
+ "total_consumed": "Insgesamt verbrauchte {num} kWh",
+ "total_returned": "Insgesamt zurückgegebene {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Steht die Nadel im violetten Bereich, hast du mehr Energie ins Netz zurückgegeben als du verbraucht hast. Steht sie im blauen Bereich, hast du mehr Energie aus dem Netz verbraucht als du zurückgegeben hast.",
+ "energy_dependency": "Diese Karte zeigt deinen Netz-Energieverbrauch an.",
+ "grid_neutrality_not_calculated": "Netzneutralität konnte nicht berechnet werden",
+ "net_consumed_grid": "Nettoverbrauch aus dem Netz",
+ "net_returned_grid": "Netto ins Netz eingespeist",
+ "red_green_color_explain": "Wenn es grün ist, bedeutet dies, dass du mehr Energie produziert, als aus dem Netz verbraucht hast. Wenn es im roten Bereich ist, bedeutet dies, dass du einen Teil des Energieverbrauchs deines Hauses vom Stromnetz abhängig gemacht hast."
+ },
+ "loading": "Laden...",
+ "no_data": "Es sind keine Daten zum Anzeigen vorhanden. Es kann bis zu 2 Stunden dauern, bis neue Daten eintreffen, nachdem du dein Energie-Dashboard konfiguriert hast.",
+ "no_data_period": "Für diesen Zeitraum liegen keine Daten vor.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "Diese Karte zeigt an, wie viel der von dir erzeugten Solarenergie von deinem Haus verbraucht wurde, anstatt ins Netz eingespeist zu werden.",
+ "card_indicates_solar_energy_used_charge_home_bat": "Wenn diese Zahl in der Regel sehr niedrig ist, was auf eine überschüssige Solarproduktion hindeutet, solltest du erwägen, in Zeiten hoher Solarproduktion eine Hausbatterie oder ein Elektroauto mit deinen Solarmodulen zu laden.",
+ "not_produced_solar_energy": "Du hast keine Solarenergie produziert",
+ "self_consumed_solar_could_not_calc": "Selbst verbrauchte Solarenergie konnte nicht berechnet werden",
+ "self_consumed_solar_energy": "Selbst verbrauchte Solarenergie"
+ }
+ },
+ "entities": {
+ "never_triggered": "Nie ausgelöst"
+ },
+ "iframe": {
+ "error_secure_context": "Iframes, die auf Websites mit {target_protocol} zeigen, können nicht geladen werden, wenn Home Assistant über {context_protocol} bereitgestellt wird."
+ },
+ "map": {
+ "reset_focus": "Fokus zurücksetzen"
+ },
+ "picture-elements": {
+ "call_service": "Dienst {name} ausführen",
+ "hold": "Halten:",
+ "more_info": "Zeige weitere Informationen: {name}",
+ "navigate_to": "Navigiere zu {location}",
+ "tap": "Tippe auf:",
+ "toggle": "{name} umschalten",
+ "url": "Fenster zu {url_path} öffnen"
+ },
+ "safe-mode": {
+ "description": "Home Assistant hatte beim Laden deiner Konfiguration Probleme und wird jetzt im abgesicherten Modus ausgeführt. Sieh Dir das Fehlerprotokoll an, um zu erkennen, was schiefgelaufen ist.",
+ "header": "Abgesicherter Modus aktiviert"
+ },
+ "shopping-list": {
+ "add_item": "Artikel hinzufügen",
+ "checked_items": "Markierte Artikel",
+ "clear_items": "Markierte Elemente löschen",
+ "drag_and_drop": "Drag & Drop",
+ "reorder_items": "Elemente neu anordnen"
+ },
+ "show_more_info": "Weitere Informationen anzeigen",
+ "starting": {
+ "description": "Home Assistant startet, bitte warten…"
+ }
+ },
+ "changed_toast": {
+ "message": "Die Lovelace-Konfiguration wurde aktualisiert, möchten Sie sie aktualisieren?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Tag",
+ "month": "Monat",
+ "next": "Weiter",
+ "previous": "Zurück",
+ "today": "Heute",
+ "week": "Woche",
+ "year": "Jahr"
+ },
+ "timestamp-display": {
+ "invalid": "Ungültiger Zeitstempel",
+ "invalid_format": "Ungültiges Anzeigeformat"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Dienst aufrufen",
+ "default_action": "Standardaktion",
+ "more-info": "Mehr Info",
+ "navigate": "Navigieren",
+ "none": "Keine Aktion",
+ "toggle": "Umschalten",
+ "url": "URL"
+ },
+ "navigation_path": "Navigationspfad",
+ "url_path": "URL Pfad"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Verfügbare Zustände",
+ "description": "Mit der Alarmzentralen-Karte kannst du deine Alarmzentralen-Integrationen scharf- und unscharfschalten.",
+ "name": "Alarmpanel"
+ },
+ "area": {
+ "description": "Die Bereichskarte zeigt automatisch Entitäten eines bestimmten Bereichs an.",
+ "name": "Bereich",
+ "show_camera": "Kamerabild anstelle des Bereichsbildes anzeigen"
+ },
+ "button": {
+ "default_action_help": "Die Standardaktion hängt von den Funktionen der Entität ab. Sie wird entweder umgeschaltet oder die weiteren Informationen werden angezeigt.",
+ "description": "Mit der Schaltflächen-Karte kannst du Schaltflächen hinzufügen, um Aufgaben auszuführen.",
+ "name": "Schaltfläche"
+ },
+ "calendar": {
+ "calendar_entities": "Kalender-Entitäten",
+ "description": "Die Kalenderkarte zeigt einen Kalender mit Tages-, Wochen- und Listenansichten an",
+ "inital_view": "Initiale Ansicht",
+ "name": "Kalender",
+ "views": {
+ "dayGridDay": "Tag",
+ "dayGridMonth": "Monat",
+ "listWeek": "Liste"
+ }
+ },
+ "conditional": {
+ "card": "Karte",
+ "change_type": "Typ ändern",
+ "condition_explanation": "Die Karte wird gezeigt, wenn ALLE untenstehenden Bedingungen erfüllt sind.",
+ "conditions": "Bedingungen",
+ "current_state": "aktuell",
+ "description": "Die Bedingungs-Karte zeigt eine andere Karte an, die auf Entitätszuständen basiert.",
+ "name": "Bedingte Elemente",
+ "state_equal": "Zustand ist gleich",
+ "state_not_equal": "Zustand ist nicht gleich"
+ },
+ "config": {
+ "optional": "Optional",
+ "required": "Benötigt"
+ },
+ "entities": {
+ "description": "Die Entitäts-Karte ist der am häufigsten verwendete Kartentyp. Sie gruppiert Elemente in Listen.",
+ "edit_special_row": "Zeige die Details dieser Zeile an, indem du auf die Schaltfläche Bearbeiten klickst",
+ "entity_row": {
+ "attribute": "Attribut",
+ "button": "Schalter",
+ "buttons": "Tasten",
+ "call-service": "Dienst ausführen",
+ "cast": "Cast",
+ "conditional": "Bedingte Elemente",
+ "divider": "Trennlinie",
+ "section": "Abschnitt",
+ "weblink": "Webseiten Link"
+ },
+ "entity_row_editor": "Editor für Entitätszeilen",
+ "name": "Elemente",
+ "secondary_info_values": {
+ "brightness": "Helligkeit",
+ "entity-id": "Entitäts-ID",
+ "last-changed": "Zuletzt geändert",
+ "last-triggered": "Zuletzt ausgelöst",
+ "last-updated": "Zuletzt aktualisiert",
+ "none": "Keine Sekundärinformation",
+ "position": "Position",
+ "tilt-position": "Neigung"
+ },
+ "show_header_toggle": "Schalter anzeigen?",
+ "special_row": "spezielle Reihe",
+ "toggle": "Entitäten umschalten"
+ },
+ "entity-filter": {
+ "description": "Mit der Entitätsfilter-Karte kannst du eine Liste von Entitäten definieren, die du nur in einem bestimmten Status verfolgen möchtest.",
+ "name": "Entität Filter"
+ },
+ "entity": {
+ "description": "Mit der Entitätskarte erhältst du einen schnellen Überblick über den Status einer Entität.",
+ "name": "Entität"
+ },
+ "gauge": {
+ "description": "Die Messkarte ist eine Basiskarte, mit der Sensordaten visuell angezeigt werden können.",
+ "name": "Gauge",
+ "needle_gauge": "Zeiger darstellen?",
+ "severity": {
+ "define": "Schwellenwerte definieren?",
+ "green": "Grün",
+ "red": "Rot",
+ "yellow": "Gelb"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Seitenverhältnis",
+ "attribute": "Attribut",
+ "camera_image": "Kamera-Entität",
+ "camera_view": "Kameraansicht",
+ "days_to_show": "Zu zeigende Tage",
+ "double_tap_action": "Doppeltipp-Aktion",
+ "entities": "Entitäten",
+ "entity": "Entität",
+ "hold_action": "Halte-Aktion",
+ "hours_to_show": "Stunden",
+ "icon": "Symbol",
+ "icon_height": "Symbol Höhe",
+ "image": "Bildpfad",
+ "manual": "Manuell",
+ "manual_description": "Möchtest du eine benutzerdefinierte Karte hinzufügen oder den YAML-Code von Hand bearbeiten?",
+ "maximum": "Maximum",
+ "minimum": "Minimum",
+ "name": "Name",
+ "no_theme": "Kein Theme",
+ "refresh_interval": "Aktualisierungsintervall",
+ "search": "Suche",
+ "secondary_info_attribute": "Zweites Infoattribut",
+ "show_icon": "Symbol anzeigen?",
+ "show_name": "Namen anzeigen?",
+ "show_state": "Status anzeigen?",
+ "state": "Zustand",
+ "state_color": "Symbole basierend auf dem Status einfärben?",
+ "tap_action": "Tipp-Aktion",
+ "theme": "Aussehen",
+ "title": "Titel",
+ "unit": "Einheit",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Spalten",
+ "description": "Die Glance-Karte ist nützlich, um mehrere Sensoren in einer kompakten Übersicht zu gruppieren.",
+ "name": "Glance"
+ },
+ "grid": {
+ "columns": "Spalten",
+ "description": "Mit der Grid-Karte kannst du mehrere Karten in einem Raster anzeigen.",
+ "name": "Raster",
+ "square": "Karten als Quadrate rendern"
+ },
+ "history-graph": {
+ "description": "Mit der Verlaufsdiagramm-Karte kannst du für jedes der aufgelisteten Objekte ein Diagramm anzeigen.",
+ "name": "History Graph"
+ },
+ "horizontal-stack": {
+ "description": "Mit der Karte \"Horizontaler Stapel\" kannst du mehrere Karten so gruppieren, dass sie immer nebeneinander sitzen und gemeinsam die Breite einer Spalte einnehmen.",
+ "name": "Horizontaler Stapel"
+ },
+ "humidifier": {
+ "description": "Die Luftbefeuchter-Karte gibt dir die Kontrolle über deine Luftbefeuchter-Entität. Sie ermöglicht es dir, die Luftfeuchtigkeit und den Modus der Entität zu ändern.",
+ "name": "Luftbefeuchter"
+ },
+ "iframe": {
+ "description": "Mit der Webseiten-Karte kannst du deine Lieblingswebseite direkt in Home Assistant einbetten.",
+ "name": "Webseite"
+ },
+ "light": {
+ "description": "Mit der Licht-Karte kannst du die Helligkeit des Lichts ändern.",
+ "name": "Licht"
+ },
+ "logbook": {
+ "description": "Die Logbuchkarte zeigt eine Liste von Ereignissen für Entitäten.",
+ "name": "Logbuch"
+ },
+ "map": {
+ "dark_mode": "Dunkler Modus?",
+ "default_zoom": "Standard-Zoom",
+ "description": "Mit der Map-Karte kannst du Objekte auf einer Landkarte anzeigen lassen.",
+ "geo_location_sources": "Geolocation-Quellen",
+ "hours_to_show": "Zu zeigende Stunden",
+ "name": "Karte",
+ "source": "Quelle"
+ },
+ "markdown": {
+ "content": "Inhalt",
+ "description": "Die Markdown-Karte wird zum Rendern von Markdown verwendet.",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "description": "Die Media Kontroll-Karte wird verwendet, um Media Player-Entitäten auf einer Oberfläche mit benutzerfreundlichen Steuerelementen anzuzeigen.",
+ "name": "Mediensteuerung"
+ },
+ "picture-elements": {
+ "description": "Die Bilder-Karte ist eine der vielseitigsten Karten. Hier kannst du Symbole, Texte und sogar Dienste basierend auf Bildkoordinaten positionieren.",
+ "name": "Picture Elements"
+ },
+ "picture-entity": {
+ "description": "Die Bilder-Karte zeigt eine Entität in Form eines Bildes an. Anstelle von Bildern aus der URL kann auch das Bild von Kamera-Entitäten angezeigt werden.",
+ "name": "Bild-Entität"
+ },
+ "picture-glance": {
+ "description": "Die Bild Glance-Karte zeigt ein Bild und die entsprechenden Entitätszustände als Symbol. Die Entitäten auf der rechten Seite ermöglichen das Umschalten von Aktionen, andere zeigen den Dialog mit weiteren Informationen an.",
+ "name": "Bild Glance",
+ "state_entity": "Status Entität"
+ },
+ "picture": {
+ "description": "Mit der Bildkarte kannst du ein Bild festlegen, das für die Navigation zu verschiedenen Pfaden in deiner Benutzeroberfläche oder zum Aufrufen eines Dienstes verwendet werden soll.",
+ "name": "Bild"
+ },
+ "plant-status": {
+ "description": "Die Pflanzenstatuskarte ist für alle liebenswerten Botaniker da draußen.",
+ "name": "Pflanzen Status"
+ },
+ "sensor": {
+ "description": "Die Sensorkarte gibt dir einen schnellen Überblick über deinen Sensorstatus mit einem optionalen Diagramm, um Änderungen im Zeitverlauf zu visualisieren.",
+ "graph_type": "Typ",
+ "name": "Sensor",
+ "show_more_detail": "Weitere Details anzeigen"
+ },
+ "shopping-list": {
+ "description": "Mit der Einkaufslistenkarte kannst du Artikel zu deiner Einkaufsliste hinzufügen, bearbeiten, abhaken und löschen.",
+ "integration_not_loaded": "Für diese Karte muss die `shopping_list`-Integration eingerichtet werden.",
+ "name": "Einkaufsliste"
+ },
+ "statistics-graph": {
+ "description": "Mit der Karte Statistikdiagramm kannst du ein Diagramm der Statistiken für jede der aufgelisteten Entitäten anzeigen.",
+ "name": "Statistikdiagramm",
+ "period": "Zeitraum",
+ "periods": {
+ "5minute": "5 Minuten",
+ "day": "Tag",
+ "hour": "Stunde",
+ "month": "Monat"
+ }
+ },
+ "thermostat": {
+ "description": "Die Thermostatkarte gibt dir die Kontrolle über deine Klimaeinheit. Sie ermöglicht es, die Temperatur und den Modus der Einheit zu ändern.",
+ "name": "Thermostat"
+ },
+ "vertical-stack": {
+ "description": "Mit der Karte \"Vertikaler Stapel\" kannst du mehrere Karten so gruppieren, dass sie immer in der gleichen Spalte sitzen.",
+ "name": "Vertikaler Stapel"
+ },
+ "weather-forecast": {
+ "description": "Die Wettervorhersagekarte zeigt das vorhergesagte Wetter an. Sehr nützlich für wandmontierte Displays.",
+ "name": "Wettervorhersage",
+ "show_both": "Aktuelles Wetter und Vorhersage anzeigen",
+ "show_forecast": "Wettervorhersage anzeigen",
+ "show_only_current": "Nur aktuelles Wetter anzeigen",
+ "show_only_forecast": "Nur Vorhersage anzeigen"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Nach Karte",
+ "by_entity": "Nach Entität",
+ "custom_card": "Benutzerdefiniert",
+ "domain": "Domain",
+ "entity": "Entität",
+ "no_description": "Keine Beschreibung verfügbar."
+ },
+ "common": {
+ "add": "Hinzufügen",
+ "clear": "Löschen",
+ "edit": "Bearbeiten",
+ "none": "Keine"
+ },
+ "edit_badges": {
+ "panel_mode": "Diese Abzeichen werden nicht angezeigt, da sich diese Ansicht im \"Panel-Modus\" befindet.",
+ "view_no_badges": "Badges werden vom aktuellen Ansichtstyp nicht unterstützt."
+ },
+ "edit_card": {
+ "add": "Karte hinzufügen",
+ "clear": "Löschen",
+ "confirm_cancel": "Bist du sicher, dass du Abbrechen willst?",
+ "delete": "Karte löschen",
+ "duplicate": "Karte duplizieren",
+ "edit": "Bearbeiten",
+ "header": "Kartenkonfiguration",
+ "move": "In Ansicht verschieben",
+ "move_after": "Karte nach hinten verschieben",
+ "move_before": "Karte nach vorne verschieben",
+ "move_down": "Karte nach unten verschieben",
+ "move_up": "Karte nach oben verschieben",
+ "options": "Mehr Optionen",
+ "pick_card": "Karte auswählen, die hinzugefügt werden soll.",
+ "pick_card_view_title": "Welche Karte möchten Sie Ihrer {name} -Ansicht hinzufügen?",
+ "search_cards": "Karten suchen",
+ "show_code_editor": "Code-Editor anzeigen",
+ "show_visual_editor": "Visuellen Editor anzeigen",
+ "toggle_editor": "Editor umschalten",
+ "typed_header": "{type} Kartenkonfiguration",
+ "unsaved_changes": "Nicht gespeicherte Änderungen"
+ },
+ "edit_lovelace": {
+ "edit_title": "Titel bearbeiten",
+ "explanation": "Dieser Titel wird überhalb aller deiner Lovelace Ansichten gezeigt.",
+ "header": "Titel deiner Lovelace UI",
+ "title": "Titel"
+ },
+ "edit_view": {
+ "add": "Ansicht hinzufügen",
+ "delete": "Ansicht löschen",
+ "edit": "Ansicht bearbeiten",
+ "header": "Konfiguration anzeigen",
+ "header_name": "{name} Konfiguration anzeigen",
+ "move_left": "Ansicht nach links verschieben",
+ "move_right": "Ansicht nach rechts verschieben",
+ "tab_badges": "Plaketten",
+ "tab_settings": "Einstellungen",
+ "tab_visibility": "Sichtbarkeit",
+ "type": "Ansichtsart",
+ "types": {
+ "masonry": "Rasteransicht (Standard)",
+ "panel": "Panel (1 Karte)",
+ "sidebar": "Seitenleiste"
+ },
+ "visibility": {
+ "select_users": "Wähle aus, welche Benutzer diese Ansicht in der Navigation sehen sollen"
+ }
+ },
+ "header": "Benutzeroberfläche bearbeiten",
+ "header-footer": {
+ "choose_header_footer": "Wähle einen {type}",
+ "footer": "Fußzeile",
+ "header": "Kopfzeile",
+ "types": {
+ "buttons": {
+ "name": "Tasten"
+ },
+ "graph": {
+ "name": "Graph"
+ },
+ "picture": {
+ "name": "Bild"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Dashboards verwalten",
+ "manage_resources": "Ressourcen verwalten",
+ "open": "Lovelace-Menü öffnen",
+ "raw_editor": "Raw-Konfigurationseditor"
+ },
+ "migrate": {
+ "header": "Konfiguration inkompatibel",
+ "migrate": "Konfiguration migrieren",
+ "para_migrate": "Home Assistant kann für alle deine Karten und Ansichten die IDs automatisch generieren, wenn du den \"Konfiguration migrieren\"-Button klickst.",
+ "para_no_id": "Dieses Element hat keine ID. Bitte füge diesem Element eine ID in 'ui-lovelace.yaml' hinzu."
+ },
+ "move_card": {
+ "header": "Wähle eine Ansicht, in die die Karte verschoben werden soll"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Wir generieren automatisch deine Lovelace-Ansichten mit deinen Bereichen und Geräten, wenn du deine Lovelace-Konfiguration entfernst.",
+ "confirm_remove_config_title": "Bist du sicher, dass du deine Lovelace-Konfiguration entfernen möchtest? Wir generieren automatisch deine Lovelace-Ansichten mit deinen Bereichen und Geräten.",
+ "confirm_unsaved_changes": "Du hast ungespeicherte Änderungen. Bist du sicher, dass du gehen möchtest?",
+ "confirm_unsaved_comments": "Deine Konfiguration enthält einen oder mehrere Kommentare. Diese werden nicht gespeichert. Möchtest du fortfahren?",
+ "error_invalid_config": "Deine Konfiguration ist ungültig: {error}",
+ "error_parse_yaml": "YAML kann nicht geparsed werden: {error}",
+ "error_remove": "Konfiguration konnte nicht entfernt werden: {error}",
+ "error_save_yaml": "YAML konnte nicht gespeichert werden: {error}",
+ "header": "Konfiguration bearbeiten",
+ "lovelace_changed": "Die Lovelace-Konfiguration wurde aktualisiert. Möchtest du die aktualisierte Konfiguration in den Editor laden und deine aktuellen Änderungen verlieren?",
+ "reload": "Neu laden",
+ "resources_moved": "Ressourcen sollten nicht mehr zur Lovelace-Konfiguration hinzugefügt werden, sondern können im Lovelace-Konfigurationsfenster hinzugefügt werden.",
+ "save": "Speichern",
+ "saved": "Gespeichert",
+ "unsaved_changes": "Nicht gespeicherte Änderungen"
+ },
+ "save_config": {
+ "close": "Schließen",
+ "empty_config": "Beginne mit einem leeren Dashboard",
+ "header": "Lovelace Userinterface selbst verwalten",
+ "para": "Dieses Dashboard wird derzeit von Home Assistant verwaltet. Es wird automatisch aktualisiert, wenn neue Entitäten oder Lovelace-UI-Komponenten verfügbar werden. Wenn du die Kontrolle übernimmst, wird dieses Dashboard nicht mehr automatisch aktualisiert. Du kannst jederzeit ein neues Dashboard in der Konfiguration erstellen, mit dem du herumspielen kannst.",
+ "para_sure": "Bist du dir sicher, dass du die Benutzeroberfläche selbst verwalten möchtest?",
+ "save": "Kontrolle übernehmen",
+ "yaml_config": "Um dir den Einstieg zu erleichtern, findest du hier die aktuelle Konfiguration dieses Dashboards:",
+ "yaml_control": "Um die Kontrolle im YAML-Modus zu übernehmen, erstelle eine YAML-Datei mit dem Namen, den du in deiner Konfiguration für dieses Dashboard angegeben hast, oder mit der Standardeinstellung 'ui-lovelace.yaml'.",
+ "yaml_mode": "Du verwendest den YAML-Modus für dieses Dashboard. Dies bedeutet, dass du deine Lovelace-Konfiguration nicht über die Benutzeroberfläche ändern kannst. Wenn du dieses Dashboard über die Benutzeroberfläche verwalten möchtest, entferne \"mode: yaml\" aus Deiner Lovelace-Konfiguration in \"configuration.yaml\"."
+ },
+ "select_view": {
+ "dashboard_label": "Dashboard",
+ "header": "Wähle eine Ansicht",
+ "views_label": "Ansicht"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Fußzeilen-Editor",
+ "header": "Kopfzeilen-Editor",
+ "row": "Editor für Entitätszeilen"
+ }
+ },
+ "suggest_card": {
+ "add": "Zu Lovelace hinzufügen",
+ "create_own": "Wähle eine andere Karte",
+ "header": "Wir haben einen Vorschlag für dich erstellt"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Diese Ansicht enthält mehr als eine Karte, in einer Bedienfeldansicht kann jedoch nur eine Karte angezeigt werden."
+ }
+ }
+ },
+ "menu": {
+ "close": "Schließen",
+ "configure_ui": "Benutzeroberfläche konfigurieren",
+ "exit_edit_mode": "Erledigt",
+ "help": "Hilfe",
+ "reload_resources": "Ressourcen neu laden",
+ "start_conversation": "Konversation starten"
+ },
+ "reload_lovelace": "Benutzeroberfläche neu laden",
+ "reload_resources": {
+ "refresh_body": "Du musst die Seite aktualisieren, um das Neuladen abzuschließen. Möchtest du jetzt aktualisieren?",
+ "refresh_header": "Möchtest du aktualisieren?"
+ },
+ "unused_entities": {
+ "available_entities": "Dies sind die Entitäten, die du zur Verfügung hast, die aber noch nicht in deiner Lovelace-Benutzeroberfläche enthalten sind.",
+ "domain": "Domain",
+ "entity": "Entität",
+ "entity_id": "Entitäts-ID",
+ "last_changed": "Zuletzt geändert",
+ "no_data": "Keine ungenutzten Entitäten gefunden",
+ "search": "Entitäten durchsuchen",
+ "select_to_add": "Wähle die Entitäten aus, die du zur Karte hinzufügen möchtest und klicke auf den Karte hinzufügen-Button.",
+ "title": "Nicht verwendete Entitäten"
+ },
+ "views": {
+ "confirm_delete": "Möchten Sie diese Ansicht wirklich löschen?",
+ "confirm_delete_existing_cards": "Durch Löschen dieser Ansicht werden auch die Karten entfernt",
+ "confirm_delete_existing_cards_text": "Möchtest du deine Ansicht ''{name}'' wirklich löschen? Die Ansicht enthält {number} Karten, die gelöscht werden. Diese Aktion kann nicht rückgängig gemacht werden.",
+ "confirm_delete_text": "Möchtest du deine Ansicht ''{name}'' wirklich löschen?"
+ },
+ "warning": {
+ "attribute_not_found": "Attribut {attribute} nicht verfügbar in: {entity}",
+ "entity_non_numeric": "Die Entität ist nicht-numerisch: {entity}",
+ "entity_not_found": "Entität nicht verfügbar: {entity}",
+ "entity_unavailable": "Entität ist derzeit nicht verfügbar: {entity}",
+ "starting": "Home Assistant startet gerade, eventuell ist noch nicht alles verfügbar"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Löschen",
+ "delete_prompt": "Diese Nachricht löschen?",
+ "empty": "Sie haben keine Nachrichten",
+ "playback_title": "Nachrichtenwiedergabe"
+ },
+ "map": {
+ "edit_zones": "Zonen bearbeiten"
+ },
+ "my": {
+ "component_not_loaded": "Diese Weiterleitung wird von deiner Home Assistant-Instanz nicht unterstützt. Du benötigst die Integration {integration}, um diese Weiterleitung zu verwenden.",
+ "documentation": "Dokumentation",
+ "error": "Ein unbekannter Fehler ist aufgetreten.",
+ "faq_link": "Meine Home Assistant FAQ",
+ "no_supervisor": "Diese Weiterleitung wird von deiner Home Assistant-Installation nicht unterstützt. Benötigt entweder das Home Assistant-Betriebssystem oder die Home Assistant Supervised-Installationsmethode. Weitere Informationen findest du unter {docs_link}.",
+ "not_supported": "Diese Weiterleitung wird von deiner Home Assistant-Instanz nicht unterstützt. Überprüfe den {link} auf die unterstützten Weiterleitungen und die Version, in der sie eingeführt wurden."
+ },
+ "page-authorize": {
+ "abort_intro": "Anmeldung abgebrochen",
+ "authorizing_client": "Du bist dabei, {clientId} Zugriff auf deine Home Assistant Instanz zu gewähren.",
+ "form": {
+ "error": "Fehler: {error}",
+ "next": "Anmeldung",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Sitzung abgelaufen, bitte erneut anmelden."
+ },
+ "error": {
+ "invalid_auth": "Ungültiger Benutzername oder Passwort",
+ "invalid_code": "Ungültiger Authentifizierungscode"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Passwort",
+ "username": "Benutzername"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Zwei-Faktor Authentifizierungscode"
+ },
+ "description": "Öffne das **{mfa_module_name}** auf deinem Gerät um den 2-Faktor Authentifizierungscode zu sehen und deine Identität zu bestätigen:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Sitzung abgelaufen, bitte erneut anmelden."
+ },
+ "error": {
+ "invalid_auth": "Ungültiger Benutzername oder Passwort",
+ "invalid_code": "Ungültiger Authentifizierungscode"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Passwort",
+ "username": "Benutzername"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Zwei-Faktor Authentifizierungscode"
+ },
+ "description": "Öffne das **{mfa_module_name}** auf deinem Gerät um den 2-Faktor Authentifizierungscode zu sehen und deine Identität zu bestätigen:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Sitzung abgelaufen, bitte erneut anmelden.",
+ "no_api_password_set": "Du hast kein API-Passwort konfiguriert."
+ },
+ "error": {
+ "invalid_auth": "Ungültiges API-Passwort",
+ "invalid_code": "Ungültiger Authentifizierungscode"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "API-Passwort"
+ },
+ "description": "Bitte gib das API-Passwort deiner HTTP-Konfiguration ein:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Zwei-Faktor Authentifizierungscode"
+ },
+ "description": "Öffne das **{mfa_module_name}** auf deinem Gerät um den 2-Faktor Authentifizierungscode zu sehen und deine Identität zu bestätigen:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Dein Computer ist nicht auf der Whitelist."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Benutzer"
+ },
+ "description": "Bitte wähle einen Benutzer aus, mit dem du dich anmelden möchtest:"
+ }
+ }
+ }
+ },
+ "start_over": "Neu anfangen",
+ "unknown_error": "Etwas lief schief",
+ "working": "Bitte warten"
+ },
+ "initializing": "Initialisieren",
+ "logging_in_to_with": "Anmelden bei **{locationName}** mit **{authProviderName}**.",
+ "logging_in_with": "Anmeldung mit **{authProviderName}**.",
+ "pick_auth_provider": "Oder melde dich an mit",
+ "store_token": "Angemeldet bleiben"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "von {name}",
+ "introduction": "Willkommen zu Hause! Sie haben die Home Assistant-Demo erreicht, in der wir die besten Benutzeroberflächen unserer Community präsentieren.",
+ "learn_more": "Erfahre mehr über Home Assistant",
+ "next_demo": "Nächste Demo"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Aktivität",
+ "air": "Luft",
+ "commute_home": "Pendeln nach Hause",
+ "entertainment": "Unterhaltung",
+ "hdmi_input": "HDMI Eingang",
+ "hdmi_switcher": "HDMI-Umschalter",
+ "information": "Informationen",
+ "lights": "Beleuchtung",
+ "morning_commute": "Morgendliche Pendelfahrt",
+ "total_tv_time": "Gesamte TV-Zeit",
+ "turn_tv_off": "Fernseher ausschalten",
+ "volume": "Lautstärke"
+ },
+ "names": {
+ "family_room": "Wohnzimmer",
+ "hallway": "Flur",
+ "kitchen": "Küche",
+ "left": "Links",
+ "master_bedroom": "Schlafzimmer",
+ "mirror": "Spiegel",
+ "patio": "Terrasse",
+ "right": "Rechts",
+ "temperature_study": "Temperatur Arbeitszimmer",
+ "upstairs": "Obergeschoss"
+ },
+ "unit": {
+ "minutes_abbr": "min",
+ "watching": "zuschauend"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Weiter"
+ },
+ "core-config": {
+ "button_detect": "Erkennen",
+ "finish": "Weiter",
+ "intro": "Hallo {name}, willkommen bei der Home Assistant. Wie möchtest du dein Haus benennen?",
+ "intro_location": "Wir würden gerne wissen, wo du wohnst. Diese Information hilft bei der Anzeige von Informationen und der Einrichtung von Sonnenstands-basierten Automatisierungen. Diese Daten werden niemals außerhalb deines Netzwerks weitergegeben.",
+ "intro_location_detect": "Wir können helfen, diese Informationen auszufüllen, indem wir eine einmalige Anfrage an einen externen Dienstleister richten.",
+ "location_name": "Name deiner Home Assistant Installation",
+ "location_name_default": "Home"
+ },
+ "finish": "Fertig",
+ "integration": {
+ "finish": "Fertig",
+ "intro": "Geräte und Dienste werden in Home Assistant als Integrationen dargestellt. Sie können jetzt oder später über die Konfigurationsseite eingerichtet werden.",
+ "more_integrations": "Mehr"
+ },
+ "intro": "Sind Sie bereit, dein Zuhause zu wecken, Ihre Privatsphäre zurückzugewinnen und einer weltweiten Gemeinschaft von Tüftlern beizutreten?",
+ "next": "Weiter",
+ "restore": {
+ "addons": "Add-ons",
+ "confirm_password": "Backup-Passwort bestätigen",
+ "description": "Alternativ kannst du von einem vorherigen Backup wiederherstellen.",
+ "folders": "Ordner",
+ "full_backup": "Vollständiges Backup",
+ "hide_log": "Vollständiges Protokoll ausblenden",
+ "in_progress": "Wiederherstellung im Gange",
+ "partial_backup": "Partielles Backup",
+ "password": "Backup-Passwort",
+ "password_protection": "Passwortschutz",
+ "select_type": "Wähle aus, was wiederhergestellt werden soll",
+ "show_log": "Vollständiges Protokoll anzeigen",
+ "type": "Backup-Typ",
+ "upload_backup": "Backup hochladen"
+ },
+ "user": {
+ "create_account": "Benutzerkonto anlegen",
+ "data": {
+ "name": "Name",
+ "password": "Passwort",
+ "password_confirm": "Passwort bestätigen",
+ "username": "Benutzername"
+ },
+ "error": {
+ "password_not_match": "Passwörter stimmen nicht überein",
+ "required_fields": "Fülle alle Pflichtfelder aus."
+ },
+ "intro": "Beginnen wir mit dem Erstellen eines Benutzerkontos.",
+ "required_field": "Erforderlich"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Home Assistant verbirgt standardmäßig erweiterte Funktionen und Optionen. Mache diese Funktionen zugänglich, indem diese Option aktiviert wird. Dies ist eine benutzerspezifische Einstellung, die sich nicht auf andere Benutzer auswirkt, die Home Assistant verwenden.",
+ "link_promo": "Mehr erfahren",
+ "title": "Erweiterter Modus"
+ },
+ "change_password": {
+ "confirm_new_password": "Neues Passwort Bestätigen",
+ "current_password": "Aktuelles Passwort",
+ "error_new_is_old": "Das neue Passwort muss sich von dem aktuellen Passwort unterscheiden.",
+ "error_new_mismatch": "Eingegebene neue Passwörter stimmen nicht überein",
+ "error_required": "Erforderlich",
+ "header": "Passwort ändern",
+ "new_password": "Neues Passwort",
+ "submit": "Absenden",
+ "success": "Passwort wurde erfolgreich geändert"
+ },
+ "current_user": "Du bist derzeit als {fullName} angemeldet.",
+ "customize_sidebar": {
+ "button": "Bearbeiten",
+ "description": "Du kannst auch die Kopfzeile der Seitenleiste gedrückt halten, um den Bearbeitungsmodus zu aktivieren.",
+ "header": "Elemente in der Seitenleiste verstecken und Reihenfolge ändern"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Übersicht (Standard)",
+ "description": "Wähle ein Standard-Dashboard für dieses Gerät.",
+ "dropdown_label": "Dashboard",
+ "header": "Dashboard"
+ },
+ "enable_shortcuts": {
+ "description": "Aktiviere oder deaktiviere Tastaturkürzel, um verschiedene Aktionen in der Benutzeroberfläche auszuführen.",
+ "header": "Tastaturkürzel"
+ },
+ "force_narrow": {
+ "description": "Dies blendet die Seitenleiste standardmäßig aus, ähnlich der Nutzung auf Mobilgeräten.",
+ "header": "Verstecke die Seitenleiste immer"
+ },
+ "is_owner": "Du bist der Besitzer.",
+ "language": {
+ "dropdown_label": "Sprache",
+ "header": "Sprache",
+ "link_promo": "Hilfe beim Übersetzen"
+ },
+ "logout": "Abmelden",
+ "logout_text": "Möchtest du dich wirklich abmelden?",
+ "logout_title": "Abmelden?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Möchtest du den Zugriffs-Token für {name} wirklich löschen?",
+ "create": "Token erstellen",
+ "create_failed": "Das Zugriffs-Token konnte nicht erstellt werden.",
+ "created": "Erstellt am {date}",
+ "delete_failed": "Fehler beim Löschen des Zugriffs-Tokens.",
+ "description": "Erstelle langlebige Zugriffstoken, damit deine Skripte mit deiner Home Assistant-Instanz interagieren können. Jedes Token ist ab der Erstellung für 10 Jahre gültig. Die folgenden langlebigen Zugriffstoken sind derzeit aktiv.",
+ "empty_state": "Du hast noch keine langlebigen Zugangs-Token.",
+ "header": "Langlebige Zugangs-Token",
+ "learn_auth_requests": "Erfahre, wie du authentifizierte Anfragen stellen kannst.",
+ "name": "Name",
+ "prompt_copy_token": "Kopiere deinen Zugangs-Token. Er wird nicht wieder angezeigt werden.",
+ "prompt_name": "Gib den Token einen Namen"
+ },
+ "mfa": {
+ "confirm_disable": "Möchtest du {name} wirklich deaktivieren?",
+ "disable": "Deaktivieren",
+ "enable": "Aktivieren",
+ "header": "Multi-Faktor-Authentifizierungsmodul"
+ },
+ "mfa_setup": {
+ "close": "Schließen",
+ "step_done": "Setup für {step} abgeschlossen",
+ "submit": "Absenden",
+ "title_aborted": "Abgebrochen",
+ "title_success": "Erfolgreich!"
+ },
+ "number_format": {
+ "description": "Wähle aus, wie Zahlen formatiert werden sollen.",
+ "dropdown_label": "Zahlenformat",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Auto (Spracheinstellung verwenden)",
+ "none": "Keine",
+ "space_comma": "1 234 567,89",
+ "system": "Systemeinstellungen verwenden"
+ },
+ "header": "Zahlenformat"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Gerätename",
+ "title": "Wie soll dieses Gerät genannt werden?"
+ },
+ "description": "Sende Benachrichtigungen an dieses Gerät.",
+ "error_load_platform": "Konfiguriere notify.html5.",
+ "error_use_https": "Erfordert aktiviertes SSL/TLS für das Frontend.",
+ "header": "Push-Benachrichtigungen",
+ "link_promo": "Mehr erfahren",
+ "push_notifications": "Push-Benachrichtigungen"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Möchtest du das Aktualisierungstoken für {name} wirklich löschen?",
+ "created_at": "Erstellt am {date}",
+ "current_token_tooltip": "Aktueller Refresh-Token konnte nicht gelöscht werden",
+ "delete_failed": "Fehler beim Löschen das Aktualisierungs-Token.",
+ "description": "Jedes Aktualisierungstoken stellt eine Anmeldesitzung dar. Aktualisierungstoken werden automatisch entfernt, wenn du auf Abmelden klickst. Die folgenden Aktualisierungstoken sind derzeit für dein Konto aktiv.",
+ "header": "Aktualisierungs-Tokens",
+ "last_used": "Zuletzt verwendet {date} von {location}",
+ "not_used": "Wurde noch nie benutzt",
+ "token_title": "Aktualisierungs-Token für {clientId}"
+ },
+ "suspend": {
+ "description": "Sollen wir die Verbindung zum Server schließen, nachdem sie 5 Minuten lang versteckt war?",
+ "header": "Verbindung automatisch schließen"
+ },
+ "themes": {
+ "accent_color": "Akzentfarbe",
+ "dark_mode": {
+ "auto": "Automatisch",
+ "dark": "Dunkel",
+ "light": "Hell"
+ },
+ "dropdown_label": "Thema",
+ "error_no_theme": "Keine Themen verfügbar.",
+ "header": "Thema",
+ "link_promo": "Erfahre mehr über Themen",
+ "primary_color": "Primärfarbe",
+ "reset": "zurücksetzen"
+ },
+ "time_format": {
+ "description": "Wähle aus, wie Zeiten formatiert werden sollen.",
+ "dropdown_label": "Zeitformat",
+ "formats": {
+ "12": "12 Stunden (AM/PM)",
+ "24": "24 Stunden",
+ "language": "Auto (Spracheinstellung verwenden)",
+ "system": "Systemeinstellungen verwenden"
+ },
+ "header": "Zeitformat"
+ },
+ "vibrate": {
+ "description": "Aktiviere oder deaktiviere die Vibration an diesem Gerät, wenn du Geräte steuerst.",
+ "header": "Vibrieren"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Konversation starten"
+ }
+ },
+ "sidebar": {
+ "done": "Fertig",
+ "external_app_configuration": "App-Konfiguration",
+ "hide_panel": "Panel ausblenden",
+ "show_panel": "Panel anzeigen",
+ "sidebar_toggle": "Seitenleiste umschalten"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/el.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/el.json
new file mode 100644
index 00000000..3c4544e2
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/el.json
@@ -0,0 +1,4673 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Παράμετρος διαμόρφωσης",
+ "device": "Συσκευή",
+ "integration": "Ενσωμάτωση",
+ "user": "Χρήστης"
+ }
+ },
+ "groups": {
+ "owner": "Ιδιοκτήτης",
+ "system-admin": "Διαχειριστές",
+ "system-read-only": "Χρήστες μόνο για ανάγνωση",
+ "system-users": "Χρήστες"
+ },
+ "panel": {
+ "calendar": "Ημερολόγιο",
+ "config": "Ρυθμίσεις",
+ "developer_tools": "Εργαλεία προγραμματιστή",
+ "energy": "Ενέργεια",
+ "history": "Ιστορικό",
+ "logbook": "Αρχείο Συμβάντων",
+ "mailbox": "Γραμματοκιβώτιο",
+ "map": "Χάρτης",
+ "media_browser": "Πρόγραμμα περιήγησης πολυμέσων",
+ "profile": "Προφίλ",
+ "shopping_list": "Λίστα αγορών",
+ "states": "Επισκόπηση"
+ },
+ "state": {
+ "default": {
+ "off": "Μη Ενεργό",
+ "on": "Ενεργό",
+ "unavailable": "Μη Διαθέσιμο",
+ "unknown": "Άγνωστη"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Αυτόματο",
+ "off": "Κλειστό",
+ "on": "Ανοιχτό"
+ },
+ "hvac_action": {
+ "cooling": "Ψύξη",
+ "drying": "Αφύγρανση",
+ "fan": "Ανεμιστήρας",
+ "heating": "Θέρμανση",
+ "idle": "Σε αδράνεια",
+ "off": "Κλειστό"
+ },
+ "preset_mode": {
+ "activity": "Δραστηριότητα",
+ "away": "Εκτός",
+ "boost": "Ενίσχυση",
+ "comfort": "Άνεση",
+ "eco": "Οικονομικό",
+ "home": "Σπίτι",
+ "none": "Κανένας",
+ "sleep": "Ύπνος"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Αυτόματο",
+ "away": "Εκτός",
+ "baby": "Μωρό",
+ "boost": "Ενίσχυση",
+ "comfort": "Άνεση",
+ "eco": "Eco",
+ "home": "Σπίτι",
+ "normal": "Κανονικός",
+ "sleep": "Ύπνος"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Οπλισμένος",
+ "armed_away": "Οπλισμένος",
+ "armed_custom_bypass": "Οπλισμένος",
+ "armed_home": "Οπλισμένος",
+ "armed_night": "Οπλισμένος",
+ "armed_vacation": "Οπλισμένος",
+ "arming": "Όπλιση",
+ "disarmed": "Αφόπλιση",
+ "disarming": "Αφόπλιση",
+ "pending": "Εκκρεμής",
+ "triggered": "Ενεργ"
+ },
+ "default": {
+ "entity_not_found": "Η οντότητα δεν βρέθηκε",
+ "error": "Σφάλμα",
+ "unavailable": "Μη Διαθ",
+ "unknown": "Άγνωστο"
+ },
+ "device_tracker": {
+ "home": "Σπίτι",
+ "not_home": "Εκτός"
+ },
+ "person": {
+ "home": "Σπίτι",
+ "not_home": "Εκτός"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Προεπιλογή",
+ "header": "Ήχος",
+ "input": "Είσοδος",
+ "output": "Έξοδος"
+ },
+ "network": {
+ "container": "Κοντέινερ",
+ "disabled": "Απενεργοποιημένο",
+ "header": "Δίκτυο",
+ "host": "Κεντρικός υπολογιστής"
+ },
+ "no_configuration": "Αυτό το πρόσθετο δεν εκθέτει τη διαμόρφωση για να την επεξεργαστείτε…",
+ "options": {
+ "edit_in_ui": "Επεξεργασία σε περιβάλλον χρήστη",
+ "edit_in_yaml": "Επεξεργασία σε YAML",
+ "header": "Επιλογές",
+ "invalid_yaml": "Μη έγκυρο YAML",
+ "show_unused_optional": "Εμφάνιση αχρησιμοποίητων προαιρετικών ρυθμίσεων διαμόρφωσης"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Αποτυχία λήψης αλλαγών πρόσθετων",
+ "go_to_config": "Αποτυχία έναρξης πρόσθετου - η επικύρωση διαμόρφωσης απέτυχε!",
+ "install": "Αποτυχία εγκατάστασης πρόσθετου",
+ "restart": "Αποτυχία επανεκκίνησης του πρόσθετου",
+ "start": "Αποτυχία έναρξης πρόσθετου",
+ "start_invalid_config": "Μεταβείτε στη διαμόρφωση",
+ "stop": "Αποτυχία διακοπής του πρόσθετου",
+ "uninstall": "Αποτυχία απεγκατάστασης του πρόσθετου",
+ "validate_config": "Αποτυχία επικύρωσης διαμόρφωσης πρόσθετου"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "Το AppArmor ('Application Armor') είναι μια λειτουργική μονάδα ασφαλείας πυρήνα Linux που περιορίζει τις δυνατότητες πρόσθετων, όπως πρόσβαση στο δίκτυο, πρόσβαση σε ακατέργαστη υποδοχή και άδεια ανάγνωσης, εγγραφής ή εκτέλεσης συγκεκριμένων αρχείων. \n\n Οι συντάκτες πρόσθετων μπορούν να παρέχουν τα προφίλ ασφαλείας τους, βελτιστοποιημένα για το πρόσθετο ή να ζητήσουν την απενεργοποίησή του. Εάν το AppArmor είναι απενεργοποιημένο, θα αυξήσει τους κινδύνους ασφαλείας και, ως εκ τούτου, έχει αρνητικό αντίκτυπο στη βαθμολογία ασφαλείας του πρόσθετου.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "Ένα πρόσθετο μπορεί να κάνει έλεγχο ταυτότητας των χρηστών έναντι του Home Assistant, επιτρέποντας στα πρόσθετα να δίνουν στους χρήστες τη δυνατότητα να συνδεθούν σε εφαρμογές που εκτελούνται μέσα σε πρόσθετα, χρησιμοποιώντας το όνομα χρήστη / τον κωδικό πρόσβασης του Home Assistant. Αυτό το σήμα υποδεικνύει εάν ο συντάκτης του πρόσθετου ζητά αυτήν τη δυνατότητα.",
+ "title": "Έλεγχος ταυτότητας Home Assistant"
+ },
+ "docker_api": {
+ "description": "Ο συντάκτης του πρόσθετου ζήτησε από το πρόσθετο να έχει πρόσβαση διαχείρισης στην παρουσία Docker που εκτελείται στο σύστημά σας. Αυτή η λειτουργία παρέχει στο πρόσθετο πλήρη πρόσβαση και έλεγχο σε ολόκληρο το σύστημα οικιακού βοηθού σας, το οποίο προσθέτει κινδύνους ασφαλείας και ενδέχεται να προκαλέσει βλάβη στο σύστημά σας όταν γίνεται κατάχρηση. Επομένως, αυτή η δυνατότητα επηρεάζει αρνητικά τη βαθμολογία ασφαλείας του πρόσθετου. \n\n Αυτό το επίπεδο πρόσβασης δεν χορηγείται αυτόματα και πρέπει να επιβεβαιωθεί από εσάς. Για να το κάνετε αυτό, πρέπει να απενεργοποιήσετε τη λειτουργία προστασίας στο πρόσθετο με μη αυτόματο τρόπο. Απενεργοποιήστε τη λειτουργία προστασίας μόνο εάν γνωρίζετε, χρειάζεστε και εμπιστεύεστε την πηγή αυτού του πρόσθετου.",
+ "title": "Πλήρης πρόσβαση στο Docker"
+ },
+ "full_access": {
+ "description": "Αυτό το πρόσθετο έχει πλήρη πρόσβαση στο υλικό του συστήματός σας, κατόπιν αιτήματος του συντάκτη του πρόσθετου. Η πρόσβαση είναι συγκρίσιμη με την προνομιακή λειτουργία στο Docker. Εφόσον αυτό δημιουργεί πιθανούς κινδύνους ασφαλείας, αυτή η δυνατότητα επηρεάζει αρνητικά τη βαθμολογία ασφαλείας του πρόσθετου. \n\n Αυτό το επίπεδο πρόσβασης δεν χορηγείται αυτόματα και πρέπει να επιβεβαιωθεί από εσάς. Για να το κάνετε αυτό, πρέπει να απενεργοποιήσετε τη λειτουργία προστασίας στο πρόσθετο με μη αυτόματο τρόπο. Απενεργοποιήστε τη λειτουργία προστασίας μόνο εάν γνωρίζετε, χρειάζεστε και εμπιστεύεστε την πηγή αυτού του πρόσθετου.",
+ "title": "Πλήρης πρόσβαση στο υλικό"
+ },
+ "hassio_api": {
+ "description": "Το πρόσθετο δόθηκε πρόσβαση στο API του Επόπτη, κατόπιν αιτήματος του συντάκτη του πρόσθετου. Από προεπιλογή, το πρόσθετο μπορεί να έχει πρόσβαση σε γενικές πληροφορίες έκδοσης του συστήματός σας. Όταν το πρόσθετο ζητά πρόσβαση σε επίπεδο \"διαχειριστή\" ή \"διαχειριστή\" στο API, θα αποκτήσει πρόσβαση στον έλεγχο πολλών τμημάτων του συστήματος του Οικιακού Βοηθού. Αυτή η άδεια υποδεικνύεται από αυτό το σήμα και θα επηρεάσει αρνητικά τη βαθμολογία ασφαλείας του πρόσθετου.",
+ "title": "Πρόσβαση API Επόπτη"
+ },
+ "homeassistant_api": {
+ "description": "Αυτό το πρόσθετο επιτρέπεται να έχει άμεση πρόσβαση στην τρέχουσα παρουσία του Βοηθού σπιτιού μέσω του Home Assistant API. Αυτή η λειτουργία χειρίζεται τον έλεγχο ταυτότητας και για το πρόσθετο, το οποίο επιτρέπει σε ένα πρόσθετο να αλληλεπιδρά με το Home Assistant χωρίς την ανάγκη πρόσθετων διακριτικών ελέγχου ταυτότητας.",
+ "title": "Πρόσβαση Home Assistant API"
+ },
+ "host_network": {
+ "description": "Τα πρόσθετα συνήθως εκτελούνται στο δικό τους απομονωμένο επίπεδο δικτύου, το οποίο τους εμποδίζει να έχουν πρόσβαση στο δίκτυο του κεντρικού λειτουργικού συστήματος. Σε ορισμένες περιπτώσεις, αυτή η απομόνωση δικτύου μπορεί να περιορίσει τα πρόσθετα στην παροχή των υπηρεσιών τους και ως εκ τούτου, η απομόνωση μπορεί να αρθεί από τον πρόσθετο συντάκτη, παρέχοντας στο πρόσθετο πλήρη πρόσβαση στις δυνατότητες δικτύου του κεντρικού υπολογιστή. Αυτό δίνει στο πρόσθετο περισσότερες δυνατότητες δικτύωσης αλλά μειώνει την ασφάλεια, επομένως, η βαθμολογία ασφαλείας του πρόσθετου θα μειωθεί όταν αυτή η επιλογή χρησιμοποιείται από το πρόσθετο.",
+ "title": "Δίκτυο διακομιστή"
+ },
+ "host_pid": {
+ "description": "Συνήθως, οι διαδικασίες που εκτελούνται το πρόσθετο, είναι απομονωμένες από όλες τις άλλες διαδικασίες συστήματος. Ο συντάκτης του πρόσθετου ζήτησε από το πρόσθετο να έχει πρόσβαση στις διεργασίες συστήματος που εκτελούνται στην παρουσία του συστήματος κεντρικού υπολογιστή, και επιτρέπει στο πρόσθετο να δημιουργεί διαδικασίες στο σύστημα κεντρικού υπολογιστή. Αυτή η λειτουργία παρέχει στο πρόσθετο πλήρη πρόσβαση και έλεγχο σε ολόκληρο το σύστημα οικιακού βοηθού σας, το οποίο προσθέτει κινδύνους ασφαλείας και ενδέχεται να προκαλέσει βλάβη στο σύστημά σας όταν γίνεται κατάχρηση. Επομένως, αυτή η δυνατότητα επηρεάζει αρνητικά τη βαθμολογία ασφαλείας του πρόσθετου. \n\n Αυτό το επίπεδο πρόσβασης δεν χορηγείται αυτόματα και πρέπει να επιβεβαιωθεί από εσάς. Για να το κάνετε αυτό, πρέπει να απενεργοποιήσετε τη λειτουργία προστασίας στο πρόσθετο με μη αυτόματο τρόπο. Απενεργοποιήστε τη λειτουργία προστασίας μόνο εάν γνωρίζετε, χρειάζεστε και εμπιστεύεστε την πηγή αυτού του πρόσθετου.",
+ "title": "Χώρος ονομάτων διεργασιών διακομιστή"
+ },
+ "ingress": {
+ "description": "Αυτό το πρόσθετο χρησιμοποιεί το Ingress για να ενσωματώσει τη διασύνδεσή του με ασφάλεια στο Home Assistant.",
+ "title": "Ingress"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "εξουσιοδότηση",
+ "core": "Πυρήνας",
+ "docker": "docker",
+ "hardware": "υλικό",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "κεντρικός υπολογιστής",
+ "host_pid": "pid διακομιστή",
+ "ingress": "ingress",
+ "rating": "εκτίμηση",
+ "stage": "στάδιο"
+ },
+ "rating": {
+ "description": "Το Home Assistant παρέχει αξιολόγηση ασφαλείας σε καθένα από τα πρόσθετα, η οποία υποδεικνύει τους κινδύνους που ενέχονται κατά τη χρήση αυτού του πρόσθετου. Όσο περισσότερη πρόσβαση απαιτεί ένα πρόσθετο στο σύστημά σας, τόσο χαμηλότερη είναι η βαθμολογία, αυξάνοντας έτσι τους πιθανούς κινδύνους ασφαλείας. \n\n Το σκορ είναι σε κλίμακα από το 1 έως το 6. Όταν το 1 είναι το χαμηλότερο σκορ (θεωρείται το πιο ανασφαλές και το υψηλότερο κίνδυνο) και το σκορ 6 είναι το υψηλότερο σκορ (θεωρείται το πιο ασφαλές και χαμηλότερο κίνδυνο).",
+ "title": "Αξιολόγηση ασφαλείας πρόσθετου"
+ },
+ "role": {
+ "admin": "admin",
+ "backup": "backup",
+ "default": "Προεπιλογή",
+ "homeassistant": "homeassistant",
+ "manager": "manager"
+ },
+ "stage": {
+ "description": "Τα πρόσθετα μπορούν να έχουν ένα από τα τρία στάδια: \n\n {icon_stable} ** Σταθερό **: Πρόκειται για πρόσθετα έτοιμα για χρήση στην παραγωγή. \n\n {icon_experimental} ** Πειραματικό **: Αυτά ενδέχεται να περιέχουν σφάλματα και ενδέχεται να μην έχουν ολοκληρωθεί. \n\n {icon_deprecated} ** Καταργημένο **: Αυτά τα πρόσθετα δεν θα λαμβάνουν πλέον ενημερώσεις.",
+ "title": "Στάδιο προσθέτων"
+ },
+ "stages": {
+ "deprecated": "Καταργήθηκε",
+ "experimental": "Πειραματικό"
+ }
+ },
+ "changelog": "αρχείο καταγραφής",
+ "cpu_usage": "Χρήση CPU πρόσθετου",
+ "hostname": "Όνομα διακομιστή",
+ "install": "εγκατάσταση",
+ "new_update_available": "{name} {version} είναι διαθέσιμο",
+ "not_available_arch": "Αυτό το πρόσθετο δεν είναι συμβατό με τον επεξεργαστή της συσκευής σας ή το λειτουργικό σύστημα που έχετε εγκαταστήσει στη συσκευή σας.",
+ "not_available_version": "Εκτελείτε το Home Assistant {core_version_installed} , για να ενημερώσετε αυτήν την έκδοση του πρόσθετου χρειάζεστε τουλάχιστον την έκδοση {core_version_needed} του Home Assistant",
+ "open_web_ui": "Άνοιγμα διεπαφής ιστού",
+ "option": {
+ "auto_update": {
+ "description": "Αυτόματη ενημέρωση του πρόσθετου όταν υπάρχει διαθέσιμη νέα έκδοση",
+ "title": "Αυτόματη ενημέρωση"
+ },
+ "boot": {
+ "description": "Ξεκινήστε το πρόσθετο κατά την εκκίνηση του συστήματος",
+ "title": "Έναρξη κατά την εκκίνηση"
+ },
+ "ingress_panel": {
+ "description": "Προσθήκη αυτού του πρόσθετου στην πλαϊνή στήλη",
+ "title": "Εμφάνιση στην πλαϊνή γραμμή"
+ },
+ "protected": {
+ "description": "Αποκλείει την αυξημένη πρόσβαση συστήματος από το πρόσθετο",
+ "title": "Τρόπος προστασίας"
+ },
+ "watchdog": {
+ "description": "Αυτό θα ξεκινήσει το πρόσθετο εάν διακοπεί η λειτουργία του",
+ "title": "Φρουρός"
+ }
+ },
+ "protection_mode": {
+ "content": "Η λειτουργία προστασίας σε αυτό το πρόσθετο είναι απενεργοποιημένη! Αυτό δίνει στο πρόσθετο πλήρη πρόσβαση σε ολόκληρο το σύστημα, το οποίο προσθέτει κινδύνους ασφαλείας και ενδέχεται να προκαλέσει βλάβη στο σύστημά σας όταν χρησιμοποιείται εσφαλμένα. Απενεργοποιήστε τη λειτουργία προστασίας μόνο εάν γνωρίζετε, χρειάζεστε και εμπιστεύεστε την πηγή αυτού του πρόσθετου.",
+ "enable": "Ενεργοποίηση λειτουργίας προστασίας",
+ "title": "Προειδοποίηση: Η λειτουργία προστασίας είναι απενεργοποιημένη!"
+ },
+ "ram_usage": "Χρήση μνήμης RAM πρόσθετου",
+ "rebuild": "ανοικοδόμηση",
+ "restart": "επανεκκίνηση",
+ "start": "έναρξη",
+ "stop": "στοπ",
+ "uninstall": "απεγκατάσταση",
+ "visit_addon_page": "Επισκεφθείτε τη σελίδα {name} για περισσότερες λεπτομέρειες"
+ },
+ "documentation": {
+ "get_documentation": "Αποτυχία λήψης τεκμηρίωσης πρόσθετου, {error}"
+ },
+ "failed_to_reset": "Αποτυχία επαναφοράς της διαμόρφωσης πρόσθετου, {error}",
+ "failed_to_save": "Αποτυχία αποθήκευσης διαμόρφωσης πρόσθετου, {error}",
+ "logs": {
+ "get_logs": "Αποτυχία λήψης πρόσθετων αρχείων καταγραφής, {error}"
+ },
+ "panel": {
+ "configuration": "Ρυθμίσεις",
+ "documentation": "Τεκμηρίωση",
+ "info": "Πληροφορίες",
+ "log": "Αρχείο καταγραφής"
+ },
+ "state": {
+ "installed": "Το πρόσθετο είναι εγκατεστημένο",
+ "not_available": "Το πρόσθετο δεν είναι διαθέσιμο στο σύστημά σας",
+ "not_installed": "Το πρόσθετο δεν είναι εγκατεστημένο"
+ }
+ },
+ "backup": {
+ "addons": "Πρόσθετα",
+ "confirm_password": "Επιβεβαίωση κωδικού πρόσβασης αντιγράφου ασφαλείας",
+ "could_not_create": "Δεν ήταν δυνατή η δημιουργία αντιγράφων ασφαλείας",
+ "create": "Δημιουργία",
+ "create_backup": "Δημιουργία αντιγράφου ασφαλείας",
+ "create_blocked_not_running": "Η δημιουργία αντιγράφου ασφαλείας δεν είναι δυνατή αυτή τη στιγμή, επειδή το σύστημα βρίσκεται στην κατάσταση {state}.",
+ "created": "Δημιουργήθηκε",
+ "delete_backup_confirm": "διαγραφή",
+ "delete_backup_text": "Θέλετε να διαγράψετε {number} {number, plural,\n one {αντίγραφο ασφαλείας}\n other {αντίγραφα ασφαλείας}\n};",
+ "delete_backup_title": "Διαγραφή αντιγράφου ασφαλείας",
+ "delete_selected": "Διαγραφή επιλεγμένων αντιγράφων ασφαλείας",
+ "download_backup": "Λήψη αντιγράφου ασφαλείας",
+ "enter_password": "Εισαγάγετε έναν κωδικό πρόσβασης.",
+ "failed_to_delete": "Αποτυχία διαγραφής",
+ "folders": "Φάκελοι",
+ "full_backup": "Πλήρες αντίγραφο ασφαλείας",
+ "name": "Όνομα αντιγράφου ασφαλείας",
+ "no_backups": "Δεν έχετε ακόμα αντίγραφα ασφαλείας.",
+ "partial_backup": "Μερικό αντίγραφο ασφαλείας",
+ "password": "Κωδικός αντιγράφου ασφαλείας",
+ "password_protection": "Προστασία με κωδικό πρόσβασης",
+ "passwords_not_matching": "Οι κωδικοί πρόσβασης δεν ταιριάζουν",
+ "select_type": "Επιλέξτε τι θα επαναφέρετε",
+ "selected": "επιλέχθηκαν {number}",
+ "size": "Μέγεθος",
+ "type": "Τύπος αντιγράφων ασφαλείας",
+ "upload_backup": "Ανέβασμα αντιγράφου ασφαλείας"
+ },
+ "common": {
+ "cancel": "Ακύρωση",
+ "close": "Κλείσιμο",
+ "description": "Περιγραφή",
+ "error": {
+ "unknown": "Άγνωστο σφάλμα",
+ "update_failed": "Η ενημέρωση απέτυχε"
+ },
+ "failed_to_restart_name": "Αποτυχία επανεκκίνησης {name}",
+ "failed_to_update_name": "Αποτυχία ενημέρωσης {name}",
+ "learn_more": "Μάθετε περισσότερα",
+ "menu": "Μενού",
+ "new_version_available": "Νέα έκδοση διαθέσιμη",
+ "newest_version": "Νεότερη έκδοση",
+ "no": "Όχι",
+ "refresh": "Ανανέωση",
+ "release_notes": "Σημειώσεις έκδοσης",
+ "reload": "Επαναφόρτωση",
+ "reset_defaults": "Επαναφορά στα προεπιλεγμένα",
+ "reset_options": "Επαναφορά επιλογών",
+ "restart": "Επανεκκίνηση",
+ "restart_name": "Επανεκκίνηση {name}",
+ "review": "αναθεώρηση",
+ "running_version": "Αυτήν τη στιγμή εκτελείτε την έκδοση {version}",
+ "save": "Αποθήκευση",
+ "show": "εμφάνιση",
+ "show_more": "Εμφάνιση περισσότερων πληροφοριών σχετικά με αυτό",
+ "update": "Ενημέρωση",
+ "update_available": "{count} {count, plural,\n one {Ενημέρωση}\n other {ενημερώσεις}\n} εκκρεμούν",
+ "version": "Έκδοση",
+ "yes": "Ναι"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Είστε βέβαιοι ότι θέλετε να επαναφέρετε όλες τις επιλογές σας;",
+ "title": "Επαναφορά επιλογών"
+ },
+ "restart": {
+ "text": "Είστε βέβαιοι ότι θέλετε να επανεκκινήσετε το {name};",
+ "title": "Επανεκκίνηση {name}"
+ },
+ "update": {
+ "text": "Είστε βέβαιοι ότι θέλετε να ενημερώσετε το {name} στην έκδοση {version} ;",
+ "title": "Ενημέρωση {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Νέα έκδοση διαθέσιμη",
+ "addon_running": "Το πρόσθετο εκτελείται",
+ "addon_stopped": "Το πρόσθετο έχει σταματήσει",
+ "addons": "Εγκατεστημένα πρόσθετα",
+ "no_addons": "Δεν έχετε εγκαταστήσει πρόσθετα ακόμα. Επισκεφθείτε το κατάστημα πρόσθετων για να ξεκινήσετε!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Ακύρωση",
+ "description": "Αυτή τη στιγμή χρησιμοποιείτε το ''{current_path}'' ως δίσκο δεδομένων. Η μετακίνηση των δίσκων δεδομένων θα επανεκκινήσει τη συσκευή σας και εκτιμάται ότι θα διαρκέσει {time} λεπτά. Η εγκατάσταση του Home Assistant δεν θα είναι προσβάσιμη κατά τη διάρκεια αυτής της περιόδου. Μην αποσυνδέετε την τροφοδοσία κατά τη διάρκεια της μετακίνησης!",
+ "loading_devices": "Φόρτωση συσκευών",
+ "move": "Μετακίνηση",
+ "moving": "Μετακίνηση δίσκου δεδομένων",
+ "moving_desc": "Επανεκκίνηση και μετακίνηση δίσκου δεδομένων. Παρακαλώ κάντε υπομονή",
+ "no_devices": "Δεν βρέθηκαν κατάλληλες προσαρτημένες συσκευές",
+ "select_device": "Επιλογή νέου δίσκου δεδομένων",
+ "title": "Μετακίνηση δίσκου δεδομένων"
+ },
+ "hardware": {
+ "attributes": "Χαρακτηριστικά",
+ "device_path": "Διαδρομή συσκευής",
+ "id": "Αναγνωριστικό ID",
+ "search": "Αναζήτηση υλικολογισμικού",
+ "subsystem": "Υποσύστημα",
+ "title": "Υλικολογισμικό"
+ },
+ "network": {
+ "connected_to": "Συνδέθηκε στο {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Απενεργοποιημένο",
+ "dns_servers": "Διακομιστές DNS",
+ "failed_to_change": "Αποτυχία αλλαγής ρυθμίσεων δικτύου",
+ "gateway": "Διεύθυνση πύλης",
+ "ip_netmask": "Διεύθυνση IP/μάσκα δικτύου",
+ "open": "Άνοιγμα",
+ "scan_ap": "Σάρωση για σημεία πρόσβασης",
+ "static": "Στατική",
+ "title": "Ρυθμίσεις δικτύου",
+ "unsaved": "Έχετε μη αποθηκευμένες αλλαγές, αυτές θα χαθούν αν αλλάξετε καρτέλες, θέλετε να συνεχίσετε;",
+ "warning": "Εάν αλλάζετε τις διευθύνσεις Wi-Fi, IP ή πύλης, ενδέχεται να χάσετε τη σύνδεση!",
+ "wep": "WEP",
+ "wpa": "WPA-psk"
+ },
+ "registries": {
+ "add_new_registry": "Προσθήκη νέου μητρώου",
+ "add_registry": "Προσθήκη μητρώου",
+ "failed_to_add": "Αποτυχία προσθήκης μητρώου",
+ "failed_to_remove": "Αποτυχία κατάργησης μητρώου",
+ "no_registries": "Δεν έχουν διαμορφωθεί μητρώα",
+ "password": "Κωδικός",
+ "registry": "Περιοχή Μητρώου",
+ "remove": "Αφαίρεση",
+ "title_add": "Προσθήκη νέου μητρώου κοντέινερ",
+ "title_manage": "Διαχείριση μητρώων κοντέινερ",
+ "username": "Όνομα χρήστη"
+ },
+ "repositories": {
+ "add": "Προσθήκη",
+ "remove": "Αφαίρεση",
+ "title": "Διαχείριση αποθετηρίων πρόσθετων",
+ "used": "Το αποθετήριο χρησιμοποιείται για εγκατεστημένα πρόσθετα και δεν μπορεί να αφαιρεθεί."
+ },
+ "restart_addon": {
+ "confirm_text": "Επανεκκίνηση πρόσθετου",
+ "text": "Θέλετε να επανεκκινήσετε το πρόσθετο με τις αλλαγές σας;"
+ },
+ "update": {
+ "backup": "Αντίγραφο ασφαλείας",
+ "create_backup": "Δημιουργία αντιγράφου ασφαλείας του {name} πριν από την ενημέρωση",
+ "creating_backup": "Δημιουργία αντιγράφου ασφαλείας του {name}",
+ "updating": "Ενημέρωση του {name} στην έκδοση {version}"
+ }
+ },
+ "my": {
+ "error": "Προέκυψε ένα άγνωστο σφάλμα",
+ "error_addon_no_ingress": "Το ζητούμενο πρόσθετο δεν υποστηρίζει διείσδυση",
+ "error_addon_not_found": "Το πρόσθετο δεν βρέθηκε",
+ "error_addon_not_installed": "Το ζητούμενο πρόσθετο δεν είναι εγκατεστημένο. Παρακαλώ εγκαταστήστε το πρώτα",
+ "error_addon_not_started": "Το ζητούμενο πρόσθετο δεν εκτελείται. Παρακαλώ ξεκινήστε το πρώτα",
+ "faq_link": "Συχνές ερωτήσεις Home Assistant",
+ "not_supported": "Αυτή η ανακατεύθυνση δεν υποστηρίζεται από την παρουσία του Home Assistant σας. Ελέγξτε το {link} για τις υποστηριζόμενες ανακατευθύνσεις και την έκδοση που εισήχθησαν."
+ },
+ "panel": {
+ "addons": "Πρόσθετα",
+ "backups": "Αντίγραφα ασφαλείας",
+ "dashboard": "Πίνακας Επισκόπησης",
+ "store": "Κατάστημα πρόσθετων",
+ "system": "Σύστημα"
+ },
+ "store": {
+ "check_updates": "Έλεγχος για ενημερώσεις",
+ "missing_addons": "Λείπουν πρόσθετα; Ενεργοποίηση λειτουργίας για προχωρημένους στη σελίδα προφίλ χρήστη",
+ "no_results_found": "Δεν βρέθηκαν αποτελέσματα στο {repository}.",
+ "registries": "Μητρώα",
+ "repositories": "Αποθετήρια"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Χρήση βασικής CPU",
+ "ram_usage": "Χρήση βασικής μνήμης RAM"
+ },
+ "host": {
+ "change": "Αλλαγή",
+ "change_hostname": "Αλλαγή ονόματος διακομιστή",
+ "confirm_reboot": "Είστε βέβαιοι ότι θέλετε να επανεκκινήσετε τον κεντρικό υπολογιστή;",
+ "confirm_shutdown": "Είστε βέβαιοι ότι θέλετε να τερματίσετε τη λειτουργία του διακομιστή;",
+ "deployment": "Ανάπτυξη",
+ "docker_version": "Έκδοση Docker",
+ "emmc_lifetime_used": "Διάρκεια ζωής eMMC που χρησιμοποιείται",
+ "failed_to_get_hardware_list": "Αποτυχία λήψης λίστας υλικού",
+ "failed_to_import_from_usb": "Αποτυχία εισαγωγής από USB",
+ "failed_to_move": "Η μετακίνηση του δίσκου δεδομένων απέτυχε",
+ "failed_to_reboot": "Αποτυχία επανεκκίνησης του διακομιστή",
+ "failed_to_set_hostname": "Η ρύθμιση ονόματος διακομιστή απέτυχε",
+ "failed_to_shutdown": "Αποτυχία τερματισμού του διακομιστή",
+ "hardware": "Υλικό",
+ "hostname": "Όνομα διακομιστή",
+ "import_from_usb": "Εισαγωγή από USB",
+ "ip_address": "Διεύθυνση IP",
+ "move_datadisk": "Μετακίνηση δίσκου δεδομένων",
+ "new_hostname": "Εισαγάγετε ένα νέο όνομα διακομιστή:",
+ "operating_system": "Λειτουργικό σύστημα",
+ "reboot_host": "Επανεκκίνηση διακομιστή",
+ "shutdown_host": "Τερματισμός διακομιστή",
+ "used_space": "Χρησιμοποιημένος χώρος"
+ },
+ "log": {
+ "get_logs": "Αποτυχία λήψης αρχείων καταγραφής {provider}, {error}",
+ "log_provider": "Υπηρεσία παροχής αρχείων καταγραφής"
+ },
+ "supervisor": {
+ "beta_backup": "Βεβαιωθείτε ότι έχετε αντίγραφα ασφαλείας των δεδομένων σας πριν ενεργοποιήσετε αυτήν τη δυνατότητα.",
+ "beta_join_confirm": "Θέλετε να συμμετάσχετε στο κανάλι beta;",
+ "beta_release_items": "Αυτό περιλαμβάνει εκδόσεις beta για:",
+ "beta_warning": "Οι εκδόσεις beta προορίζονται για δοκιμαστές και πρώτους χρήστες και μπορούν να περιέχουν ασταθείς αλλαγές κώδικα",
+ "channel": "Κανάλι",
+ "cpu_usage": "Χρήση CPU Επόπτη",
+ "failed_to_reload": "Απέτυχε η επαναφόρτωση του Επόπτη",
+ "failed_to_set_option": "Αποτυχία ορισμού επιλογής Επόπτη",
+ "failed_to_update": "Απέτυχε η ενημέρωση του Επόπτη",
+ "join_beta_action": "Εγγραφείτε στο κανάλι beta",
+ "join_beta_description": "Λάβετε ενημερώσεις beta για Home Assistant (RCs), Επόπτη και διακομιστή",
+ "leave_beta_action": "Αποχώρηση από το κανάλι beta",
+ "leave_beta_description": "Λάβετε σταθερές ενημερώσεις για το Home Assistant, τον Επόπτη και τον κεντρικό υπολογιστή",
+ "ram_usage": "Χρήση μνήμης RAM του Επόπτη",
+ "reload_supervisor": "Επαναφόρτωση Επόπτη",
+ "search": "Αναζήτηση",
+ "share_diagnostics": "Κοινή χρήση διαγνωστικών",
+ "share_diagnostics_description": "Μοιραστείτε αναφορές σφαλμάτων και διαγνωστικές πληροφορίες.",
+ "share_diagonstics_description": "Θα θέλατε να κοινοποιείτε αυτόματα αναφορές σφαλμάτων και διαγνωστικές πληροφορίες όταν ο Επόπτης αντιμετωπίζει απρόσμενα σφάλματα; {line_break} Αυτό θα μας επιτρέψει να διορθώσουμε τα προβλήματα, οι πληροφορίες είναι προσβάσιμες μόνο από την ομάδα του Home Assistant Core και δεν θα κοινοποιηθούν σε άλλους. {line_break} Τα δεδομένα δεν περιλαμβάνουν ιδιωτικές / ευαίσθητες πληροφορίες και μπορείτε να το απενεργοποιήσετε στις ρυθμίσεις όποτε θέλετε.",
+ "share_diagonstics_title": "Βοηθήστε στη βελτίωση του Home Assistant",
+ "unhealthy_description": "Η εκτέλεση μιας ανθυγιεινής εγκατάστασης θα προκαλέσει προβλήματα. Ακολουθεί μια λίστα με ζητήματα που εντοπίστηκαν με την εγκατάστασή σας, κάντε κλικ στους συνδέσμους για να μάθετε πώς μπορείτε να επιλύσετε τα προβλήματα.",
+ "unhealthy_reason": {
+ "docker": "Το περιβάλλον Docker δεν λειτουργεί σωστά",
+ "privileged": "Ο Επόπτης δεν έχει προνόμια",
+ "setup": "Η εγκατάσταση του Επόπτη απέτυχε",
+ "supervisor": "Ο Επόπτης δεν μπόρεσε να ενημερωθεί",
+ "untrusted": "Εντοπίστηκε αναξιόπιστο περιεχόμενο"
+ },
+ "unhealthy_title": "Η εγκατάστασή σας είναι ανθυγιεινή",
+ "unsupported_description": "Ακολουθεί μια λίστα με ζητήματα που εντοπίστηκαν με την εγκατάστασή σας, κάντε κλικ στους συνδέσμους για να μάθετε πώς μπορείτε να επιλύσετε τα προβλήματα.",
+ "unsupported_reason": {
+ "apparmor": "Το AppArmor δεν είναι ενεργοποιημένο στον κεντρικό υπολογιστή",
+ "container": "Κοντέινερ που είναι γνωστά ότι προκαλούν προβλήματα",
+ "content-trust": "Η επικύρωση αξιόπιστου περιεχόμενου είναι απενεργοποιημένη",
+ "content_trust": "Η επικύρωση εμπιστοσύνης περιεχομένου είναι απενεργοποιημένη",
+ "dbus": "DBUS",
+ "docker_configuration": "Διαμόρφωση Docker",
+ "docker_version": "Έκδοση Docker",
+ "job_conditions": "Αγνοημένες συνθήκες εργασίας",
+ "lxc": "LXC",
+ "network_manager": "Διαχειριστής δικτύου",
+ "os": "Λειτουργικό σύστημα",
+ "os_agent": "Πράκτορας OS",
+ "privileged": "Ο Επόπτης δεν έχει προνόμια",
+ "software": "Εντοπίστηκε μη υποστηριζόμενο λογισμικό",
+ "source_mods": "Τροποποιήσεις πηγής",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Εκτελείτε μια μη υποστηριζόμενη εγκατάσταση",
+ "update_supervisor": "Ενημέρωση του Επόπτη",
+ "warning": "ΠΡΟΕΙΔΟΠΟΙΗΣΗ"
+ }
+ },
+ "update_available": {
+ "core_note": "Ο επόπτης θα επιστρέψει στην έκδοση {version} εάν το στιγμιότυπό σας δεν εμφανιστεί μετά την ενημέρωση.",
+ "create_backup": "Δημιουργία αντιγράφου ασφαλείας πριν από την ενημέρωση",
+ "creating_backup": "Δημιουργία αντιγράφου ασφαλείας του {name}",
+ "description": "Έχετε την έκδοση {version} εγκατεστημένη. Κάντε κλικ στην \"ενημέρωση\" για να ενημερώσετε στην έκδοση {newest_version}",
+ "no_update": "Δεν υπάρχει διαθέσιμη ενημέρωση για το {name}",
+ "open_release_notes": "Άνοιγμα σημειώσεων έκδοσης",
+ "update_name": "Ενημέρωση {name}",
+ "updating": "Ενημέρωση {name} στην έκδοση {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Θέλετε να αποθηκεύσετε αυτή τη σύνδεση;",
+ "confirm": "Αποθήκευση σύνδεσης",
+ "decline": "Όχι, ευχαριστώ"
+ },
+ "backup": {
+ "upload_backup": "Ανέβασμα αντιγράφου ασφαλείας"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Οπλισμός εκτός",
+ "arm_custom_bypass": "Προσαρμοσμένη παράκαμψη",
+ "arm_home": "Οπλισμός εντός",
+ "arm_night": "Οπλισμός νυκτός",
+ "arm_vacation": "Οπλισμός διακοπών",
+ "clear_code": "Καθαρισμός",
+ "code": "Κωδικός",
+ "disarm": "Αφοπλισμός"
+ },
+ "area": {
+ "area_not_found": "Η περιοχή δεν βρέθηκε."
+ },
+ "automation": {
+ "last_triggered": "Τελευταία ενεργοποίηση",
+ "trigger": "Εκτέλεση ενεργειών"
+ },
+ "button": {
+ "press": "Πατήστε"
+ },
+ "camera": {
+ "not_available": "Μη διαθέσιμη εικόνα"
+ },
+ "climate": {
+ "aux_heat": "Βοηθητική θέρμανση",
+ "away_mode": "Λειτουργία εκτός σπιτιού",
+ "cooling": "{name} ψύξη",
+ "current_temperature": "{name} τρέχουσα θερμοκρασία",
+ "currently": "Αυτή τη στιγμή",
+ "fan_mode": "Λειτουργία ανεμιστήρα",
+ "heating": "{name} θέρμανση",
+ "high": "υψηλός",
+ "low": "χαμηλός",
+ "on_off": "Ενεργοποίηση / απενεργοποίηση",
+ "operation": "Λειτουργία",
+ "preset_mode": "Προκαθορισμένο",
+ "swing_mode": "Λειτουργία ανεμιστήρα",
+ "target_humidity": "Επιθυμητή υγρασία",
+ "target_temperature": "Επιθυμητή θερμοκρασία",
+ "target_temperature_entity": "{name} στόχος θερμοκρασίας",
+ "target_temperature_mode": "{name} στόχος θερμοκρασίας {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "μείωση",
+ "increment": "αύξηση",
+ "reset": "επαναφορά"
+ }
+ },
+ "cover": {
+ "position": "Θέση",
+ "tilt_position": "Θέση ανάκλισης"
+ },
+ "fan": {
+ "direction": "Κατεύθυνση",
+ "forward": "Εμπρός",
+ "oscillate": "Περιστροφή",
+ "preset_mode": "Προεπιλεγμένη λειτουργία",
+ "reverse": "Αντιστροφή",
+ "speed": "Ταχύτητα"
+ },
+ "humidifier": {
+ "humidity": "Επιθυμητή υγρασία",
+ "mode": "Λειτουργία",
+ "on_entity": "{name} ενεργοποιημένο",
+ "target_humidity_entity": "{name} στόχος υγρασίας"
+ },
+ "light": {
+ "brightness": "Φωτεινότητα",
+ "cold_white_value": "Ψυχρή λευκή φωτεινότητα",
+ "color_brightness": "Φωτεινότητα χρώματος",
+ "color_temperature": "Θερμοκρασία χρώματος",
+ "effect": "Εφέ",
+ "warm_white_value": "Θερμή λευκή φωτεινότητα",
+ "white_value": "Λευκή φωτεινότητα"
+ },
+ "lock": {
+ "code": "Κώδικας",
+ "lock": "Κλείδωμα",
+ "unlock": "Ξεκλείδωμα"
+ },
+ "media_player": {
+ "browse_media": "Αναζήτηση πολυμέσων",
+ "media_next_track": "Επόμενο κομμάτι",
+ "media_pause": "Παύση",
+ "media_play": "Αναπαραγωγή",
+ "media_play_pause": "Αναπαραγωγή/παύση",
+ "media_previous_track": "Προηγούμενο κομμάτι",
+ "media_stop": "Διακοπή",
+ "media_volume_down": "Μείωση έντασης",
+ "media_volume_mute": "Σίγαση έντασης",
+ "media_volume_unmute": "Κατάργηση σίγασης έντασης",
+ "media_volume_up": "Αύξηση έντασης",
+ "nothing_playing": "Τίποτα δεν παίζει",
+ "sound_mode": "Λειτουργία ήχου",
+ "source": "Πηγή",
+ "text_to_speak": "Κείμενο προς εκφώνηση",
+ "turn_off": "Απενεργοποίηση",
+ "turn_on": "Ενεργοποίηση"
+ },
+ "persistent_notification": {
+ "dismiss": "Απόρριψη"
+ },
+ "scene": {
+ "activate": "Ενεργοποίηση"
+ },
+ "script": {
+ "cancel": "Ακύρωση",
+ "cancel_multiple": "Ακύρωση {number}",
+ "run": "Εκτέλεση"
+ },
+ "service": {
+ "run": "Εκτέλεση"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "Ακύρωση",
+ "finish": "Ολοκληρώθηκαν",
+ "pause": "Παύση",
+ "start": "Εκκίνηση"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Συνέχιση καθαρισμού",
+ "return_to_base": "Επιστροφή στο φορτιστή",
+ "start_cleaning": "Έναρξη καθαρισμού",
+ "turn_off": "Απενεργοποίηση",
+ "turn_on": "Ενεργοποίηση"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Λειτουργία εκτός σπιτιού",
+ "currently": "Αυτή τη στιγμή",
+ "on_off": "Ενεργοποίηση / απενεργοποίηση",
+ "operation": "Λειτουργία",
+ "target_temperature": "Επιθυμητή θερμοκρασία"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Πίεση αέρα",
+ "humidity": "Υγρασία",
+ "precipitation": "Υετός",
+ "temperature": "Θερμοκρασία",
+ "visibility": "Ορατότητα",
+ "wind_speed": "Ταχύτητα ανέμου"
+ },
+ "cardinal_direction": {
+ "e": "Α",
+ "ene": "ΑΒΑ",
+ "ese": "ΑΝΑ",
+ "n": "Β",
+ "ne": "ΒΑ",
+ "nne": "ΒΒΑ",
+ "nnw": "ΒΒΔ",
+ "nw": "ΒΔ",
+ "s": "Ν",
+ "se": "ΝΑ",
+ "sse": "ΝΝΑ",
+ "ssw": "ΝΝΔ",
+ "sw": "ΝΔ",
+ "w": "Δ",
+ "wnw": "ΔΒΔ",
+ "wsw": "ΔΝΔ"
+ },
+ "day": "Ημέρα",
+ "forecast": "Πρόγνωση",
+ "high": "Υψηλή",
+ "low": "Χαμηλή",
+ "night": "Νύχτα"
+ }
+ },
+ "common": {
+ "and": "και",
+ "back": "Πίσω",
+ "cancel": "Ακύρωση",
+ "clear": "Καθαρισμός",
+ "close": "Κλείστε",
+ "continue": "Συνέχεια",
+ "copied": "Αντιγράφηκε",
+ "copied_clipboard": "Αντιγράφηκε στο πρόχειρο",
+ "delete": "Διαγραφή",
+ "disable": "Απενεργοποίηση",
+ "enable": "Ενεργοποίηση",
+ "error_required": "Υποχρεωτικό",
+ "help": "Βοήθεια",
+ "leave": "Αποχώρηση",
+ "loading": "Φόρτωση",
+ "menu": "Μενού",
+ "move": "Μετακίνηση",
+ "next": "Επόμενο",
+ "no": "Όχι",
+ "not_now": "Όχι τώρα",
+ "overflow_menu": "Μενού υπερχείλισης",
+ "previous": "Προηγούμενο",
+ "refresh": "Ανανέωση",
+ "remove": "Αφαίρεση",
+ "rename": "Μετονομασία",
+ "save": "Αποθήκευση",
+ "skip": "Παράλειψη",
+ "stay": "Παραμονή",
+ "submit": "Υποβολή",
+ "successfully_deleted": "Η διαγραφή ολοκληρώθηκε με επιτυχία",
+ "successfully_saved": "Αποθηκεύτηκε με επιτυχία",
+ "undo": "Αναίρεση",
+ "yes": "Ναι"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Πρόσθετο",
+ "error": {
+ "fetch_addons": {
+ "description": "Σφάλμα κατά την φόρτωση των προσθέτων",
+ "title": "Σφάλμα κατά την φόρτωση των προσθέτων"
+ },
+ "no_supervisor": {
+ "description": "Δεν βρέθηκε ο Επόπτης, τα πρόσθετα δεν υποστηρίζονται.",
+ "title": "Δεν υπάρχει Επόπτης"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Προσθήκη",
+ "failed_create_area": "Αποτυχία δημιουργίας περιοχής.",
+ "name": "Όνομα",
+ "text": "Εισάγετε το όνομα της νέας περιοχής.",
+ "title": "Προσθήκη νέας περιοχής"
+ },
+ "add_new": "Προσθήκη νέας περιοχής…",
+ "area": "Περιοχή",
+ "clear": "Εκκαθάριση",
+ "no_areas": "Δεν έχετε περιοχές",
+ "no_match": "Δεν βρέθηκαν περιοχές που να ταιριάζουν",
+ "show_areas": "Εμφάνιση περιοχών"
+ },
+ "attributes": {
+ "expansion_header": "Χαρακτηριστικά"
+ },
+ "blueprint-picker": {
+ "add_user": "Προσθήκη χρήστη",
+ "remove_user": "Κατάργηση χρήστη",
+ "select_blueprint": "Επιλέξτε ένα σχεδιάγραμμα"
+ },
+ "calendar": {
+ "my_calendars": "Τα ημερολόγια μου",
+ "today": "Σήμερα"
+ },
+ "data-table": {
+ "clear": "Καθαρισμός",
+ "filtering_by": "Φιλτράρισμα κατά",
+ "hidden": "{number} κρυμμένο",
+ "no-data": "Δεν υπάρχουν δεδομένα",
+ "search": "Αναζήτηση"
+ },
+ "date-range-picker": {
+ "end_date": "Ημερομηνία λήξης",
+ "ranges": {
+ "last_week": "Προηγούμενη εβδομάδα",
+ "this_week": "Αυτή την εβδομάδα",
+ "today": "Σήμερα",
+ "yesterday": "Εχθές"
+ },
+ "select": "Επιλογή",
+ "start_date": "Ημερομηνία έναρξης"
+ },
+ "device-picker": {
+ "clear": "Καθαρός",
+ "device": "Συσκευή",
+ "no_area": "Καμία περιοχή",
+ "no_devices": "Δεν έχετε συσκευές",
+ "no_match": "Δεν βρέθηκαν συσκευές που να ταιριάζουν",
+ "show_devices": "Εμφάνιση συσκευών",
+ "toggle": "Εναλλαγή"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Χαρακτηριστικό",
+ "show_attributes": "Εμφάνιση χαρακτηριστικών"
+ },
+ "entity-picker": {
+ "clear": "Καθαρισμός",
+ "edit": "Επεξεργασία",
+ "entity": "Οντότητα",
+ "no_match": "Δεν βρέθηκαν οντότητες που να ταιριάζουν",
+ "show_entities": "Εμφάνιση οντοτήτων"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "Η ενσωμάτωση ιστορικού είναι απενεργοποιημένη",
+ "loading_history": "Φόρτωση ιστορικού κατάστασης …",
+ "no_history_found": "Δεν έχει βρεθεί ιστορικό κατάστασης."
+ },
+ "logbook": {
+ "by": "από",
+ "by_service": "από υπηρεσία",
+ "entries_not_found": "Δεν βρέθηκαν συμβάντα στο ημερολόγιο.",
+ "messages": {
+ "became_unavailable": "μετετράπη σε μη διαθέσιμο",
+ "changed_to_state": "άλλαξε σε {state}",
+ "cleared_device_class": "παραγράφηκε (δεν εντοπίστηκε {device_class} )",
+ "cleared_tampering": "εκκαθαρίστηκε παραβίαση",
+ "detected_device_class": "εντόπισε {device_class}",
+ "detected_tampering": "εντοπίστηκε παραβίαση",
+ "is_closing": "κλείνει",
+ "is_opening": "ανοίγει",
+ "rose": "ανέτειλε",
+ "set": "έδυσε",
+ "turned_off": "απενεργοποιήθηκε",
+ "turned_on": "ενεργοποιήθηκε",
+ "was_at_home": "εντοπίστηκε στο σπίτι",
+ "was_at_state": "εντοπίστηκε σε {state}",
+ "was_away": "εντοπίστηκε μακριά",
+ "was_closed": "ήταν κλειστό",
+ "was_connected": "συνδέθηκε",
+ "was_disconnected": "ήταν αποσυνδεδεμένο",
+ "was_locked": "ήταν κλειδωμένο",
+ "was_low": "ήταν χαμηλό",
+ "was_normal": "ήταν φυσιολογικό",
+ "was_opened": "ήταν ανοιχτό",
+ "was_plugged_in": "συνδέθηκε στην πρίζα",
+ "was_safe": "ήταν ασφαλές",
+ "was_unlocked": "ήταν ξεκλείδωτο",
+ "was_unplugged": "ήταν αποσυνδεδεμένο",
+ "was_unsafe": "δεν ήταν ασφαλές"
+ },
+ "retrieval_error": "Σφάλμα κατά την ανάκτηση αρχείου καταγραφής",
+ "show_trace": "Εμφάνιση ίχνους"
+ },
+ "media-browser": {
+ "audio_not_supported": "Το πρόγραμμα περιήγησής σας δεν υποστηρίζει το στοιχείο ήχου.",
+ "choose_player": "Επιλογή προγράμματος αναπαραγωγής",
+ "class": {
+ "album": "Άλμπουμ",
+ "app": "Εφαρμογή",
+ "artist": "Καλλιτέχνης",
+ "channel": "Κανάλι",
+ "composer": "Συνθέτης",
+ "contributing_artist": "Συνεισφέροντας Καλλιτέχνης",
+ "directory": "Βιβλιοθήκη",
+ "episode": "Επεισόδιο",
+ "game": "Παιχνίδι",
+ "genre": "Είδος",
+ "image": "Εικόνα",
+ "movie": "Ταινία",
+ "music": "Μουσική",
+ "playlist": "Λίστα αναπαραγωγής",
+ "podcast": "Podcast",
+ "season": "Σεζόν",
+ "track": "Κομμάτι",
+ "tv_show": "Τηλεοπτική εκπομπή",
+ "url": "URL",
+ "video": "Βίντεο"
+ },
+ "documentation": "τεκμηρίωση",
+ "learn_adding_local_media": "Μάθετε περισσότερα σχετικά με την προσθήκη πολυμέσων στην {documentation} .",
+ "local_media_files": "Τοποθετήστε τα αρχεία βίντεο, ήχου και εικόνας στον κατάλογο πολυμέσων για να μπορείτε να περιηγηθείτε και να τα αναπαραγάγετε στο πρόγραμμα περιήγησης ή σε υποστηριζόμενες συσκευές αναπαραγωγής πολυμέσων.",
+ "media-player-browser": "Πρόγραμμα περιήγησης πολυμέσων",
+ "media_browsing_error": "Σφάλμα περιήγησης πολυμέσων",
+ "media_not_supported": "Το Πρόγραμμα αναπαραγωγής πολυμέσων του προγράμματος περιήγησης δεν υποστηρίζει αυτόν τον τύπο πολυμέσων",
+ "media_player": "Πρόγραμμα αναπαραγωγής πολυμέσων",
+ "no_items": "Χωρίς στοιχεία",
+ "no_local_media_found": "Δεν βρέθηκαν τοπικά μέσα",
+ "no_media_folder": "Φαίνεται ότι δεν έχετε δημιουργήσει ακόμη έναν κατάλογο πολυμέσων.",
+ "pick": "Επιλέξετε",
+ "pick-media": "Επιλογή μέσων",
+ "play": "Αναπαραγωγή",
+ "play-media": "Αναπαραγωγή πολυμέσων",
+ "setup_local_help": "Ελέγξτε την {documentation} σχετικά με τον τρόπο ρύθμισης τοπικών μέσων.",
+ "video_not_supported": "Το πρόγραμμα περιήγησής σας δεν υποστηρίζει το στοιχείο βίντεο.",
+ "web-browser": "Φυλλομετρητής"
+ },
+ "picture-upload": {
+ "label": "Εικόνα",
+ "unsupported_format": "Μη υποστηριζόμενη μορφή, επιλέξτε μια εικόνα JPEG, PNG ή GIF."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Εισάγετε την τιμή του κωδικού QR",
+ "manual_input": "Μπορείτε να σαρώσετε τον κωδικό QR με έναν άλλο σαρωτή QR και να επικολλήσετε τον κωδικό στο παρακάτω πεδίο",
+ "not_supported": "Το πρόγραμμα περιήγησής σας δεν υποστηρίζει σάρωση QR.",
+ "only_https_supported": "Μπορείτε να χρησιμοποιήσετε την κάμερά σας μόνο για να σαρώσετε έναν κωδικό QR όταν χρησιμοποιείτε HTTPS.",
+ "select_camera": "Επιλογή κάμερας"
+ },
+ "related-filter-menu": {
+ "filter": "Φίλτρο",
+ "filter_by_area": "Φιλτράρισμα ανά περιοχή",
+ "filter_by_device": "Φιλτράρισμα ανά συσκευή",
+ "filter_by_entity": "Φιλτράρισμα ανά οντότητα",
+ "filtered_by_area": "περιοχή: {area_name}",
+ "filtered_by_device": "συσκευή: {device_name}",
+ "filtered_by_entity": "οντότητα: {entity_name}"
+ },
+ "related-items": {
+ "area": "Περιοχή",
+ "automation": "Μέρος των ακόλουθων αυτοματισμών",
+ "device": "Συσκευή",
+ "entity": "Σχετιζόμενες οντότητες",
+ "group": "Μέρος των ακόλουθων ομάδων",
+ "integration": "Ενσωμάτωση",
+ "no_related_found": "Δεν βρέθηκαν σχετικά αντικείμενα.",
+ "scene": "Μέρος των ακόλουθων σκηνών",
+ "script": "Μέρος των ακόλουθων δεσμών ενεργειών"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one {μέρα}\n other {μέρες}\n}",
+ "hour": "{count} {count, plural,\n one {ώρα}\n other {ώρες}\n}",
+ "minute": "{count} {count, plural,\n one {λεπτό}\n other {λεπτά}\n}",
+ "second": "{count} {count, plural,\n one {δευτερόλεπτο}\n other {δευτερόλεπτα}\n}",
+ "week": "{count} {count, plural,\n one {εβδομάδα}\n other {εβδομάδες}\n}"
+ },
+ "future_duration": {
+ "day": "Σε {count} {count, plural,\n μία {ημέρα}\n other {ημέρες}\n}",
+ "hour": "Σε {count} {count, plural,\n one {ώρα}\n other {ώρες}\n}",
+ "minute": "Σε {count} {count, plural,\n one {λεπτό}\n other {λεπτά}\n}",
+ "second": "Σε {count} {count, plural,\n one {δευτερόλεπτο}\n other {δευτερόλεπτα}\n}",
+ "week": "Σε {count} {count, plural,\n one {εβδομάδα}\n other {εβδομάδες}\n}"
+ },
+ "just_now": "Μόλις τώρα",
+ "never": "Ποτέ",
+ "past_duration": {
+ "day": "{count} {count, plural,\n one {ημέρα}\n other {ημέρες}\n} πριν",
+ "hour": "{count} {count, plural,\n one {ώρα}\n other {ώρες}\n} πριν",
+ "minute": "{count} {count, plural,\n one {λεπτό}\n other {λεπτά}\n} πριν",
+ "second": "{count} {count, plural,\n one {δευτερόλεπτο}\n other {δευτερόλεπτα}\n} πριν",
+ "week": "{count} {count, plural,\n one {εβδομάδα}\n other {εβδομάδες}\n} πριν"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Τεκμηρίωση ενσωμάτωσης",
+ "required": "Αυτό το πεδίο είναι υποχρεωτικό",
+ "service_data": "Δεδομένα υπηρεσίας",
+ "target": "Στόχοι",
+ "target_description": "Τι πρέπει να χρησιμοποιεί αυτή η υπηρεσία ως στοχευμένες περιοχές, συσκευές ή οντότητες."
+ },
+ "service-picker": {
+ "service": "Υπηρεσία"
+ },
+ "statistic-picker": {
+ "learn_more": "Μάθετε περισσότερα σχετικά με τα στατιστικά",
+ "missing_entity": "Γιατί η οντότητα μου δεν περιλαμβάνεται στη λίστα;",
+ "no_match": "Δεν βρέθηκαν αντίστοιχα στατιστικά",
+ "no_statistics": "Δεν έχετε στατιστικά",
+ "statistic": "Στατιστικά"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Φόρτωση στατιστικών …",
+ "no_statistics_found": "Δεν βρέθηκαν στατιστικά στοιχεία.",
+ "statistic_types": {
+ "max": "μέγιστο",
+ "mean": "μέσος όρος",
+ "min": "ελάχιστο",
+ "sum": "άθροισμα"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Επιλέξτε περιοχή",
+ "add_device_id": "Επιλέξτε συσκευή",
+ "add_entity_id": "Επιλέξτε οντότητα",
+ "expand": "Επέκταση",
+ "expand_area_id": "Διαχωρίστε αυτήν την περιοχή σε ξεχωριστές συσκευές και οντότητες.",
+ "expand_device_id": "Διαχωρίστε αυτήν τη συσκευή σε ξεχωριστές οντότητες.",
+ "remove": "Αφαίρεση",
+ "remove_area_id": "Κατάργηση περιοχής",
+ "remove_device_id": "Αφαίρεση συσκευής",
+ "remove_entity_id": "Αφαίρεση οντότητας"
+ },
+ "user-picker": {
+ "add_user": "Προσθήκη χρήστη",
+ "no_user": "Κανένας χρήστης",
+ "remove_user": "Κατάργηση χρήστη"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Εάν πρέπει να προστεθούν αυτόματα νέες συσκευές για {integration}.",
+ "enable_new_entities_label": "Ενεργοποίηση οντοτήτων που προστέθηκαν πρόσφατα.",
+ "enable_polling_description": "Εάν το Home Assistant θα πρέπει να πραγματοποιεί αυτόματα αναζήτηση των οντοτήτων {integration} για ενημερώσεις.",
+ "enable_polling_label": "Ενεργοποιήστε την αναζήτηση για ενημερώσεις.",
+ "restart_home_assistant": "Πρέπει να επανεκκινήσετε το Home Assistant για να τεθούν σε ισχύ οι αλλαγές σας.",
+ "title": "Επιλογές συστήματος για το {integration}",
+ "update": "Ενημέρωση"
+ },
+ "domain_toggler": {
+ "reset_entities": "Επαναφορά οντοτήτων",
+ "title": "Εναλλαγή τομέων"
+ },
+ "entity_registry": {
+ "control": "Έλεγχος",
+ "customize_link": "προσαρμογές οντοτήτων",
+ "dismiss": "Απόρριψη",
+ "editor": {
+ "advanced": "Ρυθμίσεις για προχωρημένους",
+ "area": "Ορισμός μόνο περιοχής οντότητας",
+ "area_note": "Από προεπιλογή, οι οντότητες μιας συσκευής βρίσκονται στην ίδια περιοχή με τη συσκευή. Εάν αλλάξετε την περιοχή αυτής της οντότητας, δεν θα ακολουθεί πλέον την περιοχή της συσκευής.",
+ "change_device_area": "Αλλαγή περιοχής συσκευής",
+ "confirm_delete": "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτήν την οντότητα;",
+ "delete": "Διαγραφή",
+ "device_class": "Εμφάνιση ως",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Πόρτα",
+ "garage_door": "Γκαραζόπορτα",
+ "opening": "Άλλο",
+ "window": "Παράθυρο"
+ },
+ "cover": {
+ "door": "Πόρτα",
+ "garage": "Γκαραζόπορτα",
+ "window": "Παράθυρο"
+ }
+ },
+ "device_disabled": "Η συσκευή αυτής της οντότητας είναι απενεργοποιημένη.",
+ "enabled_cause": "Απενεργοποιήθηκε από {cause}.",
+ "enabled_delay_confirm": "Τα ενεργοποιημένα στοιχεία θα προστεθούν στο Home Assistant σε {delay} δευτερόλεπτα",
+ "enabled_description": "Οι απενεργοποιημένες οντότητες δεν θα προστεθούν στον Home Assistant.",
+ "enabled_label": "Ενεργοποίηση οντότητας",
+ "enabled_restart_confirm": "Επανεκκινήστε το Home Assistant για να ολοκληρώσετε την ενεργοποίηση των στοιχείων",
+ "entity_id": "Αναγνωριστικό οντότητας",
+ "follow_device_area": "Παρακολούθηση της περιοχής συσκευής",
+ "icon": "Εικονίδιο",
+ "icon_error": "Το εικονίδιο πρέπει να είναι στη μορφή 'πρόθεμα:όνομα_εικόνας', για παράδειγμα: 'mdi:home'",
+ "name": "Όνομα",
+ "note": "Σημείωση: Αυτό μπορεί να μην λειτουργεί ακόμη με όλες τις ενσωματώσεις.",
+ "open_device_settings": "Άνοιγμα ρυθμίσεων συσκευής",
+ "unavailable": "Αυτή η οντότητα δεν είναι προς το παρόν διαθέσιμη.",
+ "update": "Ενημέρωση"
+ },
+ "faq": "τεκμηρίωση",
+ "info_customize": "Μπορείτε να αντικαταστήσετε ορισμένα χαρακτηριστικά στην ενότητα {customize_link}.",
+ "no_unique_id": "Αυτή η οντότητα (\"{entity_id}\") δεν έχει μοναδικό αναγνωριστικό, επομένως δεν είναι δυνατή η διαχείριση των ρυθμίσεών της από το περιβάλλον χρήστη. Δείτε το {faq_link} για περισσότερες λεπτομέρειες.",
+ "related": "Σχετίζεται με",
+ "settings": "Ρυθμίσεις"
+ },
+ "generic": {
+ "cancel": "Ακύρωση",
+ "close": "Kλείσε",
+ "default_confirmation_title": "Είστε σίγουροι;",
+ "ok": "Εντάξει"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Αρχική τιμή",
+ "maximum": "Μέγιστη τιμή",
+ "minimum": "Ελάχιστη τιμή",
+ "restore": "Επαναφορά της τελευταίας γνωστής τιμής κατά την εκκίνηση του Home Assistant",
+ "step": "Μέγεθος βήματος"
+ },
+ "generic": {
+ "icon": "Εικονίδιο",
+ "name": "Όνομα"
+ },
+ "input_datetime": {
+ "date": "Ημερομηνία",
+ "datetime": "Ημερομηνία και ώρα",
+ "mode": "Τι θέλετε να εισαγάγετε",
+ "time": "Ώρα"
+ },
+ "input_number": {
+ "box": "Πεδίο εισαγωγής",
+ "max": "Μέγιστη τιμή",
+ "min": "Ελάχιστη τιμή",
+ "mode": "Λειτουργία εμφάνισης",
+ "slider": "Ολισθητής",
+ "step": "Μέγεθος βήματος",
+ "unit_of_measurement": "Μονάδα μέτρησης"
+ },
+ "input_select": {
+ "add": "Προσθήκη",
+ "add_option": "Προσθήκη επιλογής",
+ "no_options": "Δεν υπάρχουν επιλογές ακόμα.",
+ "options": "Επιλογές"
+ },
+ "input_text": {
+ "max": "Μέγιστο μήκος",
+ "min": "Ελάχιστο μήκος",
+ "mode": "Λειτουργία προβολής",
+ "password": "Κωδικός",
+ "pattern": "Μοτίβο Regex για επικύρωση από την πλευρά του πελάτη",
+ "text": "Κείμενο"
+ },
+ "platform_not_loaded": "Η ενσωμάτωση {platform} δεν έχει φορτωθεί. Προσθέστε το στη διαμόρφωσή σας είτε προσθέτοντας 'default_config:' ή '' {platform} : ''.",
+ "required_error_msg": "Αυτό το πεδίο είναι υποχρεωτικό",
+ "timer": {
+ "duration": "Διάρκεια"
+ },
+ "yaml_not_editable": "Δεν είναι δυνατή η επεξεργασία των ρυθμίσεων αυτής της οντότητας από το περιβάλλον χρήστη. Μόνο οντότητες που έχουν δημιουργηθεί από το περιβάλλον χρήστη μπορούν να διαμορφωθούν από το περιβάλλον χρήστη."
+ },
+ "image_cropper": {
+ "crop": "Περικοπή"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Κλείσιμο",
+ "close_tile_cover": "Κλείσιμο καλύμματος",
+ "close_tilt_cover": "Κλείσιμο καλύμματος",
+ "open_cover": "Άνοιγμα",
+ "open_tilt_cover": "Άνοιγμα καλύμματος",
+ "stop_cover": "Διακοπή κίνησης καλύμματος"
+ },
+ "details": "Λεπτομέρειες",
+ "dismiss": "Κλείσιμο διαλόγου.",
+ "edit": "Επεξεργασία οντότητας",
+ "history": "Ιστορικό",
+ "last_changed": "Τελευταία αλλαγή",
+ "last_updated": "Τελευταία ενημέρωση",
+ "logbook": "Βιβλίο καταγραφής",
+ "person": {
+ "create_zone": "Δημιουργία ζώνης από την τρέχουσα θέση"
+ },
+ "remote": {
+ "activity": "Τρέχουσα δραστηριότητα"
+ },
+ "restored": {
+ "confirm_remove_text": "Είστε βέβαιοι πως θέλετε να καταργήσετε αυτή την οντότητα;",
+ "confirm_remove_title": "Θέλετε να αφαιρέσετε αυτή την οντότητα;",
+ "not_provided": "Αυτή η οντότητα επί του παρόντος δεν είναι διαθέσιμη και είναι απομεινάρι από μια καταργημένη, τροποποιημένη ή δυσλειτουργική ενσωμάτωση ή συσκευή.",
+ "remove_action": "Αφαίρεση οντότητας",
+ "remove_intro": "Εάν η οντότητα δεν χρησιμοποιείται πλέον, μπορείτε να την καθαρίσετε αφαιρώντας την."
+ },
+ "script": {
+ "last_action": "Τελευταία ενέργεια",
+ "last_triggered": "Τελευταία ενεργοποίηση"
+ },
+ "settings": "Ρυθμίσεις οντότητας",
+ "show_more": "Εμφάνιση περισσότερων",
+ "sun": {
+ "elevation": "Υψόμετρο",
+ "rising": "Ανατολή",
+ "setting": "Δύση"
+ },
+ "updater": {
+ "title": "Οδηγίες Ενημέρωσης"
+ },
+ "vacuum": {
+ "clean_spot": "Καθαρό σημείο",
+ "commands": "Εντολές ηλεκτρικής σκούπας:",
+ "fan_speed": "Ταχύτητα ανεμιστήρα",
+ "locate": "Εντοπισμός",
+ "pause": "Παύση",
+ "return_home": "Επιστροφή στο σπίτι",
+ "start": "Έναρξη",
+ "start_pause": "Έναρξη/Παύση",
+ "status": "Κατάσταση",
+ "stop": "Στοπ"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Προσπάθεια ανάλυσης μηνυμάτων MQTT ως JSON",
+ "entities": "Οντότητες",
+ "no_entities": "Δεν υπάρχουν οντότητες",
+ "no_triggers": "Δεν υπάρχουν εναύσματα",
+ "payload_display": "Εμφάνιση ωφέλιμου φορτίου",
+ "recent_messages": "{n} πιο πρόσφατα ληφθέντα μηνύματα",
+ "show_as_yaml": "Εμφάνιση ως YAML",
+ "title": "Πληροφορίες εντοπισμού σφαλμάτων {device}",
+ "triggers": "Εναύσματα"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Επιλογές"
+ },
+ "loading": {
+ "loading_flow": "Περιμένετε έως ότου προετοιμαστούν οι επιλογές για {integration}",
+ "loading_step": "Φόρτωση επόμενου βήματος για {integration}"
+ },
+ "success": {
+ "description": "Οι επιλογές αποθηκεύτηκαν με επιτυχία."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Περιοχές",
+ "automation": "Αυτοματισμοί",
+ "blueprint": "Σχεδιαγράμματα",
+ "core": "Γενικά",
+ "customize": "Μορφοποιήσεις",
+ "devices": "Συσκευές",
+ "energy": "Ενέργεια",
+ "entities": "Στοιχεία",
+ "helpers": "Βοηθήματα",
+ "info": "Πληροφορίες",
+ "integrations": "Ενσωματώσεις",
+ "logs": "Συμβάντα",
+ "lovelace": "Διαχειριστικά Lovelace",
+ "person": "Άνθρωποι",
+ "scene": "Σκηνές",
+ "script": "Scripts",
+ "server_control": "Στοιχεία ελέγχου Server",
+ "tag": "Ετικέτες",
+ "users": "Χρήστες",
+ "zone": "Ζώνες"
+ },
+ "reload": {
+ "automation": "Επαναφόρτωση αυτοματισμών",
+ "command_line": "Επαναφόρτωση οντοτήτων γραμμής εντολών",
+ "core": "Επαναφόρτωση τοποθεσίας και προσαρμογών",
+ "filesize": "Επαναφόρτωση οντοτήτων μεγέθους αρχείων",
+ "filter": "Επαναφόρτωση οντοτήτων φίλτρου",
+ "generic": "Επαναφόρτωση γενικών οντοτήτων κάμερας IP",
+ "generic_thermostat": "Επαναφόρτωση γενικών οντοτήτων θερμοστάτη",
+ "group": "Επαναφόρτωση ομάδων, οντοτήτων ομάδας και ειδοποίησης υπηρεσιών",
+ "history_stats": "Επαναφόρτωση οντοτήτων στατιστικών στοιχείων ιστορικού",
+ "homekit": "Επαναφόρτωση HomeKit",
+ "input_boolean": "Επαναφόρτωση εισαγόμενων boolean",
+ "input_datetime": "Επαναφόρτωση ωρών ημερομηνίας εισαγωγής",
+ "input_number": "Επαναφόρτωση αριθμών εισαγωγής",
+ "input_select": "Επαναφόρτωση επιλογών εισόδου",
+ "input_text": "Επαναφόρτωση κειμένου εισαγωγής",
+ "min_max": "Επαναφόρτωση οντοτήτων ελάχιστων/μέγιστων",
+ "mqtt": "Επανααφόρτωση οντοτήτων mqtt",
+ "person": "Επαναφόρτωση ατόμων",
+ "ping": "Επαναφόρτωση ping οντοτήτων δυαδικών αισθητήρων",
+ "reload": "Επαναφόρτωση {domain}",
+ "rest": "Επαναφόρτωση οντοτήτων ανάπαυσης και ειδοποίηση υπηρεσιών",
+ "rpi_gpio": "Επαναφόρτωση GPIO οντοτήτων του Raspberry Pi",
+ "scene": "Επαναφόρτωση σκηνών",
+ "script": "Επαναφόρτωση σεναρίων",
+ "smtp": "Επαναφόρωση smtp υπηρεσιών ειδοποίησης",
+ "statistics": "Επαναφόρτωση οντοτήτων στατιστικών",
+ "telegram": "Επαναφόρωση telegram υπηρεσιών ειδοποίησης",
+ "template": "Επαναφόρτωση οντοτήτων προτύπου",
+ "themes": "Θέματα",
+ "trend": "Επαναφόρτωση οντοτήτων τάσης",
+ "universal": "Επαναφόρτωση οντοτήτων αναπαραγωγής καθολικών μέσων",
+ "zone": "Επαναφόρτωση ζωνών"
+ },
+ "server_control": {
+ "perform_action": "{action} Διακομιστής",
+ "restart": "Επανεκκίνηση",
+ "stop": "Στοπ"
+ },
+ "types": {
+ "navigation": "Πλοήγηση",
+ "reload": "Επαναφόρτωση",
+ "server_control": "Διακομιστής"
+ }
+ },
+ "filter_placeholder": "Φίλτρο οντοτήτων",
+ "key_c_hint": "Πατήστε το 'c' σε οποιαδήποτε σελίδα για να ανοίξετε αυτή τη γραμμή αναζήτησης",
+ "nothing_found": "Δεν βρέθηκε τίποτα!",
+ "title": "Γρήγορη αναζήτηση"
+ },
+ "voice_command": {
+ "did_not_hear": "O Home Assistant δεν άκουσε τίποτα",
+ "error": "Ωχ, παρουσιάστηκε σφάλμα",
+ "found": "Βρήκα τα εξής για σας:",
+ "how_can_i_help": "Πώς μπορώ να βοηθήσω;",
+ "label": "Πληκτρολογήστε μια ερώτηση και πατήστε 'Enter'",
+ "label_voice": "Πληκτρολογήστε και πατήστε 'Enter' ή πατήστε το μικρόφωνο για να μιλήσετε"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Προσθήκη συσκευών μέσω αυτής της συσκευής",
+ "clusters": "Διαχείριση συμπλεγμάτων",
+ "device_children": "Προβολή παιδιών",
+ "reconfigure": "Ρυθμίστε Ξανά Τη Συσκευή",
+ "remove": "Κατάργηση συσκευής",
+ "view_in_visualization": "Προβολή στην Απεικόνιση",
+ "zigbee_information": "Υπογραφή συσκευής Zigbee"
+ },
+ "confirmations": {
+ "remove": "Είστε βέβαιοι ότι θέλετε να καταργήσετε τη συσκευή;"
+ },
+ "device_children": "Παιδιά συσκευής Zigbee",
+ "device_signature": "Υπογραφή συσκευής Zigbee",
+ "last_seen": "Εθεάθη τελευταία",
+ "manuf": "από τον {manufacturer}",
+ "no_area": "Καμία περιοχή",
+ "power_source": "Πηγή ενέργειας",
+ "quirk": "Ιδιοτροπία",
+ "services": {
+ "reconfigure": "Ρυθμίστε ξανά τη συσκευή ZHA (θεραπεία συσκευής). Χρησιμοποιήστε αυτήν την επιλογή εάν αντιμετωπίζετε προβλήματα με τη συσκευή. Εάν η συγκεκριμένη συσκευή τροφοδοτείται από μπαταρία παρακαλώ βεβαιωθείτε ότι είναι ενεργοποιημένη και δέχεται εντολές όταν χρησιμοποιείτε αυτή την υπηρεσία.",
+ "remove": "Καταργήστε μια συσκευή από το δίκτυο Zigbee.",
+ "updateDeviceName": "Ορίστε ένα προσαρμοσμένο όνομα γι αυτήν τη συσκευή στο μητρώο συσκευών.",
+ "zigbee_information": "Δείτε τις πληροφορίες Zigbee για τη συσκευή."
+ },
+ "unknown": "Άγνωστη",
+ "zha_device_card": {
+ "device_name_placeholder": "Αλλαγή ονόματος συσκευής"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Χαρακτηριστικό",
+ "battery_device_warning": "Θα χρειαστεί να αφυπνίσετε τις συσκευές που τροφοδοτούνται από μπαταρία πριν ξεκινήσετε τη διαδικασία επαναδιαμόρφωσης. Ανατρέξτε στο εγχειρίδιο της συσκευής σας για οδηγίες σχετικά με την αφύπνιση της συσκευής.",
+ "bind_header": "Σύζευξη",
+ "button_hide": "Απόκρυψη λεπτομερειών",
+ "button_show": "Εμφάνιση Λεπτομερειών",
+ "cluster_header": "Σύμπλεγμα",
+ "configuration_complete": "Η αναδιαμόρφωση της συσκευής ολοκληρώθηκε.",
+ "configuration_failed": "Η αναδιαμόρφωση της συσκευής απέτυχε. Πρόσθετες πληροφορίες ενδέχεται να είναι διαθέσιμες στα αρχεία καταγραφής.",
+ "configuring_alt": "Διαμόρφωση",
+ "heading": "Επαναδιαμόρφωση της συσκευής",
+ "in_progress": "Η συσκευή επαναδιαμορφώνεται. Αυτό μπορεί να πάρει λίγο χρόνο.",
+ "introduction": "Αναδιαμορφώστε μια συσκευή στο δίκτυό σας Zigbee. Χρησιμοποιήστε αυτήν τη δυνατότητα εάν η συσκευή σας δεν λειτουργεί σωστά.",
+ "min_max_change": "ελάχιστο/μέγιστο/αλλαγή",
+ "reporting_header": "Αναφορά",
+ "run_in_background": "Μπορείτε να κλείσετε αυτό το παράθυρο διαλόγου και η αναδιαμόρφωση θα συνεχιστεί στο παρασκήνιο.",
+ "start_reconfiguration": "Έναρξη επαναδιαμόρφωσης"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\n one {μέρα}\n other {μέρες}\n}",
+ "hour": "{count} {count, plural,\n one {ώρα}\n other {ώρες}\n}",
+ "minute": "{count} {count, plural,\n one {λεπτό}\n other {λεπτά}\n}",
+ "second": "{count} {count, plural,\n one {δευτερόλεπτο}\n other {δευτερόλεπτα}\n}",
+ "week": "{count} {count, plural,\n one {εβδομάδα}\n other {εβδομάδες}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Μπορείτε ακόμα να επεξεργαστείτε τη διαμόρφωσή σας στο YAML.",
+ "editor_not_available": "Δεν διατίθεται οπτικός επεξεργαστής για τον τύπο \" {type} \".",
+ "editor_not_supported": "Ο οπτικός επεξεργαστής δεν υποστηρίζεται για αυτήν τη διαμόρφωση",
+ "error_detected": "Εντοπίστηκαν σφάλματα ρύθμισης παραμέτρων",
+ "key_missing": "Λείπει το απαιτούμενο κλειδί \"{key}\".",
+ "key_not_expected": "Το κλειδί \"{key}\" δεν αναμένεται ή δεν υποστηρίζεται από το οπτικό πρόγραμμα επεξεργασίας.",
+ "key_wrong_type": "Η παρεχόμενη τιμή για το \"{key}\" δεν υποστηρίζεται από το οπτικό πρόγραμμα επεξεργασίας. Υποστηρίζουμε ({type_correct}) αλλά λάβαμε ({type_wrong}).",
+ "no_state_array_support": "Πολλαπλές τιμές κατάστασης δεν υποστηρίζονται στον οπτικό επεξεργαστή",
+ "no_template_editor_support": "Τα πρότυπα δεν υποστηρίζονται στο οπτικό πρόγραμμα επεξεργασίας",
+ "no_type_provided": "Δεν παρέχεται τύπος."
+ },
+ "supervisor": {
+ "ask": "Ζητήσετε βοήθεια",
+ "observer": "Ελέγξτε τον Παρατηρητή",
+ "reboot": "Δοκιμάστε μια επανεκκίνηση του διακομιστή",
+ "system_health": "Ελέγξτε την υγεία του συστήματος",
+ "title": "Δεν ήταν δυνατή η φόρτωση του πίνακα Επόπτη!",
+ "wait": "Αν μόλις ξεκινήσατε, βεβαιωθείτε ότι έχετε δώσει στον Επόπτη αρκετό χρόνο για να ξεκινήσει."
+ }
+ },
+ "login-form": {
+ "log_in": "Σύνδεση",
+ "password": "Κωδικός",
+ "remember": "Να θυμάμαι"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Πατήστε το κουμπί για να διαμορφώσετε το {entity}",
+ "close": "Κλείστε",
+ "dismiss_all": "Απόρριψη όλων",
+ "empty": "Καμία ειδοποίηση",
+ "title": "Ειδοποιήσεις"
+ },
+ "notification_toast": {
+ "connection_lost": "Η σύνδεση χάθηκε. Επανασύνδεση…",
+ "dismiss": "Απόρριψη",
+ "integration_starting": "Ξεκινώντας το {integration}, δεν θα είναι όλα διαθέσιμα μέχρι να ολοκληρωθεί.",
+ "service_call_failed": "Απέτυχε η κλήση στην υπηρεσία {service}.",
+ "started": "Το Home Assistant έχει ξεκινήσει!",
+ "starting": "Το Home Assistant ξεκινά, ενδέχεται να μην είναι ακόμη διαθέσιμα όλα.",
+ "triggered": "Ενεργοποιήθηκε το {name}",
+ "wrapping_up_startup": "Ολοκληρώνοντας την εκκίνηση, δεν θα είναι όλα διαθέσιμα μέχρι να ολοκληρωθεί."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Λείπουν επιλογές ρύθμισης παραμέτρων; Ενεργοποίηση σύνθετης λειτουργίας",
+ "link_profile_page": "η σελίδα του προφίλ σας"
+ },
+ "areas": {
+ "add_picture": "Προσθήκη εικόνας",
+ "assigned_to_area": "Ανατέθηκε σε αυτήν την περιοχή",
+ "caption": "Περιοχή Μητρώου",
+ "data_table": {
+ "area": "Περιοχή",
+ "devices": "Συσκευές",
+ "entities": "Οντότητες"
+ },
+ "delete": {
+ "confirmation_text": "Όλες οι συσκευές αυτής της περιοχής θα καταστούν μη εκχωρημένες",
+ "confirmation_title": "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτή την περιοχή;"
+ },
+ "description": "Ομαδοποίηση συσκευών και οντοτήτων σε περιοχές",
+ "edit_settings": "Ρυθμίσεις περιοχής",
+ "editor": {
+ "area_id": "Αναγνωριστικό περιοχής",
+ "create": "Δημιουργία",
+ "default_name": "Νέα περιοχή",
+ "delete": "Διαγραφή",
+ "linked_entities_caption": "Οντότητες",
+ "name": "Ονομασία",
+ "name_required": "Απαιτείται όνομα",
+ "no_linked_entities": "Δεν υπάρχουν οντότητες που να συνδέονται με αυτήν την περιοχή.",
+ "unknown_error": "Άγνωστο σφάλμα",
+ "update": "Ενημέρωση"
+ },
+ "picker": {
+ "create_area": "Δημιουργία Περιοχής",
+ "header": "Περιοχή Μητρώου",
+ "integrations_page": "Σελίδα ενσωματώσεων",
+ "introduction": "Οι περιοχές χρησιμοποιούνται για την οργάνωση της τοποθεσίας των συσκευών. Αυτές οι πληροφορίες θα χρησιμοποιηθούν σε όλο το Home Assistant για να σας βοηθήσουν στην οργάνωση της διασύνδεσης, των αδειών και των ενσωματώσεων σας σε άλλα συστήματα.",
+ "introduction2": "Για να τοποθετήσετε συσκευές σε μια περιοχή, χρησιμοποιήστε τον παρακάτω σύνδεσμο για να μεταβείτε στη σελίδα ενοποιήσεων και στη συνέχεια κάντε κλικ στην ρυθμισμένη ενοποίηση για να μεταβείτε στις κάρτες της συσκευής.",
+ "no_areas": "Φαίνεται ότι δεν έχετε περιοχές ακόμα!"
+ },
+ "targeting_area": "Στόχευση αυτής της περιοχής"
+ },
+ "automation": {
+ "caption": "Αυτοματισμοί",
+ "description": "Δημιουργήστε προσαρμοσμένους κανόνες συμπεριφοράς για το σπίτι σας",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Χρησιμοποιήστε ένα σχεδιάγραμμα"
+ },
+ "header": "Δημιουργία νέου αυτοματισμού",
+ "how": "Πώς θέλετε να δημιουργήσετε τον νέο σας αυτοματισμό;",
+ "start_empty": "Ξεκινήστε με έναν κενό αυτοματισμό",
+ "start_empty_description": "Δημιουργήστε έναν νέο αυτοματισμό από το μηδέν",
+ "thingtalk": {
+ "create": "Δημιουργία",
+ "header": "Περιγράψτε τον αυτοματισμό που θέλετε να δημιουργήσετε",
+ "input_label": "Τι πρέπει να κάνει αυτός ο αυτοματισμός;",
+ "intro": "Και θα προσπαθήσουμε να το δημιουργήσουμε για εσάς. Για παράδειγμα: Σβήσε τα φώτα όταν φεύγω."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Προσθήκη ενέργειας",
+ "delete": "Διαγραφή",
+ "delete_confirm": "Επιθυμείτε την διαγραφή σίγουρα;",
+ "duplicate": "Διπλότυπο",
+ "header": "Ενέργειες",
+ "introduction": "Οι ενέργειες είναι ό,τι θα κάνει το Home Assistant όταν ενεργοποιηθεί ο αυτοματισμός. \n\n [Μάθετε περισσότερα για τις ενέργειες.] (https://home-assistant.io/docs/automation/action/)",
+ "learn_more": "Μάθετε περισσότερα σχετικά με τις ενέργειες",
+ "name": "Ενέργεια",
+ "type": {
+ "choose": {
+ "add_option": "Προσθήκη επιλογής",
+ "conditions": "Συνθήκες",
+ "default": "Προεπιλεγμένες ενέργειες",
+ "label": "Επιλέξτε",
+ "option": "Επιλογή {number}",
+ "remove_option": "Κατάργηση επιλογής",
+ "sequence": "Ενέργειες"
+ },
+ "condition": {
+ "label": "Προϋπόθεση"
+ },
+ "delay": {
+ "delay": "Καθυστέρηση",
+ "label": "Καθυστέρηση"
+ },
+ "device_id": {
+ "action": "Ενέργεια",
+ "extra_fields": {
+ "brightness_pct": "Φωτεινότητα",
+ "code": "Κώδικας",
+ "flash": "Φλας",
+ "humidity": "Υγρασία",
+ "message": "Μήνυμα",
+ "mode": "Λειτουργία",
+ "position": "Θέση",
+ "title": "Τίτλος",
+ "value": "Τιμή"
+ },
+ "label": "Συσκευή"
+ },
+ "event": {
+ "event": "Γεγονός",
+ "label": "Εκκίνηση συμβάντος",
+ "service_data": "Δεδομένα υπηρεσιών"
+ },
+ "repeat": {
+ "label": "Επανάληψη",
+ "sequence": "Ενέργειες",
+ "type": {
+ "count": {
+ "label": "Αρίθμηση"
+ },
+ "until": {
+ "conditions": "Μέχρι τις συνθήκες",
+ "label": "Μέχρι"
+ },
+ "while": {
+ "conditions": "\"Όσο\" συνθήκες",
+ "label": "Όσο"
+ }
+ },
+ "type_select": "Επανάληψη τύπου"
+ },
+ "scene": {
+ "label": "Ενεργοποίηση σκηνής"
+ },
+ "service": {
+ "label": "Κάλεσμα υπηρεσίας"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Συνέχεια στο χρονικό όριο",
+ "label": "Αναμονή για έναυσμα",
+ "timeout": "χρονικό όριο (προαιρετικό)"
+ },
+ "wait_template": {
+ "continue_timeout": "Συνέχεια στο χρονικό όριο",
+ "label": "Πρότυπο αναμονής",
+ "timeout": "Λήξη χρόνου (προαιρετικό)",
+ "wait_template": "Πρότυπο Αναμονής"
+ }
+ },
+ "type_select": "Τύπος ενέργειας",
+ "unsupported_action": "Χωρίς υποστήριξη οπτικού επεξεργαστή για ενέργεια: {action}"
+ },
+ "alias": "Όνομα",
+ "blueprint": {
+ "blueprint_to_use": "Σχεδιάγραμμα για χρήση",
+ "header": "Σχεδιάγραμμα",
+ "no_blueprints": "Δεν έχετε σχεδιαγράμματα",
+ "no_inputs": "Αυτό το σχεδιάγραμμα δεν έχει καμία εισαγωγή."
+ },
+ "conditions": {
+ "add": "Προσθήκη όρου",
+ "delete": "Διαγραφή",
+ "delete_confirm": "Να γίνει η διαγραφή σίγουρα;",
+ "duplicate": "Διπλότυπο",
+ "header": "Συνθήκες",
+ "introduction": "Οι συνθήκες είναι προαιρετικές και θα αποτρέψουν την περαιτέρω εκτέλεση εκτός εάν πληρούνται όλες οι προϋποθέσεις.",
+ "learn_more": "Μάθετε περισσότερα σχετικά με τις συνθήκες",
+ "name": "Προϋπόθεση",
+ "type": {
+ "and": {
+ "label": "Και"
+ },
+ "device": {
+ "condition": "Προϋπόθεση",
+ "extra_fields": {
+ "above": "Πάνω από",
+ "below": "Κάτω από",
+ "for": "Διάρκεια",
+ "hvac_mode": "Λειτουργία κλιματισμού",
+ "preset_mode": "Προεπιλεγμένη λειτουργία"
+ },
+ "label": "Συσκευή"
+ },
+ "not": {
+ "label": "Όχι"
+ },
+ "numeric_state": {
+ "above": "Πάνω από",
+ "below": "Κάτω από",
+ "label": "Αριθμητική κατάσταση",
+ "value_template": "Τιμή πρότυπου (προαιρετικό)"
+ },
+ "or": {
+ "label": "Ή"
+ },
+ "state": {
+ "label": "Κατάσταση",
+ "state": "Κατάσταση"
+ },
+ "sun": {
+ "after": "Μετά:",
+ "after_offset": "Μετά την μετατόπιση (προαιρετικά)",
+ "before": "Πριν:",
+ "before_offset": "Πριν τη μετατόπιση (προαιρετικά)",
+ "label": "Ήλιος",
+ "sunrise": "Ανατολή ηλίου",
+ "sunset": "Δύση ηλίου"
+ },
+ "template": {
+ "label": "Πρότυπο",
+ "value_template": "Τιμή πρότυπου"
+ },
+ "time": {
+ "after": "Μετά",
+ "before": "Πριν",
+ "label": "Χρόνος",
+ "type_input": "Τιμή ενός βοηθού ημέρας/ώρας",
+ "type_value": "Σταθερός χρόνος",
+ "weekdays": {
+ "fri": "Παρασκευή",
+ "mon": "Δευτέρα",
+ "sat": "Σάββατο",
+ "sun": "Κυριακή",
+ "thu": "Πέμπτη",
+ "tue": "Τρίτη",
+ "wed": "Τετάρτη"
+ }
+ },
+ "trigger": {
+ "id": "Αναγνωριστικό εναύσματος",
+ "label": "Έναυσμα",
+ "no_triggers": "Δεν υπάρχουν διαθέσιμα εναύσματα"
+ },
+ "zone": {
+ "entity": "Οντότητα με τοποθεσία",
+ "label": "Ζώνη",
+ "zone": "Ζώνη"
+ }
+ },
+ "type_select": "Τύπος συνθήκης",
+ "unsupported_condition": "Χωρίς υποστήριξη οπτικού επεξεργαστή για συνθήκη: {condition}"
+ },
+ "copy_to_clipboard": "Αντιγραφή στο Πρόχειρο",
+ "default_name": "Νέος αυτοματισμός",
+ "description": {
+ "label": "Περιγραφή",
+ "placeholder": "Προαιρετική περιγραφή"
+ },
+ "edit_ui": "Επεξεργασία σε οπτικό επεξεργαστή",
+ "edit_yaml": "Επεξεργασία σε YAML",
+ "enable_disable": "Ενεργοποίηση / Απενεργοποίηση αυτοματοποίησης",
+ "introduction": "Χρησιμοποιήστε αυτοματισμούς για να ζωντανέψετε το σπίτι σας.",
+ "load_error_not_editable": "Μόνο οι αυτοματισμοί στο automations.yaml είναι επεξεργάσιμοι.",
+ "load_error_unknown": "Σφάλμα κατά τη φόρτωση αυτοματισμού ({err_no}).",
+ "max": {
+ "parallel": "Μέγιστος αριθμός παράλληλων διαδρομών",
+ "queued": "Μήκος ουράς"
+ },
+ "modes": {
+ "description": "Η κατάσταση λειτουργίας ελέγχει τι συμβαίνει όταν ενεργοποιείται η αυτοματοποίηση ενώ οι ενέργειες εξακολουθούν να εκτελούνται από ένα προηγούμενο έναυσμα. Ελέγξτε το {documentation_link} για περισσότερες πληροφορίες.",
+ "documentation": "τεκμηρίωση αυτοματισμού",
+ "label": "Λειτουργία",
+ "parallel": "Παράλληλα",
+ "queued": "Στην ουρά",
+ "restart": "Επανεκκίνηση",
+ "single": "Μονό (προεπιλογή)"
+ },
+ "move_down": "Μετακίνηση προς τα κάτω",
+ "move_up": "Μετακίνηση προς τα επάνω",
+ "save": "Αποθήκευση",
+ "show_trace": "Εμφάνιση ίχνους",
+ "triggers": {
+ "add": "Προσθήκη εναύσματος",
+ "delete": "Διαγραφή",
+ "delete_confirm": "Σίγουρα επιθυμείτε την διαγραφή;",
+ "duplicate": "Διπλότυπο",
+ "edit_id": "Επεξεργασία αναγνωριστικού ενεργοποίησης",
+ "header": "Εναύσματα",
+ "id": "Αναγνωριστικό εναύσματος (χρησιμοποιείται από τη συνθήκη εναύσματος)",
+ "introduction": "Τα εναύσματα ενεργοποιούν τους κανόνες αυτοματισμού. Είναι δυνατός ο καθορισμός πολλαπλών εναυσμάτων για τον ίδιο κανόνα. Με την ενεργοποίηση ενός εναύσματος το Home Assistant θα εκτελέσει τους κανόνες, εάν υπάρχουν, και θα καλέσει την ενέργεια.\n\n[Μάθετε περισσότερα για τις ενέργειες.] (https://home-assistant.io/docs/automation/action/)",
+ "learn_more": "Μάθετε περισσότερα σχετικά με τα εναύσματα",
+ "name": "Έναυσμα",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Πάνω από",
+ "below": "Κάτω από",
+ "for": "Διάρκεια (προαιρετικό)",
+ "zone": "Ζώνη"
+ },
+ "label": "Συσκευή",
+ "trigger": "Έναυσμα"
+ },
+ "event": {
+ "context_user_pick": "Επιλογή χρήστη",
+ "context_user_picked": "Συμβάν πυροδότησης χρήστη",
+ "context_users": "Περιορισμός σε συμβάντα που ενεργοποιούνται από",
+ "event_data": "Δεδομένα συμβάντος",
+ "event_type": "Τύπος συμβάντος",
+ "label": "Συμβάν"
+ },
+ "geo_location": {
+ "enter": "Είσοδος",
+ "event": "Γεγονός:",
+ "label": "Γεωγραφική θέση",
+ "leave": "Αποχώρηση",
+ "source": "Πηγή",
+ "zone": "Ζώνη"
+ },
+ "homeassistant": {
+ "event": "Γεγονός:",
+ "label": "Home Assistant",
+ "shutdown": "Τερματισμός λειτουργίας",
+ "start": "Έναρξη"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Φορτίο (προαιρετικό)",
+ "topic": "Θέμα"
+ },
+ "numeric_state": {
+ "above": "Πάνω από",
+ "below": "Κάτω από",
+ "label": "Αριθμητική κατάσταση",
+ "value_template": "Τιμή πρότυπου (προαιρετικό)"
+ },
+ "state": {
+ "attribute": "Χαρακτηριστικό (Προαιρετικό)",
+ "for": "Για (προαιρετικό)",
+ "from": "Από",
+ "label": "Κατάσταση",
+ "to": "Προς"
+ },
+ "sun": {
+ "event": "Γεγονός:",
+ "label": "Ήλιος",
+ "offset": "Μετατόπιση (προαιρετικό)",
+ "sunrise": "Ανατολή ηλίου",
+ "sunset": "Δύση ηλίου"
+ },
+ "tag": {
+ "label": "Ετικέτα"
+ },
+ "template": {
+ "label": "Πρότυπο",
+ "value_template": "Τιμή πρότυπου"
+ },
+ "time": {
+ "at": "Στις",
+ "label": "Ώρα",
+ "type_input": "Τιμή ενός βοηθού ημερομηνίας/ώρας",
+ "type_value": "Σταθερός χρόνος"
+ },
+ "time_pattern": {
+ "hours": "Ώρες",
+ "label": "Χρονικό μοτίβο",
+ "minutes": "Λεπτά",
+ "seconds": "Δευτερόλεπτα"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Αναγνωριστικό Webhook"
+ },
+ "zone": {
+ "enter": "Είσοδος",
+ "entity": "Οντότητα με τοποθεσία",
+ "event": "Γεγονός:",
+ "label": "Ζώνη",
+ "leave": "Αποχώρηση",
+ "zone": "Ζώνη"
+ }
+ },
+ "type_select": "Τύπος εναύσματος",
+ "unsupported_platform": "Χωρίς υποστήριξη οπτικού επεξεργαστή για πλατφόρμα: {platform}"
+ },
+ "unsaved_confirm": "Δεν αποθηκεύσατε τις αλλαγές. Είστε βέβαιοι ότι θέλετε να φύγετε;"
+ },
+ "picker": {
+ "add_automation": "Προσθήκη αυτοματισμού",
+ "delete_automation": "Διαγραφή αυτοματισμού",
+ "delete_confirm": "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτόν τον αυτοματισμό;",
+ "dev_automation": "Αυτόματος εντοπισμός σφαλμάτων",
+ "dev_only_editable": "Μόνο οι αυτοματισμοί στους οποίους έχει εκχωρηθεί ένα μοναδικό αναγνωριστικό είναι δυνατό να εντοπιστούν σφάλματα.",
+ "duplicate": "Διπλότυπο",
+ "duplicate_automation": "Διπλή αυτοματοποίηση",
+ "edit_automation": "Επεξεργασία αυτοματισμού",
+ "header": "Επεξεργαστής αυτοματισμού",
+ "headers": {
+ "name": "Ονομασία"
+ },
+ "introduction": "Ο επεξεργαστής αυτοματισμού σας επιτρέπει να δημιουργείτε και να επεξεργάζεστε αυτοματισμούς. Διαβάστε τις οδηγίες (https://home-assistant.io/docs/automation/editor/) για να βεβαιωθείτε ότι έχετε ρυθμίσει σωστά το Home Assistant.",
+ "learn_more": "Μάθετε περισσότερα σχετικά με τους αυτοματισμούς",
+ "no_automations": "Δεν μπορέσαμε να βρούμε αυτοματισμούς",
+ "only_editable": "Μόνο οι αυτοματισμοί που ορίζονται στο automations.yaml είναι επεξεργάσιμοι.",
+ "pick_automation": "Επιλέξτε αυτοματισμό για επεξεργασία",
+ "show_info_automation": "Εμφάνιση πληροφοριών σχετικά με τον αυτοματισμό"
+ },
+ "thingtalk": {
+ "create": "Δημιουργία αυτοματισμού",
+ "link_devices": {
+ "ambiguous_entities": "Μία ή περισσότερες συσκευές έχουν περισσότερες από μία οντότητες που ταιριάζουν, επιλέξτε αυτήν που θέλετε να χρησιμοποιήσετε.",
+ "header": "Τέλεια! Τώρα πρέπει να συνδέσουμε ορισμένες συσκευές",
+ "unknown_placeholder": "Άγνωστο σύμβολο κράτησης θέσης"
+ },
+ "task_selection": {
+ "error_empty": "Εισαγάγετε μια εντολή ή πατήστε Παράλειψη.",
+ "error_unsupported": "Δεν μπορούσαμε να δημιουργήσουμε έναν αυτοματισμό για αυτό (ακόμα;).",
+ "for_example": "Για παράδειγμα:",
+ "header": "Δημιουργία νέου αυτοματισμού",
+ "introduction": "Πληκτρολογήστε παρακάτω τι πρέπει να κάνει αυτός ο αυτοματισμός και θα προσπαθήσουμε να τον μετατρέψουμε σε αυτοματισμό του Home Assistant.",
+ "language_note": "Σημείωση: Μόνο τα Αγγλικά υποστηρίζονται προς το παρόν."
+ }
+ },
+ "trace": {
+ "download_trace": "Λήψη ίχνους",
+ "edit_automation": "Επεξεργασία αυτοματισμού",
+ "newer_trace": "Νεότερο ίχνος",
+ "older_trace": "Παλαιότερο ίχνος",
+ "refresh": "Ανανέωση"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "κοινοτικά φόρουμ",
+ "error_no_url": "Εισαγάγετε τη διεύθυνση URL του σχεδιαγράμματος.",
+ "file_name": "Διαδρομή προσχεδίου",
+ "header": "Εισαγωγή σχεδιαγράμματος",
+ "import_btn": "Προεπισκόπηση σχεδιαγράμματος",
+ "import_header": "Σχεδιάγραμμα \"{name}\"",
+ "import_introduction_link": "Μπορείτε να εισαγάγετε προσχέδια άλλων χρηστών από το Github και το {community_link} . Εισαγάγετε τη διεύθυνση URL του προσχεδίου παρακάτω.",
+ "importing": "Φόρτωση σχεδιαγράμματος...",
+ "raw_blueprint": "Περιεχόμενο προσχεδίου",
+ "save_btn": "Εισαγωγή σχεδιαγράμματος",
+ "saving": "Εισαγωγή σχεδιαγράμματος…",
+ "unsupported_blueprint": "Αυτό το σχεδιάγραμμα δεν υποστηρίζεται",
+ "url": "Διεύθυνση URL του σχεδιαγράμματος"
+ },
+ "caption": "Σχεδιαγράμματα",
+ "description": "Διαχείριση σχεδιαγραμμάτων",
+ "overview": {
+ "add_blueprint": "Εισαγωγή σχεδιαγράμματος",
+ "confirm_delete_header": "Διαγραφή αυτού του σχεδιαγράμματος;",
+ "confirm_delete_text": "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το σχεδιάγραμμα;",
+ "create_automation": "Δημιουργία αυτοματισμού",
+ "create_script": "Δημιουργία σεναρίου",
+ "delete_blueprint": "Διαγραφή προσχεδίου",
+ "discover_more": "Ανακαλύψτε περισσότερα προσχέδια",
+ "header": "Πρόγραμμα επεξεργασίας σχεδιαγραμμάτων",
+ "headers": {
+ "domain": "Τομέας",
+ "file_name": "Ονομα αρχείου",
+ "name": "Όνομα",
+ "type": "Τύπος"
+ },
+ "introduction": "Η διαμόρφωση του σχεδιαγράμματος σας επιτρέπει να εισάγετε και να διαχειρίζεστε τα σχεδιαγράμματά σας.",
+ "learn_more": "Μάθετε περισσότερα σχετικά με τη χρήση σχεδιαγραμμάτων",
+ "share_blueprint": "Κοινή χρήση προσχεδίου",
+ "share_blueprint_no_url": "Δεν είναι δυνατή η κοινή χρήση του προσχεδίου: δεν υπάρχει διεύθυνση URL προέλευσης",
+ "types": {
+ "automation": "Αυτοματισμός",
+ "script": "Σενάριο"
+ },
+ "use_blueprint": "Δημιουργία αυτοματισμού"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Τεκμηρίωση παραμετροποίησης",
+ "disable": "Απενεργοποίηση",
+ "enable": "Ενεργοποίηση",
+ "enable_ha_skill": "Ενεργοποιήστε την ικανότητα του Home Assistant για την Alexa",
+ "enable_state_reporting": "Ενεργοποίηση αναφορών κατάστασης",
+ "info": "Με την ενσωμάτωση Alexa για το Home Assistant Cloud θα έχετε τη δυνατότητα να ελέγχετε όλες τις συσκευές του Home Assistant μέσω οποιασδήποτε συσκευής με τεχνολογία Alexa.",
+ "info_state_reporting": "Αν ενεργοποιήσετε την αναφορά κατάστασης, ο Home Assistant θα στείλει όλες τις αλλαγές καταστάσεων των εκτεθειμένων οντοτήτων στο Amazon. Αυτό σας επιτρέπει να βλέπετε πάντα τις τελευταίες καταστάσεις στην εφαρμογή Alexa και να χρησιμοποιείτε τις αλλαγές κατάστασης για να δημιουργήσετε ρουτίνες.",
+ "manage_entities": "Διαχείριση Οντοτήτων",
+ "state_reporting_error": "Δεν είναι δυνατή η {enable_disable} της κατάσταση αναφοράς.",
+ "sync_entities": "Συγχρονισμός οντοτήτων με το Amazon",
+ "sync_entities_error": "Ο συγχρονισμός των οντοτήτων απέτυχε:",
+ "title": "Alexa"
+ },
+ "connected": "Συνδεδεμένος",
+ "connecting": "Σύνδεση…",
+ "connection_status": "Κατάσταση σύνδεσης Cloud",
+ "fetching_subscription": "Λήψη συνδρομής…",
+ "google": {
+ "config_documentation": "Τεκμηρίωση παραμετροποίησης",
+ "devices_pin": "PIN Συσκευών Ασφαλείας",
+ "enable_ha_skill": "Ενεργοποιήστε τη δεξιότητα Cloud του Home Assistant για το Google Assistant",
+ "enable_state_reporting": "Ενεργοποίηση αναφορών κατάστασης",
+ "enter_pin_error": "Δεν είναι δυνατή η αποθήκευση του PIN:",
+ "enter_pin_hint": "Πληκτρολογήστε έναν κωδικό PIN για να χρησιμοποιήσετε συσκευές ασφαλείας",
+ "enter_pin_info": "Παρακαλώ εισάγετε έναν κωδικό PIN για να αλληλεπιδράσετε με συσκευές ασφαλείας. Οι συσκευές ασφαλείας είναι πόρτες, πόρτες χώρων στάθμευσης και κλειδαριές. Θα σας ζητηθεί να πείτε/εισάγετε αυτό το PIN κατά την αλληλεπίδραση με τέτοιες συσκευές μέσω του Google Assistant.",
+ "info": "Με την ενοποίηση του Google Assistant για το Home Assistant Cloud θα έχετε τη δυνατότητα να ελέγχετε όλες τις συσκευές του Home Assistant μέσω οποιασδήποτε συσκευής με ενεργοποιημένο το Google Assistant.",
+ "info_state_reporting": "Αν ενεργοποιήσετε την αναφορά κατάστασης, το Home Assistant θα στείλει όλες τις αλλαγές κατάστασης των εκτεθειμένων οντοτήτων στην Google. Αυτό σας επιτρέπει να βλέπετε πάντα τις τελευταίες καταστάσεις στην εφαρμογή Google.",
+ "manage_entities": "Διαχείριση Οντοτήτων",
+ "not_configured_text": "Προτού μπορέσετε να χρησιμοποιήσετε το Google Assistant, πρέπει να ενεργοποιήσετε τη δεξιότητα Home Assistant Cloud για το Google Assistant στην εφαρμογή Google Home.",
+ "not_configured_title": "Το Google Assistant δεν είναι ενεργοποιημένο",
+ "security_devices": "Συσκευές ασφαλείας",
+ "sync_entities": "Συγχρονισμός οντοτήτων στο Google",
+ "sync_entities_404_message": "Αποτυχία συγχρονισμού των οντοτήτων σας με το Google, ζητήστε από το Google \"Hey Google, sync my devices\" για να συγχρονίσετε τις οντότητες σας.",
+ "title": "Google Assistant"
+ },
+ "integrations": "Ενσωματώσεις",
+ "integrations_introduction": "Οι ενσωματώσεις για το Home Assistant Cloud σάς επιτρέπουν να συνδέεστε με υπηρεσίες στο cloud χωρίς να χρειάζεται να εκθέτετε δημοσίως την παρουσία του Home Assistant στο Internet.",
+ "integrations_introduction2": "Ελέγξτε τον ιστότοπο για ",
+ "integrations_link_all_features": " όλα τα διαθέσιμα χαρακτηριστικά",
+ "manage_account": "Διαχείριση λογαριασμού",
+ "nabu_casa_account": "Ο λογαριασμός Nabu Casa",
+ "not_connected": "Μη συνδεδεμένο",
+ "remote": {
+ "access_is_being_prepared": "Η απομακρυσμένη πρόσβαση προετοιμάζεται. Θα σας ενημερώσουμε όταν είναι έτοιμη.",
+ "certificate_info": "Πληροφορίες πιστοποιητικού",
+ "connected": "Συνδεδεμένο",
+ "info": "Το Home Assistant Cloud παρέχει μια ασφαλή απομακρυσμένη σύνδεση στο ύπαρξή σας ενώ βρίσκεστε μακριά από το σπίτι.",
+ "instance_is_available": "Η παρουσία σας είναι διαθέσιμη στο",
+ "instance_will_be_available": "Η παρουσία σας θα είναι διαθέσιμη στο",
+ "link_learn_how_it_works": "Μάθετε πώς λειτουργεί",
+ "not_connected": "Μη συνδεδεμένο",
+ "reconnecting": "Δεν είστε συνδεμένος. Προσπάθεια για επανασύνδεση.",
+ "remote_enabled": {
+ "caption": "Αυτόματη σύνδεση",
+ "description": "Ενεργοποιήστε αυτήν την επιλογή για να βεβαιωθείτε ότι το Home Assistant είναι πάντα προσβάσιμο από το διαδίκτυο."
+ },
+ "title": "Τηλεχειριστήριο"
+ },
+ "sign_out": "Αποσύνδεση",
+ "thank_you_note": "Σας ευχαριστούμε που συμμετείχατε στο Home Assistant Cloud. Υπάρχει εξαιτίας ανθρώπων σαν εσάς που μπορούμε να κάνουμε μια μεγάλη εμπειρία αυτοματισμού σπιτιού για όλους. Σας ευχαριστούμε!",
+ "tts": {
+ "default_language": "Προεπιλεγμένη γλώσσα για χρήση",
+ "dialog": {
+ "create_automation": "Δημιουργία αυτοματισμού",
+ "example_message": "Γεια σας {name}, μπορείτε να αναπαραγάγετε οποιοδήποτε κείμενο σε οποιοδήποτε υποστηριζόμενο πρόγραμμα αναπαραγωγής πολυμέσων!",
+ "header": "Δοκιμή κειμένου σε ομιλία",
+ "play": "Αναπαραγωγή",
+ "target": "Στόχος",
+ "target_browser": "Φυλλομετρητής"
+ },
+ "female": "Θηλυκό",
+ "info": "Φέρτε την προσωπικότητα στο σπίτι σας με το να σας μιλήσει χρησιμοποιώντας τις υπηρεσίες κειμένου σε ομιλία. Μπορείτε να το χρησιμοποιήσετε σε αυτοματισμούς και δέσμες ενεργειών χρησιμοποιώντας την υπηρεσία {service}.",
+ "male": "Αρσενικό",
+ "title": "Κείμενο σε ομιλία",
+ "try": "Δοκιμή"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Απέτυχε η απενεργοποίηση του διαδικτυακού αγκίστρου:",
+ "info": "Σε οτιδήποτε έχει ρυθμιστεί να ενεργοποιείται από ένα διαδικτυακό άγκιστρο, μπορεί να δοθεί μια διεύθυνση URL προσβάσιμη δημοσίως, ώστε να μπορείτε να στέλνετε δεδομένα πίσω στον Home Assistant από οπουδήποτε, χωρίς να εκτίθεται η παρουσία σας στο διαδίκτυο.",
+ "link_learn_more": "Μάθετε περισσότερα σχετικά με τη δημιουργία αυτοματισμών μέσω διαδικτυακού γάντζου.",
+ "loading": "Φόρτωση…",
+ "manage": "Διαχείριση",
+ "no_hooks_yet": "Φαίνεται ότι δεν έχετε ακόμα διαδικτυακά άγκιστρα. Ξεκινήστε με τη διαμόρφωση ενός ",
+ "no_hooks_yet2": "ή δημιουργώντας ένα",
+ "no_hooks_yet_link_automation": "Αυτοματισμός διαδικτυακού αγκίστρου",
+ "no_hooks_yet_link_integration": "ενσωμάτωση βάσει διαδικτυακού αγκίστρου",
+ "title": "Webhooks"
+ }
+ },
+ "alexa": {
+ "banner": "Η επεξεργασία των οντοτήτων που εκτίθενται μέσω αυτού του περιβάλλοντος χρήστη είναι απενεργοποιημένη, επειδή έχετε διαμορφώσει φίλτρα οντοτήτων στο αρχείο configuration.yaml.",
+ "dont_expose_entity": "Να μην εκτεθεί η οντότητα",
+ "expose": "Έκθεση στο Alexa",
+ "expose_entity": "Έκθεση οντότητας",
+ "exposed": "{selected} εκτεθειμένο",
+ "exposed_entities": "Εκτεθειμένες οντότητες",
+ "follow_domain": "Παρακολούθηση τομέα",
+ "manage_domains": "Διαχείριση τομέων",
+ "not_exposed": "{selected} μη εκτεθειμένο",
+ "not_exposed_entities": "Μη εκτεθειμένες οντότητες",
+ "title": "Alexa"
+ },
+ "description_features": "Ελέγξτε το σπίτι όταν βρίσκεστε μακριά και ενσωματώστε την Alexa και τον Βοηθό Google",
+ "description_login": "Συνδεδεμένος ως {email}",
+ "description_not_login": "Μη συνδεδεμένος",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Ημερομηνία λήξης πιστοποιητικού:",
+ "certificate_information": "Πληροφορίες Πιστοποιητικού",
+ "close": "Κλείστε",
+ "fingerprint": "Αποτύπωμα πιστοποιητικού:",
+ "will_be_auto_renewed": "θα ανανεωθεί αυτόματα"
+ },
+ "dialog_cloudhook": {
+ "available_at": "Το webhook είναι διαθέσιμο στον ακόλουθο σύνδεσμο URL:",
+ "close": "Κλείστε",
+ "confirm_disable": "Είστε σίγουροι ότι θέλετε να απενεργοποιήσετε αυτό το webhook;",
+ "copied_to_clipboard": "Αντιγράφτηκε στο πρόχειρο",
+ "info_disable_webhook": "Αν δεν θέλετε πλέον να χρησιμοποιείτε αυτό το webhook, μπορείτε να",
+ "link_disable_webhook": "απενεργοποιήστε το",
+ "managed_by_integration": "Η διαχείριση αυτού του διαδικτυακού αγκίστρου γίνεται από μια ενοποίηση και δεν μπορεί να απενεργοποιηθεί.",
+ "view_documentation": "Δείτε τα έγγραφα",
+ "webhook_for": "Webhook για {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "Ελέγξτε το ηλεκτρονικό σας ταχυδρομείο για οδηγίες σχετικά με τον τρόπο επαναφοράς του κωδικού πρόσβασής σας.",
+ "email": "Ηλεκτρονικό ταχυδρομείο",
+ "email_error_msg": "Μη έγκυρο μήνυμα ηλεκτρονικού ταχυδρομείου",
+ "instructions": "Εισαγάγετε τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας και θα σας στείλουμε έναν σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασης.",
+ "send_reset_email": "Αποστολή μηνύματος επαναφοράς",
+ "subtitle": "Ξεχάσατε τον κωδικό σας",
+ "title": "Ξέχασα τον κωδικό πρόσβασης"
+ },
+ "google": {
+ "banner": "Η επεξεργασία των οντοτήτων που εκτίθενται μέσω αυτού του περιβάλλοντος χρήστη είναι απενεργοποιημένη, επειδή έχετε διαμορφώσει φίλτρα οντοτήτων στο αρχείο configuration.yaml.",
+ "disable_2FA": "Απενεργοποιήστε τον έλεγχο ταυτότητας δύο παραγόντων",
+ "dont_expose_entity": "Να μην εκτεθεί η οντότητα",
+ "expose": "Έκθεση στο Google Assistant.",
+ "expose_entity": "Έκθεση οντότητας",
+ "exposed": "{selected} εκτεθειμένο",
+ "exposed_entities": "Εκτεθειμένες οντότητες",
+ "follow_domain": "Παρακολούθηση τομέα",
+ "manage_domains": "Διαχείριση τομέων",
+ "not_exposed": "{selected} μη εκτεθειμένο",
+ "not_exposed_entities": "Μη εκτεθειμένες οντότητες",
+ "sync_to_google": "Συγχρονισμός αλλαγών στο Google.",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Πρέπει να επιβεβαιώσετε το email σας πριν συνδεθείτε.",
+ "alert_password_change_required": "Πρέπει να αλλάξετε τον κωδικό πρόσβασής σας πριν συνδεθείτε.",
+ "dismiss": "Απόρριψη",
+ "email": "Ηλεκτρονικό ταχυδρομείο",
+ "email_error_msg": "Μη έγκυρο ηλεκτρονικό ταχυδρομείο",
+ "forgot_password": "Ξεχάσατε τον κωδικό;",
+ "introduction": "Το Home Assistant Cloud σας παρέχει μια ασφαλή απομακρυσμένη σύνδεση με την παρουσία σας ενώ βρίσκεστε μακριά από το σπίτι. Σας επιτρέπει επίσης να συνδεθείτε με υπηρεσίες που αφορούν μόνο cloud: Amazon Alexa και Google Assistant.",
+ "introduction2": "Αυτή η υπηρεσία εκτελείται από συνεργάτη μας ",
+ "introduction2a": ", μια εταιρεία που ιδρύθηκε από τους ιδρυτές του Home Assistant.",
+ "introduction3": "Το Home Assistant Cloud είναι μια συνδρομητική υπηρεσία με δωρεάν δοκιμή ενός μήνα. Δεν απαιτούνται στοιχεία πληρωμής.",
+ "learn_more_link": "Μάθετε περισσότερα σχετικά με το Home Assistant Cloud",
+ "password": "Κωδικός",
+ "password_error_msg": "Οι κωδικοί πρόσβασης έχουν τουλάχιστον 8 χαρακτήρες",
+ "sign_in": "Είσοδος",
+ "start_trial": "Ξεκινήστε τη δωρεάν δοκιμαστική έκδοση 1 μηνός",
+ "title": "Σύνδεση στο cloud",
+ "trial_info": "Δεν απαιτούνται στοιχεία πληρωμής"
+ },
+ "register": {
+ "account_created": "Ο λογαριασμός δημιουργήθηκε! Ελέγξτε το email σας για οδηγίες σχετικά με τον τρόπο ενεργοποίησης του λογαριασμού σας.",
+ "create_account": "Δημιουργία Λογαριασμού",
+ "email_address": "Διεύθυνση ηλεκτρονικού ταχυδρομείου",
+ "email_error_msg": "Μη έγκυρο ηλεκτρονικό ταχυδρομείο",
+ "feature_amazon_alexa": "Ενσωμάτωση με την Alexa",
+ "feature_google_home": "Ενσωμάτωση με το Google Assistant",
+ "feature_remote_control": "Έλεγχος του Home Assistant μακριά από το σπίτι",
+ "feature_webhook_apps": "Εύκολη ενσωμάτωση με εφαρμογές που βασίζονται στο webhook όπως το OwnTracks",
+ "headline": "Ξεκινήστε τη δωρεάν δοκιμή σας",
+ "information": "Δημιουργήστε ένα λογαριασμό για να ξεκινήσετε δωρεάν ένα μήνα δίκη σας με το οικιακό βοηθό cloud. Δεν απαιτούνται στοιχεία πληρωμής.",
+ "information2": "Η δοκιμή θα σας δώσει πρόσβαση σε όλα τα οφέλη του Home Assistant Cloud, όπως:",
+ "information3": "Αυτή η υπηρεσία εκτελείται από συνεργάτη μας ",
+ "information3a": ", μια εταιρεία που ιδρύθηκε από τους ιδρυτές του Home Assistant.",
+ "information4": "Με την εγγραφή ενός λογαριασμού συμφωνείτε με τους ακόλουθους όρους και προϋποθέσεις.",
+ "link_privacy_policy": "Πολιτική Απορρήτου",
+ "link_terms_conditions": "Όροι και Προϋποθέσεις",
+ "password": "Κωδικός",
+ "password_error_msg": "Οι κωδικοί πρόσβασης έχουν τουλάχιστον 8 χαρακτήρες",
+ "resend_confirm_email": "Ξαναστείλτε μήνυμα επιβεβαίωσης",
+ "start_trial": "Ξεκινήστε τη δοκιμή",
+ "title": "Εγγραφή λογαριασμού"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Δεν αποθηκεύσατε τις αλλαγές. Είστε βέβαιοι ότι θέλετε να φύγετε;"
+ },
+ "learn_more": "Μάθετε περισσότερα"
+ },
+ "core": {
+ "caption": "Γενικά",
+ "description": "Τοποθεσία, δίκτυο και αναλύσεις",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Νόμισμα",
+ "edit_requires_storage": "Ο επεξεργαστής απενεργοποιήθηκε επειδή οι ρυθμίσεις παραμέτρων αποθηκεύτηκαν στο αρχείο configuration.yaml.",
+ "elevation": "Ανύψωση",
+ "elevation_meters": "μέτρα",
+ "external_url": "Εξωτερική διεύθυνση URL",
+ "find_currency_value": "Βρείτε την αξία σας",
+ "imperial_example": "Φαρενάιτ, λίρες",
+ "internal_url": "Εσωτερική διεύθυνση URL",
+ "latitude": "Γεωγραφικό πλάτος",
+ "location_name": "Όνομα της εγκατάστασης του Home Assistant",
+ "longitude": "Γεωγραφικό μήκος",
+ "metric_example": "Κελσίου, κιλά",
+ "save_button": "Αποθήκευση",
+ "time_zone": "Ζώνη Ώρας",
+ "unit_system": "Μονάδα Συστήματος",
+ "unit_system_imperial": "Αυτοκρατορικός",
+ "unit_system_metric": "Μετρικό"
+ },
+ "header": "Γενική ρύθμιση παραμέτρων",
+ "introduction": "Διαχειριστείτε την τοποθεσία, το δίκτυο και τις αναλύσεις."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Τα ακόλουθα χαρακτηριστικά έχουν ήδη οριστεί στο customize.yaml",
+ "attributes_not_set": "Δεν έχουν οριστεί τα ακόλουθα χαρακτηριστικά. Ρυθμίστε τα αν θέλετε.",
+ "attributes_outside": "Τα παρακάτω χαρακτηριστικά έχουν προσαρμοστεί εκτός του customize.yaml",
+ "attributes_override": "Μπορείς να τους παρακάμψεις αν θέλεις.",
+ "attributes_set": "Τα ακόλουθα χαρακτηριστικά της οντότητας ορίζονται μέσω προγραμματισμού.",
+ "caption": "Προσαρμογές",
+ "description": "Προσαρμόστε τις οντότητές σας",
+ "different_include": "Ίσως μέσω ενός τομέα, ενός glob ή μιας διαφορετικής προσθήκης.",
+ "pick_attribute": "Επιλέξτε ένα χαρακτηριστικό για να το παρακάμψετε",
+ "picker": {
+ "documentation": "Τεκμηρίωση προσαρμογής",
+ "header": "Προσαρμογή",
+ "introduction": "Αλλαγή ρυθμίσεων ανά οντότητα. Οι προσαρμοσμένες προσθήκες / επεξεργασίες θα τεθούν αμέσως σε ισχύ. Οι αφαιρεθείσες προσαρμογές θα ισχύσουν όταν ενημερωθεί η οντότητα."
+ },
+ "warning": {
+ "include_link": "Συμπεριέλαβε το customize.yaml",
+ "include_sentence": "Φαίνεται ότι το configuration.yaml σας δεν είναι σωστό",
+ "not_applied": "Οι αλλαγές που γίνονται εδώ είναι γραμμένες σε αυτό, αλλά δεν θα εφαρμοστούν μετά την επαναφόρτωση της ρύθμισης παραμέτρων, εκτός εάν η προσθήκη είναι στη θέση της."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Διαχείριση αυτοματισμών, σκηνών, σεναρίων και βοηθών",
+ "title": "Αυτοματισμοί & Σκηνές"
+ },
+ "blueprints": {
+ "description": "Έτοιμοι αυτοματισμοί και σενάρια από την κοινότητα",
+ "title": "Προσχέδια"
+ },
+ "companion": {
+ "description": "Τοποθεσία και ειδοποιήσεις",
+ "title": "Εφαρμογή Companion"
+ },
+ "dashboards": {
+ "description": "Δημιουργήστε προσαρμοσμένα σύνολα καρτών για να ελέγχετε το σπίτι σας",
+ "title": "Πίνακες οργάνων"
+ },
+ "devices": {
+ "description": "Ενσωματώσεις, συσκευές, οντότητες και περιοχές",
+ "title": "Συσκευές & Υπηρεσίες"
+ },
+ "energy": {
+ "description": "Παρακολουθήστε την παραγωγή και κατανάλωση ενέργειας",
+ "title": "Ενέργεια"
+ },
+ "people": {
+ "description": "Διαχειριστείτε τα άτομα και τις ζώνες που παρακολουθεί το Home Assistant",
+ "title": "Άτομα & ζώνες"
+ },
+ "settings": {
+ "description": "Βασικές ρυθμίσεις, έλεγχοι διακομιστή, αρχεία καταγραφής και πληροφορίες",
+ "title": "Ρυθμίσεις"
+ },
+ "supervisor": {
+ "description": "Δημιουργήστε αντίγραφα ασφαλείας, ελέγξτε τα αρχεία καταγραφής ή επανεκκινήστε το σύστημά σας",
+ "title": "Πρόσθετα, Αντίγραφα Ασφαλείας & Επόπτης"
+ },
+ "tags": {
+ "description": "Ενεργοποιήση αυτοματισμών όταν σαρώνεται μια ετικέτα NFC, ένας κωδικός QR, κ.τ.λ.",
+ "title": "Ετικέτες"
+ }
+ },
+ "devices": {
+ "add_prompt": "Δεν έχει προστεθεί ακόμα {name} χρησιμοποιώντας αυτήν τη συσκευή. Μπορείτε να προσθέσετε ένα κάνοντας κλικ στο κουμπί + παραπάνω.",
+ "automation": {
+ "actions": {
+ "caption": "Όταν ενεργοποιείται κάτι…",
+ "no_actions": "Καμία ενέργεια",
+ "unknown_action": "Άγνωστη ενέργεια"
+ },
+ "automations": "Αυτοματισμοί",
+ "conditions": {
+ "caption": "Κάνε κάτι μόνο αν…",
+ "no_conditions": "Χωρίς όρους",
+ "unknown_condition": "Άγνωστη κατάσταση"
+ },
+ "create": "Δημιουργία αυτοματισμού με τη συσκευή",
+ "create_disable": "Δεν είναι δυνατή η δημιουργία αυτοματισμού με απενεργοποιημένη συσκευή",
+ "no_automations": "Δεν υπάρχουν αυτοματισμοί",
+ "no_device_automations": "Δεν υπάρχουν διαθέσιμοι αυτοματισμοί για αυτήν τη συσκευή.",
+ "triggers": {
+ "caption": "Κάνε κάτι όταν…",
+ "no_triggers": "Χωρίς εναύσματα",
+ "unknown_trigger": "Άγνωστο έναυσμα"
+ },
+ "unknown_automation": "Άγνωστος αυτοματισμός"
+ },
+ "cant_edit": "Μπορείτε να επεξεργαστείτε μόνο στοιχεία που έχουν δημιουργηθεί στο UI.",
+ "caption": "Συσκευές",
+ "confirm_delete": "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτή τη συσκευή;",
+ "confirm_disable_config_entry": "Δεν υπάρχουν άλλες συσκευές για την καταχώριση {entry_name} , θέλετε να απενεργοποιήσετε την καταχώριση {entry_name} ;",
+ "confirm_rename_entity_ids": "Θέλετε επίσης να μετονομάσετε τα αναγνωριστικά των οντοτήτων σας;",
+ "confirm_rename_entity_ids_warning": "Αυτό δεν θα αλλάξει καμία διαμόρφωση (όπως αυτοματισμοί, σενάρια, σκηνές, πίνακες ελέγχου) που χρησιμοποιεί αυτήν τη στιγμή αυτές τις οντότητες! Θα πρέπει να τα ενημερώσετε μόνοι σας για να χρησιμοποιήσετε τα νέα αναγνωριστικά οντοτήτων!",
+ "data_table": {
+ "area": "Περιοχή",
+ "battery": "Μπαταρία",
+ "device": "Συσκευή",
+ "integration": "Ενσωμάτωση",
+ "manufacturer": "Κατασκευαστής",
+ "model": "Μοντέλο",
+ "no_devices": "Δεν υπάρχουν συσκευές",
+ "no_integration": "Καμία ενσωμάτωση"
+ },
+ "delete": "Διαγραφή",
+ "description": "Διαχείριση διαμορφωμένων συσκευών",
+ "device_info": "Πληροφορίες συσκευής",
+ "device_not_found": "Η συσκευή δε βρέθηκε.",
+ "disabled": "Απενεργοποιημένο",
+ "disabled_by": {
+ "config_entry": "Παράμετρος διαμόρφωσης",
+ "integration": "Ενσωμάτωση",
+ "user": "Χρήστης"
+ },
+ "download_diagnostics": "Λήψη διαγνωστικών",
+ "edit_settings": "Επεξεργασία ρυθμίσεων",
+ "enabled_cause": "Η συσκευή απενεργοποιείται από το {cause}.",
+ "enabled_description": "Οι απενεργοποιημένες συσκευές δεν θα εμφανίζονται και οι οντότητες που ανήκουν στη συσκευή θα απενεργοποιούνται και δεν θα προστίθενται στο Home Assistant.",
+ "enabled_label": "Ενεργοποίηση συσκευής",
+ "entities": {
+ "add_entities_lovelace": "Προσθήκη στο Lovelace",
+ "config": "Διαμόρφωση",
+ "control": "Χειριστήρια",
+ "diagnostic": "Διαγνωστικό",
+ "disabled_entities": "+{count} {count, plural,\n one {απενεργοποιημένη οντότητα}\n other {απενεργοποιημένες οντότητες}\n}",
+ "entities": "Οντότητες",
+ "hide_disabled": "Η απόκρυψη είναι απενεργοποιημένη",
+ "none": "Αυτή η συσκευή δεν έχει οντότητες",
+ "sensor": "Αισθητήρες",
+ "state": "Κατάσταση"
+ },
+ "name": "Όνομα",
+ "no_devices": "Δεν υπάρχουν συσκευές",
+ "open_configuration_url_device": "Επισκεφθείτε τη συσκευή",
+ "open_configuration_url_service": "Επισκεφθείτε την υπηρεσία",
+ "picker": {
+ "filter": {
+ "filter": "Φίλτρο",
+ "hidden_devices": "{number} κρυφή {number, plural,\n one {συσκευή}\n other {συσκευές}\n}",
+ "show_all": "Εμφάνιση όλων",
+ "show_disabled": "Εμφάνιση απενεργοποιημένων συσκευών"
+ },
+ "search": "Αναζήτηση συσκευών"
+ },
+ "scene": {
+ "create": "Δημιουργία σκηνής με τη συσκευή",
+ "create_disable": "Δεν είναι δυνατή η δημιουργία σκηνής με απενεργοποιημένη συσκευή",
+ "no_scenes": "Καμία σκηνή",
+ "scenes": "Σκηνές"
+ },
+ "scenes": "Σκηνές",
+ "script": {
+ "create": "Δημιουργία σεναρίου με συσκευή",
+ "create_disable": "Δεν είναι δυνατή η δημιουργία σεναρίου με απενεργοποιημένη συσκευή",
+ "no_scripts": "Χωρίς δέσμες ενεργειών",
+ "scripts": "Δέσμες ενεργειών"
+ },
+ "scripts": "Δέσμες ενεργειών",
+ "unknown_error": "Άγνωστο σφάλμα",
+ "unnamed_device": "Συσκευή χωρίς όνομα",
+ "update": "Ενημέρωση",
+ "update_device_error": "Η ενημέρωση της συσκευής απέτυχε"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Προσθήκη συστήματος μπαταρίας",
+ "battery_systems": "Συστήματα μπαταριών",
+ "dialog": {
+ "energy_into_battery": "Ενέργεια που εισέρχεται στην μπαταρία (kWh)",
+ "energy_out_of_battery": "Ενέργεια που προέρχεται από την μπαταρία (kWh)",
+ "header": "Διαμόρφωση του συστήματος μπαταρίας"
+ },
+ "learn_more": "Περισσότερες πληροφορίες για το πώς να ξεκινήσετε.",
+ "sub": "Εάν διαθέτετε σύστημα μπαταριών, μπορείτε να το διαμορφώσετε ώστε να παρακολουθεί πόση ενέργεια αποθηκεύτηκε και χρησιμοποιήθηκε από την μπαταρία σας.",
+ "title": "Αποθηκευτικός Χώρος Μπαταρίας Κατοικίας"
+ },
+ "caption": "Ενέργεια",
+ "delete_integration": "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτή την ενσωμάτωση; Θα αφαιρέσει τις οντότητες που παρέχει",
+ "delete_source": "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτήν την πηγή;",
+ "description": "Παρακολουθήστε την παραγωγή και κατανάλωση ενέργειας",
+ "device_consumption": {
+ "add_device": "Προσθήκη συσκευής",
+ "add_stat": "Επιλέξτε οντότητα για να παρακολουθείτε την ενέργεια",
+ "devices": "Συσκευές",
+ "dialog": {
+ "device_consumption_energy": "Κατανάλωση ενέργειας συσκευής (kWh)",
+ "header": "Προσθέστε μια συσκευή",
+ "selected_stat_intro": "Επιλέξτε την οντότητα που αντιπροσωπεύει τη χρήση ενέργειας της συσκευής."
+ },
+ "learn_more": "Περισσότερες πληροφορίες για το πώς να ξεκινήσετε.",
+ "selected_stat": "Παρακολούθηση ενέργειας για",
+ "sub": "Η παρακολούθηση της κατανάλωσης ενέργειας μεμονωμένων συσκευών επιτρέπει στο Home Assistant να αναλύσει τη χρήση ενέργειας ανά συσκευή.",
+ "title": "Μεμονωμένες συσκευές"
+ },
+ "gas": {
+ "add_gas_source": "Προσθήκη πηγής αερίου",
+ "dialog": {
+ "cost_entity": "Χρησιμοποιήστε μια οντότητα με την τρέχουσα τιμή",
+ "cost_entity_input": "Οντότητα με την τρέχουσα τιμή ανά {unit}",
+ "cost_number": "Χρήση στατικής τιμής",
+ "cost_number_input": "Τιμή ανά {unit}",
+ "cost_number_suffix": "{currency}/m³",
+ "cost_para": "Επιλέξτε τον τρόπο με τον οποίο το Home Assistant θα παρακολουθεί το κόστος της καταναλισκόμενης ενέργειας.",
+ "cost_stat": "Χρησιμοποιήστε μια οντότητα που παρακολουθεί το συνολικό κόστος",
+ "cost_stat_input": "Οντότητα Συνολικού Κόστους",
+ "energy_stat": "Καταναλωμένη ενέργεια (m³)",
+ "gas_usage": "Χρήση αερίου",
+ "header": "Διαμόρφωση της κατανάλωσης αερίου",
+ "m3_or_kWh": "ft³, m³, Wh, kWh ή MWh",
+ "no_cost": "Μην παρακολουθείτε το κόστος",
+ "paragraph": "Η κατανάλωση αερίου είναι ο όγκος αερίου που ρέει στο σπίτι σας."
+ },
+ "gas_consumption": "Κατανάλωση αερίου",
+ "learn_more": "Περισσότερες πληροφορίες για το πώς να ξεκινήσετε.",
+ "sub": "Αφήστε το Home Assistant να παρακολουθεί τη χρήση του φυσικού αερίου σας.",
+ "title": "Κατανάλωση αερίου"
+ },
+ "grid": {
+ "add_co2_signal": "Προσθήκη ενσωμάτωσης σήματος CO2",
+ "add_consumption": "Προσθήκη κατανάλωσης",
+ "add_return": "Προσθήκη επιστροφής",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Χρησιμοποιήστε μια οντότητα με την τρέχουσα τιμή",
+ "cost_entity_input": "Οντότητα με την τρέχουσα τιμή",
+ "cost_number": "Χρήση στατικής τιμής",
+ "cost_number_input": "Τιμή ανά kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Επιλέξτε τον τρόπο με τον οποίο το Home Assistant θα παρακολουθεί το κόστος της καταναλωμένης ενέργειας.",
+ "cost_stat": "Χρησιμοποιήστε μια οντότητα που παρακολουθεί το συνολικό κόστος",
+ "cost_stat_input": "Οντότητα συνολικού κόστους",
+ "energy_stat": "Καταναλωμένη ενέργεια (kWh)",
+ "header": "Διαμόρφωση της κατανάλωσης δικτύου",
+ "no_cost": "Μην παρακολουθείτε το κόστος",
+ "paragraph": "Η κατανάλωση δικτύου είναι η ενέργεια που ρέει από το ενεργειακό δίκτυο προς το σπίτι σας."
+ },
+ "to": {
+ "cost_entity": "Χρησιμοποιήστε μια οντότητα με τρέχον επιτόκιο",
+ "cost_entity_input": "Οντότητα με το τρέχον επιτόκιο",
+ "cost_number": "Χρήση στατικού επιτοκίου",
+ "cost_number_input": "Τιμή ανά kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Παίρνετε χρήματα πίσω όταν επιστρέφετε ενέργεια στο δίκτυο;",
+ "cost_stat": "Χρησιμοποιήστε μια οντότητα που παρακολουθεί το σύνολο των εισπραχθέντων χρημάτων",
+ "cost_stat_input": "Οντότητα συνολικής αποζημίωσης",
+ "energy_stat": "Ενέργεια που επιστρέφεται στο δίκτυο (kWh)",
+ "header": "Διαμόρφωση παραγωγής δικτύου",
+ "no_cost": "Δεν παίρνω πίσω χρήματα",
+ "paragraph": "Η παραγωγή δικτύου είναι η ενέργεια που ρέει από τους ηλιακούς συλλέκτες σας στο δίκτυο."
+ }
+ },
+ "grid_carbon_footprint": "Αποτύπωμα άνθρακα δικτύου",
+ "grid_consumption": "Κατανάλωση δικτύου",
+ "learn_more": "Περισσότερες πληροφορίες για το πώς να ξεκινήσετε.",
+ "return_to_grid": "Επιστροφή στο δίκτυο",
+ "sub": "Διαμορφώστε την ποσότητα ενέργειας που καταναλώνετε από το δίκτυο και, εάν παράγετε ενέργεια, επιστρέψτε στο δίκτυο. Αυτό επιτρέπει στο Home Assistant να παρακολουθεί ολόκληρη την κατανάλωση ενέργειας στο σπίτι.",
+ "title": "Δίκτυο ηλεκτρικής ενέργειας"
+ },
+ "new_device_info": "Μετά τη ρύθμιση μιας νέας συσκευής, μπορεί να χρειαστούν έως και 2 ώρες για να φτάσουν νέα δεδομένα στον πίνακα ελέγχου ενέργειας.",
+ "solar": {
+ "add_solar_production": "Προσθήκη ηλιακής παραγωγής",
+ "dialog": {
+ "add_forecast": "Προσθήκη πρόβλεψης",
+ "dont_forecast_production": "Μην προβλέπετε την παραγωγή",
+ "forecast_production": "Πρόβλεψη Παραγωγής",
+ "header": "Διαμόρφωση ηλιακών συλλεκτών",
+ "solar_production_energy": "Ενέργεια ηλιακής παραγωγής (kWh)",
+ "solar_production_forecast": "Πρόβλεψη ηλιακής παραγωγής",
+ "solar_production_forecast_description": "Η προσθήκη πληροφοριών πρόβλεψης ηλιακής παραγωγής θα σας επιτρέψει να δείτε γρήγορα την αναμενόμενη παραγωγή σας για σήμερα."
+ },
+ "learn_more": "Περισσότερες πληροφορίες για το πώς να ξεκινήσετε.",
+ "solar_production": "Ηλιακή παραγωγή",
+ "stat_predicted_production": "Πρόβλεψη της παραγωγής ηλιακής ενέργειας",
+ "stat_production": "Η παραγωγή ηλιακής ενέργειας",
+ "stat_return_to_grid": "Ηλιακή ενέργεια που επέστρεψε στο δίκτυο",
+ "sub": "Αφήστε το Home Assistant να παρακολουθεί τους ηλιακούς συλλέκτες σας και να σας παρέχει πληροφορίες σχετικά με την απόδοσή τους.",
+ "title": "Ηλιακοί συλλέκτες"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "Οι ακόλουθες οντότητες έχουν αρνητική κατάσταση, ενώ αναμένεται θετική κατάσταση:",
+ "title": "Η οντότητα έχει αρνητική κατάσταση"
+ },
+ "entity_not_defined": {
+ "description": "Ελέγξτε την ενσωμάτωση ή τη διαμόρφωσή σας που παρέχει:",
+ "title": "Η οντότητα δεν έχει οριστεί"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "Οι ακόλουθες οντότητες έχουν κλάση \"μέτρηση\", αλλά λείπει η \"τελευταία_επαναφορά\":",
+ "title": "Λείπει η τελευταία επαναφορά"
+ },
+ "entity_state_non_numeric": {
+ "description": "Οι ακόλουθες οντότητες έχουν μια κατάσταση που δεν μπορεί να προσπελαθεί ως αριθμός:",
+ "title": "Η οντότητα έχει μη αριθμητική κατάσταση"
+ },
+ "entity_unavailable": {
+ "description": "Η κατάσταση αυτών των διαμορφωμένων οντοτήτων δεν είναι προς το παρόν διαθέσιμη:",
+ "title": "Η οντότητα δεν είναι διαθέσιμη"
+ },
+ "entity_unexpected_device_class": {
+ "description": "Οι ακόλουθες οντότητες δεν έχουν την αναμενόμενη κλάση συσκευής:",
+ "title": "Μη αναμενόμενη κλάση συσκευής"
+ },
+ "entity_unexpected_state_class": {
+ "description": "Οι ακόλουθες οντότητες δεν έχουν την αναμενόμενη κλάση κατάστασης:",
+ "title": "Απροσδόκητη κλάση κατάστασης"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "Οι ακόλουθες οντότητες δεν έχουν την αναμενόμενη κλάση κατάστασης \"αύξηση_συνόλου\"",
+ "title": "Απροσδόκητη κλάση κατάστασης"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "Οι ακόλουθες οντότητες δεν έχουν τις αναμενόμενες μονάδες μέτρησης 'Wh', 'kWh' ή 'MWh':",
+ "title": "Μη αναμενόμενη μονάδα μέτρησης"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "Οι ακόλουθες οντότητες δεν έχουν τις αναμενόμενες μονάδες μέτρησης '' {currency}/kWh '', \"{currency}/Wh\" ή ''{currency}/MWh'':",
+ "title": "Μη αναμενόμενη μονάδα μέτρησης"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "Οι ακόλουθες οντότητες δεν έχουν τις αναμενόμενες μονάδες μέτρησης 'Wh', 'kWh' ή 'MWh' για ένα αισθητήρα ενέργειας, ή 'm³' ή 'ft³' για ένα αισθητήρα αερίου:",
+ "title": "Μη αναμενόμενη μονάδα μέτρησης"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "Οι ακόλουθες οντότητες δεν διαθέτουν τις αναμενόμενες μονάδες μέτρησης ''{currency}/kWh'', ''{currency}/Wh'', ''{currency}/MWh'', ''{currency}/m³'' ή ''{currency}/ft³'':",
+ "title": "Μη αναμενόμενη μονάδα μέτρησης"
+ },
+ "recorder_untracked": {
+ "description": "Ο καταγραφέας έχει ρυθμιστεί ώστε να αποκλείει αυτές τις διαμορφωμένες οντότητες:",
+ "title": "Η οντότητα δεν παρακολουθείται"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Μητρώο οντοτήτων",
+ "description": "Διαχείριση γνωστών οντοτήτων",
+ "picker": {
+ "disable_selected": {
+ "button": "Απενεργοποίηση επιλεγμένων",
+ "confirm_text": "Οι απενεργοποιημένες οντότητες δεν θα προστεθούν στον Home Assistant",
+ "confirm_title": "Θέλετε να απενεργοποιήσετε {number} {number, plural,\n one {στοιχείο}\n other {στοιχεία}\n};"
+ },
+ "enable_selected": {
+ "button": "Ενεργοποίηση επιλεγμένων",
+ "confirm_text": "Αυτό θα τα καταστήσει ξανά διαθέσιμα στο Home Assistant, εάν είναι τώρα απενεργοποιημένα.",
+ "confirm_title": "Θέλετε να ενεργοποιήσετε {number} {number, plural,\n one {στοιχείο}\n other {στοιχεία}\n};"
+ },
+ "filter": {
+ "filter": "Φίλτρο",
+ "hidden_entities": "{number} κρυφό {number, plural,\n one {οντότητα}\n other {οντότητες}\n}",
+ "show_all": "Εμφάνιση όλων",
+ "show_disabled": "Προβολή απενεργοποιημένων οντοτήτων",
+ "show_readonly": "Εμφάνιση οντοτήτων μόνο για ανάγνωση",
+ "show_unavailable": "Προβολή μη διαθέσιμων οντοτήτων"
+ },
+ "header": "Μητρώο οντοτήτων",
+ "headers": {
+ "area": "Περιοχή",
+ "disabled_by": "Απενεργοποιημένο από",
+ "entity_id": "Αναγνωριστικό οντότητας",
+ "integration": "Ενσωμάτωση",
+ "name": "Όνομα",
+ "status": "Κατάσταση"
+ },
+ "introduction": "Ο Home Assistant διατηρεί μητρώο από κάθε μοναδική οντότητα που ανιχνεύει. Αυτές οι οντότητες έχουν το δικό τους μοναδικό αναγνωριστικό ID.",
+ "introduction2": "Χρησιμοποιήστε το μητρώο οντοτήτων για να παρακάμψετε το όνομα, να αλλάξετε το αναγνωριστικό οντότητας ή να καταργήσετε την καταχώριση από το Home Assistant.",
+ "remove_selected": {
+ "button": "Αφαίρεση επιλεγμένων",
+ "confirm_partly_text": "Μπορείτε να αφαιρέσετε μόνο {removable} από τις επιλεγμένες {selected} οντότητες. Οι οντότητες μπορούν να καταργηθούν μόνο όταν η ενοποίηση δεν παρέχει πλέον τις οντότητες. Μερικές φορές πρέπει να κάνετε επανεκκίνηση του Home Assistant για να μπορέσετε να καταργήσετε τις οντότητες μιας καταργημένης ενοποίησης. Είστε βέβαιοι ότι θέλετε να καταργήσετε τις αφαιρούμενες οντότητες;",
+ "confirm_partly_title": "Μόνο {number} {number, plural,\n one {επιλεγμένο στοιχείο μπορεί να αφαιρεθεί}\n other {επιλεγμένα στοιχεία μπορούν να αφαιρεθούν}\n}.",
+ "confirm_text": "Θα πρέπει να τα αφαιρέσετε από το Lovelace config και τους αυτοματισμούς σας εάν περιέχουν αυτές τις οντότητες.",
+ "confirm_title": "Θέλετε να αφαιρέσετε {number} {number, plural,\n one {στοιχείο}\n other {στοιχεία}\n};"
+ },
+ "search": "Οντότητες αναζήτησης",
+ "selected": "Επιλέχθηκαν {number}",
+ "status": {
+ "disabled": "Απενεργοποιημένη",
+ "ok": "Οκ",
+ "readonly": "Μόνο για ανάγνωση",
+ "restored": "Αποκαταστάθηκε",
+ "unavailable": "Μη Διαθέσιμη"
+ }
+ }
+ },
+ "header": "Διαμόρφωση του Home Assistant",
+ "helpers": {
+ "caption": "Βοηθοί",
+ "description": "Στοιχεία που βοηθούν στη δημιουργία αυτοματισμών",
+ "dialog": {
+ "add_helper": "Προσθήκη βοηθού",
+ "add_platform": "Προσθήκη {platform}",
+ "create": "Δημιουργία"
+ },
+ "picker": {
+ "add_helper": "Προσθήκη βοηθού",
+ "headers": {
+ "editable": "Επεξεργάσιμο",
+ "entity_id": "Αναγνωριστικό οντότητας",
+ "name": "Ονομασία",
+ "type": "Τύπος"
+ },
+ "no_helpers": "Φαίνεται ότι δεν έχετε ακόμα βοηθούς!"
+ },
+ "types": {
+ "counter": "Μετρητής",
+ "input_boolean": "Εναλλαγή",
+ "input_button": "Κουμπί",
+ "input_datetime": "Ημερομηνία και/ή ώρα",
+ "input_number": "Αριθμός",
+ "input_select": "Αναπτυσσόμενο μενού",
+ "input_text": "Κείμενο",
+ "timer": "Χρονόμετρο"
+ }
+ },
+ "info": {
+ "built_using": "Κατασκευάστηκε με χρήση",
+ "caption": "Πληροφορίες",
+ "copy_github": "Για το GitHub",
+ "copy_menu": "Αντιγραφή μενού",
+ "copy_raw": "Μη επεξεργασμένο κείμενο",
+ "custom_uis": "Προσαρμοσμένα περιβάλλοντα χρήστη:",
+ "description": "Έκδοση, εύρυθμη λειτουργία συστήματος και σύνδεσμοι για την τεκμηρίωση",
+ "developed_by": "Αναπτύχθηκε από ένα μάτσο απίθανων ανθρώπων.",
+ "documentation": "Τεκμηρίωση",
+ "frontend": "Τελική επιφάνεια εργασίας χρήστη",
+ "frontend_version": "Έκδοση Frontend: {version} - {type}",
+ "home_assistant_logo": "Λογότυπο του Home Assistant",
+ "icons_by": "Εικόνες από",
+ "integrations": "Ενσωματώσεις",
+ "issues": "Ζητήματα",
+ "license": "Δημοσιεύτηκε κάτω από την άδεια χρήσης Apache 2.0",
+ "path_configuration": "Διαδρομή στo configuration.yaml: {path}",
+ "server": "Διακομιστής",
+ "setup_time": "Χρόνος εγκατάστασης",
+ "source": "Πηγή",
+ "system_health": {
+ "manage": "Διαχείριση",
+ "more_info": "Περισσότερες πληροφορίες"
+ },
+ "system_health_error": "Το στοιχείο Υγεία Συστήματος δεν έχει φορτωθεί. Προσθέστε 'system_health:' στη ρύθμιση παραμέτρων configuration.yaml"
+ },
+ "integrations": {
+ "add_integration": "Προσθήκη ενσωμάτωσης",
+ "attention": "Απαιτείται προσοχή",
+ "caption": "Ενσωματώσεις",
+ "config_entry": {
+ "area": "Στο {area}",
+ "check_the_logs": "Ελέγξτε τα αρχεία καταγραφής",
+ "configure": "Διαμόρφωση",
+ "delete": "Διαγραφή",
+ "delete_confirm": "Είστε σίγουρος ότι θέλετε να διαγράψετε την {title} ενοποίηση;",
+ "depends_on_cloud": "Εξαρτάται από το cloud",
+ "device_unavailable": "Η συσκευή δεν είναι διαθέσιμη",
+ "devices": "{count} {count, plural,\n one {συσκευή}\n other {συσκευές}\n}",
+ "disable": {
+ "disable_confirm": "Είστε βέβαιοι ότι θέλετε να απενεργοποιήσετε αυτήν την καταχώριση διαμόρφωσης; Οι συσκευές και οι οντότητές του θα απενεργοποιηθούν.",
+ "disabled": "Απενεργοποιημένο",
+ "disabled_by": {
+ "device": "συσκευή",
+ "integration": "ενσωμάτωση",
+ "user": "Χρήστης"
+ },
+ "disabled_cause": "Απενεργοποιήθηκε από {cause}."
+ },
+ "disable_error": "Η ενεργοποίηση ή απενεργοποίηση της ενσωμάτωσης απέτυχε",
+ "disable_restart_confirm": "Επανεκκινήστε το Home Assistant για να ολοκληρώσετε την απενεργοποίηση αυτής της ενσωμάτωσης",
+ "disabled_polling": "Η αυτόματη αναζήτηση ενημερωμένων δεδομένων απενεργοποιήθηκε",
+ "documentation": "Τεκμηρίωση",
+ "download_diagnostics": "Λήψη διαγνωστικών",
+ "enable_restart_confirm": "Επανεκκινήστε το Home Assistant για να ολοκληρώσετε την ενεργοποίηση αυτής της ενσωμάτωσης",
+ "entities": "{count} {count, plural,\n one {οντότητα}\n other {οντότητες}\n}",
+ "entity_unavailable": "Η οντότητα δεν είναι διαθέσιμη",
+ "firmware": "Υλικολογισμικό: {version}",
+ "hardware": "Υλικολογισμικό: {version}",
+ "hub": "Συνδεδεμένο μέσω",
+ "known_issues": "Γνωστά ζητήματα",
+ "manuf": "από {manufacturer}",
+ "no_area": "Καμία περιοχή",
+ "not_loaded": "Δεν έχει φορτωθεί",
+ "open_configuration_url": "Επισκεφθείτε τη συσκευή",
+ "provided_by_custom_integration": "Παρέχεται από μια προσαρμοσμένη ενσωμάτωση",
+ "reload": "Επαναφόρτωση",
+ "reload_confirm": "Η ενσωμάτωση επαναφορτώθηκε",
+ "reload_restart_confirm": "Κάντε επανεκκίνηση του Home Assistant για να ολοκληρώσετε τη φόρτωση αυτής της ενσωμάτωσης",
+ "rename": "Μετονομασία",
+ "restart_confirm": "Επανεκκινήστε το Home Assistant για να ολοκληρώσετε την κατάργηση αυτής της ενοποίησης",
+ "services": "{count} {count, plural,\n one {υπηρεσία}\n other {υπηρεσίες}\n}",
+ "state": {
+ "failed_unload": "Αποτυχία φόρτωσης",
+ "loaded": "Φορτώθηκε",
+ "migration_error": "Σφάλμα μετεγκατάστασης",
+ "not_loaded": "Δεν έχει φορτωθεί",
+ "setup_error": "Αποτυχία ρύθμισης",
+ "setup_retry": "Επανάληψη της ρύθμισης"
+ },
+ "system_options": "Επιλογές συστήματος",
+ "unknown_via_device": "Άγνωστη συσκευή",
+ "unnamed_entry": "Ανώνυμη καταχώριση",
+ "via": "Συνδεδεμένο μέσω"
+ },
+ "config_flow": {
+ "aborted": "Ματαιώθηκε",
+ "close": "Κλείστε",
+ "could_not_load": "Δεν ήταν δυνατή η φόρτωση της ροής ρύθμισης παραμέτρων",
+ "created_config": "Δημιουργήθηκε παραμετροποίηση για το {name}.",
+ "dismiss": "Παράβλεψη διαλόγου",
+ "error": "Σφάλμα",
+ "error_saving_area": "Σφάλμα κατά την αποθήκευση περιοχής: {error}",
+ "external_step": {
+ "description": "Αυτό το βήμα απαιτεί να επισκεφτείτε μια εξωτερική ιστοσελίδα για να ολοκληρωθεί.",
+ "open_site": "Άνοιγμα ιστότοπου"
+ },
+ "finish": "Τέλος",
+ "loading": {
+ "fallback_title": "η ενσωμάτωση",
+ "loading_flow": "Περιμένετε μέχρι να ρυθμιστεί η {integration}",
+ "loading_step": "Φόρτωση επόμενου βήματος για {integration}"
+ },
+ "next": "Επόμενο",
+ "not_all_required_fields": "Δε συμπληρώνονται όλα τα υποχρεωτικά πεδία.",
+ "not_loaded": "Η ενσωμάτωση δεν μπόρεσε να φορτωθεί, προσπαθήστε να επανεκκινήσετε το Home Assistant.",
+ "pick_flow_step": {
+ "new_flow": "Όχι, ρυθμίστε μια άλλη παρουσία του {integration}",
+ "title": "Ανακαλύψαμε αυτά, θέλετε να τα στήσουμε;"
+ },
+ "submit": "Υποβολή"
+ },
+ "configure": "Διαμόρφωση",
+ "configured": "Διαμορφώθηκε",
+ "confirm_new": "Θέλετε να ρυθμίσετε το {integration};",
+ "description": "Διαχείριση ενσωματώσεων με υπηρεσίες ή συσκευές",
+ "details": "Λεπτομέρειες ενσωμάτωσης",
+ "disable": {
+ "disabled_integrations": "{number} απενεργοποιημένο",
+ "show": "Εμφάνιση",
+ "show_disabled": "Εμφάνιση απενεργοποιημένων ενσωματώσεων"
+ },
+ "discovered": "Ανακαλύφθηκε",
+ "home_assistant_website": "Ιστότοπος του Home Assistant.",
+ "ignore": {
+ "confirm_delete_ignore": "Αυτό θα κάνει την ενσωμάτωση να εμφανιστεί ξανά στις ενσωματώσεις που ανακαλύφθηκαν όταν ανακαλυφθεί. Αυτό μπορεί να απαιτήσει επανεκκίνηση ή να πάρει κάποιο χρόνο.",
+ "confirm_delete_ignore_title": "Διακόψτε την παράβλεψη του {name};",
+ "confirm_ignore": "Είστε βέβαιοι ότι δεν θέλετε να ρυθμίσετε αυτήν την ενσωμάτωση; Μπορείτε να αναιρέσετε αυτό κάνοντας κλικ στην επιλογή \"Εμφάνιση αγνοημένων ενσωματώσεων\" στο μενού υπερχείλισης επάνω δεξιά.",
+ "confirm_ignore_title": "Παράβλεψη της ανακάλυψη του {name} ;",
+ "ignore": "Παράβλεψη",
+ "ignored": "Παραβλέφθηκε",
+ "show_ignored": "Απόκρυψη των ενσωματώσεων που παραβλέφθηκαν",
+ "stop_ignore": "Διακοπή την παράβλεψη"
+ },
+ "integration": "ενσωμάτωση",
+ "integration_not_found": "Η ενσωμάτωση δε βρέθηκε.",
+ "new": "Ρυθμίστε νέα ενοποίηση",
+ "no_integrations": "Φαίνεται ότι δεν έχετε ακόμη διαμορφώσει ενσωματώσεις. Κάντε κλικ στο παρακάτω κουμπί για να προσθέσετε την πρώτη σας ενσωμάτωση!",
+ "none": "Δεν υπάρχει διαμόρφωση ακόμα",
+ "none_found": "Δεν βρέθηκαν ενσωματώσεις",
+ "none_found_detail": "Προσαρμόστε τα κριτήρια αναζήτησης.",
+ "note_about_integrations": "Δεν υπάρχουν ενσωματώσεις που να ανταποκρίνονται στην αναζήτησή σας, η ενσωμάτωση που θέλετε να ρυθμίσετε ενδέχεται να μην είναι διαθέσιμη για ρύθμιση μέσω της διεπαφής χρήστη ακόμη.",
+ "note_about_website_reference": "Περισσότερα είναι διαθέσιμα στο",
+ "reconfigure": "Αναδιαμόρφωση",
+ "rename_dialog": "Επεξεργαστείτε το όνομα αυτής της καταχώρησης διαμόρφωσης",
+ "rename_input_label": "Όνομα καταχώρησης",
+ "search": "Αναζήτηση ενσωματώσεων"
+ },
+ "introduction": "Σε αυτήν την προβολή είναι δυνατό να διαμορφώσετε τα στοιχεία για εσάς και το Home Assistant. Δεν είναι ακόμη δυνατή η διαμόρφωση όλων από το περιβάλλον χρήστη, αλλά το επεξεργαζόμαστε.",
+ "logs": {
+ "caption": "Αρχεία καταγραφής",
+ "clear": "Καθαρισμός",
+ "copy": "Αντιγραφή καταχώρησης αρχείου καταγραφής",
+ "custom_integration": "προσαρμοσμένη ενσωμάτωση",
+ "description": "Δείτε τα αρχεία καταγραφής του Home Assistant",
+ "details": "Λεπτομέρειες καταγραφής ({level})",
+ "error_from_custom_integration": "Αυτό το σφάλμα προήλθε από μια προσαρμοσμένη ενσωμάτωση.",
+ "level": {
+ "critical": "CRITICAL",
+ "debug": "DEBUG",
+ "error": "ERROR",
+ "info": "INFO",
+ "warning": "WARNING"
+ },
+ "load_full_log": "Φόρτωση ολόκληρου του αρχείου καταγραφής του Home Assistant.",
+ "loading_log": "Φόρτωση αρχείου καταγραφής σφαλμάτων...",
+ "multiple_messages": "μήνυμα παρουσιάστηκε για πρώτη φορά στο {time} και εμφανίζεται {counter} φορές",
+ "no_errors": "Δεν έχουν αναφερθεί σφάλματα",
+ "no_issues": "Δεν υπάρχουν νέα θέματα!",
+ "refresh": "Ανανέωση"
+ },
+ "lovelace": {
+ "caption": "Πίνακες ελέγχου Lovelace",
+ "dashboards": {
+ "cant_edit_default": "Δεν είναι δυνατή η επεξεργασία του τυπικού πίνακα ελέγχου Lovelace, Overview, από τη διεπαφή χρήστη. Μπορείτε να το αποκρύψετε ορίζοντας έναν άλλο πίνακα ελέγχου ως προεπιλογή.",
+ "cant_edit_yaml": "Δεν είναι δυνατή η επεξεργασία πινάκων εργαλείων που ορίζονται στο YAML από το περιβάλλον εργασίας χρήστη. Αλλάξτε τα στο configuration.yaml.",
+ "caption": "Επισκόπηση",
+ "conf_mode": {
+ "storage": "Ελεγχόμενο από το UI",
+ "yaml": "Αρχείο YAML"
+ },
+ "confirm_delete": "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτόν τον πίνακα ελέγχου;",
+ "confirm_delete_text": "Ο πίνακας ελέγχου θα διαγραφεί οριστικά.",
+ "confirm_delete_title": "Διαγραφή {dashboard_title};",
+ "default_dashboard": "Αυτή είναι η προεπιλεγμένη επισκόπηση",
+ "detail": {
+ "create": "Δημιουργία",
+ "delete": "Διαγραφή",
+ "dismiss": "Κλείστε",
+ "edit_dashboard": "Επεξεργασία πίνακα εργαλείων",
+ "icon": "Εικονίδιο",
+ "new_dashboard": "Προσθήκη νέου πίνακα ελέγχου",
+ "remove_default": "Κατάργηση ως προεπιλογή σε αυτήν τη συσκευή",
+ "require_admin": "Μόνο διαχειριστής",
+ "set_default": "Ορισμός ως προεπιλογή σε αυτήν τη συσκευή",
+ "show_sidebar": "Εμφάνιση στην πλαϊνή γραμμή",
+ "title": "Τίτλος",
+ "title_required": "Απαιτείται τίτλος.",
+ "update": "Ενημέρωση",
+ "url": "URL",
+ "url_error_msg": "Η διεύθυνση URL πρέπει να περιέχει ένα - και δεν μπορεί να περιέχει κενά ή ειδικούς χαρακτήρες, εκτός από _ και -"
+ },
+ "picker": {
+ "add_dashboard": "Προσθήκη πίνακα εργαλείων",
+ "headers": {
+ "conf_mode": "Μέθοδος διαμόρφωσης",
+ "default": "Προεπιλογή",
+ "filename": "Όνομα αρχείου",
+ "require_admin": "Μόνο διαχειριστής",
+ "sidebar": "Εμφάνιση στην πλαϊνή γραμμή",
+ "title": "Τίτλος"
+ },
+ "open": "Άνοιγμα"
+ }
+ },
+ "description": "Δημιουργήστε προσαρμοσμένα σύνολα καρτών για να ελέγξετε το σπίτι σας",
+ "resources": {
+ "cant_edit_yaml": "Χρησιμοποιείτε το Lovelace σε λειτουργία YAML, επομένως δεν μπορείτε να διαχειριστείτε τους πόρους σας μέσω του περιβάλλοντος εργασίας χρήστη. Διαχειριστείτε τους στο configuration.yaml.",
+ "caption": "Πόροι",
+ "confirm_delete": "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτόν τον πόρο;",
+ "detail": {
+ "create": "Δημιουργία",
+ "delete": "Διαγραφή",
+ "dismiss": "Κλείσιμο",
+ "new_resource": "Προσθέστε νέο πόρο",
+ "type": "Τύπος πόρου",
+ "update": "Ενημέρωση",
+ "url": "URL",
+ "url_error_msg": "Η διεύθυνση URL είναι υποχρεωτικό πεδίο",
+ "warning_header": "Προσέξτε!",
+ "warning_text": "Η προσθήκη πόρων μπορεί να είναι επικίνδυνη, βεβαιωθείτε ότι γνωρίζετε την προέλευση των πόρων και ότι τους εμπιστεύεστε. Οι κακοί πόροι θα μπορούσαν να βλάψουν σοβαρά το σύστημά σας."
+ },
+ "picker": {
+ "add_resource": "Προσθήκη πόρου",
+ "headers": {
+ "type": "Τύπος",
+ "url": "URL"
+ },
+ "no_resources": "Δεν υπάρχουν πόροι"
+ },
+ "refresh_body": "Πρέπει να ανανεώσετε τη σελίδα για να ολοκληρώσετε την αφαίρεση. Ανανέωση τώρα;",
+ "refresh_header": "Θέλετε να ανανεώσετε;",
+ "types": {
+ "css": "Stylesheet",
+ "html": "HTML (καταργήθηκε)",
+ "js": "Αρχείο JavaScript (καταργήθηκε)",
+ "module": "Ενότητα JavaScript"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Ακούστε ένα θέμα",
+ "description_publish": "Δημοσίευση πακέτου",
+ "listening_to": "Ακούγοντας το",
+ "message_received": "Το μήνυμα {id} ελήφθη στο {topic} στις {time}:",
+ "payload": "Τιμή φορτίου (επιτρέπεται το πρότυπο)",
+ "publish": "Δημοσίευση",
+ "start_listening": "Ξεκινήστε να ακούτε",
+ "stop_listening": "Σταματήστε να ακούτε",
+ "subscribe_to": "Θέμα στο οποίο θα εγγραφείτε",
+ "title": "MQTT",
+ "topic": "θέμα"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Ελεγκτής",
+ "instance": "Οντότητα",
+ "network": "Δίκτυο",
+ "node_id": "Αναγνωριστικό κόμβου",
+ "ozw_instance": "Παρουσία OpenZWave",
+ "query_stage": "Στάδιο ερωτήματος",
+ "wakeup_instructions": "Οδηγίες αφύπνισης",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Ο κόμβος απέτυχε",
+ "stage": "Στάδιο",
+ "zwave_info": "Πληροφορίες Z-Wave"
+ },
+ "navigation": {
+ "network": "Δίκτυο",
+ "node": {
+ "config": "Διαμόρφωση",
+ "dashboard": "Πίνακας Επισκόπησης"
+ },
+ "nodes": "Κόμβοι",
+ "select_instance": "Επιλέξτε στιγμιότυπο "
+ },
+ "network": {
+ "header": "Διαχείριση δικτύου",
+ "introduction": "Διαχείριση λειτουργιών δικτύου.",
+ "node_count": "{count} κόμβοι"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "Όλοι οι κόμβοι έχουν ερωτηθεί.",
+ "driverallnodesqueriedsomedead": "Όλοι οι κόμβοι έχουν ερωτηθεί. Μερικοί κόμβοι βρέθηκαν να μην αποκρίνονται.",
+ "driverawakenodesqueries": "Όλοι οι ενεργοποιημένοι κόμβοι έχουν ερωτηθεί. ",
+ "driverfailed": "Αποτυχία σύνδεσης με τον ελεγκτή Z-Wave",
+ "driverready": "Προετοιμασία του ελεγκτή Z-Wave",
+ "driverremoved": "Το πρόγραμμα οδήγησης έχει αφαιρεθεί",
+ "driverreset": "Έγινε επαναφορά του προγράμματος οδήγησης",
+ "offline": "OZWDaemon εκτός σύνδεσης",
+ "ready": "Έτοιμος για σύνδεση",
+ "started": "Συνδεδεμένος με MQTT",
+ "starting": "Σύνδεση με MQTT",
+ "stopped": "Το OpenZWave σταμάτησε"
+ },
+ "offline": "Εκτός σύνδεσης",
+ "online": "Σε σύνδεση",
+ "starting": "Εκκίνηση",
+ "unknown": "Άγνωστο"
+ },
+ "node": {
+ "button": "Λεπτομέρειες κόμβου",
+ "not_found": "Ο κόμβος δεν βρέθηκε"
+ },
+ "node_config": {
+ "header": "Ρύθμιση παραμέτρων κόμβου",
+ "help_source": "Οι περιγραφές παραμέτρων ρύθμισης παραμέτρων και το κείμενο βοήθειας παρέχονται από το έργο OpenZWave.",
+ "introduction": "Διαχειριστείτε τις διαφορετικές παραμέτρους ρύθμισης παραμέτρων για έναν κόμβο Z-Wave.",
+ "wakeup_help": "Οι κόμβοι που τροφοδοτούνται με μπαταρία πρέπει να είναι ξύπνιοι για να αλλάξουν τη ρύθμιση παραμέτρων τους. Εάν ο κόμβος δεν είναι ξύπνιος, το OpenZWave θα προσπαθήσει να ενημερώσει τη ρύθμιση παραμέτρων του κόμβου την επόμενη φορά που θα ξυπνήσει, η οποία θα μπορούσε να είναι πολλές ώρες (ή ημέρες) αργότερα. Ακολουθήστε αυτά τα βήματα για να ενεργοποιήσετε τη συσκευή σας:"
+ },
+ "node_metadata": {
+ "product_manual": "Εγχειρίδιο προϊόντος"
+ },
+ "node_query_stages": {
+ "associations": "Ανανέωση ομάδων συσχέτισης και μελών",
+ "cacheload": "Φόρτωση πληροφοριών από το αρχείο προσωρινής αποθήκευσης OpenZWave. Οι κόμβοι μπαταρίας θα παραμείνουν σε αυτό το στάδιο έως ότου ξυπνήσει ο κόμβος.",
+ "complete": "Η διαδικασία της συνέντευξης ολοκληρώθηκε",
+ "configuration": "Λήψη τιμών διαμόρφωσης από τον κόμβο",
+ "dynamic": "Λήψη τιμών που αλλάζουν συχνά από τον κόμβο",
+ "instances": "Λήψη λεπτομερειών σχετικά με τις παρουσίες ή τα κανάλια που υποστηρίζει μια συσκευή",
+ "manufacturerspecific1": "Απόκτηση κωδικών κατασκευαστή και αναγνωριστικού προϊόντος από τον κόμβο",
+ "manufacturerspecific2": "Λήψη πρόσθετων κωδικών αναγνωριστικού κατασκευαστή και προϊόντος από τον κόμβο",
+ "neighbors": "Απόκτηση λίστας των γειτονικών κόμβων",
+ "nodeinfo": "Λήψη υποστηριζόμενων κλάσεων εντολών από τον κόμβο",
+ "nodeplusinfo": "Λήψη πληροφοριών Z-Wave+ από τον κόμβο",
+ "probe": "Έλεγχος εάν ο κόμβος είναι ξύπνιος / ενεργός",
+ "protocolinfo": "Απόκτηση βασικών δυνατοτήτων Z-Wave αυτού του κόμβου από τον ελεγκτή",
+ "session": "Λήψη σπάνια μεταβαλλόμενων τιμών από τον κόμβο",
+ "static": "Λήψη στατικών τιμών από τη συσκευή",
+ "versions": "Λήψη πληροφοριών σχετικά με εκδόσεις υλικολογισμικού και κλάσης εντολών",
+ "wakeup": "Ρύθμιση υποστήριξης για ουρές αφύπνισης και μηνύματα"
+ },
+ "nodes_table": {
+ "failed": "Απέτυχε",
+ "id": "Αναγνωριστικό",
+ "manufacturer": "Κατασκευαστής",
+ "model": "Μοντέλο",
+ "query_stage": "Στάδιο ερωτήματος",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Εάν ο κόμβος τροφοδοτείται με μπαταρία, φροντίστε να τον ενεργοποιήσετε πριν συνεχίσετε",
+ "button": "Ανανέωση κόμβου",
+ "complete": "Ολοκληρώθηκε η ανανέωση κόμβου",
+ "description": "Αυτό θα πει στο OpenZWave να πάρει εκ νέου συνέντευξη από έναν κόμβο και να ενημερώσει τις εντολές, τις δυνατότητες και τις τιμές του κόμβου.",
+ "node_status": "Κατάσταση Κόμβου",
+ "refreshing_description": "Ανανέωση δεδομένων κόμβου σε εξέλιξη…",
+ "start_refresh_button": "Έναρξη ανανέωσης",
+ "step": "Βήμα",
+ "title": "Ανανέωση πληροφοριών κόμβου",
+ "wakeup_header": "Οδηγίες αφύπνισης για",
+ "wakeup_instructions_source": "Οι οδηγίες αφύπνισης προέρχονται από τη βάση δεδομένων συσκευών της κοινότητας OpenZWave."
+ },
+ "select_instance": {
+ "header": "Επιλέξτε ένα στιγμιότυπο OpenZWave",
+ "introduction": "Έχετε περισσότερα από ένα στιγμιότυπα OpenZWave σε ενέργεια. Ποιό στιγμιότυπο θέλετε να διαχειριστείτε;",
+ "none_found": "Δεν ήταν δυνατή η εύρεση μιας παρουσίας OpenZWave. Εάν πιστεύετε ότι αυτό είναι λανθασμένο, ελέγξτε τις ρυθμίσεις OpenZWave και MQTT και βεβαιωθείτε ότι το Home Assistant μπορεί να επικοινωνήσει με τον MQTT broker."
+ },
+ "services": {
+ "add_node": "Προσθήκη κόμβου",
+ "cancel_command": "Ακύρωση εντολής",
+ "remove_node": "Κατάργηση κόμβου"
+ }
+ },
+ "person": {
+ "add_person": "Προσθέστε Άτομο",
+ "caption": "Άτομα",
+ "confirm_delete": "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το άτομο;",
+ "confirm_delete2": "Όλες οι συσκευές που ανήκουν σε αυτό το άτομο θα καταστούν μη εκχωρημένες.",
+ "create_person": "Δημιουργία ατόμου",
+ "description": "Διαχειριστείτε τα άτομα που παρακολουθεί το Home Assistant",
+ "detail": {
+ "admin": "Διαχειριστής",
+ "allow_login": "Να επιτρέπεται στο άτομο η σύνδεση",
+ "confirm_delete_user": "Είστε βέβαιοι ότι θέλετε να διαγράψετε το λογαριασμό χρήστη για το {name}; Μπορείτε ακόμα να παρακολουθείτε το χρήστη, αλλά το άτομο δεν θα μπορεί πλέον να συνδεθεί.",
+ "create": "Δημιουργία",
+ "delete": "Διαγραφή",
+ "device_tracker_intro": "Επιλέξτε τις συσκευές που ανήκουν σε αυτό το άτομο.",
+ "device_tracker_pick": "Επιλέξτε συσκευή για παρακολούθηση",
+ "device_tracker_picked": "Παρακολούθηση συσκευής",
+ "link_integrations_page": "Σελίδα ενσωματώσεων",
+ "link_presence_detection_integrations": "Ενσωματώσεις ανίχνευσης παρουσίας",
+ "linked_user": "Συνδεδεμένος χρήστης",
+ "local_only": "Μπορεί να συνδεθεί μόνο από το τοπικό δίκτυο",
+ "name": "Όνομα",
+ "name_error_msg": "Απαιτείται όνομα",
+ "new_person": "Νέο άτομο",
+ "no_device_tracker_available_intro": "Όταν έχετε συσκευές που υποδεικνύουν την παρουσία ενός ατόμου, θα μπορείτε να τις αντιστοιχίσετε σε ένα άτομο εδώ. Μπορείτε να προσθέσετε την πρώτη σας συσκευή προσθέτοντας ενσωμάτωση εντοπισμού παρουσίας από τη σελίδα ενσωματώσεων.",
+ "update": "Ενημέρωση"
+ },
+ "introduction": "Εδώ μπορείτε να ορίσετε κάθε άτομο που σας ενδιαφέρει στο Home Assistant.",
+ "learn_more": "Μάθετε περισσότερα για τα άτομα",
+ "no_persons_created_yet": "Φαίνεται ότι δεν έχετε δημιουργήσει ακόμα κανένα άτομο.",
+ "note_about_persons_configured_in_yaml": "Σημείωση: τα άτομα που έχουν ρυθμιστεί από το αρχείο configuration.yaml δεν μπορούν να παραμετροποιηθούν από το UI.",
+ "person_not_found": "Δεν ήταν δυνατή η εύρεση του ατόμου που προσπαθούσατε να επεξεργαστείτε.",
+ "person_not_found_title": "Το άτομο δεν βρέθηκε"
+ },
+ "scene": {
+ "activated": "Ενεργοποιημένη σκηνή {name}.",
+ "caption": "Σκηνές",
+ "description": "Καταγραφή καταστάσεων συσκευής και εύκολη ανάκλησή τους αργότερα",
+ "editor": {
+ "area": "Περιοχή",
+ "default_name": "Νέα σκηνή",
+ "devices": {
+ "add": "Προσθέστε μια συσκευή",
+ "delete": "Διαγραφή συσκευής",
+ "header": "Συσκευές",
+ "introduction": "Προσθέστε τις συσκευές που θέλετε να συμπεριληφθούν στη σκηνή σας. Ορίστε όλες τις συσκευές στην κατάσταση που θέλετε για αυτήν τη σκηνή."
+ },
+ "entities": {
+ "add": "Προσθέστε μια οντότητα",
+ "delete": "Διαγραφή οντότητας",
+ "device_entities": "Εάν προσθέσετε μια οντότητα που ανήκει σε μια συσκευή, η συσκευή θα προστεθεί.",
+ "header": "Οντότητες",
+ "introduction": "Εδώ μπορείτε να ορίσετε οντότητες που δεν ανήκουν σε κάποια συσκευή.",
+ "without_device": "Οντότητες χωρίς συσκευές"
+ },
+ "icon": "Εικονίδιο",
+ "introduction": "Χρησιμοποιήστε σκηνές για να ζωντανέψετε το σπίτι σας.",
+ "load_error_not_editable": "Μόνο σκηνές στο scenes.yaml είναι επεξεργάσιμες.",
+ "load_error_unknown": "Σφάλμα κατά τη φόρτωση της σκηνής ({err_no}).",
+ "name": "Όνομα",
+ "save": "Αποθήκευση",
+ "unsaved_confirm": "Δεν αποθηκεύσατε τις αλλαγές. Είστε βέβαιοι ότι θέλετε να φύγετε;"
+ },
+ "picker": {
+ "add_scene": "Προσθήκη σκηνής",
+ "delete_confirm": "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτή τη σκηνή;",
+ "delete_scene": "Διαγραφή σκηνής",
+ "duplicate": "Διπλότυπο",
+ "duplicate_scene": "Διπλότυπη σκηνή",
+ "edit_scene": "Επεξεργασία σκηνής",
+ "header": "Επεξεργαστής σκηνής",
+ "headers": {
+ "name": "Ονομασία"
+ },
+ "introduction": "Ο επεξεργαστής σκηνών σας επιτρέπει να δημιουργείτε και να επεξεργάζεστε σκηνές. Παρακαλώ ακολουθήστε τον παρακάτω σύνδεσμο για να διαβάσετε τις οδηγίες για να βεβαιωθείτε ότι έχετε διαμορφώσει σωστά το Home Assistant.",
+ "learn_more": "Μάθετε περισσότερα σχετικά με τις σκηνές",
+ "no_scenes": "Δεν μπορέσαμε να βρούμε σκηνές",
+ "only_editable": "Μόνο οι σκηνές που ορίζονται στο scenes.yaml είναι επεξεργάσιμες.",
+ "pick_scene": "Επιλέξτε σκηνή για επεξεργασία",
+ "show_info_scene": "Εμφάνιση πληροφοριών σχετικά με τη σκηνή"
+ }
+ },
+ "script": {
+ "caption": "Σενάρια",
+ "description": "Εκτελέστε μια ακολουθία ενεργειών",
+ "editor": {
+ "alias": "Όνομα",
+ "default_name": "Νέο σενάριο",
+ "delete_confirm": "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το σενάριο;",
+ "delete_script": "Διαγραφή σεναρίου",
+ "header": "Σενάριο: {name}",
+ "icon": "Εικονίδιο",
+ "id": "Αναγνωριστικό οντότητας",
+ "id_already_exists": "Αυτό το αναγνωριστικό υπάρχει ήδη",
+ "id_already_exists_save_error": "Δεν μπορείτε να αποθηκεύσετε αυτό το script επειδή το αναγνωριστικό δεν είναι μοναδικό, επιλέξτε άλλο αναγνωριστικό ή αφήστε το κενό για αυτόματη δημιουργία ενός.",
+ "introduction": "Χρησιμοποιήστε δέσμες ενεργειών για να εκτελέσετε μια ακολουθία ενεργειών.",
+ "link_available_actions": "Μάθετε περισσότερα σχετικά με τις διαθέσιμες ενέργειες.",
+ "load_error_not_editable": "Μόνο οι δέσμες ενεργειών που βρίσκονται μέσα στο scripts.yaml είναι επεξεργάσιμες",
+ "max": {
+ "parallel": "Μέγιστος αριθμός παράλληλων διαδρομών",
+ "queued": "Μήκος ουράς"
+ },
+ "modes": {
+ "description": "Η λειτουργία ελέγχει τι συμβαίνει όταν γίνεται κλήση σεναρίου, ενώ εξακολουθεί να εκτελείται από μία ή περισσότερες προηγούμενες προσκλήσεις. Ελέγξτε το {documentation_link} για περισσότερες πληροφορίες.",
+ "documentation": "τεκμηρίωση σεναρίου",
+ "label": "Λειτουργία",
+ "parallel": "Παράλληλα",
+ "queued": "Στην ουρά",
+ "restart": "Επανεκκίνηση",
+ "single": "Μονό (προεπιλογή)"
+ },
+ "save_script": "Αποθήκευση σεναρίου",
+ "sequence": "Ακολουθία",
+ "sequence_sentence": "Η ακολουθία των ενεργειών αυτού του σεναρίου.",
+ "show_trace": "Εμφάνιση ίχνους"
+ },
+ "picker": {
+ "add_script": "Δημιουργήστε νέο script",
+ "dev_script": "Σενάριο εντοπισμού σφαλμάτων",
+ "duplicate": "Κλονοποίηση",
+ "duplicate_script": "Κλονοποίηση Script",
+ "edit_script": "Επεξεργασία σεναρίου",
+ "header": "Πρόγραμμα επεξεργασίας σεναρίων",
+ "headers": {
+ "name": "Ονομασία"
+ },
+ "introduction": "Ο επεξεργαστής σεναρίου σας επιτρέπει να δημιουργείτε και να επεξεργάζεστε σκηνές. Παρακαλώ ακολουθήστε τον παρακάτω σύνδεσμο για να διαβάσετε τις οδηγίες για να βεβαιωθείτε ότι έχετε διαμορφώσει σωστά το Home Assistant.",
+ "learn_more": "Μάθετε περισσότερα σχετικά με τα σενάρια",
+ "no_scripts": "Δεν μπορέσαμε να βρούμε κανένα σενάριο",
+ "run_script": "Εκτέλεση σεναρίου",
+ "show_info": "Εμφάνιση πληροφοριών σχετικά με το σενάριο"
+ }
+ },
+ "server_control": {
+ "caption": "Έλεγχος διακομιστή",
+ "description": "Επικυρώστε και επανεκκινήστε τον διακομιστή του Home Assistant",
+ "section": {
+ "reloading": {
+ "automation": "Αυτοματισμοί",
+ "command_line": "Οντότητες γραμμής εντολών",
+ "core": "Τοποθεσία & προσαρμογές",
+ "filesize": "Οντότητες μεγέθους αρχείου",
+ "filter": "Φιλτράρισμα οντοτήτων",
+ "generic": "Γενικές οντότητες κάμερας IP",
+ "generic_thermostat": "Γενικές οντότητες θερμοστάτη",
+ "group": "Ομάδες, οντότητες ομάδας και υπηρεσίες κοινοποίησης",
+ "heading": "Επαναφόρτωση παραμετροποίησης YAML",
+ "history_stats": "Ιστορικό οντοτήτων στατιστικών",
+ "homekit": "HomeKit",
+ "input_boolean": "Δυαδικά στοιχεία εισόδου",
+ "input_button": "Κουμπιά εισαγωγής",
+ "input_datetime": "Ώρες ημερομηνίας εισαγωγής",
+ "input_number": "Αριθμοί εισαγωγής",
+ "input_select": "Επιλογή εισόδου",
+ "input_text": "Κείμενα εισαγωγής",
+ "introduction": "Ορισμένα τμήματα του Home Assistant μπορούν να επαναφορτωθούν χωρίς να απαιτείται επανεκκίνηση. Κάνοντας κλικ σε μία από τις παρακάτω επιλογές θα αποφορτιστεί η τρέχουσα διαμόρφωση YAML και θα φορτωθεί η νέα.",
+ "min_max": "Ελάχιστες / μέγιστες οντότητες",
+ "mqtt": "Χειροκίνητη διαμόρφωση οντοτήτων MQTT",
+ "person": "Άνθρωποι",
+ "ping": "Οντότητες δυαδικών αισθητήρων ping",
+ "reload": "{domain}",
+ "rest": "Υπόλοιπές οντότητες και ειδοποίηση υπηρεσιών",
+ "rpi_gpio": "Οντότητες Raspberry Pi GPIO",
+ "scene": "Σκηνές",
+ "script": "Σενάρια",
+ "smtp": "Υπηρεσίες ειδοποίησης SMTP",
+ "statistics": "Στατιστικές οντότητες",
+ "telegram": "Υπηρεσίες ειδοποίησης Telegram",
+ "template": "Πρότυπα οντοτήτων",
+ "themes": "Θέματα",
+ "timer": "Χρονοδιακόπτες",
+ "trend": "Οντότητες τάσης",
+ "universal": "Καθολικές οντότητες αναπαραγωγής πολυμέσων",
+ "zone": "Ζώνες"
+ },
+ "server_management": {
+ "confirm_restart": "Είστε βέβαιος ότι θέλετε να επανεκκινήσετε το Home Assistant;",
+ "confirm_stop": "Είστε βέβαιος ότι θέλετε να σταματήσετε το Home Assistant;",
+ "heading": "Διαχείριση διακομιστή",
+ "introduction": "Ελέγξτε τον Home Assistant σου.",
+ "restart": "Επανεκκίνηση",
+ "stop": "Στοπ"
+ },
+ "validation": {
+ "check_config": "Έλεγχος παραμετροποίησης",
+ "heading": "Επαλήθευση ρυθμίσεων",
+ "introduction": "Επικυρώστε τη διαμόρφωσή σας εάν κάνατε πρόσφατα κάποιες αλλαγές στη διαμόρφωσή σας και θέλετε να βεβαιωθείτε ότι είναι όλες έγκυρες.",
+ "invalid": "Μη έγκυρη ρύθμιση",
+ "valid": "Έγκυρη ρύθμιση"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Προσθήκη ετικέτας",
+ "automation_title": "Η ετικέτα {name} σαρώθηκε",
+ "caption": "Ετικέτες",
+ "confirm_remove": "Είστε βέβαιοι ότι θέλετε να καταργήσετε την ετικέτα {tag} ;",
+ "confirm_remove_title": "Κατάργηση ετικέτας;",
+ "create_automation": "Δημιουργία αυτοματοποίησης με ετικέτα",
+ "description": "Ενεργοποιήση αυτοματισμών όταν σαρώνεται μια ετικέτα NFC, ένας κωδικός QR, κ.τ.λ.",
+ "detail": {
+ "companion_apps": "συνοδευτικές εφαρμογές",
+ "create": "Δημιουργία",
+ "create_and_write": "Δημιουργία και εγγραφή",
+ "delete": "Διαγραφή",
+ "description": "Περιγραφή",
+ "name": "Όνομα",
+ "new_tag": "Νέα ετικέτα",
+ "tag_id": "Αναγνωριστικό ετικέτας",
+ "tag_id_placeholder": "Αυτόματη δημιουργία όταν αφεθεί κενό",
+ "update": "Ενημέρωση",
+ "usage": "Μια ετικέτα μπορεί να προκαλέσει έναν αυτοματισμό όταν σαρωθεί, μπορείτε να χρησιμοποιήσετε ετικέτες NFC, κωδικούς QR ή οποιοδήποτε άλλο είδος ετικέτας. Χρησιμοποιήστε το {companion_link} για να γράψετε αυτήν την ετικέτα σε μια προγραμματιζόμενη ετικέτα NFC ή να δημιουργήσετε έναν κωδικό QR παρακάτω."
+ },
+ "edit": "Επεξεργασία",
+ "headers": {
+ "last_scanned": "Τελευταία σάρωση",
+ "name": "Όνομα"
+ },
+ "learn_more": "Μάθετε περισσότερα σχετικά με τις ετικέτες",
+ "never_scanned": "Δεν έγινε ποτέ σάρωση",
+ "no_tags": "Καμία ετικέτα",
+ "write": "Εγγραφή"
+ },
+ "updates": {
+ "check_unavailable": {
+ "description": "Πρέπει να εκτελέσετε το λειτουργικό σύστημα Home Assistant για να μπορείτε να ελέγξετε και να εγκαταστήσετε ενημερώσεις από τη διεπαφή χρήστη του Home Assistant.",
+ "title": "Αδυναμία ελέγχου για ενημερώσεις"
+ },
+ "check_updates": "Έλεγχος για ενημερώσεις",
+ "more_updates": "+ {count} Ενημερώσεις",
+ "review": "αναθεώρηση",
+ "show": "Εμφάνιση",
+ "show_all_updates": "Εμφάνιση όλων των ενημερώσεων",
+ "title": "{count} {count, plural,\n one {ενημέρωση}\n other {ενημερώσεις}\n}",
+ "unable_to_fetch": "Δεν είναι δυνατή η ανάκτηση των ενημερώσεων",
+ "version_available": "Η έκδοση {version_available} είναι διαθέσιμη"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Προσθήκη χρήστη",
+ "create": "Δημιουργία",
+ "local_only": "Μόνο τοπικά",
+ "password": "Κωδικός",
+ "password_confirm": "Επιβεβαίωση Κωδικού",
+ "password_not_match": "Οι κωδικοί πρόσβασης δεν ταιριάζουν"
+ },
+ "caption": "Χρήστες",
+ "description": "Διαχειριστείτε τους λογαριασμούς χρηστών του Home Assistant",
+ "editor": {
+ "activate_user": "Ενεργοποίηση χρήστη",
+ "active": "Ενεργό",
+ "active_tooltip": "Ελέγχει εάν ο χρήστης μπορεί να συνδεθεί",
+ "admin": "Διαχειριστής",
+ "caption": "Προβολή χρήστη",
+ "change_password": "Αλλαγή Κωδικού",
+ "confirm_user_deletion": "Είστε σίγουροι ότι θέλετε να διαγράψετε το χρήστη {name};",
+ "deactivate_user": "Απενεργοποίηση χρήστη",
+ "delete_user": "Διαγραφή χρήστη",
+ "group": "Ομάδα",
+ "id": "Αναγνωριστικό",
+ "local_only": "Μπορεί να συνδεθεί μόνο από το τοπικό δίκτυο",
+ "name": "Εμφανιζόμενο όνομα",
+ "new_password": "Νέος κωδικός",
+ "owner": "Ιδιοκτήτης",
+ "password_changed": "Ο κωδικός άλλαξε επιτυχώς",
+ "system_generated": "Δημιουργήθηκε από το σύστημα",
+ "system_generated_users_not_editable": "Δεν είναι δυνατή η ενημέρωση των χρηστών που δημιουργούνται από το σύστημα.",
+ "system_generated_users_not_removable": "Δεν είναι δυνατή η διαγραφή χρηστών που δημιουργήθηκαν από το σύστημα",
+ "unnamed_user": "Χρήστης χωρίς όνομα",
+ "update_user": "Ενημέρωση",
+ "username": "Όνομα χρήστη"
+ },
+ "is_local": "Τοπικός χρήστης",
+ "is_not_active": "Απενεργοποιημένος",
+ "is_owner": "Ιδιοκτήτης",
+ "is_system": "Χρήστης συστήματος",
+ "picker": {
+ "add_user": "Προσθήκη χρήστη",
+ "headers": {
+ "group": "Ομάδα",
+ "is_active": "Ενεργό",
+ "is_owner": "Ιδιοκτήτης",
+ "local": "Μόνο τοπικά",
+ "name": "Εμφανιζόμενο όνομα",
+ "system": "Σύστημα που δημιουργήθηκε",
+ "username": "Όνομα χρήστη"
+ }
+ },
+ "users_privileges_note": "Η ομάδα χρηστών είναι ένα έργο σε εξέλιξη. Ο χρήστης δεν θα μπορεί να διαχειριστεί την παρουσία μέσω της διεπαφής χρήστη. Εξακολουθούμε να ελέγχουμε όλα τα τελικά σημεία API διαχείρισης για να διασφαλίσουμε ότι περιορίζουν σωστά την πρόσβαση στους διαχειριστές."
+ },
+ "zha": {
+ "add_device": "Προσθήκη συσκευής",
+ "add_device_page": {
+ "discovered_text": "Οι συσκευές θα εμφανιστούν εδώ μόλις ανακαλυφθούν.",
+ "no_devices_found": "Δεν βρέθηκαν συσκευές, βεβαιωθείτε ότι βρίσκονται σε λειτουργία σύζευξης και κρατήστε τις ξύπνιες ενώ η αναζήτηση εκτελείται.",
+ "pairing_mode": "Βεβαιωθείτε ότι οι συσκευές σας είναι σε λειτουργία σύζευξης. Ελέγξτε τις οδηγίες της συσκευής σας για το πώς να το κάνετε αυτό.",
+ "search_again": "Αναζήτηση ξανά",
+ "spinner": "Αναζήτηση συσκευών ZHA Zigbee…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Χαρακτηριστικά της επιλεγμένης συστοιχίας",
+ "get_zigbee_attribute": "Λήψη χαρακτηριστικού Zigbee",
+ "header": "Χαρακτηριστικά συστοιχίας",
+ "help_attribute_dropdown": "Επιλέξτε ένα χαρακτηριστικό για να προβάλετε ή να ορίσετε την τιμή του.",
+ "help_get_zigbee_attribute": "Δείτε την τιμή για το επιλεγμένο χαρακτηριστικό.",
+ "help_set_zigbee_attribute": "Ορισμός τιμής χαρακτηριστικού για την καθορισμένη συστοιχία στην καθορισμένη οντότητα.",
+ "introduction": "Προβολή και επεξεργασία χαρακτηριστικών συστοιχίας.",
+ "set_zigbee_attribute": "Ορισμός χαρακτηριστικού Zigbee"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Εντολές της επιλεγμένης συστοιχίας",
+ "header": "Εντολές συστοιχίας",
+ "help_command_dropdown": "Επιλέξτε μια εντολή για αλληλεπίδραση με.",
+ "introduction": "Προβολή και έκδοση εντολών συστοιχίας.",
+ "issue_zigbee_command": "Έκδοση εντολής Zigbee"
+ },
+ "clusters": {
+ "header": "Συστοιχίες",
+ "help_cluster_dropdown": "Επιλέξτε μια συστοιχία για να προβάλετε τα χαρακτηριστικά και τις εντολές.",
+ "introduction": "Οι συστάδες είναι τα δομικά στοιχεία για τη λειτουργικότητα του Zigbee. Διαχωρίζουν τη λειτουργικότητα σε λογικές ενότητες. Υπάρχουν τύποι πελατών και διακομιστών και που αποτελούνται από χαρακτηριστικά και εντολές."
+ },
+ "common": {
+ "clusters": "Συστοιχίες",
+ "manufacturer_code_override": "Παράκαμψη κωδικού κατασκευαστή",
+ "value": "Τιμή"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Συντομεύσεις",
+ "update_button": "Ενημέρωση διαμόρφωσης"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Η διαμόρφωση ολοκληρώθηκε",
+ "CONFIGURED_status_text": "Αρχικοποίηση",
+ "INITIALIZED": "Η προετοιμασία ολοκληρώθηκε",
+ "INITIALIZED_status_text": "Η συσκευή είναι έτοιμη για χρήση",
+ "INTERVIEW_COMPLETE": "Η συνέντευξη ολοκληρώθηκε",
+ "INTERVIEW_COMPLETE_status_text": "Διαμόρφωση",
+ "PAIRED": "Βρέθηκε συσκευή",
+ "PAIRED_status_text": "Έναρξη συνέντευξης"
+ },
+ "group_binding": {
+ "bind_button_help": "Συνδέστε την επιλεγμένη ομάδα με τις επιλεγμένες ομάδες συσκευών.",
+ "bind_button_label": "Σύνδεση ομάδας",
+ "cluster_selection_help": "Επιλέξτε συστάδες για σύνδεση με την επιλεγμένη ομάδα.",
+ "group_picker_help": "Επιλέξτε μια ομάδα για να εκδώσετε μια εντολή σύνδεσης.",
+ "group_picker_label": "Ομάδες με δυνατότητα σύνδεσης",
+ "header": "Σύνδεση ομάδας",
+ "introduction": "Σύνδεση και αποσύνδεση ομάδων.",
+ "unbind_button_help": "Αποσυνδέστε την επιλεγμένη ομάδα από τα επιλεγμένα συμπλέγματα συσκευών.",
+ "unbind_button_label": "Αποσύνδεση ομάδας"
+ },
+ "groups": {
+ "add_group": "Προσθήκη ομάδας",
+ "add_members": "Προσθήκη Μελών",
+ "caption": "Ομάδες",
+ "create": "Δημιουργία ομάδας",
+ "create_group": "Zigbee Home Automation - Δημιουργία ομάδας",
+ "create_group_details": "Καταχωρείστε τις απαραίτητες πληροφορίες για να δημιουργήσετε μια νέα ομάδα Zigbee",
+ "creating_group": "Δημιουργία ομάδας",
+ "delete": "Διαγραφή Ομάδας",
+ "group_details": "Εδώ βρίσκονται όλες οι πληροφορίες για την επιλεγμένη ομάδα",
+ "group_id": "Αναγνωριστικό ομάδας",
+ "group_info": "Πληροφορίες ομάδας",
+ "group_name_placeholder": "Όνομα ομάδας",
+ "group_not_found": "Η ομάδα δεν βρέθηκε!",
+ "groups": "Ομάδες",
+ "members": "Μέλη",
+ "remove_members": "Αφαίρεση Μελών",
+ "removing_members": "Αφαίρεση Μελών"
+ },
+ "network": {
+ "caption": "Δίκτυο"
+ },
+ "visualization": {
+ "auto_zoom": "Αυτόματο ζουμ",
+ "caption": "Απεικόνιση",
+ "enable_physics": "Ενεργοποίηση Φυσικής",
+ "header": "Απεικόνιση δικτύου",
+ "highlight_label": "Επισήμανση συσκευών",
+ "refresh_topology": "Ανανέωση τοπολογίας",
+ "zoom_label": "Ζουμ στη συσκευή"
+ }
+ },
+ "zone": {
+ "add_zone": "Προσθήκη ζώνης",
+ "caption": "Ζώνες",
+ "configured_in_yaml": "Δεν είναι δυνατή η επεξεργασία των ζωνών που έχουν ρυθμιστεί μέσω του configuration.yaml μέσω του περιβάλλοντος εργασίας χρήστη.",
+ "confirm_delete": "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτήν τη ζώνη;",
+ "create_zone": "Δημιουργία ζώνης",
+ "description": "Διαχειριστείτε τις ζώνες στις οποίες θέλετε να παρακολουθείτε άτομα",
+ "detail": {
+ "create": "Δημιουργία",
+ "delete": "Διαγραφή",
+ "icon": "Εικονίδιο",
+ "icon_error_msg": "Το εικονίδιο πρέπει να είναι στη μορφή \"πρόθεμα:όνομα_εικόνας\", για παράδειγμα: \"mdi:home\"",
+ "latitude": "Γεωγραφικό πλάτος",
+ "longitude": "Γεωγραφικό μήκος",
+ "name": "Όνομα",
+ "new_zone": "Νέα ζώνη",
+ "passive": "Παθητικό",
+ "passive_note": "Οι παθητικές ζώνες είναι κρυμμένες στο μπροστινό μέρος και δεν χρησιμοποιούνται ως θέση για ιχνηλάτες συσκευών. Αυτό είναι χρήσιμο εάν θέλετε ακριβώς να το χρησιμοποιήσετε για τους αυτοματισμούς.",
+ "radius": "Ακτίνα",
+ "required_error_msg": "Αυτό το πεδίο είναι υποχρεωτικό",
+ "update": "Ενημέρωση"
+ },
+ "edit_home_zone": "Δεν είναι δυνατή η επεξεργασία της ακτίνας της ζώνης Home από το Frontend. Σύρετε το δείκτη στο χάρτη για να μετακινήσετε τη ζώνη της αρχικής σελίδας.",
+ "edit_home_zone_narrow": "Δεν είναι δυνατή η επεξεργασία της ακτίνας της ζώνης Σπίτι από το frontend. Η τοποθεσία μπορεί να αλλάξει από τη γενική διαμόρφωση.",
+ "edit_zone": "Επεξεργασία Ζώνης",
+ "go_to_core_config": "Μετάβαση στη γενική ρύθμιση παραμέτρων;",
+ "home_zone_core_config": "Η τοποθεσία της ζώνης κατοικίας σας είναι επεξεργάσιμη από τη σελίδα γενικής διαμόρφωσης. Δεν είναι δυνατή η επεξεργασία της ακτίνας της ζώνης Σπίτι από το frontend. Θέλετε να μεταβείτε στη γενική διαμόρφωση;",
+ "introduction": "Οι ζώνες σας επιτρέπουν να καθορίσετε ορισμένες περιοχές στη γη. Όταν ένα άτομο βρίσκεται μέσα σε μια ζώνη, η κατάσταση θα οριστεί από τη ζώνη. Οι ζώνες μπορούν επίσης να χρησιμοποιηθούν ως έναυσμα ή συνθήκη μέσα στις ρυθμίσεις αυτοματισμού.",
+ "no_zones_created_yet": "Φαίνεται ότι δεν έχετε δημιουργήσει ζώνες ακόμα."
+ },
+ "zwave": {
+ "common": {
+ "index": "Δείκτης",
+ "instance": "Περίπτωση",
+ "unknown": "Άγνωστο",
+ "value": "Τιμή",
+ "wakeup_interval": "Διάστημα μεταξύ αφυπνίσεων"
+ },
+ "description": "Διαχειριστείτε το δίκτυο Z-Wave",
+ "learn_more": "Μάθετε περισσότερα σχετικά με το Z-wave",
+ "migration": {
+ "ozw": {
+ "header": "Μετεγκατάσταση στο OpenZWave",
+ "introduction": "Αυτός ο οδηγός θα σας βοηθήσει να κάνετε μετεγκατάσταση από την παλαιά ενσωμάτωση Z-Wave στην ενσωμάτωση OpenZWave που είναι αυτήν τη στιγμή σε έκδοση beta."
+ },
+ "zwave_js": {
+ "header": "Μετάβαση σε Z-Wave JS",
+ "introduction": "Αυτή η ενσωμάτωση δεν συντηρείται πλέον και σας συμβουλεύουμε να μεταβείτε στη νέα ενσωμάτωση Z-Wave JS. Αυτός ο οδηγός θα σας βοηθήσει να μεταβείτε από την παλαιά ενσωμάτωση Z-Wave στη νέα ενσωμάτωση Z-Wave JS."
+ }
+ },
+ "network_management": {
+ "header": "Διαχείριση δικτύου Z-Wave",
+ "introduction": "Εκτελέστε εντολές που επηρεάζουν το δίκτυο Z-Wave. Δε θα λάβετε πληροφόρηση σχετικά με το εάν οι περισσότερες εντολές επιτύχουν, αλλά μπορείτε να ελέγξετε το αρχείο καταγραφής OZW για να προσπαθήσετε να το μάθετε."
+ },
+ "network_status": {
+ "network_started": "Το δίκτυο Z-Wave ξεκίνησε",
+ "network_started_note_all_queried": "Όλοι οι κόμβοι έχουν ερωτηθεί.",
+ "network_started_note_some_queried": "Οι ενεργοποιημένοι κόμβοι έχουν ερωτηθεί. Οι απενεργοποιημένοι κόμβοι θα ερωτηθούν όταν ενεργοποιηθούν.",
+ "network_starting": "Εκκίνηση δικτύου Z-Wave…",
+ "network_starting_note": "Αυτό μπορεί να διαρκέσει λίγο, ανάλογα με το μέγεθος του δικτύου σας.",
+ "network_stopped": "Το δίκτυο Z-Wave σταμάτησε"
+ },
+ "node_config": {
+ "config_parameter": "Παράμετρος διαμόρφωσης",
+ "config_value": "Τιμή διαμόρφωσης",
+ "false": "Ψευδής",
+ "header": "Επιλογές Παραμετροποίησης κόμβου",
+ "seconds": "Δευτερόλεπτα",
+ "set_config_parameter": "Ορίστε την παράμετρο διαμόρφωσης",
+ "set_wakeup": "Όρισε διάστημα μεταξύ Αφυπνίσεων",
+ "true": "Αληθής"
+ },
+ "node_management": {
+ "add_to_group": "Προσθήκη σε ομάδα",
+ "entities": "Οντότητες αυτού του κόμβου",
+ "entity_info": "Πληροφορίες οντότητας",
+ "exclude_entity": "Εξαίρεση αυτής της οντότητας από το Home Assistant",
+ "group": "Ομάδα",
+ "header": "Διαχείριση κόμβων Z-Wave",
+ "introduction": "Εκτελέστε εντολές Z-Wave που επηρεάζουν έναν μόνο κόμβο. Επιλέξτε έναν κόμβο για να δείτε μια λίστα με τις διαθέσιμες εντολές.",
+ "max_associations": "Μέγιστες ενώσεις:",
+ "node_group_associations": "Κόμβοι συσχετίσεων ομάδων",
+ "node_protection": "Προστασία κόμβου",
+ "node_to_control": "Κόμβος προς έλεγχο",
+ "nodes": "Κόμβοι",
+ "nodes_hint": "Επιλέξτε κόμβο για προβολή επιλογών ανά κόμβο",
+ "nodes_in_group": "Άλλοι κόμβοι σε αυτήν την ομάδα:",
+ "pooling_intensity": "Διάστημα λήψης",
+ "protection": "Προστασία",
+ "remove_broadcast": "Κατάργηση εκπομπής",
+ "remove_from_group": "Κατάργηση από ομάδα",
+ "set_protection": "Ορισμός προστασίας"
+ },
+ "ozw_log": {
+ "header": "Αρχείο καταγραφής OZW",
+ "introduction": "Δείτε το αρχείο καταγραφής. 0 είναι το ελάχιστο (φορτώνει ολόκληρο το αρχείο καταγραφής) και 1000 είναι το μέγιστο. Η φόρτωση θα εμφανίσει ένα στατικό αρχείο καταγραφής και η ουρά θα ενημερωθεί αυτόματα με τον τελευταίο καθορισμένο αριθμό γραμμών του αρχείου καταγραφής.",
+ "last_log_lines": "Αριθμός τελευταίων γραμμών καταγραφής",
+ "load": "Φόρτωση",
+ "tail": "Ουρά"
+ },
+ "services": {
+ "add_node": "Προσθήκη κόμβου",
+ "add_node_secure": "Ασφαλής προσθήκη κόμβου",
+ "cancel_command": "Ακύρωση εντολής",
+ "heal_network": "Θεραπεία δικτύου",
+ "heal_node": "Θεραπεία κόμβου",
+ "node_info": "Πληροφορίες κόμβου",
+ "print_node": "Εκτύπωση κόμβου",
+ "refresh_entity": "Ανανέωση οντότητας",
+ "refresh_node": "Ανανέωση κόμβου",
+ "remove_failed_node": "Κατάργηση αποτυχημένου κόμβου",
+ "remove_node": "Κατάργηση κόμβου",
+ "replace_failed_node": "Αντικατάσταση αποτυχημένου κόμβου",
+ "save_config": "Αποθήκευση Παραμετροποίησης",
+ "soft_reset": "Επαναφορά μέσω λογισμικού",
+ "start_network": "Έναρξη δικτύου",
+ "stop_network": "Διακοπή δικτύου",
+ "test_network": "Δοκιμή δικτύου",
+ "test_node": "Δοκιμή κόμβου"
+ },
+ "values": {
+ "header": "Τιμές κόμβου"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Ακύρωση συμπερίληψης",
+ "check_logs": "Ελέγξτε τα αρχεία καταγραφής για περισσότερες πληροφορίες.",
+ "choose_inclusion_strategy": "Πώς θέλετε να προσθέσετε τη συσκευή σας",
+ "controller_in_inclusion_mode": "Ο ελεγκτής Z-Wave βρίσκεται τώρα σε κατάσταση συμπερίληψης.",
+ "enter_qr_code": "Εισάγετε την τιμή του κωδικού QR",
+ "follow_device_instructions": "Ακολουθήστε τις οδηγίες που συνοδεύουν τη συσκευή σας για να ενεργοποιήσετε τη σύζευξη στη συσκευή.",
+ "inclusion_failed": "Δεν ήταν δυνατή η προσθήκη του κόμβου.",
+ "inclusion_finished": "Ο κόμβος έχει προστεθεί.",
+ "interview_failed": "Η συνέντευξη της συσκευής απέτυχε. Πρόσθετες πληροφορίες μπορεί να υπάρχουν στα αρχεία καταγραφής.",
+ "interview_started": "Η συσκευή ελέγχεται. Αυτό μπορεί να πάρει λίγο χρόνο.",
+ "introduction": "Αυτός ο οδηγός θα σας καθοδηγήσει στην προσθήκη ενός κόμβου στο δίκτυο Z-Wave.",
+ "provisioning_finished": "Η συσκευή έχει προστεθεί. Μόλις την ενεργοποιήσετε, θα γίνει διαθέσιμη.",
+ "qr_code": "Κωδικός QR",
+ "qr_code_paragraph": "Εάν η συσκευή σας υποστηρίζει το SmartStart, μπορείτε να σαρώσετε τον κωδικό QR για εύκολη αντιστοίχιση.",
+ "scan_qr_code": "Σάρωση κωδικού QR",
+ "searching_device": "Αναζήτηση συσκευής",
+ "secure_inclusion_warning": "Οι ασφαλείς συσκευές απαιτούν πρόσθετο εύρος ζώνης. Πάρα πολλές ασφαλείς συσκευές μπορούν να επιβραδύνουν το δίκτυο Z-Wave. Συνιστούμε να χρησιμοποιείτε μόνο ασφαλή συμπερίληψη για συσκευές που την απαιτούν, όπως κλειδαριές ή ανοιχτήρια πορτών γκαράζ.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Παράδειγμα: Κλειδαριές πόρτας παλαιού τύπου χωρίς υποστήριξη S2",
+ "title": "S0 Παλαιού Τύπου"
+ },
+ "S2_AccessControl": {
+ "description": "Παράδειγμα: Κλειδαριές πορτών και γκαραζόπορτες",
+ "title": "Έλεγχος πρόσβασης S2"
+ },
+ "S2_Authenticated": {
+ "description": "Παράδειγμα: Συστήματα φωτισμού, αισθητήρων και ασφάλειας",
+ "title": "S2 Αυθεντικοποιημένο"
+ },
+ "S2_Unauthenticated": {
+ "description": "Όπως το Αυθεντικοποιημένο S2, αλλά χωρίς επαλήθευση ότι περιλαμβάνεται η σωστή συσκευή",
+ "title": "S2 Μη αυθεντικοποιημένο"
+ }
+ },
+ "select_camera": "Επιλογή κάμερας",
+ "start_inclusion": "Έναρξη συμπερίληψης",
+ "start_secure_inclusion": "Έναρξη ασφαλούς συμπερίληψης",
+ "title": "Προσθήκη κόμβου Z-Wave",
+ "use_secure_inclusion": "Χρήση ασφαλούς συμπερίληψης",
+ "view_device": "Προβολή συσκευής"
+ },
+ "common": {
+ "add_node": "Προσθήκη κόμβου",
+ "back": "Πίσω",
+ "close": "Κλείσιμο",
+ "heal_network": "Θεραπεία δικτύου",
+ "home_id": "Αναγνωριστικό οικίας",
+ "network": "Δίκτυο",
+ "node_id": "Αναγνωριστικό κόμβου",
+ "reconfigure_server": "Επαναδιαμόρφωση διακομιστή",
+ "remove_node": "Κατάργηση κόμβου",
+ "source": "Πηγή"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n one {συσκευή}\n other {συσκευές}\n}",
+ "driver_version": "Έκδοση προγράμματος οδήγησης",
+ "dump_dead_nodes_text": "Μερικοί από τους κόμβους σας δεν ανταποκρίθηκαν και θεωρούνται νεκροί. Αυτοί δεν θα εξαχθούν πλήρως.",
+ "dump_dead_nodes_title": "Μερικοί από τους κόμβους σας είναι νεκροί",
+ "dump_debug": "Λήψη δεδομένων",
+ "dump_not_ready_confirm": "Λήψη",
+ "dump_not_ready_text": "Εάν δημιουργήσετε μια εξαγωγή ενώ δεν είναι έτοιμοι όλοι οι κόμβοι, ενδέχεται να χάσετε τα απαιτούμενα δεδομένα. Δώστε στο δίκτυό σας κάποιο χρόνο για να υποβάλει ερώτημα σε όλους τους κόμβους. Θέλετε να συνεχίσετε με την εξαγωγή;",
+ "dump_not_ready_title": "Δεν είναι όλοι οι κόμβοι έτοιμοι ακόμα",
+ "header": "Διαχειριστείτε το δίκτυο Z-Wave",
+ "home_id": "Αναγνωριστικό οικίας",
+ "introduction": "Διαχειριστείτε το δίκτυο Z-Wave και τους κόμβους Z-Wave",
+ "nodes_ready": "Κόμβοι έτοιμοι",
+ "not_ready": "{count} δεν είναι έτοιμο",
+ "provisioned_devices": "Προβλεπόμενες συσκευές",
+ "server_url": "URL διακομιστή",
+ "server_version": "Έκδοση διακομιστή"
+ },
+ "device_info": {
+ "device_config": "Ρύθμιση παραμέτρων συσκευής",
+ "heal_node": "Θεραπεία κόμβου",
+ "highest_security": "Υψηλότατη Ασφάλεια",
+ "is_secure": "Ασφαλές",
+ "node_ready": "Κόμβος έτοιμος",
+ "node_status": "Κατάσταση Κόμβου",
+ "reinterview_device": "Εκ νέου συνέντευξη συσκευής",
+ "remove_failed": "Αφαίρεση αποτυχημένης συσκευής",
+ "unknown": "Άγνωστο",
+ "zwave_info": "Πληροφορίες Z-Wave",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Έκδοση {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "Η θεραπεία του δικτύου ακυρώθηκε.",
+ "healing_complete": "Η θεραπεία του δικτύου έχει ολοκληρωθεί.",
+ "healing_failed": "Η θεραπεία απέτυχε. Πρόσθετες πληροφορίες ενδέχεται να είναι διαθέσιμες στα αρχεία καταγραφής.",
+ "in_progress": "Η θεραπεία του δικτύου βρίσκεται σε εξέλιξη. Αυτό θα πάρει λίγο χρόνο.",
+ "introduction": "Ξεκινήστε μια θεραπεία δικτύου στο δίκτυό σας Z-Wave. Μια θεραπεία δικτύου θα αναγκάσει όλες τις συσκευές να υπολογίσουν εκ νέου τις διαδρομές τους πίσω στον ελεγκτή και συνιστάται εάν έχετε μετακινήσει πρόσφατα συσκευές ή τον ελεγκτή σας.",
+ "run_in_background": "Μπορείτε να κλείσετε αυτό το παράθυρο διαλόγου και η θεραπεία του δικτύου θα συνεχιστεί στο παρασκήνιο.",
+ "start_heal": "Έναρξη Θεραπείας",
+ "stop_heal": "Διακοπή Θεραπείας",
+ "title": "Θεραπεύστε το δίκτυό σας Z-Wave",
+ "traffic_warning": "Η διαδικασία θεραπείας δημιουργεί μεγάλο όγκο κίνησης στο δίκτυο Z-Wave. Αυτό μπορεί να προκαλέσει αργή απόκριση των συσκευών (ή καθόλου) ενώ η θεραπεία βρίσκεται σε εξέλιξη."
+ },
+ "heal_node": {
+ "healing_complete": "Το {device} έχει θεραπευτεί.",
+ "healing_failed": "Το {device} δεν μπόρεσε να θεραπευτεί.",
+ "healing_failed_check_logs": "Πρόσθετες πληροφορίες ενδέχεται να είναι διαθέσιμες στα αρχεία καταγραφής.",
+ "in_progress": "Η θεραπεία του {device} βρίσκεται σε εξέλιξη.",
+ "introduction": "Πείτε στο {device} να ενημερώσει τις διαδρομές του προς τον ελεγκτή. Αυτό μπορεί να βοηθήσει με προβλήματα επικοινωνίας εάν έχετε μετακινήσει πρόσφατα τη συσκευή ή τον ελεγκτή σας.",
+ "network_heal_in_progress": "Μια θεραπεία δικτύου Z-Wave βρίσκεται ήδη σε εξέλιξη. Περιμένετε να ολοκληρωθεί πριν θεραπεύσετε μια μεμονωμένη συσκευή.",
+ "start_heal": "Θεραπεία συσκευής",
+ "title": "Θεραπεύστε μια συσκευή Z-Wave",
+ "traffic_warning": "Η διαδικασία θεραπείας δημιουργεί μεγάλο όγκο κίνησης στο δίκτυο Z-Wave. Αυτό μπορεί να προκαλέσει αργή απόκριση των συσκευών (ή καθόλου) ενώ η θεραπεία βρίσκεται σε εξέλιξη."
+ },
+ "logs": {
+ "download_logs": "Λήψη αρχείων καταγραφής",
+ "log_level": "Επίπεδο καταγραφής",
+ "log_level_changed": "Το επίπεδο καταγραφής άλλαξε σε: {level}",
+ "subscribed_to_logs": "Εγγράφηκε στα μηνύματα καταγραφής JS Z-Wave…",
+ "title": "Αρχεία καταγραφής Z-Wave JS"
+ },
+ "navigation": {
+ "logs": "Αρχεία καταγραφής",
+ "network": "Δίκτυο"
+ },
+ "network_status": {
+ "connected": "Συνδεδεμένο",
+ "connecting": "Σύνδεση",
+ "unknown": "Άγνωστο"
+ },
+ "node_config": {
+ "attribution": "Οι παράμετροι και οι περιγραφές διαμόρφωσης συσκευής παρέχονται από το {device_database}",
+ "battery_device_notice": "Οι συσκευές μπαταρίας πρέπει να είναι ξύπνιες για να ενημερώσουν τη διαμόρφωσή τους. Ανατρέξτε στο εγχειρίδιο της συσκευής σας για οδηγίες σχετικά με τον τρόπο αφύπνισης της συσκευής.",
+ "error_device_not_found": "Η συσκευή δε βρέθηκε.",
+ "header": "Ρύθμιση παραμέτρων συσκευής Z-Wave",
+ "introduction": "Διαχείριση και ρύθμιση παραμέτρων συσκευής (κόμβου) για την επιλεγμένη συσκευή",
+ "parameter": "Παράμετρος",
+ "parameter_is_read_only": "Αυτή η παράμετρος είναι μόνο για ανάγνωση.",
+ "set_param_accepted": "Η παράμετρος ενημερώθηκε.",
+ "set_param_error": "Παρουσιάστηκε σφάλμα.",
+ "set_param_queued": "Η αλλαγή παραμέτρων έχει τοποθετηθεί σε ουρά και θα ενημερωθεί όταν αφυπνιστεί η συσκευή.",
+ "zwave_js_device_database": "Βάση δεδομένων συσκευής Z-Wave JS"
+ },
+ "node_status": {
+ "alive": "Ζωντανό",
+ "asleep": "Κοιμισμένο",
+ "awake": "Ξύπνιο",
+ "dead": "Νεκρό",
+ "unknown": "Άγνωστο"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "Εάν καταργήσετε την προβολή της συσκευής, αυτή δεν θα προστεθεί στο Home Assistant όταν ενεργοποιηθεί. Εάν έχει ήδη προστεθεί στο Home Assistant, η αφαίρεση της προβολής της συσκευής δεν θα την αφαιρέσει από το Home Assistant.",
+ "confirm_unprovision_title": "Είστε σίγουροι ότι θέλετε να καταργήσετε την προβολή της συσκευής;",
+ "dsk": "DSK",
+ "included": "Περιλαμβάνεται",
+ "not_included": "Δεν περιλαμβάνεται",
+ "security_classes": "Κατηγορίες ασφαλείας",
+ "unprovison": "Χωρίς προβολή"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "Θα πρέπει να αφυπνίσετε τις συσκευές που λειτουργούν με μπαταρία πριν ξεκινήσετε την επαναληπτική συνέντευξη. Ανατρέξτε στο εγχειρίδιο της συσκευής σας για οδηγίες σχετικά με τον τρόπο αφύπνισης της συσκευής.",
+ "in_progress": "Η συσκευή ρυθμίζεται. Αυτό μπορεί να πάρει λίγο χρόνο.",
+ "interview_complete": "Η συνέντευξη της συσκευής ολοκληρώθηκε.",
+ "interview_failed": "Η συνέντευξη της συσκευής απέτυχε. Πρόσθετες πληροφορίες μπορεί να υπάρχουν στα αρχεία καταγραφής.",
+ "introduction": "Επανεξετάστε μια συσκευή στο δίκτυο Z-Wave. Χρησιμοποιήστε αυτή τη λειτουργία εάν η συσκευή σας έχει ελλιπή ή λανθασμένη λειτουργία.",
+ "run_in_background": "Μπορείτε να κλείσετε αυτό το παράθυρο διαλόγου και η συνέντευξη θα συνεχιστεί στο παρασκήνιο.",
+ "start_reinterview": "Έναρξη επαναληπτικής συνέντευξης",
+ "title": "Επανεξέταση μιας συσκευής Z-Wave"
+ },
+ "remove_failed_node": {
+ "in_progress": "Η αφαίρεση της συσκευής βρίσκεται σε εξέλιξη.",
+ "introduction": "Καταργήστε μια αποτυχημένη συσκευή από το δίκτυο Z-Wave. Χρησιμοποιήστε αυτό εάν δεν μπορείτε να εξαιρέσετε μια συσκευή κανονικά, επειδή είναι κατεστραμμένη.",
+ "removal_failed": "Δεν ήταν δυνατή η κατάργηση της συσκευής από το δίκτυο Z-Wave.",
+ "removal_finished": "Η Συσκευή {id} έχει καταργηθεί από το δίκτυο Z-Wave.",
+ "remove_device": "Κατάργηση συσκευής",
+ "title": "Αφαίρεση μιας αποτυχημένης συσκευής Z-Wave"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Ακύρωση εξαίρεσης",
+ "controller_in_exclusion_mode": "Ο ελεγκτής Z-Wave βρίσκεται τώρα σε λειτουργία αποκλεισμού.",
+ "exclusion_failed": "Δεν ήταν δυνατή η κατάργηση του κόμβου. Ελέγξτε τα αρχεία καταγραφής για περισσότερες πληροφορίες.",
+ "exclusion_finished": "Ο κόμβος {id} έχει καταργηθεί από το δίκτυο Z-Wave.",
+ "follow_device_instructions": "Ακολουθήστε τις οδηγίες που συνοδεύουν τη συσκευή σας για να ενεργοποιήσετε την εξαίρεση στη συσκευή.",
+ "introduction": "Καταργήστε έναν κόμβο από το δίκτυο Z-Wave και καταργήστε τη συσχετισμένη συσκευή και οντότητες από το Home Assistant.",
+ "start_exclusion": "Έναρξη εξαίρεσης",
+ "title": "Κατάργηση κόμβου Z-Wave"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Κανένα"
+ },
+ "S0_Legacy": {
+ "description": "Παράδειγμα: Κλειδαριές πόρτας παλαιού τύπου χωρίς υποστήριξη S2",
+ "title": "S0 Παλαιού Τύπου"
+ },
+ "S2_AccessControl": {
+ "description": "Παράδειγμα: Κλειδαριές Πορτών και Γκαραζόπορτες",
+ "title": "Έλεγχος Πρόσβασης S2"
+ },
+ "S2_Authenticated": {
+ "description": "Παράδειγμα: Φωτισμός, Αισθητήρες, και Συστήματα Ασφαλείας",
+ "title": "S2 Αυθεντικοποιημένο"
+ },
+ "S2_Unauthenticated": {
+ "description": "Όπως το Αυθεντικοποιημένο S2, αλλά χωρίς επαλήθευση ότι περιλαμβάνεται η σωστή συσκευή",
+ "title": "S2 Μη Αυθεντικοποιημένο"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Θα έχει πρόσβαση σε όλα τα δεδομένα του Home Assistant.",
+ "hide_message": "Ελέγξτε τα έγγραφα για το στοιχείο panel_custom για να αποκρύψετε αυτό το μήνυμα",
+ "question_trust": "Έχετε εμπιστοσύνη στο εξωτερικό πάνελ {name} στο {link} ;"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Ενεργοί ακροατές",
+ "alert_event_type": "Ο τύπος συμβάντος είναι ένα υποχρεωτικό πεδίο",
+ "available_events": "Διαθέσιμα συμβάντα",
+ "count_listeners": " ({count} ακροατές)",
+ "data": "Δεδομένα συμβάντος (YAML, προαιρετικό)",
+ "description": "Πυροδοτήστε ένα συμβάν στο δίαυλο συμβάντων.",
+ "documentation": "Τεκμηρίωση εκδηλώσεων",
+ "event_fired": "Το συμβάν {name} ενεργοποιήθηκε",
+ "fire_event": "Εκκίνηση συμβάντος",
+ "listen_to_events": "Επισκόπηση συμβάντων",
+ "listening_to": "Ακούω",
+ "notification_event_fired": "Το συμβάν {type} ενεργοποιήθηκε με επιτυχία!",
+ "start_listening": "Ξεκινήστε να ακούτε",
+ "stop_listening": "Σταματήστε να ακούτε",
+ "subscribe_to": "Συμβάν για να εγγραφείτε",
+ "title": "Γεγονότα",
+ "type": "Τύπος συμβάντος"
+ },
+ "services": {
+ "accepts_target": "Αυτή η υπηρεσία δέχεται έναν στόχο, για παράδειγμα: `entity_id: light.bed_light`",
+ "all_parameters": "Όλες οι διαθέσιμες παράμετροι",
+ "call_service": "Κάλεσμα υπηρεσίας",
+ "column_description": "Περιγραφή",
+ "column_example": "Παράδειγμα",
+ "column_parameter": "Παράμετρος",
+ "description": "Η υπηρεσία dev tool σας επιτρέπει να καλέσετε οποιαδήποτε διαθέσιμη υπηρεσία στο Home Assistant.",
+ "fill_example_data": "Συμπληρώστε τα δεδομένα του παραδείγματος",
+ "no_template_ui_support": "Το περιβάλλον εργασίας χρήστη δεν υποστηρίζει πρότυπα, μπορείτε ακόμα να χρησιμοποιήσετε το πρόγραμμα επεξεργασίας YAML.",
+ "title": "Υπηρεσίες",
+ "ui_mode": "Μετάβαση σε λειτουργία περιβάλλοντος εργασίας χρήστη",
+ "yaml_mode": "Μετάβαση στη λειτουργία YAML",
+ "yaml_parameters": "Οι παράμετροι διατίθενται μόνο σε λειτουργία YAML"
+ },
+ "states": {
+ "alert_entity_field": "Η οντότητα είναι ένα υποχρεωτικό πεδίο",
+ "attributes": "Χαρακτηριστικά",
+ "copy_id": "Αντιγραφή αναγνωριστικού στο πρόχειρο",
+ "current_entities": "Τρέχουσες οντότητες",
+ "description1": "Ορίστε την τρέχουσα αναπαράσταση κατάστασης μιας οντότητας στο Home Assistant.",
+ "description2": "Εάν η οντότητα ανήκει σε μια συσκευή, δεν θα υπάρξει πραγματική επικοινωνία με την εν λόγω συσκευή.",
+ "entity": "Οντότητα",
+ "filter_attributes": "Φιλτράρισμα χαρακτηριστικών",
+ "filter_entities": "Φιλτράρισμα οντοτήτων",
+ "filter_states": "Φιλτράρισμα καταστάσεων",
+ "last_changed": "Τελευταία αλλαγή",
+ "last_updated": "Τελευταία αναβάθμιση",
+ "more_info": "Περισσότερες πληροφορίες",
+ "no_entities": "Δεν υπάρχουν οντότητες",
+ "set_state": "Ορίστε την κατάσταση",
+ "state": "Κατάσταση",
+ "state_attributes": "Χαρακτηριστικά κατάστασης (YAML, προαιρετικά)",
+ "title": "Καταστάσεις"
+ },
+ "statistics": {
+ "entity": "Οντότητα",
+ "fix_issue": {
+ "fix": "Διόρθωση ζητήματος",
+ "units_changed": {
+ "clear": "Διαγραφή όλων των παλαιών στατιστικών δεδομένων για αυτή την οντότητα",
+ "fix": "Διόρθωση ζητήματος",
+ "title": "Η μονάδα αυτής της οντότητας άλλαξε",
+ "update": "Ενημέρωση των ιστορικών στατιστικών τιμών από ''{metadata_unit}'' σε ''{state_unit}''"
+ }
+ },
+ "issue": "Θέμα",
+ "issues": {
+ "entity_no_longer_recorded": "Αυτή η οντότητα δεν καταγράφεται πλέον.",
+ "entity_not_recorded": "Αυτή η οντότητα εξαιρείται από την καταγραφή.",
+ "no_state": "Δεν υπάρχει διαθέσιμη κατάσταση για αυτή την οντότητα.",
+ "units_changed": "Η μονάδα αυτής της οντότητας άλλαξε από ''{metadata_unit}'' σε ''{state_unit}''.",
+ "unsupported_state_class": "Η κλάση κατάστασης ''{state_class}'' αυτής της οντότητας δεν υποστηρίζεται.",
+ "unsupported_unit": "Η μονάδα (''{state_unit}'') αυτής της οντότητας δεν ταιριάζει με μονάδα της κλάσης συσκευής ''{device_class}''.",
+ "unsupported_unit_metadata": "Η μονάδα (''{metadata_unit}'') των καταγεγραμμένων στατιστικών δεν ταιριάζει με την υποστηριζόμενη μονάδα ''{supported_unit}'' της κλάσης συσκευής ''{device_class}''.",
+ "unsupported_unit_state": "Η μονάδα (''{state_unit}'') αυτής της οντότητας δεν ταιριάζει με μονάδα της κλάσης συσκευής ''{device_class}''."
+ },
+ "no_issue": "Κανένα πρόβλημα",
+ "title": "Στατιστικά"
+ },
+ "templates": {
+ "all_listeners": "Αυτό το πρότυπο ακούει για όλα τα συμβάντα που έχουν αλλάξει κατάσταση.",
+ "description": "Τα πρότυπα μετατρέπονται χρησιμοποιώντας τη μηχανή πρότυπου Jinja2 με ορισμένες εξειδικευμένες επεκτάσεις του Home Assistant.",
+ "domain": "Τομέας",
+ "editor": "Πρόγραμμα επεξεργασίας προτύπων",
+ "entity": "Οντότητα",
+ "jinja_documentation": "Έγγραφα πρότυπου Jinja2",
+ "listeners": "Αυτό το πρότυπο ακούει για τα ακόλουθα συμβάντα που έχουν αλλάξει κατάσταση:",
+ "no_listeners": "Αυτό το πρότυπο δεν ακούει για συμβάντα που έχουν αλλάξει κατάσταση και δεν θα ενημερώνεται αυτόματα.",
+ "reset": "Επαναφορά στο πρότυπο επίδειξης",
+ "result_type": "Τύπος αποτελέσματος",
+ "template_extensions": "Επεκτάσεις προτύπου Home Assistant",
+ "time": "Αυτό το πρότυπο ενημερώνεται στην αρχή κάθε λεπτού.",
+ "title": "Πρότυπα",
+ "unknown_error_template": "Άγνωστο σφάλμα ερμηνείας προτύπου"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Παρακολούθηση μεμονωμένων συσκευών",
+ "energy_distribution_title": "Διανομή Ενέργειας",
+ "energy_gas_graph_title": "Κατανάλωση Αερίου",
+ "energy_solar_graph_title": "Ηλιακή Παραγωγή",
+ "energy_sources_table_title": "Πηγές",
+ "energy_usage_graph_title": "Χρήση Ενέργειας"
+ },
+ "charts": {
+ "by_device": "Κατανάλωση ανά συσκευή",
+ "solar": "Ηλιακός",
+ "stat_house_energy_meter": "Συνολική κατανάλωση ενέργειας"
+ },
+ "setup": {
+ "back": "Πίσω",
+ "done": "Δείξτε μου τον ενεργειακό μου πίνακα!",
+ "next": "Επόμενο"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Μπορείτε να χρησιμοποιήσετε αυτήν τη λειτουργία μόνο όταν έχετε πάρει τον έλεγχο του Lovelace UI.",
+ "saving_failed": "Η αποθήκευση της παραμετροποίησης του Lovelace απέτυχε",
+ "yaml_unsupported": "Δεν μπορείτε να χρησιμοποιήσετε αυτήν τη λειτουργία όταν χρησιμοποιείτε το Lovelace UI σε λειτουργία YAML."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Είστε βέβαιοι ότι θέλετε να εκτελέσετε την ενέργεια \"{action}\";",
+ "no_entity_more_info": "Δεν παρέχεται οντότητα για το παράθυρο διαλόγου περισσότερων πληροφοριών",
+ "no_entity_toggle": "Δεν παρέχεται οντότητα για εναλλαγή",
+ "no_navigation_path": "Δεν καθορίστηκε διαδρομή περιήγησης",
+ "no_service": "Δεν καθορίστηκε υπηρεσία για εκτέλεση",
+ "no_url": "Δεν καθορίστηκε διεύθυνση URL για άνοιγμα"
+ },
+ "confirm_delete": "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτήν την κάρτα;",
+ "empty_state": {
+ "go_to_integrations_page": "Μεταβείτε στη σελίδα ενοποίησης.",
+ "no_devices": "Αυτή η σελίδα σάς επιτρέπει να ελέγχετε τις συσκευές σας, ωστόσο φαίνεται ότι δεν έχετε ακόμα ρυθμίσει συσκευές. Μεταβείτε στη σελίδα ενοποίησης για να ξεκινήσετε.",
+ "title": "Καλωσορίσατε στην αρχική σελίδα"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "Αυτή η κάρτα υποδεικνύει πόση από την ενέργεια που καταναλώνεται από το σπίτι σας παράγεται χρησιμοποιώντας μη ορυκτά καύσιμα όπως ηλιακή, αιολική και πυρηνική ενέργεια. Όσο πιο ψηλά, τόσο το καλύτερο!",
+ "non_fossil_energy_consumed": "Καταναλισκόμενη μη ορυκτή ενέργεια",
+ "non_fossil_energy_not_calculated": "Η καταναλισκόμενη μη ορυκτή ενέργεια δεν μπόρεσε να υπολογιστεί"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Χρήση Ενέργειας"
+ },
+ "energy_distribution": {
+ "battery": "Μπαταρία",
+ "gas": "Αέριο",
+ "go_to_energy_dashboard": "Μετάβαση στον πίνακα ελέγχου ενέργειας",
+ "grid": "Δίκτυο",
+ "home": "Σπίτι",
+ "non_fossil": "Μη ορυκτά",
+ "solar": "Ηλιακή",
+ "title_today": "Διανομή ενέργειας σήμερα"
+ },
+ "energy_solar_graph": {
+ "forecast": "Πρόβλεψη {name}",
+ "production": "Παραγωγή {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Σύνολο μπαταρίας",
+ "cost": "Κόστος",
+ "energy": "Ενέργεια",
+ "grid_total": "Σύνολο Δικτύου",
+ "source": "Πηγή",
+ "total_costs": "Συνολικά κόστη"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Συνδυασμός από το δίκτυο",
+ "consumed_battery": "Καταναλωμένη μπαταρία",
+ "consumed_solar": "Καταναλωμένη ηλιακή",
+ "total_consumed": "Σύνολο κατανάλωσης {num} kWh",
+ "total_returned": "Σύνολο επιστροφής {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Εάν η βελόνα είναι στο μωβ, επιστρέψατε περισσότερη ενέργεια στο δίκτυο απ' ό,τι καταναλώσατε από αυτό. Αν είναι στο μπλε, καταναλώσατε περισσότερη ενέργεια από το δίκτυο απ' ό,τι επιστρέψατε.",
+ "energy_dependency": "Αυτή η κάρτα αντιπροσωπεύει την ενεργειακή σας κατανάλωση.",
+ "grid_neutrality_not_calculated": "Η ουδετερότητα του δικτύου δεν μπόρεσε να υπολογιστεί",
+ "net_consumed_grid": "Καθαρή κατανάλωση από το δίκτυο",
+ "net_returned_grid": "Καθαρή επιστροφή στο δίκτυο",
+ "red_green_color_explain": "Αν είναι πράσινο, σημαίνει ότι παράγατε περισσότερη ενέργεια από αυτή που καταναλώσατε από το δίκτυο. Εάν είναι στο κόκκινο, σημαίνει ότι βασίζεστε στο δίκτυο για μέρος της κατανάλωσης ενέργειας στο σπίτι σας."
+ },
+ "loading": "Φόρτωση…",
+ "no_data": "Δεν υπάρχουν δεδομένα για εμφάνιση. Μπορεί να χρειαστούν έως και 2 ώρες για να φτάσουν νέα δεδομένα αφού διαμορφώσετε τον πίνακα ελέγχου ενέργειας.",
+ "no_data_period": "Δεν υπάρχουν δεδομένα για αυτήν την περίοδο.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "Αυτή η κάρτα υποδεικνύει πόση από την ηλιακή ενέργεια που παρήγαγες χρησιμοποιήθηκε από το σπίτι σας αντί να επιστραφεί στο δίκτυο.",
+ "card_indicates_solar_energy_used_charge_home_bat": "Εάν αυτός ο αριθμός είναι συνήθως πολύ χαμηλός, υποδεικνύοντας υπερβολική ηλιακή παραγωγή, ίσως θελήσετε να εξετάσετε το ενδεχόμενο φόρτισης μιας οικιακής μπαταρίας ή ενός ηλεκτρικού αυτοκινήτου από τους ηλιακούς συλλέκτες σας σε περιόδους υψηλής ηλιακής παραγωγής.",
+ "not_produced_solar_energy": "Δεν έχετε παράγει ηλιακή ενέργεια",
+ "self_consumed_solar_could_not_calc": "Η αυτοκατανάλωση ηλιακής ενέργειας δεν μπορούσε να υπολογιστεί",
+ "self_consumed_solar_energy": "Αυτοκατανάλωση ηλιακής ενέργειας"
+ }
+ },
+ "entities": {
+ "never_triggered": "Ποτέ δεν ενεργοποιήθηκε"
+ },
+ "iframe": {
+ "error_secure_context": "Δεν είναι δυνατή η φόρτωση iframes που δείχνουν σε ιστότοπους που χρησιμοποιούν {target_protocol} αν το Home Assistant εξυπηρετείται από {context_protocol}."
+ },
+ "map": {
+ "reset_focus": "Επαναφορά εστίασης"
+ },
+ "picture-elements": {
+ "call_service": "Κλήση υπηρεσίας {name}",
+ "hold": "Αναστολή:",
+ "more_info": "Εμφάνιση περισσότερων πληροφοριών: {name}",
+ "navigate_to": "Μετάβαση σε {location}",
+ "tap": "Κλικ:",
+ "toggle": "Εναλλαγή {name}",
+ "url": "Ανοίξτε το παράθυρο στο {url_path}"
+ },
+ "safe-mode": {
+ "description": "Το Home Assistant αντιμετώπισε πρόβλημα κατά τη φόρτωση της διαμόρφωσής σας και εκτελείται σε ασφαλή λειτουργία. Ρίξτε μια ματιά στο αρχείο καταγραφής σφαλμάτων για να δείτε τι πήγε στραβά.",
+ "header": "Ενεργοποίηση ασφαλούς λειτουργίας"
+ },
+ "shopping-list": {
+ "add_item": "Προσθήκη στοιχείου",
+ "checked_items": "Επιλεγμένα στοιχεία",
+ "clear_items": "Εκκαθάριση επιλεγμένων στοιχείων",
+ "drag_and_drop": "Μεταφορά και απόθεση",
+ "reorder_items": "Αναδιάταξη στοιχείων"
+ },
+ "show_more_info": "Εμφάνιση περισσότερων πληροφοριών",
+ "starting": {
+ "description": "Το Home Assistant ξεκινά, παρακαλώ περιμένετε…"
+ }
+ },
+ "changed_toast": {
+ "message": "Οι ρυθμίσεις του Lovelace UI για αυτόν τον πίνακα ελέγχου έχουν επικαιροποιηθεί. Θέλεις να κάνεις ανανέωση για να δεις τις αλλαγές;"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Ημέρα",
+ "month": "Μήνας",
+ "next": "Επόμενο",
+ "previous": "Προηγούμενο",
+ "today": "Σήμερα",
+ "week": "Εβδομάδα",
+ "year": "Έτος"
+ },
+ "timestamp-display": {
+ "invalid": "Μη έγκυρη χρονική σήμανση",
+ "invalid_format": "Μη έγκυρη μορφή εμφάνισης"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Κλήση υπηρεσίας",
+ "default_action": "Προεπιλεγμένη ενέργεια",
+ "more-info": "Περισσότερες πληροφορίες",
+ "navigate": "Πλοήγηση",
+ "none": "Καμία ενέργεια",
+ "toggle": "Εναλλαγή",
+ "url": "URL"
+ },
+ "navigation_path": "Διαδρομή πλοήγησης",
+ "url_path": "Διαδρομή URL"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Διαθέσιμες λειτουργίες",
+ "description": "Η κάρτα Συναγερμών σας επιτρέπει να οπλίσετε και να αφοπλίσετε τις ενσωματώσεις του πίνακα ελέγχου συναγερμού.",
+ "name": "Πίνακας συναγερμών"
+ },
+ "area": {
+ "description": "Η κάρτα \"Περιοχή\" εμφανίζει αυτόματα οντότητες μιας συγκεκριμένης περιοχής.",
+ "name": "Περιοχή",
+ "show_camera": "Εμφάνιση τροφοδοσίας κάμερας αντί για εικόνα περιοχής"
+ },
+ "button": {
+ "default_action_help": "Η προεπιλεγμένη ενέργεια εξαρτάται από τις δυνατότητες της οντότητας, είτε θα εναλλάσσεται είτε θα εμφανίζεται το παράθυρο διαλόγου περισσότερων πληροφοριών.",
+ "description": "Η κάρτα Button σας επιτρέπει να προσθέσετε κουμπιά για την εκτέλεση εργασιών.",
+ "name": "Κουμπί"
+ },
+ "calendar": {
+ "calendar_entities": "Οντότητες ημερολογίου",
+ "description": "Η κάρτα \"Ημερολόγιο\" εμφανίζει ένα ημερολόγιο που περιλαμβάνει προβολές ημέρας, εβδομάδας και λίστας",
+ "inital_view": "Αρχική προβολή",
+ "name": "Ημερολόγιο",
+ "views": {
+ "dayGridDay": "Ημέρα",
+ "dayGridMonth": "Μήνας",
+ "listWeek": "Λίστα"
+ }
+ },
+ "conditional": {
+ "card": "Κάρτα",
+ "change_type": "Αλλαγή τύπου",
+ "condition_explanation": "Η κάρτα θα εμφανίζεται όταν πληρούνται ΟΛΕΣ οι παρακάτω προϋποθέσεις.",
+ "conditions": "Συνθήκες",
+ "current_state": "Τρέχουσα",
+ "description": "Η κάρτα υπό όρους εμφανίζει μια άλλη κάρτα βάσει των καταστάσεων οντοτήτων.",
+ "name": "Υπό όρους",
+ "state_equal": "Η κατάσταση ισούται με",
+ "state_not_equal": "Η κατάσταση δεν ισούται με"
+ },
+ "config": {
+ "optional": "προαιρετικό",
+ "required": "υποχρεωτικό"
+ },
+ "entities": {
+ "description": "Η καρτέλα Οντότητες είναι ο πιο συνηθισμένος τύπος κάρτας. Ομαδοποιεί τα στοιχεία σε λίστες.",
+ "edit_special_row": "Προβολή των λεπτομερειών αυτής της γραμμής κάνοντας κλικ στο κουμπί επεξεργασίας",
+ "entity_row": {
+ "attribute": "Χαρακτηριστικό",
+ "button": "Κουμπί",
+ "buttons": "Κουμπιά",
+ "call-service": "Κλήση υπηρεσίας",
+ "cast": "Μετάδοση",
+ "conditional": "Υπό όρους",
+ "divider": "Διαιρέτης",
+ "section": "Ενότητα",
+ "weblink": "Σύνδεσμος Ιστού"
+ },
+ "entity_row_editor": "Πρόγραμμα επεξεργασίας γραμμής οντότητας",
+ "name": "Οντότητες",
+ "secondary_info_values": {
+ "brightness": "Φωτεινότητα",
+ "entity-id": "Αναγνωριστικό οντότητας",
+ "last-changed": "Τελευταία αλλαγή",
+ "last-triggered": "Τελευταία ενεργοποίηση",
+ "last-updated": "Τελευταία ενημέρωση",
+ "none": "Δεν υπάρχουν δευτερεύουσες πληροφορίες",
+ "position": "Θέση",
+ "tilt-position": "Θέση κλίσης"
+ },
+ "show_header_toggle": "Εμφάνιση εναλλαγής κεφαλίδων;",
+ "special_row": "ειδική σειρά",
+ "toggle": "Εναλλαγή οντοτήτων."
+ },
+ "entity-filter": {
+ "description": "Η κάρτα \"Φίλτρο οντότητας\" σάς επιτρέπει να ορίσετε μια λίστα οντοτήτων που θέλετε να παρακολουθείτε μόνο όταν βρίσκεστε σε μια συγκεκριμένη κατάσταση.",
+ "name": "Φίλτρο οντοτήτων"
+ },
+ "entity": {
+ "description": "Η κάρτα Οντότητα σας παρέχει μια γρήγορη επισκόπηση της κατάστασης της οντότητας σας.",
+ "name": "Οντότητα"
+ },
+ "gauge": {
+ "description": "Η κάρτα Gauge είναι μια βασική κάρτα που επιτρέπει την οπτική προβολή δεδομένων αισθητήρα.",
+ "name": "Μετρητής",
+ "needle_gauge": "Εμφάνιση ως μετρητή βελόνας;",
+ "severity": {
+ "define": "Ορισμός σοβαρότητας;",
+ "green": "Πράσινος",
+ "red": "Κόκκινο",
+ "yellow": "Κίτρινο"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Αναλογία απεικόνισης",
+ "attribute": "Χαρακτηριστικό",
+ "camera_image": "Οντότητα κάμερας",
+ "camera_view": "Προβολή κάμερας",
+ "days_to_show": "Ημέρες για εμφάνιση",
+ "double_tap_action": "Ενέργεια διπλού πατήματος",
+ "entities": "Οντότητες",
+ "entity": "Οντότητα",
+ "hold_action": "Ενέργεια διακράτησης",
+ "hours_to_show": "Ώρες για εμφάνιση",
+ "icon": "Εικονίδιο",
+ "icon_height": "Ύψος εικονιδίου",
+ "image": "Διαδρομή εικόνας",
+ "manual": "Χειροκίνητο",
+ "manual_description": "Θέλετε να προσθέσετε μια προσαρμοσμένη κάρτα ή απλά θέλετε να γράψετε χειροκίνητα το yaml;",
+ "maximum": "Μέγιστο",
+ "minimum": "Ελάχιστο",
+ "name": "Όνομα",
+ "no_theme": "Χωρίς θέμα",
+ "refresh_interval": "Χρονικό διάστημα ανανέωσης",
+ "search": "Αναζήτηση",
+ "secondary_info_attribute": "Χαρακτηριστικό δευτερευουσών πληροφοριών",
+ "show_icon": "Εμφάνιση εικονιδίου;",
+ "show_name": "Εμφάνιση ονόματος;",
+ "show_state": "Εμφάνιση κατάστασης;",
+ "state": "Κατάσταση",
+ "state_color": "Έγχρωμα εικονίδια βάσει της κατάστασης;",
+ "tap_action": "Ενέργεια πατήματος",
+ "theme": "Θέμα",
+ "title": "Τίτλος",
+ "unit": "Μονάδα",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Στήλες",
+ "description": "Η κάρτα Glance είναι χρήσιμη για την ομαδοποίηση πολλαπλών αισθητήρων σε μια συμπαγή επισκόπηση.",
+ "name": "Ματιά"
+ },
+ "grid": {
+ "columns": "Στήλες",
+ "description": "Η κάρτα πλέγματος σάς επιτρέπει να εμφανίζετε πολλές κάρτες σε ένα πλέγμα.",
+ "name": "Πλέγμα",
+ "square": "Απόδοση καρτών ως τετραγώνων"
+ },
+ "history-graph": {
+ "description": "Η κάρτα Ιστορικού γραφήματος σάς επιτρέπει να εμφανίσετε ένα γράφημα για καθεμία από τις αναφερόμενες οντότητες.",
+ "name": "Ιστορικό γράφημα"
+ },
+ "horizontal-stack": {
+ "description": "Η κάρτα Οριζόντιας στοίβας σάς επιτρέπει να στοιβάζετε πολλές κάρτες μαζί, έτσι ώστε να κάθονται πάντα η μία δίπλα στην άλλη στο χώρο μιας στήλης.",
+ "name": "Οριζόντια διάταξη"
+ },
+ "humidifier": {
+ "description": "Η κάρτα υγραντήρα δίνει τον έλεγχο της οντότητας υγραντήρα σας. Σας επιτρέπει να αλλάξετε την υγρασία και τον τρόπο της οντότητας.",
+ "name": "Υγραντήρας"
+ },
+ "iframe": {
+ "description": "Η κάρτα Ιστοσελίδας σάς επιτρέπει να ενσωματώσετε την αγαπημένη σας ιστοσελίδα απευθείας στο Home Assistant.",
+ "name": "Ιστοσελίδα"
+ },
+ "light": {
+ "description": "Η κάρτα \"Φως\" σας επιτρέπει να αλλάξετε τη φωτεινότητα του φωτός.",
+ "name": "Φως"
+ },
+ "logbook": {
+ "description": "Η κάρτα Συμβάντων εμφανίζει μια λίστα γεγονότων για διάφορα στοιχεία.",
+ "name": "Κάρτα Συμβάντων"
+ },
+ "map": {
+ "dark_mode": "Σκοτεινή λειτουργία;",
+ "default_zoom": "Προεπιλεγμένο ζουμ",
+ "description": "Η κάρτα χάρτη που σας επιτρέπει να εμφανίζετε οντότητες σε έναν χάρτη.",
+ "geo_location_sources": "Πηγές γεωγραφικής θέσης",
+ "hours_to_show": "Ώρες για εμφάνιση",
+ "name": "Χάρτης",
+ "source": "Πηγή"
+ },
+ "markdown": {
+ "content": "Περιεχόμενο",
+ "description": "Η κάρτα Markdown χρησιμοποιείται για την απόδοση του Markdown.",
+ "name": "Υποσημείωση."
+ },
+ "media-control": {
+ "description": "Η κάρτα ελέγχου πολυμέσων χρησιμοποιείται για την εμφάνιση οντοτήτων αναπαραγωγής πολυμέσων σε μια διασύνδεση με εύχρηστα στοιχεία ελέγχου.",
+ "name": "Έλεγχος πολυμέσων"
+ },
+ "picture-elements": {
+ "description": "Η κάρτα Picture Elements είναι ένας από τους πιο ευέλικτους τύπους καρτών. Οι κάρτες σας επιτρέπουν να τοποθετήσετε εικονίδια ή κείμενο και ακόμη και υπηρεσίες! Σε μια εικόνα που βασίζεται σε συντεταγμένες.",
+ "name": "Στοιχεία εικόνας"
+ },
+ "picture-entity": {
+ "description": "Η κάρτα \"Οντότητα εικόνας\" εμφανίζει μια οντότητα με τη μορφή εικόνας. Αντί για εικόνες από τη διεύθυνση URL, μπορεί επίσης να εμφανίσει την εικόνα των οντοτήτων της κάμερας.",
+ "name": "Οντότητα εικόνας"
+ },
+ "picture-glance": {
+ "description": "Η κάρτα \"Ματιά εικόνας\" εμφανίζει μια εικόνα και τις αντίστοιχες καταστάσεις οντότητας ως εικονίδιο. Οι οντότητες στη δεξιά πλευρά επιτρέπουν ενέργειες εναλλαγής, ενώ άλλες εμφανίζουν το παράθυρο διαλόγου περισσότερων πληροφοριών.",
+ "name": "Στιγμιότυπο εικόνας",
+ "state_entity": "Κρατική οντότητα"
+ },
+ "picture": {
+ "description": "Η κάρτα Εικόνας σάς επιτρέπει να ορίσετε μια εικόνα που θα χρησιμοποιείται για πλοήγηση σε διάφορες διαδρομές στη διεπαφή σας ή να καλείτε μια υπηρεσία.",
+ "name": "Εικόνα"
+ },
+ "plant-status": {
+ "description": "Η κάρτα κατάστασης φυτών είναι για όλους τους υπέροχους βοτανολόγους εκεί έξω.",
+ "name": "Κατάσταση εγκατάστασης"
+ },
+ "sensor": {
+ "description": "Η Κάρτα Αισθητήρα σας παρέχει μια γρήγορη επισκόπηση της κατάστασης των αισθητήρων σας με ένα προαιρετικό γράφημα για να απεικονίσετε την αλλαγή με την πάροδο του χρόνου.",
+ "graph_type": "Τύπος γραφήματος",
+ "name": "Αισθητήρας",
+ "show_more_detail": "Εμφάνιση περισσότερων λεπτομερειών"
+ },
+ "shopping-list": {
+ "description": "Η κάρτα \"Λίστα αγορών\" σάς επιτρέπει να προσθέτετε, να επεξεργάζεστε, να κάνετε check-off και να εκκαθαρίζετε στοιχεία από τη λίστα αγορών σας.",
+ "integration_not_loaded": "Αυτή η κάρτα απαιτεί τη ρύθμιση της ενσωμάτσωσης \"shopping_list\".",
+ "name": "Λίστα αγορών"
+ },
+ "statistics-graph": {
+ "description": "Η κάρτα Γράφημα στατιστικών σας επιτρέπει να εμφανίσετε μια γραφική παράσταση των στατιστικών για κάθε μία από τις οντότητες που παρατίθενται.",
+ "name": "Γράφημα Στατιστικών",
+ "period": "Περίοδος",
+ "periods": {
+ "5minute": "5 λεπτά",
+ "day": "Ημέρα",
+ "hour": "Ώρα",
+ "month": "Μήνας"
+ }
+ },
+ "thermostat": {
+ "description": "Η κάρτα Θερμοστάτη δίνει τον έλεγχο της κλιματικής οντότητας. Επιτρέποντάς σας να αλλάξετε τη θερμοκρασία και τον τρόπο της οντότητας.",
+ "name": "Θερμοστάτης"
+ },
+ "vertical-stack": {
+ "description": "Η κάρτα κατακόρυφης στοίβας σάς επιτρέπει να ομαδοποιείτε πολλές κάρτες, ώστε να παραμένουν πάντα στην ίδια στήλη.",
+ "name": "Κάθετη διάταξη"
+ },
+ "weather-forecast": {
+ "description": "Η κάρτα Πρόγνωση καιρού εμφανίζει τον καιρό. Πολύ χρήσιμο να συμπεριληφθεί στις διασυνδέσεις που οι άνθρωποι εμφανίζουν στον τοίχο.",
+ "name": "Πρόγνωση καιρού",
+ "show_both": "Εμφάνιση τρέχοντος Καιρού και Πρόγνωσης",
+ "show_forecast": "Πρόγνωση καιρού",
+ "show_only_current": "Εμφάνιση μόνο του τρέχοντος Καιρού",
+ "show_only_forecast": "Εμφάνιση μόνο Πρόγνωσης"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Ανά κάρτα",
+ "by_entity": "Ανά οντότητα",
+ "custom_card": "Προσαρμοσμένη",
+ "domain": "Τομέας",
+ "entity": "Οντότητα",
+ "no_description": "Δεν υπάρχει διαθέσιμη περιγραφή"
+ },
+ "common": {
+ "add": "Προσθήκη",
+ "clear": "Καθαρισμός",
+ "edit": "Επεξεργασία",
+ "none": "Κανένας"
+ },
+ "edit_badges": {
+ "panel_mode": "Αυτά τα σήματα δεν θα εμφανιστούν, επειδή αυτή η προβολή βρίσκεται σε \"Λειτουργία πίνακα\".",
+ "view_no_badges": "Τα εμβλήματα δεν υποστηρίζονται από τον τρέχοντα τύπο προβολής."
+ },
+ "edit_card": {
+ "add": "Προσθήκη κάρτας",
+ "clear": "Καθαρισμός",
+ "confirm_cancel": "Είστε βέβαιοι ότι θέλετε να ακυρώσετε;",
+ "delete": "Διαγραφή κάρτας",
+ "duplicate": "Διπλότυπη κάρτα",
+ "edit": "Επεξεργασία",
+ "header": "Διαμόρφωση κάρτας",
+ "move": "Μετακίνηση για προβολή",
+ "move_after": "Μετακίνηση κάρτας μετά",
+ "move_before": "Μετακίνηση κάρτας πριν",
+ "move_down": "Μετακίνηση κάρτας προς τα κάτω",
+ "move_up": "Μετακίνηση κάρτας προς τα επάνω",
+ "options": "Περισσότερες επιλογές",
+ "pick_card": "Επιλέξτε την κάρτα που θέλετε να προσθέσετε.",
+ "pick_card_view_title": "Ποια κάρτα θέλετε να προσθέσετε στην προβολή {name} ;",
+ "search_cards": "Αναζήτηση καρτών",
+ "show_code_editor": "Εμφάνιση επεξεργαστή κώδικα",
+ "show_visual_editor": "Εμφάνιση οπτικού προγράμματος επεξεργασίας",
+ "toggle_editor": "Εναλλαγή κειμενογράφου",
+ "typed_header": "{type} Διαμόρφωση κάρτας",
+ "unsaved_changes": "Έχετε μη αποθηκευμένες αλλαγές"
+ },
+ "edit_lovelace": {
+ "edit_title": "Επεξεργασία τίτλου",
+ "explanation": "Αυτός ο τίτλος εμφανίζεται πάνω από όλες τις καρτέλες σας στο Lovelace.",
+ "header": "Τίτλος του περιβάλλοντος εργασίας σας Lovelace",
+ "title": "Τίτλος"
+ },
+ "edit_view": {
+ "add": "Προσθήκη προβολής",
+ "delete": "Διαγραφή προβολής",
+ "edit": "Επεξεργασία προβολής",
+ "header": "Ρυθμίσεις προβολής",
+ "header_name": "{name} Προβολή διαμόρφωσης",
+ "move_left": "Μετακίνηση προβολής αριστερά",
+ "move_right": "Μετακίνηση προβολής δεξιά",
+ "tab_badges": "Εμβλήματα",
+ "tab_settings": "Ρυθμίσεις",
+ "tab_visibility": "Ορατότητα",
+ "type": "Τύπος προβολής",
+ "types": {
+ "masonry": "Τοιχοποιία (προεπιλογή)",
+ "panel": "Πίνακας (1 κάρτα)",
+ "sidebar": "Πλαϊνή μπάρα"
+ },
+ "visibility": {
+ "select_users": "Επιλέξτε ποιοι χρήστες θα βλέπουν αυτήν την προβολή στην πλοήγηση"
+ }
+ },
+ "header": "Επεξεργασία περιβάλλοντος χρήστη",
+ "header-footer": {
+ "choose_header_footer": "Επιλογή {type}",
+ "footer": "Υποσέλιδο",
+ "header": "Κεφαλίδα",
+ "types": {
+ "buttons": {
+ "name": "Κουμπιά"
+ },
+ "graph": {
+ "name": "Γράφημα"
+ },
+ "picture": {
+ "name": "Εικόνα"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Διαχείριση πινάκων ελέγχου",
+ "manage_resources": "Διαχείριση πόρων",
+ "open": "Ανοίξτε το μενού Lovelace",
+ "raw_editor": "Πρόγραμμα επεξεργασίας ρύθμισης παραμέτρων raw"
+ },
+ "migrate": {
+ "header": "Μη συμβατή διαμόρφωση",
+ "migrate": "Μετεγκατάσταση διαμόρφωσης",
+ "para_migrate": "To Home Assistant μπορεί να προσθέσει αυτόματα τα αναγνωριστικά σε όλες τις κάρτες και τις προβολές σας, πατώντας το κουμπί \"Μετεγκατάσταση διαμόρφωσης\".",
+ "para_no_id": "Αυτό το στοιχείο δεν έχει αναγνωριστικό. Προσθέστε ένα αναγνωριστικό σε αυτό το στοιχείο στο 'ui-lovelace.yaml'."
+ },
+ "move_card": {
+ "header": "Επιλέξτε μια προβολή για να μετακινήσετε την κάρτα"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Θα δημιουργήσουμε αυτόματα τις προβολές του Lovelace UI με τις περιοχές και τις συσκευές σας, εάν καταργήσετε τη διαμόρφωση του Lovelace UI.",
+ "confirm_remove_config_title": "Είστε βέβαιοι ότι θέλετε να καταργήσετε τη διαμόρφωση διεπαφής χρήστη Lovelace;",
+ "confirm_unsaved_changes": "Έχετε μη-αποθηκευμένες αλλαγές, είστε βέβαιοι ότι θέλετε να βγείτε;",
+ "confirm_unsaved_comments": "Η παραμετροποίηση σας περιέχει σχόλιο(α), αυτά δεν θα αποθηκευτούν. Θέλετε να συνεχίσετε;",
+ "error_invalid_config": "Η διαμόρφωσή σας δεν είναι έγκυρη: {error}",
+ "error_parse_yaml": "Δεν είναι δυνατή η ανάλυση του YAML: {error}",
+ "error_remove": "Δεν είναι δυνατή η κατάργηση της διαμόρφωσης: {error}",
+ "error_save_yaml": "Δεν είναι δυνατή η αποθήκευση του YAML: {error}",
+ "header": "Επεξεργασία διαμόρφωσης",
+ "lovelace_changed": "Η διαμόρφωση Lovelace ενημερώθηκε, θέλετε να φορτώσετε την ενημερωμένη διαμόρφωση στο πρόγραμμα επεξεργασίας και να χάσετε τις τρέχουσες αλλαγές σας;",
+ "reload": "Επαναφόρτωση",
+ "resources_moved": "Οι πόροι δεν θα πρέπει πλέον να προστίθενται στη διαμόρφωση Lovelace, αλλά μπορούν να προστεθούν στον πίνακα παραμέτρων Lovelace.",
+ "save": "Αποθήκευση",
+ "saved": "Αποθηκεύτηκε",
+ "unsaved_changes": "Μη αποθηκευμένες αλλαγές"
+ },
+ "save_config": {
+ "close": "Κλείσιμο",
+ "empty_config": "Ξεκινήστε με μια κενή επισκόπηση",
+ "header": "Πάρτε τον έλεγχο του περιβάλλοντος χρήστη στο Lovelace",
+ "para": "Αυτός ο πίνακας προεπισκόπησης διαχειρίζεται από το Home Assistant. Θα ενημερωθεί αυτόματα όταν νέες οντότητες ή στοιχεία διεπαφής Lovelace γίνουν διαθέσιμα. Αν αναλάβετε τον έλεγχο ο πίνακας προεπισκόπησης δεν θα ανανεώνεται αυτόματα. Μπορείτε οποιαδήποτε στιγμή να δημιουργήσετε νέο πίνακα προεπισκόπησης για να πειραματιστείτε",
+ "para_sure": "Είστε βέβαιος ότι θέλετε να πάρετε τον έλεγχο του περιβάλλοντος χρήστη;",
+ "save": "Πάρτε τον έλεγχο",
+ "yaml_config": "Για να σας βοηθήσουμε να ξεκινήσετε εδώ είναι η τρέχουσα διαμόρφωση αυτού του πίνακα ελέγχου:",
+ "yaml_control": "Για να αποκτήσετε τον έλεγχο σε λειτουργία YAML, δημιουργήστε ένα αρχείο YAML με το όνομα που καθορίσατε στη διαμόρφωσή σας για αυτόν τον πίνακα ελέγχου ή το προεπιλεγμένο \"ui-lovelace.yaml\".",
+ "yaml_mode": "Χρησιμοποιείτε τη λειτουργία YAML για αυτόν τον πίνακα εργαλείων, πράγμα που σημαίνει ότι δεν μπορείτε να αλλάξετε τη διαμόρφωση Lovelace από το περιβάλλον εργασίας χρήστη. Εάν θέλετε να διαχειριστείτε αυτόν τον πίνακα εργαλείων από το περιβάλλον εργασίας χρήστη, καταργήστε το 'mode: yaml' από τη διαμόρφωση Lovelace στο 'configuration.yaml.'."
+ },
+ "select_view": {
+ "dashboard_label": "Πίνακας Επισκόπησης",
+ "header": "Επιλέξτε μια προβολή",
+ "views_label": "Προβολή"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Πρόγραμμα επεξεργασίας υποσέλιδου",
+ "header": "Επεξεργασία κεφαλίδας",
+ "row": "Πρόγραμμα επεξεργασίας Σειράς Στοιχείου"
+ }
+ },
+ "suggest_card": {
+ "add": "Προσθήκη στο Lovelace UI",
+ "create_own": "Επιλέξτε άλλη κάρτα",
+ "header": "Δημιουργήσαμε μια πρόταση για εσάς"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Αυτή η προβολή περιέχει περισσότερες από μία κάρτες, αλλά μια προβολή πίνακα μπορεί να εμφανίσει μόνο 1 κάρτα."
+ }
+ }
+ },
+ "menu": {
+ "close": "Κλείστε",
+ "configure_ui": "Επεξεργασία πίνακα ελέγχου",
+ "exit_edit_mode": "Έξοδος από τη λειτουργία επεξεργασίας περιβάλλοντος εργασίας χρήστη",
+ "help": "Βοήθεια",
+ "reload_resources": "Επαναφόρτωση πόρων",
+ "start_conversation": "Έναρξη συζήτησης"
+ },
+ "reload_lovelace": "Επαναφόρτωση Lovelace",
+ "reload_resources": {
+ "refresh_body": "Πρέπει να ανανεώσετε τη σελίδα για να ολοκληρώσετε την επαναφόρτωση. Ανανέωση τώρα;",
+ "refresh_header": "Θέλετε να ανανεώσετε;"
+ },
+ "unused_entities": {
+ "available_entities": "Αυτές είναι οι οντότητες που έχετε στη διάθεσή σας, αλλά δεν έχετε ακόμα στο UI του Lovelace.",
+ "domain": "Τομέας",
+ "entity": "Οντότητα",
+ "entity_id": "Αναγνωριστικό οντότητας",
+ "last_changed": "Τελευταία αλλαγή",
+ "no_data": "Δεν βρέθηκαν αχρησιμοποίητες οντότητες",
+ "search": "Οντότητες αναζήτησης",
+ "select_to_add": "Επιλέξτε τις οντότητες που θέλετε να προσθέσετε σε μια κάρτα και, στη συνέχεια, κάντε κλικ στο κουμπί Προσθήκη κάρτας.",
+ "title": "Αχρησιμοποίητες οντότητες"
+ },
+ "views": {
+ "confirm_delete": "Θέλετε να διαγράψετε αυτήν την προβολή;",
+ "confirm_delete_existing_cards": "Η διαγραφή αυτής της προβολής θα αφαιρέσει επίσης τις κάρτες",
+ "confirm_delete_existing_cards_text": "Είστε βέβαιοι ότι θέλετε να διαγράψετε την προβολή '' {name} ''; Η προβολή περιέχει {number} κάρτες που θα διαγραφούν. Αυτή η πράξη δε μπορεί να αναιρεθεί.",
+ "confirm_delete_text": "Είστε βέβαιοι ότι θέλετε να διαγράψετε την προβολή '' {name} '';"
+ },
+ "warning": {
+ "attribute_not_found": "Το χαρακτηριστικό {attribute} δεν είναι διαθέσιμο σε: {entity}",
+ "entity_non_numeric": "Η οντότητα δεν είναι αριθμητική: {entity}",
+ "entity_not_found": "Η οντότητα δεν είναι διαθέσιμη: {entity}",
+ "entity_unavailable": "Η οντότητα δεν είναι διαθέσιμη προς το παρόν: {entity}",
+ "starting": "Το Home Assistant ξεκινά, ενδέχεται να μην είναι ακόμη διαθέσιμα όλα"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Διαγραφή",
+ "delete_prompt": "Διαγραφή αυτού του μηνύματος;",
+ "empty": "Δεν έχετε μηνύματα",
+ "playback_title": "Αναπαραγωγή μηνύματος"
+ },
+ "map": {
+ "edit_zones": "Επεξεργασία Ζωνών"
+ },
+ "my": {
+ "component_not_loaded": "Αυτή η ανακατεύθυνση δεν υποστηρίζεται από την παρουσία σας στο Home Assistant. Χρειάζεστε την ενσωμάτωση {integration} για να χρησιμοποιήσετε αυτήν την ανακατεύθυνση.",
+ "documentation": "Τεκμηρίωση",
+ "error": "Παρουσιάστηκε άγνωστο σφάλμα",
+ "faq_link": "Συνήθεις ερωτήσεις για το Home Assistant",
+ "no_supervisor": "Αυτή η ανακατεύθυνση δεν υποστηρίζεται από την εγκατάσταση του Home Assistant σας. Χρειάζεται είτε το λειτουργικό σύστημα του Home Assistant ή τη μέθοδο της εποπτευόμενης εγκατάστασης του Home Assistant. Για περισσότερες πληροφορίες, ανατρέξτε στο {docs_link} .",
+ "not_supported": "Αυτή η ανακατεύθυνση δεν υποστηρίζεται από τo Home Assistant σας. Ελέγξτε το {link} για τις υποστηριζόμενες ανακατευθύνσεις και την έκδοση που εισήγαγαν."
+ },
+ "page-authorize": {
+ "abort_intro": "Σύνδεση ματαιώθηκε",
+ "authorizing_client": "Πρόκειται να δώσετε στο {clientId} πρόσβαση στο Home Assistant.",
+ "form": {
+ "error": "Σφάλμα: {error}",
+ "next": "Επόμενο",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Η περίοδος σύνδεσης έληξε, συνδεθείτε ξανά."
+ },
+ "error": {
+ "invalid_auth": "Μη έγκυρο όνομα χρήστη ή κωδικός πρόσβασης",
+ "invalid_code": "Λανθασμένος κώδικας ταυτοποίησης"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Κωδικός",
+ "username": "Όνομα χρήστη"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Κωδικός ταυτοποίησης δυο παραγόντων"
+ },
+ "description": "Ανοίξτε το **{mfa_module_name}** στην συσκευή σας για να δείτε τον κωδικό ταυτοποίησης δυο-παραγόντων και να επιβεβαιώσετε την ταυτότητα:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Η περίοδος σύνδεσης έληξε, συνδεθείτε ξανά."
+ },
+ "error": {
+ "invalid_auth": "Μη έγκυρο όνομα χρήστη ή κωδικός πρόσβασης",
+ "invalid_code": "Μη έγκυρος κωδικός ταυτοποίησης"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Κωδικός",
+ "username": "Όνομα χρήστη"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Κωδικός ταυτοποίησης δυο παραγόντων"
+ },
+ "description": "Ανοίξτε το **{mfa_module_name}** στην συσκευή σας για να δείτε τον κωδικό ταυτοποίησης δυο-παραγόντων και να επιβεβαιώσετε την ταυτότητα:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Έληξε η περίοδος σύνδεσης, παρακαλώ ξανά συνδεθείτε.",
+ "no_api_password_set": "Δεν έχετε διαμορφώσει έναν κωδικό πρόσβασης API."
+ },
+ "error": {
+ "invalid_auth": "Άκυρος κωδικός ΑPI",
+ "invalid_code": "Μη έγκυρος κωδικός ταυτοποίησης"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Κωδικός API"
+ },
+ "description": "Εισαγάγετε τον κωδικό πρόσβασης API στη διαμόρφωση HTTP:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Κωδικός ταυτοποίησης δυο παραγόντων"
+ },
+ "description": "Ανοίξτε το **{mfa_module_name}** στην συσκευή σας για να δείτε τον κωδικό ταυτοποίησης δυο-παραγόντων και να επιβεβαιώσετε την ταυτότητα:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Ο υπολογιστής σας δεν είναι αποδεκτός."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Χρήστης"
+ },
+ "description": "Παρακαλούμε επιλέξτε ένα χρήστη που θέλετε να συνδεθείτε ως:"
+ }
+ }
+ }
+ },
+ "start_over": "Ξεκινήστε από την αρχή",
+ "unknown_error": "Κάτι πήγε στραβά",
+ "working": "Παρακαλώ περιμένετε"
+ },
+ "initializing": "Αρχικοποίηση",
+ "logging_in_to_with": "Σύνδεση στο **{locationName}** με **{authProviderName}**.",
+ "logging_in_with": "Σύνδεση με **{authProviderName}**.",
+ "pick_auth_provider": "Ή συνδεθείτε με",
+ "store_token": "Κρατήστε με συνδεδεμένο"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "από {name}",
+ "introduction": "Καλώς όρισες σπίτι! Βλέπετε το σύστημα επίδειξης του Home Assistant όπου παρουσιάζουμε τις καλύτερες διεπαφές χρήστη (UI) που δημιουργήθηκαν από την κοινότητά μας.",
+ "learn_more": "Μάθετε περισσότερα για το Home Assistant",
+ "next_demo": "Επόμενο σύστημα επίδειξης"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Δραστηριότητα",
+ "air": "Αέρας",
+ "commute_home": "Μετακίνηση προς Σπίτι",
+ "entertainment": "Ψυχαγωγία",
+ "hdmi_input": "Είσοδος HDMI",
+ "hdmi_switcher": "Μεταγωγέας HDMI",
+ "information": "Πληροφορίες",
+ "lights": "Φώτα",
+ "morning_commute": "Πρωινή Μετακίνηση",
+ "total_tv_time": "Συνολικός χρόνος θέασης",
+ "turn_tv_off": "Απενεργοποίηση Τηλεόρασης",
+ "volume": "Ένταση ήχου"
+ },
+ "names": {
+ "family_room": "Οικογενειακό Δωμάτιο",
+ "hallway": "Διάδρομος",
+ "kitchen": "Κουζίνα",
+ "left": "Αριστερά",
+ "master_bedroom": "Κύριο Υπνοδωμάτιο",
+ "mirror": "Καθρέφτης",
+ "patio": "Αίθριο",
+ "right": "Δεξιά",
+ "temperature_study": "Μελέτη θερμοκρασίας",
+ "upstairs": "Επάνω"
+ },
+ "unit": {
+ "minutes_abbr": "λεπτά",
+ "watching": "παρακολούθηση"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Επόμενο"
+ },
+ "core-config": {
+ "button_detect": "Ανίχνευση",
+ "finish": "Επόμενο",
+ "intro": "Γεια σου {name}, καλώς ήρθες στο Home Assistant. Πώς θα ήθελες να αναφέρεσαι στο σπίτι σου;",
+ "intro_location": "Θα θέλαμε να μάθουμε πού ζεις. Αυτές οι πληροφορίες θα βοηθήσουν στην προβολή πληροφοριών και στη ρύθμιση αυτοματισμών που βασίζονται στη θέση ηλίου. Αυτά τα δεδομένα δεν μοιράζονται ποτέ εκτός του δικτύου σας.",
+ "intro_location_detect": "Μπορούμε να σε βοηθήσουμε να συμπληρώσεις αυτές τις πληροφορίες, κάνοντας μια εφάπαξ αίτηση σε μια εξωτερική υπηρεσία.",
+ "location_name": "Όνομα της εγκατάστασης σας του Home Assistant",
+ "location_name_default": "Σπίτι"
+ },
+ "finish": "Τέλος",
+ "integration": {
+ "finish": "Τέλος",
+ "intro": "Οι συσκευές και οι υπηρεσίες εκπροσωπούνται στο Home Assistant ως ενσωματώσεις. Μπορείτε να τα ρυθμίσετε τώρα ή αργότερα από την οθόνη διαμόρφωσης.",
+ "more_integrations": "Περισσότερα"
+ },
+ "intro": "Είστε έτοιμοι να ξυπνήσετε το σπίτι σας, να διεκδικήσετε την ιδιωτικότητά σας και να συμμετάσχετε σε μια παγκόσμια κοινότητα μαστροχαλαστών;",
+ "next": "Επόμενο",
+ "restore": {
+ "addons": "Πρόσθετα",
+ "confirm_password": "Επιβεβαίωση κωδικού πρόσβασης αντιγράφου ασφαλείας",
+ "description": "Εναλλακτικά, μπορείτε να επαναφέρετε από ένα προηγούμενο αντίγραφο ασφαλείας.",
+ "folders": "Φάκελοι",
+ "full_backup": "Πλήρες αντίγραφο ασφαλείας",
+ "hide_log": "Απόκρυψη πλήρους αρχείου καταγραφής",
+ "in_progress": "Επαναφορά σε εξέλιξη",
+ "partial_backup": "Μερικό αντίγραφο ασφαλείας",
+ "password": "Κωδικός αντιγράφου ασφαλείας",
+ "password_protection": "Προστασία με κωδικό πρόσβασης",
+ "select_type": "Επιλέξτε τι θα επαναφέρετε",
+ "show_log": "Εμφάνιση πλήρους αρχείου καταγραφής",
+ "type": "Τύπος αντιγράφων ασφαλείας",
+ "upload_backup": "Ανέβασμα αντιγράφου ασφαλείας"
+ },
+ "user": {
+ "create_account": "Δημιουργία Λογαριασμού",
+ "data": {
+ "name": "Όνομα",
+ "password": "Κωδικός",
+ "password_confirm": "Επιβεβαίωση Κωδικού",
+ "username": "Όνομα χρήστη"
+ },
+ "error": {
+ "password_not_match": "Οι κωδικοί πρόσβασης δεν ταιριάζουν",
+ "required_fields": "Συμπληρώστε όλα τα υποχρεωτικά πεδία"
+ },
+ "intro": "Ας ξεκινήσουμε δημιουργώντας ένα λογαριασμό χρήστη.",
+ "required_field": "Υποχρεωτικό"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Ξεκλειδώνει προηγμένες δυνατότητες.",
+ "link_promo": "Μάθετε περισσότερα",
+ "title": "Εξειδικευμένη λειτουργία"
+ },
+ "change_password": {
+ "confirm_new_password": "Επιβεβαιώστε τον καινούριο κωδικό",
+ "current_password": "Τρέχων κωδικός",
+ "error_new_is_old": "Ο νέος κωδικός πρόσβασης πρέπει να είναι διαφορετικός από τον τρέχοντα κωδικό πρόσβασης",
+ "error_new_mismatch": "Οι νέες τιμές κωδικού πρόσβασης που έχουν εισαχθεί δεν ταιριάζουν",
+ "error_required": "Απαιτείται",
+ "header": "Αλλαγή Κωδικού",
+ "new_password": "Νέος κωδικός",
+ "submit": "Υποβολή",
+ "success": "Ο κωδικός άλλαξε επιτυχώς"
+ },
+ "current_user": "Αυτήν τη στιγμή είστε συνδεδεμένος ως {fullName}.",
+ "customize_sidebar": {
+ "button": "Επεξεργασία",
+ "description": "Μπορείτε επίσης να πατήσετε παρατεταμένα την κεφαλίδα της πλαϊνής γραμμής για να ενεργοποιήσετε τη λειτουργία επεξεργασίας.",
+ "header": "Αλλαγή της σειράς και απόκρυψη στοιχείων από την πλαϊνή γραμμή"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Επισκόπηση (προεπιλογή)",
+ "description": "Προεπιλέξτε μια επισκόπηση για αυτή τη συσκευή",
+ "dropdown_label": "Επισκόπηση",
+ "header": "Επισκόπηση"
+ },
+ "enable_shortcuts": {
+ "description": "Ενεργοποίηση ή απενεργοποίηση συντομεύσεων πληκτρολογίου για την εκτέλεση διαφόρων ενεργειών στο περιβάλλον εργασίας χρήστη.",
+ "header": "Συντομεύσεις πληκτρολογίου"
+ },
+ "force_narrow": {
+ "description": "Αυτό θα κρύψει την πλαϊνή μπάρα από προεπιλογή, παρόμοια με την εμπειρία κινητού.",
+ "header": "Να αποκρύπτεται πάντα η πλαϊνή μπάρα"
+ },
+ "is_owner": "Είστε ιδιοκτήτης.",
+ "language": {
+ "dropdown_label": "Γλώσσα",
+ "header": "Γλώσσα",
+ "link_promo": "Βοηθήστε στη μετάφραση"
+ },
+ "logout": "Αποσύνδεση",
+ "logout_text": "Είστε βέβαιοι ότι θέλετε να αποσυνδεθείτε;",
+ "logout_title": "Αποσύνδεση;",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Είστε σίγουρος ότι θέλετε να διαγράψετε το διακριτικό πρόσβασης για το {name};",
+ "create": "Δημιουργία Διακριτικού",
+ "create_failed": "Αδύνατη η δημιουργία του τρέχοντος διακριτικού.",
+ "created": "Δημιουργήθηκε {date}",
+ "delete_failed": "Αδύνατη η διαγραφή του τρέχοντος διακριτικού.",
+ "description": "Δημιουργήστε διακριτικά πρόσβασης μακράς διάρκειας για να επιτρέψετε στα σενάρια σας να αλληλεπιδρούν με το Home Assistant. Κάθε διακριτικό θα ισχύει για 10 χρόνια. Τα παρακάτω διακριτικά πρόσβασης μακράς διαρκείας είναι ενεργά.",
+ "empty_state": "Δεν έχετε ακόμη αναγνωριστικά πρόσβασης μεγάλης διάρκειας.",
+ "header": "Διακριτικά πρόσβασης μακράς διάρκειας",
+ "learn_auth_requests": "Μάθετε πώς να κάνετε πιστοποιημένα αιτήματα.",
+ "name": "Όνομα",
+ "prompt_copy_token": "Αντιγράψτε το διακριτικό πρόσβασης. Δεν θα εμφανιστεί ξανά.",
+ "prompt_name": "Δώστε ένα όνομα στο διακριτικό"
+ },
+ "mfa": {
+ "confirm_disable": "Είστε βέβαιος ότι θέλετε να απενεργοποιήσετε το {name} ;",
+ "disable": "Απενεργοποίηση",
+ "enable": "Ενεργοποίηση",
+ "header": "Πολυπαραγοντικά Αρθρώματα Ταυτοποίησης"
+ },
+ "mfa_setup": {
+ "close": "Κλείστε",
+ "step_done": "Η εγκατάσταση έγινε για {step}",
+ "submit": "Υποβολή",
+ "title_aborted": "Ματαιώθηκε",
+ "title_success": "Επιτυχία!"
+ },
+ "number_format": {
+ "description": "Επιλέξτε τον τρόπο μορφοποίησης των αριθμών.",
+ "dropdown_label": "Μορφή αριθμού",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Αυτόματο (χρήση ρύθμισης γλώσσας)",
+ "none": "Κανένα",
+ "space_comma": "1 234 567,89",
+ "system": "Χρήση της τοπικής γλώσσας του συστήματος"
+ },
+ "header": "Μορφή αριθμού"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Όνομα συσκευής",
+ "title": "Πώς πρέπει να ονομάζεται αυτή η συσκευή;"
+ },
+ "description": "Αποστολή ειδοποιήσεων σε αυτήν τη συσκευή.",
+ "error_load_platform": "Ρυθμίστε το notify.html5.",
+ "error_use_https": "Απαιτείται η ενεργοποίηση του SSL για το προσκήνιο.",
+ "header": "Ειδοποιήσεις Push",
+ "link_promo": "Μάθετε περισσότερα",
+ "push_notifications": "Ειδοποιήσεις push"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Είστε σίγουρος ότι θέλετε να διαγράψετε το διακριτικό πρόσβασης για το {name};",
+ "created_at": "Δημιουργήθηκε στις {date}",
+ "current_token_tooltip": "Αδύνατη η διαγραφή του τρέχοντος διακριτικού",
+ "delete_failed": "Αδύνατη η διαγραφή του τρέχοντος διακριτικού.",
+ "description": "Κάθε διακριτικό ανανέωσης αντιπροσωπεύει μια περίοδο σύνδεσης. Τα ανανεωμένα tokens θα καταργηθούν αυτόματα όταν αποσυνδεθείτε. Τα παρακάτω διακριτικά ανανέωσης είναι ενεργά για το λογαριασμό σας.",
+ "header": "Ανανέωση διακριτικών",
+ "last_used": "Τελευταία χρήση στις {date} από {location}",
+ "not_used": "Δεν έχει χρησιμοποιηθεί ποτέ",
+ "token_title": "Ανανέωση διακριτικού για το {clientId}"
+ },
+ "suspend": {
+ "description": "Θα πρέπει να κλείσουμε τη σύνδεση με το διακομιστή μετά την απόκρυψη για 5 λεπτά;",
+ "header": "Αυτόματο κλείσιμο σύνδεσης"
+ },
+ "themes": {
+ "accent_color": "Χρώμα έμφασης",
+ "dark_mode": {
+ "auto": "Αυτόματο",
+ "dark": "Σκούρο",
+ "light": "Φωτεινό"
+ },
+ "dropdown_label": "Θέμα",
+ "error_no_theme": "Δεν υπάρχουν διαθέσιμα θέματα.",
+ "header": "Θέμα",
+ "link_promo": "Μάθετε σχετικά με τα θέματα",
+ "primary_color": "Πρωτεύον χρώμα",
+ "reset": "Επαναφορά"
+ },
+ "time_format": {
+ "description": "Επιλέξτε τον τρόπο μορφοποίησης των ωρών.",
+ "dropdown_label": "Μορφή ώρας",
+ "formats": {
+ "12": "12 ώρες (π.μ./μ.μ.)",
+ "24": "24 ώρες",
+ "language": "Αυτόματο (χρήση ρύθμισης γλώσσας)",
+ "system": "Χρήση της τοπικής γλώσσας του συστήματος"
+ },
+ "header": "Μορφή Ώρας"
+ },
+ "vibrate": {
+ "description": "Ενεργοποιήστε ή απενεργοποιήστε τις δονήσεις σε αυτήν τη συσκευή κατά τον έλεγχο συσκευών.",
+ "header": "Δόνηση"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Έναρξη συζήτησης"
+ }
+ },
+ "sidebar": {
+ "done": "Ολοκληρώθηκε",
+ "external_app_configuration": "Διαμόρφωση Εφαρμογής",
+ "hide_panel": "Απόκρυψη πίνακα",
+ "show_panel": "Εμφάνιση πίνακα",
+ "sidebar_toggle": "Εναλλαγή πλαϊνής μπάρας"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/en-GB.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/en-GB.json
new file mode 100644
index 00000000..2f269514
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/en-GB.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/en.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/en.json
new file mode 100644
index 00000000..16d29337
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/en.json
@@ -0,0 +1,4673 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Config entry",
+ "device": "Device",
+ "integration": "Integration",
+ "user": "User"
+ }
+ },
+ "groups": {
+ "owner": "Owner",
+ "system-admin": "Administrators",
+ "system-read-only": "Read-Only Users",
+ "system-users": "Users"
+ },
+ "panel": {
+ "calendar": "Calendar",
+ "config": "Configuration",
+ "developer_tools": "Developer Tools",
+ "energy": "Energy",
+ "history": "History",
+ "logbook": "Logbook",
+ "mailbox": "Mailbox",
+ "map": "Map",
+ "media_browser": "Media",
+ "profile": "Profile",
+ "shopping_list": "Shopping List",
+ "states": "Overview"
+ },
+ "state": {
+ "default": {
+ "off": "Off",
+ "on": "On",
+ "unavailable": "Unavailable",
+ "unknown": "Unknown"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Auto",
+ "off": "Off",
+ "on": "On"
+ },
+ "hvac_action": {
+ "cooling": "Cooling",
+ "drying": "Drying",
+ "fan": "Fan",
+ "heating": "Heating",
+ "idle": "Idle",
+ "off": "Off"
+ },
+ "preset_mode": {
+ "activity": "Activity",
+ "away": "Away",
+ "boost": "Boost",
+ "comfort": "Comfort",
+ "eco": "Eco",
+ "home": "Home",
+ "none": "None",
+ "sleep": "Sleep"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Auto",
+ "away": "Away",
+ "baby": "Baby",
+ "boost": "Boost",
+ "comfort": "Comfort",
+ "eco": "Eco",
+ "home": "Home",
+ "normal": "Normal",
+ "sleep": "Sleep"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Armed",
+ "armed_away": "Armed",
+ "armed_custom_bypass": "Armed",
+ "armed_home": "Armed",
+ "armed_night": "Armed",
+ "armed_vacation": "Armed",
+ "arming": "Arming",
+ "disarmed": "Disarm",
+ "disarming": "Disarm",
+ "pending": "Pend",
+ "triggered": "Trig"
+ },
+ "default": {
+ "entity_not_found": "Entity not found",
+ "error": "Error",
+ "unavailable": "Unavai",
+ "unknown": "Unk"
+ },
+ "device_tracker": {
+ "home": "Home",
+ "not_home": "Away"
+ },
+ "person": {
+ "home": "Home",
+ "not_home": "Away"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Default",
+ "header": "Audio",
+ "input": "Input",
+ "output": "Output"
+ },
+ "network": {
+ "container": "Container",
+ "disabled": "Disabled",
+ "header": "Network",
+ "host": "Host"
+ },
+ "no_configuration": "This add-on does not expose configuration for you to mess with…",
+ "options": {
+ "edit_in_ui": "Edit in UI",
+ "edit_in_yaml": "Edit in YAML",
+ "header": "Options",
+ "invalid_yaml": "Invalid YAML",
+ "show_unused_optional": "Show unused optional configuration options"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Failed to get add-on changelog",
+ "go_to_config": "Edit Config",
+ "install": "Failed to install add-on",
+ "restart": "Failed to restart add-on",
+ "start": "Failed to start add-on",
+ "start_invalid_config": "Go to configuration",
+ "stop": "Failed to stop add-on",
+ "uninstall": "Failed to uninstall add-on",
+ "validate_config": "Failed to validate add-on configuration"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor ('Application Armor') 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, optimized 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.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "An add-on can authenticate users against Home Assistant, allowing add-ons to give users the possibility to log into applications running inside add-ons, using their Home Assistant username/password. This badge indicates if the add-on author requests this capability.",
+ "title": "Home Assistant Authentication"
+ },
+ "docker_api": {
+ "description": "The add-on author has requested the add-on to have management access to the Docker instance running on your system. This mode gives the add-on full access and control to your entire Home Assistant system, which adds security risks, and could damage your system when misused. Therefore, this feature impacts the add-on security score negatively.\n\nThis level of access is not granted automatically and needs to be confirmed by you. To do this, you need to disable the protection mode on the add-on manually. Only disable the protection mode if you know, need AND trust the source of this add-on.",
+ "title": "Full Docker Access"
+ },
+ "full_access": {
+ "description": "This add-on is given full access to the hardware of your system, by request of the add-on author. Access is comparable to the privileged mode in Docker. Since this opens up possible security risks, this feature impacts the add-on security score negatively.\n\nThis level of access is not granted automatically and needs to be confirmed by you. To do this, you need to disable the protection mode on the add-on manually. Only disable the protection mode if you know, need AND trust the source of this add-on.",
+ "title": "Full Hardware Access"
+ },
+ "hassio_api": {
+ "description": "The add-on was given access to the Supervisor API, by request of the add-on author. By default, the add-on can access general version information of your system. When the add-on requests 'manager' or 'admin' level access to the API, it will gain access to control multiple parts of your Home Assistant system. This permission is indicated by this badge and will impact the security score of the add-on negatively.",
+ "title": "Supervisor API Access"
+ },
+ "homeassistant_api": {
+ "description": "This add-on is allowed to access your running Home Assistant instance directly via the Home Assistant API. This mode handles authentication for the add-on as well, which enables an add-on to interact with Home Assistant without the need for additional authentication tokens.",
+ "title": "Home Assistant API Access"
+ },
+ "host_network": {
+ "description": "Add-ons usually run in their own isolated network layer, which prevents them from accessing the network of the host operating system. In some cases, this network isolation can limit add-ons in providing their services and therefore, the isolation can be lifted by the add-on author, giving the add-on full access to the network capabilities of the host machine. This gives the add-on more networking capabilities but lowers the security, hence, the security rating of the add-on will be lowered when this option is used by the add-on.",
+ "title": "Host Network"
+ },
+ "host_pid": {
+ "description": "Usually, the processes the add-on runs, are isolated from all other system processes. The add-on author has requested the add-on to have access to the system processes running on the host system instance, and allow the add-on to spawn processes on the host system as well. This mode gives the add-on full access and control to your entire Home Assistant system, which adds security risks, and could damage your system when misused. Therefore, this feature impacts the add-on security score negatively.\n\nThis level of access is not granted automatically and needs to be confirmed by you. To do this, you need to disable the protection mode on the add-on manually. Only disable the protection mode if you know, need AND trust the source of this add-on.",
+ "title": "Host Processes Namespace"
+ },
+ "ingress": {
+ "description": "This add-on is using Ingress to embed its interface securely into Home Assistant.",
+ "title": "Ingress"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "auth",
+ "core": "Core",
+ "docker": "docker",
+ "hardware": "hardware",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "host",
+ "host_pid": "host pid",
+ "ingress": "ingress",
+ "rating": "rating",
+ "stage": "stage"
+ },
+ "rating": {
+ "description": "Home Assistant provides a security rating to each of the add-ons, which indicates the risks involved when using this add-on. The more access an add-on requires on your system, the lower the score, thus raising the possible security risks.\n\nA score is on a scale from 1 to 6. Where 1 is the lowest score (considered the most insecure and highest risk) and a score of 6 is the highest score (considered the most secure and lowest risk).",
+ "title": "Add-on Security Rating"
+ },
+ "role": {
+ "admin": "admin",
+ "backup": "backup",
+ "default": "default",
+ "homeassistant": "homeassistant",
+ "manager": "manager"
+ },
+ "stage": {
+ "description": "Add-ons can have one of three stages:\n\n{icon_stable} **Stable**: These are add-ons ready to be used in production.\n\n{icon_experimental} **Experimental**: These may contain bugs, and may be unfinished.\n\n{icon_deprecated} **Deprecated**: These add-ons will no longer receive any updates.",
+ "title": "Add-on Stage"
+ },
+ "stages": {
+ "deprecated": "Deprecated",
+ "experimental": "Experimental"
+ }
+ },
+ "changelog": "Changelog",
+ "cpu_usage": "Add-on CPU Usage",
+ "hostname": "Hostname",
+ "install": "install",
+ "new_update_available": "{name} {version} is available",
+ "not_available_arch": "This add-on is not compatible with the processor of your device or the operating system you have installed on your device.",
+ "not_available_version": "You are running Home Assistant {core_version_installed}, to update to this version of the add-on you need at least version {core_version_needed} of Home Assistant",
+ "open_web_ui": "Open web UI",
+ "option": {
+ "auto_update": {
+ "description": "Auto update the add-on when there is a new version available",
+ "title": "Auto update"
+ },
+ "boot": {
+ "description": "Make the add-on start during a system boot",
+ "title": "Start on boot"
+ },
+ "ingress_panel": {
+ "description": "Add this add-on to your sidebar",
+ "title": "Show in sidebar"
+ },
+ "protected": {
+ "description": "Blocks elevated system access from the add-on",
+ "title": "Protection mode"
+ },
+ "watchdog": {
+ "description": "This will start the add-on if it crashes",
+ "title": "Watchdog"
+ }
+ },
+ "protection_mode": {
+ "content": "Protection mode on this add-on is disabled! This gives the add-on full access to the entire system, which adds security risks, and could damage your system when used incorrectly. Only disable the protection mode if you know, need AND trust the source of this add-on.",
+ "enable": "Enable",
+ "title": "Protection mode is disabled!"
+ },
+ "ram_usage": "Add-on RAM Usage",
+ "rebuild": "rebuild",
+ "restart": "restart",
+ "start": "start",
+ "stop": "stop",
+ "uninstall": "uninstall",
+ "visit_addon_page": "Visit the {name} page for more details"
+ },
+ "documentation": {
+ "get_documentation": "Failed to get add-on documentation, {error}"
+ },
+ "failed_to_reset": "Failed to reset add-on configuration, {error}",
+ "failed_to_save": "Failed to save add-on configuration, {error}",
+ "logs": {
+ "get_logs": "Failed to get add-on logs, {error}"
+ },
+ "panel": {
+ "configuration": "Configuration",
+ "documentation": "Documentation",
+ "info": "Info",
+ "log": "Log"
+ },
+ "state": {
+ "installed": "Add-on is installed",
+ "not_available": "Add-on is not available on your system",
+ "not_installed": "Add-on is not installed"
+ }
+ },
+ "backup": {
+ "addons": "Add-ons",
+ "confirm_password": "Confirm backup password",
+ "could_not_create": "Could not create backup",
+ "create": "Create",
+ "create_backup": "Create backup",
+ "create_blocked_not_running": "Creating a backup is not possible right now because the system is in {state} state.",
+ "created": "Created",
+ "delete_backup_confirm": "delete",
+ "delete_backup_text": "Do you want to delete {number} {number, plural,\n one {backup}\n other {backups}\n}?",
+ "delete_backup_title": "Delete backup",
+ "delete_selected": "Delete selected backups",
+ "download_backup": "Download backup",
+ "enter_password": "Please enter a password.",
+ "failed_to_delete": "Failed to delete",
+ "folders": "Folders",
+ "full_backup": "Full backup",
+ "name": "Backup name",
+ "no_backups": "You don't have any backups yet.",
+ "partial_backup": "Partial backup",
+ "password": "Backup password",
+ "password_protection": "Password protection",
+ "passwords_not_matching": "The passwords does not match",
+ "select_type": "Select what to restore",
+ "selected": "{number} selected",
+ "size": "Size",
+ "type": "Backup type",
+ "upload_backup": "Upload backup"
+ },
+ "common": {
+ "cancel": "Cancel",
+ "close": "Close",
+ "description": "Description",
+ "error": {
+ "unknown": "Unknown error",
+ "update_failed": "Update failed"
+ },
+ "failed_to_restart_name": "Failed to restart {name}",
+ "failed_to_update_name": "Failed to update {name}",
+ "learn_more": "Learn more",
+ "menu": "Menu",
+ "new_version_available": "New version available",
+ "newest_version": "Newest Version",
+ "no": "No",
+ "refresh": "Refresh",
+ "release_notes": "Release notes",
+ "reload": "Reload",
+ "reset_defaults": "Reset to defaults",
+ "reset_options": "Reset options",
+ "restart": "Restart",
+ "restart_name": "Restart {name}",
+ "review": "review",
+ "running_version": "You are currently running version {version}",
+ "save": "Save",
+ "show": "show",
+ "show_more": "Show more information about this",
+ "update": "Update",
+ "update_available": "{count, plural,\n one {Update}\n other {{count} updates}\n} pending",
+ "version": "Version",
+ "yes": "Yes"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Are you sure you want to reset all your options?",
+ "title": "Reset options"
+ },
+ "restart": {
+ "text": "Are you sure you want to restart {name}?",
+ "title": "Restart {name}"
+ },
+ "update": {
+ "text": "Are you sure you want to update {name} to version {version}?",
+ "title": "Update {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "New version available",
+ "addon_running": "Add-on is running",
+ "addon_stopped": "Add-on is stopped",
+ "addons": "Installed add-ons",
+ "no_addons": "You don't have any add-ons installed yet. Head over to the add-on store to get started!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Cancel",
+ "description": "You are currently using ''{current_path}'' as datadisk. Moving data disks will reboot your device and it's estimated to take {time} minutes. Your Home Assistant installation will not be accessible during this period. Do not disconnect the power during the move!",
+ "loading_devices": "Loading devices",
+ "move": "Move",
+ "moving": "Moving datadisk",
+ "moving_desc": "Rebooting and moving datadisk. Please have patience",
+ "no_devices": "No suitable attached devices found",
+ "select_device": "Select new datadisk",
+ "title": "Move datadisk"
+ },
+ "hardware": {
+ "attributes": "Attributes",
+ "device_path": "Device path",
+ "id": "ID",
+ "search": "Search hardware",
+ "subsystem": "Subsystem",
+ "title": "Hardware"
+ },
+ "network": {
+ "connected_to": "Connected to {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Disabled",
+ "dns_servers": "DNS Servers",
+ "failed_to_change": "Failed to change network settings",
+ "gateway": "Gateway address",
+ "ip_netmask": "IP address/Netmask",
+ "open": "Open",
+ "scan_ap": "Scan for access points",
+ "static": "Static",
+ "title": "Network settings",
+ "unsaved": "You have unsaved changes, these will get lost if you change tabs, do you want to continue?",
+ "warning": "If you are changing the Wi-Fi, IP or gateway addresses, you might lose the connection!",
+ "wep": "WEP",
+ "wpa": "wpa-psk"
+ },
+ "registries": {
+ "add_new_registry": "Add new registry",
+ "add_registry": "Add registry",
+ "failed_to_add": "Failed to add registry",
+ "failed_to_remove": "Failed to remove registry",
+ "no_registries": "No registries configured",
+ "password": "Password",
+ "registry": "Registry",
+ "remove": "Remove",
+ "title_add": "Add New Container Registry",
+ "title_manage": "Manage Container Registries",
+ "username": "Username"
+ },
+ "repositories": {
+ "add": "Add",
+ "remove": "Remove",
+ "title": "Manage add-on repositories",
+ "used": "Repository is in use for installed add-ons and can't be removed."
+ },
+ "restart_addon": {
+ "confirm_text": "Restart add-on",
+ "text": "Do you want to restart the add-on with your changes?"
+ },
+ "update": {
+ "backup": "Backup",
+ "create_backup": "Create a backup of {name} before updating",
+ "creating_backup": "Creating backup of {name}",
+ "updating": "Updating {name} to version {version}"
+ }
+ },
+ "my": {
+ "error": "An unknown error occurred",
+ "error_addon_no_ingress": "The requested add-on does not support ingress",
+ "error_addon_not_found": "Add-on not found",
+ "error_addon_not_installed": "The requested add-on is not installed. Please install it first",
+ "error_addon_not_started": "The requested add-on is not running. Please start it first",
+ "faq_link": "My Home Assistant FAQ",
+ "not_supported": "This redirect is not supported by your Home Assistant instance. Check the {link} for the supported redirects and the version they where introduced."
+ },
+ "panel": {
+ "addons": "Add-ons",
+ "backups": "Backups",
+ "dashboard": "Dashboard",
+ "store": "Add-on Store",
+ "system": "System"
+ },
+ "store": {
+ "check_updates": "Check for updates",
+ "missing_addons": "Missing add-ons? Enable advanced mode in your user profile page",
+ "no_results_found": "No results found in {repository}.",
+ "registries": "Registries",
+ "repositories": "Repositories"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Core CPU Usage",
+ "ram_usage": "Core RAM Usage"
+ },
+ "host": {
+ "change": "Change",
+ "change_hostname": "Change Hostname",
+ "confirm_reboot": "Are you sure you want to reboot the host?",
+ "confirm_shutdown": "Are you sure you want to shutdown the host?",
+ "deployment": "Deployment",
+ "docker_version": "Docker version",
+ "emmc_lifetime_used": "eMMC Lifetime Used",
+ "failed_to_get_hardware_list": "Failed to get hardware list",
+ "failed_to_import_from_usb": "Failed to import from USB",
+ "failed_to_move": "Failed to move datadisk",
+ "failed_to_reboot": "Failed to reboot the host",
+ "failed_to_set_hostname": "Setting hostname failed",
+ "failed_to_shutdown": "Failed to shutdown the host",
+ "hardware": "Hardware",
+ "hostname": "Hostname",
+ "import_from_usb": "Import from USB",
+ "ip_address": "IP Address",
+ "move_datadisk": "Move datadisk",
+ "new_hostname": "Please enter a new hostname:",
+ "operating_system": "Operating System",
+ "reboot_host": "Reboot host",
+ "shutdown_host": "Shutdown host",
+ "used_space": "Used space"
+ },
+ "log": {
+ "get_logs": "Failed to get {provider} logs, {error}",
+ "log_provider": "Log Provider"
+ },
+ "supervisor": {
+ "beta_backup": "Make sure you have backups of your data before you activate this feature.",
+ "beta_join_confirm": "Do you want to join the beta channel?",
+ "beta_release_items": "This includes beta releases for:",
+ "beta_warning": "Beta releases are for testers and early adopters and can contain unstable code changes",
+ "channel": "Channel",
+ "cpu_usage": "Supervisor CPU Usage",
+ "failed_to_reload": "Failed to reload the Supervisor",
+ "failed_to_set_option": "Failed to set Supervisor option",
+ "failed_to_update": "Failed to update the Supervisor",
+ "join_beta_action": "Join beta channel",
+ "join_beta_description": "Get beta updates for Home Assistant (RCs), Supervisor and host",
+ "leave_beta_action": "Leave beta channel",
+ "leave_beta_description": "Get stable updates for Home Assistant, Supervisor and host",
+ "ram_usage": "Supervisor RAM Usage",
+ "reload_supervisor": "Reload Supervisor",
+ "search": "Search",
+ "share_diagnostics": "Share Diagnostics",
+ "share_diagnostics_description": "Share crash reports and diagnostic information.",
+ "share_diagonstics_description": "Would you want to automatically share crash reports and diagnostic information when the Supervisor encounters unexpected errors? {line_break} This will allow us to fix the problems, the information is only accessible to the Home Assistant Core team and will not be shared with others.{line_break} The data does not include any private/sensitive information and you can disable this in settings at any time you want.",
+ "share_diagonstics_title": "Help Improve Home Assistant",
+ "unhealthy_description": "Running an unhealthy installation will cause issues. Below is a list of issues found with your installation, click on the links to learn how you can resolve the issues.",
+ "unhealthy_reason": {
+ "docker": "The Docker environment is not working properly",
+ "privileged": "Supervisor is not privileged",
+ "setup": "Setup of the Supervisor failed",
+ "supervisor": "Supervisor was not able to update",
+ "untrusted": "Detected untrusted content"
+ },
+ "unhealthy_title": "Your installation is unhealthy",
+ "unsupported_description": "Below is a list of issues found with your installation, click on the links to learn how you can resolve the issues.",
+ "unsupported_reason": {
+ "apparmor": "AppArmor is not enabled on the host",
+ "container": "Containers known to cause issues",
+ "content-trust": "Content-trust validation is disabled",
+ "content_trust": "Content-trust validation is disabled",
+ "dbus": "DBUS",
+ "docker_configuration": "Docker Configuration",
+ "docker_version": "Docker Version",
+ "job_conditions": "Ignored job conditions",
+ "lxc": "LXC",
+ "network_manager": "Network Manager",
+ "os": "Operating System",
+ "os_agent": "OS Agent",
+ "privileged": "Supervisor is not privileged",
+ "software": "Unsupported software detected",
+ "source_mods": "Source modifications",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "You are running an unsupported installation",
+ "update_supervisor": "Update the Supervisor",
+ "warning": "WARNING"
+ }
+ },
+ "update_available": {
+ "core_note": "The supervisor will roll back to version {version} if your instance does not come up after the update.",
+ "create_backup": "Create backup before updating",
+ "creating_backup": "Creating backup of {name}",
+ "description": "You have {version} installed. Click update to update to version {newest_version}",
+ "no_update": "No update available for {name}",
+ "open_release_notes": "Open release notes",
+ "update_name": "Update {name}",
+ "updating": "Updating {name} to version {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Do you want to stay logged in?",
+ "confirm": "Yes",
+ "decline": "No"
+ },
+ "backup": {
+ "upload_backup": "Upload backup"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Arm away",
+ "arm_custom_bypass": "Custom bypass",
+ "arm_home": "Arm home",
+ "arm_night": "Arm night",
+ "arm_vacation": "Arm vacation",
+ "clear_code": "Clear",
+ "code": "Code",
+ "disarm": "Disarm"
+ },
+ "area": {
+ "area_not_found": "Area not found."
+ },
+ "automation": {
+ "last_triggered": "Last triggered",
+ "trigger": "Run Actions"
+ },
+ "button": {
+ "press": "Press"
+ },
+ "camera": {
+ "not_available": "Image not available"
+ },
+ "climate": {
+ "aux_heat": "Aux heat",
+ "away_mode": "Away mode",
+ "cooling": "{name} cooling",
+ "current_temperature": "{name} current temperature",
+ "currently": "Currently",
+ "fan_mode": "Fan mode",
+ "heating": "{name} heating",
+ "high": "high",
+ "low": "low",
+ "on_off": "On / off",
+ "operation": "Operation",
+ "preset_mode": "Preset",
+ "swing_mode": "Swing mode",
+ "target_humidity": "Target humidity",
+ "target_temperature": "Target temperature",
+ "target_temperature_entity": "{name} target temperature",
+ "target_temperature_mode": "{name} target temperature {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "decrement",
+ "increment": "increment",
+ "reset": "reset"
+ }
+ },
+ "cover": {
+ "position": "Position",
+ "tilt_position": "Tilt position"
+ },
+ "fan": {
+ "direction": "Direction",
+ "forward": "Forward",
+ "oscillate": "Oscillate",
+ "preset_mode": "Preset Mode",
+ "reverse": "Reverse",
+ "speed": "Speed"
+ },
+ "humidifier": {
+ "humidity": "Target humidity",
+ "mode": "Mode",
+ "on_entity": "{name} on",
+ "target_humidity_entity": "{name} target humidity"
+ },
+ "light": {
+ "brightness": "Brightness",
+ "cold_white_value": "Cold white brightness",
+ "color_brightness": "Color brightness",
+ "color_temperature": "Color temperature",
+ "effect": "Effect",
+ "warm_white_value": "Warm white brightness",
+ "white_value": "White brightness"
+ },
+ "lock": {
+ "code": "Code",
+ "lock": "Lock",
+ "unlock": "Unlock"
+ },
+ "media_player": {
+ "browse_media": "Browse media",
+ "media_next_track": "Next track",
+ "media_pause": "Pause",
+ "media_play": "Play",
+ "media_play_pause": "Play/pause",
+ "media_previous_track": "Previous track",
+ "media_stop": "Stop",
+ "media_volume_down": "Volume down",
+ "media_volume_mute": "Volume mute",
+ "media_volume_unmute": "Volume unmute",
+ "media_volume_up": "Volume up",
+ "nothing_playing": "Nothing Playing",
+ "sound_mode": "Sound mode",
+ "source": "Source",
+ "text_to_speak": "Text to speak",
+ "turn_off": "Turn off",
+ "turn_on": "Turn on"
+ },
+ "persistent_notification": {
+ "dismiss": "Dismiss"
+ },
+ "scene": {
+ "activate": "Activate"
+ },
+ "script": {
+ "cancel": "Cancel",
+ "cancel_multiple": "Cancel {number}",
+ "run": "Run"
+ },
+ "service": {
+ "run": "Run"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "cancel",
+ "finish": "finish",
+ "pause": "pause",
+ "start": "start"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Resume cleaning",
+ "return_to_base": "Return to dock",
+ "start_cleaning": "Start cleaning",
+ "turn_off": "Turn off",
+ "turn_on": "Turn on"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Away mode",
+ "currently": "Currently",
+ "on_off": "On / off",
+ "operation": "Operation",
+ "target_temperature": "Target temperature"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Air pressure",
+ "humidity": "Humidity",
+ "precipitation": "Precipitation",
+ "temperature": "Temperature",
+ "visibility": "Visibility",
+ "wind_speed": "Wind speed"
+ },
+ "cardinal_direction": {
+ "e": "E",
+ "ene": "ENE",
+ "ese": "ESE",
+ "n": "N",
+ "ne": "NE",
+ "nne": "NNE",
+ "nnw": "NNW",
+ "nw": "NW",
+ "s": "S",
+ "se": "SE",
+ "sse": "SSE",
+ "ssw": "SSW",
+ "sw": "SW",
+ "w": "W",
+ "wnw": "WNW",
+ "wsw": "WSW"
+ },
+ "day": "Day",
+ "forecast": "Forecast",
+ "high": "High",
+ "low": "Low",
+ "night": "Night"
+ }
+ },
+ "common": {
+ "and": "and",
+ "back": "Back",
+ "cancel": "Cancel",
+ "clear": "Clear",
+ "close": "Close",
+ "continue": "Continue",
+ "copied": "Copied",
+ "copied_clipboard": "Copied to clipboard",
+ "delete": "Delete",
+ "disable": "Disable",
+ "enable": "Enable",
+ "error_required": "Required",
+ "help": "Help",
+ "leave": "Leave",
+ "loading": "Loading",
+ "menu": "Menu",
+ "move": "Move",
+ "next": "Next",
+ "no": "No",
+ "not_now": "Not now",
+ "overflow_menu": "Overflow menu",
+ "previous": "Previous",
+ "refresh": "Refresh",
+ "remove": "Remove",
+ "rename": "Rename",
+ "save": "Save",
+ "skip": "Skip",
+ "stay": "Stay",
+ "submit": "Submit",
+ "successfully_deleted": "Successfully deleted",
+ "successfully_saved": "Successfully saved",
+ "undo": "Undo",
+ "yes": "Yes"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Add-on",
+ "error": {
+ "fetch_addons": {
+ "description": "There was an error loading add-ons.",
+ "title": "Error loading add-ons"
+ },
+ "no_supervisor": {
+ "description": "Add-ons are not supported.",
+ "title": "No Supervisor"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Add",
+ "failed_create_area": "Failed to create area.",
+ "name": "Name",
+ "text": "Enter the name of the new area.",
+ "title": "Add new area"
+ },
+ "add_new": "Add new area…",
+ "area": "Area",
+ "clear": "Clear",
+ "no_areas": "You don't have any areas",
+ "no_match": "No matching areas found",
+ "show_areas": "Show areas"
+ },
+ "attributes": {
+ "expansion_header": "Attributes"
+ },
+ "blueprint-picker": {
+ "add_user": "Add user",
+ "remove_user": "Remove user",
+ "select_blueprint": "Select a Blueprint"
+ },
+ "calendar": {
+ "my_calendars": "My Calendars",
+ "today": "Today"
+ },
+ "data-table": {
+ "clear": "Clear",
+ "filtering_by": "Filtering by",
+ "hidden": "{number} hidden",
+ "no-data": "No data",
+ "search": "Search"
+ },
+ "date-range-picker": {
+ "end_date": "End date",
+ "ranges": {
+ "last_week": "Last week",
+ "this_week": "This week",
+ "today": "Today",
+ "yesterday": "Yesterday"
+ },
+ "select": "Select",
+ "start_date": "Start date"
+ },
+ "device-picker": {
+ "clear": "Clear",
+ "device": "Device",
+ "no_area": "No area",
+ "no_devices": "You don't have any devices",
+ "no_match": "No matching devices found",
+ "show_devices": "Show devices",
+ "toggle": "Toggle"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Attribute",
+ "show_attributes": "Show attributes"
+ },
+ "entity-picker": {
+ "clear": "Clear",
+ "edit": "Edit",
+ "entity": "Entity",
+ "no_match": "No matching entities found",
+ "show_entities": "Show entities"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "History integration disabled",
+ "loading_history": "Loading state history…",
+ "no_history_found": "No state history found."
+ },
+ "logbook": {
+ "by": "by",
+ "by_service": "by service",
+ "entries_not_found": "No logbook events found.",
+ "messages": {
+ "became_unavailable": "became unavailable",
+ "changed_to_state": "changed to {state}",
+ "cleared_device_class": "cleared (no {device_class} detected)",
+ "cleared_tampering": "cleared tampering",
+ "detected_device_class": "detected {device_class}",
+ "detected_tampering": "detected tampering",
+ "is_closing": "is closing",
+ "is_opening": "is opening",
+ "rose": "rose",
+ "set": "set",
+ "turned_off": "turned off",
+ "turned_on": "turned on",
+ "was_at_home": "was detected at home",
+ "was_at_state": "was detected at {state}",
+ "was_away": "was detected away",
+ "was_closed": "was closed",
+ "was_connected": "was connected",
+ "was_disconnected": "was disconnected",
+ "was_locked": "was locked",
+ "was_low": "was low",
+ "was_normal": "was normal",
+ "was_opened": "was opened",
+ "was_plugged_in": "was plugged in",
+ "was_safe": "was safe",
+ "was_unlocked": "was unlocked",
+ "was_unplugged": "was unplugged",
+ "was_unsafe": "was unsafe"
+ },
+ "retrieval_error": "Could not load logbook",
+ "show_trace": "Show trace"
+ },
+ "media-browser": {
+ "audio_not_supported": "Your browser does not support the audio element.",
+ "choose_player": "Choose Player",
+ "class": {
+ "album": "Album",
+ "app": "App",
+ "artist": "Artist",
+ "channel": "Channel",
+ "composer": "Composer",
+ "contributing_artist": "Contributing Artist",
+ "directory": "Library",
+ "episode": "Episode",
+ "game": "Game",
+ "genre": "Genre",
+ "image": "Image",
+ "movie": "Movie",
+ "music": "Music",
+ "playlist": "Playlist",
+ "podcast": "Podcast",
+ "season": "Season",
+ "track": "Track",
+ "tv_show": "TV Show",
+ "url": "URL",
+ "video": "Video"
+ },
+ "documentation": "documentation",
+ "learn_adding_local_media": "Learn more about adding media in the {documentation}.",
+ "local_media_files": "Place your video, audio and image files in the media directory to be able to browse and play them in the browser or on supported media players.",
+ "media-player-browser": "Media",
+ "media_browsing_error": "Media Browsing Error",
+ "media_not_supported": "The Browser Media Player does not support this type of media",
+ "media_player": "Media Player",
+ "no_items": "No items",
+ "no_local_media_found": "No local media found",
+ "no_media_folder": "It looks like you have not yet created a media directory.",
+ "pick": "Pick",
+ "pick-media": "Pick Media",
+ "play": "Play",
+ "play-media": "Play Media",
+ "setup_local_help": "Check the {documentation} on how to setup local media.",
+ "video_not_supported": "Your browser does not support the video element.",
+ "web-browser": "Web Browser"
+ },
+ "picture-upload": {
+ "label": "Picture",
+ "unsupported_format": "Unsupported format, please choose a JPEG, PNG or GIF image."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Enter QR code value",
+ "manual_input": "You can scan the QR code with another QR scanner and paste the code in the input below",
+ "not_supported": "Your browser doesn't support QR scanning.",
+ "only_https_supported": "You can only use your camera to scan a QR code when using HTTPS.",
+ "select_camera": "Select camera"
+ },
+ "related-filter-menu": {
+ "filter": "Filter",
+ "filter_by_area": "Filter by area",
+ "filter_by_device": "Filter by device",
+ "filter_by_entity": "Filter by entity",
+ "filtered_by_area": "area: {area_name}",
+ "filtered_by_device": "device: {device_name}",
+ "filtered_by_entity": "entity: {entity_name}"
+ },
+ "related-items": {
+ "area": "Area",
+ "automation": "Part of the following automations",
+ "device": "Device",
+ "entity": "Related entities",
+ "group": "Part of the following groups",
+ "integration": "Integration",
+ "no_related_found": "No related items found.",
+ "scene": "Part of the following scenes",
+ "script": "Part of the following scripts"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one {day}\n other {days}\n}",
+ "hour": "{count} {count, plural,\n one {hour}\n other {hours}\n}",
+ "minute": "{count} {count, plural,\n one {minute}\n other {minutes}\n}",
+ "second": "{count} {count, plural,\n one {second}\n other {seconds}\n}",
+ "week": "{count} {count, plural,\n one {week}\n other {weeks}\n}"
+ },
+ "future_duration": {
+ "day": "In {count} {count, plural,\n one {day}\n other {days}\n}",
+ "hour": "In {count} {count, plural,\n one {hour}\n other {hours}\n}",
+ "minute": "In {count} {count, plural,\n one {minute}\n other {minutes}\n}",
+ "second": "In {count} {count, plural,\n one {second}\n other {seconds}\n}",
+ "week": "In {count} {count, plural,\n one {week}\n other {weeks}\n}"
+ },
+ "just_now": "Just now",
+ "never": "Never",
+ "past_duration": {
+ "day": "{count} {count, plural,\n one {day}\n other {days}\n} ago",
+ "hour": "{count} {count, plural,\n one {hour}\n other {hours}\n} ago",
+ "minute": "{count} {count, plural,\n one {minute}\n other {minutes}\n} ago",
+ "second": "{count} {count, plural,\n one {second}\n other {seconds}\n} ago",
+ "week": "{count} {count, plural,\n one {week}\n other {weeks}\n} ago"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Integration documentation",
+ "required": "This field is required",
+ "service_data": "Service data",
+ "target": "Targets",
+ "target_description": "What should this service use as targeted areas, devices or entities."
+ },
+ "service-picker": {
+ "service": "Service"
+ },
+ "statistic-picker": {
+ "learn_more": "Learn more about statistics",
+ "missing_entity": "Why is my entity not listed?",
+ "no_match": "No matching statistics found",
+ "no_statistics": "You don't have any statistics",
+ "statistic": "Statistic"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Loading statistics…",
+ "no_statistics_found": "No statistics found.",
+ "statistic_types": {
+ "max": "max",
+ "mean": "mean",
+ "min": "min",
+ "sum": "sum"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Choose area",
+ "add_device_id": "Choose device",
+ "add_entity_id": "Choose entity",
+ "expand": "Expand",
+ "expand_area_id": "Split this area into separate devices and entities.",
+ "expand_device_id": "Split this device into separate entities.",
+ "remove": "Remove",
+ "remove_area_id": "Remove area",
+ "remove_device_id": "Remove device",
+ "remove_entity_id": "Remove entity"
+ },
+ "user-picker": {
+ "add_user": "Add user",
+ "no_user": "No user",
+ "remove_user": "Remove user"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "If newly discovered devices for {integration} should be automatically added.",
+ "enable_new_entities_label": "Enable newly added entities.",
+ "enable_polling_description": "If Home Assistant should automatically poll {integration} entities for updates.",
+ "enable_polling_label": "Enable polling for updates.",
+ "restart_home_assistant": "You need to restart Home Assistant for your changes to take effect.",
+ "title": "System Options for {integration}",
+ "update": "Update"
+ },
+ "domain_toggler": {
+ "reset_entities": "Reset Entities",
+ "title": "Toggle Domains"
+ },
+ "entity_registry": {
+ "control": "Control",
+ "customize_link": "entity customizations",
+ "dismiss": "Dismiss",
+ "editor": {
+ "advanced": "Advanced settings",
+ "area": "Set entity area only",
+ "area_note": "By default the entities of a device are in the same area as the device. If you change the area of this entity, it will no longer follow the area of the device.",
+ "change_device_area": "Change device area",
+ "confirm_delete": "Are you sure you want to delete this entity?",
+ "delete": "Delete",
+ "device_class": "Show as",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Door",
+ "garage_door": "Garage door",
+ "opening": "Other",
+ "window": "Window"
+ },
+ "cover": {
+ "door": "Door",
+ "garage": "Garage door",
+ "window": "Window"
+ }
+ },
+ "device_disabled": "The device of this entity is disabled.",
+ "enabled_cause": "Disabled by {cause}.",
+ "enabled_delay_confirm": "The enabled entities will be added to Home Assistant in {delay} seconds",
+ "enabled_description": "Disabled entities will not be added to Home Assistant.",
+ "enabled_label": "Enable entity",
+ "enabled_restart_confirm": "Restart Home Assistant to finish enabling the entities",
+ "entity_id": "Entity ID",
+ "follow_device_area": "Follow device area",
+ "icon": "Icon",
+ "icon_error": "Icons should be in the format 'prefix:iconname', e.g. 'mdi:home'",
+ "name": "Name",
+ "note": "Note: This might not work yet with all integrations.",
+ "open_device_settings": "Open device settings",
+ "unavailable": "This entity is unavailable.",
+ "update": "Update"
+ },
+ "faq": "documentation",
+ "info_customize": "You can overwrite some attributes in the {customize_link} section.",
+ "no_unique_id": "This entity (''{entity_id}'') does not have a unique ID, therefore its settings cannot be managed from the UI. See the {faq_link} for more detail.",
+ "related": "Related",
+ "settings": "Settings"
+ },
+ "generic": {
+ "cancel": "Cancel",
+ "close": "Close",
+ "default_confirmation_title": "Are you sure?",
+ "ok": "OK"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Initial value",
+ "maximum": "Maximum value",
+ "minimum": "Minimum value",
+ "restore": "Restore the last known value when Home Assistant starts",
+ "step": "Step size"
+ },
+ "generic": {
+ "icon": "Icon",
+ "name": "Name"
+ },
+ "input_datetime": {
+ "date": "Date",
+ "datetime": "Date and time",
+ "mode": "What do you want to input",
+ "time": "Time"
+ },
+ "input_number": {
+ "box": "Input field",
+ "max": "Maximum value",
+ "min": "Minimum value",
+ "mode": "Display mode",
+ "slider": "Slider",
+ "step": "Step size",
+ "unit_of_measurement": "Unit of measurement"
+ },
+ "input_select": {
+ "add": "Add",
+ "add_option": "Add option",
+ "no_options": "There are no options yet.",
+ "options": "Options"
+ },
+ "input_text": {
+ "max": "Maximum length",
+ "min": "Minimum length",
+ "mode": "Display mode",
+ "password": "Password",
+ "pattern": "Regex pattern for client-side validation",
+ "text": "Text"
+ },
+ "platform_not_loaded": "The {platform} integration is not loaded. Please add it to your configuration either by adding 'default_config:' or ''{platform}:''.",
+ "required_error_msg": "This field is required",
+ "timer": {
+ "duration": "Duration"
+ },
+ "yaml_not_editable": "The settings of this entity cannot be edited from the UI. Only entities set up from the UI are configurable from the UI."
+ },
+ "image_cropper": {
+ "crop": "Crop"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Close cover",
+ "close_tile_cover": "Close cover tilt",
+ "close_tilt_cover": "Close cover tilt",
+ "open_cover": "Open cover",
+ "open_tilt_cover": "Open cover tilt",
+ "stop_cover": "Stop cover"
+ },
+ "details": "Details",
+ "dismiss": "Dismiss dialog",
+ "edit": "Edit entity",
+ "history": "History",
+ "last_changed": "Last changed",
+ "last_updated": "Last updated",
+ "logbook": "Logbook",
+ "person": {
+ "create_zone": "Create zone from current location"
+ },
+ "remote": {
+ "activity": "Current activity"
+ },
+ "restored": {
+ "confirm_remove_text": "Are you sure you want to remove this entity?",
+ "confirm_remove_title": "Remove entity?",
+ "not_provided": "This entity is currently unavailable and is an orphan to a removed, changed or dysfunctional integration or device.",
+ "remove_action": "Remove entity",
+ "remove_intro": "If the entity is no longer in use, you can clean it up by removing it."
+ },
+ "script": {
+ "last_action": "Last action",
+ "last_triggered": "Last triggered"
+ },
+ "settings": "Entity settings",
+ "show_more": "Show more",
+ "sun": {
+ "elevation": "Elevation",
+ "rising": "Rising",
+ "setting": "Setting"
+ },
+ "updater": {
+ "title": "Update Instructions"
+ },
+ "vacuum": {
+ "clean_spot": "Clean spot",
+ "commands": "Vacuum cleaner commands:",
+ "fan_speed": "Fan speed",
+ "locate": "Locate",
+ "pause": "Pause",
+ "return_home": "Return home",
+ "start": "Start",
+ "start_pause": "Start/Pause",
+ "status": "Status",
+ "stop": "Stop"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Attempt to parse MQTT messages as JSON",
+ "entities": "Entities",
+ "no_entities": "No entities",
+ "no_triggers": "No triggers",
+ "payload_display": "Payload display",
+ "recent_messages": "{n} most recently received message(s)",
+ "show_as_yaml": "Show as YAML",
+ "title": "{device} debug info",
+ "triggers": "Triggers"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Options"
+ },
+ "loading": {
+ "loading_flow": "Please wait while the options for {integration} are being initialized",
+ "loading_step": "Loading next step for {integration}"
+ },
+ "success": {
+ "description": "Options successfully saved."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Areas",
+ "automation": "Automations",
+ "blueprint": "Blueprints",
+ "core": "General",
+ "customize": "Customizations",
+ "devices": "Devices",
+ "energy": "Energy Configuration",
+ "entities": "Entities",
+ "helpers": "Helpers",
+ "info": "Info",
+ "integrations": "Integrations",
+ "logs": "Logs",
+ "lovelace": "Lovelace Dashboards",
+ "person": "People",
+ "scene": "Scenes",
+ "script": "Scripts",
+ "server_control": "Server Controls",
+ "tag": "Tags",
+ "users": "Users",
+ "zone": "Zones"
+ },
+ "reload": {
+ "automation": "Automations",
+ "command_line": "Command line entities",
+ "core": "Location & customizations",
+ "filesize": "File size entities",
+ "filter": "Filter entities",
+ "generic": "Generic IP camera entities",
+ "generic_thermostat": "Generic thermostat entities",
+ "group": "Groups, group entities, and notify services",
+ "history_stats": "History stats entities",
+ "homekit": "HomeKit",
+ "input_boolean": "Input booleans",
+ "input_datetime": "Input date times",
+ "input_number": "Input numbers",
+ "input_select": "Input selects",
+ "input_text": "Input texts",
+ "min_max": "Min/max entities",
+ "mqtt": "Manually configured MQTT entities",
+ "person": "People",
+ "ping": "Ping binary sensor entities",
+ "reload": "{domain}",
+ "rest": "Rest entities and notify services",
+ "rpi_gpio": "Raspberry Pi GPIO entities",
+ "scene": "Scenes",
+ "script": "Scripts",
+ "smtp": "SMTP notify services",
+ "statistics": "Statistics entities",
+ "telegram": "Telegram notify services",
+ "template": "Template entities",
+ "themes": "Themes",
+ "trend": "Trend entities",
+ "universal": "Universal media player entities",
+ "zone": "Zones"
+ },
+ "server_control": {
+ "perform_action": "{action} server",
+ "restart": "Restart",
+ "stop": "Stop"
+ },
+ "types": {
+ "navigation": "Navigate",
+ "reload": "Reload",
+ "server_control": "Server"
+ }
+ },
+ "filter_placeholder": "Entity Filter",
+ "key_c_hint": "Press 'c' on any page to open this search bar",
+ "nothing_found": "Nothing found!",
+ "title": "Quick Search"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant did not hear anything",
+ "error": "Oops, an error has occurred",
+ "found": "I found the following for you:",
+ "how_can_i_help": "How can I help?",
+ "label": "Type a question and press 'Enter'",
+ "label_voice": "Type and press 'Enter' or tap the microphone to speak"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Add Devices via this device",
+ "clusters": "Manage Clusters",
+ "device_children": "View Children",
+ "reconfigure": "Reconfigure Device",
+ "remove": "Remove Device",
+ "view_in_visualization": "View in Visualization",
+ "zigbee_information": "Zigbee device signature"
+ },
+ "confirmations": {
+ "remove": "Are you sure that you want to remove the device?"
+ },
+ "device_children": "Zigbee device children",
+ "device_signature": "Zigbee device signature",
+ "last_seen": "Last Seen",
+ "manuf": "by {manufacturer}",
+ "no_area": "No Area",
+ "power_source": "Power Source",
+ "quirk": "Quirk",
+ "services": {
+ "reconfigure": "Reconfigure ZHA device (heal device). Use this if you are having issues with the device. If the device in question is a battery powered device please ensure it is awake and accepting commands when you use this service.",
+ "remove": "Remove a device from the Zigbee network.",
+ "updateDeviceName": "Set a custom name for this device in the device registry.",
+ "zigbee_information": "View the Zigbee information for the device."
+ },
+ "unknown": "Unknown",
+ "zha_device_card": {
+ "device_name_placeholder": "Change device name"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Attribute",
+ "battery_device_warning": "You will need to wake battery powered devices before starting the reconfiguration process. Refer to your device's manual for instructions on how to wake the device.",
+ "bind_header": "Binding",
+ "button_hide": "Hide Details",
+ "button_show": "Show Details",
+ "cluster_header": "Cluster",
+ "configuration_complete": "Device reconfiguration complete.",
+ "configuration_failed": "The device reconfiguration failed. Additional information may be available in the logs.",
+ "configuring_alt": "Configuring",
+ "heading": "Reconfiguring device",
+ "in_progress": "The device is being reconfigured. This may take some time.",
+ "introduction": "Reconfigure a device on your Zigbee network. Use this feature if your device is not functioning correctly.",
+ "min_max_change": "min/max/change",
+ "reporting_header": "Reporting",
+ "run_in_background": "You can close this dialog and the reconfiguration will continue in the background.",
+ "start_reconfiguration": "Start Reconfiguration"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\n one {day}\n other {days}\n}",
+ "hour": "{count} {count, plural,\n one {hour}\n other {hours}\n}",
+ "minute": "{count} {count, plural,\n one {minute}\n other {minutes}\n}",
+ "second": "{count} {count, plural,\n one {second}\n other {seconds}\n}",
+ "week": "{count} {count, plural,\n one {week}\n other {weeks}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "You can still edit your config in YAML.",
+ "editor_not_available": "No visual editor available for type ''{type}''.",
+ "editor_not_supported": "Visual editor is not supported for this configuration",
+ "error_detected": "Configuration errors detected",
+ "key_missing": "Required key ''{key}'' is missing.",
+ "key_not_expected": "Key ''{key}'' is not expected or not supported by the visual editor.",
+ "key_wrong_type": "The provided value for ''{key}'' is not supported by the visual editor. We support ({type_correct}) but received ({type_wrong}).",
+ "no_state_array_support": "Multiple state values not supported in visual editor",
+ "no_template_editor_support": "Templates not supported in visual editor",
+ "no_type_provided": "No type provided."
+ },
+ "supervisor": {
+ "ask": "Ask for help",
+ "observer": "Check the Observer",
+ "reboot": "Try a reboot of the host",
+ "system_health": "Check System Health",
+ "title": "Could not load the Supervisor panel!",
+ "wait": "If you just started, make sure you have given the Supervisor enough time to start."
+ }
+ },
+ "login-form": {
+ "log_in": "Log in",
+ "password": "Password",
+ "remember": "Remember"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Click button to configure {entity}",
+ "close": "Close",
+ "dismiss_all": "Dismiss all",
+ "empty": "No Notifications",
+ "title": "Notifications"
+ },
+ "notification_toast": {
+ "connection_lost": "Connection lost. Reconnecting…",
+ "dismiss": "Dismiss",
+ "integration_starting": "Starting {integration}, not everything will be available until it is finished.",
+ "service_call_failed": "Failed to call service {service}.",
+ "started": "Home Assistant has started!",
+ "starting": "Home Assistant is starting, not everything will be available until it is finished.",
+ "triggered": "Triggered {name}",
+ "wrapping_up_startup": "Wrapping up startup, not everything will be available until it is finished."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Missing config options? Enable advanced mode on",
+ "link_profile_page": "your profile page"
+ },
+ "areas": {
+ "add_picture": "Add a picture",
+ "assigned_to_area": "Assigned to this area",
+ "caption": "Areas",
+ "data_table": {
+ "area": "Area",
+ "devices": "Devices",
+ "entities": "Entities"
+ },
+ "delete": {
+ "confirmation_text": "All devices in this area will become unassigned.",
+ "confirmation_title": "Are you sure you want to delete this area?"
+ },
+ "description": "Group devices and entities into areas",
+ "edit_settings": "Area settings",
+ "editor": {
+ "area_id": "Area ID",
+ "create": "Create",
+ "default_name": "New Area",
+ "delete": "Delete",
+ "linked_entities_caption": "Entities",
+ "name": "Name",
+ "name_required": "Name is required",
+ "no_linked_entities": "There are no entities linked to this area.",
+ "unknown_error": "Unknown error",
+ "update": "Update"
+ },
+ "picker": {
+ "create_area": "Create Area",
+ "header": "Areas",
+ "integrations_page": "Integrations page",
+ "introduction": "Areas are used to organize where devices are. This information will be used throughout Home Assistant to help you in organizing your interface, permissions and integrations with other systems.",
+ "introduction2": "To place devices in an area, use the link below to navigate to the integrations page and then click on a configured integration to get to the device cards.",
+ "no_areas": "Looks like you have no areas yet!"
+ },
+ "targeting_area": "Targeting this area"
+ },
+ "automation": {
+ "caption": "Automations",
+ "description": "Create custom behavior rules for your home",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Use a blueprint"
+ },
+ "header": "Create a new automation",
+ "how": "How do you want to create your new automation?",
+ "start_empty": "Start with an empty automation",
+ "start_empty_description": "Create a new automation from scratch",
+ "thingtalk": {
+ "create": "Create",
+ "header": "Describe the automation you want to create",
+ "input_label": "What should this automation do?",
+ "intro": "And we will try to create it for you. For example: Turn the lights off when I leave."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Add action",
+ "delete": "Delete",
+ "delete_confirm": "Are you sure you want to delete this?",
+ "duplicate": "Duplicate",
+ "header": "Actions",
+ "introduction": "The actions are what Home Assistant will do when the automation is triggered.",
+ "learn_more": "Learn more about actions",
+ "name": "Action",
+ "type": {
+ "choose": {
+ "add_option": "Add option",
+ "conditions": "Conditions",
+ "default": "Default actions",
+ "label": "Choose",
+ "option": "Option {number}",
+ "remove_option": "Remove option",
+ "sequence": "Actions"
+ },
+ "condition": {
+ "label": "Condition"
+ },
+ "delay": {
+ "delay": "Duration",
+ "label": "Wait for time to pass (delay)"
+ },
+ "device_id": {
+ "action": "Action",
+ "extra_fields": {
+ "brightness_pct": "Brightness",
+ "code": "Code",
+ "flash": "Flash",
+ "humidity": "Humidity",
+ "message": "Message",
+ "mode": "Mode",
+ "position": "Position",
+ "title": "Title",
+ "value": "Value"
+ },
+ "label": "Device"
+ },
+ "event": {
+ "event": "Event",
+ "label": "Fire event",
+ "service_data": "Service data"
+ },
+ "repeat": {
+ "label": "Repeat",
+ "sequence": "Actions",
+ "type": {
+ "count": {
+ "label": "Count"
+ },
+ "until": {
+ "conditions": "Until conditions",
+ "label": "Until"
+ },
+ "while": {
+ "conditions": "While conditions",
+ "label": "While"
+ }
+ },
+ "type_select": "Repeat type"
+ },
+ "scene": {
+ "label": "Activate scene"
+ },
+ "service": {
+ "label": "Call service"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Continue on timeout",
+ "label": "Wait for a trigger",
+ "timeout": "Timeout (optional)"
+ },
+ "wait_template": {
+ "continue_timeout": "Continue on timeout",
+ "label": "Wait for a template",
+ "timeout": "Timeout (optional)",
+ "wait_template": "Wait Template"
+ }
+ },
+ "type_select": "Action type",
+ "unsupported_action": "No visual editor support for action: {action}"
+ },
+ "alias": "Name",
+ "blueprint": {
+ "blueprint_to_use": "Blueprint to use",
+ "header": "Blueprint",
+ "no_blueprints": "You don't have any blueprints",
+ "no_inputs": "This blueprint doesn't have any inputs."
+ },
+ "conditions": {
+ "add": "Add condition",
+ "delete": "Delete",
+ "delete_confirm": "Are you sure you want to delete this?",
+ "duplicate": "Duplicate",
+ "header": "Conditions",
+ "introduction": "Conditions are optional and will prevent the automation from running unless all conditions are satisfied.",
+ "learn_more": "Learn more about conditions",
+ "name": "Condition",
+ "type": {
+ "and": {
+ "label": "And"
+ },
+ "device": {
+ "condition": "Condition",
+ "extra_fields": {
+ "above": "Above",
+ "below": "Below",
+ "for": "Duration",
+ "hvac_mode": "HVAC mode",
+ "preset_mode": "Preset mode"
+ },
+ "label": "Device"
+ },
+ "not": {
+ "label": "Not"
+ },
+ "numeric_state": {
+ "above": "Above",
+ "below": "Below",
+ "label": "Numeric state",
+ "value_template": "Value template (optional)"
+ },
+ "or": {
+ "label": "Or"
+ },
+ "state": {
+ "label": "State",
+ "state": "State"
+ },
+ "sun": {
+ "after": "After:",
+ "after_offset": "After offset (optional)",
+ "before": "Before:",
+ "before_offset": "Before offset (optional)",
+ "label": "Sun",
+ "sunrise": "Sunrise",
+ "sunset": "Sunset"
+ },
+ "template": {
+ "label": "Template",
+ "value_template": "Value template"
+ },
+ "time": {
+ "after": "After",
+ "before": "Before",
+ "label": "Time",
+ "type_input": "Value of a date/time helper",
+ "type_value": "Fixed time",
+ "weekdays": {
+ "fri": "Friday",
+ "mon": "Monday",
+ "sat": "Saturday",
+ "sun": "Sunday",
+ "thu": "Thursday",
+ "tue": "Tuesday",
+ "wed": "Wednesday"
+ }
+ },
+ "trigger": {
+ "id": "Trigger ID",
+ "label": "Trigger",
+ "no_triggers": "No triggers available"
+ },
+ "zone": {
+ "entity": "Entity with location",
+ "label": "Zone",
+ "zone": "Zone"
+ }
+ },
+ "type_select": "Condition type",
+ "unsupported_condition": "No visual editor support for condition: {condition}"
+ },
+ "copy_to_clipboard": "Copy to Clipboard",
+ "default_name": "New Automation",
+ "description": {
+ "label": "Description",
+ "placeholder": "Optional description"
+ },
+ "edit_ui": "Edit in visual editor",
+ "edit_yaml": "Edit in YAML",
+ "enable_disable": "Enable/Disable automation",
+ "introduction": "Use automations to bring your home to life.",
+ "load_error_not_editable": "Only automations in automations.yaml are editable.",
+ "load_error_unknown": "Error loading automation ({err_no}).",
+ "max": {
+ "parallel": "Max number of parallel runs",
+ "queued": "Queue length"
+ },
+ "modes": {
+ "description": "The mode controls what happens when the automation is triggered while the actions are still running from a previous trigger. Check the {documentation_link} for more info.",
+ "documentation": "automation documentation",
+ "label": "Mode",
+ "parallel": "Parallel",
+ "queued": "Queued",
+ "restart": "Restart",
+ "single": "Single (default)"
+ },
+ "move_down": "Move down",
+ "move_up": "Move up",
+ "save": "Save",
+ "show_trace": "Show trace",
+ "triggers": {
+ "add": "Add trigger",
+ "delete": "Delete",
+ "delete_confirm": "Are you sure you want to delete this?",
+ "duplicate": "Duplicate",
+ "edit_id": "Edit trigger ID",
+ "header": "Triggers",
+ "id": "Trigger ID",
+ "introduction": "Triggers are what starts the processing of an automation rule. It is possible to specify multiple triggers for the same rule. Once a trigger starts, Home Assistant will validate the conditions, if any, and call the action.",
+ "learn_more": "Learn more about triggers",
+ "name": "Trigger",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Above",
+ "below": "Below",
+ "for": "Duration (optional)",
+ "zone": "Zone"
+ },
+ "label": "Device",
+ "trigger": "Trigger"
+ },
+ "event": {
+ "context_user_pick": "Select user",
+ "context_user_picked": "User firing event",
+ "context_users": "Limit to events triggered by",
+ "event_data": "Event data",
+ "event_type": "Event type",
+ "label": "Event"
+ },
+ "geo_location": {
+ "enter": "Enter",
+ "event": "Event:",
+ "label": "Geolocation",
+ "leave": "Leave",
+ "source": "Source",
+ "zone": "Zone"
+ },
+ "homeassistant": {
+ "event": "Event:",
+ "label": "Home Assistant",
+ "shutdown": "Shutdown",
+ "start": "Start"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Payload (optional)",
+ "topic": "Topic"
+ },
+ "numeric_state": {
+ "above": "Above",
+ "below": "Below",
+ "label": "Numeric state",
+ "value_template": "Value template (optional)"
+ },
+ "state": {
+ "attribute": "Attribute (optional)",
+ "for": "For (optional)",
+ "from": "From (optional)",
+ "label": "State",
+ "to": "To (optional)"
+ },
+ "sun": {
+ "event": "Event:",
+ "label": "Sun",
+ "offset": "Offset (optional)",
+ "sunrise": "Sunrise",
+ "sunset": "Sunset"
+ },
+ "tag": {
+ "label": "Tag"
+ },
+ "template": {
+ "label": "Template",
+ "value_template": "Value template"
+ },
+ "time": {
+ "at": "At time",
+ "label": "Time",
+ "type_input": "Value of a date/time helper",
+ "type_value": "Fixed time"
+ },
+ "time_pattern": {
+ "hours": "Hours",
+ "label": "Time Pattern",
+ "minutes": "Minutes",
+ "seconds": "Seconds"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook ID"
+ },
+ "zone": {
+ "enter": "Enter",
+ "entity": "Entity with location",
+ "event": "Event:",
+ "label": "Zone",
+ "leave": "Leave",
+ "zone": "Zone"
+ }
+ },
+ "type_select": "Trigger type",
+ "unsupported_platform": "No visual editor support for platform: {platform}"
+ },
+ "unsaved_confirm": "You have unsaved changes. Are you sure you want to leave?"
+ },
+ "picker": {
+ "add_automation": "Add automation",
+ "delete_automation": "Delete automation",
+ "delete_confirm": "Are you sure you want to delete this automation?",
+ "dev_automation": "Debug automation",
+ "dev_only_editable": "Only automations that have a unique ID assigned are debuggable.",
+ "duplicate": "Duplicate",
+ "duplicate_automation": "Duplicate automation",
+ "edit_automation": "Edit automation",
+ "header": "Automation Editor",
+ "headers": {
+ "name": "Name"
+ },
+ "introduction": "The automation editor allows you to create and edit automations. Please follow the link below to read the instructions to make sure that you have configured Home Assistant correctly.",
+ "learn_more": "Learn more about automations",
+ "no_automations": "We couldn’t find any automations",
+ "only_editable": "Only automations defined in automations.yaml are editable.",
+ "pick_automation": "Pick automation to edit",
+ "show_info_automation": "Show info about automation"
+ },
+ "thingtalk": {
+ "create": "Create automation",
+ "link_devices": {
+ "ambiguous_entities": "One or more devices have more than one matching entity, please pick the one you want to use.",
+ "header": "Great! Now we need to link some devices",
+ "unknown_placeholder": "Unknown placeholder"
+ },
+ "task_selection": {
+ "error_empty": "Enter a command or tap skip.",
+ "error_unsupported": "We couldn't create an automation for that (yet?).",
+ "for_example": "For example:",
+ "header": "Create a new automation",
+ "introduction": "Type below what this automation should do, and we will try to convert it into a Home Assistant automation.",
+ "language_note": "Note: Only English is supported for now."
+ }
+ },
+ "trace": {
+ "download_trace": "Download trace",
+ "edit_automation": "Edit automation",
+ "newer_trace": "Newer trace",
+ "older_trace": "Older trace",
+ "refresh": "Refresh"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "community forums",
+ "error_no_url": "Please enter the URL of the blueprint.",
+ "file_name": "Blueprint Path",
+ "header": "Import a blueprint",
+ "import_btn": "Preview blueprint",
+ "import_header": "Blueprint ''{name}''",
+ "import_introduction_link": "You can import blueprints of other users from Github and the {community_link}. Enter the URL of the blueprint below.",
+ "importing": "Loading blueprint…",
+ "raw_blueprint": "Blueprint content",
+ "save_btn": "Import blueprint",
+ "saving": "Importing blueprint…",
+ "unsupported_blueprint": "This blueprint is not supported",
+ "url": "URL of the blueprint"
+ },
+ "caption": "Blueprints",
+ "description": "Manage blueprints",
+ "overview": {
+ "add_blueprint": "Import blueprint",
+ "confirm_delete_header": "Delete this blueprint?",
+ "confirm_delete_text": "Are you sure you want to delete this blueprint?",
+ "create_automation": "Create automation",
+ "create_script": "Create script",
+ "delete_blueprint": "Delete blueprint",
+ "discover_more": "Discover more blueprints",
+ "header": "Blueprint Editor",
+ "headers": {
+ "domain": "Domain",
+ "file_name": "File name",
+ "name": "Name",
+ "type": "Type"
+ },
+ "introduction": "The blueprint configuration allows you to import and manage your blueprints.",
+ "learn_more": "Learn more about using blueprints",
+ "share_blueprint": "Share blueprint",
+ "share_blueprint_no_url": "Unable to share blueprint: no source url",
+ "types": {
+ "automation": "Automation",
+ "script": "Script"
+ },
+ "use_blueprint": "Create automation"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Configuration documentation",
+ "disable": "disable",
+ "enable": "enable",
+ "enable_ha_skill": "Enable the Home Assistant skill for Alexa",
+ "enable_state_reporting": "Enable State Reporting",
+ "info": "With the Alexa integration for Home Assistant Cloud you'll be able to control all your Home Assistant devices via any Alexa-enabled device.",
+ "info_state_reporting": "If you enable state reporting, Home Assistant will send all state changes of exposed entities to Amazon. This allows you to always see the latest states in the Alexa app and use the state changes to create routines.",
+ "manage_entities": "Manage Entities",
+ "state_reporting_error": "Unable to {enable_disable} report state.",
+ "sync_entities": "Sync Entities to Amazon",
+ "sync_entities_error": "Failed to sync entities:",
+ "title": "Alexa"
+ },
+ "connected": "Connected",
+ "connecting": "Connecting…",
+ "connection_status": "Cloud connection status",
+ "fetching_subscription": "Fetching subscription…",
+ "google": {
+ "config_documentation": "Configuration documentation",
+ "devices_pin": "Security Devices PIN",
+ "enable_ha_skill": "Activate the Home Assistant Cloud skill for Google Assistant",
+ "enable_state_reporting": "Enable State Reporting",
+ "enter_pin_error": "Unable to store PIN:",
+ "enter_pin_hint": "Enter a PIN to use security devices",
+ "enter_pin_info": "Please enter a PIN to interact with security devices. Security devices are doors, garage doors and locks. You will be asked to say/enter this PIN when interacting with such devices via Google Assistant.",
+ "info": "With the Google Assistant integration for Home Assistant Cloud you'll be able to control all your Home Assistant devices via any Google Assistant-enabled device.",
+ "info_state_reporting": "If you enable state reporting, Home Assistant will send all state changes of exposed entities to Google. This allows you to always see the latest states in the Google app.",
+ "manage_entities": "Manage Entities",
+ "not_configured_text": "Before you can use Google Assistant, you need to activate the Home Assistant Cloud skill for Google Assistant in the Google Home app.",
+ "not_configured_title": "Google Assistant is not activated",
+ "security_devices": "Security Devices",
+ "sync_entities": "Sync Entities to Google",
+ "sync_entities_404_message": "Failed to sync your entities to Google, ask Google 'Hey Google, sync my devices' to sync your entities.",
+ "title": "Google Assistant"
+ },
+ "integrations": "Integrations",
+ "integrations_introduction": "Integrations for Home Assistant Cloud allow you to connect with services in the cloud without having to expose your Home Assistant instance publicly on the internet.",
+ "integrations_introduction2": "Check the website for ",
+ "integrations_link_all_features": " all available features",
+ "manage_account": "Manage Account",
+ "nabu_casa_account": "Nabu Casa Account",
+ "not_connected": "Not Connected",
+ "remote": {
+ "access_is_being_prepared": "Remote control is being prepared. We will notify you when it's ready.",
+ "certificate_info": "Certificate Info",
+ "connected": "Connected",
+ "info": "Home Assistant Cloud provides a secure remote connection to your instance while away from home.",
+ "instance_is_available": "Your instance is available at",
+ "instance_will_be_available": "Your instance will be available at",
+ "link_learn_how_it_works": "Learn how it works",
+ "not_connected": "Not Connected",
+ "reconnecting": "Not connected. Trying to reconnect.",
+ "remote_enabled": {
+ "caption": "Automatically connect",
+ "description": "Enable this option to make sure that your Home Assistant instance is always remotely accessible."
+ },
+ "title": "Remote Control"
+ },
+ "sign_out": "Sign out",
+ "thank_you_note": "Thank you for being part of Home Assistant Cloud. It's because of people like you that we are able to make a great home automation experience for everyone. Thank you!",
+ "tts": {
+ "default_language": "Default language to use",
+ "dialog": {
+ "create_automation": "Create Automation",
+ "example_message": "Hello {name}, you can play any text on any supported media player!",
+ "header": "Try Text to Speech",
+ "play": "Play",
+ "target": "Target",
+ "target_browser": "Browser"
+ },
+ "female": "Female",
+ "info": "Bring personality to your home by having it speak to you by using our Text-to-Speech services. You can use this in automations and scripts by using the {service} service.",
+ "male": "Male",
+ "title": "Text to Speech",
+ "try": "Try"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Failed to disable webhook:",
+ "info": "Anything that is configured to be triggered by a webhook can be given a publicly accessible URL to allow you to send data back to Home Assistant from anywhere, without exposing your instance to the internet.",
+ "link_learn_more": "Learn more about creating webhook-powered automations.",
+ "loading": "Loading…",
+ "manage": "Manage",
+ "no_hooks_yet": "Looks like you have no webhooks yet. Get started by configuring a ",
+ "no_hooks_yet2": " or by creating a ",
+ "no_hooks_yet_link_automation": "webhook automation",
+ "no_hooks_yet_link_integration": "webhook-based integration",
+ "title": "Webhooks"
+ }
+ },
+ "alexa": {
+ "banner": "Editing which entities are exposed via this UI is disabled because you have configured entity filters in configuration.yaml.",
+ "dont_expose_entity": "Don't expose entity",
+ "expose": "Expose to Alexa",
+ "expose_entity": "Expose entity",
+ "exposed": "{selected} exposed",
+ "exposed_entities": "Exposed entities",
+ "follow_domain": "Follow domain",
+ "manage_domains": "Manage domains",
+ "not_exposed": "{selected} not exposed",
+ "not_exposed_entities": "Not exposed entities",
+ "title": "Alexa"
+ },
+ "description_features": "Control home when away and integrate with Alexa and Google Assistant",
+ "description_login": "Logged in as {email}",
+ "description_not_login": "Not logged in",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Certificate expiration date:",
+ "certificate_information": "Certificate Information",
+ "close": "Close",
+ "fingerprint": "Certificate fingerprint:",
+ "will_be_auto_renewed": "will be automatically renewed"
+ },
+ "dialog_cloudhook": {
+ "available_at": "The webhook is available at the following URL:",
+ "close": "Close",
+ "confirm_disable": "Are you sure you want to disable this webhook?",
+ "copied_to_clipboard": "Copied to clipboard",
+ "info_disable_webhook": "If you no longer want to use this webhook, you can",
+ "link_disable_webhook": "disable it",
+ "managed_by_integration": "This webhook is managed by an integration and cannot be disabled.",
+ "view_documentation": "View documentation",
+ "webhook_for": "Webhook for {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "Check your email for instructions on how to reset your password.",
+ "email": "Email",
+ "email_error_msg": "Invalid email",
+ "instructions": "Enter your email address and we will send you a link to reset your password.",
+ "send_reset_email": "Send reset email",
+ "subtitle": "Forgot your password",
+ "title": "Forgot password"
+ },
+ "google": {
+ "banner": "Editing which entities are exposed via this UI is disabled because you have configured entity filters in configuration.yaml.",
+ "disable_2FA": "Disable two factor authentication",
+ "dont_expose_entity": "Don't expose entity",
+ "expose": "Expose to Google Assistant",
+ "expose_entity": "Expose entity",
+ "exposed": "{selected} exposed",
+ "exposed_entities": "Exposed entities",
+ "follow_domain": "Follow domain",
+ "manage_domains": "Manage domains",
+ "not_exposed": "{selected} not exposed",
+ "not_exposed_entities": "Not exposed entities",
+ "sync_to_google": "Synchronizing changes to Google.",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "You need to confirm your email before logging in.",
+ "alert_password_change_required": "You need to change your password before logging in.",
+ "dismiss": "Dismiss",
+ "email": "Email",
+ "email_error_msg": "Invalid email",
+ "forgot_password": "Forgot password?",
+ "introduction": "Home Assistant Cloud provides you with a secure remote connection to your instance while away from home. It also allows you to connect with cloud-only services: Amazon Alexa and Google Assistant.",
+ "introduction2": "This service is run by our partner ",
+ "introduction2a": ", a company founded by the founders of Home Assistant.",
+ "introduction3": "Home Assistant Cloud is a subscription service with a free one month trial. No payment information necessary.",
+ "learn_more_link": "Learn more about Home Assistant Cloud",
+ "password": "Password",
+ "password_error_msg": "Passwords are at least 8 characters",
+ "sign_in": "Sign in",
+ "start_trial": "Start your free 1 month trial",
+ "title": "Cloud Login",
+ "trial_info": "No payment information necessary"
+ },
+ "register": {
+ "account_created": "Account created! Check your email for instructions on how to activate your account.",
+ "create_account": "Create Account",
+ "email_address": "Email address",
+ "email_error_msg": "Invalid email",
+ "feature_amazon_alexa": "Integration with Amazon Alexa",
+ "feature_google_home": "Integration with Google Assistant",
+ "feature_remote_control": "Control of Home Assistant away from home",
+ "feature_webhook_apps": "Easy integration with webhook-based apps like OwnTracks",
+ "headline": "Start your free trial",
+ "information": "Create an account to start your free one month trial with Home Assistant Cloud. No payment information necessary.",
+ "information2": "The trial will give you access to all the benefits of Home Assistant Cloud, including:",
+ "information3": "This service is run by our partner ",
+ "information3a": ", a company founded by the founders of Home Assistant.",
+ "information4": "By registering an account you agree to the following terms and conditions.",
+ "link_privacy_policy": "Privacy Policy",
+ "link_terms_conditions": "Terms and Conditions",
+ "password": "Password",
+ "password_error_msg": "Passwords are at least 8 characters",
+ "resend_confirm_email": "Resend confirmation email",
+ "start_trial": "Start Trial",
+ "title": "Register Account"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "You have unsaved changes. Are you sure you want to leave?"
+ },
+ "learn_more": "Learn more"
+ },
+ "core": {
+ "caption": "General",
+ "description": "Location, network and analytics",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Currency",
+ "edit_requires_storage": "Editor disabled because config stored in configuration.yaml.",
+ "elevation": "Elevation",
+ "elevation_meters": "meters",
+ "external_url": "External URL",
+ "find_currency_value": "Find your value",
+ "imperial_example": "Fahrenheit, pounds",
+ "internal_url": "Internal URL",
+ "latitude": "Latitude",
+ "location_name": "Name of your Home Assistant installation",
+ "longitude": "Longitude",
+ "metric_example": "Celsius, kilograms",
+ "save_button": "Save",
+ "time_zone": "Time Zone",
+ "unit_system": "Unit System",
+ "unit_system_imperial": "Imperial",
+ "unit_system_metric": "Metric"
+ },
+ "header": "General Configuration",
+ "introduction": "Manage your location, network and analytics."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "The following attributes are already set in customize.yaml",
+ "attributes_not_set": "The following attributes weren't set. Set them if you like.",
+ "attributes_outside": "The following attributes are customized from outside of customize.yaml",
+ "attributes_override": "You can override them if you like.",
+ "attributes_set": "The following attributes of the entity are set programmatically.",
+ "caption": "Customizations",
+ "description": "Customize your entities",
+ "different_include": "Possibly via a domain, a glob or a different include.",
+ "pick_attribute": "Pick an attribute to override",
+ "picker": {
+ "documentation": "Customization documentation",
+ "header": "Customizations",
+ "introduction": "Tweak per-entity attributes. Added/edited customizations will take effect immediately. Removed customizations will take effect when the entity is updated."
+ },
+ "warning": {
+ "include_link": "include customize.yaml",
+ "include_sentence": "It seems that your configuration.yaml doesn't properly",
+ "not_applied": "Changes made here are written in it, but will not be applied after a configuration reload unless the include is in place."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Manage automations, scenes, scripts and helpers",
+ "title": "Automations & Scenes"
+ },
+ "blueprints": {
+ "description": "Pre-made automations and scripts by the community",
+ "title": "Blueprints"
+ },
+ "companion": {
+ "description": "Location and notifications",
+ "title": "Companion App"
+ },
+ "dashboards": {
+ "description": "Create customized sets of cards to control your home",
+ "title": "Dashboards"
+ },
+ "devices": {
+ "description": "Integrations, devices, entities and areas",
+ "title": "Devices & Services"
+ },
+ "energy": {
+ "description": "Monitor your energy production and consumption",
+ "title": "Energy"
+ },
+ "people": {
+ "description": "Manage the people and zones that Home Assistant tracks",
+ "title": "People & Zones"
+ },
+ "settings": {
+ "description": "Basic settings, server controls, logs and info",
+ "title": "Settings"
+ },
+ "supervisor": {
+ "description": "Create backups, check logs or reboot your system",
+ "title": "Add-ons, Backups & Supervisor"
+ },
+ "tags": {
+ "description": "Trigger automations when an NFC tag, QR code, etc. is scanned",
+ "title": "Tags"
+ }
+ },
+ "devices": {
+ "add_prompt": "No {name} have been added using this device yet. You can add one by clicking the + button above.",
+ "automation": {
+ "actions": {
+ "caption": "When something is triggered…",
+ "no_actions": "No actions",
+ "unknown_action": "Unknown action"
+ },
+ "automations": "Automations",
+ "conditions": {
+ "caption": "Only do something if…",
+ "no_conditions": "No conditions",
+ "unknown_condition": "Unknown condition"
+ },
+ "create": "Create automation with device",
+ "create_disable": "Can't create automation with disabled device",
+ "no_automations": "No automations",
+ "no_device_automations": "There are no automations available for this device.",
+ "triggers": {
+ "caption": "Do something when…",
+ "no_triggers": "No triggers",
+ "unknown_trigger": "Unknown trigger"
+ },
+ "unknown_automation": "Unknown automation"
+ },
+ "cant_edit": "You can only edit items that are created in the UI.",
+ "caption": "Devices",
+ "confirm_delete": "Are you sure you want to delete this device?",
+ "confirm_disable_config_entry": "There are no more devices for the config entry {entry_name}, do you want to instead disable the config entry?",
+ "confirm_rename_entity_ids": "Do you also want to rename the entity IDs of your entities?",
+ "confirm_rename_entity_ids_warning": "This will not change any configuration (like automations, scripts, scenes, dashboards) that is currently using these entities! You will have to update them yourself to use the new entity IDs!",
+ "data_table": {
+ "area": "Area",
+ "battery": "Battery",
+ "device": "Device",
+ "integration": "Integration",
+ "manufacturer": "Manufacturer",
+ "model": "Model",
+ "no_devices": "No devices",
+ "no_integration": "No integration"
+ },
+ "delete": "Delete",
+ "description": "Manage configured devices",
+ "device_info": "Device info",
+ "device_not_found": "Device not found.",
+ "disabled": "Disabled",
+ "disabled_by": {
+ "config_entry": "Config entry",
+ "integration": "Integration",
+ "user": "User"
+ },
+ "download_diagnostics": "Download diagnostics",
+ "edit_settings": "Edit settings",
+ "enabled_cause": "The device is disabled by {cause}.",
+ "enabled_description": "Disabled devices will not be shown and entities belonging to the device will be disabled and not added to Home Assistant.",
+ "enabled_label": "Enable device",
+ "entities": {
+ "add_entities_lovelace": "Add to Lovelace",
+ "config": "Configuration",
+ "control": "Controls",
+ "diagnostic": "Diagnostic",
+ "disabled_entities": "+{count} {count, plural,\n one {disabled entity}\n other {disabled entities}\n}",
+ "entities": "Entities",
+ "hide_disabled": "Hide disabled",
+ "none": "This device has no entities",
+ "sensor": "Sensors",
+ "state": "State"
+ },
+ "name": "Name",
+ "no_devices": "No devices",
+ "open_configuration_url_device": "Visit device",
+ "open_configuration_url_service": "Visit service",
+ "picker": {
+ "filter": {
+ "filter": "Filter",
+ "hidden_devices": "{number} hidden {number, plural,\n one {device}\n other {devices}\n}",
+ "show_all": "Show all",
+ "show_disabled": "Show disabled devices"
+ },
+ "search": "Search devices"
+ },
+ "scene": {
+ "create": "Create scene with device",
+ "create_disable": "Can't create scene with disabled device",
+ "no_scenes": "No scenes",
+ "scenes": "Scenes"
+ },
+ "scenes": "Scenes",
+ "script": {
+ "create": "Create script with device",
+ "create_disable": "Can't create script with disabled device",
+ "no_scripts": "No scripts",
+ "scripts": "Scripts"
+ },
+ "scripts": "Scripts",
+ "unknown_error": "Unknown error",
+ "unnamed_device": "Unnamed device",
+ "update": "Update",
+ "update_device_error": "Updating the device failed"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Add battery system",
+ "battery_systems": "Battery systems",
+ "dialog": {
+ "energy_into_battery": "Energy going in to the battery (kWh)",
+ "energy_out_of_battery": "Energy coming out of the battery (kWh)",
+ "header": "Configure battery system"
+ },
+ "learn_more": "More information on how to get started.",
+ "sub": "If you have a battery system, you can configure it to monitor how much energy was stored and used from your battery.",
+ "title": "Home Battery Storage"
+ },
+ "caption": "Energy",
+ "delete_integration": "Are you sure you want to delete this integration? It will remove the entities it provides",
+ "delete_source": "Are you sure you want to delete this source?",
+ "description": "Monitor your energy production and consumption",
+ "device_consumption": {
+ "add_device": "Add device",
+ "add_stat": "Pick entity to track energy of",
+ "devices": "Devices",
+ "dialog": {
+ "device_consumption_energy": "Device consumption energy (kWh)",
+ "header": "Add a device",
+ "selected_stat_intro": "Select the entity that represents the device energy usage."
+ },
+ "learn_more": "More information on how to get started.",
+ "selected_stat": "Tracking energy for",
+ "sub": "Tracking the energy usage of individual devices allows Home Assistant to break down your energy usage by device.",
+ "title": "Individual devices"
+ },
+ "gas": {
+ "add_gas_source": "Add gas source",
+ "dialog": {
+ "cost_entity": "Use an entity with current price",
+ "cost_entity_input": "Entity with the current price per {unit}",
+ "cost_number": "Use a static price",
+ "cost_number_input": "Price per {unit}",
+ "cost_number_suffix": "{currency}/m³",
+ "cost_para": "Select how Home Assistant should keep track of the costs of the consumed energy.",
+ "cost_stat": "Use an entity tracking the total costs",
+ "cost_stat_input": "Total Costs Entity",
+ "energy_stat": "Consumed Energy (m³)",
+ "gas_usage": "Gas usage",
+ "header": "Configure gas consumption",
+ "m3_or_kWh": "ft³, m³, Wh, kWh or MWh",
+ "no_cost": "Do not track costs",
+ "paragraph": "Gas consumption is the volume of gas that flows to your home."
+ },
+ "gas_consumption": "Gas consumption",
+ "learn_more": "More information on how to get started.",
+ "sub": "Let Home Assistant monitor your gas usage.",
+ "title": "Gas Consumption"
+ },
+ "grid": {
+ "add_co2_signal": "Add CO2 signal integration",
+ "add_consumption": "Add consumption",
+ "add_return": "Add return",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Use an entity with current price",
+ "cost_entity_input": "Entity with the current price",
+ "cost_number": "Use a static price",
+ "cost_number_input": "Price per kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Select how Home Assistant should keep track of the costs of the consumed energy.",
+ "cost_stat": "Use an entity tracking the total costs",
+ "cost_stat_input": "Total Costs Entity",
+ "energy_stat": "Consumed Energy (kWh)",
+ "header": "Configure grid consumption",
+ "no_cost": "Do not track costs",
+ "paragraph": "Grid consumption is the energy that flows from the energy grid to your home."
+ },
+ "to": {
+ "cost_entity": "Use an entity with current rate",
+ "cost_entity_input": "Entity with the current rate",
+ "cost_number": "Use a static rate",
+ "cost_number_input": "Rate per kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Do you get money back when you return energy to the grid?",
+ "cost_stat": "Use an entity tracking the total recieved money",
+ "cost_stat_input": "Total Compensation Entity",
+ "energy_stat": "Energy returned to the grid (kWh)",
+ "header": "Configure grid production",
+ "no_cost": "I do not get money back",
+ "paragraph": "Grid production is the energy that flows from your solar panels to the grid."
+ }
+ },
+ "grid_carbon_footprint": "Grid carbon footprint",
+ "grid_consumption": "Grid consumption",
+ "learn_more": "More information on how to get started.",
+ "return_to_grid": "Return to grid",
+ "sub": "Configure the amount of energy that you consume from the grid and, if you produce energy, give back to the grid. This allows Home Assistant to track your whole home energy usage.",
+ "title": "Electricity grid"
+ },
+ "new_device_info": "After setting up a new device, it can take up to 2 hours for new data to arrive in your energy dashboard.",
+ "solar": {
+ "add_solar_production": "Add solar production",
+ "dialog": {
+ "add_forecast": "Add forecast",
+ "dont_forecast_production": "Don't forecast production",
+ "forecast_production": "Forecast Production",
+ "header": "Configure solar panels",
+ "solar_production_energy": "Solar production energy (kWh)",
+ "solar_production_forecast": "Solar production forecast",
+ "solar_production_forecast_description": "Adding solar production forecast information will allow you to quickly see your expected production for today."
+ },
+ "learn_more": "More information on how to get started.",
+ "solar_production": "Solar production",
+ "stat_predicted_production": "Prediction of your solar energy production",
+ "stat_production": "Your solar energy production",
+ "stat_return_to_grid": "Solar energy returned to the grid",
+ "sub": "Let Home Assistant monitor your solar panels and give you insight on their performance.",
+ "title": "Solar Panels"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "The following entities have a negative state while a positive state is expected:",
+ "title": "Entity has a negative state"
+ },
+ "entity_not_defined": {
+ "description": "Check the integration or your configuration that provides:",
+ "title": "Entity not defined"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "The following entities have state class 'measurement' but 'last_reset' is missing:",
+ "title": "Last reset missing"
+ },
+ "entity_state_non_numeric": {
+ "description": "The following entities have a state that cannot be parsed as a number:",
+ "title": "Entity has non-numeric state"
+ },
+ "entity_unavailable": {
+ "description": "The state of these configured entities are currently not available:",
+ "title": "Entity unavailable"
+ },
+ "entity_unexpected_device_class": {
+ "description": "The following entities do not have the expected device class:",
+ "title": "Unexpected device class"
+ },
+ "entity_unexpected_state_class": {
+ "description": "The following entities do not have the expected state class:",
+ "title": "Unexpected state class"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "The following entities do not have the expected state class 'total_increasing'",
+ "title": "Unexpected state class"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "The following entities do not have the expected units of measurement 'Wh', 'kWh' or 'MWh':",
+ "title": "Unexpected unit of measurement"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "The following entities do not have the expected units of measurement ''{currency}/kWh'', ''{currency}/Wh'' or ''{currency}/MWh'':",
+ "title": "Unexpected unit of measurement"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "The following entities do not have the expected units of measurement 'Wh', 'kWh' or 'MWh' for an energy sensor or 'm³' or 'ft³' for a gas sensor:",
+ "title": "Unexpected unit of measurement"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "The following entities do not have the expected units of measurement ''{currency}/kWh'', ''{currency}/Wh'', ''{currency}/MWh'', ''{currency}/m³'' or ''{currency}/ft³'':",
+ "title": "Unexpected unit of measurement"
+ },
+ "recorder_untracked": {
+ "description": "The recorder has been configured to exclude these configured entities:",
+ "title": "Entity not tracked"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Entities",
+ "description": "Manage known entities",
+ "picker": {
+ "disable_selected": {
+ "button": "Disable selected",
+ "confirm_text": "Disabled entities will not be added to Home Assistant.",
+ "confirm_title": "Do you want to disable {number} {number, plural,\n one {entity}\n other {entities}\n}?"
+ },
+ "enable_selected": {
+ "button": "Enable selected",
+ "confirm_text": "This will make them available in Home Assistant again if they are now disabled.",
+ "confirm_title": "Do you want to enable {number} {number, plural,\n one {entity}\n other {entities}\n}?"
+ },
+ "filter": {
+ "filter": "Filter",
+ "hidden_entities": "{number} hidden {number, plural,\n one {entity}\n other {entities}\n}",
+ "show_all": "Show all",
+ "show_disabled": "Show disabled entities",
+ "show_readonly": "Show read-only entities",
+ "show_unavailable": "Show unavailable entities"
+ },
+ "header": "Entities",
+ "headers": {
+ "area": "Area",
+ "disabled_by": "Disabled by",
+ "entity_id": "Entity ID",
+ "integration": "Integration",
+ "name": "Name",
+ "status": "Status"
+ },
+ "introduction": "Home Assistant keeps a registry of every entity it has ever seen that can be uniquely identified. Each of these entities will have an entity ID assigned which will be reserved for just this entity.",
+ "introduction2": "Use the entity registry to override the name, change the entity ID or remove the entry from Home Assistant.",
+ "remove_selected": {
+ "button": "Remove selected",
+ "confirm_partly_text": "You can only remove {removable} of the selected {selected} entities. Entities can only be removed when the integration is no longer providing the entities. Sometimes you have to restart Home Assistant before you can remove the entities of a removed integration. Are you sure you want to remove the removable entities?",
+ "confirm_partly_title": "Only {number} {number, plural,\n one {selected entity}\n other {selected entities}\n} can be removed.",
+ "confirm_text": "You should remove them from your Lovelace config and automations if they contain these entities.",
+ "confirm_title": "Do you want to remove {number} {number, plural,\n one {entity}\n other {entities}\n}?"
+ },
+ "search": "Search entities",
+ "selected": "{number} selected",
+ "status": {
+ "disabled": "Disabled",
+ "ok": "Ok",
+ "readonly": "Read-only",
+ "restored": "Restored",
+ "unavailable": "Unavailable"
+ }
+ }
+ },
+ "header": "Configure Home Assistant",
+ "helpers": {
+ "caption": "Helpers",
+ "description": "Elements that help build automations",
+ "dialog": {
+ "add_helper": "Add helper",
+ "add_platform": "Add {platform}",
+ "create": "Create"
+ },
+ "picker": {
+ "add_helper": "Add helper",
+ "headers": {
+ "editable": "Editable",
+ "entity_id": "Entity ID",
+ "name": "Name",
+ "type": "Type"
+ },
+ "no_helpers": "Looks like you don't have any helpers yet!"
+ },
+ "types": {
+ "counter": "Counter",
+ "input_boolean": "Toggle",
+ "input_button": "Button",
+ "input_datetime": "Date and/or time",
+ "input_number": "Number",
+ "input_select": "Dropdown",
+ "input_text": "Text",
+ "timer": "Timer"
+ }
+ },
+ "info": {
+ "built_using": "Built using",
+ "caption": "Info",
+ "copy_github": "For GitHub",
+ "copy_menu": "Copy menu",
+ "copy_raw": "Raw Text",
+ "custom_uis": "Custom UIs:",
+ "description": "Version, system health and links to documentation",
+ "developed_by": "Developed by a bunch of awesome people.",
+ "documentation": "Documentation",
+ "frontend": "frontend-ui",
+ "frontend_version": "Frontend version: {version} - {type}",
+ "home_assistant_logo": "Home Assistant logo",
+ "icons_by": "Icons by",
+ "integrations": "Integrations",
+ "issues": "Issues",
+ "license": "Published under the Apache 2.0 license",
+ "path_configuration": "Path to configuration.yaml: {path}",
+ "server": "server",
+ "setup_time": "Setup time",
+ "source": "Source:",
+ "system_health": {
+ "manage": "Manage",
+ "more_info": "more info"
+ },
+ "system_health_error": "System Health component is not loaded. Add 'system_health:' to configuration.yaml"
+ },
+ "integrations": {
+ "add_integration": "Add integration",
+ "attention": "Attention required",
+ "caption": "Integrations",
+ "config_entry": {
+ "area": "In {area}",
+ "check_the_logs": "Check the logs",
+ "configure": "Configure",
+ "delete": "Delete",
+ "delete_confirm": "Are you sure you want to delete the {title} integration?",
+ "depends_on_cloud": "Depends on the cloud",
+ "device_unavailable": "Device unavailable",
+ "devices": "{count} {count, plural,\n one {device}\n other {devices}\n}",
+ "disable": {
+ "disable_confirm": "Are you sure you want to disable this config entry? Its devices and entities will be disabled.",
+ "disabled": "Disabled",
+ "disabled_by": {
+ "device": "device",
+ "integration": "integration",
+ "user": "user"
+ },
+ "disabled_cause": "Disabled by {cause}"
+ },
+ "disable_error": "Enabling or disabling of the integration failed",
+ "disable_restart_confirm": "Restart Home Assistant to finish disabling this integration",
+ "disabled_polling": "Automatic polling for updated data disabled",
+ "documentation": "Documentation",
+ "download_diagnostics": "Download diagnostics",
+ "enable_restart_confirm": "Restart Home Assistant to finish enabling this integration",
+ "entities": "{count} {count, plural,\n one {entity}\n other {entities}\n}",
+ "entity_unavailable": "Entity unavailable",
+ "firmware": "Firmware: {version}",
+ "hardware": "Hardware: {version}",
+ "hub": "Connected via",
+ "known_issues": "Known issues",
+ "manuf": "by {manufacturer}",
+ "no_area": "No Area",
+ "not_loaded": "Not loaded",
+ "open_configuration_url": "Visit device",
+ "provided_by_custom_integration": "Provided by a custom integration",
+ "reload": "Reload",
+ "reload_confirm": "The integration was reloaded",
+ "reload_restart_confirm": "Restart Home Assistant to finish reloading this integration",
+ "rename": "Rename",
+ "restart_confirm": "Restart Home Assistant to finish removing this integration",
+ "services": "{count} {count, plural,\n one {service}\n other {services}\n}",
+ "state": {
+ "failed_unload": "Failed to unload",
+ "loaded": "Loaded",
+ "migration_error": "Migration error",
+ "not_loaded": "Not loaded",
+ "setup_error": "Failed to set up",
+ "setup_retry": "Retrying setup"
+ },
+ "system_options": "System options",
+ "unknown_via_device": "Unknown device",
+ "unnamed_entry": "Unnamed entry",
+ "via": "Connected via"
+ },
+ "config_flow": {
+ "aborted": "Aborted",
+ "close": "Close",
+ "could_not_load": "Config flow could not be loaded",
+ "created_config": "Created configuration for {name}.",
+ "dismiss": "Dismiss dialog",
+ "error": "Error",
+ "error_saving_area": "Error saving area: {error}",
+ "external_step": {
+ "description": "This step requires you to visit an external website to be completed.",
+ "open_site": "Open website"
+ },
+ "finish": "Finish",
+ "loading": {
+ "fallback_title": "the integration",
+ "loading_flow": "Please wait while {integration} is being setup",
+ "loading_step": "Loading next step for {integration}"
+ },
+ "next": "Next",
+ "not_all_required_fields": "Not all required fields are filled in.",
+ "not_loaded": "The integration could not be loaded, try to restart Home Assistant.",
+ "pick_flow_step": {
+ "new_flow": "No, set up an other instance of {integration}",
+ "title": "We discovered these, want to set them up?"
+ },
+ "submit": "Submit"
+ },
+ "configure": "Configure",
+ "configured": "Configured",
+ "confirm_new": "Do you want to set up {integration}?",
+ "description": "Manage integrations with services or devices",
+ "details": "Integration details",
+ "disable": {
+ "disabled_integrations": "{number} disabled",
+ "show": "Show",
+ "show_disabled": "Show disabled integrations"
+ },
+ "discovered": "Discovered",
+ "home_assistant_website": "Home Assistant website",
+ "ignore": {
+ "confirm_delete_ignore": "This will make the integration appear in your discovered integrations again when it gets discovered. This might require a restart or take some time.",
+ "confirm_delete_ignore_title": "Stop ignoring {name}?",
+ "confirm_ignore": "Are you sure you don't want to set up this integration? You can undo this by clicking the 'Show ignored integrations' in the overflow menu on the top right.",
+ "confirm_ignore_title": "Ignore discovery of {name}?",
+ "ignore": "Ignore",
+ "ignored": "Ignored",
+ "show_ignored": "Show ignored integrations",
+ "stop_ignore": "Stop ignoring"
+ },
+ "integration": "integration",
+ "integration_not_found": "Integration not found.",
+ "new": "Set up a new integration",
+ "no_integrations": "Seems like you don't have any integrations configured yet. Click on the button below to add your first integration!",
+ "none": "Nothing configured yet",
+ "none_found": "No integrations found",
+ "none_found_detail": "Adjust your search criteria.",
+ "note_about_integrations": "No integrations matched your search, the integration you want to set up might not be available to set up via the UI yet.",
+ "note_about_website_reference": "More are available on the ",
+ "reconfigure": "Reconfigure",
+ "rename_dialog": "Edit the name of this config entry",
+ "rename_input_label": "Entry name",
+ "search": "Search integrations"
+ },
+ "introduction": "In this view it is possible to configure your components and Home Assistant. Not everything is possible to configure from the UI yet, but we're working on it.",
+ "logs": {
+ "caption": "Logs",
+ "clear": "Clear",
+ "copy": "Copy log entry",
+ "custom_integration": "custom integration",
+ "description": "View the Home Assistant logs",
+ "details": "Log Details ({level})",
+ "error_from_custom_integration": "This error originated from a custom integration.",
+ "level": {
+ "critical": "CRITICAL",
+ "debug": "DEBUG",
+ "error": "ERROR",
+ "info": "INFO",
+ "warning": "WARNING"
+ },
+ "load_full_log": "Load Full Home Assistant Log",
+ "loading_log": "Loading full log…",
+ "multiple_messages": "message first occurred at {time} and shows up {counter} times",
+ "no_errors": "No errors have been reported",
+ "no_issues": "There are no new issues!",
+ "refresh": "Refresh"
+ },
+ "lovelace": {
+ "caption": "Lovelace Dashboards",
+ "dashboards": {
+ "cant_edit_default": "The default Lovelace dashboard, Overview, cannot be edited from the UI. You can hide it by setting another dashboard as default.",
+ "cant_edit_yaml": "Dashboards defined in YAML cannot be edited from the UI. Change them in configuration.yaml.",
+ "caption": "Dashboards",
+ "conf_mode": {
+ "storage": "UI controlled",
+ "yaml": "YAML file"
+ },
+ "confirm_delete": "Are you sure you want to delete this dashboard?",
+ "confirm_delete_text": "Your dashboard will be permanently deleted.",
+ "confirm_delete_title": "Delete {dashboard_title}?",
+ "default_dashboard": "This is the default dashboard",
+ "detail": {
+ "create": "Create",
+ "delete": "Delete",
+ "dismiss": "Close",
+ "edit_dashboard": "Edit dashboard",
+ "icon": "Icon",
+ "new_dashboard": "Add new dashboard",
+ "remove_default": "Remove as default on this device",
+ "require_admin": "Admin only",
+ "set_default": "Set as default on this device",
+ "show_sidebar": "Show in sidebar",
+ "title": "Title",
+ "title_required": "Title is required.",
+ "update": "Update",
+ "url": "URL",
+ "url_error_msg": "The URL should contain a - and cannot contain spaces or special characters, except for _ and -"
+ },
+ "picker": {
+ "add_dashboard": "Add dashboard",
+ "headers": {
+ "conf_mode": "Configuration method",
+ "default": "Default",
+ "filename": "Filename",
+ "require_admin": "Admin only",
+ "sidebar": "Show in sidebar",
+ "title": "Title"
+ },
+ "open": "Open"
+ }
+ },
+ "description": "Create customized sets of cards to control your home",
+ "resources": {
+ "cant_edit_yaml": "You are using Lovelace in YAML mode, therefore you cannot manage your resources through the UI. Manage them in configuration.yaml.",
+ "caption": "Resources",
+ "confirm_delete": "Are you sure you want to delete this resource?",
+ "detail": {
+ "create": "Create",
+ "delete": "Delete",
+ "dismiss": "Close",
+ "new_resource": "Add new resource",
+ "type": "Resource type",
+ "update": "Update",
+ "url": "URL",
+ "url_error_msg": "URL is a required field",
+ "warning_header": "Be cautious!",
+ "warning_text": "Adding resources can be dangerous, make sure you know the source of the resource and trust them. Bad resources could seriously harm your system."
+ },
+ "picker": {
+ "add_resource": "Add resource",
+ "headers": {
+ "type": "Type",
+ "url": "URL"
+ },
+ "no_resources": "No resources"
+ },
+ "refresh_body": "You have to refresh the page to complete the removal. Do you want to refresh now?",
+ "refresh_header": "Do you want to refresh?",
+ "types": {
+ "css": "Stylesheet",
+ "html": "HTML (deprecated)",
+ "js": "JavaScript File (deprecated)",
+ "module": "JavaScript Module"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Listen to a topic",
+ "description_publish": "Publish a packet",
+ "listening_to": "Listening to",
+ "message_received": "Message {id} received on {topic} at {time}:",
+ "payload": "Payload (template allowed)",
+ "publish": "Publish",
+ "start_listening": "Start listening",
+ "stop_listening": "Stop listening",
+ "subscribe_to": "Topic to subscribe to",
+ "title": "MQTT",
+ "topic": "topic"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Controller",
+ "instance": "Instance",
+ "network": "Network",
+ "node_id": "Node ID",
+ "ozw_instance": "OpenZWave Instance",
+ "query_stage": "Query Stage",
+ "wakeup_instructions": "Wake-up Instructions",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Node Failed",
+ "stage": "Stage",
+ "zwave_info": "Z-Wave Info"
+ },
+ "navigation": {
+ "network": "Network",
+ "node": {
+ "config": "Config",
+ "dashboard": "Dashboard"
+ },
+ "nodes": "Nodes",
+ "select_instance": "Select Instance"
+ },
+ "network": {
+ "header": "Network Management",
+ "introduction": "Manage network-wide functions.",
+ "node_count": "{count} nodes"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "All nodes have been queried",
+ "driverallnodesqueriedsomedead": "All nodes have been queried. Some nodes were found dead",
+ "driverawakenodesqueries": "All awake nodes have been queried",
+ "driverfailed": "Failed to connect to Z-Wave controller",
+ "driverready": "Initializing the Z-Wave controller",
+ "driverremoved": "The driver has been removed",
+ "driverreset": "The driver has been reset",
+ "offline": "OZWDaemon offline",
+ "ready": "Ready to connect",
+ "started": "Connected to MQTT",
+ "starting": "Connecting to MQTT",
+ "stopped": "OpenZWave stopped"
+ },
+ "offline": "Offline",
+ "online": "Online",
+ "starting": "Starting",
+ "unknown": "Unknown"
+ },
+ "node": {
+ "button": "Node Details",
+ "not_found": "Node not found"
+ },
+ "node_config": {
+ "header": "Node Configuration",
+ "help_source": "Config parameter descriptions and help text are provided by the OpenZWave project.",
+ "introduction": "Manage the different configuration parameters for a Z-Wave node.",
+ "wakeup_help": "Battery powered nodes must be awake to change their configuration. If the node is not awake, OpenZWave will attempt to update the node's configuration the next time it wakes up, which could be multiple hours (or days) later. Follow these steps to wake up your device:"
+ },
+ "node_metadata": {
+ "product_manual": "Product Manual"
+ },
+ "node_query_stages": {
+ "associations": "Refreshing association groups and memberships",
+ "cacheload": "Loading information from the OpenZWave cache file. Battery nodes will stay at this stage until the node wakes up.",
+ "complete": "Interview process is complete",
+ "configuration": "Obtaining configuration values from the node",
+ "dynamic": "Obtaining frequently changing values from the node",
+ "instances": "Obtaining details about what instances or channels a device supports",
+ "manufacturerspecific1": "Obtaining manufacturer and product ID codes from the node",
+ "manufacturerspecific2": "Obtaining additional manufacturer and product ID codes from the node",
+ "neighbors": "Obtaining a list of the node's neighbors",
+ "nodeinfo": "Obtaining supported command classes from the node",
+ "nodeplusinfo": "Obtaining Z-Wave+ information from the node",
+ "probe": "Checking if the node is awake/alive",
+ "protocolinfo": "Obtaining basic Z-Wave capabilities of this node from the controller",
+ "session": "Obtaining infrequently changing values from the node",
+ "static": "Obtaining static values from the device",
+ "versions": "Obtaining information about firmware and command class versions",
+ "wakeup": "Setting up support for wake-up queues and messages"
+ },
+ "nodes_table": {
+ "failed": "Failed",
+ "id": "ID",
+ "manufacturer": "Manufacturer",
+ "model": "Model",
+ "query_stage": "Query Stage",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "If the node is battery powered, be sure to wake it before proceeding",
+ "button": "Refresh Node",
+ "complete": "Node Refresh Complete",
+ "description": "This will tell OpenZWave to re-interview a node and update the node's command classes, capabilities, and values.",
+ "node_status": "Node Status",
+ "refreshing_description": "Refreshing node information…",
+ "start_refresh_button": "Start Refresh",
+ "step": "Step",
+ "title": "Refresh Node Information",
+ "wakeup_header": "Wake-up Instructions for",
+ "wakeup_instructions_source": "Wake-up instructions are sourced from the OpenZWave community device database."
+ },
+ "select_instance": {
+ "header": "Select an OpenZWave Instance",
+ "introduction": "You have more than one OpenZWave instance running. Which instance would you like to manage?",
+ "none_found": "We couldn't find an OpenZWave instance. If you believe this is incorrect, check your OpenZWave and MQTT setups and ensure that Home Assistant can communicate with your MQTT broker."
+ },
+ "services": {
+ "add_node": "Add Node",
+ "cancel_command": "Cancel Command",
+ "remove_node": "Remove Node"
+ }
+ },
+ "person": {
+ "add_person": "Add Person",
+ "caption": "People",
+ "confirm_delete": "Are you sure you want to delete this person?",
+ "confirm_delete2": "All devices belonging to this person will become unassigned.",
+ "create_person": "Create Person",
+ "description": "Manage the people that Home Assistant tracks",
+ "detail": {
+ "admin": "Administrator",
+ "allow_login": "Allow person to login",
+ "confirm_delete_user": "Are you sure you want to delete the user account for {name}? You can still track the user, but the person will no longer be able to login.",
+ "create": "Create",
+ "delete": "Delete",
+ "device_tracker_intro": "Select the devices that belong to this person.",
+ "device_tracker_pick": "Pick device to track",
+ "device_tracker_picked": "Track Device",
+ "link_integrations_page": "Integrations page",
+ "link_presence_detection_integrations": "Presence Detection Integrations",
+ "linked_user": "Linked User",
+ "local_only": "Can only log in from the local network",
+ "name": "Name",
+ "name_error_msg": "Name is required",
+ "new_person": "New Person",
+ "no_device_tracker_available_intro": "When you have devices that indicate the presence of a person, you will be able to assign them to a person here. You can add your first device by adding a presence-detection integration from the integrations page.",
+ "update": "Update"
+ },
+ "introduction": "Here you can define each person of interest in Home Assistant.",
+ "learn_more": "Learn more about people",
+ "no_persons_created_yet": "Looks like you have not created any people yet.",
+ "note_about_persons_configured_in_yaml": "Note: people configured via configuration.yaml cannot be edited via the UI.",
+ "person_not_found": "We couldn't find the person you were trying to edit.",
+ "person_not_found_title": "Person Not Found"
+ },
+ "scene": {
+ "activated": "Activated scene {name}.",
+ "caption": "Scenes",
+ "description": "Capture device states and easily recall them later",
+ "editor": {
+ "area": "Area",
+ "default_name": "New Scene",
+ "devices": {
+ "add": "Add a device",
+ "delete": "Delete device",
+ "header": "Devices",
+ "introduction": "Add the devices that you want to be included in your scene. Set all the devices to the state you want for this scene."
+ },
+ "entities": {
+ "add": "Add an entity",
+ "delete": "Delete entity",
+ "device_entities": "If you add an entity that belongs to a device, the device will be added.",
+ "header": "Entities",
+ "introduction": "Entities that do not belong to a device can be set here.",
+ "without_device": "Entities without device"
+ },
+ "icon": "Icon",
+ "introduction": "Use scenes to bring your home to life.",
+ "load_error_not_editable": "Only scenes in scenes.yaml are editable.",
+ "load_error_unknown": "Error loading scene ({err_no}).",
+ "name": "Name",
+ "save": "Save",
+ "unsaved_confirm": "You have unsaved changes. Are you sure you want to leave?"
+ },
+ "picker": {
+ "add_scene": "Add scene",
+ "delete_confirm": "Are you sure you want to delete this scene?",
+ "delete_scene": "Delete scene",
+ "duplicate": "Duplicate",
+ "duplicate_scene": "Duplicate scene",
+ "edit_scene": "Edit scene",
+ "header": "Scene Editor",
+ "headers": {
+ "name": "Name"
+ },
+ "introduction": "The scene editor allows you to create and edit scenes. Please follow the link below to read the instructions to make sure that you have configured Home Assistant correctly.",
+ "learn_more": "Learn more about scenes",
+ "no_scenes": "We couldn’t find any scenes",
+ "only_editable": "Only scenes defined in scenes.yaml are editable.",
+ "pick_scene": "Pick scene to edit",
+ "show_info_scene": "Show info about scene"
+ }
+ },
+ "script": {
+ "caption": "Scripts",
+ "description": "Execute a sequence of actions",
+ "editor": {
+ "alias": "Name",
+ "default_name": "New Script",
+ "delete_confirm": "Are you sure you want to delete this script?",
+ "delete_script": "Delete script",
+ "header": "Script: {name}",
+ "icon": "Icon",
+ "id": "Entity ID",
+ "id_already_exists": "This ID already exists",
+ "id_already_exists_save_error": "You can't save this script because the ID is not unique, pick another ID or leave it blank to automatically generate one.",
+ "introduction": "Use scripts to run a sequence of actions.",
+ "link_available_actions": "Learn more about available actions.",
+ "load_error_not_editable": "Only scripts inside scripts.yaml are editable.",
+ "max": {
+ "parallel": "Max number of parallel runs",
+ "queued": "Queue length"
+ },
+ "modes": {
+ "description": "The mode controls what happens when script is invoked while it is still running from one or more previous invocations. Check the {documentation_link} for more info.",
+ "documentation": "script documentation",
+ "label": "Mode",
+ "parallel": "Parallel",
+ "queued": "Queued",
+ "restart": "Restart",
+ "single": "Single (default)"
+ },
+ "save_script": "Save script",
+ "sequence": "Sequence",
+ "sequence_sentence": "The sequence of actions of this script.",
+ "show_trace": "Show trace"
+ },
+ "picker": {
+ "add_script": "Add script",
+ "dev_script": "Debug script",
+ "duplicate": "Duplicate",
+ "duplicate_script": "Duplicate script",
+ "edit_script": "Edit script",
+ "header": "Script Editor",
+ "headers": {
+ "name": "Name"
+ },
+ "introduction": "The script editor allows you to create and edit scripts. Please follow the link below to read the instructions to make sure that you have configured Home Assistant correctly.",
+ "learn_more": "Learn more about scripts",
+ "no_scripts": "We couldn’t find any scripts",
+ "run_script": "Run script",
+ "show_info": "Show info about script"
+ }
+ },
+ "server_control": {
+ "caption": "Server Controls",
+ "description": "Validate and restart the Home Assistant server",
+ "section": {
+ "reloading": {
+ "automation": "Automations",
+ "command_line": "Command line entities",
+ "core": "Location & customizations",
+ "filesize": "File size entities",
+ "filter": "Filter entities",
+ "generic": "Generic IP camera entities",
+ "generic_thermostat": "Generic thermostat entities",
+ "group": "Groups, group entities, and notify services",
+ "heading": "YAML configuration reloading",
+ "history_stats": "History stats entities",
+ "homekit": "HomeKit",
+ "input_boolean": "Input booleans",
+ "input_button": "Input buttons",
+ "input_datetime": "Input date times",
+ "input_number": "Input numbers",
+ "input_select": "Input selects",
+ "input_text": "Input texts",
+ "introduction": "Some parts of Home Assistant can reload without requiring a restart. Clicking one of the options below will unload their current YAML configuration and load the new one.",
+ "min_max": "Min/max entities",
+ "mqtt": "Manually configured MQTT entities",
+ "person": "People",
+ "ping": "Ping binary sensor entities",
+ "reload": "{domain}",
+ "rest": "Rest entities and notify services",
+ "rpi_gpio": "Raspberry Pi GPIO entities",
+ "scene": "Scenes",
+ "script": "Scripts",
+ "smtp": "SMTP notify services",
+ "statistics": "Statistics entities",
+ "telegram": "Telegram notify services",
+ "template": "Template entities",
+ "themes": "Themes",
+ "timer": "Timers",
+ "trend": "Trend entities",
+ "universal": "Universal media player entities",
+ "zone": "Zones"
+ },
+ "server_management": {
+ "confirm_restart": "Are you sure you want to restart Home Assistant?",
+ "confirm_stop": "Are you sure you want to stop Home Assistant?",
+ "heading": "Server management",
+ "introduction": "Control your Home Assistant.",
+ "restart": "Restart",
+ "stop": "Stop"
+ },
+ "validation": {
+ "check_config": "Check configuration",
+ "heading": "Configuration validation",
+ "introduction": "Validate your configuration if you recently made some changes to your configuration and want to make sure that it is all valid.",
+ "invalid": "Configuration invalid",
+ "valid": "Configuration valid!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Add tag",
+ "automation_title": "Tag {name} is scanned",
+ "caption": "Tags",
+ "confirm_remove": "Are you sure you want to remove tag {tag}?",
+ "confirm_remove_title": "Remove tag?",
+ "create_automation": "Create automation with tag",
+ "description": "Trigger automations when an NFC tag, QR code, etc. is scanned",
+ "detail": {
+ "companion_apps": "companion apps",
+ "create": "Create",
+ "create_and_write": "Create and Write",
+ "delete": "Delete",
+ "description": "Description",
+ "name": "Name",
+ "new_tag": "New tag",
+ "tag_id": "Tag ID",
+ "tag_id_placeholder": "Autogenerated when left empty",
+ "update": "Update",
+ "usage": "A tag can trigger an automation when scanned, you can use NFC tags, QR codes or any other kind of tag. Use our {companion_link} to write this tag to a programmable NFC tag or create a QR code below."
+ },
+ "edit": "Edit",
+ "headers": {
+ "last_scanned": "Last scanned",
+ "name": "Name"
+ },
+ "learn_more": "Learn more about tags",
+ "never_scanned": "Never scanned",
+ "no_tags": "No tags",
+ "write": "Write"
+ },
+ "updates": {
+ "check_unavailable": {
+ "description": "You need to run the Home Assistant operating system to be able to check and install updates from the Home Assistant user interface.",
+ "title": "Unable to check for updates"
+ },
+ "check_updates": "Check for updates",
+ "more_updates": "+ {count} Updates",
+ "review": "review",
+ "show": "show",
+ "show_all_updates": "Show all updates",
+ "title": "{count} {count, plural,\n one {update}\n other {updates}\n}",
+ "unable_to_fetch": "Unable to load updates",
+ "version_available": "Version {version_available} is available"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Add user",
+ "create": "Create",
+ "local_only": "Local only",
+ "password": "Password",
+ "password_confirm": "Confirm Password",
+ "password_not_match": "Passwords don't match"
+ },
+ "caption": "Users",
+ "description": "Manage the Home Assistant user accounts",
+ "editor": {
+ "activate_user": "Activate user",
+ "active": "Active",
+ "active_tooltip": "Controls if user can login",
+ "admin": "Administrator",
+ "caption": "View user",
+ "change_password": "Change password",
+ "confirm_user_deletion": "Are you sure you want to delete {name}?",
+ "deactivate_user": "Deactivate user",
+ "delete_user": "Delete user",
+ "group": "Group",
+ "id": "ID",
+ "local_only": "Can only log in from the local network",
+ "name": "Display name",
+ "new_password": "New Password",
+ "owner": "Owner",
+ "password_changed": "Password was changed successfully",
+ "system_generated": "System user",
+ "system_generated_users_not_editable": "Unable to update system users.",
+ "system_generated_users_not_removable": "Unable to remove system users.",
+ "unnamed_user": "Unnamed User",
+ "update_user": "Update",
+ "username": "Username"
+ },
+ "is_local": "Local user",
+ "is_not_active": "Disabled",
+ "is_owner": "Owner",
+ "is_system": "System user",
+ "picker": {
+ "add_user": "Add user",
+ "headers": {
+ "group": "Group",
+ "is_active": "Active",
+ "is_owner": "Owner",
+ "local": "Local",
+ "name": "Display name",
+ "system": "System",
+ "username": "Username"
+ }
+ },
+ "users_privileges_note": "The user group feature is a work in progress. The user will be unable to administer the instance via the UI. We're still auditing all management API endpoints to ensure that they correctly limit access to administrators."
+ },
+ "zha": {
+ "add_device": "Add Device",
+ "add_device_page": {
+ "discovered_text": "Devices will show up here once discovered.",
+ "no_devices_found": "No devices were found, make sure they are in pairing mode and keep them awake while discovering is running.",
+ "pairing_mode": "Make sure your devices are in pairing mode. Check the instructions of your device on how to do this.",
+ "search_again": "Search Again",
+ "spinner": "Searching for ZHA Zigbee devices…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Attributes of the selected cluster",
+ "get_zigbee_attribute": "Get Zigbee Attribute",
+ "header": "Cluster Attributes",
+ "help_attribute_dropdown": "Select an attribute to view or set its value.",
+ "help_get_zigbee_attribute": "Get the value for the selected attribute.",
+ "help_set_zigbee_attribute": "Set attribute value for the specified cluster on the specified entity.",
+ "introduction": "View and edit cluster attributes.",
+ "set_zigbee_attribute": "Set Zigbee Attribute"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Commands of the selected cluster",
+ "header": "Cluster Commands",
+ "help_command_dropdown": "Select a command to interact with.",
+ "introduction": "View and issue cluster commands.",
+ "issue_zigbee_command": "Issue Zigbee Command"
+ },
+ "clusters": {
+ "header": "Clusters",
+ "help_cluster_dropdown": "Select a cluster to view attributes and commands.",
+ "introduction": "Clusters are the building blocks for Zigbee functionality. They separate functionality into logical units. There are client and server types and that are comprised of attributes and commands."
+ },
+ "common": {
+ "clusters": "Clusters",
+ "manufacturer_code_override": "Manufacturer Code Override",
+ "value": "Value"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Shortcuts",
+ "update_button": "Update Configuration"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Configuration Complete",
+ "CONFIGURED_status_text": "Initializing",
+ "INITIALIZED": "Initialization Complete",
+ "INITIALIZED_status_text": "The device is ready to use",
+ "INTERVIEW_COMPLETE": "Interview Complete",
+ "INTERVIEW_COMPLETE_status_text": "Configuring",
+ "PAIRED": "Device Found",
+ "PAIRED_status_text": "Starting Interview"
+ },
+ "group_binding": {
+ "bind_button_help": "Bind the selected group to the selected device clusters.",
+ "bind_button_label": "Bind Group",
+ "cluster_selection_help": "Select clusters to bind to the selected group.",
+ "group_picker_help": "Select a group to issue a bind command.",
+ "group_picker_label": "Bindable Groups",
+ "header": "Group Binding",
+ "introduction": "Bind and unbind groups.",
+ "unbind_button_help": "Unbind the selected group from the selected device clusters.",
+ "unbind_button_label": "Unbind Group"
+ },
+ "groups": {
+ "add_group": "Add Group",
+ "add_members": "Add Members",
+ "caption": "Groups",
+ "create": "Create Group",
+ "create_group": "Zigbee Home Automation - Create Group",
+ "create_group_details": "Enter the required details to create a new zigbee group",
+ "creating_group": "Creating Group",
+ "delete": "Delete Group",
+ "group_details": "Here are all the details for the selected Zigbee group.",
+ "group_id": "Group ID",
+ "group_info": "Group Information",
+ "group_name_placeholder": "Group Name",
+ "group_not_found": "Group not found!",
+ "groups": "Groups",
+ "members": "Members",
+ "remove_members": "Remove Members",
+ "removing_members": "Removing Members"
+ },
+ "network": {
+ "caption": "Network"
+ },
+ "visualization": {
+ "auto_zoom": "Auto Zoom",
+ "caption": "Visualization",
+ "enable_physics": "Enable Physics",
+ "header": "Network Visualization",
+ "highlight_label": "Highlight Devices",
+ "refresh_topology": "Refresh Topology",
+ "zoom_label": "Zoom To Device"
+ }
+ },
+ "zone": {
+ "add_zone": "Add Zone",
+ "caption": "Zones",
+ "configured_in_yaml": "Zones configured via configuration.yaml cannot be edited via the UI.",
+ "confirm_delete": "Are you sure you want to delete this zone?",
+ "create_zone": "Create Zone",
+ "description": "Manage the zones you want to track people in",
+ "detail": {
+ "create": "Create",
+ "delete": "Delete",
+ "icon": "Icon",
+ "icon_error_msg": "Icon should be in the format ''prefix:iconname'', for example: ''mdi:home''",
+ "latitude": "Latitude",
+ "longitude": "Longitude",
+ "name": "Name",
+ "new_zone": "New Zone",
+ "passive": "Passive",
+ "passive_note": "Passive zones are hidden in the frontend and are not used as location for device trackers. This is useful if you just want to use it for automations.",
+ "radius": "Radius",
+ "required_error_msg": "This field is required",
+ "update": "Update"
+ },
+ "edit_home_zone": "The radius of the Home zone can't be edited from the frontend yet. Drag the marker on the map to move the home zone.",
+ "edit_home_zone_narrow": "The radius of the Home zone can't be edited from the frontend yet. The location can be changed from the general configuration.",
+ "edit_zone": "Edit Zone",
+ "go_to_core_config": "Go to general configuration?",
+ "home_zone_core_config": "The location of your home zone is editable from the general configuration page. The radius of the Home zone can't be edited from the frontend yet. Do you want to go to the general configuration?",
+ "introduction": "Zones allow you to specify certain regions on earth. When a person is within a zone, the state will take the name from the zone. Zones can also be used as a trigger or condition inside automation setups.",
+ "no_zones_created_yet": "Looks like you have not created any zones yet."
+ },
+ "zwave": {
+ "common": {
+ "index": "Index",
+ "instance": "Instance",
+ "unknown": "unknown",
+ "value": "Value",
+ "wakeup_interval": "Wake-up Interval"
+ },
+ "description": "Manage your Z-Wave network",
+ "learn_more": "Learn more about Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "Migrate to OpenZWave",
+ "introduction": "This wizard will help you migrate from the legacy Z-Wave integration to the OpenZWave integration that is currently in beta."
+ },
+ "zwave_js": {
+ "header": "Migrate to Z-Wave JS",
+ "introduction": "This integration is no longer maintained, and we advise you to move to the new Z-Wave JS integration. This wizard will help you migrate from the legacy Z-Wave integration to the new Z-Wave JS integration."
+ }
+ },
+ "network_management": {
+ "header": "Z-Wave Network Management",
+ "introduction": "Run commands that affect the Z-Wave network. You won't get feedback on whether most commands succeeded, but you can check the OZW Log to try to find out."
+ },
+ "network_status": {
+ "network_started": "Z-Wave Network Started",
+ "network_started_note_all_queried": "All nodes have been queried.",
+ "network_started_note_some_queried": "Awake nodes have been queried. Sleeping nodes will be queried when they wake.",
+ "network_starting": "Starting Z-Wave Network…",
+ "network_starting_note": "This may take a while depending on the size of your network.",
+ "network_stopped": "Z-Wave Network Stopped"
+ },
+ "node_config": {
+ "config_parameter": "Configuration Parameter",
+ "config_value": "Configuration Value",
+ "false": "False",
+ "header": "Node Configuration Options",
+ "seconds": "seconds",
+ "set_config_parameter": "Set Configuration Parameter",
+ "set_wakeup": "Set Wake-up Interval",
+ "true": "True"
+ },
+ "node_management": {
+ "add_to_group": "Add to Group",
+ "entities": "Entities of this node",
+ "entity_info": "Entity Information",
+ "exclude_entity": "Exclude this entity from Home Assistant",
+ "group": "Group",
+ "header": "Z-Wave Node Management",
+ "introduction": "Run Z-Wave commands that affect a single node. Pick a node to see a list of available commands.",
+ "max_associations": "Max Associations:",
+ "node_group_associations": "Node group associations",
+ "node_protection": "Node protection",
+ "node_to_control": "Node to control",
+ "nodes": "Nodes",
+ "nodes_hint": "Select node to view per-node options",
+ "nodes_in_group": "Other nodes in this group:",
+ "pooling_intensity": "Polling intensity",
+ "protection": "Protection",
+ "remove_broadcast": "Remove Broadcast",
+ "remove_from_group": "Remove from Group",
+ "set_protection": "Set Protection"
+ },
+ "ozw_log": {
+ "header": "OZW Log",
+ "introduction": "View the log. 0 is the minimum (loads entire log) and 1000 is the maximum. Load will show a static log and tail will auto update with the last specified number of lines of the log.",
+ "last_log_lines": "Number of last log lines",
+ "load": "Load",
+ "tail": "Tail"
+ },
+ "services": {
+ "add_node": "Add Node",
+ "add_node_secure": "Add Node Secure",
+ "cancel_command": "Cancel Command",
+ "heal_network": "Heal Network",
+ "heal_node": "Heal Node",
+ "node_info": "Node Information",
+ "print_node": "Print Node",
+ "refresh_entity": "Refresh Entity",
+ "refresh_node": "Refresh Node",
+ "remove_failed_node": "Remove Failed Node",
+ "remove_node": "Remove Node",
+ "replace_failed_node": "Replace Failed Node",
+ "save_config": "Save Configuration",
+ "soft_reset": "Soft Reset",
+ "start_network": "Start Network",
+ "stop_network": "Stop Network",
+ "test_network": "Test Network",
+ "test_node": "Test Node"
+ },
+ "values": {
+ "header": "Node Values"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Cancel Inclusion",
+ "check_logs": "Please check the logs for more information.",
+ "choose_inclusion_strategy": "How do you want to add your device",
+ "controller_in_inclusion_mode": "Your Z-Wave controller is now in inclusion mode.",
+ "enter_qr_code": "Enter QR code value",
+ "follow_device_instructions": "Follow the directions that came with your device to trigger pairing on the device.",
+ "inclusion_failed": "The device could not be added.",
+ "inclusion_finished": "The device has been added.",
+ "interview_failed": "The device interview failed. Additional information may be available in the logs.",
+ "interview_started": "The device is being interviewed. This may take some time.",
+ "introduction": "This wizard will guide you through adding a node to your Z-Wave network.",
+ "provisioning_finished": "The device has been added. Once you power it on, it will become available.",
+ "qr_code": "QR Code",
+ "qr_code_paragraph": "If your device supports SmartStart you can scan the QR code for easy pairing.",
+ "scan_qr_code": "Scan QR code",
+ "searching_device": "Searching for device",
+ "secure_inclusion_warning": "Secure devices require additional bandwidth; too many secure devices can slow down your Z-Wave network. We recommend only using secure inclusion for devices that require it, like locks or garage door openers.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Example: Legacy Door Locks without S2 support",
+ "title": "S0 Legacy"
+ },
+ "S2_AccessControl": {
+ "description": "Example: Door Locks and Garage Doors",
+ "title": "S2 Access Control"
+ },
+ "S2_Authenticated": {
+ "description": "Example: Lighting, Sensors and Security Systems",
+ "title": "S2 Authenticated"
+ },
+ "S2_Unauthenticated": {
+ "description": "Like S2 Authenticated, but without verification that the correct device is included",
+ "title": "S2 Unauthenticated"
+ }
+ },
+ "select_camera": "Select camera",
+ "start_inclusion": "Start Inclusion",
+ "start_secure_inclusion": "Start Secure Inclusion",
+ "title": "Add a Z-Wave Device",
+ "use_secure_inclusion": "Use secure inclusion",
+ "view_device": "View Device"
+ },
+ "common": {
+ "add_node": "Add device",
+ "back": "Back",
+ "close": "Close",
+ "heal_network": "Heal Network",
+ "home_id": "Home ID",
+ "network": "Network",
+ "node_id": "Device ID",
+ "reconfigure_server": "Re-configure Server",
+ "remove_node": "Remove device",
+ "source": "Source"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n one {device}\n other {devices}\n}",
+ "driver_version": "Driver Version",
+ "dump_dead_nodes_text": "Some of your devices didn't respond and are assumed dead. These will not be fully exported.",
+ "dump_dead_nodes_title": "Some of your devices are dead",
+ "dump_debug": "Download data",
+ "dump_not_ready_confirm": "Download",
+ "dump_not_ready_text": "If you create an export while not all devices are ready, you could miss needed data. Give your network some time to query all devices. Do you want to continue with the dump?",
+ "dump_not_ready_title": "Not all devices are ready yet",
+ "header": "Manage your Z-Wave Network",
+ "home_id": "Home ID",
+ "introduction": "Manage your Z-Wave network and Z-Wave devices",
+ "nodes_ready": "Devices ready",
+ "not_ready": "{count} not ready",
+ "provisioned_devices": "Provisioned devices",
+ "server_url": "Server URL",
+ "server_version": "Server Version"
+ },
+ "device_info": {
+ "device_config": "Configure Device",
+ "heal_node": "Heal Device",
+ "highest_security": "Highest Security",
+ "is_secure": "Secure",
+ "node_ready": "Device Ready",
+ "node_status": "Device Status",
+ "reinterview_device": "Re-interview Device",
+ "remove_failed": "Remove Failed Device",
+ "unknown": "Unknown",
+ "zwave_info": "Z-Wave Info",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Version {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "Network healing has been cancelled.",
+ "healing_complete": "Network healing is complete.",
+ "healing_failed": "Healing failed. Additional information may be available in the logs.",
+ "in_progress": "Network healing is in progress. This will take some time.",
+ "introduction": "Start a network heal on your Z-Wave network. A network heal will cause all devices to re-calculate their routes back to the controller and is recommended if you have recently moved devices or your controller.",
+ "run_in_background": "You can close this dialog and the network healing will continue in the background.",
+ "start_heal": "Start Healing",
+ "stop_heal": "Stop Healing",
+ "title": "Heal your Z-Wave Network",
+ "traffic_warning": "The healing process generates a large amount of traffic on the Z-Wave network. This may cause devices to respond slowly (or not at all) while the heal is in progress."
+ },
+ "heal_node": {
+ "healing_complete": "{device} has been healed.",
+ "healing_failed": "{device} could not be healed.",
+ "healing_failed_check_logs": "Additional information may be available in the logs.",
+ "in_progress": "{device} healing is in progress.",
+ "introduction": "Tell {device} to update its routes back to the controller. This can help with communication issues if you have recently moved the device or your controller.",
+ "network_heal_in_progress": "A Z-Wave network heal is already in progress. Please wait for it to finish before healing an individual device.",
+ "start_heal": "Heal Device",
+ "title": "Heal a Z-Wave Device",
+ "traffic_warning": "The healing process generates a large amount of traffic on the Z-Wave network. This may cause devices to respond slowly (or not at all) while the heal is in progress."
+ },
+ "logs": {
+ "download_logs": "Download logs",
+ "log_level": "Log Level",
+ "log_level_changed": "Log Level changed to: {level}",
+ "subscribed_to_logs": "Subscribed to Z-Wave JS Log Messages…",
+ "title": "Z-Wave JS Logs"
+ },
+ "navigation": {
+ "logs": "Logs",
+ "network": "Network"
+ },
+ "network_status": {
+ "connected": "Connected",
+ "connecting": "Connecting",
+ "unknown": "Unknown"
+ },
+ "node_config": {
+ "attribution": "Device configuration parameters and descriptions are provided by the {device_database}",
+ "battery_device_notice": "Battery devices must be awake to update their config. Please refer to your device manual for instructions on how to wake the device.",
+ "error_device_not_found": "Device not found",
+ "header": "Z-Wave Device Configuration",
+ "introduction": "Manage and adjust device specific configuration parameters for the selected device",
+ "parameter": "Parameter",
+ "parameter_is_read_only": "This parameter is read-only.",
+ "set_param_accepted": "The parameter has been updated.",
+ "set_param_error": "An error occurred.",
+ "set_param_queued": "The parameter change has been queued, and will be updated when the device wakes up.",
+ "zwave_js_device_database": "Z-Wave JS Device Database"
+ },
+ "node_status": {
+ "alive": "Alive",
+ "asleep": "Asleep",
+ "awake": "Awake",
+ "dead": "Dead",
+ "unknown": "Unknown"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "If you unprovision the device it will not be added to Home Assistant when it is powered on. If it is already added to Home Assistant, removing the provisioned device will not remove it from Home Assistant.",
+ "confirm_unprovision_title": "Are you sure you want to unprovision the device?",
+ "dsk": "DSK",
+ "included": "Included",
+ "not_included": "Not Included",
+ "security_classes": "Security classes",
+ "unprovison": "Unprovison"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "You will need to wake battery powered devices before starting the re-interview. Refer to your device's manual for instructions on how to wake the device.",
+ "in_progress": "The device is being interviewed. This may take some time.",
+ "interview_complete": "Device interview complete.",
+ "interview_failed": "The device interview failed. Additional information may be available in the logs.",
+ "introduction": "Re-interview a device on your Z-Wave network. Use this feature if your device has missing or incorrect functionality.",
+ "run_in_background": "You can close this dialog and the interview will continue in the background.",
+ "start_reinterview": "Start Re-interview",
+ "title": "Re-interview a Z-Wave Device"
+ },
+ "remove_failed_node": {
+ "in_progress": "The device removal is in progress.",
+ "introduction": "Remove a failed device from your Z-Wave network. Use this if you are unable to exclude a device normally because it is broken.",
+ "removal_failed": "The device could not be removed from your Z-Wave network.",
+ "removal_finished": "Device {id} has been removed from your Z-Wave network.",
+ "remove_device": "Remove Device",
+ "title": "Remove a Failed Z-Wave Device"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Cancel Exclusion",
+ "controller_in_exclusion_mode": "Your Z-Wave controller is now in exclusion mode.",
+ "exclusion_failed": "The device could not be removed. Please check the logs for more information.",
+ "exclusion_finished": "Device {id} has been removed from your Z-Wave network.",
+ "follow_device_instructions": "Follow the directions that came with your device to trigger exclusion on the device.",
+ "introduction": "Remove a device from your Z-Wave network, and remove the associated device and entities from Home Assistant.",
+ "start_exclusion": "Start Exclusion",
+ "title": "Remove a Z-Wave device"
+ },
+ "security_classes": {
+ "None": {
+ "title": "None"
+ },
+ "S0_Legacy": {
+ "description": "Example: Legacy Door Locks without S2 support",
+ "title": "S0 Legacy"
+ },
+ "S2_AccessControl": {
+ "description": "Example: Door Locks and Garage Doors",
+ "title": "S2 Access Control"
+ },
+ "S2_Authenticated": {
+ "description": "Example: Lighting, Sensors and Security Systems",
+ "title": "S2 Authenticated"
+ },
+ "S2_Unauthenticated": {
+ "description": "Like S2 Authenticated, but without verification that the correct device is included",
+ "title": "S2 Unauthenticated"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "It will have access to all data in Home Assistant.",
+ "hide_message": "Check docs for the panel_custom component to hide this message",
+ "question_trust": "Do you trust the external panel {name} at {link}?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Active listeners",
+ "alert_event_type": "Event type is a mandatory field",
+ "available_events": "Available Events",
+ "count_listeners": " ({count} listeners)",
+ "data": "Event Data (YAML, optional)",
+ "description": "Fire an event on the event bus.",
+ "documentation": "Events documentation",
+ "event_fired": "Event {name} fired",
+ "fire_event": "Fire Event",
+ "listen_to_events": "Listen to events",
+ "listening_to": "Listening to",
+ "notification_event_fired": "Event {type} successfully fired!",
+ "start_listening": "Start listening",
+ "stop_listening": "Stop listening",
+ "subscribe_to": "Event to subscribe to",
+ "title": "Events",
+ "type": "Event Type"
+ },
+ "services": {
+ "accepts_target": "This service accepts a target, for example: `entity_id: light.bed_light`",
+ "all_parameters": "All available parameters",
+ "call_service": "Call Service",
+ "column_description": "Description",
+ "column_example": "Example",
+ "column_parameter": "Parameter",
+ "description": "The service dev tool allows you to call any available service in Home Assistant.",
+ "fill_example_data": "Fill Example Data",
+ "no_template_ui_support": "The UI does not support templates, you can still use the YAML editor.",
+ "title": "Services",
+ "ui_mode": "Go to UI mode",
+ "yaml_mode": "Go to YAML mode",
+ "yaml_parameters": "Parameters only available in YAML mode"
+ },
+ "states": {
+ "alert_entity_field": "Entity is a mandatory field",
+ "attributes": "Attributes",
+ "copy_id": "Copy ID to clipboard",
+ "current_entities": "Current entities",
+ "description1": "Set the current state representation of an entity within Home Assistant.",
+ "description2": "If the entity belongs to a device, there will be no actual communication with that device.",
+ "entity": "Entity",
+ "filter_attributes": "Filter attributes",
+ "filter_entities": "Filter entities",
+ "filter_states": "Filter states",
+ "last_changed": "Last changed",
+ "last_updated": "Last updated",
+ "more_info": "More Info",
+ "no_entities": "No entities",
+ "set_state": "Set State",
+ "state": "State",
+ "state_attributes": "State attributes (YAML, optional)",
+ "title": "States"
+ },
+ "statistics": {
+ "entity": "Entity",
+ "fix_issue": {
+ "fix": "Fix issue",
+ "units_changed": {
+ "clear": "Delete all old statistic data for this entity",
+ "fix": "Fix issue",
+ "title": "The unit of this entity changed",
+ "update": "Update the historic statistic values from ''{metadata_unit}'' to ''{state_unit}''"
+ }
+ },
+ "issue": "Issue",
+ "issues": {
+ "entity_no_longer_recorded": "This entity is no longer being recorded.",
+ "entity_not_recorded": "This entity is excluded from being recorded.",
+ "no_state": "There is no state available for this entity.",
+ "units_changed": "The unit of this entity changed from ''{metadata_unit}'' to ''{state_unit}''.",
+ "unsupported_state_class": "The state class ''{state_class}'' of this entity is not supported.",
+ "unsupported_unit": "The unit (''{state_unit}'') of this entity doesn't match a unit of device class ''{device_class}''.",
+ "unsupported_unit_metadata": "The unit (''{metadata_unit}'') of the recorded statistics doesn't match the supported unit ''{supported_unit}'' of device class ''{device_class}''.",
+ "unsupported_unit_state": "The unit (''{state_unit}'') of this entity doesn't match a unit of device class ''{device_class}''."
+ },
+ "no_issue": "No issue",
+ "title": "Statistics"
+ },
+ "templates": {
+ "all_listeners": "This template listens for all state changed events.",
+ "description": "Templates are rendered using the Jinja2 template engine with some Home Assistant specific extensions.",
+ "domain": "Domain",
+ "editor": "Template editor",
+ "entity": "Entity",
+ "jinja_documentation": "Jinja2 template documentation",
+ "listeners": "This template listens for the following state changed events:",
+ "no_listeners": "This template does not listen for any events and will not update automatically.",
+ "reset": "Reset to demo template",
+ "result_type": "Result type",
+ "template_extensions": "Home Assistant template extensions",
+ "time": "This template updates at the start of each minute.",
+ "title": "Template",
+ "unknown_error_template": "Unknown error rendering template"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Monitor individual devices",
+ "energy_distribution_title": "Energy distribution",
+ "energy_gas_graph_title": "Gas consumption",
+ "energy_solar_graph_title": "Solar production",
+ "energy_sources_table_title": "Sources",
+ "energy_usage_graph_title": "Energy usage"
+ },
+ "charts": {
+ "by_device": "Consumption by device",
+ "solar": "Solar",
+ "stat_house_energy_meter": "Total energy consumption"
+ },
+ "setup": {
+ "back": "Back",
+ "done": "Show me my energy dashboard!",
+ "next": "Next"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "You can only use this function when you have taken control of the Lovelace UI.",
+ "saving_failed": "Saving Lovelace UI configuration failed.",
+ "yaml_unsupported": "You cannot use this function when using Lovelace UI in YAML mode."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Are you sure you want to run action ''{action}''?",
+ "no_entity_more_info": "No entity provided for more info dialog",
+ "no_entity_toggle": "No entity provided to toggle",
+ "no_navigation_path": "No navigation path specified",
+ "no_service": "No service to run specified",
+ "no_url": "No URL to open specified"
+ },
+ "confirm_delete": "Are you sure you want to delete this card?",
+ "empty_state": {
+ "go_to_integrations_page": "Go to the integrations page.",
+ "no_devices": "This page allows you to control your devices, however it looks like you have no devices set up yet. Head to the integrations page to get started.",
+ "title": "Welcome Home"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "This card indicates how much of the energy consumed by your home was generated using non-fossil fuels like solar, wind and nuclear. The higher, the better!",
+ "non_fossil_energy_consumed": "Non-fossil energy consumed",
+ "non_fossil_energy_not_calculated": "Consumed non-fossil energy couldn't be calculated"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Energy usage"
+ },
+ "energy_distribution": {
+ "battery": "Battery",
+ "gas": "Gas",
+ "go_to_energy_dashboard": "Go to the energy dashboard",
+ "grid": "Grid",
+ "home": "Home",
+ "non_fossil": "Non-fossil",
+ "solar": "Solar",
+ "title_today": "Energy distribution today"
+ },
+ "energy_solar_graph": {
+ "forecast": "Forecast {name}",
+ "production": "Production {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Battery total",
+ "cost": "Cost",
+ "energy": "Energy",
+ "grid_total": "Grid total",
+ "source": "Source",
+ "total_costs": "Total costs"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Combined from grid",
+ "consumed_battery": "Consumed battery",
+ "consumed_solar": "Consumed solar",
+ "total_consumed": "Total consumed {num} kWh",
+ "total_returned": "Total returned {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "If the needle is in the purple, you returned more energy to the grid than you consumed from it. If it's in the blue, you consumed more energy from the grid than you returned.",
+ "energy_dependency": "This card indicates your net energy usage.",
+ "grid_neutrality_not_calculated": "Grid neutrality could not be calculated",
+ "net_consumed_grid": "Net consumed from the grid",
+ "net_returned_grid": "Net returned to the grid",
+ "red_green_color_explain": "If it's green, it means you produced more energy than that you consumed from the grid. If it's in the red, it means that you relied on the grid for part of your home's energy consumption."
+ },
+ "loading": "Loading...",
+ "no_data": "There is no data to show. It can take up to 2 hours for new data to arrive after you configure your energy dashboard.",
+ "no_data_period": "There is no data for this period.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "This card indicates how much of the solar energy you produced was used by your home instead of being returned to the grid.",
+ "card_indicates_solar_energy_used_charge_home_bat": "If this number is typically very low, indicating excess solar production, you might want to consider charging a home battery or electric car from your solar panels at times of high solar production.",
+ "not_produced_solar_energy": "You have not produced any solar energy",
+ "self_consumed_solar_could_not_calc": "Self-consumed solar energy couldn't be calculated",
+ "self_consumed_solar_energy": "Self-consumed solar energy"
+ }
+ },
+ "entities": {
+ "never_triggered": "Never triggered"
+ },
+ "iframe": {
+ "error_secure_context": "Unable to load iframes pointing at websites using {target_protocol} if Home Assistant is served over {context_protocol}."
+ },
+ "map": {
+ "reset_focus": "Reset focus"
+ },
+ "picture-elements": {
+ "call_service": "Call service {name}",
+ "hold": "Hold:",
+ "more_info": "Show more info: {name}",
+ "navigate_to": "Navigate to {location}",
+ "tap": "Tap:",
+ "toggle": "Toggle {name}",
+ "url": "Open window to {url_path}"
+ },
+ "safe-mode": {
+ "description": "Home Assistant ran into trouble while loading your configuration and is now running in safe mode. Take a look at the error log to see what went wrong.",
+ "header": "Safe Mode Activated"
+ },
+ "shopping-list": {
+ "add_item": "Add item",
+ "checked_items": "Checked items",
+ "clear_items": "Clear checked items",
+ "drag_and_drop": "Drag and drop",
+ "reorder_items": "Reorder items"
+ },
+ "show_more_info": "Show more information",
+ "starting": {
+ "description": "Home Assistant is starting, please wait…"
+ }
+ },
+ "changed_toast": {
+ "message": "The Lovelace UI configuration for this dashboard was updated. Refresh to see changes?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Day",
+ "month": "Month",
+ "next": "Next",
+ "previous": "Previous",
+ "today": "Today",
+ "week": "Week",
+ "year": "Year"
+ },
+ "timestamp-display": {
+ "invalid": "Invalid timestamp",
+ "invalid_format": "Invalid display format"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Call Service",
+ "default_action": "Default Action",
+ "more-info": "More Info",
+ "navigate": "Navigate",
+ "none": "No Action",
+ "toggle": "Toggle",
+ "url": "URL"
+ },
+ "navigation_path": "Navigation Path",
+ "url_path": "URL Path"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Available States",
+ "description": "The Alarm Panel card allows you to arm and disarm your alarm control panel integrations.",
+ "name": "Alarm Panel"
+ },
+ "area": {
+ "description": "The Area card automatically displays entities of a specific area.",
+ "name": "Area",
+ "show_camera": "Show camera feed instead of area picture"
+ },
+ "button": {
+ "default_action_help": "The default action depends on the entity's capabilities, it will either be toggled or the more info dialog will be shown.",
+ "description": "The Button card allows you to add buttons to perform tasks.",
+ "name": "Button"
+ },
+ "calendar": {
+ "calendar_entities": "Calendar Entities",
+ "description": "The Calendar card displays a calendar including day, week and list views",
+ "inital_view": "Initial View",
+ "name": "Calendar",
+ "views": {
+ "dayGridDay": "Day",
+ "dayGridMonth": "Month",
+ "listWeek": "List"
+ }
+ },
+ "conditional": {
+ "card": "Card",
+ "change_type": "Change type",
+ "condition_explanation": "The card will be shown when ALL conditions below are fulfilled.",
+ "conditions": "Conditions",
+ "current_state": "current",
+ "description": "The Conditional card displays another card based on entity states.",
+ "name": "Conditional",
+ "state_equal": "State is equal to",
+ "state_not_equal": "State is not equal to"
+ },
+ "config": {
+ "optional": "optional",
+ "required": "required"
+ },
+ "entities": {
+ "description": "The Entities card is the most common type of card. It groups items together into lists.",
+ "edit_special_row": "View the details of this row by clicking the edit button",
+ "entity_row": {
+ "attribute": "Attribute",
+ "button": "Button",
+ "buttons": "Buttons",
+ "call-service": "Call Service",
+ "cast": "Cast",
+ "conditional": "Conditional",
+ "divider": "Divider",
+ "section": "Section",
+ "weblink": "Web Link"
+ },
+ "entity_row_editor": "Entity Row Editor",
+ "name": "Entities",
+ "secondary_info_values": {
+ "brightness": "Brightness",
+ "entity-id": "Entity ID",
+ "last-changed": "Last Changed",
+ "last-triggered": "Last Triggered",
+ "last-updated": "Last Updated",
+ "none": "No Secondary Info",
+ "position": "Position",
+ "tilt-position": "Tilt Position"
+ },
+ "show_header_toggle": "Show Header Toggle?",
+ "special_row": "special row",
+ "toggle": "Toggle entities."
+ },
+ "entity-filter": {
+ "description": "The Entity Filter card allows you to define a list of entities that you want to track only when in a certain state.",
+ "name": "Entity Filter"
+ },
+ "entity": {
+ "description": "The Entity card gives you a quick overview of your entity’s state.",
+ "name": "Entity"
+ },
+ "gauge": {
+ "description": "The Gauge card is a basic card that allows visually seeing sensor data.",
+ "name": "Gauge",
+ "needle_gauge": "Display as needle gauge?",
+ "severity": {
+ "define": "Define Severity?",
+ "green": "Green",
+ "red": "Red",
+ "yellow": "Yellow"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Aspect Ratio",
+ "attribute": "Attribute",
+ "camera_image": "Camera Entity",
+ "camera_view": "Camera View",
+ "days_to_show": "Days to Show",
+ "double_tap_action": "Double Tap Action",
+ "entities": "Entities",
+ "entity": "Entity",
+ "hold_action": "Hold Action",
+ "hours_to_show": "Hours to Show",
+ "icon": "Icon",
+ "icon_height": "Icon Height",
+ "image": "Image Path",
+ "manual": "Manual",
+ "manual_description": "Need to add a custom card or just want to manually write the YAML?",
+ "maximum": "Maximum",
+ "minimum": "Minimum",
+ "name": "Name",
+ "no_theme": "No theme",
+ "refresh_interval": "Refresh Interval",
+ "search": "Search",
+ "secondary_info_attribute": "Secondary Info Attribute",
+ "show_icon": "Show Icon?",
+ "show_name": "Show Name?",
+ "show_state": "Show State?",
+ "state": "State",
+ "state_color": "Color icons based on state?",
+ "tap_action": "Tap Action",
+ "theme": "Theme",
+ "title": "Title",
+ "unit": "Unit",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Columns",
+ "description": "The Glance card is useful to group multiple sensors in a compact overview.",
+ "name": "Glance"
+ },
+ "grid": {
+ "columns": "Columns",
+ "description": "The Grid card allows you to show multiple cards in a grid.",
+ "name": "Grid",
+ "square": "Render cards as squares"
+ },
+ "history-graph": {
+ "description": "The History Graph card allows you to display a graph for each of the entities listed.",
+ "name": "History Graph"
+ },
+ "horizontal-stack": {
+ "description": "The Horizontal Stack card allows you to stack together multiple cards, so they always sit next to each other in the space of one column.",
+ "name": "Horizontal Stack"
+ },
+ "humidifier": {
+ "description": "The Humidifier card gives control of your humidifier entity. Allowing you to change the humidity and mode of the entity.",
+ "name": "Humidifier"
+ },
+ "iframe": {
+ "description": "The Webpage card allows you to embed your favorite webpage right into Home Assistant.",
+ "name": "Webpage"
+ },
+ "light": {
+ "description": "The Light card allows you to change the brightness of the light.",
+ "name": "Light"
+ },
+ "logbook": {
+ "description": "The Logbook card shows a list of events for entities.",
+ "name": "Logbook"
+ },
+ "map": {
+ "dark_mode": "Dark Mode?",
+ "default_zoom": "Default Zoom",
+ "description": "The Map card that allows you to display entities on a map.",
+ "geo_location_sources": "Geolocation Sources",
+ "hours_to_show": "Hours to Show",
+ "name": "Map",
+ "source": "Source"
+ },
+ "markdown": {
+ "content": "Content",
+ "description": "The Markdown card is used to render Markdown.",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "description": "The Media Control card is used to display media player entities on an interface with easy to use controls.",
+ "name": "Media Control"
+ },
+ "picture-elements": {
+ "description": "The Picture Elements card is one of the most versatile types of cards. The cards allow you to position icons or text and even services! On an image based on coordinates.",
+ "name": "Picture Elements"
+ },
+ "picture-entity": {
+ "description": "The Picture Entity card displays an entity in the form of an image. Instead of images from URL, it can also show the picture of camera entities.",
+ "name": "Picture Entity"
+ },
+ "picture-glance": {
+ "description": "The Picture Glance card shows an image and corresponding entity states as an icon. The entities on the right side allow toggle actions, others show the more info dialog.",
+ "name": "Picture Glance",
+ "state_entity": "State Entity"
+ },
+ "picture": {
+ "description": "The Picture card allows you to set an image to use for navigation to various paths in your interface or to call a service.",
+ "name": "Picture"
+ },
+ "plant-status": {
+ "description": "The Plant Status card is for all the lovely botanists out there.",
+ "name": "Plant Status"
+ },
+ "sensor": {
+ "description": "The Sensor card gives you a quick overview of your sensors state with an optional graph to visualize change over time.",
+ "graph_type": "Graph Type",
+ "name": "Sensor",
+ "show_more_detail": "Show more detail"
+ },
+ "shopping-list": {
+ "description": "The Shopping List card allows you to add, edit, check-off, and clear items from your shopping list.",
+ "integration_not_loaded": "This card requires the `shopping_list` integration to be set up.",
+ "name": "Shopping List"
+ },
+ "statistics-graph": {
+ "description": "The Statistics Graph card allows you to display a graph of the statistics for each of the entities listed.",
+ "name": "Statistics Graph",
+ "period": "Period",
+ "periods": {
+ "5minute": "5 Minutes",
+ "day": "Day",
+ "hour": "Hour",
+ "month": "Month"
+ }
+ },
+ "thermostat": {
+ "description": "The Thermostat card gives control of your climate entity. Allowing you to change the temperature and mode of the entity.",
+ "name": "Thermostat"
+ },
+ "vertical-stack": {
+ "description": "The Vertical Stack card allows you to group multiple cards so they always sit in the same column.",
+ "name": "Vertical Stack"
+ },
+ "weather-forecast": {
+ "description": "The Weather Forecast card displays the weather. Very useful to include on interfaces that people display on the wall.",
+ "name": "Weather Forecast",
+ "show_both": "Show current Weather and Forecast",
+ "show_forecast": "Show Forecast",
+ "show_only_current": "Show only current Weather",
+ "show_only_forecast": "Show only Forecast"
+ }
+ },
+ "cardpicker": {
+ "by_card": "By Card",
+ "by_entity": "By Entity",
+ "custom_card": "Custom",
+ "domain": "Domain",
+ "entity": "Entity",
+ "no_description": "No description available."
+ },
+ "common": {
+ "add": "Add",
+ "clear": "Clear",
+ "edit": "Edit",
+ "none": "None"
+ },
+ "edit_badges": {
+ "panel_mode": "These badges will not be displayed because this view is in \"Panel Mode\".",
+ "view_no_badges": "Badges are not be supported by the current view type."
+ },
+ "edit_card": {
+ "add": "Add Card",
+ "clear": "Clear",
+ "confirm_cancel": "Are you sure you want to cancel?",
+ "delete": "Delete card",
+ "duplicate": "Duplicate card",
+ "edit": "Edit",
+ "header": "Card Configuration",
+ "move": "Move to view",
+ "move_after": "Move card after",
+ "move_before": "Move card before",
+ "move_down": "Move card down",
+ "move_up": "Move card up",
+ "options": "More options",
+ "pick_card": "Which card would you like to add?",
+ "pick_card_view_title": "Which card would you like to add to your {name} view?",
+ "search_cards": "Search cards",
+ "show_code_editor": "Show Code Editor",
+ "show_visual_editor": "Show Visual Editor",
+ "toggle_editor": "Toggle Editor",
+ "typed_header": "{type} Card Configuration",
+ "unsaved_changes": "You have unsaved changes"
+ },
+ "edit_lovelace": {
+ "edit_title": "Edit title",
+ "explanation": "This title is shown above all your views in the Lovelace UI.",
+ "header": "Title of your Lovelace UI",
+ "title": "Title"
+ },
+ "edit_view": {
+ "add": "Add view",
+ "delete": "Delete view",
+ "edit": "Edit view",
+ "header": "View Configuration",
+ "header_name": "{name} View Configuration",
+ "move_left": "Move view left",
+ "move_right": "Move view right",
+ "tab_badges": "Badges",
+ "tab_settings": "Settings",
+ "tab_visibility": "Visibility",
+ "type": "View type",
+ "types": {
+ "masonry": "Masonry (default)",
+ "panel": "Panel (1 card)",
+ "sidebar": "Sidebar"
+ },
+ "visibility": {
+ "select_users": "Select which users should see this view in the navigation"
+ }
+ },
+ "header": "Edit UI",
+ "header-footer": {
+ "choose_header_footer": "Choose a {type}",
+ "footer": "Footer",
+ "header": "Header",
+ "types": {
+ "buttons": {
+ "name": "Buttons"
+ },
+ "graph": {
+ "name": "Graph"
+ },
+ "picture": {
+ "name": "Picture"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Manage dashboards",
+ "manage_resources": "Manage resources",
+ "open": "Open Lovelace UI menu",
+ "raw_editor": "Raw configuration editor"
+ },
+ "migrate": {
+ "header": "Configuration Incompatible",
+ "migrate": "Migrate configuration",
+ "para_migrate": "Home Assistant can add IDs to all your cards and views automatically for you by pressing the 'Migrate configuration' button.",
+ "para_no_id": "This element doesn't have an ID. Please add an ID to this element in 'ui-lovelace.yaml'."
+ },
+ "move_card": {
+ "header": "Choose a view to move the card to"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "We will automatically generate your Lovelace UI views with your areas and devices if you remove your Lovelace UI configuration.",
+ "confirm_remove_config_title": "Are you sure you want to remove your Lovelace UI configuration?",
+ "confirm_unsaved_changes": "You have unsaved changes, are you sure you want to exit?",
+ "confirm_unsaved_comments": "Your configuration might contains comment(s), these will not be saved. Do you want to continue?",
+ "error_invalid_config": "Your configuration is not valid: {error}",
+ "error_parse_yaml": "Unable to parse YAML: {error}",
+ "error_remove": "Unable to remove configuration: {error}",
+ "error_save_yaml": "Unable to save YAML: {error}",
+ "header": "Edit Configuration",
+ "lovelace_changed": "The Lovelace config was updated, do you want to load the updated config in the editor and lose your current changes?",
+ "reload": "Reload",
+ "resources_moved": "Resources should no longer be added to the Lovelace configuration but can be added in the Lovelace config panel.",
+ "save": "Save",
+ "saved": "Saved",
+ "unsaved_changes": "Unsaved changes"
+ },
+ "save_config": {
+ "close": "Close",
+ "empty_config": "Start with an empty dashboard",
+ "header": "Take control of your Lovelace UI",
+ "para": "This dashboard is currently being maintained by Home Assistant. It is automatically updated when new entities or Lovelace UI components become available. If you take control, this dashboard will no longer be automatically updated. You can always create a new dashboard in configuration to play around with.",
+ "para_sure": "Are you sure you want to take control of your user interface?",
+ "save": "Take control",
+ "yaml_config": "To help you start here is the current config of this dashboard:",
+ "yaml_control": "To take control in YAML mode, create a YAML file with the name you specified in your config for this dashboard, or the default 'ui-lovelace.yaml'.",
+ "yaml_mode": "You are using YAML mode for this dashboard, which means you cannot change your Lovelace config from the UI. If you want to manage this dashboard from the UI, remove 'mode: yaml' from your Lovelace configuration in 'configuration.yaml.'."
+ },
+ "select_view": {
+ "dashboard_label": "Dashboard",
+ "header": "Choose a view",
+ "views_label": "View"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Footer Editor",
+ "header": "Header Editor",
+ "row": "Entity Row Editor"
+ }
+ },
+ "suggest_card": {
+ "add": "Add to Lovelace UI",
+ "create_own": "Pick different card",
+ "header": "We created a suggestion for you"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "This view contains more than one card, but a panel view can only show 1 card."
+ }
+ }
+ },
+ "menu": {
+ "close": "Close",
+ "configure_ui": "Edit Dashboard",
+ "exit_edit_mode": "Done",
+ "help": "Help",
+ "reload_resources": "Reload resources",
+ "start_conversation": "Start conversation"
+ },
+ "reload_lovelace": "Reload UI",
+ "reload_resources": {
+ "refresh_body": "You have to refresh the page to complete the reload. Do you want to refresh now?",
+ "refresh_header": "Do you want to refresh?"
+ },
+ "unused_entities": {
+ "available_entities": "These are the entities that you have available, but are not in your Lovelace UI yet.",
+ "domain": "Domain",
+ "entity": "Entity",
+ "entity_id": "Entity ID",
+ "last_changed": "Last Changed",
+ "no_data": "No unused entities found",
+ "search": "Search entities",
+ "select_to_add": "Select the entities you want to add to a card and then click the add card button.",
+ "title": "Unused entities"
+ },
+ "views": {
+ "confirm_delete": "Delete view?",
+ "confirm_delete_existing_cards": "Deleting this view will also remove the cards",
+ "confirm_delete_existing_cards_text": "Are you sure you want to delete your ''{name}'' view? The view contains {number} cards that will be deleted. This action cannot be undone.",
+ "confirm_delete_text": "Are you sure you want to delete your ''{name}'' view?"
+ },
+ "warning": {
+ "attribute_not_found": "Attribute {attribute} not available in: {entity}",
+ "entity_non_numeric": "Entity is non-numeric: {entity}",
+ "entity_not_found": "Entity not available: {entity}",
+ "entity_unavailable": "Entity is currently unavailable: {entity}",
+ "starting": "Home Assistant is starting, not everything may be available yet"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Delete",
+ "delete_prompt": "Delete this message?",
+ "empty": "You do not have any messages",
+ "playback_title": "Message playback"
+ },
+ "map": {
+ "edit_zones": "Edit Zones"
+ },
+ "my": {
+ "component_not_loaded": "This redirect is not supported by your Home Assistant instance. You need the integration {integration} to use this redirect.",
+ "documentation": "documentation",
+ "error": "An unknown error occurred",
+ "faq_link": "My Home Assistant FAQ",
+ "no_supervisor": "This redirect is not supported by your Home Assistant installation. It needs either the Home Assistant Operating System or Home Assistant Supervised installation method. For more information, see the {docs_link}.",
+ "not_supported": "This redirect is not supported by your Home Assistant instance. Check the {link} for the supported redirects and the version they where introduced."
+ },
+ "page-authorize": {
+ "abort_intro": "Login aborted",
+ "authorizing_client": "You're about to give {clientId} access to your Home Assistant instance.",
+ "form": {
+ "error": "Error: {error}",
+ "next": "Login",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Session expired, please login again."
+ },
+ "error": {
+ "invalid_auth": "Invalid username or password",
+ "invalid_code": "Invalid authentication code"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Password",
+ "username": "Username"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Two-factor Authentication Code"
+ },
+ "description": "Open the **{mfa_module_name}** on your device to view your two-factor authentication code and verify your identity:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Session expired, please login again."
+ },
+ "error": {
+ "invalid_auth": "Invalid username or password",
+ "invalid_code": "Invalid authentication code"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Password",
+ "username": "Username"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Two-factor Authentication Code"
+ },
+ "description": "Open the **{mfa_module_name}** on your device to view your two-factor authentication code and verify your identity:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Session expired, please login again.",
+ "no_api_password_set": "You don't have an API password configured."
+ },
+ "error": {
+ "invalid_auth": "Invalid API password",
+ "invalid_code": "Invalid authentication code"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "API Password"
+ },
+ "description": "Please input the API password in your HTTP configuration:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Two-factor Authentication Code"
+ },
+ "description": "Open the **{mfa_module_name}** on your device to view your two-factor authentication code and verify your identity:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Your computer is not allowed."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "User"
+ },
+ "description": "Please select a user you want to login as:"
+ }
+ }
+ }
+ },
+ "start_over": "Start over",
+ "unknown_error": "Something went wrong",
+ "working": "Please wait"
+ },
+ "initializing": "Initializing",
+ "logging_in_to_with": "Logging in to **{locationName}** with **{authProviderName}**.",
+ "logging_in_with": "Logging in with **{authProviderName}**.",
+ "pick_auth_provider": "Or log in with",
+ "store_token": "Keep me logged in"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "by {name}",
+ "introduction": "Welcome home! You've reached the Home Assistant demo where we showcase the best UIs created by our community.",
+ "learn_more": "Learn more about Home Assistant",
+ "next_demo": "Next demo"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Activity",
+ "air": "Air",
+ "commute_home": "Commute to Home",
+ "entertainment": "Entertainment",
+ "hdmi_input": "HDMI Input",
+ "hdmi_switcher": "HDMI Switcher",
+ "information": "Information",
+ "lights": "Lights",
+ "morning_commute": "Morning Commute",
+ "total_tv_time": "Total TV Time",
+ "turn_tv_off": "Turn Television off",
+ "volume": "Volume"
+ },
+ "names": {
+ "family_room": "Family Room",
+ "hallway": "Hallway",
+ "kitchen": "Kitchen",
+ "left": "Left",
+ "master_bedroom": "Master Bedroom",
+ "mirror": "Mirror",
+ "patio": "Patio",
+ "right": "Right",
+ "temperature_study": "Temperature Study",
+ "upstairs": "Upstairs"
+ },
+ "unit": {
+ "minutes_abbr": "min",
+ "watching": "watching"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Next"
+ },
+ "core-config": {
+ "button_detect": "Detect",
+ "finish": "Next",
+ "intro": "Hello {name}, welcome to Home Assistant. How would you like to name your home?",
+ "intro_location": "We would like to know where you live. This information will help with displaying information and setting up sun-based automations. This data is never shared outside of your network.",
+ "intro_location_detect": "We can help you fill in this information by making a one-time request to an external service.",
+ "location_name": "Name of your Home Assistant installation",
+ "location_name_default": "Home"
+ },
+ "finish": "Finish",
+ "integration": {
+ "finish": "Finish",
+ "intro": "Devices and services are represented in Home Assistant as integrations. You can set them up now, or do it later from the configuration screen.",
+ "more_integrations": "More"
+ },
+ "intro": "Are you ready to awaken your home, reclaim your privacy and join a worldwide community of tinkerers?",
+ "next": "Next",
+ "restore": {
+ "addons": "Add-ons",
+ "confirm_password": "Confirm backup password",
+ "description": "Alternatively you can restore from a previous backup.",
+ "folders": "Folders",
+ "full_backup": "Full backup",
+ "hide_log": "Hide full log",
+ "in_progress": "Restore in progress",
+ "partial_backup": "Partial backup",
+ "password": "Backup password",
+ "password_protection": "Password protection",
+ "select_type": "Select what to restore",
+ "show_log": "Show full log",
+ "type": "Backup type",
+ "upload_backup": "Upload backup"
+ },
+ "user": {
+ "create_account": "Create Account",
+ "data": {
+ "name": "Name",
+ "password": "Password",
+ "password_confirm": "Confirm Password",
+ "username": "Username"
+ },
+ "error": {
+ "password_not_match": "Passwords don't match",
+ "required_fields": "Fill in all required fields"
+ },
+ "intro": "Let's get started by creating a user account.",
+ "required_field": "Required"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Unlocks advanced features.",
+ "link_promo": "Learn more",
+ "title": "Advanced Mode"
+ },
+ "change_password": {
+ "confirm_new_password": "Confirm New Password",
+ "current_password": "Current Password",
+ "error_new_is_old": "New password must be different than current password",
+ "error_new_mismatch": "Entered new password values do not match",
+ "error_required": "Required",
+ "header": "Change Password",
+ "new_password": "New Password",
+ "submit": "Submit",
+ "success": "Password changed successfully"
+ },
+ "current_user": "You are currently logged in as {fullName}.",
+ "customize_sidebar": {
+ "button": "Edit",
+ "description": "You can also press and hold the header of the sidebar to activate edit mode.",
+ "header": "Change the order and hide items from the sidebar"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Overview (default)",
+ "description": "Pick a default dashboard for this device.",
+ "dropdown_label": "Dashboard",
+ "header": "Dashboard"
+ },
+ "enable_shortcuts": {
+ "description": "Enable or disable keyboard shortcuts for performing various actions in the UI.",
+ "header": "Keyboard Shortcuts"
+ },
+ "force_narrow": {
+ "description": "This will hide the sidebar by default, similar to the mobile experience.",
+ "header": "Always hide the sidebar"
+ },
+ "is_owner": "You are an owner.",
+ "language": {
+ "dropdown_label": "Language",
+ "header": "Language",
+ "link_promo": "Help translating"
+ },
+ "logout": "Log out",
+ "logout_text": "Are you sure you want to log out?",
+ "logout_title": "Log out?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Are you sure you want to delete the access token for {name}?",
+ "create": "Create Token",
+ "create_failed": "Failed to create the access token.",
+ "created": "Created {date}",
+ "delete_failed": "Failed to delete the access token.",
+ "description": "Create long-lived access tokens to allow your scripts to interact with your Home Assistant instance. Each token will be valid for 10 years from creation. The following long-lived access tokens are currently active.",
+ "empty_state": "You have no long-lived access tokens yet.",
+ "header": "Long-Lived Access Tokens",
+ "learn_auth_requests": "Learn how to make authenticated requests.",
+ "name": "Name",
+ "prompt_copy_token": "Copy your access token. It will not be shown again.",
+ "prompt_name": "Give the token a name"
+ },
+ "mfa": {
+ "confirm_disable": "Are you sure you want to disable {name}?",
+ "disable": "Disable",
+ "enable": "Enable",
+ "header": "Multi-factor Authentication Modules"
+ },
+ "mfa_setup": {
+ "close": "Close",
+ "step_done": "Setup done for {step}",
+ "submit": "Submit",
+ "title_aborted": "Aborted",
+ "title_success": "Success!"
+ },
+ "number_format": {
+ "description": "Choose how numbers are formatted.",
+ "dropdown_label": "Number format",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Auto (use language setting)",
+ "none": "None",
+ "space_comma": "1 234 567,89",
+ "system": "Use system locale"
+ },
+ "header": "Number Format"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Device name",
+ "title": "What should this device be called?"
+ },
+ "description": "Send notifications to this device.",
+ "error_load_platform": "Configure notify.html5.",
+ "error_use_https": "Requires SSL enabled for frontend.",
+ "header": "Push Notifications",
+ "link_promo": "Learn more",
+ "push_notifications": "Push notifications"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Are you sure you want to delete the refresh token for {name}?",
+ "created_at": "Created {date}",
+ "current_token_tooltip": "Unable to delete current refresh token",
+ "delete_failed": "Failed to delete the refresh token.",
+ "description": "Each refresh token represents a login session. Refresh tokens will be automatically removed when you click log out. The following refresh tokens are currently active for your account.",
+ "header": "Refresh Tokens",
+ "last_used": "Last used {date} from {location}",
+ "not_used": "Has never been used",
+ "token_title": "Refresh token for {clientId}"
+ },
+ "suspend": {
+ "description": "Should we close the connection to the server after being hidden for 5 minutes?",
+ "header": "Automatically close connection"
+ },
+ "themes": {
+ "accent_color": "Accent color",
+ "dark_mode": {
+ "auto": "Auto",
+ "dark": "Dark",
+ "light": "Light"
+ },
+ "dropdown_label": "Theme",
+ "error_no_theme": "No themes available.",
+ "header": "Theme",
+ "link_promo": "Learn about themes",
+ "primary_color": "Primary color",
+ "reset": "Reset"
+ },
+ "time_format": {
+ "description": "Choose how times are formatted.",
+ "dropdown_label": "Time format",
+ "formats": {
+ "12": "12 hours (AM/PM)",
+ "24": "24 hours",
+ "language": "Auto (use language setting)",
+ "system": "Use system locale"
+ },
+ "header": "Time Format"
+ },
+ "vibrate": {
+ "description": "Enable or disable vibration on this device when controlling devices.",
+ "header": "Vibrate"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Start conversation"
+ }
+ },
+ "sidebar": {
+ "done": "Done",
+ "external_app_configuration": "App Configuration",
+ "hide_panel": "Hide panel",
+ "show_panel": "Show panel",
+ "sidebar_toggle": "Sidebar Toggle"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/eo.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/eo.json
new file mode 100644
index 00000000..319200cf
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/eo.json
@@ -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"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/es.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/es.json
new file mode 100644
index 00000000..d5b080ec
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/es.json
@@ -0,0 +1,4672 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Entrada de configuración",
+ "device": "Dispositivo",
+ "integration": "Integración",
+ "user": "Usuario"
+ }
+ },
+ "groups": {
+ "owner": "Propietario",
+ "system-admin": "Administradores",
+ "system-read-only": "Usuarios de solo lectura",
+ "system-users": "Usuarios"
+ },
+ "panel": {
+ "calendar": "Calendario",
+ "config": "Configuración",
+ "developer_tools": "Herramientas para desarrolladores",
+ "energy": "Energía",
+ "history": "Historial",
+ "logbook": "Registro",
+ "mailbox": "Buzón",
+ "map": "Mapa",
+ "media_browser": "Medios",
+ "profile": "Perfil",
+ "shopping_list": "Lista de la compra",
+ "states": "Resumen"
+ },
+ "state": {
+ "default": {
+ "off": "Apagado",
+ "on": "Encendido",
+ "unavailable": "No disponible",
+ "unknown": "Desconocido"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Automático",
+ "off": "Apagado",
+ "on": "Encendido"
+ },
+ "hvac_action": {
+ "cooling": "Enfriando",
+ "drying": "Secando",
+ "fan": "Ventilador",
+ "heating": "Calentando",
+ "idle": "Inactivo",
+ "off": "Apagado"
+ },
+ "preset_mode": {
+ "activity": "Actividad",
+ "away": "Ausente",
+ "boost": "Impulso",
+ "comfort": "Confort",
+ "eco": "Eco",
+ "home": "En casa",
+ "none": "Ninguno",
+ "sleep": "Dormir",
+ "manual": "Manual",
+ "programming": "Programado",
+ "temporary_manual": "Temporal",
+ "holiday": "Vacaciones"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Auto",
+ "away": "Ausente",
+ "baby": "Bebé",
+ "boost": "Impulso",
+ "comfort": "Confort",
+ "eco": "Eco",
+ "home": "Casa",
+ "normal": "Normal",
+ "sleep": "Dormir"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Armada",
+ "armed_away": "Armada",
+ "armed_custom_bypass": "Armada",
+ "armed_home": "Armada",
+ "armed_night": "Armada",
+ "armed_vacation": "Armada",
+ "arming": "Armando",
+ "disarmed": "Desarmar",
+ "disarming": "Desarmar",
+ "pending": "Pendiente",
+ "triggered": "Activada"
+ },
+ "default": {
+ "entity_not_found": "Entidad no encontrada",
+ "error": "Error",
+ "unavailable": "N/D",
+ "unknown": "Desconocido"
+ },
+ "device_tracker": {
+ "home": "En casa",
+ "not_home": "Fuera de casa"
+ },
+ "person": {
+ "home": "En casa",
+ "not_home": "Fuera de casa"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Por defecto",
+ "header": "Audio",
+ "input": "Entrada",
+ "output": "Salida"
+ },
+ "network": {
+ "container": "Contenedor",
+ "disabled": "Deshabilitada",
+ "header": "Red",
+ "host": "Host"
+ },
+ "no_configuration": "Este complemento no expone configuración con la que puedas trastear…",
+ "options": {
+ "edit_in_ui": "Editar en la IU",
+ "edit_in_yaml": "Editar en YAML",
+ "header": "Opciones",
+ "invalid_yaml": "YAML no válido",
+ "show_unused_optional": "Mostrar opciones de configuración opcionales no utilizadas"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "No se pudo obtener el registro de cambios del complemento",
+ "go_to_config": "Editar configuración",
+ "install": "No se pudo instalar el complemento",
+ "restart": "No se pudo reiniciar el complemento",
+ "start": "No se pudo iniciar el complemento",
+ "start_invalid_config": "Ir a la configuración",
+ "stop": "No se pudo detener el complemento",
+ "uninstall": "No se pudo desinstalar el complemento",
+ "validate_config": "No se pudo validar la configuración del complemento"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor ('Application Armor') es un módulo de seguridad del kernel de Linux que restringe las capacidades de los complementos como el acceso a la red, el acceso a sockets raw y el permiso para leer, escribir o ejecutar archivos específicos. \n\nLos autores de complementos pueden proporcionar sus perfiles de seguridad, optimizados para el complemento, o solicitar su desactivación. Si AppArmor está deshabilitado, aumentará los riesgos de seguridad y, por lo tanto, tendrá un impacto negativo en la puntuación de seguridad del complemento.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "Un complemento puede autenticar a los usuarios contra Home Assistant, lo que permite que los complementos brinden a los usuarios la posibilidad de iniciar sesión en aplicaciones que se ejecutan dentro de complementos, utilizando tu nombre de usuario/contraseña de Home Assistant. Esta insignia indica si el autor del complemento solicita esta capacidad.",
+ "title": "Autenticación de Home Assistant"
+ },
+ "docker_api": {
+ "description": "El autor del complemento ha solicitado que el complemento tenga acceso de administración a la instancia de Docker que se ejecuta en tu sistema. Este modo le da al complemento acceso y control total a todo tu sistema Home Assistant, lo que agrega riesgos de seguridad y podría dañar tu sistema si se usa incorrectamente. Por lo tanto, esta característica tiene un impacto negativo en la puntuación de seguridad del complemento. \n\nEste nivel de acceso no se otorga automáticamente y debe ser confirmado por ti. Para hacer esto, debes deshabilitar el modo de protección en el complemento manualmente. Desactiva solo el modo de protección si conoces, necesitas Y CONFÍAS en la fuente de este complemento.",
+ "title": "Acceso completo a Docker"
+ },
+ "full_access": {
+ "description": "Este complemento tiene acceso completo al hardware de tu sistema, a petición del autor del complemento. El acceso es comparable al modo privilegiado en Docker. Dado que esto abre posibles riesgos de seguridad, esta característica impacta negativamente en la puntuación de seguridad del complemento. \n\nEste nivel de acceso no se otorga automáticamente y debe ser confirmado por ti. Para hacer esto, debes deshabilitar el modo de protección en el complemento manualmente. Desactiva solo el modo de protección si conoces, necesitas Y CONFÍAS en la fuente de este complemento.",
+ "title": "Acceso completo al hardware"
+ },
+ "hassio_api": {
+ "description": "Al complemento se le dio acceso a la API del Supervisor, a petición del autor del complemento. De forma predeterminada, el complemento puede acceder a la información general de la versión de tu sistema. Cuando el complemento solicita acceso de nivel de 'gerente' o 'administrador' a la API, obtendrá acceso para controlar varias partes de tu sistema Home Assistant. Este permiso está indicado por esta insignia y afectará negativamente la puntuación de seguridad del complemento.",
+ "title": "Acceso a la API del Supervisor"
+ },
+ "homeassistant_api": {
+ "description": "Este complemento puede acceder a tu instancia de Home Assistant en ejecución directamente a través de la API de Home Assistant. Este modo también maneja la autenticación para el complemento, lo que permite que un complemento interactúe con Home Assistant sin la necesidad de tokens de autenticación adicionales.",
+ "title": "Acceso a la API de Home Assistant"
+ },
+ "host_network": {
+ "description": "Los complementos generalmente se ejecutan en su propia capa de red aislada, lo que les impide acceder a la red del sistema operativo del host. En algunos casos, este aislamiento de red puede limitar los complementos en la prestación de sus servicios y, por lo tanto, el autor del complemento puede eliminar el aislamiento, lo que le da al complemento acceso completo a las capacidades de red de la máquina host. Esto le da al complemento más capacidades de red pero reduce la seguridad, por consiguiente, la clasificación de seguridad del complemento se reducirá cuando el complemento utilice esta opción.",
+ "title": "Red del host"
+ },
+ "host_pid": {
+ "description": "Por lo general, los procesos que ejecuta el complemento están aislados de todos los demás procesos del sistema. El autor del complemento ha solicitado que el complemento tenga acceso a los procesos del sistema que se ejecutan en la instancia del sistema host y también que permitas que el complemento genere procesos en el sistema host. Este modo le da al complemento acceso y control total a todo tu sistema Home Assistant, lo que agrega riesgos de seguridad y podría dañar tu sistema si se usa incorrectamente. Por lo tanto, esta característica tiene un impacto negativo en la puntuación de seguridad del complemento. \n\nEste nivel de acceso no se otorga automáticamente y debe ser confirmado por ti. Para hacer esto debes deshabilitar el modo de protección en el complemento manualmente. Desactiva solo el modo de protección si conoces, necesitas Y CONFÍAS en la fuente de este complemento.",
+ "title": "Espacio de nombres de los procesos del host"
+ },
+ "ingress": {
+ "description": "Este complemento utiliza Entrada para integrar su interfaz de forma segura en Home Assistant.",
+ "title": "Entrada"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "auth",
+ "core": "Núcleo",
+ "docker": "docker",
+ "hardware": "hardware",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "host",
+ "host_pid": "pid de host",
+ "ingress": "entrada",
+ "rating": "clasificación",
+ "stage": "etapa"
+ },
+ "rating": {
+ "description": "Home Assistant proporciona una clasificación de seguridad para cada uno de los complementos, que indica los riesgos involucrados al usar este complemento. Cuanto más acceso requiera un complemento en tu sistema, menor será la puntuación, lo que aumentará los posibles riesgos de seguridad. \n\nLa puntuación está en una escala de 1 a 6. Donde 1 es la puntuación más baja (considerado el más inseguro y de mayor riesgo) y una puntuación de 6 es la puntuación más alta (considerado el más seguro y de menor riesgo).",
+ "title": "Clasificación de seguridad del complemento"
+ },
+ "role": {
+ "admin": "administrador",
+ "backup": "copia de seguridad",
+ "default": "predeterminado",
+ "homeassistant": "homeassistant",
+ "manager": "administrador"
+ },
+ "stage": {
+ "description": "Los complementos pueden tener una de tres etapas: \n\n {icon_stable} ** Estable **: estos son complementos listos para usarse en producción. \n\n {icon_experimental} ** Experimental **: estos pueden contener errores y pueden estar inacabados. \n\n {icon_deprecated} ** Obsoleto **: estos complementos ya no recibirán actualizaciones.",
+ "title": "Etapa de complemento"
+ },
+ "stages": {
+ "deprecated": "Obsoleto",
+ "experimental": "Experimental"
+ }
+ },
+ "changelog": "Registro de cambios",
+ "cpu_usage": "Uso de CPU por el complemento",
+ "hostname": "Nombre de host",
+ "install": "instalar",
+ "new_update_available": "{name} {version} está disponible",
+ "not_available_arch": "Este complemento no es compatible con el procesador de tu dispositivo o el sistema operativo que has instalado en tu dispositivo.",
+ "not_available_version": "Estás ejecutando Home Assistant {core_version_installed}, para actualizar a esta versión del complemento necesitas al menos la versión {core_version_needed} de Home Assistant",
+ "open_web_ui": "Abrir la interfaz web",
+ "option": {
+ "auto_update": {
+ "description": "Actualizar automáticamente el complemento cuando haya una nueva versión disponible",
+ "title": "Actualización automática"
+ },
+ "boot": {
+ "description": "Hacer que el complemento se inicie durante el arranque del sistema",
+ "title": "Iniciar en el arranque"
+ },
+ "ingress_panel": {
+ "description": "Agrega este complemento a tu barra lateral",
+ "title": "Mostrar en la barra lateral"
+ },
+ "protected": {
+ "description": "Bloquea el acceso elevado al sistema desde el complemento",
+ "title": "Modo de protección"
+ },
+ "watchdog": {
+ "description": "Esto reiniciará el complemento si se cae",
+ "title": "Vigilancia"
+ }
+ },
+ "protection_mode": {
+ "content": "¡El modo de protección en este complemento está deshabilitado! Esto le da al complemento acceso completo a todo el sistema, lo que agrega riesgos de seguridad y podría dañar tu sistema si se usa incorrectamente. Desactiva solo el modo de protección si conoces, necesitas Y CONFÍAS en la fuente de este complemento.",
+ "enable": "Habilitar",
+ "title": "¡El modo de protección está desactivado!"
+ },
+ "ram_usage": "Uso de RAM por el complemento",
+ "rebuild": "reconstruir",
+ "restart": "reiniciar",
+ "start": "iniciar",
+ "stop": "detener",
+ "uninstall": "desinstalar",
+ "visit_addon_page": "Visita la página {name} para obtener más detalles"
+ },
+ "documentation": {
+ "get_documentation": "No se pudo obtener la documentación del complemento, {error}"
+ },
+ "failed_to_reset": "No se pudo restablecer la configuración del complemento, {error}",
+ "failed_to_save": "No se pudo guardar la configuración del complemento, {error}",
+ "logs": {
+ "get_logs": "No se pudo obtener los registros del complemento, {error}"
+ },
+ "panel": {
+ "configuration": "Configuración",
+ "documentation": "Documentación",
+ "info": "Información",
+ "log": "Registro"
+ },
+ "state": {
+ "installed": "El complemento está instalado",
+ "not_available": "El complemento no está disponible en su sistema",
+ "not_installed": "El complemento no está instalado"
+ }
+ },
+ "backup": {
+ "addons": "Complementos",
+ "confirm_password": "Confirma la contraseña de la copia de seguridad",
+ "could_not_create": "No se pudo crear la copia de seguridad",
+ "create": "Crear",
+ "create_backup": "Crear copia de seguridad",
+ "create_blocked_not_running": "No es posible crear una copia de seguridad en este momento porque el sistema está en el estado {state}.",
+ "created": "Creada",
+ "delete_backup_confirm": "Eliminar",
+ "delete_backup_text": "¿Quieres borrar {number} {number, plural,\n one {copia}\n other {copias}\n} de seguridad?",
+ "delete_backup_title": "Eliminar copia de seguridad",
+ "delete_selected": "Eliminar las copias de seguridad seleccionadas",
+ "enter_password": "Por favor, introduce una contraseña.",
+ "failed_to_delete": "No se pudo eliminar",
+ "folders": "Carpetas",
+ "full_backup": "Copia de seguridad completa",
+ "name": "Nombre de la copia de seguridad",
+ "no_backups": "Aún no tienes copias de seguridad.",
+ "partial_backup": "Copia de seguridad parcial",
+ "password": "Contraseña de la copia de seguridad",
+ "password_protection": "Protección con contraseña",
+ "passwords_not_matching": "Las contraseñas no coinciden",
+ "select_type": "Selecciona qué restaurar",
+ "selected": "{number} {number, plural,\n one {seleccionada}\n other {seleccionadas}\n}",
+ "size": "Tamaño",
+ "type": "Tipo de copia de seguridad",
+ "upload_backup": "Subir copia de seguridad"
+ },
+ "common": {
+ "cancel": "Cancelar",
+ "close": "Cerrar",
+ "description": "Descripción",
+ "error": {
+ "unknown": "Error desconocido",
+ "update_failed": "Error en la actualización"
+ },
+ "failed_to_restart_name": "No se pudo reiniciar {name}",
+ "failed_to_update_name": "No se pudo actualizar {name}",
+ "learn_more": "Saber más",
+ "menu": "Menú",
+ "new_version_available": "Nueva versión disponible",
+ "newest_version": "Versión más reciente",
+ "no": "No",
+ "refresh": "Actualizar",
+ "release_notes": "Notas de versión",
+ "reload": "Recargar",
+ "reset_defaults": "Restablecer los valores predeterminados",
+ "reset_options": "Restablecer opciones",
+ "restart": "Reiniciar",
+ "restart_name": "Reiniciar el {name}",
+ "review": "revisar",
+ "running_version": "Actualmente estás ejecutando la versión {version}",
+ "save": "Guardar",
+ "show": "mostrar",
+ "show_more": "Mostrar más información sobre esto",
+ "update": "Actualizar",
+ "update_available": "{count, plural,\n one {actualización pendiente}\n other {{count} actualizaciones pendientes}\n}",
+ "version": "Versión",
+ "yes": "Sí"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "¿Estás seguro de que deseas restablecer todas tus opciones?",
+ "title": "Restablecer opciones"
+ },
+ "restart": {
+ "text": "¿Estás seguro de que deseas reiniciar {name}?",
+ "title": "Reiniciar el {name}"
+ },
+ "update": {
+ "text": "¿Estás seguro de que deseas actualizar {name} a la versión {version}?",
+ "title": "Actualizar {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Nueva versión disponible",
+ "addon_running": "El complemento se está ejecutando",
+ "addon_stopped": "El complemento está detenido",
+ "addons": "Complementos instalados",
+ "no_addons": "Aún no tienes ningún complemento instalado. ¡Dirígete a la tienda de complementos para comenzar!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Cancelar",
+ "description": "Actualmente estás utilizando ''{current_path}'' como disco de datos. Mover los discos de datos reiniciará tu dispositivo y se estima que tardará {time} minutos. No se podrá acceder a tu instalación de Home Assistant durante este período. ¡No desconectes la energía durante la migración!",
+ "loading_devices": "Cargando dispositivos",
+ "move": "Mover",
+ "moving": "Moviendo el disco de datos",
+ "moving_desc": "Reiniciando y moviendo el disco de datos. Por favor, ten paciencia",
+ "no_devices": "No se han encontrado dispositivos conectados adecuados",
+ "select_device": "Selecciona el nuevo disco de datos",
+ "title": "Mover el disco de datos"
+ },
+ "hardware": {
+ "attributes": "Atributos",
+ "device_path": "Ruta del dispositivo",
+ "id": "ID",
+ "search": "Buscar hardware",
+ "subsystem": "Subsistema",
+ "title": "Hardware"
+ },
+ "network": {
+ "connected_to": "Conectado a {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Deshabilitada",
+ "dns_servers": "Servidores DNS",
+ "failed_to_change": "No se pudo cambiar la configuración de red",
+ "gateway": "Dirección de la puerta de enlace",
+ "ip_netmask": "Dirección IP/Máscara de red",
+ "open": "Abierta",
+ "scan_ap": "Buscar puntos de acceso",
+ "static": "Estática",
+ "title": "Configuración de red",
+ "unsaved": "Tienes cambios sin guardar, estos se perderán si cambias de pestaña, ¿deseas continuar?",
+ "warning": "Si estás cambiando las direcciones de Wi-Fi, IP o puerta de enlace, ¡podrías perder la conexión!",
+ "wep": "WEP",
+ "wpa": "wpa-psk"
+ },
+ "registries": {
+ "add_new_registry": "Añadir un nuevo registro",
+ "add_registry": "Añadir registro",
+ "failed_to_add": "No se pudo agregar el registro",
+ "failed_to_remove": "No se pudo eliminar el registro",
+ "no_registries": "No hay registros configurados",
+ "password": "Contraseña",
+ "registry": "Registro",
+ "remove": "Eliminar",
+ "title_add": "Añadir un nuevo registro de contenedores",
+ "title_manage": "Administrar los registros de contenedores",
+ "username": "Nombre de usuario"
+ },
+ "repositories": {
+ "add": "Añadir",
+ "remove": "Eliminar",
+ "title": "Administrar los repositorios de complementos",
+ "used": "El repositorio está en uso para los complementos instalados y no se puede eliminar."
+ },
+ "restart_addon": {
+ "confirm_text": "Reiniciar el complemento",
+ "text": "¿Quieres reiniciar el complemento con tus cambios?"
+ },
+ "update": {
+ "backup": "Copia de seguridad",
+ "create_backup": "Crea una copia de seguridad de {name} antes de actualizar",
+ "creating_backup": "Creando copia de seguridad de {name}",
+ "updating": "Actualizando {name} a la versión {version}"
+ }
+ },
+ "my": {
+ "error": "Se ha producido un error desconocido",
+ "error_addon_no_ingress": "El complemento solicitado no admite la entrada",
+ "error_addon_not_found": "Complemento no encontrado",
+ "error_addon_not_installed": "El complemento solicitado no está instalado. Por favor instálalo primero",
+ "error_addon_not_started": "El complemento solicitado no se está ejecutando. Por favor, inícialo primero",
+ "faq_link": "Preguntas frecuentes sobre mi Home Assistant",
+ "not_supported": "Esta redirección no es compatible con tu instancia de Home Assistant. Consulta el {link} para conocer las redirecciones admitidas y la versión en la que se introdujeron."
+ },
+ "panel": {
+ "addons": "Complementos",
+ "backups": "Copias de seguridad",
+ "dashboard": "Panel de control",
+ "store": "Tienda de complementos",
+ "system": "Sistema"
+ },
+ "store": {
+ "check_updates": "Buscar actualizaciones",
+ "missing_addons": "¿Faltan complementos? Habilita el modo avanzado en tu página de perfil de usuario",
+ "no_results_found": "No se encontraron resultados en {repository}.",
+ "registries": "Registros",
+ "repositories": "Repositorios"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Uso de CPU por el core",
+ "ram_usage": "Uso de RAM por el core"
+ },
+ "host": {
+ "change": "Cambiar",
+ "change_hostname": "Cambiar nombre de host",
+ "confirm_reboot": "¿Estás seguro de que quieres reiniciar el host?",
+ "confirm_shutdown": "¿Estás seguro de que quieres apagar el host?",
+ "deployment": "Despliegue",
+ "docker_version": "Versión de Docker",
+ "emmc_lifetime_used": "Vida útil de eMMC utilizada",
+ "failed_to_get_hardware_list": "No se pudo obtener la lista de hardware",
+ "failed_to_import_from_usb": "No se pudo importar desde USB",
+ "failed_to_move": "No se pudo mover el disco de datos",
+ "failed_to_reboot": "No se pudo reiniciar el host",
+ "failed_to_set_hostname": "Error al configurar el nombre de host",
+ "failed_to_shutdown": "No se pudo apagar el host",
+ "hardware": "Hardware",
+ "hostname": "Nombre de host",
+ "import_from_usb": "Importar desde USB",
+ "ip_address": "Dirección IP",
+ "move_datadisk": "Mover el disco de datos",
+ "new_hostname": "Por favor, introduce un nuevo nombre de host:",
+ "operating_system": "Sistema operativo",
+ "reboot_host": "Reiniciar el host",
+ "shutdown_host": "Apagar el host",
+ "used_space": "Espacio usado"
+ },
+ "log": {
+ "get_logs": "No se pudo obtener los registros de {provider}, {error}",
+ "log_provider": "Proveedor de registros"
+ },
+ "supervisor": {
+ "beta_backup": "Asegúrate de tener copias de seguridad de tus datos antes de activar esta función.",
+ "beta_join_confirm": "¿Quieres unirte al canal beta?",
+ "beta_release_items": "Esto incluye versiones beta para:",
+ "beta_warning": "Las versiones beta son para probadores y usuarios pioneros y pueden contener cambios de código inestables",
+ "channel": "Canal",
+ "cpu_usage": "Uso de CPU por el Supervisor",
+ "failed_to_reload": "No pudo recargar el Supervisor",
+ "failed_to_set_option": "No se pudo configurar la opción del Supervisor",
+ "failed_to_update": "No se pudo actualizar el Supervisor",
+ "join_beta_action": "Únete al canal beta",
+ "join_beta_description": "Obtén actualizaciones beta para Home Assistant (RC), Supervisor y el host",
+ "leave_beta_action": "Salir del canal beta",
+ "leave_beta_description": "Obtén actualizaciones estables para Home Assistant, Supervisor y el host",
+ "ram_usage": "Uso de RAM por el Supervisor",
+ "reload_supervisor": "Recargar el Supervisor",
+ "search": "Buscar",
+ "share_diagnostics": "Compartir diagnósticos",
+ "share_diagnostics_description": "Comparte informes de fallos e información de diagnóstico.",
+ "share_diagonstics_description": "¿Te gustaría compartir automáticamente informes de fallos e información de diagnóstico cuando el Supervisor encuentra errores inesperados? {line_break} Esto nos permitirá solucionar los problemas, la información solo es accesible para el equipo principal de Home Assistant y no se compartirá con otros. {line_break} Los datos no incluyen ninguna información privada/confidencial y puedes desactivar esto en la configuración en el momento que desees.",
+ "share_diagonstics_title": "Ayuda a mejorar Home Assistant",
+ "unhealthy_description": "Ejecutar una instalación en mal estado causará problemas. A continuación se muestra una lista de problemas encontrados con tu instalación, haz clic en los enlaces para saber cómo puedes resolver los problemas.",
+ "unhealthy_reason": {
+ "docker": "El entorno de Docker no funciona correctamente",
+ "privileged": "El Supervisor no es privilegiado",
+ "setup": "La configuración del Supervisor falló",
+ "supervisor": "El Supervisor no se pudo actualizar",
+ "untrusted": "Contenido no confiable detectado"
+ },
+ "unhealthy_title": "Tu instalación está en mal estado",
+ "unsupported_description": "A continuación se muestra una lista de problemas encontrados con tu instalación, haz clic en los enlaces para saber cómo puedes resolver los problemas.",
+ "unsupported_reason": {
+ "apparmor": "AppArmor no está habilitado en el host",
+ "container": "Contenedores conocidos por causar problemas",
+ "content-trust": "La validación de confianza en el contenido está deshabilitada",
+ "content_trust": "La validación de confianza en el contenido está deshabilitada",
+ "dbus": "DBUS",
+ "docker_configuration": "Configuración de Docker",
+ "docker_version": "Versión de Docker",
+ "job_conditions": "Condiciones de trabajo ignoradas",
+ "lxc": "LXC",
+ "network_manager": "Administrador de red",
+ "os": "Sistema operativo",
+ "os_agent": "Agente del SO",
+ "privileged": "El Supervisor no es privilegiado",
+ "software": "Se ha detectado un software no compatible",
+ "source_mods": "Modificaciones de la fuente",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Estás ejecutando una instalación no soportada",
+ "update_supervisor": "Actualizar el Supervisor",
+ "warning": "ADVERTENCIA"
+ }
+ },
+ "update_available": {
+ "core_note": "El supervisor volverá a la versión {version} si tu instancia no arranca después de la actualización.",
+ "create_backup": "Crear una copia de seguridad antes de actualizar",
+ "creating_backup": "Creando copia de seguridad de {name}",
+ "description": "Tienes instalada la {version}. Haz clic en actualizar para actualizar a la versión {newest_version}",
+ "no_update": "No hay actualización disponible para {name}",
+ "open_release_notes": "Abrir notas de la versión",
+ "update_name": "Actualizar {name}",
+ "updating": "Actualizando {name} a la versión {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "¿Quieres permanecer conectado?",
+ "confirm": "Sí",
+ "decline": "No"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Armar ausente",
+ "arm_custom_bypass": "Bypass personalizada",
+ "arm_home": "Armar en casa",
+ "arm_night": "Armar noche",
+ "arm_vacation": "Armar por vacaciones",
+ "clear_code": "Limpiar",
+ "code": "Código",
+ "disarm": "Desarmar"
+ },
+ "area": {
+ "area_not_found": "Área no encontrada."
+ },
+ "automation": {
+ "last_triggered": "Última activación",
+ "trigger": "Ejecutar acciones"
+ },
+ "button": {
+ "press": "Pulsa"
+ },
+ "camera": {
+ "not_available": "Imagen no disponible"
+ },
+ "climate": {
+ "aux_heat": "Calor auxiliar",
+ "away_mode": "Fuera de casa",
+ "cooling": "{name} enfriando",
+ "current_temperature": "{name} temperatura actual",
+ "currently": "Actualmente",
+ "fan_mode": "Modo del ventilador",
+ "heating": "{name} calentando",
+ "high": "máximo",
+ "low": "mínimo",
+ "on_off": "Encendido / Apagado",
+ "operation": "Modo",
+ "preset_mode": "Preajuste",
+ "swing_mode": "Modo de oscilación",
+ "target_humidity": "Humedad fijada",
+ "target_temperature": "Temperatura fijada",
+ "target_temperature_entity": "{name} temperatura objetivo",
+ "target_temperature_mode": "{name} temperatura objetivo {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "decrementar",
+ "increment": "incrementar",
+ "reset": "reiniciar"
+ }
+ },
+ "cover": {
+ "position": "Posición",
+ "tilt_position": "Posición inclinada"
+ },
+ "fan": {
+ "direction": "Dirección",
+ "forward": "Adelante",
+ "oscillate": "Oscilar",
+ "preset_mode": "Modo preestablecido",
+ "reverse": "Inverso",
+ "speed": "Velocidad"
+ },
+ "humidifier": {
+ "humidity": "Fijar humedad",
+ "mode": "Modo",
+ "on_entity": "{name} encendido",
+ "target_humidity_entity": "{name} fijada humedad"
+ },
+ "light": {
+ "brightness": "Brillo",
+ "cold_white_value": "Brillo del blanco frío",
+ "color_brightness": "Brillo del color",
+ "color_temperature": "Temperatura del color",
+ "effect": "Efecto",
+ "warm_white_value": "Brillo del blanco cálido",
+ "white_value": "Brillo del blanco"
+ },
+ "lock": {
+ "code": "Código",
+ "lock": "Bloquear",
+ "unlock": "Desbloquear"
+ },
+ "media_player": {
+ "browse_media": "Explorar medios",
+ "media_next_track": "Siguiente pista",
+ "media_pause": "Pausa",
+ "media_play": "Reproducir",
+ "media_play_pause": "Reproducir/pausa",
+ "media_previous_track": "Pista anterior",
+ "media_stop": "Detener",
+ "media_volume_down": "Bajar el volumen",
+ "media_volume_mute": "Silenciar el volumen",
+ "media_volume_unmute": "Reactivar el volumen",
+ "media_volume_up": "Subir el volumen",
+ "nothing_playing": "Sin reproducir",
+ "sound_mode": "Modo de sonido",
+ "source": "Fuente",
+ "text_to_speak": "Texto para hablar",
+ "turn_off": "Apagar",
+ "turn_on": "Encender"
+ },
+ "persistent_notification": {
+ "dismiss": "Descartar"
+ },
+ "scene": {
+ "activate": "Activar"
+ },
+ "script": {
+ "cancel": "Cancelar",
+ "cancel_multiple": "Cancelar {number}",
+ "run": "Ejecutar"
+ },
+ "service": {
+ "run": "Ejecutar"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "Cancelar",
+ "finish": "Terminar",
+ "pause": "Pausar",
+ "start": "Iniciar"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Reanudar la limpieza",
+ "return_to_base": "Volver a la base",
+ "start_cleaning": "Empezar la limpieza",
+ "turn_off": "Apagar",
+ "turn_on": "Encender"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Modo ausente",
+ "currently": "Actualmente",
+ "on_off": "Encendido / Apagado",
+ "operation": "Operación",
+ "target_temperature": "Temperatura deseada"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Presión del aire",
+ "humidity": "Humedad",
+ "precipitation": "Precipitación",
+ "temperature": "Temperatura",
+ "visibility": "Visibilidad",
+ "wind_speed": "Velocidad del viento"
+ },
+ "cardinal_direction": {
+ "e": "E",
+ "ene": "ENE",
+ "ese": "ESE",
+ "n": "N",
+ "ne": "NE",
+ "nne": "NNE",
+ "nnw": "NNO",
+ "nw": "NO",
+ "s": "S",
+ "se": "SE",
+ "sse": "SSE",
+ "ssw": "SSO",
+ "sw": "SO",
+ "w": "O",
+ "wnw": "ONO",
+ "wsw": "OSO"
+ },
+ "day": "Día",
+ "forecast": "Pronóstico",
+ "high": "Máxima",
+ "low": "Mínima",
+ "night": "Noche"
+ }
+ },
+ "common": {
+ "and": "y",
+ "back": "Volver",
+ "cancel": "Cancelar",
+ "clear": "Limpiar",
+ "close": "Cerrar",
+ "continue": "Continuar",
+ "copied": "Copiado",
+ "copied_clipboard": "Copiado al portapapeles",
+ "delete": "Eliminar",
+ "disable": "Deshabilitar",
+ "enable": "Habilitar",
+ "error_required": "Obligatorio",
+ "help": "Ayuda",
+ "leave": "Salir",
+ "loading": "Cargando",
+ "menu": "Menú",
+ "move": "Mover",
+ "next": "Siguiente",
+ "no": "No",
+ "not_now": "Ahora no",
+ "overflow_menu": "Menú de desbordamiento",
+ "previous": "Anterior",
+ "refresh": "Actualizar",
+ "remove": "Eliminar",
+ "rename": "Renombrar",
+ "save": "Guardar",
+ "skip": "Omitir",
+ "stay": "Permanecer",
+ "submit": "Enviar",
+ "successfully_deleted": "Eliminado correctamente",
+ "successfully_saved": "Guardado correctamente",
+ "undo": "Deshacer",
+ "yes": "Sí"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Complemento",
+ "error": {
+ "fetch_addons": {
+ "description": "Hubo un error al cargar complementos.",
+ "title": "Error al cargar complementos"
+ },
+ "no_supervisor": {
+ "description": "No se admiten complementos.",
+ "title": "Sin Supervisor"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Añadir",
+ "failed_create_area": "No se pudo crear el área.",
+ "name": "Nombre",
+ "text": "Introduce el nombre del área nueva.",
+ "title": "Añadir nueva área"
+ },
+ "add_new": "Añade una nueva área…",
+ "area": "Área",
+ "clear": "Limpiar",
+ "no_areas": "No tienes áreas",
+ "no_match": "No se han encontrado áreas coincidentes",
+ "show_areas": "Mostrar áreas"
+ },
+ "attributes": {
+ "expansion_header": "Atributos"
+ },
+ "blueprint-picker": {
+ "add_user": "Añadir usuario",
+ "remove_user": "Eliminar usuario",
+ "select_blueprint": "Selecciona un plano"
+ },
+ "calendar": {
+ "my_calendars": "Mis calendarios",
+ "today": "Hoy"
+ },
+ "data-table": {
+ "clear": "Limpiar",
+ "filtering_by": "Filtrando por",
+ "hidden": "{number} oculto",
+ "no-data": "Sin datos",
+ "search": "Buscar"
+ },
+ "date-range-picker": {
+ "end_date": "Fecha de fin",
+ "ranges": {
+ "last_week": "La semana pasada",
+ "this_week": "Esta semana",
+ "today": "Hoy",
+ "yesterday": "Ayer"
+ },
+ "select": "Seleccionar",
+ "start_date": "Fecha de inicio"
+ },
+ "device-picker": {
+ "clear": "Limpiar",
+ "device": "Dispositivo",
+ "no_area": "Ningún área",
+ "no_devices": "No tienes ningún dispositivo",
+ "no_match": "No se han encontrado dispositivos coincidentes",
+ "show_devices": "Mostrar dispositivos",
+ "toggle": "Interruptor"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Atributo",
+ "show_attributes": "Mostrar atributos"
+ },
+ "entity-picker": {
+ "clear": "Limpiar",
+ "edit": "Editar",
+ "entity": "Entidad",
+ "no_match": "No se han encontrado entidades coincidentes",
+ "show_entities": "Mostrar entidades"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "Integración de historial deshabilitada",
+ "loading_history": "Cargando historial de estado…",
+ "no_history_found": "No se encontró historial de estado."
+ },
+ "logbook": {
+ "by": "por",
+ "by_service": "por el servicio",
+ "entries_not_found": "No se han encontrado eventos en el registro.",
+ "messages": {
+ "became_unavailable": "dejó de estar disponible",
+ "changed_to_state": "cambiado a {state}",
+ "cleared_device_class": "despejado (no se detecta {device_class})",
+ "cleared_tampering": "manipulación borrada",
+ "detected_device_class": "detectado {device_class}",
+ "detected_tampering": "manipulación detectada",
+ "is_closing": "se está cerrando",
+ "is_opening": "se está abriendo",
+ "rose": "salió",
+ "set": "se puso",
+ "turned_off": "apagado",
+ "turned_on": "encendido",
+ "was_at_home": "se detectó en casa",
+ "was_at_state": "se detectó en {state}",
+ "was_away": "se detectó como ausente",
+ "was_closed": "se cerró",
+ "was_connected": "se conectó",
+ "was_disconnected": "se desconectó",
+ "was_locked": "se bloqueó",
+ "was_low": "era bajo",
+ "was_normal": "era normal",
+ "was_opened": "se abrió",
+ "was_plugged_in": "se enchufó",
+ "was_safe": "era seguro",
+ "was_unlocked": "se desbloqueó",
+ "was_unplugged": "se desenchufó",
+ "was_unsafe": "era inseguro"
+ },
+ "retrieval_error": "No se pudo cargar el registro",
+ "show_trace": "Mostrar traza"
+ },
+ "media-browser": {
+ "audio_not_supported": "Tu navegador no es compatible con el elemento de audio.",
+ "choose_player": "Elige reproductor",
+ "class": {
+ "album": "Álbum",
+ "app": "Aplicación",
+ "artist": "Artista",
+ "channel": "Canal",
+ "composer": "Compositor",
+ "contributing_artist": "Artista colaborador",
+ "directory": "Biblioteca",
+ "episode": "Episodio",
+ "game": "Juego",
+ "genre": "Género",
+ "image": "Imagen",
+ "movie": "Película",
+ "music": "Música",
+ "playlist": "Lista de reproducción",
+ "podcast": "Podcast",
+ "season": "Temporada",
+ "track": "Pista",
+ "tv_show": "Programa de TV",
+ "url": "URL",
+ "video": "Vídeo"
+ },
+ "documentation": "documentación",
+ "learn_adding_local_media": "Saber más sobre cómo añadir contenido multimedia en la {documentation}.",
+ "local_media_files": "Coloca tus archivos de vídeo, audio e imagen en el directorio multimedia para poder navegar y reproducirlos en el navegador o en los reproductores compatibles.",
+ "media-player-browser": "Medios",
+ "media_browsing_error": "Error de navegación de medios",
+ "media_not_supported": "El Reproductor multimedia del navegador no es compatible con este tipo de medio",
+ "media_player": "Reproductor multimedia",
+ "no_items": "No hay elementos",
+ "no_local_media_found": "No se ha encontrado contenido multimedia local",
+ "no_media_folder": "Parece que aún no has creado un directorio multimedia.",
+ "pick": "Elegir",
+ "pick-media": "Elegir medio",
+ "play": "Reproducir",
+ "play-media": "Reproducir medio",
+ "setup_local_help": "Consulta la {documentation} sobre cómo configurar el contenido multimedia local.",
+ "video_not_supported": "Tu navegador no es compatible con el elemento de vídeo.",
+ "web-browser": "Navegador web"
+ },
+ "picture-upload": {
+ "label": "Imagen",
+ "unsupported_format": "Formato no soportado, por favor, selecciona una imagen JPEG, PNG o GIF."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Introduce el valor del código QR",
+ "manual_input": "Puedes escanear el código QR con otro escáner QR y pegar el código en la entrada a continuación",
+ "not_supported": "Tu navegador no admite el escaneo QR.",
+ "only_https_supported": "Solo puedes usar tu cámara para escanear un código QR cuando usas HTTPS.",
+ "select_camera": "Seleccionar cámara"
+ },
+ "related-filter-menu": {
+ "filter": "Filtrar",
+ "filter_by_area": "Filtrar por área",
+ "filter_by_device": "Filtrar por dispositivo",
+ "filter_by_entity": "Filtrar por entidad",
+ "filtered_by_area": "área: {area_name}",
+ "filtered_by_device": "dispositivo: {device_name}",
+ "filtered_by_entity": "entidad: {entity_name}"
+ },
+ "related-items": {
+ "area": "Área",
+ "automation": "Parte de las siguientes automatizaciones",
+ "device": "Dispositivo",
+ "entity": "Entidades relacionadas",
+ "group": "Parte de los siguientes grupos",
+ "integration": "Integración",
+ "no_related_found": "No se encontraron elementos relacionados.",
+ "scene": "Parte de las siguientes escenas",
+ "script": "Parte de los siguientes scripts"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\none {día}\nother {días}\n}",
+ "hour": "{count} {count, plural,\none {hora}\nother {horas}\n}",
+ "minute": "{count} {count, plural,\none {minuto}\nother {minutos}\n}",
+ "second": "{count} {count, plural,\none {segundo}\nother {segundos}\n}",
+ "week": "{count} {count, plural,\none {semana}\nother {semanas}\n}"
+ },
+ "future_duration": {
+ "day": "dentro de {count} {count, plural,\none {día}\nother {días}\n}",
+ "hour": "dentro de {count} {count, plural,\none {hora}\nother {horas}\n}",
+ "minute": "dentro de {count} {count, plural,\none {minuto}\nother {minutos}\n}",
+ "second": "dentro de {count} {count, plural,\none {segundo}\nother {segundos}\n}",
+ "week": "dentro de {count} {count, plural,\none {semana}\nother {semanas}\n}"
+ },
+ "just_now": "Ahora mismo",
+ "never": "Nunca",
+ "past_duration": {
+ "day": "Hace {count} {count, plural,\none {día}\nother {días}\n}",
+ "hour": "Hace {count} {count, plural,\none {hora}\nother {horas}\n}",
+ "minute": "Hace {count} {count, plural,\none {minuto}\nother {minutos}\n}",
+ "second": "Hace {count} {count, plural,\none {segundo}\nother {segundos}\n}",
+ "week": "hace {count} {count, plural,\none {semana}\nother {semanas}\n}"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Documentación sobre la integración",
+ "required": "Este campo es obligatorio",
+ "service_data": "Datos del servicio",
+ "target": "Objetivos",
+ "target_description": "¿Qué debería utilizar este servicio como áreas, dispositivos o entidades objetivo?"
+ },
+ "service-picker": {
+ "service": "Servicio"
+ },
+ "statistic-picker": {
+ "learn_more": "Saber más sobre estadísticas",
+ "missing_entity": "¿Por qué mi entidad no aparece en la lista?",
+ "no_match": "No se han encontrado estadísticas coincidentes",
+ "no_statistics": "No tienes ninguna estadística",
+ "statistic": "Estadística"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Cargando estadísticas…",
+ "no_statistics_found": "No se encontraron estadísticas.",
+ "statistic_types": {
+ "max": "max",
+ "mean": "promedio",
+ "min": "min",
+ "sum": "suma"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Elige área",
+ "add_device_id": "Elige dispositivo",
+ "add_entity_id": "Elige entidad",
+ "expand": "Expandir",
+ "expand_area_id": "Divide este área en dispositivos y entidades separadas.",
+ "expand_device_id": "Divide este dispositivo en entidades separadas.",
+ "remove": "Eliminar",
+ "remove_area_id": "Eliminar área",
+ "remove_device_id": "Eliminar dispositivo",
+ "remove_entity_id": "Eliminar entidad"
+ },
+ "user-picker": {
+ "add_user": "Añadir usuario",
+ "no_user": "Sin usuario",
+ "remove_user": "Eliminar usuario"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Si los dispositivos recién descubiertos para {integration} deberían agregarse automáticamente.",
+ "enable_new_entities_label": "Habilitar entidades recién añadidas.",
+ "enable_polling_description": "Si Home Assistant debería sondear automáticamente las entidades de {integration} para obtener actualizaciones.",
+ "enable_polling_label": "Habilitar el sondeo de actualizaciones.",
+ "restart_home_assistant": "Debes reiniciar Home Assistant para que los cambios surtan efecto.",
+ "title": "Opciones del sistema para {integration}",
+ "update": "Actualizar"
+ },
+ "domain_toggler": {
+ "reset_entities": "Restablecer entidades",
+ "title": "Alternar dominios"
+ },
+ "entity_registry": {
+ "control": "Control",
+ "customize_link": "personalizaciones de entidades",
+ "dismiss": "Descartar",
+ "editor": {
+ "advanced": "Configuración avanzada",
+ "area": "Establecer solo el área de la entidad",
+ "area_note": "Por defecto, las entidades de un dispositivo están en la misma área que el dispositivo. Si cambias el área de esta entidad, ya no emulará el área del dispositivo.",
+ "change_device_area": "Cambiar el área del dispositivo",
+ "confirm_delete": "¿Estás seguro de que deseas eliminar esta entidad?",
+ "delete": "Eliminar",
+ "device_class": "Mostrar como",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Puerta",
+ "garage_door": "Puerta de garaje",
+ "opening": "Otro",
+ "window": "Ventana"
+ },
+ "cover": {
+ "door": "Puerta",
+ "garage": "Puerta de garaje",
+ "window": "Ventana"
+ }
+ },
+ "device_disabled": "El dispositivo de esta entidad está deshabilitado.",
+ "enabled_cause": "Deshabilitada por {cause}.",
+ "enabled_delay_confirm": "Las entidades habilitadas se agregarán a Home Assistant en {delay} segundos",
+ "enabled_description": "Las entidades deshabilitadas no se añadirán a Home Assistant.",
+ "enabled_label": "Habilitar entidad",
+ "enabled_restart_confirm": "Reinicia Home Assistant para terminar de habilitar las entidades",
+ "entity_id": "ID de la entidad",
+ "follow_device_area": "Emular el área del dispositivo",
+ "icon": "Icono",
+ "icon_error": "Los iconos deben tener el formato 'prefijo:nombreicono', por ejemplo, 'mdi:home'",
+ "name": "Nombre",
+ "note": "Nota: Es posible que esto no funcione todavía con todas las integraciones.",
+ "open_device_settings": "Abrir la configuración del dispositivo",
+ "unavailable": "Esta entidad no está disponible.",
+ "update": "Actualizar"
+ },
+ "faq": "documentación",
+ "info_customize": "Puedes sobrescribir algunos atributos en la sección {customize_link}.",
+ "no_unique_id": "Esta entidad (\"{entity_id}\") no tiene un ID único, por lo tanto su configuración no se puede administrar desde la IU. Consulta el {faq_link} para obtener más detalles.",
+ "related": "Relacionado",
+ "settings": "Configuración"
+ },
+ "generic": {
+ "cancel": "Cancelar",
+ "close": "Cerrar",
+ "default_confirmation_title": "¿Estás seguro?",
+ "ok": "Aceptar"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Valor inicial",
+ "maximum": "Valor máximo",
+ "minimum": "Valor mínimo",
+ "restore": "Restaurar el último valor conocido cuando se inicia Home Assistant",
+ "step": "Tamaño del paso"
+ },
+ "generic": {
+ "icon": "Icono",
+ "name": "Nombre"
+ },
+ "input_datetime": {
+ "date": "Fecha",
+ "datetime": "Fecha y hora",
+ "mode": "¿Qué quieres introducir?",
+ "time": "Hora"
+ },
+ "input_number": {
+ "box": "Campo de entrada",
+ "max": "Valor máximo",
+ "min": "Valor mínimo",
+ "mode": "Modo de visualización",
+ "slider": "Control deslizante",
+ "step": "Tamaño del paso",
+ "unit_of_measurement": "Unidad de medida"
+ },
+ "input_select": {
+ "add": "Añadir",
+ "add_option": "Añadir opción",
+ "no_options": "No hay opciones todavía.",
+ "options": "Opciones"
+ },
+ "input_text": {
+ "max": "Longitud máxima",
+ "min": "Longitud mínima",
+ "mode": "Modo de visualización",
+ "password": "Contraseña",
+ "pattern": "Patrón Regex para la validación del lado del cliente",
+ "text": "Texto"
+ },
+ "platform_not_loaded": "La integración {platform} no se ha cargado. Por favor añádela a tu configuración, ya sea agregando 'default_config:' o ''{platform}:''.",
+ "required_error_msg": "Este campo es obligatorio",
+ "timer": {
+ "duration": "Duración"
+ },
+ "yaml_not_editable": "La configuración de esta entidad no se puede editar desde la IU. Solo las entidades constituidas desde la IU se pueden configurar desde la IU"
+ },
+ "image_cropper": {
+ "crop": "Recortar"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Cerrar persiana",
+ "close_tile_cover": "Cerrar la inclinación de la persiana",
+ "close_tilt_cover": "Cerrar la inclinación de la persiana",
+ "open_cover": "Abrir persiana",
+ "open_tilt_cover": "Abrir la inclinación de la persiana",
+ "stop_cover": "Detener la persiana"
+ },
+ "details": "Detalles",
+ "dismiss": "Descartar diálogo",
+ "edit": "Editar entidad",
+ "history": "Historial",
+ "last_changed": "Último cambio",
+ "last_updated": "Última actualización",
+ "logbook": "Registro",
+ "person": {
+ "create_zone": "Crear zona a partir de la ubicación actual"
+ },
+ "remote": {
+ "activity": "Actividad actual"
+ },
+ "restored": {
+ "confirm_remove_text": "¿Estás seguro de que deseas eliminar esta entidad?",
+ "confirm_remove_title": "¿Eliminar entidad?",
+ "not_provided": "Esta entidad no está disponible actualmente y es huérfana de una integración o dispositivo eliminado, cambiado o disfuncional.",
+ "remove_action": "Eliminar entidad",
+ "remove_intro": "Si la entidad ya no está en uso, puedes limpiarla eliminándola."
+ },
+ "script": {
+ "last_action": "Última acción",
+ "last_triggered": "Ultima activación"
+ },
+ "settings": "Configuración de la entidad",
+ "show_more": "Mostrar más",
+ "sun": {
+ "elevation": "Elevación",
+ "rising": "Salida del sol",
+ "setting": "Puesta de sol"
+ },
+ "updater": {
+ "title": "Instrucciones de actualización"
+ },
+ "vacuum": {
+ "clean_spot": "Limpiar punto",
+ "commands": "Comandos de aspiradora:",
+ "fan_speed": "Velocidad del ventilador",
+ "locate": "Localizar",
+ "pause": "Pausar",
+ "return_home": "Volver a casa",
+ "start": "Iniciar",
+ "start_pause": "Iniciar/Pausar",
+ "status": "Estado",
+ "stop": "Detener"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Intentar analizar mensajes MQTT como JSON",
+ "entities": "Entidades",
+ "no_entities": "No hay entidades",
+ "no_triggers": "No hay desencadenantes",
+ "payload_display": "Mostrar payload",
+ "recent_messages": "{n} mensaje(s) recibido(s) más recientemente",
+ "show_as_yaml": "Mostrar como YAML",
+ "title": "Información de depuración de {device}",
+ "triggers": "Desencadenantes"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Opciones"
+ },
+ "loading": {
+ "loading_flow": "Por favor, espera mientras se inicializan las opciones de {integration}",
+ "loading_step": "Cargando el siguiente paso para {integration}"
+ },
+ "success": {
+ "description": "Las opciones se guardaron correctamente."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Áreas",
+ "automation": "Automatizaciones",
+ "blueprint": "Planos",
+ "core": "Configuración general",
+ "customize": "Personalizaciones",
+ "devices": "Dispositivos",
+ "energy": "Configuración de energía",
+ "entities": "Entidades",
+ "helpers": "Ayudantes",
+ "info": "Información",
+ "integrations": "Integraciones",
+ "logs": "Registros",
+ "lovelace": "Paneles de Control Lovelace",
+ "person": "Personas",
+ "scene": "Escenas",
+ "script": "Scripts",
+ "server_control": "Controles del servidor",
+ "tag": "Etiquetas",
+ "users": "Usuarios",
+ "zone": "Zonas"
+ },
+ "reload": {
+ "automation": "Automatizaciones",
+ "command_line": "Entidades de línea de comandos",
+ "core": "Ubicación y personalizaciones",
+ "filesize": "Entidades de tamaño de archivo",
+ "filter": "Entidades de filtro",
+ "generic": "Entidades de cámara IP genéricas",
+ "generic_thermostat": "Entidades de termostato genéricas",
+ "group": "Grupos, entidades de grupo, y notificar servicios",
+ "history_stats": "Entidades de estadísticas del historial",
+ "homekit": "HomeKit",
+ "input_boolean": "Campos booleanos",
+ "input_datetime": "Campos de fecha y hora",
+ "input_number": "Campos numéricos",
+ "input_select": "Campos desplegables",
+ "input_text": "Campos de texto",
+ "min_max": "Entidades mín/máx",
+ "mqtt": "Entidades MQTT configuradas manualmente",
+ "person": "Personas",
+ "ping": "Entidades de sensor binario de ping",
+ "reload": "{domain}",
+ "rest": "Entidades rest y notificar servicios",
+ "rpi_gpio": "Entidades GPIO de Raspberry Pi",
+ "scene": "Escenas",
+ "script": "Scripts",
+ "smtp": "Servicios de notificación SMTP",
+ "statistics": "Entidades de estadísticas",
+ "telegram": "Servicios de notificación de Telegram",
+ "template": "Entidades de plantilla",
+ "themes": "Temas",
+ "trend": "Entidades de tendencia",
+ "universal": "Entidades de reproductor multimedia universal",
+ "zone": "Zonas"
+ },
+ "server_control": {
+ "perform_action": "{action} servidor",
+ "restart": "Reiniciar",
+ "stop": "Detener"
+ },
+ "types": {
+ "navigation": "Navegar",
+ "reload": "Recargar",
+ "server_control": "Servidor"
+ }
+ },
+ "filter_placeholder": "Filtro de entidad",
+ "key_c_hint": "Pulsa 'c' en cualquier página para abrir esta barra de búsqueda",
+ "nothing_found": "¡Nada encontrado!",
+ "title": "Búsqueda rápida"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant no escuchó nada",
+ "error": "¡Vaya! Se ha producido un error.",
+ "found": "Encontré lo siguiente para ti:",
+ "how_can_i_help": "¿Cómo puedo ayudar?",
+ "label": "Escribe una pregunta y pulsa 'Enter'.",
+ "label_voice": "Escribe y pulsa 'Enter' o toca el micrófono para hablar"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Añadir dispositivos a través de este dispositivo",
+ "clusters": "Administrar clústeres",
+ "device_children": "Ver hijos",
+ "reconfigure": "Reconfigurar dispositivo",
+ "remove": "Eliminar dispositivos",
+ "view_in_visualization": "Ver en Visualización",
+ "zigbee_information": "Firma del dispositivo Zigbee"
+ },
+ "confirmations": {
+ "remove": "¿Estás seguro de que quieres eliminar este dispositivo?"
+ },
+ "device_children": "Dispositivos Zigbee hijos",
+ "device_signature": "Firma del dispositivo Zigbee",
+ "last_seen": "Visto por última vez",
+ "manuf": "por {manufacturer}",
+ "no_area": "Ningún área",
+ "power_source": "Fuente de alimentación",
+ "quirk": "Peculiaridad",
+ "services": {
+ "reconfigure": "Reconfigura el dispositivo ZHA (recuperar dispositivo). Usa esto si tienes problemas con el dispositivo. Si el dispositivo en cuestión es un dispositivo alimentado por batería, asegúrate de que está activo y aceptando comandos cuando uses este servicio.",
+ "remove": "Eliminar un dispositivo de la red Zigbee.",
+ "updateDeviceName": "Establece un nombre personalizado para este dispositivo en el registro de dispositivos.",
+ "zigbee_information": "Ver la información Zigbee para el dispositivo."
+ },
+ "unknown": "Desconocido",
+ "zha_device_card": {
+ "device_name_placeholder": "Cambiar el nombre del dispositivo"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Atributo",
+ "battery_device_warning": "Antes de iniciar el proceso de reconfiguración deberás despertar los dispositivos que funcionan con batería. Consulta el manual de tu dispositivo para obtener instrucciones sobre cómo despertar el dispositivo.",
+ "bind_header": "Emparejamiento",
+ "button_hide": "Ocultar detalles",
+ "button_show": "Mostrar detalles",
+ "cluster_header": "Clúster",
+ "configuration_complete": "Reconfiguración del dispositivo completada.",
+ "configuration_failed": "Error en la reconfiguración del dispositivo. Es posible que haya información adicional disponible en los registros.",
+ "configuring_alt": "Configurando",
+ "heading": "Reconfigurando el dispositivo",
+ "in_progress": "El dispositivo se está reconfigurando. Esto puede llevar algún tiempo.",
+ "introduction": "Reconfigura un dispositivo en tu red Zigbee. Utiliza esta función si tu dispositivo no funciona correctamente.",
+ "min_max_change": "min/max/cambio",
+ "reporting_header": "Informes",
+ "run_in_background": "Puedes cerrar este cuadro de diálogo y la reconfiguración continuará en segundo plano.",
+ "start_reconfiguration": "Iniciar reconfiguración"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\none {día}\nother {días}\n}",
+ "hour": "{count} {count, plural,\nuna {hora}\nother {horas}\n}",
+ "minute": "{count} {count, plural,\none {minuto}\nother {minutos}\n}",
+ "second": "{count} {count, plural,\none {segundo}\nother {segundos}\n}",
+ "week": "{count} {count, plural,\none {semana}\nother {semanas}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Aún puedes editar tu configuración en YAML.",
+ "editor_not_available": "No hay ningún editor visual disponible para el tipo \"{type}\".",
+ "editor_not_supported": "El editor visual no es compatible con esta configuración",
+ "error_detected": "Errores de configuración detectados",
+ "key_missing": "Falta la clave obligatoria \"{key}\".",
+ "key_not_expected": "El editor visual no espera o no admite la clave \"{key}\".",
+ "key_wrong_type": "El valor proporcionado para \"{key}\" no es compatible con el editor visual. Aceptamos ({type_correct}) pero recibimos ({type_wrong}).",
+ "no_state_array_support": "No se admiten múltiples valores de estado en el editor visual",
+ "no_template_editor_support": "Las plantillas no son compatibles con el editor visual",
+ "no_type_provided": "No se proporciona ningún tipo."
+ },
+ "supervisor": {
+ "ask": "Pide ayuda",
+ "observer": "Comprueba el Observador",
+ "reboot": "Intenta reiniciar el host",
+ "system_health": "Comprueba la salud del sistema",
+ "title": "¡No se pudo cargar el panel del Supervisor!",
+ "wait": "Si acabas de empezar, asegúrate de haber dado al Supervisor suficiente tiempo para comenzar."
+ }
+ },
+ "login-form": {
+ "log_in": "Iniciar sesión",
+ "password": "Contraseña",
+ "remember": "Recordar"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Haz clic en el botón para configurar {entity}",
+ "close": "Cerrar",
+ "dismiss_all": "Descartar todo",
+ "empty": "Sin Notificaciones",
+ "title": "Notificaciones"
+ },
+ "notification_toast": {
+ "connection_lost": "Conexión perdida. Reconectando…",
+ "dismiss": "Descartar",
+ "integration_starting": "Iniciando {integration}, no estará todo disponible hasta que finalice.",
+ "service_call_failed": "Error al llamar al servicio {service}.",
+ "started": "¡Home Assistant se ha iniciado!",
+ "starting": "Home Assistant se está iniciando, no estará todo disponible hasta que finalice.",
+ "triggered": "Activado {name}",
+ "wrapping_up_startup": "Completando el inicio, no estará todo disponible hasta que finalice."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "¿Faltan opciones de configuración? Activa el modo avanzado",
+ "link_profile_page": "tu página de perfil"
+ },
+ "areas": {
+ "add_picture": "Añadir una imagen",
+ "assigned_to_area": "Asignado a esta área",
+ "caption": "Áreas",
+ "data_table": {
+ "area": "Área",
+ "devices": "Dispositivos",
+ "entities": "Entidades"
+ },
+ "delete": {
+ "confirmation_text": "Todos los dispositivos en esta área quedarán sin asignar.",
+ "confirmation_title": "¿Estás seguro de que deseas eliminar esta área?"
+ },
+ "description": "Agrupa dispositivos y entidades en áreas",
+ "edit_settings": "Configuración del área",
+ "editor": {
+ "area_id": "ID de área",
+ "create": "Crear",
+ "default_name": "Área Nueva",
+ "delete": "Eliminar",
+ "linked_entities_caption": "Entidades",
+ "name": "Nombre",
+ "name_required": "Se requiere el nombre",
+ "no_linked_entities": "No hay entidades vinculadas a este área.",
+ "unknown_error": "Error desconocido",
+ "update": "Actualizar"
+ },
+ "picker": {
+ "create_area": "Crear área",
+ "header": "Áreas",
+ "integrations_page": "Integraciones",
+ "introduction": "Las áreas se utilizan para organizar dónde están los dispositivos. Esta información se utilizará en todo Home Assistant para ayudarte a organizar tu interfaz, permisos e integraciones con otros sistemas.",
+ "introduction2": "Para colocar dispositivos en un área, utiliza el siguiente enlace para navegar a la página de integraciones y luego haz clic en una integración configurada para llegar a las tarjetas de dispositivos.",
+ "no_areas": "¡Parece que aún no tienes áreas!"
+ },
+ "targeting_area": "Apuntando a esta área"
+ },
+ "automation": {
+ "caption": "Automatizaciones",
+ "description": "Crea reglas de comportamiento personalizadas para tu hogar",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Usa un plano"
+ },
+ "header": "Crear una nueva automatización",
+ "how": "¿Cómo quieres crear tu nueva automatización?",
+ "start_empty": "Empezar con una automatización vacía",
+ "start_empty_description": "Crea una nueva automatización desde cero",
+ "thingtalk": {
+ "create": "Crear",
+ "header": "Describe la automatización que quieres crear",
+ "input_label": "¿Qué debería hacer esta automatización?",
+ "intro": "E intentaremos crearla para ti. Por ejemplo: Apaga las luces cuando me vaya."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Añadir acción",
+ "delete": "Eliminar",
+ "delete_confirm": "¿Seguro que quieres eliminarlo?",
+ "duplicate": "Duplicar",
+ "header": "Acciones",
+ "introduction": "Las acciones son lo que hará Home Assistant cuando se desencadene la automatización.",
+ "learn_more": "Saber más sobre las acciones.",
+ "name": "Acción",
+ "type": {
+ "choose": {
+ "add_option": "Añadir opción",
+ "conditions": "Condiciones",
+ "default": "Acciones predeterminadas",
+ "label": "Elegir",
+ "option": "Opción {number}",
+ "remove_option": "Eliminar opción",
+ "sequence": "Acciones"
+ },
+ "condition": {
+ "label": "Condición"
+ },
+ "delay": {
+ "delay": "Duración",
+ "label": "Esperar a que pase el tiempo (retraso)"
+ },
+ "device_id": {
+ "action": "Acción",
+ "extra_fields": {
+ "brightness_pct": "Brillo",
+ "code": "Código",
+ "flash": "Destello",
+ "humidity": "Humedad",
+ "message": "Mensaje",
+ "mode": "Modo",
+ "position": "Posición",
+ "title": "Título",
+ "value": "Valor"
+ },
+ "label": "Dispositivo"
+ },
+ "event": {
+ "event": "Evento",
+ "label": "Disparar evento",
+ "service_data": "Datos del servicio"
+ },
+ "repeat": {
+ "label": "Repetir",
+ "sequence": "Acciones",
+ "type": {
+ "count": {
+ "label": "Cuenta"
+ },
+ "until": {
+ "conditions": "Condiciones de repetición",
+ "label": "Hasta"
+ },
+ "while": {
+ "conditions": "Condiciones de repetición",
+ "label": "Mientras"
+ }
+ },
+ "type_select": "Tipo de repetición"
+ },
+ "scene": {
+ "label": "Activar escena"
+ },
+ "service": {
+ "label": "Llamar servicio"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Continuar tras el límite de tiempo",
+ "label": "Esperar un disparador",
+ "timeout": "Límite de tiempo (opcional)"
+ },
+ "wait_template": {
+ "continue_timeout": "Continuar tras el límite de tiempo",
+ "label": "Esperar a una plantilla",
+ "timeout": "Límite de tiempo (opcional)",
+ "wait_template": "Plantilla de espera"
+ }
+ },
+ "type_select": "Tipo de acción",
+ "unsupported_action": "No hay soporte del editor visual para la acción: {action}"
+ },
+ "alias": "Nombre",
+ "blueprint": {
+ "blueprint_to_use": "Plano a usar",
+ "header": "Plano",
+ "no_blueprints": "No tienes ningún plano",
+ "no_inputs": "Este plano no tiene ninguna entrada."
+ },
+ "conditions": {
+ "add": "Añadir condición",
+ "delete": "Eliminar",
+ "delete_confirm": "¿Estás seguro de que quieres eliminarlo?",
+ "duplicate": "Duplicar",
+ "header": "Condiciones",
+ "introduction": "Las condiciones son opcionales y evitarán que la automatización funcione a menos que se cumplan todas las condiciones.",
+ "learn_more": "Saber más sobre las condiciones",
+ "name": "Condición",
+ "type": {
+ "and": {
+ "label": "Y"
+ },
+ "device": {
+ "condition": "Condición",
+ "extra_fields": {
+ "above": "Por encima de",
+ "below": "Por debajo de",
+ "for": "Duración",
+ "hvac_mode": "Modo del sistema de climatización",
+ "preset_mode": "Modo preestablecido"
+ },
+ "label": "Dispositivo"
+ },
+ "not": {
+ "label": "Negar"
+ },
+ "numeric_state": {
+ "above": "Por encima de",
+ "below": "Por debajo de",
+ "label": "Estado numérico",
+ "value_template": "Valor de la plantilla (opcional)"
+ },
+ "or": {
+ "label": "O"
+ },
+ "state": {
+ "label": "Estado",
+ "state": "Estado"
+ },
+ "sun": {
+ "after": "Después de:",
+ "after_offset": "Tiempo después (opcional)",
+ "before": "Antes de:",
+ "before_offset": "Tiempo antes (opcional)",
+ "label": "Sol",
+ "sunrise": "Amanecer",
+ "sunset": "Puesta de sol"
+ },
+ "template": {
+ "label": "Plantilla",
+ "value_template": "Valor de la plantilla"
+ },
+ "time": {
+ "after": "Después de",
+ "before": "Antes de",
+ "label": "Hora",
+ "type_input": "Valor de un ayudante de fecha/hora",
+ "type_value": "Horario fijo",
+ "weekdays": {
+ "fri": "Viernes",
+ "mon": "Lunes",
+ "sat": "Sábado",
+ "sun": "Domingo",
+ "thu": "Jueves",
+ "tue": "Martes",
+ "wed": "Miércoles"
+ }
+ },
+ "trigger": {
+ "id": "ID del desencadenante",
+ "label": "Desencadenante",
+ "no_triggers": "No hay desencadenantes disponibles"
+ },
+ "zone": {
+ "entity": "Entidad con la ubicación",
+ "label": "Zona",
+ "zone": "Zona"
+ }
+ },
+ "type_select": "Tipo de condición",
+ "unsupported_condition": "No hay soporte del editor visual para la condición: {condition}"
+ },
+ "copy_to_clipboard": "Copiar al portapapeles",
+ "default_name": "Nueva automatización",
+ "description": {
+ "label": "Descripción",
+ "placeholder": "Descripción opcional"
+ },
+ "edit_ui": "Editar en el editor visual",
+ "edit_yaml": "Editar en YAML",
+ "enable_disable": "Activar/Desactivar automatización",
+ "introduction": "Usa automatizaciones para darle vida a tu hogar.",
+ "load_error_not_editable": "Solo las automatizaciones en automations.yaml son editables.",
+ "load_error_unknown": "Error al cargar la automatización ({err_no}).",
+ "max": {
+ "parallel": "Número máximo de ejecuciones paralelas",
+ "queued": "Longitud de la cola"
+ },
+ "modes": {
+ "description": "El modo controla lo que sucede cuando se activa la automatización mientras las acciones aún se ejecutan desde una activación anterior. Consulta la {documentation_link} para obtener más información.",
+ "documentation": "documentación de automatización",
+ "label": "Modo",
+ "parallel": "Paralelo",
+ "queued": "En cola",
+ "restart": "Reiniciar",
+ "single": "Único (predeterminado)"
+ },
+ "move_down": "Mover hacia abajo",
+ "move_up": "Mover hacia arriba",
+ "save": "Guardar",
+ "show_trace": "Mostrar traza",
+ "triggers": {
+ "add": "Añadir desencadenante",
+ "delete": "Eliminar",
+ "delete_confirm": "¿Estás seguro de que quieres eliminarlo?",
+ "duplicate": "Duplicar",
+ "edit_id": "Editar ID del desencadenante",
+ "header": "Desencadenantes",
+ "id": "ID del desencadenante",
+ "introduction": "Los desencadenantes son los que inician el funcionamiento de una regla de automatización. Es posible especificar varios desencadenantes para la misma regla. Una vez que se inicia un desencadenante, Home Assistant comprobará las condiciones, si las hubiere, y ejecutará la acción.",
+ "learn_more": "Saber más sobre los desencadenantes",
+ "name": "Desencadenante",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Por encima de",
+ "below": "Por debajo de",
+ "for": "Duración (opcional)",
+ "zone": "Zona"
+ },
+ "label": "Dispositivo",
+ "trigger": "Desencadenante"
+ },
+ "event": {
+ "context_user_pick": "Seleccionar usuario",
+ "context_user_picked": "Evento desencadenado por usuario",
+ "context_users": "Límite a eventos desencadenados por",
+ "event_data": "Datos del evento",
+ "event_type": "Tipo de evento",
+ "label": "Evento"
+ },
+ "geo_location": {
+ "enter": "Entrar",
+ "event": "Evento:",
+ "label": "Geolocalización",
+ "leave": "Salir",
+ "source": "Fuente",
+ "zone": "Zona"
+ },
+ "homeassistant": {
+ "event": "Evento:",
+ "label": "Home Assistant",
+ "shutdown": "Apagado",
+ "start": "Arranque"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Payload (opcional)",
+ "topic": "Topic"
+ },
+ "numeric_state": {
+ "above": "Por encima de",
+ "below": "Por debajo de",
+ "label": "Estado numérico",
+ "value_template": "Valor de la plantilla (opcional)"
+ },
+ "state": {
+ "attribute": "Atributo (opcional)",
+ "for": "Durante (opcional)",
+ "from": "Desde (opcional)",
+ "label": "Estado",
+ "to": "A (opcional)"
+ },
+ "sun": {
+ "event": "Evento:",
+ "label": "Sol",
+ "offset": "Desfase (opcional)",
+ "sunrise": "Amanecer",
+ "sunset": "Puesta de sol"
+ },
+ "tag": {
+ "label": "Etiqueta"
+ },
+ "template": {
+ "label": "Plantilla",
+ "value_template": "Valor de la plantilla"
+ },
+ "time": {
+ "at": "A las",
+ "label": "Hora",
+ "type_input": "Valor de un ayudante de fecha/hora",
+ "type_value": "Horario fijo"
+ },
+ "time_pattern": {
+ "hours": "Horas",
+ "label": "Patrón de tiempo",
+ "minutes": "Minutos",
+ "seconds": "Segundos"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "ID de webhook"
+ },
+ "zone": {
+ "enter": "Entrar",
+ "entity": "Entidad con la ubicación",
+ "event": "Evento:",
+ "label": "Zona",
+ "leave": "Salir",
+ "zone": "Zona"
+ }
+ },
+ "type_select": "Tipo de desencadenante",
+ "unsupported_platform": "No hay soporte del editor visual para la plataforma: {platform}"
+ },
+ "unsaved_confirm": "Tienes cambios sin guardar. ¿Estás seguro de que quieres salir?"
+ },
+ "picker": {
+ "add_automation": "Añadir automatización",
+ "delete_automation": "Eliminar la automatización",
+ "delete_confirm": "¿Estás seguro de que quieres eliminar esta automatización?",
+ "dev_automation": "Depurar automatización",
+ "dev_only_editable": "Solo las automatizaciones que tienen un ID único asignado se pueden depurar.",
+ "duplicate": "Duplicar",
+ "duplicate_automation": "Duplicar la automatización",
+ "edit_automation": "Editar automatización",
+ "header": "Editor de automatización",
+ "headers": {
+ "name": "Nombre"
+ },
+ "introduction": "El editor de automatización te permite crear y editar automatizaciones. En el enlace siguiente puedes leer las instrucciones para asegurarte de que has configurado correctamente Home Assistant.",
+ "learn_more": "Saber más sobre las automatizaciones",
+ "no_automations": "No pudimos encontrar ninguna automatización",
+ "only_editable": "Solo las automatizaciones definidas en automations.yaml son editables.",
+ "pick_automation": "Elige la automatización para editar",
+ "show_info_automation": "Mostrar información sobre la automatización"
+ },
+ "thingtalk": {
+ "create": "Crear automatización",
+ "link_devices": {
+ "ambiguous_entities": "Uno o más dispositivos tienen más de una entidad coincidente, selecciona la que deseas utilizar.",
+ "header": "¡Excelente! Ahora necesitamos vincular algunos dispositivos",
+ "unknown_placeholder": "Marcador de posición desconocido"
+ },
+ "task_selection": {
+ "error_empty": "Introduce un comando o pulsa omitir.",
+ "error_unsupported": "No se ha podido crear una automatización para eso (¿todavía?).",
+ "for_example": "Por ejemplo:",
+ "header": "Crear una nueva automatización",
+ "introduction": "Escribe a continuación lo que debe hacer esta automatización, e intentaremos convertirlo en una automatización de Home Assistant.",
+ "language_note": "Nota: solo se admite inglés por ahora."
+ }
+ },
+ "trace": {
+ "download_trace": "Descargar traza",
+ "edit_automation": "Editar automatización",
+ "newer_trace": "Traza más reciente",
+ "older_trace": "Traza más antigua",
+ "refresh": "Actualizar"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "foros de la comunidad",
+ "error_no_url": "Por favor, introduce la URL del plano.",
+ "file_name": "Ruta del plano",
+ "header": "Importar un plano",
+ "import_btn": "Vista previa del plano",
+ "import_header": "Plano \"{name}\"",
+ "import_introduction_link": "Puedes importar planos de otros usuarios desde Github y {community_link}. Introduce la URL del plano a continuación.",
+ "importing": "Cargando plano...",
+ "raw_blueprint": "Contenido del plano",
+ "save_btn": "Importar plano",
+ "saving": "Importando plano...",
+ "unsupported_blueprint": "Este plano no es compatible",
+ "url": "URL del plano"
+ },
+ "caption": "Planos",
+ "description": "Administra los planos",
+ "overview": {
+ "add_blueprint": "Importar plano",
+ "confirm_delete_header": "¿Eliminar este plano?",
+ "confirm_delete_text": "¿Estás seguro de que quieres borrar este plano?",
+ "create_automation": "Crear automatización",
+ "create_script": "Crear script",
+ "delete_blueprint": "Eliminar plano",
+ "discover_more": "Descubre más planos",
+ "header": "Editor de planos",
+ "headers": {
+ "domain": "Dominio",
+ "file_name": "Nombre de archivo",
+ "name": "Nombre",
+ "type": "Tipo"
+ },
+ "introduction": "La configuración de planos te permite importar y administrar tus planos.",
+ "learn_more": "Saber más sobre el uso de planos",
+ "share_blueprint": "Compartir plano",
+ "share_blueprint_no_url": "No se puede compartir el plano: no hay URL de origen",
+ "types": {
+ "automation": "Automatización",
+ "script": "Script"
+ },
+ "use_blueprint": "Crear automatización"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Documentación de configuración",
+ "disable": "deshabilitar",
+ "enable": "activar",
+ "enable_ha_skill": "Activa la skill Home Assistant para Alexa",
+ "enable_state_reporting": "Activar informes de estado",
+ "info": "Con la integración de Alexa para Home Assistant Cloud podrás controlar todos tus dispositivos Home Assistant a través de cualquier dispositivo habilitado para Alexa.",
+ "info_state_reporting": "Si activas los informes de estado, Home Assistant enviará todos los cambios de estado de las entidades expuestas a Amazon. Esto te permite ver siempre los estados más recientes en la aplicación Alexa y usar los cambios de estado para crear rutinas.",
+ "manage_entities": "Administrar entidades",
+ "state_reporting_error": "No se puede {enable_disable} informar el estado.",
+ "sync_entities": "Sincronizar entidades con Amazon",
+ "sync_entities_error": "Error al sincronizar entidades:",
+ "title": "Alexa"
+ },
+ "connected": "Conectado",
+ "connecting": "Conectando…",
+ "connection_status": "Estado de conexión a la nube",
+ "fetching_subscription": "Obteniendo suscripción…",
+ "google": {
+ "config_documentation": "Documentación de configuración",
+ "devices_pin": "PIN de dispositivos de seguridad",
+ "enable_ha_skill": "Activar la skill Home Assistant Cloud para Google Assistant",
+ "enable_state_reporting": "Activar informes de estado",
+ "enter_pin_error": "No se puede almacenar el PIN:",
+ "enter_pin_hint": "Introduce un PIN para utilizar dispositivos de seguridad",
+ "enter_pin_info": "Por favor, introduce un PIN para interactuar con los dispositivos de seguridad. Los dispositivos de seguridad son puertas, puertas de garaje y cerraduras. Se te pedirá que digas/introduzcas este PIN cuando interactúes con dichos dispositivos a través de Google Assistant.",
+ "info": "Con la integración del Asistente de Google para Home Assistant Cloud, podrás controlar todos tus dispositivos Home Assistant a través de cualquier dispositivo habilitado para Asistente de Google.",
+ "info_state_reporting": "Si activas los informes de estado, Home Assistant enviará todos los cambios de estado de las entidades expuestas a Google. Esto te permite ver siempre los últimos estados en la aplicación de Google.",
+ "manage_entities": "Administrar entidades",
+ "not_configured_text": "Antes de poder usar Google Assistant, debes activar la skill de Home Assistant Cloud para Google Assistant en la aplicación Google Home.",
+ "not_configured_title": "Google Assistant no está activado",
+ "security_devices": "Dispositivos de seguridad",
+ "sync_entities": "Sincronizar entidades con Google",
+ "sync_entities_404_message": "No se pudo sincronizar las entidades con Google, di a Google 'Ey Google, sincroniza mis dispositivos' para sincronizar tus entidades.",
+ "title": "Asistente de Google"
+ },
+ "integrations": "Integraciones",
+ "integrations_introduction": "Las integraciones para Home Assistant Cloud te permiten conectarte con servicios en la nube sin tener que exponer tu instancia de Home Assistant públicamente en Internet.",
+ "integrations_introduction2": "Consulta el sitio web para",
+ "integrations_link_all_features": "todas las funciones disponibles",
+ "manage_account": "Administrar cuenta",
+ "nabu_casa_account": "Cuenta Nabu Casa",
+ "not_connected": "No conectado",
+ "remote": {
+ "access_is_being_prepared": "Se está preparando el control remoto. Te avisaremos cuando esté listo.",
+ "certificate_info": "Información del certificado",
+ "connected": "Conectado",
+ "info": "Home Assistant Cloud proporciona una conexión remota segura a tu instancia mientras estás fuera de casa.",
+ "instance_is_available": "Tu instancia está disponible en",
+ "instance_will_be_available": "Tu instancia estará disponible en",
+ "link_learn_how_it_works": "Aprende cómo funciona",
+ "not_connected": "No conectado",
+ "reconnecting": "No conectado. Intentando volver a conectar.",
+ "remote_enabled": {
+ "caption": "Conectar automáticamente",
+ "description": "Habilita esta opción para asegurarte de que tu instancia de Home Assistant está siempre accesible de forma remota."
+ },
+ "title": "Control remoto"
+ },
+ "sign_out": "Cerrar sesión",
+ "thank_you_note": "Gracias por ser parte de Home Assistant Cloud. Gracias a personas como tú, podemos hacer una gran experiencia domótica para todos. ¡Gracias!",
+ "tts": {
+ "default_language": "Idioma predeterminado para usar",
+ "dialog": {
+ "create_automation": "Crear automatización",
+ "example_message": "¡Hola {name}, puedes reproducir cualquier texto en cualquier reproductor multimedia compatible!",
+ "header": "Probar texto a voz",
+ "play": "Reproducir",
+ "target": "Objetivo",
+ "target_browser": "Navegador"
+ },
+ "female": "Femenino",
+ "info": "Aporta personalidad a tu hogar haciendo que te hable mediante el uso de nuestros servicios de Texto a voz. Puedes usar esto en automatizaciones y scripts usando el servicio {service} .",
+ "male": "Masculino",
+ "title": "Texto a voz",
+ "try": "Probar"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "No se pudo deshabilitar el webhook:",
+ "info": "Cualquier cosa que esté configurada para ser activada por un webhook puede recibir una URL de acceso público para permitirte enviar datos a Home Assistant desde cualquier lugar, sin exponer tu instancia a Internet.",
+ "link_learn_more": "Saber más sobre la creación de automatizaciones basadas en webhook.",
+ "loading": "Cargando…",
+ "manage": "Administrar",
+ "no_hooks_yet": "Parece que aún no tienes webhooks. Comienza configurando un",
+ "no_hooks_yet2": " o mediante la creación de un ",
+ "no_hooks_yet_link_automation": "automatización de webhook",
+ "no_hooks_yet_link_integration": "integración basada en webhook",
+ "title": "Webhooks"
+ }
+ },
+ "alexa": {
+ "banner": "La edición de las entidades expuestas a través de esta IU está deshabilitada porque ha configurado filtros de entidad en configuration.yaml.",
+ "dont_expose_entity": "No exponer entidad",
+ "expose": "Exponer a Alexa",
+ "expose_entity": "Exponer entidad",
+ "exposed": "{selected} expuesto",
+ "exposed_entities": "Entidades expuestas",
+ "follow_domain": "Seguir dominio",
+ "manage_domains": "Administrar dominios",
+ "not_exposed": "{selected} no expuesto",
+ "not_exposed_entities": "Entidades no expuestas",
+ "title": "Alexa"
+ },
+ "description_features": "Controla tu hogar cuando estés fuera e intégralo con Alexa y Google Assistant",
+ "description_login": "Has iniciado sesión como {email}",
+ "description_not_login": "No has iniciado sesión",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Fecha de vencimiento del certificado:",
+ "certificate_information": "Información del certificado",
+ "close": "Cerrar",
+ "fingerprint": "Huella digital del certificado:",
+ "will_be_auto_renewed": "se renovará automáticamente"
+ },
+ "dialog_cloudhook": {
+ "available_at": "El webhook está disponible en la siguiente URL:",
+ "close": "Cerrar",
+ "confirm_disable": "¿Seguro que quieres deshabilitar este webhook?",
+ "copied_to_clipboard": "Copiado al portapapeles",
+ "info_disable_webhook": "Si ya no quieres usar este webhook, puedes",
+ "link_disable_webhook": "deshabilitarlo",
+ "managed_by_integration": "Este webhook se administra mediante una integración y no se puede deshabilitar.",
+ "view_documentation": "Ver documentación",
+ "webhook_for": "Webhook para {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "Consulta tu correo electrónico para obtener instrucciones sobre cómo restablecer tu contraseña.",
+ "email": "Correo electrónico",
+ "email_error_msg": "Correo electrónico no válido",
+ "instructions": "Introduce tu dirección de correo electrónico y te enviaremos un enlace para restablecer tu contraseña.",
+ "send_reset_email": "Enviar correo electrónico de restablecimiento",
+ "subtitle": "Olvidaste tu contraseña",
+ "title": "Se te olvidó tu contraseña"
+ },
+ "google": {
+ "banner": "La edición de las entidades expuestas a través de esta IU está deshabilitada porque ha configurado filtros de entidad en configuration.yaml.",
+ "disable_2FA": "Deshabilitar la autenticación de dos factores",
+ "dont_expose_entity": "No exponer entidad",
+ "expose": "Exponer al Asistente de Google",
+ "expose_entity": "Exponer entidad",
+ "exposed": "{selected} expuesto",
+ "exposed_entities": "Entidades expuestas",
+ "follow_domain": "Seguir dominio",
+ "manage_domains": "Administrar dominios",
+ "not_exposed": "{selected} no expuesto",
+ "not_exposed_entities": "Entidades no expuestas",
+ "sync_to_google": "Sincronización de cambios a Google.",
+ "title": "Asistente de Google"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Debes confirmar tu correo electrónico antes de iniciar sesión.",
+ "alert_password_change_required": "Debes cambiar tu contraseña antes de iniciar sesión.",
+ "dismiss": "Descartar",
+ "email": "Correo electrónico",
+ "email_error_msg": "Correo electrónico no válido",
+ "forgot_password": "¿Olvidaste la contraseña?",
+ "introduction": "Home Assistant Cloud te proporciona una conexión remota segura a tu instancia mientras estás fuera de casa. También te permite conectarte con servicios exclusivos de la nube: Amazon Alexa y Google Assistant.",
+ "introduction2": "Este servicio está a cargo de nuestro socio.",
+ "introduction2a": ", una empresa fundada por los fundadores de Home Assistant.",
+ "introduction3": "Home Assistant Cloud es un servicio de suscripción con una prueba gratuita de un mes. No se necesita información de pago.",
+ "learn_more_link": "Saber más sobre Home Assistant Cloud",
+ "password": "Contraseña",
+ "password_error_msg": "Las contraseñas tienen al menos 8 caracteres.",
+ "sign_in": "Inicia sesión",
+ "start_trial": "Comienza tu prueba gratuita de 1 mes",
+ "title": "Inicio de sesión en la nube",
+ "trial_info": "No se necesita información de pago"
+ },
+ "register": {
+ "account_created": "¡Cuenta creada! Consulta tu correo electrónico para obtener instrucciones sobre cómo activar tu cuenta.",
+ "create_account": "Crear una cuenta",
+ "email_address": "Dirección de correo electrónico",
+ "email_error_msg": "Correo electrónico no válido",
+ "feature_amazon_alexa": "Integración con Amazon Alexa",
+ "feature_google_home": "Integración con el Asistente de Google",
+ "feature_remote_control": "Control de Home Assistant fuera de casa",
+ "feature_webhook_apps": "Fácil integración con aplicaciones basadas en webhook como OwnTracks",
+ "headline": "Comienza tu prueba gratuita",
+ "information": "Crea una cuenta para comenzar tu prueba gratuita de un mes con Home Assistant Cloud. No se necesita información de pago.",
+ "information2": "La versión de prueba te dará acceso a todos los beneficios de Home Assistant Cloud, incluyendo:",
+ "information3": "Este servicio está a cargo de nuestro socio.",
+ "information3a": ", una empresa fundada por los fundadores de Home Assistant.",
+ "information4": "Al registrar una cuenta, aceptas los siguientes términos y condiciones.",
+ "link_privacy_policy": "Política de privacidad",
+ "link_terms_conditions": "Términos y condiciones",
+ "password": "Contraseña",
+ "password_error_msg": "Las contraseñas tienen al menos 8 caracteres.",
+ "resend_confirm_email": "Reenviar correo electrónico de confirmación",
+ "start_trial": "Iniciar prueba",
+ "title": "Registrar cuenta"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Tienes cambios sin guardar. ¿Estás seguro de que quieres salir?"
+ },
+ "learn_more": "Saber más"
+ },
+ "core": {
+ "caption": "Configuración general",
+ "description": "Ubicación, red y análisis",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Divisa",
+ "edit_requires_storage": "Editor deshabilitado debido a la configuración almacenada en configuration.yaml.",
+ "elevation": "Altitud",
+ "elevation_meters": "metros",
+ "external_url": "URL externa",
+ "find_currency_value": "Encuentra tu valor",
+ "imperial_example": "Fahrenheit, libras",
+ "internal_url": "URL interna",
+ "latitude": "Latitud",
+ "location_name": "Nombre de tu instalación de Home Assistant",
+ "longitude": "Longitud",
+ "metric_example": "Celsius, kilogramos",
+ "save_button": "Guardar",
+ "time_zone": "Zona horaria",
+ "unit_system": "Sistema de unidades",
+ "unit_system_imperial": "Imperial",
+ "unit_system_metric": "Métrico"
+ },
+ "header": "Configuración general",
+ "introduction": "Administra tu ubicación, tu red y tus análisis."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Los siguientes atributos ya están establecidos en customize.yaml",
+ "attributes_not_set": "No se establecieron los siguientes atributos. Ajústalos si quieres.",
+ "attributes_outside": "Los siguientes atributos se personalizan desde fuera de customize.yaml",
+ "attributes_override": "Puedes anularlos si quieres.",
+ "attributes_set": "Los siguientes atributos de la entidad se establecen mediante programación.",
+ "caption": "Personalizaciones",
+ "description": "Personaliza tus entidades",
+ "different_include": "Posiblemente a través de un dominio, un glob o un include diferente.",
+ "pick_attribute": "Selecciona un atributo para anular",
+ "picker": {
+ "documentation": "Documentación de personalización",
+ "header": "Personalizaciones",
+ "introduction": "Ajustar los atributos de cada entidad. Las personalizaciones añadidas/editadas tendrán efecto inmediatamente. Las personalizaciones eliminadas tendrán efecto cuando la entidad se actualice."
+ },
+ "warning": {
+ "include_link": "incluir customize.yaml",
+ "include_sentence": "Parece que tu configuration.yaml no es correcta, debe",
+ "not_applied": "Los cambios realizados aquí se escriben en él, pero no se aplicarán después de una recarga de configuración a menos que la inclusión esté en su lugar."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Administra automatizaciones, escenas, scripts y ayudantes.",
+ "title": "Automatizaciones y escenas"
+ },
+ "blueprints": {
+ "description": "Automatizaciones y scripts prediseñados por la comunidad",
+ "title": "Planos"
+ },
+ "companion": {
+ "description": "Ubicación y notificaciones",
+ "title": "Aplicación complementaria"
+ },
+ "dashboards": {
+ "description": "Crea conjuntos de tarjetas personalizados para controlar tu hogar",
+ "title": "Paneles de control"
+ },
+ "devices": {
+ "description": "Integraciones, dispositivos, entidades y áreas",
+ "title": "Dispositivos y servicios"
+ },
+ "energy": {
+ "description": "Monitoriza tu producción y consumo de energía",
+ "title": "Energía"
+ },
+ "people": {
+ "description": "Administra las personas y las zonas que rastrea Home Assistant",
+ "title": "Personas y Zonas"
+ },
+ "settings": {
+ "description": "Configuración básica, controles del servidor, registros e información",
+ "title": "Configuración"
+ },
+ "supervisor": {
+ "description": "Crea copias de seguridad, comprueba los registros o reinicia tu sistema",
+ "title": "Complementos, Copias de seguridad y Supervisor"
+ },
+ "tags": {
+ "description": "Activa automatizaciones cuando se escanea una etiqueta NFC, un código QR, etc.",
+ "title": "Etiquetas"
+ }
+ },
+ "devices": {
+ "add_prompt": "Todavía no se han añadido {name} usando este dispositivo. Puedes añadir pulsando en el botón + de arriba.",
+ "automation": {
+ "actions": {
+ "caption": "Cuando algo se activa…",
+ "no_actions": "No hay acciones",
+ "unknown_action": "Acción desconocida"
+ },
+ "automations": "Automatizaciones",
+ "conditions": {
+ "caption": "Sólo hacer algo si…",
+ "no_conditions": "No hay condiciones",
+ "unknown_condition": "Condición desconocida"
+ },
+ "create": "Crear automatización con el dispositivo",
+ "create_disable": "No se puede crear una automatización con un dispositivo deshabilitado",
+ "no_automations": "Sin automatizaciones",
+ "no_device_automations": "No hay automatizaciones disponibles para este dispositivo.",
+ "triggers": {
+ "caption": "Hacer algo cuando...",
+ "no_triggers": "No hay desencadenantes",
+ "unknown_trigger": "Desencadenante desconocido"
+ },
+ "unknown_automation": "Automatización desconocida"
+ },
+ "cant_edit": "Solo puedes editar los elementos que se crean en la interfaz de usuario.",
+ "caption": "Dispositivos",
+ "confirm_delete": "¿Estás seguro de que quieres eliminar este dispositivo?",
+ "confirm_disable_config_entry": "No hay más dispositivos para la entrada de configuración {entry_name}, ¿quieres deshabilitar la entrada de configuración?",
+ "confirm_rename_entity_ids": "¿También quieres renombrar los IDs de entidad de tus entidades?",
+ "confirm_rename_entity_ids_warning": "Esto no cambiará ninguna configuración (como automatizaciones, scripts, escenas, paneles de control) que estén utilizando actualmente estas entidades. Tendrás que actualizarlas tú mismo para utilizar los nuevos IDs de entidad.",
+ "data_table": {
+ "area": "Área",
+ "battery": "Batería",
+ "device": "Dispositivo",
+ "integration": "Integración",
+ "manufacturer": "Fabricante",
+ "model": "Modelo",
+ "no_devices": "Sin dispositivos",
+ "no_integration": "Sin integración"
+ },
+ "delete": "Eliminar",
+ "description": "Administra dispositivos configurados",
+ "device_info": "Información del dispositivo",
+ "device_not_found": "Dispositivo no encontrado.",
+ "disabled": "Deshabilitado",
+ "disabled_by": {
+ "config_entry": "Entrada de configuración",
+ "integration": "Integración",
+ "user": "Usuario"
+ },
+ "download_diagnostics": "Descargar diagnósticos",
+ "edit_settings": "Editar configuración",
+ "enabled_cause": "El dispositivo está deshabilitado por {cause} .",
+ "enabled_description": "Los dispositivos deshabilitados no se mostrarán y las entidades que pertenecen al dispositivo se deshabilitarán y no se añadirán a Home Assistant.",
+ "enabled_label": "Habilitar dispositivo",
+ "entities": {
+ "add_entities_lovelace": "Añadir a Lovelace",
+ "config": "Configuración",
+ "control": "Controles",
+ "diagnostic": "Diagnóstico",
+ "disabled_entities": "+{count} {count, plural,\n one {entidad deshabilitada}\n other {entidades deshabilitadas}\n}",
+ "entities": "Entidades",
+ "hide_disabled": "Ocultar deshabilitadas",
+ "none": "Este dispositivo no tiene entidades",
+ "sensor": "Sensores",
+ "state": "Estado"
+ },
+ "name": "Nombre",
+ "no_devices": "Sin dispositivos",
+ "open_configuration_url_device": "Visitar dispositivo",
+ "open_configuration_url_service": "Visita el servicio",
+ "picker": {
+ "filter": {
+ "filter": "Filtrar",
+ "hidden_devices": "{number} {number, plural,\n one {dispositivo oculto}\n other {dispositivos ocultos}\n}",
+ "show_all": "Mostrar todo",
+ "show_disabled": "Mostrar dispositivos deshabilitados"
+ },
+ "search": "Buscar dispositivos"
+ },
+ "scene": {
+ "create": "Crear escena con el dispositivo",
+ "create_disable": "No se puede crear una escena con un dispositivo deshabilitado",
+ "no_scenes": "Sin escenas",
+ "scenes": "Escenas"
+ },
+ "scenes": "Escenas",
+ "script": {
+ "create": "Crear script con el dispositivo",
+ "create_disable": "No se puede crear un script con un dispositivo deshabilitado",
+ "no_scripts": "Sin scripts",
+ "scripts": "Scripts"
+ },
+ "scripts": "Scripts",
+ "unknown_error": "Error desconocido",
+ "unnamed_device": "Dispositivo sin nombre",
+ "update": "Actualizar",
+ "update_device_error": "Error al actualizar el dispositivo"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Añadir sistema de baterías",
+ "battery_systems": "Sistemas de baterías",
+ "dialog": {
+ "energy_into_battery": "Energía que entra en la batería (kWh)",
+ "energy_out_of_battery": "Energía que sale de la batería (kWh)",
+ "header": "Configurar el sistema de baterías"
+ },
+ "learn_more": "Más información sobre cómo empezar.",
+ "sub": "Si tienes un sistema de batería, puedes configurarlo para monitorizar cuánta energía se almacenó y utilizó de tu batería.",
+ "title": "Almacenamiento en batería en casa"
+ },
+ "caption": "Energía",
+ "delete_integration": "¿Estás seguro de que deseas eliminar esta integración? Eliminará las entidades que proporciona",
+ "delete_source": "¿Estás seguro de que deseas eliminar esta fuente?",
+ "description": "Monitoriza tu producción y consumo de energía",
+ "device_consumption": {
+ "add_device": "Añadir dispositivo",
+ "add_stat": "Elige la entidad para realizar un seguimiento de la energía de",
+ "devices": "Dispositivos",
+ "dialog": {
+ "device_consumption_energy": "Consumo de energía del dispositivo (kWh)",
+ "header": "Añadir un dispositivo",
+ "selected_stat_intro": "Selecciona la entidad que representa el uso de energía del dispositivo."
+ },
+ "learn_more": "Más información sobre cómo empezar.",
+ "selected_stat": "Realizando el seguimiento de la energía para",
+ "sub": "El seguimiento del uso de energía de dispositivos individuales permite a Home Assistant desglosar tu consumo de energía por dispositivo.",
+ "title": "Dispositivos individuales"
+ },
+ "gas": {
+ "add_gas_source": "Añadir fuente de gas",
+ "dialog": {
+ "cost_entity": "Usar una entidad con el precio actual",
+ "cost_entity_input": "Entidad con el precio actual por {unit}",
+ "cost_number": "Usar un precio estático",
+ "cost_number_input": "Precio por {unit}",
+ "cost_number_suffix": "{currency}/m³",
+ "cost_para": "Selecciona cómo Home Assistant debe realizar un seguimiento de los costes de la energía consumida.",
+ "cost_stat": "Usar una entidad que realiza un seguimiento de los costes totales",
+ "cost_stat_input": "Entidad de costes totales",
+ "energy_stat": "Energía consumida (m³)",
+ "gas_usage": "Uso de gas",
+ "header": "Configurar el consumo de gas",
+ "m3_or_kWh": "ft³, m³, Wh, kWh o MWh",
+ "no_cost": "No hacer un seguimiento de los costes",
+ "paragraph": "El consumo de gas es el volumen de gas que fluye hasta tu hogar."
+ },
+ "gas_consumption": "Consumo de gas",
+ "learn_more": "Más información sobre cómo empezar.",
+ "sub": "Deja que Home Assistant monitorice tu consumo de gas.",
+ "title": "Consumo de gas"
+ },
+ "grid": {
+ "add_co2_signal": "Añadir integración de señal de CO2",
+ "add_consumption": "Añadir consumo",
+ "add_return": "Añadir retorno",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Usar una entidad con el precio actual",
+ "cost_entity_input": "Entidad con el precio actual",
+ "cost_number": "Usar un precio estático",
+ "cost_number_input": "Precio por kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Selecciona cómo Home Assistant debe realizar un seguimiento de los costes de la energía consumida.",
+ "cost_stat": "Usar una entidad que realiza un seguimiento de los costes totales",
+ "cost_stat_input": "Entidad de costes totales",
+ "energy_stat": "Energía consumida (kWh)",
+ "header": "Configurar el consumo de la red",
+ "no_cost": "No hacer un seguimiento de los costes",
+ "paragraph": "El consumo de la red es la energía que fluye desde la red eléctrica hasta tu hogar."
+ },
+ "to": {
+ "cost_entity": "Usar una entidad con la tarifa actual",
+ "cost_entity_input": "Entidad con la tarifa actual",
+ "cost_number": "Usar una tarifa estática",
+ "cost_number_input": "Tarifa por kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "¿Te devuelven el dinero cuando vuelcas energía a la red?",
+ "cost_stat": "Usar una entidad que rastrea el total de dinero recibido",
+ "cost_stat_input": "Entidad de compensación total",
+ "energy_stat": "Energía devuelta a la red (kWh)",
+ "header": "Configurar la producción de la red",
+ "no_cost": "No me devuelven el dinero",
+ "paragraph": "La producción de la red es la energía que fluye de tus paneles solares a la red."
+ }
+ },
+ "grid_carbon_footprint": "Huella de carbono de la red",
+ "grid_consumption": "Consumo de la red",
+ "learn_more": "Más información sobre cómo empezar.",
+ "return_to_grid": "Volcar a la red",
+ "sub": "Configura la cantidad de energía que consumes de la red y, si produces energía, la que vuelcas a la red. Esto permite que Home Assistant realice un seguimiento del uso de energía de todo el hogar.",
+ "title": "Red eléctrica"
+ },
+ "new_device_info": "Después de configurar un nuevo dispositivo, pueden pasar hasta 2 horas para que lleguen nuevos datos a tu panel de energía.",
+ "solar": {
+ "add_solar_production": "Añadir producción solar",
+ "dialog": {
+ "add_forecast": "Añadir pronóstico",
+ "dont_forecast_production": "No pronosticar la producción",
+ "forecast_production": "Previsión de la producción",
+ "header": "Configurar paneles solares",
+ "solar_production_energy": "Producción de energía solar (kWh)",
+ "solar_production_forecast": "Previsión de producción solar",
+ "solar_production_forecast_description": "Añadir información de pronóstico de producción solar te permitirá ver rápidamente tu producción esperada para hoy."
+ },
+ "learn_more": "Más información sobre cómo empezar.",
+ "solar_production": "Producción solar",
+ "stat_predicted_production": "Predicción de tu producción de energía solar",
+ "stat_production": "Tu producción de energía solar",
+ "stat_return_to_grid": "Energía solar devuelta a la red",
+ "sub": "Permite que Home Assistant controle tus paneles solares y te brinde información sobre su rendimiento.",
+ "title": "Paneles solares"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "Las siguientes entidades tienen un estado negativo mientras se espera un estado positivo:",
+ "title": "La entidad tiene un estado negativo"
+ },
+ "entity_not_defined": {
+ "description": "Comprueba la integración o la configuración que proporciona:",
+ "title": "Entidad no definida"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "Las siguientes entidades tienen la clase de estado 'measurement' pero falta 'last_reset':",
+ "title": "Falta el último restablecimiento"
+ },
+ "entity_state_non_numeric": {
+ "description": "Las siguientes entidades tienen un estado que no puede ser analizado como un número:",
+ "title": "La entidad tiene un estado no numérico"
+ },
+ "entity_unavailable": {
+ "description": "El estado de estas entidades configuradas no está disponible actualmente:",
+ "title": "Entidad no disponible"
+ },
+ "entity_unexpected_device_class": {
+ "description": "Las siguientes entidades no tienen la clase de dispositivo esperada:",
+ "title": "Clase de dispositivo inesperada"
+ },
+ "entity_unexpected_state_class": {
+ "description": "Las siguientes entidades no tienen la clase de estado esperada:",
+ "title": "Clase de estado inesperada"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "Las siguientes entidades no tienen la clase de estado esperada 'total_increasing'",
+ "title": "Clase de estado inesperada"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "Las siguientes entidades no tienen las unidades de medida esperadas 'Wh', 'kWh' o 'MWh':",
+ "title": "Unidad de medida inesperada"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "Las siguientes entidades no tienen las unidades de medida esperadas \"{currency}/kWh\", \"{currency}/Wh\" o \"{currency}/MWh\":",
+ "title": "Unidad de medida inesperada"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "Las siguientes entidades no tienen las unidades de medida esperadas 'Wh', 'kWh' o 'MWh' para un sensor de energía o 'm³' o 'ft³' para un sensor de gas:",
+ "title": "Unidad de medida inesperada"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "Las siguientes entidades no tienen las unidades de medida esperadas \"{currency}/kWh\", \"{currency}/Wh\", \"{currency}/MWh\", \"{currency}/m³\" o \"{currency}/ft³\":",
+ "title": "Unidad de medida inesperada"
+ },
+ "recorder_untracked": {
+ "description": "La grabadora se ha configurado para excluir estas entidades configuradas:",
+ "title": "Entidad sin seguimiento"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Entidades",
+ "description": "Administra las entidades conocidas.",
+ "picker": {
+ "disable_selected": {
+ "button": "Deshabilitar seleccionadas",
+ "confirm_text": "Las entidades deshabilitadas no se agregarán a Home Assistant.",
+ "confirm_title": "¿Deseas deshabilitar {number} {number, plural,\n one {entidad}\n other {entidades}\n }?"
+ },
+ "enable_selected": {
+ "button": "Habilitar seleccionadas",
+ "confirm_text": "Esto las hará disponibles en Home Assistant de nuevo si ahora están deshabilitadas.",
+ "confirm_title": "¿Deseas activar {number} {number, plural,\n one {entidad}\n other {entidades}\n }?"
+ },
+ "filter": {
+ "filter": "Filtrar",
+ "hidden_entities": "{number} {number, plural,\n one {entidad oculta}\n other {entidades ocultas}\n}",
+ "show_all": "Mostrar todo",
+ "show_disabled": "Mostrar entidades deshabilitadas",
+ "show_readonly": "Mostrar entidades de solo lectura",
+ "show_unavailable": "Mostrar entidades no disponibles"
+ },
+ "header": "Entidades",
+ "headers": {
+ "area": "Área",
+ "disabled_by": "Deshabilitado por",
+ "entity_id": "ID de entidad",
+ "integration": "Integración",
+ "name": "Nombre",
+ "status": "Estado"
+ },
+ "introduction": "Home Assistant mantiene un registro de cada entidad que ha visto. Cada una de estas entidades tendrá una identificación asignada que se reservará sólo para esta entidad.",
+ "introduction2": "Utiliza el registro de entidades para anular el nombre, cambiar el ID de la entidad o eliminar la entrada de Home Assistant.",
+ "remove_selected": {
+ "button": "Eliminar seleccionadas",
+ "confirm_partly_text": "Solo puedes eliminar {removable} de las entidades {selected} seleccionadas. Las entidades solo se pueden eliminar cuando la integración ya no proporciona las entidades. En algunas ocasiones debes reiniciar Home Assistant antes de poder eliminar las entidades de una integración eliminada. ¿Seguro que quieres eliminar las entidades eliminables?",
+ "confirm_partly_title": "Solo {number} {number, plural,\n one {entidad seleccionada se puede}\n other {entidades seleccionadas se pueden}\n } eliminar.",
+ "confirm_text": "Debes eliminarlos de la configuración y las automatizaciones de Lovelace si contienen estas entidades.",
+ "confirm_title": "¿Deseas eliminar {number} {number, plural,\n one {entidad}\n other {entidades}\n }?"
+ },
+ "search": "Buscar entidades",
+ "selected": "{number} seleccionadas",
+ "status": {
+ "disabled": "Deshabilitado",
+ "ok": "De acuerdo",
+ "readonly": "Solo lectura",
+ "restored": "Restaurado",
+ "unavailable": "No disponible"
+ }
+ }
+ },
+ "header": "Configurar Home Assistant",
+ "helpers": {
+ "caption": "Ayudantes",
+ "description": "Elementos que ayudan a construir automatizaciones",
+ "dialog": {
+ "add_helper": "Añadir ayudante",
+ "add_platform": "Añadir {platform}",
+ "create": "Crear"
+ },
+ "picker": {
+ "add_helper": "Añadir ayudante",
+ "headers": {
+ "editable": "Editable",
+ "entity_id": "ID de la entidad",
+ "name": "Nombre",
+ "type": "Tipo"
+ },
+ "no_helpers": "¡Parece que aún no tienes ayudantes!"
+ },
+ "types": {
+ "counter": "Contador",
+ "input_boolean": "Alternar",
+ "input_button": "Botón",
+ "input_datetime": "Fecha y/o hora",
+ "input_number": "Número",
+ "input_select": "Desplegable",
+ "input_text": "Texto",
+ "timer": "Temporizador"
+ }
+ },
+ "info": {
+ "built_using": "Construido usando",
+ "caption": "Información",
+ "copy_github": "Para GitHub",
+ "copy_menu": "Copiar menú",
+ "copy_raw": "Texto sin procesar",
+ "custom_uis": "IU personalizadas:",
+ "description": "Versión, estado del sistema y enlaces a la documentación",
+ "developed_by": "Desarrollado por un montón de gente impresionante.",
+ "documentation": "Documentación",
+ "frontend": "interfaz de usuario",
+ "frontend_version": "Versión del frontend: {version} - {type}",
+ "home_assistant_logo": "Logotipo de Home Assistant",
+ "icons_by": "Iconos por",
+ "integrations": "Integraciones",
+ "issues": "Incidencias",
+ "license": "Publicado bajo la licencia Apache 2.0",
+ "path_configuration": "Ruta a configuration.yaml: {path}",
+ "server": "servidor",
+ "setup_time": "Tiempo de configuración",
+ "source": "Fuente:",
+ "system_health": {
+ "manage": "Administrar",
+ "more_info": "más información"
+ },
+ "system_health_error": "El componente Estado del Sistema no está cargado. Añade 'system_health:' a configuration.yaml"
+ },
+ "integrations": {
+ "add_integration": "Añadir integración",
+ "attention": "Atención requerida",
+ "caption": "Integraciones",
+ "config_entry": {
+ "area": "En {area}",
+ "check_the_logs": "Revisa los registros",
+ "configure": "Configurar",
+ "delete": "Eliminar",
+ "delete_confirm": "¿Estás seguro de que deseas eliminar la integración {title}?",
+ "depends_on_cloud": "Depende de la nube",
+ "device_unavailable": "Dispositivo no disponible",
+ "devices": "{count} {count, plural,\n one {dispositivo}\n other {dispositivos}\n}",
+ "disable": {
+ "disable_confirm": "¿Estás seguro de que deseas deshabilitar esta entrada de configuración? Sus dispositivos y entidades estarán deshabilitados.",
+ "disabled": "Deshabilitada",
+ "disabled_by": {
+ "device": "dispositivo",
+ "integration": "integración",
+ "user": "usuario"
+ },
+ "disabled_cause": "Deshabilitada por {cause}"
+ },
+ "disable_error": "Error al habilitar o deshabilitar la integración",
+ "disable_restart_confirm": "Reinicia Home Assistant para terminar de deshabilitar esta integración",
+ "disabled_polling": "Sondeo automático para datos actualizados deshabilitado",
+ "documentation": "Documentación",
+ "download_diagnostics": "Descargar diagnósticos",
+ "enable_restart_confirm": "Reinicia Home Assistant para terminar de habilitar esta integración",
+ "entities": "{count} {count, plural,\n one {entidad}\n other {entidades}\n}",
+ "entity_unavailable": "Entidad no disponible",
+ "firmware": "Firmware: {version}",
+ "hardware": "Hardware: {version}",
+ "hub": "Conectado a través de",
+ "known_issues": "Problemas conocidos",
+ "manuf": "por {manufacturer}",
+ "no_area": "Ningún área",
+ "not_loaded": "No se ha cargado",
+ "open_configuration_url": "Visitar dispositivo",
+ "provided_by_custom_integration": "Proporcionada por una integración personalizada",
+ "reload": "Recargar",
+ "reload_confirm": "La integración se ha recargado",
+ "reload_restart_confirm": "Reinicia Home Assistant para terminar de recargar esta integración",
+ "rename": "Renombrar",
+ "restart_confirm": "Reinicia Home Assistant para terminar de eliminar esta integración.",
+ "services": "{count} {count, plural,\n one {servicio}\n other {servicios}\n}",
+ "state": {
+ "failed_unload": "No se pudo descargar",
+ "loaded": "Cargada",
+ "migration_error": "Error de migración",
+ "not_loaded": "No se ha cargado",
+ "setup_error": "No se pudo configurar",
+ "setup_retry": "Reintentando la configuración"
+ },
+ "system_options": "Opciones del sistema",
+ "unknown_via_device": "Dispositivo desconocido",
+ "unnamed_entry": "Entrada sin nombre",
+ "via": "Conectado a través de"
+ },
+ "config_flow": {
+ "aborted": "Abortado",
+ "close": "Cerrar",
+ "could_not_load": "No se pudo cargar el flujo de configuración",
+ "created_config": "Configuración creada para {name}.",
+ "dismiss": "Descartar diálogo",
+ "error": "Error",
+ "error_saving_area": "Error al guardar el área: {error}",
+ "external_step": {
+ "description": "Este paso requiere que visites una web externa para ser completado.",
+ "open_site": "Abrir sitio web"
+ },
+ "finish": "Terminar",
+ "loading": {
+ "fallback_title": "la integración",
+ "loading_flow": "Por favor, espera mientras se configura {integration}",
+ "loading_step": "Cargando el siguiente paso para {integration}"
+ },
+ "next": "Siguiente",
+ "not_all_required_fields": "No se han completado todos los campos requeridos.",
+ "not_loaded": "La integración no se ha podido cargar, intenta reiniciar Home Assistant.",
+ "pick_flow_step": {
+ "new_flow": "No, configura otra instancia de {integration}",
+ "title": "Hemos descubierto éstas, ¿quieres configurarlas?"
+ },
+ "submit": "Enviar"
+ },
+ "configure": "Configurar",
+ "configured": "Configurado",
+ "confirm_new": "¿Quieres configurar {integration}?",
+ "description": "Gestiona integraciones con servicios o dispositivos.",
+ "details": "Detalles de la integración",
+ "disable": {
+ "disabled_integrations": "{number} deshabilitadas",
+ "show": "Mostrar",
+ "show_disabled": "Mostrar integraciones deshabilitadas"
+ },
+ "discovered": "Descubierto",
+ "home_assistant_website": "Sitio web de Home Assistant",
+ "ignore": {
+ "confirm_delete_ignore": "Esto hará que la integración vuelva a aparecer en tus integraciones descubiertas cuando se descubra de nuevo. Esto podría requerir un reinicio o tomar algo de tiempo.",
+ "confirm_delete_ignore_title": "¿Dejar de ignorar {name}?",
+ "confirm_ignore": "¿Estás seguro de que no quieres configurar esta integración? Puedes deshacer esto haciendo clic en 'Mostrar integraciones ignoradas' en el menú de desbordamiento en la parte superior derecha.",
+ "confirm_ignore_title": "¿Ignorar la detección de {name}?",
+ "ignore": "Ignorar",
+ "ignored": "Ignorado",
+ "show_ignored": "Mostrar integraciones ignoradas",
+ "stop_ignore": "Dejar de ignorar"
+ },
+ "integration": "integración",
+ "integration_not_found": "Integración no encontrada.",
+ "new": "Configurar una nueva integración.",
+ "no_integrations": "Parece que todavía no tienes ninguna integración configurada. ¡Pulsa en el botón de abajo para añadir tu primera integración!",
+ "none": "Todavía no hay nada configurado",
+ "none_found": "No se han encontrado integraciones",
+ "none_found_detail": "Ajusta tus criterios de búsqueda.",
+ "note_about_integrations": "No hay integraciones que coincidan con tu búsqueda, es posible que la integración que deseas configurar aún no esté disponible para configurar a través de la interfaz de usuario.",
+ "note_about_website_reference": "Hay más disponibles en el ",
+ "reconfigure": "Reconfigurar",
+ "rename_dialog": "Edita el nombre de esta entrada de configuración",
+ "rename_input_label": "Nombre de la entrada",
+ "search": "Buscar integraciones"
+ },
+ "introduction": "En esta vista puedes configurar tus componentes y Home Assistant. Aún no es posible configurar todo desde la IU, pero estamos trabajando en ello.",
+ "logs": {
+ "caption": "Registros",
+ "clear": "Limpiar",
+ "copy": "Copiar entrada de registro",
+ "custom_integration": "integración personalizada",
+ "description": "Ve los registros de Home Assistant",
+ "details": "Detalles de registro ({level})",
+ "error_from_custom_integration": "Este error se originó a partir de una integración personalizada.",
+ "level": {
+ "critical": "CRÍTICO",
+ "debug": "DEPURACIÓN",
+ "error": "ERROR",
+ "info": "INFO",
+ "warning": "ADVERTENCIA"
+ },
+ "load_full_log": "Cargar registro completo de Home Assistant",
+ "loading_log": "Cargando registro de errores...",
+ "multiple_messages": "el mensaje se produjo por primera vez a las {time} y aparece {counter} veces",
+ "no_errors": "No se han reportado errores",
+ "no_issues": "¡No hay nuevos problemas!",
+ "refresh": "Actualizar"
+ },
+ "lovelace": {
+ "caption": "Paneles de Control Lovelace",
+ "dashboards": {
+ "cant_edit_default": "El panel de control predeterminado de Lovelace, Resumen, no se puede editar desde la IU. Puedes ocultarlo configurando otro panel como predeterminado.",
+ "cant_edit_yaml": "Los paneles de control definidos en YAML no se pueden editar desde la IU. Cámbialos en configuration.yaml.",
+ "caption": "Paneles de control",
+ "conf_mode": {
+ "storage": "Controlado por la IU",
+ "yaml": "Archivo YAML"
+ },
+ "confirm_delete": "¿Estás seguro de que quieres eliminar este panel de control?",
+ "confirm_delete_text": "Tu panel de control se eliminará permanentemente.",
+ "confirm_delete_title": "¿Eliminar {dashboard_title}?",
+ "default_dashboard": "Este es el panel de control predeterminado",
+ "detail": {
+ "create": "Crear",
+ "delete": "Eliminar",
+ "dismiss": "Cerrar",
+ "edit_dashboard": "Editar panel de control",
+ "icon": "Icono",
+ "new_dashboard": "Añadir nuevo panel de control",
+ "remove_default": "Eliminar como predeterminado en este dispositivo",
+ "require_admin": "Solo administrador",
+ "set_default": "Establecer como predeterminado en este dispositivo",
+ "show_sidebar": "Mostrar en la barra lateral",
+ "title": "Título",
+ "title_required": "Se requiere un título.",
+ "update": "Actualizar",
+ "url": "URL",
+ "url_error_msg": "La URL debe contener un guión (-) y no puede contener espacios o caracteres especiales, excepto _ y -"
+ },
+ "picker": {
+ "add_dashboard": "Añadir panel de control",
+ "headers": {
+ "conf_mode": "Método de configuración",
+ "default": "Por defecto",
+ "filename": "Nombre de archivo",
+ "require_admin": "Solo administrador",
+ "sidebar": "Mostrar en la barra lateral",
+ "title": "Título"
+ },
+ "open": "Abrir"
+ }
+ },
+ "description": "Crea conjuntos personalizados de tarjetas para controlar tu hogar",
+ "resources": {
+ "cant_edit_yaml": "Estás utilizando Lovelace en modo YAML, por tanto no puedes administrar tus recursos a través de la IU. Adminístralos en configuration.yaml.",
+ "caption": "Recursos",
+ "confirm_delete": "¿Estás seguro de que quieres eliminar este recurso?",
+ "detail": {
+ "create": "Crear",
+ "delete": "Eliminar",
+ "dismiss": "Cerrar",
+ "new_resource": "Añadir nuevo recurso",
+ "type": "Tipo de recurso",
+ "update": "Actualizar",
+ "url": "URL",
+ "url_error_msg": "URL es un campo obligatorio",
+ "warning_header": "¡Ten cuidado!",
+ "warning_text": "Añadir recursos puede ser peligroso, asegúrate de conocer el origen del recurso y que confías en ellos. Malos recursos pueden dañar seriamente tu sistema."
+ },
+ "picker": {
+ "add_resource": "Añadir recurso",
+ "headers": {
+ "type": "Tipo",
+ "url": "URL"
+ },
+ "no_resources": "Sin recursos"
+ },
+ "refresh_body": "Tienes que actualizar la página para completar la eliminación. ¿Deseas actualizar ahora?",
+ "refresh_header": "¿Quieres actualizar?",
+ "types": {
+ "css": "Hoja de estilo",
+ "html": "HTML (obsoleto)",
+ "js": "Archivo JavaScript (obsoleto)",
+ "module": "Módulo JavaScript"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Escuchar un tema",
+ "description_publish": "Publicar un paquete",
+ "listening_to": "Escuchando",
+ "message_received": "Mensaje {id} recibido en {topic} a las {time}:",
+ "payload": "Payload (plantilla permitida)",
+ "publish": "Publicar",
+ "start_listening": "Empezar a escuchar",
+ "stop_listening": "Dejar de escuchar",
+ "subscribe_to": "Tema al que suscribirse",
+ "title": "MQTT",
+ "topic": "tema"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Controlador",
+ "instance": "Instancia",
+ "network": "Red",
+ "node_id": "ID del Nodo",
+ "ozw_instance": "Instancia OpenZWave",
+ "query_stage": "Etapa de consulta",
+ "wakeup_instructions": "Instrucciones para despertar",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Error en el Nodo",
+ "stage": "Etapa",
+ "zwave_info": "Información Z-Wave"
+ },
+ "navigation": {
+ "network": "Red",
+ "node": {
+ "config": "Configurar",
+ "dashboard": "Panel de control"
+ },
+ "nodes": "Nodos",
+ "select_instance": "Seleccionar Instancia"
+ },
+ "network": {
+ "header": "Administración de la Red",
+ "introduction": "Gestionar las funciones de toda la red.",
+ "node_count": "{count} nodos"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "Se han consultado todos los nodos.",
+ "driverallnodesqueriedsomedead": "Se han consultado todos los nodos. Se encontraron algunos nodos muertos",
+ "driverawakenodesqueries": "Se han consultado todos los nodos despiertos",
+ "driverfailed": "No se pudo conectar con el controlador Z-Wave",
+ "driverready": "Iniciando el controlador Z-Wave",
+ "driverremoved": "El controlador ha sido eliminado",
+ "driverreset": "El controlador se ha reiniciado",
+ "offline": "OZWDaemon desconectado",
+ "ready": "Listo para conectar",
+ "started": "Conectado a MQTT",
+ "starting": "Conectando con MQTT",
+ "stopped": "OpenZWave detenido"
+ },
+ "offline": "Desconectado",
+ "online": "En línea",
+ "starting": "Iniciando",
+ "unknown": "Desconocido"
+ },
+ "node": {
+ "button": "Detalles del nodo",
+ "not_found": "Nodo no encontrado"
+ },
+ "node_config": {
+ "header": "Configuración del nodo",
+ "help_source": "Las descripciones de los parámetros de configuración y el texto de ayuda son proporcionados por el proyecto OpenZWave.",
+ "introduction": "Administrar los diferentes parámetros de configuración de un nodo Z-Wave.",
+ "wakeup_help": "Los nodos alimentados por batería deben estar activos para cambiar su configuración. Si el nodo no está activo, OpenZWave intentará actualizar la configuración del nodo la próxima vez que se active, lo que podría ser varias horas (o días) más tarde. Sigue estos pasos para reactivar tu dispositivo:"
+ },
+ "node_metadata": {
+ "product_manual": "Manual del producto"
+ },
+ "node_query_stages": {
+ "associations": "Refrescando grupos de asociaciones y miembros",
+ "cacheload": "Cargando información del archivo de caché de OpenZWave. Los nodos con batería permanecerán en esta etapa hasta que el nodo se active.",
+ "complete": "El proceso de entrevista está completo",
+ "configuration": "Obteniendo valores de configuración del nodo",
+ "dynamic": "Obteniendo valores que cambian con frecuencia del nodo",
+ "instances": "Obteniendo detalles sobre qué instancias o canales admite un dispositivo",
+ "manufacturerspecific1": "Obteniendo del nodo los códigos de identificación de producto y del fabricante",
+ "manufacturerspecific2": "Obteniendo del nodo códigos de identificación de producto y del fabricante adicionales",
+ "neighbors": "Obteniendo una lista de los vecinos del nodo",
+ "nodeinfo": "Obteniendo clases de órdenes admitidas por el nodo",
+ "nodeplusinfo": "Obteniendo información Z-Wave+ del nodo",
+ "probe": "Comprobando si el nodo está despierto/vivo",
+ "protocolinfo": "Obteniendo las capacidades básicas de Z-Wave de este nodo desde el controlador",
+ "session": "Obteniendo valores que cambian con poca frecuencia del nodo",
+ "static": "Obteniendo valores estáticos del dispositivo",
+ "versions": "Obteniendo información sobre versiones de firmware y clases de órdenes",
+ "wakeup": "Configurar soporte para mensajes y colas de activación"
+ },
+ "nodes_table": {
+ "failed": "Ha fallado",
+ "id": "ID",
+ "manufacturer": "Fabricante",
+ "model": "Modelo",
+ "query_stage": "Etapa de consulta",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Si el nodo funciona con batería, asegúrate de despertarlo antes de continuar",
+ "button": "Actualizar nodo",
+ "complete": "Refresco del Nodo Finalizado",
+ "description": "Esto le indicará a OpenZWave que vuelva a entrevistar un nodo y actualice las clases de órdenes, las capacidades y los valores del mismo.",
+ "node_status": "Estado del Nodo",
+ "refreshing_description": "Actualizando la información del nodo…",
+ "start_refresh_button": "Iniciar Refresco",
+ "step": "Paso",
+ "title": "Refrescar Información del Nodo",
+ "wakeup_header": "Instrucciones de activación para",
+ "wakeup_instructions_source": "Las instrucciones de activación se obtienen de la base de datos de dispositivos de la comunidad OpenZWave."
+ },
+ "select_instance": {
+ "header": "Selecciona una instancia de OpenZWave",
+ "introduction": "Tienes más de una instancia de OpenZWave en ejecución. ¿Qué instancia te gustaría gestionar?",
+ "none_found": "No pudimos encontrar una instancia de OpenZWave. Si crees que esto es incorrecto, verifica tus configuraciones de OpenZWave y MQTT y asegúrate de que Home Assistant pueda comunicarse con tu broker MQTT."
+ },
+ "services": {
+ "add_node": "Añadir Nodo",
+ "cancel_command": "Cancelar comando",
+ "remove_node": "Eliminar Nodo"
+ }
+ },
+ "person": {
+ "add_person": "Añadir persona",
+ "caption": "Personas",
+ "confirm_delete": "¿Estás seguro de que deseas eliminar a esta persona?",
+ "confirm_delete2": "Todos los dispositivos que pertenecen a esta persona quedarán sin asignar.",
+ "create_person": "Crear persona",
+ "description": "Administra las personas a las que rastrea Home Assistant.",
+ "detail": {
+ "admin": "Administrador",
+ "allow_login": "Permitir que la persona inicie sesión",
+ "confirm_delete_user": "¿Estás seguro de que deseas eliminar la cuenta de usuario de {name} ? Aún puedes rastrear al usuario, pero la persona ya no podrá iniciar sesión.",
+ "create": "Crear",
+ "delete": "Eliminar",
+ "device_tracker_intro": "Seleccione los dispositivos que pertenecen a esta persona.",
+ "device_tracker_pick": "Seleccionar dispositivo para rastrear",
+ "device_tracker_picked": "Rastrear dispositivo",
+ "link_integrations_page": "Página de integraciones",
+ "link_presence_detection_integrations": "Integraciones de detección de presencia",
+ "linked_user": "Usuario vinculado",
+ "local_only": "Solo puede iniciar sesión desde la red local",
+ "name": "Nombre",
+ "name_error_msg": "Se requiere el nombre",
+ "new_person": "Nueva persona",
+ "no_device_tracker_available_intro": "Cuando tengas dispositivos que indiquen la presencia de una persona, podrás asignarlos a una persona aquí. Puedes agregar tu primer dispositivo agregando una integración de detección de presencia desde la página de integraciones.",
+ "update": "Actualizar"
+ },
+ "introduction": "Aquí puedes definir a cada persona de interés en Home Assistant.",
+ "learn_more": "Saber más sobre las personas",
+ "no_persons_created_yet": "Parece que aún no has creado ninguna persona.",
+ "note_about_persons_configured_in_yaml": "Nota: las personas configuradas a través de configuration.yaml no se pueden editar a través de la IU.",
+ "person_not_found": "No pudimos encontrar a la persona que intentabas editar.",
+ "person_not_found_title": "Persona no encontrada"
+ },
+ "scene": {
+ "activated": "Activada escena {name}.",
+ "caption": "Escenas",
+ "description": "Captura los estados de los dispositivos y recupéralos fácilmente más tarde",
+ "editor": {
+ "area": "Área",
+ "default_name": "Nueva Escena",
+ "devices": {
+ "add": "Añadir un dispositivo",
+ "delete": "Eliminar dispositivo",
+ "header": "Dispositivos",
+ "introduction": "Añade los dispositivos que deseas incluir en la escena. Establece el estado de todos los dispositivos que quieras para esta escena."
+ },
+ "entities": {
+ "add": "Añadir una entidad",
+ "delete": "Eliminar entidad",
+ "device_entities": "Si añades una entidad que pertenece a un dispositivo, se añadirá el dispositivo.",
+ "header": "Entidades",
+ "introduction": "Las entidades que no pertenecen a un dispositivo se pueden configurar aquí.",
+ "without_device": "Entidades sin dispositivo"
+ },
+ "icon": "Icono",
+ "introduction": "Usa escenas para darle vida a tu hogar.",
+ "load_error_not_editable": "Solo las escenas de scenes.yaml son editables.",
+ "load_error_unknown": "Error al cargar la escena ({err_no}).",
+ "name": "Nombre",
+ "save": "Guardar",
+ "unsaved_confirm": "Tienes cambios sin guardar. ¿Estás seguro de que quieres salir?"
+ },
+ "picker": {
+ "add_scene": "Añadir escena",
+ "delete_confirm": "¿Estás seguro de que quieres eliminar esta escena?",
+ "delete_scene": "Eliminar escena",
+ "duplicate": "Duplicar",
+ "duplicate_scene": "Duplicar la escena",
+ "edit_scene": "Editar escena",
+ "header": "Editor de escenas",
+ "headers": {
+ "name": "Nombre"
+ },
+ "introduction": "El editor de escenas te permite crear y editar escenas. Por favor, sigue el siguiente enlace para leer las instrucciones para asegurarte de que has configurado Home Assistant correctamente.",
+ "learn_more": "Saber más sobre las escenas",
+ "no_scenes": "No pudimos encontrar ninguna escena",
+ "only_editable": "Solo las escenas definidas en scenes.yaml son editables.",
+ "pick_scene": "Elige una escena para editar",
+ "show_info_scene": "Mostrar información sobre la escena"
+ }
+ },
+ "script": {
+ "caption": "Scripts",
+ "description": "Ejecuta una secuencia de acciones",
+ "editor": {
+ "alias": "Nombre",
+ "default_name": "Nuevo script",
+ "delete_confirm": "¿Seguro que quieres eliminar este script?",
+ "delete_script": "Eliminar script",
+ "header": "Script: {name}",
+ "icon": "Icono",
+ "id": "ID de la entidad",
+ "id_already_exists": "Este ID ya existe",
+ "id_already_exists_save_error": "No puedes guardar este script porque el ID no es único, elige otro ID o déjalo en blanco para generar uno automáticamente.",
+ "introduction": "Utiliza scripts para ejecutar una secuencia de acciones.",
+ "link_available_actions": "Saber más sobre las acciones disponibles.",
+ "load_error_not_editable": "Solo los scripts dentro de scripts.yaml son editables.",
+ "max": {
+ "parallel": "Número máximo de ejecuciones paralelas",
+ "queued": "Longitud de la cola"
+ },
+ "modes": {
+ "description": "El modo controla lo que sucede cuando se invoca el script mientras aún se ejecuta desde una o más invocaciones anteriores. Consulta la {documentation_link} para obtener más información.",
+ "documentation": "documentación de script",
+ "label": "Modo",
+ "parallel": "Paralelo",
+ "queued": "En cola",
+ "restart": "Reiniciar",
+ "single": "Único (predeterminado)"
+ },
+ "save_script": "Guardar script",
+ "sequence": "Secuencia",
+ "sequence_sentence": "La secuencia de acciones de este script.",
+ "show_trace": "Mostrar traza"
+ },
+ "picker": {
+ "add_script": "Añadir script",
+ "dev_script": "Depurar script",
+ "duplicate": "Duplicar",
+ "duplicate_script": "Duplicar script",
+ "edit_script": "Editar script",
+ "header": "Editor de scripts",
+ "headers": {
+ "name": "Nombre"
+ },
+ "introduction": "El editor de scripts te permite crear y editar scripts. Por favor, sigue el siguiente enlace para leer las instrucciones para asegurarte de que has configurado Home Assistant correctamente.",
+ "learn_more": "Saber más sobre los scripts",
+ "no_scripts": "No pudimos encontrar ningún script",
+ "run_script": "Ejecutar script",
+ "show_info": "Mostrar información sobre el script"
+ }
+ },
+ "server_control": {
+ "caption": "Controles del servidor",
+ "description": "Valida y reinicia el servidor Home Assistant",
+ "section": {
+ "reloading": {
+ "automation": "Automatizaciones",
+ "command_line": "Entidades de línea de comandos",
+ "core": "Ubicación y personalizaciones",
+ "filesize": "Entidades de tamaño de archivo",
+ "filter": "Entidades de filtro",
+ "generic": "Entidades de cámara IP genéricas",
+ "generic_thermostat": "Entidades de termostato genéricas",
+ "group": "Grupos, entidades de grupo, y notificar servicios",
+ "heading": "Recarga de la configuración YAML",
+ "history_stats": "Entidades de estadísticas del historial",
+ "homekit": "HomeKit",
+ "input_boolean": "Campos booleanos",
+ "input_button": "Botones de entrada",
+ "input_datetime": "Campos de fecha y hora",
+ "input_number": "Campos numéricos",
+ "input_select": "Campos desplegables",
+ "input_text": "Campos de texto",
+ "introduction": "Algunas partes de Home Assistant se pueden recargar sin necesidad de reiniciar. Al hacer clic en una de las siguientes opciones, se descargará su configuración YAML actual y se cargará la nueva.",
+ "min_max": "Entidades mín/máx",
+ "mqtt": "Entidades MQTT configuradas manualmente",
+ "person": "Personas",
+ "ping": "Entidades de sensor binario de ping",
+ "reload": "{domain}",
+ "rest": "Entidades rest y notificar servicios",
+ "rpi_gpio": "Entidades GPIO de Raspberry Pi",
+ "scene": "Escenas",
+ "script": "Scripts",
+ "smtp": "Servicios de notificación SMTP",
+ "statistics": "Entidades de estadísticas",
+ "telegram": "Servicios de notificación de Telegram",
+ "template": "Entidades de plantilla",
+ "themes": "Temas",
+ "timer": "Temporizadores",
+ "trend": "Entidades de tendencia",
+ "universal": "Entidades de reproductor multimedia universal",
+ "zone": "Zonas"
+ },
+ "server_management": {
+ "confirm_restart": "¿Seguro que quieres reiniciar Home Assistant?",
+ "confirm_stop": "¿Seguro que quieres detener Home Assistant?",
+ "heading": "Administración del servidor",
+ "introduction": "Controla tu Home Assistant.",
+ "restart": "Reiniciar",
+ "stop": "Detener"
+ },
+ "validation": {
+ "check_config": "Verificar configuración",
+ "heading": "Validación de la configuración",
+ "introduction": "Valida tu configuración si has realizado cambios recientemente en ella y quieres asegurarte de que son correctos",
+ "invalid": "Configuración no válida",
+ "valid": "¡Configuración valida!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Añadir etiqueta",
+ "automation_title": "Se escanea la etiqueta {name}",
+ "caption": "Etiquetas",
+ "confirm_remove": "¿Estás seguro de que quieres eliminar la etiqueta {tag} ?",
+ "confirm_remove_title": "¿Eliminar etiqueta?",
+ "create_automation": "Crear automatización con etiqueta",
+ "description": "Activa automatizaciones cuando se escanea una etiqueta NFC, un código QR, etc.",
+ "detail": {
+ "companion_apps": "aplicaciones complementarias",
+ "create": "Crear",
+ "create_and_write": "Crear y escribir",
+ "delete": "Eliminar",
+ "description": "Descripción",
+ "name": "Nombre",
+ "new_tag": "Nueva etiqueta",
+ "tag_id": "ID de etiqueta",
+ "tag_id_placeholder": "Autogenerado cuando se deja vacío",
+ "update": "Actualizar",
+ "usage": "Una etiqueta puede activar una automatización cuando se escanea, puedes usar etiquetas NFC, códigos QR o cualquier otro tipo de etiqueta. Utiliza nuestras {companion_link} para escribir esta etiqueta en una etiqueta NFC programable o crea un código QR a continuación."
+ },
+ "edit": "Editar",
+ "headers": {
+ "last_scanned": "Última vez escaneada",
+ "name": "Nombre"
+ },
+ "learn_more": "Saber más sobre las etiquetas",
+ "never_scanned": "Nunca escaneado",
+ "no_tags": "Sin etiquetas",
+ "write": "Escribir"
+ },
+ "updates": {
+ "check_unavailable": {
+ "description": "Es necesario ejecutar el sistema operativo de Home Assistant para poder comprobar e instalar las actualizaciones desde la interfaz de usuario de Home Assistant.",
+ "title": "No se puede comprobar si hay actualizaciones"
+ },
+ "check_updates": "Buscar actualizaciones",
+ "more_updates": "+ {count} Actualizaciones",
+ "review": "revisar",
+ "show": "mostrar",
+ "show_all_updates": "Mostrar todas las actualizaciones",
+ "title": "{count} {count, plural,\n one {actualización}\n other {actualizaciones}\n}",
+ "unable_to_fetch": "No se pueden cargar las actualizaciones",
+ "version_available": "La versión {version_available} está disponible"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Añadir usuario",
+ "create": "Crear",
+ "local_only": "Solo local",
+ "password": "Contraseña",
+ "password_confirm": "Confirmar contraseña",
+ "password_not_match": "Las contraseñas no coinciden"
+ },
+ "caption": "Usuarios",
+ "description": "Administra las cuentas de usuario de Home Assistant",
+ "editor": {
+ "activate_user": "Activar usuario",
+ "active": "Activo",
+ "active_tooltip": "Controla si el usuario puede iniciar sesión",
+ "admin": "Administrador",
+ "caption": "Ver usuario",
+ "change_password": "Cambiar la contraseña",
+ "confirm_user_deletion": "¿Seguro que quieres eliminar {name}?",
+ "deactivate_user": "Desactivar usuario",
+ "delete_user": "Eliminar usuario",
+ "group": "Grupo",
+ "id": "ID",
+ "local_only": "Solo puede iniciar sesión desde la red local",
+ "name": "Nombre para mostrar",
+ "new_password": "Nueva contraseña",
+ "owner": "Propietario",
+ "password_changed": "La contraseña se ha cambiado correctamente",
+ "system_generated": "Usuario del sistema",
+ "system_generated_users_not_editable": "No se pueden actualizar los usuarios del sistema.",
+ "system_generated_users_not_removable": "No se pueden eliminar usuarios del sistema.",
+ "unnamed_user": "Usuario sin nombre",
+ "update_user": "Actualizar",
+ "username": "Nombre de usuario"
+ },
+ "is_local": "Usuario local",
+ "is_not_active": "Deshabilitado",
+ "is_owner": "Propietario",
+ "is_system": "Usuario del sistema",
+ "picker": {
+ "add_user": "Añadir usuario",
+ "headers": {
+ "group": "Grupo",
+ "is_active": "Activo",
+ "is_owner": "Propietario",
+ "local": "Local",
+ "name": "Nombre para mostrar",
+ "system": "Sistema",
+ "username": "Nombre de usuario"
+ }
+ },
+ "users_privileges_note": "El grupo de usuarios es un trabajo en progreso. El usuario no podrá administrar la instancia a través de la IU. Todavía estamos auditando todos los endpoints de la API de administración para garantizar que se limita correctamente el acceso sólo a los administradores."
+ },
+ "zha": {
+ "add_device": "Añadir dispositivo",
+ "add_device_page": {
+ "discovered_text": "Los dispositivos aparecerán aquí una vez descubiertos.",
+ "no_devices_found": "No se encontraron dispositivos, asegúrate de que estén en modo de emparejamiento y mantenlos despiertos mientras se ejecuta el descubrimiento.",
+ "pairing_mode": "Asegúrate de que tus dispositivos están en modo de emparejamiento. Consulta las instrucciones de tu dispositivo sobre cómo hacerlo.",
+ "search_again": "Buscar de nuevo",
+ "spinner": "Buscando dispositivos ZHA Zigbee…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Atributos del clúster seleccionado",
+ "get_zigbee_attribute": "Obtener atributo de Zigbee",
+ "header": "Atributos del clúster",
+ "help_attribute_dropdown": "Selecciona un atributo para ver o establecer su valor.",
+ "help_get_zigbee_attribute": "Obtenga el valor del atributo seleccionado.",
+ "help_set_zigbee_attribute": "Establece el valor del atributo para el clúster especificado en la entidad especificada.",
+ "introduction": "Ver y editar los atributos del clúster.",
+ "set_zigbee_attribute": "Establecer atributo de Zigbee"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Comandos del clúster seleccionado",
+ "header": "Comandos de clúster",
+ "help_command_dropdown": "Selecciona un comando con el que interactuar.",
+ "introduction": "Ver y emitir comandos de clúster.",
+ "issue_zigbee_command": "Emitir comando Zigbee"
+ },
+ "clusters": {
+ "header": "Clústeres",
+ "help_cluster_dropdown": "Selecciona un clúster para ver atributos y comandos.",
+ "introduction": "Los clústeres son los bloques de construcción para la funcionalidad de Zigbee. Separan la funcionalidad en unidades lógicas. Hay tipos de cliente y de servidor y se componen de atributos y comandos."
+ },
+ "common": {
+ "clusters": "Clústeres",
+ "manufacturer_code_override": "Anulación del código del fabricante",
+ "value": "Valor"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Atajos",
+ "update_button": "Actualizar la configuración"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Configuración completada",
+ "CONFIGURED_status_text": "Inicializando",
+ "INITIALIZED": "Inicialización completada",
+ "INITIALIZED_status_text": "El dispositivo está listo para ser usado",
+ "INTERVIEW_COMPLETE": "Entrevista completada",
+ "INTERVIEW_COMPLETE_status_text": "Configurando",
+ "PAIRED": "Dispositivo encontrado",
+ "PAIRED_status_text": "Iniciando entrevista"
+ },
+ "group_binding": {
+ "bind_button_help": "Vincula el grupo seleccionado a los clústeres de dispositivos seleccionados.",
+ "bind_button_label": "Vincular grupo",
+ "cluster_selection_help": "Selecciona los clústeres que deseas vincular al grupo seleccionado.",
+ "group_picker_help": "Selecciona un grupo para emitir un comando de vinculación.",
+ "group_picker_label": "Grupos vinculables",
+ "header": "Vinculación de grupos",
+ "introduction": "Vincular y desvincular grupos.",
+ "unbind_button_help": "Desvincula el grupo seleccionado de los clústeres de dispositivos seleccionados.",
+ "unbind_button_label": "Desvincular grupo"
+ },
+ "groups": {
+ "add_group": "Añadir grupo",
+ "add_members": "Añadir miembros",
+ "caption": "Grupos",
+ "create": "Crear un grupo",
+ "create_group": "Domótica Zigbee - Crear grupo",
+ "create_group_details": "Introduce los detalles necesarios para crear un nuevo grupo de zigbee",
+ "creating_group": "Creación de grupo",
+ "delete": "Eliminar grupo",
+ "group_details": "Aquí están todos los detalles del grupo Zigbee seleccionado.",
+ "group_id": "ID de grupo",
+ "group_info": "Información del grupo",
+ "group_name_placeholder": "Nombre del grupo",
+ "group_not_found": "¡Grupo no encontrado!",
+ "groups": "Grupos",
+ "members": "Miembros",
+ "remove_members": "Eliminar miembros",
+ "removing_members": "Eliminando miembros"
+ },
+ "network": {
+ "caption": "Red"
+ },
+ "visualization": {
+ "auto_zoom": "Zoom automático",
+ "caption": "Visualización",
+ "enable_physics": "Habilitar física",
+ "header": "Visualización de la red",
+ "highlight_label": "Resaltar dispositivos",
+ "refresh_topology": "Actualizar topología",
+ "zoom_label": "Zoom al dispositivo"
+ }
+ },
+ "zone": {
+ "add_zone": "Añadir zona",
+ "caption": "Zonas",
+ "configured_in_yaml": "Las zonas configuradas a través de configuration.yaml no se pueden editar a través de la interfaz de usuario.",
+ "confirm_delete": "¿Estás seguro de que deseas eliminar esta zona?",
+ "create_zone": "Crear zona",
+ "description": "Administra las zonas en las que deseas realizar un seguimiento de las personas.",
+ "detail": {
+ "create": "Crear",
+ "delete": "Eliminar",
+ "icon": "Icono",
+ "icon_error_msg": "El icono debe estar en el formato \"prefijo:nombre_del_icono\", por ejemplo: \"mdi:home\"",
+ "latitude": "Latitud",
+ "longitude": "Longitud",
+ "name": "Nombre",
+ "new_zone": "Nueva zona",
+ "passive": "Pasivo",
+ "passive_note": "Las zonas pasivas están ocultas en la interfaz y no se utilizan como ubicación para rastreadores de dispositivos. Esto es útil si solo quieres usarlo para automatizaciones.",
+ "radius": "Radio",
+ "required_error_msg": "Este campo es obligatorio",
+ "update": "Actualizar"
+ },
+ "edit_home_zone": "El radio de la zona de tu casa aún no se puede editar desde la interfaz. Arrastra el marcador en el mapa para mover la zona de tu casa.",
+ "edit_home_zone_narrow": "El radio de la zona de tu casa aún no se puede editar desde la interfaz. La ubicación se puede cambiar desde la configuración general.",
+ "edit_zone": "Editar zona",
+ "go_to_core_config": "¿Ir a la configuración general?",
+ "home_zone_core_config": "La ubicación de la zona de tu casa se puede editar desde la página de configuración general. El radio de la zona de tu casa aún no se puede editar desde la interfaz. ¿Quieres ir a la configuración general?",
+ "introduction": "Las zonas permiten especificar determinadas regiones de la tierra. Cuando una persona está dentro de una zona, su estado tomará el nombre de la zona. Las zonas también se pueden utilizar como desencadenante o condición dentro de las configuraciones de automatización.",
+ "no_zones_created_yet": "Parece que aún no has creado ninguna zona."
+ },
+ "zwave": {
+ "common": {
+ "index": "Índice",
+ "instance": "Instancia",
+ "unknown": "Desconocido",
+ "value": "Valor",
+ "wakeup_interval": "Intervalo de activación"
+ },
+ "description": "Administra tu red Z-Wave",
+ "learn_more": "Saber más sobre Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "Migrar a OpenZWave",
+ "introduction": "Este asistente te ayudará a migrar de la antigua integración de Z-Wave a la integración de OpenZWave que se encuentra actualmente en versión beta."
+ },
+ "zwave_js": {
+ "header": "Migrar a Z-Wave JS",
+ "introduction": "Esta integración ya no se mantiene y te recomendamos que cambies a la nueva integración de Z-Wave JS. Este asistente te ayudará a migrar de la integración heredada de Z-Wave a la nueva integración de Z-Wave JS."
+ }
+ },
+ "network_management": {
+ "header": "Administración de red Z-Wave",
+ "introduction": "Ejecutar comandos que afectan a la red Z-Wave. No recibirás comentarios sobre si la mayoría de los comandos tuvieron éxito, pero puedes consultar el Registro OZW para intentar averiguarlo."
+ },
+ "network_status": {
+ "network_started": "Red Z-Wave iniciada",
+ "network_started_note_all_queried": "Se han consultado todos los nodos.",
+ "network_started_note_some_queried": "Se han consultado nodos despiertos. Los nodos dormidos serán consultados cuando se despierten.",
+ "network_starting": "Iniciando la red Z-Wave…",
+ "network_starting_note": "Esto puede llevar un tiempo dependiendo del tamaño de tu red.",
+ "network_stopped": "Red Z-Wave detenida"
+ },
+ "node_config": {
+ "config_parameter": "Parámetro de configuración",
+ "config_value": "Valor de configuración",
+ "false": "Falso",
+ "header": "Opciones de configuración de nodo",
+ "seconds": "segundos",
+ "set_config_parameter": "Establecer parámetro de configuración",
+ "set_wakeup": "Establecer intervalo de activación",
+ "true": "Verdadero"
+ },
+ "node_management": {
+ "add_to_group": "Añadir al Grupo",
+ "entities": "Entidades de este nodo",
+ "entity_info": "Información de la entidad",
+ "exclude_entity": "Excluir esta entidad de Home Assistant",
+ "group": "Grupo",
+ "header": "Gestión de nodos Z-Wave",
+ "introduction": "Ejecuta comandos de Z-Wave que afectan a un solo nodo. Elige un nodo para ver una lista de comandos disponibles.",
+ "max_associations": "Asociaciones máximas:",
+ "node_group_associations": "Asociaciones de grupos de nodos",
+ "node_protection": "Protección del nodo",
+ "node_to_control": "Nodo a controlar",
+ "nodes": "Nodos",
+ "nodes_hint": "Selecciona un nodo para ver las opciones por nodo",
+ "nodes_in_group": "Otros nodos en este grupo:",
+ "pooling_intensity": "Intensidad de sondeo",
+ "protection": "Protección",
+ "remove_broadcast": "Eliminar difusión",
+ "remove_from_group": "Eliminar del Grupo",
+ "set_protection": "Establecer protección"
+ },
+ "ozw_log": {
+ "header": "OZW Log",
+ "introduction": "Ver el registro. 0 es el mínimo (carga el registro completo) y 1000 es el máximo. Load mostrará un registro estático y tail se actualizará automáticamente con el último número especificado de líneas del registro.",
+ "last_log_lines": "Número de últimas líneas de registro",
+ "load": "Cargar",
+ "tail": "Cola"
+ },
+ "services": {
+ "add_node": "Añadir nodo",
+ "add_node_secure": "Añadir nodo seguro",
+ "cancel_command": "Cancelar comando",
+ "heal_network": "Recuperar red",
+ "heal_node": "Recuperar nodo",
+ "node_info": "Información del nodo",
+ "print_node": "Imprimir nodo",
+ "refresh_entity": "Actualizar Entidad",
+ "refresh_node": "Actualizar nodo",
+ "remove_failed_node": "Eliminar nodo fallido",
+ "remove_node": "Eliminar nodo",
+ "replace_failed_node": "Reemplazar nodo fallido",
+ "save_config": "Guardar configuración",
+ "soft_reset": "Reinicio suave",
+ "start_network": "Iniciar red",
+ "stop_network": "Detener red",
+ "test_network": "Probar red",
+ "test_node": "Comprobar nodo"
+ },
+ "values": {
+ "header": "Valores del nodo"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Cancelar inclusión",
+ "check_logs": "Por favor, consulta los registros para obtener más información.",
+ "choose_inclusion_strategy": "¿Cómo quieres agregar tu dispositivo?",
+ "controller_in_inclusion_mode": "Tu controlador Z-Wave ahora está en modo de inclusión.",
+ "enter_qr_code": "Introduce el valor del código QR",
+ "follow_device_instructions": "Sigue las instrucciones que vienen con el dispositivo para activar el emparejamiento en el dispositivo.",
+ "inclusion_failed": "No se pudo añadir el dispositivo.",
+ "inclusion_finished": "Se ha agregado el dispositivo.",
+ "interview_failed": "La entrevista del dispositivo falló. Es posible que haya información adicional disponible en los registros.",
+ "interview_started": "El dispositivo está siendo entrevistado. Esto puede llevar algún tiempo.",
+ "introduction": "Este asistente te guiará para añadir un nodo a tu red Z-Wave.",
+ "provisioning_finished": "Se ha añadido el dispositivo. Una vez que lo enciendas, estará disponible.",
+ "qr_code": "Código QR",
+ "qr_code_paragraph": "Si tu dispositivo es compatible con SmartStart, puedes escanear el código QR para facilitar el emparejamiento.",
+ "scan_qr_code": "Escanear código QR",
+ "searching_device": "Buscando dispositivo",
+ "secure_inclusion_warning": "Los dispositivos seguros requieren ancho de banda adicional; demasiados dispositivos seguros pueden ralentizar tu red Z-Wave. Recomendamos usar solo la inclusión segura para dispositivos que lo requieran, como cerraduras o abre-puertas de garaje.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Ejemplo: cerraduras de puerta heredadas sin soporte S2",
+ "title": "S0 heredado"
+ },
+ "S2_AccessControl": {
+ "description": "Ejemplo: cerraduras de puertas y puertas de garaje",
+ "title": "Control de acceso S2"
+ },
+ "S2_Authenticated": {
+ "description": "Ejemplo: iluminación, sensores y sistemas de seguridad",
+ "title": "S2 autenticado"
+ },
+ "S2_Unauthenticated": {
+ "description": "Como S2 autenticado, pero sin verificación de que el dispositivo correcto está incluido",
+ "title": "S2 no autenticado"
+ }
+ },
+ "select_camera": "Seleccionar cámara",
+ "start_inclusion": "Iniciar inclusión",
+ "start_secure_inclusion": "Iniciar inclusión segura",
+ "title": "Añadir un dispositivo Z-Wave",
+ "use_secure_inclusion": "Usar inclusión segura",
+ "view_device": "Ver dispositivo"
+ },
+ "common": {
+ "add_node": "Añadir dispositivo",
+ "back": "Volver",
+ "close": "Cerrar",
+ "heal_network": "Recuperar red",
+ "home_id": "ID de casa",
+ "network": "Red",
+ "node_id": "ID del dispositivo",
+ "reconfigure_server": "Reconfigurar el servidor",
+ "remove_node": "Eliminar dispositivo",
+ "source": "Fuente"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n one {dispositivo}\n other {dispositivos}\n}",
+ "driver_version": "Versión del controlador",
+ "dump_dead_nodes_text": "Algunos de tus dispositivos no respondieron y se supone que están muertos. Estos no se exportarán por completo.",
+ "dump_dead_nodes_title": "Algunos de tus dispositivos están muertos",
+ "dump_debug": "Descargar datos",
+ "dump_not_ready_confirm": "Descargar",
+ "dump_not_ready_text": "Si creas una exportación cuando no todos los dispositivos están listos, puedes perder datos necesarios. Dale a tu red algo de tiempo para consultar todos los dispositivos. ¿Quieres continuar con el volcado?",
+ "dump_not_ready_title": "Aún no están listos todos los dispositivos",
+ "header": "Administra tu red Z-Wave",
+ "home_id": "ID de casa",
+ "introduction": "Administra tu red Z-Wave y los dispositivos Z-Wave",
+ "nodes_ready": "Dispositivos listos",
+ "not_ready": "{count} {count, plural,\n one {no está listo}\n other {no están listos}\n}",
+ "provisioned_devices": "Dispositivos aprovisionados",
+ "server_url": "URL del servidor",
+ "server_version": "Versión del servidor"
+ },
+ "device_info": {
+ "device_config": "Configurar dispositivo",
+ "heal_node": "Recuperar dispositivo",
+ "highest_security": "Máxima seguridad",
+ "is_secure": "Seguro",
+ "node_ready": "Dispositivo listo",
+ "node_status": "Estado del dispositivo",
+ "reinterview_device": "Volver a entrevistar el dispositivo",
+ "remove_failed": "Eliminar dispositivo fallido",
+ "unknown": "Desconocido",
+ "zwave_info": "Información de Z-Wave",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Versión {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "Se ha cancelado la recuperación de la red.",
+ "healing_complete": "La recuperación de la red se ha completado.",
+ "healing_failed": "La recuperación falló. Puede haber información adicional disponible en los registros.",
+ "in_progress": "La recuperación de la red está en curso. Esto llevará algún tiempo.",
+ "introduction": "Inicia un proceso de recuperación de red en tu red Z-Wave. Una recuperación de la red hará que todos los dispositivos vuelvan a calcular sus rutas hacia el controlador y se recomienda si has cambiado algún dispositivo de sitio o tu controlador recientemente.",
+ "run_in_background": "Puedes cerrar este cuadro de diálogo y la recuperación de la red continuará en segundo plano.",
+ "start_heal": "Iniciar la recuperación",
+ "stop_heal": "Detener la recuperación",
+ "title": "Recupera tu red Z-Wave",
+ "traffic_warning": "El proceso de recuperación genera una gran cantidad de tráfico en la red Z-Wave. Esto puede hacer que los dispositivos respondan lentamente (o no respondan en absoluto) mientras la recuperación está en curso."
+ },
+ "heal_node": {
+ "healing_complete": "{device} ha sido recuperado.",
+ "healing_failed": "{device} no se pudo recuperar.",
+ "healing_failed_check_logs": "Puede haber información adicional disponible en los registros.",
+ "in_progress": "La recuperación de {device} está en curso.",
+ "introduction": "Dile a {device} que actualice sus rutas al controlador. Esto puede ayudar con problemas de comunicación si recientemente has movido el dispositivo o tu controlador.",
+ "network_heal_in_progress": "Ya se está realizando una recuperación de la red Z-Wave. Espera a que termine antes de recuperar un dispositivo individual.",
+ "start_heal": "Recuperar dispositivo",
+ "title": "Recuperar un dispositivo Z-Wave",
+ "traffic_warning": "El proceso de recuperación genera una gran cantidad de tráfico en la red Z-Wave. Esto puede hacer que los dispositivos respondan lentamente (o no respondan en absoluto) mientras la recuperación está en curso."
+ },
+ "logs": {
+ "download_logs": "Descargar registros",
+ "log_level": "Nivel de registro",
+ "log_level_changed": "Nivel de registro cambiado a: {level}",
+ "subscribed_to_logs": "Suscrito a los mensajes de registro de Z-Wave JS…",
+ "title": "Registros de Z-Wave JS"
+ },
+ "navigation": {
+ "logs": "Registros",
+ "network": "Red"
+ },
+ "network_status": {
+ "connected": "Conectado",
+ "connecting": "Conectando",
+ "unknown": "Desconocido"
+ },
+ "node_config": {
+ "attribution": "{device_database} proporciona los parámetros de configuración del dispositivo y las descripciones.",
+ "battery_device_notice": "Los dispositivos de batería deben estar activos para actualizar su configuración. Consulta el manual de tu dispositivo para obtener instrucciones sobre cómo reactivar el dispositivo.",
+ "error_device_not_found": "Dispositivo no encontrado",
+ "header": "Configuración del dispositivo Z-Wave",
+ "introduction": "Administra y ajusta los parámetros de configuración específicos del dispositivo seleccionado",
+ "parameter": "Parámetro",
+ "parameter_is_read_only": "Este parámetro es de solo lectura.",
+ "set_param_accepted": "El parámetro se ha actualizado.",
+ "set_param_error": "Se ha producido un error.",
+ "set_param_queued": "El cambio de parámetro se ha puesto en cola y se actualizará cuando el dispositivo se active.",
+ "zwave_js_device_database": "Base de datos de dispositivos Z-Wave JS"
+ },
+ "node_status": {
+ "alive": "Vivo",
+ "asleep": "Dormido",
+ "awake": "Despierto",
+ "dead": "No responde",
+ "unknown": "Desconocido"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "Si desaprovisionas el dispositivo, no se añadirá a Home Assistant cuando esté encendido. Si ya está añadido a Home Assistant, eliminar el dispositivo aprovisionado no lo eliminará de Home Assistant.",
+ "confirm_unprovision_title": "¿Estás seguro de que deseas desaprovisionar el dispositivo?",
+ "dsk": "DSK",
+ "included": "Incluido",
+ "not_included": "No incluido",
+ "security_classes": "Clases de seguridad",
+ "unprovison": "Desaprovisionar"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "Antes de iniciar el proceso de reentrevista deberás despertar los dispositivos que funcionan con batería. Consulta el manual de tu dispositivo para obtener instrucciones sobre cómo despertar el dispositivo.",
+ "in_progress": "El dispositivo está siendo entrevistado. Esto puede llevar algún tiempo.",
+ "interview_complete": "Entrevista con el dispositivo completa.",
+ "interview_failed": "La entrevista del dispositivo falló. Es posible que haya información adicional disponible en los registros.",
+ "introduction": "Vuelve a entrevistar un dispositivo en tu red Z-Wave. Utiliza esta función si tu dispositivo tiene una funcionalidad incorrecta o ausente.",
+ "run_in_background": "Puedes cerrar este cuadro de diálogo y la entrevista continuará en segundo plano.",
+ "start_reinterview": "Iniciar la reentrevista",
+ "title": "Volver a entrevistar un dispositivo Z-Wave"
+ },
+ "remove_failed_node": {
+ "in_progress": "La eliminación del dispositivo está en curso.",
+ "introduction": "Elimina un dispositivo fallido de tu red Z-Wave. Usa esto si no puedes excluir un dispositivo normalmente porque está estropeado.",
+ "removal_failed": "El dispositivo no se pudo eliminar de tu red Z-Wave.",
+ "removal_finished": "El dispositivo {id} se ha eliminado de tu red Z-Wave.",
+ "remove_device": "Eliminar dispositivo",
+ "title": "Eliminar un dispositivo Z-Wave fallido"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Cancelar exclusión",
+ "controller_in_exclusion_mode": "Tu controlador Z-Wave ahora está en modo de exclusión.",
+ "exclusion_failed": "No se pudo eliminar el dispositivo. Por favor, consulta los registros para obtener más información.",
+ "exclusion_finished": "El dispositivo {id} se ha eliminado de tu red Z-Wave.",
+ "follow_device_instructions": "Sigue las instrucciones que vienen con el dispositivo para activar la exclusión en el dispositivo.",
+ "introduction": "Elimina un dispositivo de tu red Z-Wave y elimina el dispositivo y las entidades asociadas de Home Assistant.",
+ "start_exclusion": "Iniciar exclusión",
+ "title": "Eliminar un dispositivo Z-Wave"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Ninguna"
+ },
+ "S0_Legacy": {
+ "description": "Ejemplo: cerraduras de puerta heredadas sin soporte S2",
+ "title": "S0 heredado"
+ },
+ "S2_AccessControl": {
+ "description": "Ejemplo: cerraduras de puertas y puertas de garaje",
+ "title": "Control de acceso S2"
+ },
+ "S2_Authenticated": {
+ "description": "Ejemplo: iluminación, sensores y sistemas de seguridad",
+ "title": "S2 autenticado"
+ },
+ "S2_Unauthenticated": {
+ "description": "Como S2 autenticado, pero sin verificación de que el dispositivo correcto está incluido",
+ "title": "S2 no autenticado"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Tendrá acceso a todos los datos en Home Assistant.",
+ "hide_message": "Consulta la documentación del componente panel_custom para ocultar este mensaje",
+ "question_trust": "¿Confías en el panel externo {name} de {link}?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Oyentes activos",
+ "alert_event_type": "El tipo de evento es un campo obligatorio.",
+ "available_events": "Eventos disponibles",
+ "count_listeners": " ({count} oyentes)",
+ "data": "Datos del evento (YAML, opcional)",
+ "description": "Disparar un evento en el bus de eventos.",
+ "documentation": "Documentación de eventos",
+ "event_fired": "Evento {name} disparado",
+ "fire_event": "Lanzar evento",
+ "listen_to_events": "Escuchar eventos",
+ "listening_to": "Escuchando",
+ "notification_event_fired": "¡Evento {type} disparado con éxito!",
+ "start_listening": "Empezar a escuchar",
+ "stop_listening": "Dejar de escuchar",
+ "subscribe_to": "Evento al que suscribirse",
+ "title": "Eventos",
+ "type": "Tipo de evento"
+ },
+ "services": {
+ "accepts_target": "Este servicio acepta un objetivo, por ejemplo: `entity_id: light.luz_dormitorio`",
+ "all_parameters": "Todos los parámetros disponibles",
+ "call_service": "Llamar servicio",
+ "column_description": "Descripción",
+ "column_example": "Ejemplo",
+ "column_parameter": "Parámetro",
+ "description": "La herramienta de desarrollo de servicios te permite llamar a cualquier servicio disponible en Home Assistant.",
+ "fill_example_data": "Rellenar datos de ejemplo",
+ "no_template_ui_support": "La interfaz de usuario no admite plantillas, pero puedes utilizar el editor YAML.",
+ "title": "Servicios",
+ "ui_mode": "Ir al modo IU",
+ "yaml_mode": "Ir al modo YAML",
+ "yaml_parameters": "Parámetros solo disponibles en modo YAML"
+ },
+ "states": {
+ "alert_entity_field": "Entidad es un campo obligatorio",
+ "attributes": "Atributos",
+ "copy_id": "Copiar ID al portapapeles",
+ "current_entities": "Entidades actuales",
+ "description1": "Establece la representación del estado actual de una entidad dentro de Home Assistant.",
+ "description2": "Si la entidad pertenece a un dispositivo, no habrá comunicación real con ese dispositivo.",
+ "entity": "Entidad",
+ "filter_attributes": "Filtrar atributos",
+ "filter_entities": "Filtrar entidades",
+ "filter_states": "Filtrar estados",
+ "last_changed": "Último cambio",
+ "last_updated": "Última actualización",
+ "more_info": "Más Información",
+ "no_entities": "Sin entidades",
+ "set_state": "Establecer estado",
+ "state": "Estado",
+ "state_attributes": "Atributos de estado (YAML, opcional)",
+ "title": "Estados"
+ },
+ "statistics": {
+ "entity": "Entidad",
+ "fix_issue": {
+ "fix": "Solucionar problema",
+ "units_changed": {
+ "clear": "Eliminar todos los datos estadísticos antiguos de esta entidad",
+ "fix": "Solucionar problema",
+ "title": "La unidad de esta entidad cambió",
+ "update": "Actualizar los valores de las estadísticas históricas de \"{metadata_unit}\" a \"{state_unit}\""
+ }
+ },
+ "issue": "Problema",
+ "issues": {
+ "entity_no_longer_recorded": "Esta entidad ya no se está registrando.",
+ "entity_not_recorded": "Esta entidad está excluida de ser registrada.",
+ "no_state": "No hay ningún estado disponible para esta entidad.",
+ "units_changed": "La unidad de esta entidad cambió de \"{metadata_unit}\" a \"{state_unit}\".",
+ "unsupported_state_class": "La clase de estado \"{state_class}\" de esta entidad no es compatible.",
+ "unsupported_unit": "La unidad (\"{state_unit}\") de esta entidad no coincide con una unidad de la clase de dispositivo \"{device_class}\".",
+ "unsupported_unit_metadata": "La unidad (\"{metadata_unit}\") de las estadísticas registradas no coincide con la unidad admitida \"{supported_unit}\" de la clase de dispositivo \"{device_class}\".",
+ "unsupported_unit_state": "La unidad (\"{state_unit}\") de esta entidad no coincide con una unidad de la clase de dispositivo \"{device_class}\"."
+ },
+ "no_issue": "Sin problema",
+ "title": "Estadísticas"
+ },
+ "templates": {
+ "all_listeners": "Esta plantilla escucha todos los eventos de cambio de estado.",
+ "description": "Las plantillas se muestran utilizando el motor de plantillas Jinja2 con algunas extensiones específicas de Home Assistant.",
+ "domain": "Dominio",
+ "editor": "Editor de plantillas",
+ "entity": "Entidad",
+ "jinja_documentation": "Documentación de plantilla Jinja2",
+ "listeners": "Esta plantilla escucha los siguientes eventos de cambio de estado:",
+ "no_listeners": "Esta plantilla no escucha ningún evento y no se actualizará automáticamente.",
+ "reset": "Restablecer la plantilla de demostración",
+ "result_type": "Tipo de resultado",
+ "template_extensions": "Extensiones de plantilla de Home Assistant",
+ "time": "Esta plantilla se actualiza al comienzo de cada minuto.",
+ "title": "Plantillas",
+ "unknown_error_template": "Error desconocido al mostrar la plantilla"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Monitorizar dispositivos individuales",
+ "energy_distribution_title": "Distribución de la energía",
+ "energy_gas_graph_title": "Consumo de gas",
+ "energy_solar_graph_title": "Producción solar",
+ "energy_sources_table_title": "Fuentes",
+ "energy_usage_graph_title": "Uso de la energía"
+ },
+ "charts": {
+ "by_device": "Consumo por dispositivo",
+ "solar": "Solar",
+ "stat_house_energy_meter": "Consumo total de energía"
+ },
+ "setup": {
+ "back": "Volver",
+ "done": "¡Muéstrame mi panel de control de energía!",
+ "next": "Siguiente"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Solo puedes usar esta función cuando hayas tomado el control de la IU Lovelace.",
+ "saving_failed": "Error al guardar la configuración de la IU Lovelace.",
+ "yaml_unsupported": "No puedes usar esta función cuando usas la IU Lovelace en modo YAML."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "¿Estás seguro de que deseas ejecutar la acción \"{action}\"?",
+ "no_entity_more_info": "No se proporcionó ninguna entidad para el diálogo de más información",
+ "no_entity_toggle": "No se proporcionó entidad para alternar",
+ "no_navigation_path": "No se ha especificado ninguna ruta de navegación",
+ "no_service": "No se ha especificado ningún servicio para ejecutar",
+ "no_url": "No se ha especificado ninguna URL para abrir"
+ },
+ "confirm_delete": "¿Seguro que quieres eliminar esta tarjeta?",
+ "empty_state": {
+ "go_to_integrations_page": "Ir a la página de integraciones.",
+ "no_devices": "Esta página te permite controlar tus dispositivos, aunque parece que aún no has configurado ninguno. Dirígete a la página de integraciones para empezar.",
+ "title": "Bienvenido a casa"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "Esta tarjeta indica cuánta energía consumida por tu hogar se generó utilizando combustibles no fósiles como la energía solar, eólica y nuclear. ¡Cuanto más alto, mejor!",
+ "non_fossil_energy_consumed": "Energía no fósil consumida",
+ "non_fossil_energy_not_calculated": "No se pudo calcular la energía no fósil consumida"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Uso de la energía"
+ },
+ "energy_distribution": {
+ "battery": "Batería",
+ "gas": "Gas",
+ "go_to_energy_dashboard": "Ir al panel de energía",
+ "grid": "Red",
+ "home": "Hogar",
+ "non_fossil": "No fósil",
+ "solar": "Solar",
+ "title_today": "Distribución de energía hoy"
+ },
+ "energy_solar_graph": {
+ "forecast": "Pronóstico {name}",
+ "production": "Producción {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Total de la batería",
+ "cost": "Coste",
+ "energy": "Energía",
+ "grid_total": "Total de la red",
+ "source": "Fuente",
+ "total_costs": "Costes totales"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Combinado de la red",
+ "consumed_battery": "Batería consumida",
+ "consumed_solar": "Energía solar consumida",
+ "total_consumed": "Total consumido {num} kWh",
+ "total_returned": "Total volcado {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Si la aguja está en el morado, devolviste más energía a la red de la que consumiste. Si está en el azul, consumiste más energía de la red de la que devolviste.",
+ "energy_dependency": "Esta tarjeta indica tu consumo neto de energía.",
+ "grid_neutrality_not_calculated": "No se pudo calcular la neutralidad de la red",
+ "net_consumed_grid": "Consumo neto de la red",
+ "net_returned_grid": "Neto devuelto a la red",
+ "red_green_color_explain": "Si es verde, significa que produjiste más energía de la que consumiste de la red. Si está en rojo, significa que dependiste de la red para parte del consumo de energía de tu hogar."
+ },
+ "loading": "Cargando...",
+ "no_data": "No hay datos para mostrar. Pueden pasar hasta 2 horas para que lleguen nuevos datos después de configurar tu panel de energía.",
+ "no_data_period": "No hay datos para este período.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "Esta tarjeta indica cuánta de la energía solar que produjiste fue utilizada por tu hogar en lugar de ser devuelta a la red.",
+ "card_indicates_solar_energy_used_charge_home_bat": "Si este número suele ser muy bajo, lo que indica un exceso de producción solar, es posible que desees considerar cargar una batería doméstica o un automóvil eléctrico con tus paneles solares en momentos de alta producción solar.",
+ "not_produced_solar_energy": "No has producido energía solar alguna.",
+ "self_consumed_solar_could_not_calc": "No se pudo calcular la energía solar autoconsumida",
+ "self_consumed_solar_energy": "Energía solar autoconsumida"
+ }
+ },
+ "entities": {
+ "never_triggered": "Nunca activado"
+ },
+ "iframe": {
+ "error_secure_context": "No se pueden cargar iframes que apuntan a sitios web que usan {target_protocol} si Home Assistant se sirve a través de {context_protocol}."
+ },
+ "map": {
+ "reset_focus": "Restablecer el foco"
+ },
+ "picture-elements": {
+ "call_service": "Ejecutar servicio {name}",
+ "hold": "Mantener:",
+ "more_info": "Mostrar más información: {name}",
+ "navigate_to": "Navegar a {location}",
+ "tap": "Toque:",
+ "toggle": "Alternar {name}",
+ "url": "Abrir ventana a {url_path}"
+ },
+ "safe-mode": {
+ "description": "Home Assistant tuvo problemas al cargar tu configuración y ahora se está ejecutando en modo seguro. Echa un vistazo al registro de errores para ver qué salió mal.",
+ "header": "Modo Seguro Activado"
+ },
+ "shopping-list": {
+ "add_item": "Añadir artículo",
+ "checked_items": "Elementos marcados",
+ "clear_items": "Borrar elementos marcados",
+ "drag_and_drop": "Arrastrar y soltar",
+ "reorder_items": "Reordenar artículos"
+ },
+ "show_more_info": "Mostrar más información",
+ "starting": {
+ "description": "Home Assistant está iniciando, espera por favor…"
+ }
+ },
+ "changed_toast": {
+ "message": "La configuración de la IU Lovelace para este panel de control se ha actualizado. ¿Quieres recargar para ver los cambios?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Día",
+ "month": "Mes",
+ "next": "Siguiente",
+ "previous": "Anterior",
+ "today": "Hoy",
+ "week": "Semana",
+ "year": "Año"
+ },
+ "timestamp-display": {
+ "invalid": "Marca de tiempo no válida",
+ "invalid_format": "Formato de visualización no válido"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Llamar servicio",
+ "default_action": "Acción por defecto",
+ "more-info": "Más información",
+ "navigate": "Navegar",
+ "none": "Sin acción",
+ "toggle": "Alternar",
+ "url": "URL"
+ },
+ "navigation_path": "Ruta de navegación",
+ "url_path": "Ruta de la URL"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Estados disponibles",
+ "description": "La tarjeta Panel de alarma te permite armar y desarmar las integraciones de tu panel de control de alarma.",
+ "name": "Panel de alarma"
+ },
+ "area": {
+ "description": "La tarjeta Área muestra automáticamente las entidades de un área específica.",
+ "name": "Área",
+ "show_camera": "Mostrar la imagen de la cámara en lugar de la imagen del área"
+ },
+ "button": {
+ "default_action_help": "La acción predeterminada depende de las capacidades de la entidad, se alternará o se mostrará el diálogo de más información.",
+ "description": "La tarjeta Botón te permite agregar botones para realizar tareas.",
+ "name": "Botón"
+ },
+ "calendar": {
+ "calendar_entities": "Entidades de calendario",
+ "description": "La tarjeta Calendario muestra un calendario que incluye vistas de día, semana y lista",
+ "inital_view": "Vista inicial",
+ "name": "Calendario",
+ "views": {
+ "dayGridDay": "Día",
+ "dayGridMonth": "Mes",
+ "listWeek": "Lista"
+ }
+ },
+ "conditional": {
+ "card": "Tarjeta",
+ "change_type": "Cambiar el tipo",
+ "condition_explanation": "La tarjeta será mostrada cuando se cumplan TODAS las condiciones siguientes.",
+ "conditions": "Condiciones",
+ "current_state": "actual",
+ "description": "La tarjeta Condicional muestra otra tarjeta en función de los estados de entidad.",
+ "name": "Condicional",
+ "state_equal": "El Estado es igual a",
+ "state_not_equal": "El Estado no es igual a"
+ },
+ "config": {
+ "optional": "opcional",
+ "required": "obligatorio"
+ },
+ "entities": {
+ "description": "La tarjeta Entidades es el tipo de tarjeta más común. Agrupa los elementos en listas.",
+ "edit_special_row": "Ve los detalles de esta fila haciendo clic en el botón de edición",
+ "entity_row": {
+ "attribute": "Atributo",
+ "button": "Botón",
+ "buttons": "Botones",
+ "call-service": "Llamar servicio",
+ "cast": "Emitir",
+ "conditional": "Condicional",
+ "divider": "Divisor",
+ "section": "Sección",
+ "weblink": "Enlace web"
+ },
+ "entity_row_editor": "Editor de filas de entidades",
+ "name": "Entidades",
+ "secondary_info_values": {
+ "brightness": "Brillo",
+ "entity-id": "ID de entidad",
+ "last-changed": "Último cambio",
+ "last-triggered": "Última activación",
+ "last-updated": "Última actualización",
+ "none": "Sin información secundaria",
+ "position": "Posición",
+ "tilt-position": "Posición de inclinación"
+ },
+ "show_header_toggle": "¿Mostrar interruptor en encabezado?",
+ "special_row": "fila especial",
+ "toggle": "Alternar entidades."
+ },
+ "entity-filter": {
+ "description": "La tarjeta Filtro de Entidades te permite definir una lista de entidades de las que deseas realizar un seguimiento solo cuando se encuentra en un estado determinado.",
+ "name": "Filtro de entidad"
+ },
+ "entity": {
+ "description": "La tarjeta Entidad te ofrece una visión rápida del estado de tu entidad.",
+ "name": "Entidad"
+ },
+ "gauge": {
+ "description": "La tarjeta Indicador es una tarjeta básica que permite ver visualmente los datos de los sensores.",
+ "name": "Indicador",
+ "needle_gauge": "¿Mostrar como medidor de aguja?",
+ "severity": {
+ "define": "¿Definir gravedad?",
+ "green": "Verde",
+ "red": "Rojo",
+ "yellow": "Amarillo"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Relación de aspecto",
+ "attribute": "Atributo",
+ "camera_image": "Entidad de cámara",
+ "camera_view": "Vista de cámara",
+ "days_to_show": "Días para mostrar",
+ "double_tap_action": "Acción de doble toque",
+ "entities": "Entidades",
+ "entity": "Entidad",
+ "hold_action": "Acción de mantener",
+ "hours_to_show": "Horas para mostrar",
+ "icon": "Icono",
+ "icon_height": "Altura del icono",
+ "image": "Ruta de la imagen",
+ "manual": "Manual",
+ "manual_description": "¿Necesitas agregar una tarjeta personalizada o simplemente deseas escribir manualmente el YAML?",
+ "maximum": "Máximo",
+ "minimum": "Mínimo",
+ "name": "Nombre",
+ "no_theme": "Sin tema",
+ "refresh_interval": "Intervalo de actualización",
+ "search": "Buscar",
+ "secondary_info_attribute": "Atributo de información secundaria",
+ "show_icon": "¿Mostrar icono?",
+ "show_name": "¿Mostrar nombre?",
+ "show_state": "¿Mostrar estado?",
+ "state": "Estado",
+ "state_color": "¿Iconos de colores según el estado?",
+ "tap_action": "Acción de toque",
+ "theme": "Tema",
+ "title": "Título",
+ "unit": "Unidad",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Columnas",
+ "description": "La tarjeta Vistazo es útil para agrupar varios sensores en una visión general compacta.",
+ "name": "Vistazo"
+ },
+ "grid": {
+ "columns": "Columnas",
+ "description": "La tarjeta Cuadrícula te permite mostrar varias tarjetas en una cuadrícula.",
+ "name": "Cuadrícula",
+ "square": "Representar tarjetas como cuadrados"
+ },
+ "history-graph": {
+ "description": "La tarjeta Historial Gráfico te permite mostrar un gráfico para cada una de las entidades enumeradas.",
+ "name": "Gráfico histórico"
+ },
+ "horizontal-stack": {
+ "description": "La tarjeta de la Pila Horizontal permite apilar varias tarjetas, de modo que siempre se sientan una al lado de la otra en el espacio de una columna.",
+ "name": "Pila horizontal"
+ },
+ "humidifier": {
+ "description": "La tarjeta Humidificador te da el control de tu entidad humidificador. Te permite cambiar la humedad y el modo de la entidad.",
+ "name": "Humidificador"
+ },
+ "iframe": {
+ "description": "La tarjeta de página web te permite incrustar tu página web favorita directamente en Home Assistant.",
+ "name": "Página web"
+ },
+ "light": {
+ "description": "La tarjeta de luz te permite cambiar la intensidad de la luz.",
+ "name": "Luz"
+ },
+ "logbook": {
+ "description": "La tarjeta Registro muestra un listado de eventos de las entidades.",
+ "name": "Registro"
+ },
+ "map": {
+ "dark_mode": "¿Modo oscuro?",
+ "default_zoom": "Zoom predeterminado",
+ "description": "La tarjeta Mapa que te permite mostrar entidades en un mapa.",
+ "geo_location_sources": "Fuentes de geolocalización",
+ "hours_to_show": "Horas para mostrar",
+ "name": "Mapa",
+ "source": "Fuente"
+ },
+ "markdown": {
+ "content": "Contenido",
+ "description": "La tarjeta Markdown se usa para representar Markdown.",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "description": "La tarjeta Control Multimedia se utiliza para mostrar entidades de reproductor multimedia en una interfaz con controles fáciles de usar.",
+ "name": "Control Multimedia"
+ },
+ "picture-elements": {
+ "description": "La tarjeta Elementos de imagen es uno de los tipos de tarjetas más versátiles. ¡Las tarjetas te permiten colocar iconos o texto e incluso servicios! En una imagen basada en coordenadas.",
+ "name": "Elementos de imagen"
+ },
+ "picture-entity": {
+ "description": "La tarjeta de Entidad de Imagen muestra una entidad en forma de imagen. En lugar de imágenes desde una URL, también puede mostrar la imagen de las entidades de cámara.",
+ "name": "Entidad de imagen"
+ },
+ "picture-glance": {
+ "description": "La tarjeta Vistazo de Imagen muestra una imagen y los estados de entidad correspondientes como un icono. Las entidades en el lado derecho permiten alternar acciones, otras muestran el diálogo de más información.",
+ "name": "Vistazo de imagen",
+ "state_entity": "Entidad de estado"
+ },
+ "picture": {
+ "description": "La tarjeta Imagen le permite configurar una imagen para usarla para navegar por varias rutas en su interfaz o para llamar a un servicio.",
+ "name": "Imagen"
+ },
+ "plant-status": {
+ "description": "La tarjeta Estado de la Planta es para todos los encantadores botánicos que hay por ahí.",
+ "name": "Estado de la planta"
+ },
+ "sensor": {
+ "description": "La tarjeta Sensor te ofrece una visión general rápida del estado de tus sensores con un gráfico opcional para visualizar los cambios a lo largo del tiempo.",
+ "graph_type": "Tipo de gráfico",
+ "name": "Sensor",
+ "show_more_detail": "Mostrar más detalles"
+ },
+ "shopping-list": {
+ "description": "La tarjeta Lista de la Compra le permite agregar, editar, marcar y borrar artículos de tu lista de compras.",
+ "integration_not_loaded": "Esta tarjeta requiere que se configure la integración 'Lista de la compra'.",
+ "name": "Lista de la compra"
+ },
+ "statistics-graph": {
+ "description": "La tarjeta Gráfico de estadísticas te permite mostrar un gráfico de las estadísticas de cada una de las entidades enumeradas.",
+ "name": "Gráfico de estadísticas",
+ "period": "Periodo",
+ "periods": {
+ "5minute": "5 minutos",
+ "day": "Día",
+ "hour": "Hora",
+ "month": "Mes"
+ }
+ },
+ "thermostat": {
+ "description": "La tarjeta Termostato te da el control de tu entidad climática. Te permite cambiar la temperatura y el modo de la entidad.",
+ "name": "Termostato"
+ },
+ "vertical-stack": {
+ "description": "La tarjeta Pila Vertical te permite agrupar varias tarjetas para que siempre se sienten en la misma columna.",
+ "name": "Pila vertical"
+ },
+ "weather-forecast": {
+ "description": "La tarjeta de Pronóstico del tiempo muestra el clima. Muy útil para incluir en las interfaces que las personas muestran en la pared.",
+ "name": "Pronóstico del tiempo",
+ "show_both": "Mostrar el tiempo actual y la previsión",
+ "show_forecast": "Mostrar pronóstico",
+ "show_only_current": "Mostrar solo el tiempo actual",
+ "show_only_forecast": "Mostrar sólo la previsión"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Por tarjeta",
+ "by_entity": "Por entidad",
+ "custom_card": "Personalizado",
+ "domain": "Dominio",
+ "entity": "Entidad",
+ "no_description": "No hay descripción disponible."
+ },
+ "common": {
+ "add": "Añadir",
+ "clear": "Limpiar",
+ "edit": "Editar",
+ "none": "Ninguno"
+ },
+ "edit_badges": {
+ "panel_mode": "Estas insignias no se mostrarán porque esta vista está en \"Modo panel\".",
+ "view_no_badges": "Las insignias no son compatibles con el tipo de vista actual."
+ },
+ "edit_card": {
+ "add": "Añadir tarjeta",
+ "clear": "Limpiar",
+ "confirm_cancel": "¿Estás seguro de que quieres cancelar?",
+ "delete": "Eliminar tarjeta",
+ "duplicate": "Duplicar tarjeta",
+ "edit": "Editar",
+ "header": "Configuración de la tarjeta",
+ "move": "Mover a la vista",
+ "move_after": "Mover tarjeta después",
+ "move_before": "Mover tarjeta antes",
+ "move_down": "Mover la tarjeta hacia abajo",
+ "move_up": "Mover tarjeta hacia arriba",
+ "options": "Más opciones",
+ "pick_card": "¿Qué tarjeta te gustaría añadir?",
+ "pick_card_view_title": "¿Qué tarjeta te gustaría añadir a tu vista {name} ?",
+ "search_cards": "Buscar tarjetas",
+ "show_code_editor": "Mostrar editor de código",
+ "show_visual_editor": "Mostrar editor visual",
+ "toggle_editor": "Alternar editor",
+ "typed_header": "Configuración de tarjeta {type}",
+ "unsaved_changes": "Tienes cambios sin guardar"
+ },
+ "edit_lovelace": {
+ "edit_title": "Editar título",
+ "explanation": "Este título se muestra sobre todas tus vistas en la IU Lovelace.",
+ "header": "Título de tu interfaz de usuario de Lovelace",
+ "title": "Título"
+ },
+ "edit_view": {
+ "add": "Añadir vista",
+ "delete": "Eliminar vista",
+ "edit": "Editar vista",
+ "header": "Ver configuración",
+ "header_name": "{name} Ver configuración",
+ "move_left": "Mover vista a la izquierda",
+ "move_right": "Mover vista a la derecha",
+ "tab_badges": "Insignias",
+ "tab_settings": "Configuración",
+ "tab_visibility": "Visibilidad",
+ "type": "Tipo de vista",
+ "types": {
+ "masonry": "Mampostería (predeterminado)",
+ "panel": "Panel (1 tarjeta)",
+ "sidebar": "Barra lateral"
+ },
+ "visibility": {
+ "select_users": "Selecciona qué usuarios deberían ver esta vista en la navegación"
+ }
+ },
+ "header": "Editar la interfaz de usuario",
+ "header-footer": {
+ "choose_header_footer": "Elige un {type}",
+ "footer": "Pie de página",
+ "header": "Encabezado",
+ "types": {
+ "buttons": {
+ "name": "Botones"
+ },
+ "graph": {
+ "name": "Gráfico"
+ },
+ "picture": {
+ "name": "Imagen"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Administrar paneles de control",
+ "manage_resources": "Administrar recursos",
+ "open": "Abrir el menú de la IU Lovelace",
+ "raw_editor": "Editor de configuración en bruto"
+ },
+ "migrate": {
+ "header": "Configuración incompatible",
+ "migrate": "Migrar configuración",
+ "para_migrate": "Home Assistant puede añadir IDs a todas tus tarjetas y vistas automáticamente pulsando el botón 'Migrar configuración'.",
+ "para_no_id": "Este elemento no tiene un ID. Por favor añade uno a este elemento en 'ui-lovelace.yaml'."
+ },
+ "move_card": {
+ "header": "Elige una vista hacia la que mover la tarjeta"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Generaremos automáticamente tus vistas de la IU Lovelace con tus áreas y dispositivos si eliminas tu configuración de Lovelace.",
+ "confirm_remove_config_title": "¿Estás seguro de que deseas eliminar tu configuración de la IU Lovelace?",
+ "confirm_unsaved_changes": "Tienes cambios sin guardar, ¿estás seguro de que quieres salir?",
+ "confirm_unsaved_comments": "Es posible que tu configuración contenga comentarios, estos no se guardarán. ¿Quieres continuar?",
+ "error_invalid_config": "Tu configuración no es válida: {error}",
+ "error_parse_yaml": "No se puede analizar YAML: {error}",
+ "error_remove": "No se puede eliminar la configuración: {error}",
+ "error_save_yaml": "No se puede guardar YAML: {error}",
+ "header": "Editar configuración",
+ "lovelace_changed": "La configuración de Lovelace se actualizó, ¿deseas cargar la configuración actualizada en el editor y perder tus cambios actuales?",
+ "reload": "Recargar",
+ "resources_moved": "Los recursos ya no se deben agregar a la configuración de Lovelace, sino que se pueden agregar en el panel de configuración de Lovelace.",
+ "save": "Guardar",
+ "saved": "Guardado",
+ "unsaved_changes": "Cambios no guardados"
+ },
+ "save_config": {
+ "close": "Cerrar",
+ "empty_config": "Empezar con un panel de control vacío",
+ "header": "Tomar el control de la interfaz de usuario Lovelace",
+ "para": "Este panel de control está siendo mantenido actualmente por Home Assistant. Se actualiza automáticamente cada vez que nuevas entidades o componentes de la IU Lovelace están disponibles. Si asumes el control, este panel de control ya no se actualizará automáticamente. Siempre podrás crear un nuevo panel de control en la configuración con el que jugar.",
+ "para_sure": "¿Estás seguro de que quieres tomar el control de tu interfaz de usuario?",
+ "save": "Tomar el control",
+ "yaml_config": "Para ayudarte a empezar aquí está la configuración actual de este panel:",
+ "yaml_control": "Para tomar el control en modo YAML, crea un archivo YAML con el nombre que especificaste en la configuración para este panel de control, o el valor predeterminado 'ui-lovelace.yaml'.",
+ "yaml_mode": "Estás utilizando el modo YAML para este panel de control, lo que significa que no puedes cambiar la configuración de Lovelace desde la IU. Si quieres gestionar este panel de control desde la IU, elimina 'mode: yaml' de la configuración de Lovelace en 'configuration.yaml.'"
+ },
+ "select_view": {
+ "dashboard_label": "Panel de control",
+ "header": "Elige una vista",
+ "views_label": "Vista"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Editor de pie de página",
+ "header": "Editor de encabezado",
+ "row": "Editor de filas de entidades"
+ }
+ },
+ "suggest_card": {
+ "add": "Añadir a la IU Lovelace",
+ "create_own": "Elige una tarjeta diferente",
+ "header": "Hemos creado una sugerencia para ti"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Esta vista contiene más de una tarjeta, pero una vista de panel solo puede mostrar 1 tarjeta."
+ }
+ }
+ },
+ "menu": {
+ "close": "Cerrar",
+ "configure_ui": "Editar panel de control",
+ "exit_edit_mode": "Hecho",
+ "help": "Ayuda",
+ "reload_resources": "Recargar recursos",
+ "start_conversation": "Iniciar conversación"
+ },
+ "reload_lovelace": "Recargar la IU Lovelace",
+ "reload_resources": {
+ "refresh_body": "Tienes que actualizar la página para completar la recarga. ¿Deseas actualizar ahora?",
+ "refresh_header": "¿Quieres actualizar?"
+ },
+ "unused_entities": {
+ "available_entities": "Estas son las entidades que tienes disponibles, pero aún no están en la interfaz de usuario de Lovelace.",
+ "domain": "Dominio",
+ "entity": "Entidad",
+ "entity_id": "ID de entidad",
+ "last_changed": "Última modificación",
+ "no_data": "No se han encontrado entidades sin utilizar",
+ "search": "Buscar entidades",
+ "select_to_add": "Selecciona las entidades que quieres añadir a una tarjeta y, a continuación, haz clic en el botón Añadir tarjeta.",
+ "title": "Entidades no utilizadas"
+ },
+ "views": {
+ "confirm_delete": "¿Eliminar vista?",
+ "confirm_delete_existing_cards": "Al eliminar esta vista también se eliminarán las tarjetas",
+ "confirm_delete_existing_cards_text": "¿Estás seguro de que deseas eliminar tu vista ''{name}''? La vista contiene {number} tarjetas que se eliminarán. Esta acción no se puede deshacer.",
+ "confirm_delete_text": "¿Estás seguro de que deseas eliminar tu vista ''{name}''?"
+ },
+ "warning": {
+ "attribute_not_found": "El atributo {attribute} no está disponible en: {entity}",
+ "entity_non_numeric": "La entidad no es numérica: {entity}",
+ "entity_not_found": "La entidad no está disponible: {entity}",
+ "entity_unavailable": "La entidad no está disponible actualmente: {entity}",
+ "starting": "Home Assistant se está iniciando, puede que no todo esté disponible todavía"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Eliminar",
+ "delete_prompt": "¿Eliminar este mensaje?",
+ "empty": "No tienes ningún mensaje",
+ "playback_title": "Reproducción de mensajes"
+ },
+ "map": {
+ "edit_zones": "Editar zonas"
+ },
+ "my": {
+ "component_not_loaded": "Esta redirección no es compatible con tu instancia de Home Assistant. Necesitas la integración {integration} para usar este redireccionamiento.",
+ "documentation": "documentación",
+ "error": "Se ha producido un error desconocido",
+ "faq_link": "Preguntas frecuentes sobre mi Home Assistant",
+ "no_supervisor": "Esta redirección no es compatible con tu instalación de Home Assistant. Necesita el sistema operativo Home Assistant o el método de instalación de Home Assistant supervisado. Para obtener más información, consulta el {docs_link} .",
+ "not_supported": "Esta redirección no es compatible con tu instancia de Home Assistant. Consulta el {link} para conocer las redirecciones admitidas y la versión en la que se introdujeron."
+ },
+ "page-authorize": {
+ "abort_intro": "Inicio de sesión cancelado",
+ "authorizing_client": "Estás a punto de dar acceso a {clientId} a tu instancia de Home Assistant.",
+ "form": {
+ "error": "Error: {error}",
+ "next": "Inicio de sesión",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "La sesión ha caducado, por favor inicia sesión de nuevo."
+ },
+ "error": {
+ "invalid_auth": "Nombre de usuario o contraseña inválidos",
+ "invalid_code": "Código de autenticación inválido"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Contraseña",
+ "username": "Nombre de usuario"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Código de autenticación de dos factores"
+ },
+ "description": "Abre el **{mfa_module_name}** en tu dispositivo para ver tu código de autenticación de dos factores y verificar tu identidad:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "La sesión ha caducado, por favor inicia sesión de nuevo."
+ },
+ "error": {
+ "invalid_auth": "Nombre de usuario o contraseña inválidos",
+ "invalid_code": "Código de autenticación inválido"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Contraseña",
+ "username": "Nombre de usuario"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Código de autenticación de dos factores"
+ },
+ "description": "Abre el **{mfa_module_name}** en tu dispositivo para ver tu código de autenticación de dos factores y verificar tu identidad:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "La sesión ha caducado, por favor inicia sesión de nuevo.",
+ "no_api_password_set": "No tienes una contraseña de API configurada."
+ },
+ "error": {
+ "invalid_auth": "Contraseña de API inválida",
+ "invalid_code": "Código de autenticación inválido"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Contraseña de API"
+ },
+ "description": "Introduce la contraseña de la API en tu configuración HTTP:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Código de autenticación de dos factores"
+ },
+ "description": "Abra el ** {mfa_module_name} ** en su dispositivo para ver su código de autenticación de dos factores y verificar su identidad:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Tu equipo no está permitido."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Usuario"
+ },
+ "description": "Elige el usuario con el que quieres iniciar sesión:"
+ }
+ }
+ }
+ },
+ "start_over": "Empezar de nuevo",
+ "unknown_error": "Algo salió mal",
+ "working": "Por favor, espere"
+ },
+ "initializing": "Inicializando",
+ "logging_in_to_with": "Iniciando sesión en **{locationName}** mediante **{authProviderName}**.",
+ "logging_in_with": "Iniciando sesión con **{authProviderName}**.",
+ "pick_auth_provider": "O inicia sesión con",
+ "store_token": "Mantenerme conectado"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "por {name}",
+ "introduction": "¡Bienvenido a casa! Has llegado a la demostración de Home Assistant donde mostramos las mejores interfaces de usuario creadas por nuestra comunidad.",
+ "learn_more": "Saber más sobre Home Assistant",
+ "next_demo": "Siguiente demostración"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Actividad",
+ "air": "Aire",
+ "commute_home": "Viaje a casa",
+ "entertainment": "Entretenimiento",
+ "hdmi_input": "Entrada HDMI",
+ "hdmi_switcher": "Conmutador HDMI",
+ "information": "Información",
+ "lights": "Luces",
+ "morning_commute": "Ida al trabajo",
+ "total_tv_time": "Tiempo total de TV",
+ "turn_tv_off": "Apagar la televisión",
+ "volume": "Volumen"
+ },
+ "names": {
+ "family_room": "Salón",
+ "hallway": "Pasillo",
+ "kitchen": "Cocina",
+ "left": "Izquierda",
+ "master_bedroom": "Dormitorio principal",
+ "mirror": "Espejo",
+ "patio": "Patio",
+ "right": "Derecha",
+ "temperature_study": "Estudio de temperatura",
+ "upstairs": "Piso de arriba"
+ },
+ "unit": {
+ "minutes_abbr": "min",
+ "watching": "viendo"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Siguiente"
+ },
+ "core-config": {
+ "button_detect": "Detectar",
+ "finish": "Siguiente",
+ "intro": "Hola {name}, bienvenido a Home Assistant. ¿Cómo te gustaría llamar a tu casa?",
+ "intro_location": "Nos gustaría saber dónde vives. Esta información ayudará a mostrar información y a configurar automatizaciones basadas en el sol. Estos datos nunca se comparten fuera de tu red.",
+ "intro_location_detect": "Podemos ayudarte a completar esta información haciendo una solicitud única a un servicio externo.",
+ "location_name": "Nombre de tu instalación de Home Assistant",
+ "location_name_default": "Casa"
+ },
+ "finish": "Terminar",
+ "integration": {
+ "finish": "Terminar",
+ "intro": "Los dispositivos y servicios están representados en Home Assistant como integraciones. Puedes configurarlos ahora, o hacerlo más tarde desde la pantalla de configuración.",
+ "more_integrations": "Más"
+ },
+ "intro": "¿Estás listo para despertar tu casa, reclamar tu privacidad y unirte a una comunidad mundial de pensadores?",
+ "next": "Siguiente",
+ "restore": {
+ "addons": "Complementos",
+ "confirm_password": "Confirma la contraseña de la copia de seguridad",
+ "description": "Alternativamente, puedes restaurar desde una copia de seguridad anterior.",
+ "folders": "Carpetas",
+ "full_backup": "Copia de seguridad completa",
+ "hide_log": "Ocultar registro completo",
+ "in_progress": "Restauración en curso",
+ "partial_backup": "Copia de seguridad parcial",
+ "password": "Contraseña de la copia de seguridad",
+ "password_protection": "Protección con contraseña",
+ "select_type": "Selecciona qué restaurar",
+ "show_log": "Mostrar registro completo",
+ "type": "Tipo de copia de seguridad"
+ },
+ "user": {
+ "create_account": "Crear una cuenta",
+ "data": {
+ "name": "Nombre",
+ "password": "Contraseña",
+ "password_confirm": "Confirmar contraseña",
+ "username": "Nombre de usuario"
+ },
+ "error": {
+ "password_not_match": "Las contraseñas no coinciden",
+ "required_fields": "Completa todos los campos requeridos"
+ },
+ "intro": "Comencemos creando una cuenta de usuario.",
+ "required_field": "Obligatorio"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Desbloquea las funciones avanzadas.",
+ "link_promo": "Saber más",
+ "title": "Modo avanzado"
+ },
+ "change_password": {
+ "confirm_new_password": "Confirmar nueva contraseña",
+ "current_password": "Contraseña actual",
+ "error_new_is_old": "La nueva contraseña debe ser diferente a la contraseña actual",
+ "error_new_mismatch": "Los nuevos valores de contraseña introducidos no coinciden",
+ "error_required": "Obligatorio",
+ "header": "Cambiar contraseña",
+ "new_password": "Nueva contraseña",
+ "submit": "Enviar",
+ "success": "Contraseña cambiada con éxito"
+ },
+ "current_user": "Has iniciado sesión como {fullName}.",
+ "customize_sidebar": {
+ "button": "Editar",
+ "description": "También puedes mantener pulsada la cabecera de la barra lateral para activar el modo de edición.",
+ "header": "Cambiar el orden y ocultar elementos de la barra lateral"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Resumen (predeterminado)",
+ "description": "Selecciona un panel de control predeterminado para este dispositivo.",
+ "dropdown_label": "Panel de control",
+ "header": "Panel de control"
+ },
+ "enable_shortcuts": {
+ "description": "Habilita o deshabilita los atajos de teclado para realizar varias acciones en la interfaz de usuario.",
+ "header": "Atajos de teclado"
+ },
+ "force_narrow": {
+ "description": "Esto ocultará la barra lateral de forma predeterminada, similar a la experiencia móvil.",
+ "header": "Ocultar siempre la barra lateral"
+ },
+ "is_owner": "Eres propietario.",
+ "language": {
+ "dropdown_label": "Idioma",
+ "header": "Idioma",
+ "link_promo": "Ayuda a traducir"
+ },
+ "logout": "Cerrar sesión",
+ "logout_text": "¿Estás seguro de que quieres cerrar la sesión?",
+ "logout_title": "¿Cerrar sesión?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "¿Estás seguro de que quieres eliminar el token de acceso para {name}?",
+ "create": "Crear Token",
+ "create_failed": "No se ha podido crear el token de acceso.",
+ "created": "Creado {date}",
+ "delete_failed": "Error al eliminar el token de acceso.",
+ "description": "Crea tokens de acceso de larga duración para permitir que tus scripts interactúen con tu instancia de Home Assistant. Cada token será válido por 10 años desde la creación. Los siguientes tokens de acceso de larga duración están actualmente activos.",
+ "empty_state": "Aún no tienes tokens de acceso de larga duración.",
+ "header": "Tokens de acceso de larga duración",
+ "learn_auth_requests": "Aprende cómo realizar solicitudes autenticadas.",
+ "name": "Nombre",
+ "prompt_copy_token": "Copia tu token de acceso. No se mostrará de nuevo.",
+ "prompt_name": "Dale un nombre al token"
+ },
+ "mfa": {
+ "confirm_disable": "¿Estás seguro de que deseas deshabilitar {name}?",
+ "disable": "Deshabilitar",
+ "enable": "Activar",
+ "header": "Módulos de autenticación multifactor"
+ },
+ "mfa_setup": {
+ "close": "Cerrar",
+ "step_done": "Configuración realizada para {step}",
+ "submit": "Enviar",
+ "title_aborted": "Abortado",
+ "title_success": "¡Éxito!"
+ },
+ "number_format": {
+ "description": "Elige cómo se muestran los números.",
+ "dropdown_label": "Formato numérico",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Automático (utilizar la configuración del idioma)",
+ "none": "Ninguno",
+ "space_comma": "1 234 567,89",
+ "system": "Utilizar la configuración regional del sistema"
+ },
+ "header": "Formato numérico"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Nombre del dispositivo",
+ "title": "¿Cómo debería llamarse este dispositivo?"
+ },
+ "description": "Enviar notificaciones a este dispositivo",
+ "error_load_platform": "Configurar notify.html5.",
+ "error_use_https": "Requiere SSL activado para frontend.",
+ "header": "Notificaciones push",
+ "link_promo": "Saber más",
+ "push_notifications": "Notificaciones push"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "¿Estás seguro de que quieres eliminar el token de actualización para {name}?",
+ "created_at": "Creado {date}",
+ "current_token_tooltip": "No se puede eliminar el token actual",
+ "delete_failed": "Error al eliminar el token de acceso.",
+ "description": "Cada token de actualización representa un acceso de sesión. Los tokens de actualización se eliminarán automáticamente al cerrar la sesión. Los siguientes tokens de actualización están actualmente activos para tu cuenta.",
+ "header": "Actualizar tokens",
+ "last_used": "Último uso {date} desde {location}",
+ "not_used": "Nunca ha sido usado",
+ "token_title": "Actualizar token para {clientId}"
+ },
+ "suspend": {
+ "description": "¿Deberíamos cerrar la conexión con el servidor después de estar oculto durante 5 minutos?",
+ "header": "Cerrar automáticamente la conexión"
+ },
+ "themes": {
+ "accent_color": "Color de acento",
+ "dark_mode": {
+ "auto": "Automático",
+ "dark": "Oscuro",
+ "light": "Claro"
+ },
+ "dropdown_label": "Tema",
+ "error_no_theme": "No hay temas disponibles",
+ "header": "Tema",
+ "link_promo": "Aprende sobre los temas",
+ "primary_color": "Color primario",
+ "reset": "Reiniciar"
+ },
+ "time_format": {
+ "description": "Elige cómo se muestra la hora.",
+ "dropdown_label": "Formato de hora",
+ "formats": {
+ "12": "12 horas (AM/PM)",
+ "24": "24 horas",
+ "language": "Automático (utilizar la configuración del idioma)",
+ "system": "Utilizar la configuración regional del sistema"
+ },
+ "header": "Formato de hora"
+ },
+ "vibrate": {
+ "description": "Activar o deshabilitar la vibración en este dispositivo al controlar dispositivos.",
+ "header": "Vibrar"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Iniciar conversación"
+ }
+ },
+ "sidebar": {
+ "done": "Hecho",
+ "external_app_configuration": "Configuración de la aplicación",
+ "hide_panel": "Ocultar panel",
+ "show_panel": "Mostrar panel",
+ "sidebar_toggle": "Alternar barra lateral"
+ }
+ }
+}
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/et.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/et.json
new file mode 100644
index 00000000..e2e13f58
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/et.json
@@ -0,0 +1,4673 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Seade kanne",
+ "device": "Seade",
+ "integration": "Sidumine",
+ "user": "Kasutaja"
+ }
+ },
+ "groups": {
+ "owner": "Omanik",
+ "system-admin": "Administraatorid",
+ "system-read-only": "Ainult lugemisõigusega kasutajad",
+ "system-users": "Kasutajad"
+ },
+ "panel": {
+ "calendar": "Kalender",
+ "config": "Seaded",
+ "developer_tools": "Arendaja tööriistad",
+ "energy": "Energia",
+ "history": "Ajalugu",
+ "logbook": "Logi",
+ "mailbox": "Postkast",
+ "map": "Kaart",
+ "media_browser": "Meediamängija",
+ "profile": "Profiil",
+ "shopping_list": "Ostunimekiri",
+ "states": "Ülevaade"
+ },
+ "state": {
+ "default": {
+ "off": "Väljas",
+ "on": "Sees",
+ "unavailable": "Kadunud",
+ "unknown": "Teadmata"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Automaatne",
+ "off": "Väljas",
+ "on": "Sees"
+ },
+ "hvac_action": {
+ "cooling": "Jahutamine",
+ "drying": "Kuivatamine",
+ "fan": "Ventilaator",
+ "heating": "Küte",
+ "idle": "Ootel",
+ "off": "Väljas"
+ },
+ "preset_mode": {
+ "activity": "Tegevus",
+ "away": "Eemal",
+ "boost": "Suurenda",
+ "comfort": "Mugavus",
+ "eco": "Öko",
+ "home": "Kodus",
+ "none": "Puudub",
+ "sleep": "Uinuv"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Automaatne",
+ "away": "Eemal",
+ "baby": "Imik",
+ "boost": "Turbo",
+ "comfort": "Mugavus",
+ "eco": "Öko",
+ "home": "Kodus",
+ "normal": "Tavaline",
+ "sleep": "Uinuv"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Valves",
+ "armed_away": "Valves",
+ "armed_custom_bypass": "Valves",
+ "armed_home": "Valves",
+ "armed_night": "Valves",
+ "armed_vacation": "Valvestatud",
+ "arming": "Valvestab",
+ "disarmed": "Maas",
+ "disarming": "Maas...",
+ "pending": "Ootel",
+ "triggered": "Häire"
+ },
+ "default": {
+ "entity_not_found": "Olemit ei leitud",
+ "error": "Viga",
+ "unavailable": "Kadunud",
+ "unknown": "?"
+ },
+ "device_tracker": {
+ "home": "Kodus",
+ "not_home": "Eemal"
+ },
+ "person": {
+ "home": "Kodus",
+ "not_home": "Eemal"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Vaikimisi",
+ "header": "Heli",
+ "input": "Sisend",
+ "output": "Väljund"
+ },
+ "network": {
+ "container": "Konteiner",
+ "disabled": "Keelatud",
+ "header": "Võrk",
+ "host": "Host"
+ },
+ "no_configuration": "See lisandmoodul ei avalda sätteid millega jamada…",
+ "options": {
+ "edit_in_ui": "Redigeeri kasutajaliideses",
+ "edit_in_yaml": "Redigeeri YAML-ina",
+ "header": "Valikud",
+ "invalid_yaml": "Sobimatu YAML",
+ "show_unused_optional": "Kuva kasutamata valikulised seadistussuvandid"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Lisandmooduli muudatuste logi hankimine nurjus",
+ "go_to_config": "Muuda seadeid",
+ "install": "Lisandmooduli paigaldamine nurjus",
+ "restart": "Lisandmooduli taaskäivitamine nurjus",
+ "start": "Lisandmooduli käivitamine nurjus",
+ "start_invalid_config": "Mine sätetesse",
+ "stop": "Lisandmooduli peatamine nurjus",
+ "uninstall": "Lisandmooduli eemaldamine nurjus",
+ "validate_config": "Lisandmooduli sätete kontroll nurjus"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor ('Application Armor') on Linuxi tuuma turvamoodul, mis piirab lisandmoodulite võimalusi, näiteks võrgule juurdepääsu, otsest võgupesa juurdepääsu ja konkreetseid faile lugeda, kirjutada või käivitada. \n\n Pistikprogrammi autorid võivad esitada oma turvaprofiilid, mis on lisandmooduli jaoks optimeeritud, või taotleda selle keelamist. Kui AppArmor on keelatud, tekitab see turvariske ja seetõttu mõjutab see lisandmooduli turbeskoori negatiivselt.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "Lisandmoodul võib kasutajaid Home Assistanti abil autentida, võimaldades lisandmoodulitel anda kasutajatele võimaluse sisse logida lisandmoodulites töötavatesse rakendustesse, kasutades nende Home Assistanti kasutajanime / parooli. See märk näitab, kas lisandmooduli autor seda võimalust taotleb.",
+ "title": "Home Assistanti autentimine"
+ },
+ "docker_api": {
+ "description": "Lisandmooduli autor on taotlenud lisandmoodulilt haldusjuurdepääsu teie süsteemis töötavale Dockeri eksemplarile. See režiim annab lisandmoodulile täieliku juurdepääsu ja kontrolli kogu Home Assistanti süsteemile, mis lisab turvariske ja võib väärkasutamisel teie süsteemi kahjustada. Seetõttu mõjutab see funktsioon lisandmooduli turvaskoori negatiivselt.\n\nSeda juurdepääsutaset ei anta automaatselt ja pead selle kinnitama. Selleks pead lisandmooduli kaitserežiimi käsitsi keelama. Keela kaitserežiim ainult siis, kui tead, vajad ja usaldad selle lisandmooduli allikat.",
+ "title": "Täielik juurdepääs Dockerile"
+ },
+ "full_access": {
+ "description": "Lisandmoodulile antakse lisandmooduli autori taotlusel täielik juurdepääs süsteemi riistvarale. Juurdepääs on võrreldav Dockeri privilegeeritud režiimiga. Kuna see avab võimalikud turvariskid, mõjutab see funktsioon lisandmooduli turvaskoori negatiivselt.\n\nSeda juurdepääsutaset ei anta automaatselt ja pead selle kinnitama. Selleks pead lisandmooduli kaitserežiimi käsitsi keelama. Keela kaitserežiim ainult siis, kui tead, vajad ja usaldad selle lisandmooduli allikat.",
+ "title": "Täielik juurdepääs riistvarale"
+ },
+ "hassio_api": {
+ "description": "Lisandmoodulile anti juurdepääs Supervisori API-le lisandmooduli autori taotlusel. Vaikimisi saab lisandmoodul juurdepääsu süsteemi üldisele versiooniteabele. Kui pistikprogramm taotleb API-le juurdepääsu halduri või administraatori tasemel, saab see juurdepääsu Home Assistanti süsteemi mitme osa juhtimiseks. See luba on tähistatud selle märgiga ja see mõjutab pistikprogrammi turvaskoori negatiivselt.",
+ "title": "Supervisori API juurdepääs"
+ },
+ "homeassistant_api": {
+ "description": "Sellel lisandmoodulil on juurdepääs töötavale koduabilise eksemplarile otse Home Assistanti API kaudu. See režiim tegeleb ka lisandmooduli autentimisega, mis võimaldab lisandmoodulil Home Assistantiga suhelda, ilma et oleks vaja täiendavaid autentimisvõtmeid.",
+ "title": "Home Assistant API ligipääs"
+ },
+ "host_network": {
+ "description": "Lisandmoodulid töötavad tavaliselt oma isoleeritud võrgukihis, mis takistab neil juurdepääsu hosti operatsioonisüsteemi võrgule. Mõnel juhul võib see võrguisolatsioon piirata lisandmooduleid nende teenuste pakkumisel ja seetõttu saab lisandmooduli autor isolatsiooni tühistada, andes lisandmoodulile täieliku juurdepääsu hostimasina võrgu võimalustele. See annab lisandmoodulile rohkem võrguvõimalusi, kuid vähendab turvalisust, seega langeb lisandmooduli turvahinnang, kui lisandmoodul seda võimalust kasutab.",
+ "title": "Hosti võrk"
+ },
+ "host_pid": {
+ "description": "Tavaliselt on lisandmooduli protsessid isoleeritud kõigist teistest süsteemiprotsessidest. Lisandmooduli autor on taotlenud lisandmooduli juurdepääsu hostisüsteemi eksemplaris töötavatele süsteemiprotsessidele ja lubama lisandmoodulit ka hostisüsteemi kudemisprotsessidele. See režiim annab lisandmoodulile täieliku juurdepääsu ja kontrolli kogu Home Assistanti süsteemile, mis lisab turvariske ja võib väärkasutamisel teie süsteemi kahjustada. Seetõttu mõjutab see funktsioon lisandmooduli turvaskoori negatiivselt.\n\nSeda juurdepääsutaset ei anta automaatselt ja pead selle kinnitama. Selleks pead lisandmooduli kaitserežiimi käsitsi keelama. Keela kaitserežiim ainult siis, kui tead, vajad ja usaldad selle lisandmooduli allikat.",
+ "title": "Hostiprotsesside nimeruum"
+ },
+ "ingress": {
+ "description": "See lisandmoodul kasutab Ingressi, et manustada oma liides turvaliselt Home Assistanti.",
+ "title": "Ingress"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "auth",
+ "core": "Core",
+ "docker": "docker",
+ "hardware": "riistvara",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "host",
+ "host_pid": "hosti pid",
+ "ingress": "ingress",
+ "rating": "hinnang",
+ "stage": "järk"
+ },
+ "rating": {
+ "description": "Home Assistant annab igale lisandmoodulile turvaklassi, mis näitab selle lisandmooduli kasutamisega seotud riske. Mida rohkem lisandmoodul vajab süsteemile juurdepääsu, seda väiksem on skoor, suurendades seeläbi võimalikke turvariske. \n\nHinne on skaalal 1 kuni 6. Kus 1 on madalaim tulemus (peetakse kõige ebaturvalisemaks ja kõige suuremaks riskiks) ja 6 on kõige suurem tulemus (peetakse kõige turvalisemaks ja madalaimaks riskiks).",
+ "title": "Lisandmooduli turbehinnang"
+ },
+ "role": {
+ "admin": "admin",
+ "backup": "varundus",
+ "default": "vaikimisi",
+ "homeassistant": "homeassistant",
+ "manager": "haldur"
+ },
+ "stage": {
+ "description": "Lisandmoodulitel võib olla üks kolmest järgust: \n\n {icon_stable} ** Stabiilne **: need on kasutamiseks valmis lisandmoodulid. \n\n {icon_experimental} ** Eksperimentaalne **: need võivad sisaldada vigu ja võivad olla lõpetamata. \n\n {icon_deprecated} ** Katkestatud **: need lisandmoodulid ei saa enam värskendusi.",
+ "title": "Lisandmooduli järk"
+ },
+ "stages": {
+ "deprecated": "Aegunud",
+ "experimental": "Eksperimentaalne"
+ }
+ },
+ "changelog": "Muudatuste nimekiri",
+ "cpu_usage": "Lisandmooduli protsessori kasutus",
+ "hostname": "Hostinimi",
+ "install": "paigalda",
+ "new_update_available": "{name} {version} on saadaval",
+ "not_available_arch": "See lisandmoodul ei ühildu seadme protsessoriga ega seadmesse installitud operatsioonisüsteemiga.",
+ "not_available_version": "Kasutad Home Assistanti {core_version_installed}. Selle lisandmooduli versiooni värskendamiseks vajad vähemalt Home Assistanti {core_version_needed}",
+ "open_web_ui": "Ava veebiliides",
+ "option": {
+ "auto_update": {
+ "description": "Lisandmooduli automaatne uuendamine kui uus versioon on saadaval",
+ "title": "Automaatne värskendamine"
+ },
+ "boot": {
+ "description": "Lisandmooduli käivitamine süsteemi käivitamise ajal",
+ "title": "Käivita alglaadimisel"
+ },
+ "ingress_panel": {
+ "description": "Lisa see lisandmoodul külgribale",
+ "title": "Kuva külgribal"
+ },
+ "protected": {
+ "description": "Blokeerib laiendatud süsteemijuurdepääsu lisandmoodulist",
+ "title": "Kaitserežiim"
+ },
+ "watchdog": {
+ "description": "See käivitab lisandmooduli kokkujooksmisel",
+ "title": "Valvetaimer"
+ }
+ },
+ "protection_mode": {
+ "content": "Selle lisandmooduli kaitserežiim on keelatud! See annab lisandmoodulile täieliku juurdepääsu kogu süsteemile, mis lisab turvariske ja võib valesti kasutamisel süsteemi kahjustada. Keela kaitserežiim ainult siis, kui tead, vajad ja usaldad selle lisandmooduli allikat.",
+ "enable": "Luba",
+ "title": "Kaitserežiim on keelatud!"
+ },
+ "ram_usage": "Lisandmooduli RAM-i kasutus",
+ "rebuild": "taasloo",
+ "restart": "taaskäivita",
+ "start": "käivita",
+ "stop": "peata",
+ "uninstall": "eemalda",
+ "visit_addon_page": "Täiendavate detailide saamiseks külasta lehte {name}"
+ },
+ "documentation": {
+ "get_documentation": "Lisandmooduli dokumentatsiooni hankimine nurjus, {error}"
+ },
+ "failed_to_reset": "Lisandmooduli sätete lähtestamine nurjus, {error}",
+ "failed_to_save": "Lisandmooduli sätete salvestamine nurjus, {error}",
+ "logs": {
+ "get_logs": "Lisandmoodulite logide hankimine nurjus, {error}"
+ },
+ "panel": {
+ "configuration": "Seaded",
+ "documentation": "Dokumentatsioon",
+ "info": "Info",
+ "log": "Logikirjed"
+ },
+ "state": {
+ "installed": "Lisandmoodul on paigaldatud",
+ "not_available": "Lisandmoodul pole antud süsteemile saadaval",
+ "not_installed": "Lisandmoodulit pole paigaldatud"
+ }
+ },
+ "backup": {
+ "addons": "Lisandmoodulid",
+ "confirm_password": "Varukoopia salasõna kinnitamine",
+ "could_not_create": "Varukoopia loomine nurjus",
+ "create": "Loo",
+ "create_backup": "Loo varukoopia",
+ "create_blocked_not_running": "Varukoopia loomine pole praegu võimalik kuna süsteem on olekus {state}.",
+ "created": "Loodud",
+ "delete_backup_confirm": "kustuta",
+ "delete_backup_text": "Kas soovid kustutada {number} {number, plural,\n one {varukoopia}\n other {varukoopiat}\n}?",
+ "delete_backup_title": "Kustuta varukoopia",
+ "delete_selected": "Kustuta valitud varukoopiad",
+ "download_backup": "Varukoopia allalaadimine",
+ "enter_password": "Sisesta salasõna.",
+ "failed_to_delete": "Kustutamine nurjus",
+ "folders": "Kaustad",
+ "full_backup": "Täielik varukoopia",
+ "name": "Varukoopia nimi",
+ "no_backups": "Sul pole veel ühtegi varukoopiat.",
+ "partial_backup": "Osaline varukoopia",
+ "password": "Varukoopia salasõna",
+ "password_protection": "Salasõnaga kaitstud",
+ "passwords_not_matching": "Salasõnad ei ühti",
+ "select_type": "Vali mida taastada",
+ "selected": "{number} valitud",
+ "size": "Suurus",
+ "type": "Varukoopia tüüp",
+ "upload_backup": "Varukoopia üleslaadimine"
+ },
+ "common": {
+ "cancel": "Loobu",
+ "close": "Sulge",
+ "description": "Kirjeldus",
+ "error": {
+ "unknown": "Tundmatu viga",
+ "update_failed": "Värskendamine nurjus"
+ },
+ "failed_to_restart_name": "Üksuse {name} taaskäivitamine nurjus",
+ "failed_to_update_name": "Üksuse {name} värskendamine nurjus",
+ "learn_more": "Lisateave",
+ "menu": "Menüü",
+ "new_version_available": "Uus versioon on saadaval",
+ "newest_version": "Uusim versioon",
+ "no": "Ei",
+ "refresh": "värskenda",
+ "release_notes": "Väljalaske teave",
+ "reload": "Taaslae",
+ "reset_defaults": "Lähtesta vaikeväärtustele",
+ "reset_options": "Lähtesta suvandid",
+ "restart": "Taaskäivita",
+ "restart_name": "Taaskäivita {name}",
+ "review": "ülevaade",
+ "running_version": "Kasutad praegu versiooni {version}",
+ "save": "Salvesta",
+ "show": "kuva",
+ "show_more": "Kuva selle kohta rohkem teavet",
+ "update": "Uuenda",
+ "update_available": "{count, plural,\n one {uuendus}\n other {{count} uuendust}\n} on saadaval",
+ "version": "Versioon",
+ "yes": "Jah"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Kas soovid kindlasti kõik oma valikud lähtestada?",
+ "title": "Lähtesta suvandid"
+ },
+ "restart": {
+ "text": "Kas olete kindel, et soovid rakenduse {name} taaskäivitada?",
+ "title": "taaskäivita"
+ },
+ "update": {
+ "text": "Kas soovid kindlasti värskendada {name} versioonile {version}?",
+ "title": "Uuenda {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Uus versioon on saadaval",
+ "addon_running": "Lisandmoodul töötab",
+ "addon_stopped": "Lisandmoodul on peatatud",
+ "addons": "Paigaldatud lisandmoodulid",
+ "no_addons": "Ühtegi lisandmoodulit pole veel paigaldatud. Alustamiseks mine lisandmoodulite hoidlasse!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Loobu",
+ "description": "Kasutad praegu \"{current_path}\". Andmeketaste teisaldamine taaskäivitab seadme ja selleks kulub hinnanguliselt {time} minutit. Home Assistant ei ole sel perioodil juurdepääsetav. Ära eemalda toiteallikat andmete liigutamise ajal!",
+ "loading_devices": "Seadmete laadimine",
+ "move": "Liiguta",
+ "moving": "Andmeketta teisaldamine",
+ "moving_desc": "Taaskäivitamine ja andmeketta teisaldamine. Palun ole kannatlik",
+ "no_devices": "Sobivaid ühendatud seadmeid ei leitud",
+ "select_device": "Vali uus andmeketas",
+ "title": "Teisalda andmeketas"
+ },
+ "hardware": {
+ "attributes": "Atribuudid",
+ "device_path": "Seadme asukoht",
+ "id": "ID",
+ "search": "Otsi riistvara",
+ "subsystem": "Alamsüsteem",
+ "title": "Riistvara"
+ },
+ "network": {
+ "connected_to": "Ühendatud pääsupunktiga {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Keelatud",
+ "dns_servers": "DNS serverid",
+ "failed_to_change": "Võrgusätete muutmine nurjus",
+ "gateway": "Lüüsi aadress",
+ "ip_netmask": "IP-aadress / võrgumask",
+ "open": "Avatud",
+ "scan_ap": "Otsi pääsupunkte",
+ "static": "Staatiline",
+ "title": "Võrgu sätted",
+ "unsaved": "Muudatused on salvestamata. Need lähevad kaotsi kui vahetad vahelehte. Kas soovid jätkata?",
+ "warning": "Kui muudad WiFi, IP või lüüsi aadressi võib ühendus katkeda!",
+ "wep": "WEP",
+ "wpa": "wpa-psk"
+ },
+ "registries": {
+ "add_new_registry": "Lisa uus register",
+ "add_registry": "Lisa register",
+ "failed_to_add": "Registri lisamine nurjus",
+ "failed_to_remove": "Registri eemaldamine nurjus",
+ "no_registries": "Ühtegi registrit pole seadistatud",
+ "password": "Salasõna",
+ "registry": "Register",
+ "remove": "Eemalda",
+ "title_add": "Lisa uus konteineri register",
+ "title_manage": "Konteineri registrite haldamine",
+ "username": "Kasutajanimi"
+ },
+ "repositories": {
+ "add": "Lisa",
+ "remove": "Eemalda",
+ "title": "Halda lisandmoodulite hoidlaid",
+ "used": "Hoidla on paigaldatud lisade jaoks kasutusel ja seda ei saa eemaldada."
+ },
+ "restart_addon": {
+ "confirm_text": "Taaskäivita lisandmoodul",
+ "text": "Kas soovid lisandmooduli taaskäivitada rakendades muudatused?"
+ },
+ "update": {
+ "backup": "Varukoopia",
+ "create_backup": "Enne {name} värskendamist loo varukoopia",
+ "creating_backup": "Üksuse {name} varukoopia loomine",
+ "updating": "Üksuse {name} värskendamine versioonile {version}"
+ }
+ },
+ "my": {
+ "error": "Viga",
+ "error_addon_no_ingress": "Valitud lisandmoodul ei toeta ingressi",
+ "error_addon_not_found": "Lisandmoodulit ei leitud",
+ "error_addon_not_installed": "Soovitud lisandmoodul pole pigaldatud. Alustamiseks paigalda see",
+ "error_addon_not_started": "Soovitud lisandmoodul ei tööta. Alustamiseks käivita see",
+ "faq_link": "KKK viide",
+ "not_supported": "pole toetatud"
+ },
+ "panel": {
+ "addons": "Lisandmoodulid",
+ "backups": "Varukoopiad",
+ "dashboard": "Kasutajaliidese vaade",
+ "store": "Lisandmoodulite hoidla",
+ "system": "Süsteem"
+ },
+ "store": {
+ "check_updates": "Kontrolli uuendusi",
+ "missing_addons": "Ei näe lisandmooduleid? Luba täpsem režiim oma kasutajaprofiili lehel",
+ "no_results_found": "Hoidlast {repository} ei leitud tulemeid.",
+ "registries": "Registrid",
+ "repositories": "Hoidlad"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Protsessori hõivatus",
+ "ram_usage": "Mälu hõivatus"
+ },
+ "host": {
+ "change": "Muuda",
+ "change_hostname": "Hostinime muutmine",
+ "confirm_reboot": "Kas soovid kindlasti hosti taaskäivitada?",
+ "confirm_shutdown": "Kas soovid kindlasti hosti välja lülitada?",
+ "deployment": "Juurutamine",
+ "docker_version": "Dockeri versioon",
+ "emmc_lifetime_used": "eMMC elueast on kasutatud",
+ "failed_to_get_hardware_list": "Riistvaraloendi toomine nurjus",
+ "failed_to_import_from_usb": "USB seadmelt importimine nurjus",
+ "failed_to_move": "Andmeketta teisaldamine nurjus",
+ "failed_to_reboot": "Hosti taaskäivitamine nurjus",
+ "failed_to_set_hostname": "Hostinime määramine nurjus",
+ "failed_to_shutdown": "Hosti sulgemine nurjus",
+ "hardware": "Riistvara",
+ "hostname": "Hostinimi",
+ "import_from_usb": "Lae USB seadmelt",
+ "ip_address": "IP-aadress",
+ "move_datadisk": "Teisalda andmeketas",
+ "new_hostname": "Sisesta uus hostinimi:",
+ "operating_system": "Operatsioonisüsteem",
+ "reboot_host": "Taaskäivita host",
+ "shutdown_host": "Lülita host välja",
+ "used_space": "Kasutatud maht"
+ },
+ "log": {
+ "get_logs": "{provider} logide toomine nurjus, {tõrge}",
+ "log_provider": "Logi pakkuja"
+ },
+ "supervisor": {
+ "beta_backup": "Enne selle funktsiooni aktiveerimist veendu, et andmetest oleks varukoopiad.",
+ "beta_join_confirm": "Kas soovid liituda beetakanaliga?",
+ "beta_release_items": "See hõlmab beetaversioone:",
+ "beta_warning": "Beetaversioonid on mõeldud testijatele ja varakult kasutajatele ning need võivad sisaldada ebastabiilseid koodimuudatusi",
+ "channel": "Kanal",
+ "cpu_usage": "Supervisori protsessori kasutus",
+ "failed_to_reload": "Supervisori taaslaadimine nurjus",
+ "failed_to_set_option": "Supevisori suvandi seadmine nurjus",
+ "failed_to_update": "Supervisori värskendamine nurjus",
+ "join_beta_action": "Liitu beetakanaliga",
+ "join_beta_description": "Hangi beebivärskendusi Home Assistanti (RC), juhendaja ja hosti jaoks",
+ "leave_beta_action": "Lahku beetakanalist",
+ "leave_beta_description": "Hangi Home Assistanti, Supervisori ja hosti jaoks stabiilseid uuendusi",
+ "ram_usage": "Supervisori mälu kasutus",
+ "reload_supervisor": "Taaslae Supevisor",
+ "search": "Otsing",
+ "share_diagnostics": "Jaga silumisteavet",
+ "share_diagnostics_description": "Jaga krahhiaruandeid ja diagnostikateavet.",
+ "share_diagonstics_description": "Kas soovid automaatselt jagada krahhiaruandeid ja diagnostikateavet kui Supervisoris ilmneb ootamatuid tõrkeid? {line_break} See võimaldab meil probleeme lahendada, teave on kättesaadav ainult Home Assistanti põhimeeskonnale ja seda ei jagata teistega. {line_break} Andmed ei sisalda privaatset/tundlikku teavet ja saad selle sätetes igal ajal keelata.",
+ "share_diagonstics_title": "Aita Home Assistanti paremaks muuta",
+ "unhealthy_description": "Vigase paigalduse käivitamine tekitab probleeme. Allpool on paigaldamisel leitud probleemide loend. Klõpsa linkidel, et saada teada, kuidas saad probleeme lahendada.",
+ "unhealthy_reason": {
+ "docker": "Dockeri keskkond ei tööta korralikult",
+ "privileged": "Supervisoril pole piisavalt õigusi",
+ "setup": "Supervisori seadistamine nurjus",
+ "supervisor": "Supervisorit ei saanud värskendada",
+ "untrusted": "Tuvastati ebausaldusväärne sisu"
+ },
+ "unhealthy_title": "Paigaldus on vigane",
+ "unsupported_description": "Allpool on loend paigaldusel leitud probleemidest. Klõpsa linkidel, et saada teada, kuidas saad probleeme lahendada.",
+ "unsupported_reason": {
+ "apparmor": "AppArmor pole hostis lubatud",
+ "container": "Konteinerid mis teadaolevalt põhjustavad probleeme",
+ "content-trust": "Sisu usaldatavuse kontroll on keelatud",
+ "content_trust": "Sisu usaldatavuse kontroll on keelatud",
+ "dbus": "DBUS",
+ "docker_configuration": "Dockeri sätted",
+ "docker_version": "Dockeri versioon",
+ "job_conditions": "Eiratud tingimused",
+ "lxc": "LXC",
+ "network_manager": "Võrguhaldur",
+ "os": "Operatsioonisüsteem",
+ "os_agent": "OS Agent",
+ "privileged": "Supervisoril pole piisavalt õigusi",
+ "software": "Tuvastati toetamata tarkvara",
+ "source_mods": "Allika muudatused",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Kasutad toetamata paigaldusmeetodit",
+ "update_supervisor": "Uuenda Supervisorit",
+ "warning": "HOIATUS"
+ }
+ },
+ "update_available": {
+ "core_note": "Kui uus eksemplar pärast värskendamist ei käivitu, taastab Supervisor versiooni {version}.",
+ "create_backup": "Enne värskendamist loo varukoopia",
+ "creating_backup": "Üksuse {name} varukoopia loomine",
+ "description": "Paigaldatud on {version}, versioonile {newest_version} värskendamiseks klõpsa nuppu Värskenda",
+ "no_update": "{name} jaoks pole värskendusi saadaval",
+ "open_release_notes": "Ava väljalaskemärkmed",
+ "update_name": "Uuenda {name}",
+ "updating": "Üksuse {name} värskendamine versioonile {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Kas Te soovite jääda sisselogituks selles seadmes?",
+ "confirm": "Salvesta sisselogimine",
+ "decline": "Tänan ei"
+ },
+ "backup": {
+ "upload_backup": "Varukoopia üleslaadimine"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Valvesta eemal",
+ "arm_custom_bypass": "Eranditega",
+ "arm_home": "Valvesta kodus",
+ "arm_night": "Valvesta öine",
+ "arm_vacation": "Valvesta puhkuse režiimis",
+ "clear_code": "Puhasta",
+ "code": "Kood",
+ "disarm": "Valvest maha"
+ },
+ "area": {
+ "area_not_found": "Ala ei leitud."
+ },
+ "automation": {
+ "last_triggered": "Viimati käivitatud",
+ "trigger": "Käivita toimingud"
+ },
+ "button": {
+ "press": "Vajuta nuppu"
+ },
+ "camera": {
+ "not_available": "Kujutis pole saadaval"
+ },
+ "climate": {
+ "aux_heat": "Abiküte",
+ "away_mode": "Eemal",
+ "cooling": "{name} jahutab",
+ "current_temperature": "{name} praegune temperatuur",
+ "currently": "Hetkel",
+ "fan_mode": "Ventilaatori režiim",
+ "heating": "{name} soojendab",
+ "high": "kiire",
+ "low": "aeglane",
+ "on_off": "Sees / väljas",
+ "operation": "Töörežiim",
+ "preset_mode": "Eelseade",
+ "swing_mode": "Õõtsumise režiim",
+ "target_humidity": "Soovitud niiskusemäär",
+ "target_temperature": "Soovitud temperatuur",
+ "target_temperature_entity": "{name} soovitud temperatuur",
+ "target_temperature_mode": "{name} soovitud temperatuur {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "vähenda",
+ "increment": "suurenda",
+ "reset": "lähtesta"
+ }
+ },
+ "cover": {
+ "position": "Asend",
+ "tilt_position": "Kalde asend"
+ },
+ "fan": {
+ "direction": "Suund",
+ "forward": "Edaspidi",
+ "oscillate": "Võnkumine",
+ "preset_mode": "Eelseadistatud režiim",
+ "reverse": "Tagurpidi",
+ "speed": "Kiirus"
+ },
+ "humidifier": {
+ "humidity": "Soovitud niiskusemäär",
+ "mode": "Režiim",
+ "on_entity": "{name} sisse",
+ "target_humidity_entity": "{name} soovitud niiskusemäär"
+ },
+ "light": {
+ "brightness": "Heledus",
+ "cold_white_value": "Külma valguse heledus",
+ "color_brightness": "Värvilise valguse heledus",
+ "color_temperature": "Värvustemperatuur",
+ "effect": "Efekt",
+ "warm_white_value": "Sooja valguse heledus",
+ "white_value": "Valge valguse heledus"
+ },
+ "lock": {
+ "code": "Kood",
+ "lock": "Lukusta",
+ "unlock": "Ava"
+ },
+ "media_player": {
+ "browse_media": "Meediasisu sirvimine",
+ "media_next_track": "Järgmine lugu",
+ "media_pause": "Paus",
+ "media_play": "Esita",
+ "media_play_pause": "Esita/paus",
+ "media_previous_track": "Eelmine lugu",
+ "media_stop": "Peata",
+ "media_volume_down": "Vaiksemaks",
+ "media_volume_mute": "Summuta",
+ "media_volume_unmute": "Heli taastamine",
+ "media_volume_up": "Valjemaks",
+ "nothing_playing": "Midagi ei mängi",
+ "sound_mode": "Heli režiim",
+ "source": "Allikas",
+ "text_to_speak": "Tekst kõneks",
+ "turn_off": "Lülita välja",
+ "turn_on": "Lülita sisse"
+ },
+ "persistent_notification": {
+ "dismiss": "Loobu"
+ },
+ "scene": {
+ "activate": "Aktiveeri"
+ },
+ "script": {
+ "cancel": "Loobu",
+ "cancel_multiple": "Loobu {number}",
+ "run": "Käivita"
+ },
+ "service": {
+ "run": "Käivita"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "loobu",
+ "finish": "lõpeta",
+ "pause": "peata",
+ "start": "käivita"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Jätka puhastamist",
+ "return_to_base": "Tagasi dokki",
+ "start_cleaning": "Alusta puhastamist",
+ "turn_off": "Lülita välja",
+ "turn_on": "Lülita sisse"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Eemalolekurežiim",
+ "currently": "Hetkel",
+ "on_off": "Sees / väljas",
+ "operation": "Töörežiim",
+ "target_temperature": "Soovitud temperatuur"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Õhurõhk",
+ "humidity": "Niiskus",
+ "precipitation": "Sademed",
+ "temperature": "Temperatuur",
+ "visibility": "Nähtavus",
+ "wind_speed": "Tuule kiirus"
+ },
+ "cardinal_direction": {
+ "e": "E",
+ "ene": "ENE",
+ "ese": "ESE",
+ "n": "N",
+ "ne": "NE",
+ "nne": "NNE",
+ "nnw": "NNW",
+ "nw": "NW",
+ "s": "S",
+ "se": "SE",
+ "sse": "SSE",
+ "ssw": "SSW",
+ "sw": "SW",
+ "w": "W",
+ "wnw": "WNW",
+ "wsw": "WSW"
+ },
+ "day": "Päev",
+ "forecast": "Ennustus",
+ "high": "Kõrge",
+ "low": "Madal",
+ "night": "Öö"
+ }
+ },
+ "common": {
+ "and": "ja",
+ "back": "Tagasi",
+ "cancel": "Loobu",
+ "clear": "Puhasta",
+ "close": "Sulge",
+ "continue": "Jätka",
+ "copied": "Kopeeritud",
+ "copied_clipboard": "Kopeeritud lõikepuhvrisse",
+ "delete": "Kustuta",
+ "disable": "Keela",
+ "enable": "Luba",
+ "error_required": "Nõutav",
+ "help": "Abi",
+ "leave": "Lahku",
+ "loading": "Laadimine",
+ "menu": "Menüü",
+ "move": "Liiguta",
+ "next": "Järgmine",
+ "no": "Ei",
+ "not_now": "Mitte praegu",
+ "overflow_menu": "Ületäitumise menüü",
+ "previous": "Eelmine",
+ "refresh": "Värskenda",
+ "remove": "Eemalda",
+ "rename": "Nimeta ümber",
+ "save": "Salvesta",
+ "skip": "Jäta vahele",
+ "stay": "Jää",
+ "submit": "Esita",
+ "successfully_deleted": "Edukalt kustutatud",
+ "successfully_saved": "Edukalt salvestatud",
+ "undo": "Ennista",
+ "yes": "Jah"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Lisandmoodul",
+ "error": {
+ "fetch_addons": {
+ "description": "Lisandmoodulite laadimisel ilmnes tõrge.",
+ "title": "Lisandmoodulite laadimise tõrge"
+ },
+ "no_supervisor": {
+ "description": "Lisandmooduleid ei toetata.",
+ "title": "Supervisor puudub"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Lisa",
+ "failed_create_area": "Ala loomine ebaõnnestus.",
+ "name": "Nimi",
+ "text": "Sisesta uue ala nimi.",
+ "title": "Lisa uus ala"
+ },
+ "add_new": "Lisa uus ala…",
+ "area": "Ala",
+ "clear": "Puhasta",
+ "no_areas": "Alad puuduvad",
+ "no_match": "Sobivaid alasid ei leitud",
+ "show_areas": "Näita alasid"
+ },
+ "attributes": {
+ "expansion_header": "Atribuudid"
+ },
+ "blueprint-picker": {
+ "add_user": "Lisa kasutaja",
+ "remove_user": "Kustuta kasutaja",
+ "select_blueprint": "Kavandi valimine"
+ },
+ "calendar": {
+ "my_calendars": "Minu kalendrid",
+ "today": "Täna"
+ },
+ "data-table": {
+ "clear": "Puhasta",
+ "filtering_by": "Filtreerimisalus",
+ "hidden": "{number} peidetut",
+ "no-data": "Andmeid pole",
+ "search": "Otsing"
+ },
+ "date-range-picker": {
+ "end_date": "Lõpu kuupäev",
+ "ranges": {
+ "last_week": "Eelmine nädal",
+ "this_week": "See nädal",
+ "today": "Täna",
+ "yesterday": "Eile"
+ },
+ "select": "Vali",
+ "start_date": "Alguse kuupäev"
+ },
+ "device-picker": {
+ "clear": "Puhasta",
+ "device": "Seade",
+ "no_area": "Ala puudub",
+ "no_devices": "Seadmed puuduvad",
+ "no_match": "Sobivaid seadmeid ei leitud",
+ "show_devices": "Näita seadmeid",
+ "toggle": "Lülita"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Atribuut",
+ "show_attributes": "Kuva atribuudid"
+ },
+ "entity-picker": {
+ "clear": "Puhasta",
+ "edit": "Muuda",
+ "entity": "Olem",
+ "no_match": "Sobivaid olemeid ei leitud",
+ "show_entities": "Näita olemeid"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "Ajalookirjete sidumine on keelatud",
+ "loading_history": "Laadin ajalugu…",
+ "no_history_found": "Oleku ajalugu ei leitud"
+ },
+ "logbook": {
+ "by": ", allikas:",
+ "by_service": "teenuse poolt",
+ "entries_not_found": "Logiraamatu kandeid ei leitud.",
+ "messages": {
+ "became_unavailable": "muutus kättesaamatuks",
+ "changed_to_state": "muutus olekusse {state}",
+ "cleared_device_class": "lõpetatud ( {device_class} ei leitud)",
+ "cleared_tampering": "omavoliline rikkumine kustutatud",
+ "detected_device_class": "tuvastati {device_class}",
+ "detected_tampering": "tuvastati omavoliline rikkumine",
+ "is_closing": "sulgub",
+ "is_opening": "avaneb",
+ "rose": "tõusis",
+ "set": "määratud",
+ "turned_off": "lülitus välja",
+ "turned_on": "lülitus sisse",
+ "was_at_home": "oli kodus",
+ "was_at_state": "oli olekus {state}",
+ "was_away": "oli eemal",
+ "was_closed": "sulgus",
+ "was_connected": "ühendus",
+ "was_disconnected": "ühendati lahti",
+ "was_locked": "lukustati",
+ "was_low": "oli madal",
+ "was_normal": "oli normaalne",
+ "was_opened": "avati",
+ "was_plugged_in": "ühendati",
+ "was_safe": "oli turvatud",
+ "was_unlocked": "avanes",
+ "was_unplugged": "eemaldati",
+ "was_unsafe": "oli turvamata"
+ },
+ "retrieval_error": "Logiraamatu laadimse tõrge",
+ "show_trace": "Kuva täitmise samme"
+ },
+ "media-browser": {
+ "audio_not_supported": "Teie brauser ei toeta helielementi.",
+ "choose_player": "Vali meediamängija",
+ "class": {
+ "album": "Album",
+ "app": "Rakendus",
+ "artist": "Esitaja",
+ "channel": "Kanal",
+ "composer": "Helilooja",
+ "contributing_artist": "Kaasartist",
+ "directory": "Teek",
+ "episode": "Osa",
+ "game": "Mäng",
+ "genre": "Žanr",
+ "image": "Pilt",
+ "movie": "Film",
+ "music": "Muusika",
+ "playlist": "Esitusloend",
+ "podcast": "Taskuhääling",
+ "season": "Aastaaeg",
+ "track": "Lugu",
+ "tv_show": "Telesaade",
+ "url": "",
+ "video": "Video"
+ },
+ "documentation": "dokumentatsioon",
+ "learn_adding_local_media": "Lisateavet meedia lisamise kohta leiate {documentation} .",
+ "local_media_files": "Asetage oma video-, heli- ja pildifailid meediumikataloogi, et saaksite neid sirvida ja taasesitada brauseris või toetatud meediumipleierites.",
+ "media-player-browser": "Meediamängija",
+ "media_browsing_error": "Sisu otsimise viga",
+ "media_not_supported": "Brauseri meediumipleier ei toeta seda tüüpi sisu",
+ "media_player": "Meediamängija",
+ "no_items": "Sisu puudub",
+ "no_local_media_found": "Kohalikku meediat ei leitud",
+ "no_media_folder": "Paistab, et Te pole veel meediaikataloogi loonud.",
+ "pick": "Vali",
+ "pick-media": "Vali sisu",
+ "play": "Esita",
+ "play-media": "Esita sisu",
+ "setup_local_help": "Kohaliku meedia seadistamise kohta vaadake {documentation} .",
+ "video_not_supported": "Teie brauser ei toeta videosisu.",
+ "web-browser": "Veebilehitseja"
+ },
+ "picture-upload": {
+ "label": "Pilt",
+ "unsupported_format": "Toetamata vorming, valige JPEG-, PNG- või GIF-pilt."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Sisesta QR-koodi väärtus",
+ "manual_input": "QR-koodi saad skannida teise QR-skanneriga ja kleepida koodi allolevasse aknasse",
+ "not_supported": "Veebilehitseja ei toeta QR-skannimist.",
+ "only_https_supported": "QR-koodi skaneerimiseks saad kasutada oma kaamerat ainult HTTPS-i kasutamisel.",
+ "select_camera": "Vali kaamera"
+ },
+ "related-filter-menu": {
+ "filter": "Filtreeri",
+ "filter_by_area": "Filtreeri ala järgi",
+ "filter_by_device": "Filtreeri seadmete järgi",
+ "filter_by_entity": "Filtreeri olemi järgi",
+ "filtered_by_area": "ala: {area_name}",
+ "filtered_by_device": "seade: {device_name}",
+ "filtered_by_entity": "olem: {entity_name}"
+ },
+ "related-items": {
+ "area": "Ala",
+ "automation": "Osaleb järgmistes automatiseeringutes",
+ "device": "Seade",
+ "entity": "Seotud olemid",
+ "group": "Osaleb järgmistes gruppides",
+ "integration": "Sidumine",
+ "no_related_found": "Seotud üksusi ei leitud.",
+ "scene": "Osaleb järgmistes stseenides",
+ "script": "Osaleb järgmistes skriptides"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one {päev}\n other {päeva}\n}",
+ "hour": "{count} {count, plural,\n one {tund}\n other {tunni}\n}",
+ "minute": "{count} {count, plural,\n one {minut}\n other {minuti}\n}",
+ "second": "{count} {count, plural,\n one {sekund}\n other {sekundi}\n}",
+ "week": "{count} {count, plural,\n one {nädala}\n other {nädala}\n}"
+ },
+ "future_duration": {
+ "day": "{count} {count, plural,\n one {päeva}\n other {päeva}\n} pärast",
+ "hour": "{count} {count, plural,\n one {tunni}\n other {tunni}\n} pärast",
+ "minute": "{count} {count, plural,\n one {minuti}\n other {minuti}\n} pärast",
+ "second": "{count} {count, plural,\n one {sekundi}\n other {sekundi}\n} pärast",
+ "week": "{count} {count, plural,\n one {nädala}\n other {nädala}\n} pärast"
+ },
+ "just_now": "Just praegu",
+ "never": "Iial",
+ "past_duration": {
+ "day": "{count} {count, plural,\n one {päeva}\n other {päeva}\n} eest",
+ "hour": "{count} {count, plural,\n one {tunni}\n other {tunni}\n} eest",
+ "minute": "{count} {count, plural,\n one {minuti}\n other {minuti}\n} eest",
+ "second": "{count} {count, plural,\n one {sekundi}\n other {sekundi}\n} eest",
+ "week": "{count} {count, plural,\n one {nädala}\n other {nädala}\n} eest"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Sidumise teave",
+ "required": "See väli on nõutav",
+ "service_data": "Teenuse andmed",
+ "target": "Eesmärgid",
+ "target_description": "Mida see teenus peaks välja kutsuma: alad, seadmed ja olemid."
+ },
+ "service-picker": {
+ "service": "Teenus"
+ },
+ "statistic-picker": {
+ "learn_more": "Lisateave statistika kohta",
+ "missing_entity": "Miks minu üksus ei ole loetelus?",
+ "no_match": "Sobivat statistikat ei leitud",
+ "no_statistics": "Statistika puudub",
+ "statistic": "Statistika"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Statistika laadimine …",
+ "no_statistics_found": "Statistikakirjeid ei leitud.",
+ "statistic_types": {
+ "max": "max",
+ "mean": "keskmine",
+ "min": "min",
+ "sum": "summa"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Vali ala",
+ "add_device_id": "Vali seade",
+ "add_entity_id": "Vali olem",
+ "expand": "Laienda",
+ "expand_area_id": "Laienda seda ala eraldi seadmetesse ja olemitesse mis sellesse kuuluvad.",
+ "expand_device_id": "Laienda seda seadet eraldi olemitesse.",
+ "remove": "Eemalda",
+ "remove_area_id": "Eemalda ala",
+ "remove_device_id": "Eemalda seade",
+ "remove_entity_id": "Eemalda olem"
+ },
+ "user-picker": {
+ "add_user": "Lisa kasutaja",
+ "no_user": "Kasutaja puudub",
+ "remove_user": "Kustuta kasutaja"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Kas lisada äsja avastatud sidumise {integration} olemeid automaatselt Home Assistant'i.",
+ "enable_new_entities_label": "Luba äsja lisatud olemid.",
+ "enable_polling_description": "Kas Home Assistant peaks automaatselt küsitlema {integration} üksusi uuenduste saamiseks.",
+ "enable_polling_label": "Luba värskenduste jaoks küsitlus.",
+ "restart_home_assistant": "Muudatuste jõustumiseks pead Home Assistanti taaskäivitama.",
+ "title": "Süsteemi valikud {integration} jaoks",
+ "update": "Uuenda"
+ },
+ "domain_toggler": {
+ "reset_entities": "Lähtesta olemid",
+ "title": "Vaheta piirkonda"
+ },
+ "entity_registry": {
+ "control": "Juhtimine",
+ "customize_link": "olemite kohandamised",
+ "dismiss": "Loobu",
+ "editor": {
+ "advanced": "Täpsemad sätted",
+ "area": "Määra ainult olemi ala",
+ "area_note": "Vaikimisi asuvad seadme olemid seadmega samas alas. Kui muudad selle üksuse ala, ei järgi see enam seadme ala.",
+ "change_device_area": "Muuda seadme ala",
+ "confirm_delete": "Oled kindel, et soovid selle olemi kustutada?",
+ "delete": "Kustuta",
+ "device_class": "Kuva kui",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Uks",
+ "garage_door": "Garaažiuks",
+ "opening": "Muu",
+ "window": "Aken"
+ },
+ "cover": {
+ "door": "Uks",
+ "garage": "Garaažiuks",
+ "window": "Aken"
+ }
+ },
+ "device_disabled": "Selle olemi seade on keelatud.",
+ "enabled_cause": "Keelatud, sest {cause}.",
+ "enabled_delay_confirm": "Lubatud üksused lisatakse Home Assistanti {delay} sekundi pärast",
+ "enabled_description": "Keelatud olemeid ei lisata Home Assistant'i.",
+ "enabled_label": "Luba olem",
+ "enabled_restart_confirm": "Olemite sidumise lubamiseks taaskäivita Home Assistant",
+ "entity_id": "Olemi ID",
+ "follow_device_area": "Seadme ala järgimine",
+ "icon": "Ikooni muutmine",
+ "icon_error": "Ikoonid peaksid olema vormingus 'prefix: iconname', nt 'mdi: home'",
+ "name": "Nime muutmine",
+ "note": "Märkus: see ei pruugi veel töötada kõigi sidumistega.",
+ "open_device_settings": "Seadme sätete avamine",
+ "unavailable": "See olem pole saadaval.",
+ "update": "Uuenda"
+ },
+ "faq": "dokumentatsioon",
+ "info_customize": "Mõned atribuudid saab jaotises {customize_link} üle kirjutada.",
+ "no_unique_id": "Olemil (\"{entity_id}\") puudub unikaalne ID-d. Seetõttu ei saa selle seadeid kasutajaliidesest hallata. Lisainfot vaata {faq_link}.",
+ "related": "Seotud",
+ "settings": "Seaded"
+ },
+ "generic": {
+ "cancel": "Loobu",
+ "close": "Sulge",
+ "default_confirmation_title": "Oled sa kindel?",
+ "ok": "OK"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Algne väärtus",
+ "maximum": "Maksimaalne väärtus",
+ "minimum": "Minimaalne väärtus",
+ "restore": "Taasta viimane teadaolev väärtus kui Home Assistant käivitub",
+ "step": "Loenduri samm"
+ },
+ "generic": {
+ "icon": "Ikoon",
+ "name": "Nimi"
+ },
+ "input_datetime": {
+ "date": "Kuupäev",
+ "datetime": "Kuupäev ja kellaaeg",
+ "mode": "Mida Te soovite sisestada",
+ "time": "Aeg"
+ },
+ "input_number": {
+ "box": "Sisestusväli",
+ "max": "Maksimaalne väärtus",
+ "min": "Minimaalne väärtus",
+ "mode": "Kuvarežiim",
+ "slider": "Kerimisriba",
+ "step": "Sammu suurus",
+ "unit_of_measurement": "Mõõtühik"
+ },
+ "input_select": {
+ "add": "Lisa",
+ "add_option": "Lisa valik",
+ "no_options": "Valikuid puuduvad.",
+ "options": "Valikud"
+ },
+ "input_text": {
+ "max": "Maksimaalne pikkus",
+ "min": "Minimaalne pikkus",
+ "mode": "Kuvarežiim",
+ "password": "Salasõna",
+ "pattern": "Regex muster kliendipoolse valideerimise jaoks",
+ "text": "Tekst"
+ },
+ "platform_not_loaded": "Sidumist {platform} ei leitud. Lisage see oma konfiguratsiooni, lisades kas \"default_config:\" või ''{platform}:''.",
+ "required_error_msg": "See väli on nõutav",
+ "timer": {
+ "duration": "Kestus"
+ },
+ "yaml_not_editable": "Selle olemi sätteid ei saa kasutajaliidesest redigeerida. Kasutajaliidesest saab konfigureerida ainult kasutajaliideses loodud olemeid."
+ },
+ "image_cropper": {
+ "crop": "Kärbi"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Sulge kate",
+ "close_tile_cover": "Sulge katte ribid",
+ "close_tilt_cover": "Sule katte ribid",
+ "open_cover": "Ava kate",
+ "open_tilt_cover": "Ava katte ribid",
+ "stop_cover": "Peata avakate"
+ },
+ "details": "Üksikasjad",
+ "dismiss": "Loobu dialoogist",
+ "edit": "Muuda olemit",
+ "history": "Ajalugu",
+ "last_changed": "Viimati muudetud",
+ "last_updated": "Viimati uuendatud",
+ "logbook": "Logiraamat",
+ "person": {
+ "create_zone": "Loo tsoon praegusest asukohast"
+ },
+ "remote": {
+ "activity": "Praegune tegevus"
+ },
+ "restored": {
+ "confirm_remove_text": "Oled kindel, et soovid selle olemi eemaldada?",
+ "confirm_remove_title": "Kas eemaldan olemi?",
+ "not_provided": "See üksus pole praegu saadaval ja on eemaldatud, muudetud või mittetoimiva integreerimise või seadme jäänuk.",
+ "remove_action": "Eemalda olem",
+ "remove_intro": "Kui olemit enam ei kasutata, võid selle eemaldada."
+ },
+ "script": {
+ "last_action": "Viimatine tegevus",
+ "last_triggered": "Viimati käivitatud"
+ },
+ "settings": "Olemi seaded",
+ "show_more": "Kuva rohkem",
+ "sun": {
+ "elevation": "Tõus",
+ "rising": "Tõuseb",
+ "setting": "Loojub"
+ },
+ "updater": {
+ "title": "Uuendamise juhised"
+ },
+ "vacuum": {
+ "clean_spot": "Puhasta koht",
+ "commands": "Tolmuimeja käsud:",
+ "fan_speed": "Ventilaatori kiirus",
+ "locate": "Leia",
+ "pause": "Peata",
+ "return_home": "Tagasi dokki",
+ "start": "Käivita",
+ "start_pause": "Käivita/Peata",
+ "status": "Olek",
+ "stop": "Peatu"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Katse sõeluda MQTT-sõnumeid JSON-ina",
+ "entities": "Olemid",
+ "no_entities": "Olemid puuduvad",
+ "no_triggers": "Päästikud puuduvad",
+ "payload_display": "Väärtuste kuvamine",
+ "recent_messages": "{n} viimati vastu võetud teavitus(t)",
+ "show_as_yaml": "Kuva YAMLina",
+ "title": "{device} silumisinfo",
+ "triggers": "Päästikud"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Valikud"
+ },
+ "loading": {
+ "loading_flow": "Oota kuni {integration} suvandeid lähtestatakse",
+ "loading_step": "{integration} paigaldamise järgmist sammu laadimine"
+ },
+ "success": {
+ "description": "Valikud on edukalt salvestatud."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Alad",
+ "automation": "Automatiseeringud",
+ "blueprint": "Kavandid",
+ "core": "Üldine",
+ "customize": "Kohandamised",
+ "devices": "Seadmed",
+ "energy": "Energia seaded",
+ "entities": "Olemid",
+ "helpers": "Abimehed",
+ "info": "Info",
+ "integrations": "Sidumised",
+ "logs": "Logid",
+ "lovelace": "Lovelace vaated",
+ "person": "Isikud",
+ "scene": "Stseenid",
+ "script": "Scriptid",
+ "server_control": "Serveri juhtimine",
+ "tag": "Märgised",
+ "users": "Kasutajad",
+ "zone": "Tsoonid"
+ },
+ "reload": {
+ "automation": "Taaslae automatiseeringud",
+ "command_line": "Taaslae käsurea olemid",
+ "core": "Taaslae asukohad ja mugandamised",
+ "filesize": "Taaslae faili suuruse olemid",
+ "filter": "Taaslae filtri olemid",
+ "generic": "Taaslae IP kaamerate olemid",
+ "generic_thermostat": "Taaslae termostaadi olemid",
+ "group": "Taaslae grupid, grupiolemid ja teavitusteenused",
+ "history_stats": "Taaslae ajaloo olemid",
+ "homekit": "Taaslae HomeKit",
+ "input_boolean": "Taaslae loogikasisestused",
+ "input_datetime": "Taaslae ajaväärtused",
+ "input_number": "Taaslae arvsisestused",
+ "input_select": "Taaslae sisendivalikud",
+ "input_text": "Taaslae tekstisisestused",
+ "min_max": "Taaslae min/maks olemid",
+ "mqtt": "Taaslae MQTT olemid",
+ "person": "Taaslae isikud",
+ "ping": "Taaslae ping binaaranduri olemid",
+ "reload": "Taaslae {domain}",
+ "rest": "Taaslae REST olemid ja teavitusteenused",
+ "rpi_gpio": "Taaslae Raspberry PI viikude olemid",
+ "scene": "Taaslae stseenid",
+ "script": "Taaslae skriptid",
+ "smtp": "Taaslae SMTP teavitusteenused",
+ "statistics": "Taaslae statistika olemid",
+ "telegram": "Taaslae TELEGRAM-i teavitusteenused",
+ "template": "Taaslae mallisisestused",
+ "themes": "Teemad",
+ "trend": "Taaslae trendide olemid",
+ "universal": "Taaslae meediumimängija olemid",
+ "zone": "Taaslae tsoonid"
+ },
+ "server_control": {
+ "perform_action": "{action} server",
+ "restart": "Taaskäivita",
+ "stop": "Peata"
+ },
+ "types": {
+ "navigation": "Navigeeri",
+ "reload": "Taaslae",
+ "server_control": "Server"
+ }
+ },
+ "filter_placeholder": "Olemite filter",
+ "key_c_hint": "Selle otsinguriba avamiseks vajuta mis tahes lehel nuppu \"c\".",
+ "nothing_found": "Midagi ei leitud!",
+ "title": "Kiirotsing"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant ei kuulnud midagi",
+ "error": "Oih, ilmnes tõrge",
+ "found": "Ma leidsin Teie jaoks:",
+ "how_can_i_help": "Kuidas ma saan aidata?",
+ "label": "Sisesta küsimus ja vajuta \"Enter\"",
+ "label_voice": "Tippige tekst ja vajutage \"Enter\" või puudutage mikrofoni ikooni"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Lisa seadmeid selle seadme abil",
+ "clusters": "Halda seadmekobaraid",
+ "device_children": "Kuva alamseadmed",
+ "reconfigure": "Muuda seadme sätteid",
+ "remove": "Eemalda seade",
+ "view_in_visualization": "Visualiseeri",
+ "zigbee_information": "Zigbee seadme tunnus"
+ },
+ "confirmations": {
+ "remove": "Oled kindel, et soovid selle seadme eemaldada?"
+ },
+ "device_children": "Zigbee alamseadmed",
+ "device_signature": "Zigbee seadme tunnus",
+ "last_seen": "Viimati nähtud",
+ "manuf": "{manufacturer} järgi",
+ "no_area": "Ala puudub",
+ "power_source": "Toiteallikas",
+ "quirk": "Pistikäpp",
+ "services": {
+ "reconfigure": "Taasseadista (tervenda) ZHA seade. Kasuta seda, kui seadmega on probleeme. Kui seade on akutoitega, siis veendu, et see oleks ärkvel ja oleks valmis käske vastu võtma.",
+ "remove": "Eemalda seade Zigbee võrgust.",
+ "updateDeviceName": "Anna sellele seadmele seadmete registris kohandatud nimi.",
+ "zigbee_information": "Vaadake selle seadme Zigbee teavet."
+ },
+ "unknown": "Teadmata",
+ "zha_device_card": {
+ "device_name_placeholder": "Muuda seadme nime"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Atribuut",
+ "battery_device_warning": "Patareitoitel seadmed peavad olema ärkvel, et neid taasseadistada. Seadme äratamiseks vaata oma seadme kasutusjuhendit.",
+ "bind_header": "Sidumine",
+ "button_hide": "Peida üksikasjad",
+ "button_show": "Kuva üksikasjad",
+ "cluster_header": "Kobar",
+ "configuration_complete": "Seadme ümberseadistamine on lõpule viidud.",
+ "configuration_failed": "Seadme ümberseadistamine nurjus. Lisateavet võib saada logidest.",
+ "configuring_alt": "Seadistan",
+ "heading": "Seadme sätete muutmine",
+ "in_progress": "Seadet muudetakse ümber. See võib võtta aega.",
+ "introduction": "Seadista uuesti seadet Zigbee võrgus. Kasuta seda funktsiooni kui seadmel on puuduv või vale funktsionaalsus.",
+ "min_max_change": "min/max/muutus",
+ "reporting_header": "Aruandlus",
+ "run_in_background": "Saad selle dialoogi sulgeda ja ümberseadistamine jätkub taustal.",
+ "start_reconfiguration": "Alusta ümberseadistamist"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\n one {päev}\n other {päeva}\n}",
+ "hour": "{count} {count, plural,\n one {tund}\n other {tundi}\n}",
+ "minute": "{count} {count, plural,\n one {minut}\n other {minutit}\n}",
+ "second": "{count} {count, plural,\n one {sekund}\n other {sekundit}\n}",
+ "week": "{count} {count, plural,\n one {nädal}\n other {nädalat}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "YAML-is saad endiselt muuta oma konfiguratsiooni.",
+ "editor_not_available": "Tüübi \"{type}\" jaoks pole saadaval visuaalne redaktor.",
+ "editor_not_supported": "Selle konfiguratsiooni korral ei toetata visuaalset redaktorit",
+ "error_detected": "Tuvastati konfiguratsioonitõrked",
+ "key_missing": "Nõutav võti \"{key}\" puudub.",
+ "key_not_expected": "Võti \"{key}\" pole visuaalses redaktoris eeldatud või toetatatud.",
+ "key_wrong_type": "Visuaalne redaktor ei toeta \"{key}\" jaoks sisestatud väärtust. Toetatud on ({type_correct}) kuid saadi ({type_wrong}).",
+ "no_state_array_support": "Visuaalses redaktoris ei toetata mitut olekuväärtust",
+ "no_template_editor_support": "Visuaalne redaktor ei toeta malle",
+ "no_type_provided": "Tüüpi pole esitatud."
+ },
+ "supervisor": {
+ "ask": "Küsi abi",
+ "observer": "Kontrolli Observerit",
+ "reboot": "Proovi host taaskäivitada",
+ "system_health": "Kontrolli süsteemi seisundit",
+ "title": "Supervisori paneeli laadimine nurjus!",
+ "wait": "Kui alles käivitasid seadme, veendu, et oled andnud Supervisorile piisavalt aega käivitumiseks."
+ }
+ },
+ "login-form": {
+ "log_in": "Logi sisse",
+ "password": "Salasõna",
+ "remember": "Jäta meelde"
+ },
+ "notification_drawer": {
+ "click_to_configure": "{entity} seadistamiseks klõpsa nuppu",
+ "close": "Sulge",
+ "dismiss_all": "Kustuta teavitused",
+ "empty": "Teavitusi pole",
+ "title": "Teavitused"
+ },
+ "notification_toast": {
+ "connection_lost": "Ühendus kadunud. Taasühendamine…",
+ "dismiss": "Loobu",
+ "integration_starting": "Sidumine {integration} käivitub, kõik elemendid pole veel saadaval.",
+ "service_call_failed": "Teenuse {service} väljakutsumine ebaõnnestus.",
+ "started": "Home Assistant on käivitunud!",
+ "starting": "Home Assistant käivitub, kõik elemendid ei pruugi veel saadaval olla",
+ "triggered": "Käivitati {name}",
+ "wrapping_up_startup": "Lõpetan käivitumist, kõik elemendid pole veel saadaval."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Konfiguratsioonisuvandid puuduvad ? Lülitage täpsem režiim sisse",
+ "link_profile_page": "Teie profiilileht"
+ },
+ "areas": {
+ "add_picture": "Lisa pilt",
+ "assigned_to_area": "Määratud sellesse alase",
+ "caption": "Alade register",
+ "data_table": {
+ "area": "Ala",
+ "devices": "Seadmed",
+ "entities": "Olemid"
+ },
+ "delete": {
+ "confirmation_text": "Kõik sellele ala seadmed jäävad peremehetuks.",
+ "confirmation_title": "Oled kindel, et soovid selle ala kustutada?"
+ },
+ "description": "Seadmete ja olemite rühmitamine aladesse",
+ "edit_settings": "Ala sätted",
+ "editor": {
+ "area_id": "Piirkonna ID",
+ "create": "LOO",
+ "default_name": "Uus ala",
+ "delete": "KUSTUTA",
+ "linked_entities_caption": "Olemid",
+ "name": "Nimi",
+ "name_required": "Nimi on kohustuslik",
+ "no_linked_entities": "Selle alaga pole seotud ühtegi olemit.",
+ "unknown_error": "Tundmatu viga",
+ "update": "UUENDA"
+ },
+ "picker": {
+ "create_area": "LOO ALA",
+ "header": "Alade register",
+ "integrations_page": "Sidumiste leht",
+ "introduction": "Alasid kasutatakse seadmete paiknemise korraldamiseks. Seda teavet kasutatakse läbivalt kasutajaliidese, lubade ja teiste süsteemidega sidumise korraldamisel.",
+ "introduction2": "Seadmete paigutamiseks alale mine alloleva lingi kaudu sidumiste lehele ja seejärel klõpsa seadme kaartideni jõudmiseks seadistatud sidumisel.",
+ "no_areas": "Paistab, et sul pole veel alasid!"
+ },
+ "targeting_area": "Alasse kuulumine"
+ },
+ "automation": {
+ "caption": "Automatiseeringud",
+ "description": "Loo oma kodu jaoks kohandatud käitumisreeglid",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Kasuta kavandit"
+ },
+ "header": "Loo uus automatiseering",
+ "how": "Kuidas soovid luua oma uue automaatiseeringu?",
+ "start_empty": "Loo tühi automaatiseering",
+ "start_empty_description": "Loo täiesti uus automatiseering",
+ "thingtalk": {
+ "create": "Loo",
+ "header": "Kirjelda automatiseeringut mida soovid luua",
+ "input_label": "Mida peaks see automatiseering tegema?",
+ "intro": "Me püüame selle Sulle luua. Näiteks: lülita tuled välja kui ma lahkun."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Lisa toiming",
+ "delete": "Kustuta",
+ "delete_confirm": "Oled kindel, et soovid kustutada?",
+ "duplicate": "Paljunda",
+ "header": "Tegevused",
+ "introduction": "Tegevused on need, mida Home Assistant teeb kui päästik käivitab automatiseeringu.",
+ "learn_more": "Lisateave tegevuste kohta",
+ "name": "Tegevus",
+ "type": {
+ "choose": {
+ "add_option": "Lisa valik",
+ "conditions": "Tingimused",
+ "default": "Vaiketoimingud",
+ "label": "Vali",
+ "option": "Valik {number}",
+ "remove_option": "Eemalda suvand",
+ "sequence": "Tegevused"
+ },
+ "condition": {
+ "label": "Tingimus"
+ },
+ "delay": {
+ "delay": "Kestus",
+ "label": "Oota viiteaja möödumist (viivitus)"
+ },
+ "device_id": {
+ "action": "Tegevus",
+ "extra_fields": {
+ "brightness_pct": "Heledus",
+ "code": "Kood",
+ "flash": "Kiir",
+ "humidity": "Niiskus",
+ "message": "Sõnum",
+ "mode": "Režiim",
+ "position": "Asend",
+ "title": "Nimetus",
+ "value": "Väärtus"
+ },
+ "label": "Seade"
+ },
+ "event": {
+ "event": "Sündmus",
+ "label": "Vallanda sündmus",
+ "service_data": "Teenuse andmed"
+ },
+ "repeat": {
+ "label": "Korda",
+ "sequence": "Tegevused",
+ "type": {
+ "count": {
+ "label": "Korda"
+ },
+ "until": {
+ "conditions": "Kuni tingimused",
+ "label": "Kuni"
+ },
+ "while": {
+ "conditions": "Kui tingimused",
+ "label": "Kui"
+ }
+ },
+ "type_select": "Korduse tüüp"
+ },
+ "scene": {
+ "label": "Aktiveeri stseen"
+ },
+ "service": {
+ "label": "Kutsu teenus"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Jätka pärast aegumist",
+ "label": "Oota päästikut",
+ "timeout": "Ajalõpp (valikuline)"
+ },
+ "wait_template": {
+ "continue_timeout": "Jätka peale ajalõppu",
+ "label": "Viivituse mall",
+ "timeout": "Aegumine (valikuline)",
+ "wait_template": "Ootamise mall"
+ }
+ },
+ "type_select": "Tegevuse tüüp",
+ "unsupported_action": "Kasutajaliides ei toeta tegevust: {action}"
+ },
+ "alias": "Nimi",
+ "blueprint": {
+ "blueprint_to_use": "Kasutatav kavand",
+ "header": "",
+ "no_blueprints": "Kavandid puuduvad",
+ "no_inputs": "Sellel kavandil puuduvad sisendid."
+ },
+ "conditions": {
+ "add": "Lisa tingimus",
+ "delete": "Kustuta",
+ "delete_confirm": "Oled kindel, et soovid kustutada?",
+ "duplicate": "Duubelda",
+ "header": "Tingimused",
+ "introduction": "Tingimused on valikulised ja takistavad automatiseerimise käivitamist, välja arvatud juhul kui kõik tingimused on täidetud.",
+ "learn_more": "Lisateave tingimuste kohta",
+ "name": "Tingimus",
+ "type": {
+ "and": {
+ "label": "ja"
+ },
+ "device": {
+ "condition": "Tingimus",
+ "extra_fields": {
+ "above": "Üle",
+ "below": "Alla",
+ "for": "Kestus",
+ "hvac_mode": "Soojuspumba režiim",
+ "preset_mode": "Eelseadistatud režiim"
+ },
+ "label": "Seade"
+ },
+ "not": {
+ "label": "Mitte"
+ },
+ "numeric_state": {
+ "above": "Üle",
+ "below": "Alla",
+ "label": "Numbriline olek",
+ "value_template": "Väärtuse mall (valikuline)"
+ },
+ "or": {
+ "label": "või"
+ },
+ "state": {
+ "label": "Olek",
+ "state": "Olek"
+ },
+ "sun": {
+ "after": "Peale:",
+ "after_offset": "Pärastine ajanihe (valikuline)",
+ "before": "Enne:",
+ "before_offset": "Eelnev ajanihe (valikuline)",
+ "label": "Päike",
+ "sunrise": "Tõusu",
+ "sunset": "Loojangut"
+ },
+ "template": {
+ "label": "Mall",
+ "value_template": "Väärtuse mall"
+ },
+ "time": {
+ "after": "Peale",
+ "before": "Enne",
+ "label": "Aeg",
+ "type_input": "Kuupäeva/kellaja abilise väärtus",
+ "type_value": "Määratud aeg",
+ "weekdays": {
+ "fri": "Reede",
+ "mon": "Esmaspäev",
+ "sat": "Laupäev",
+ "sun": "Pühapäev",
+ "thu": "Neljapäev",
+ "tue": "Teisipäev",
+ "wed": "Kolmapäev"
+ }
+ },
+ "trigger": {
+ "id": "Päästiku ID",
+ "label": "Päästik",
+ "no_triggers": "Päästikuid pole saadaval"
+ },
+ "zone": {
+ "entity": "Asukohaga olem",
+ "label": "Tsoon",
+ "zone": "Tsoon"
+ }
+ },
+ "type_select": "Tingimuse tüüp",
+ "unsupported_condition": "Kasutajaliides ei toeta tingimust: {condition}"
+ },
+ "copy_to_clipboard": "Kopeeri lõikelauale",
+ "default_name": "Uus automatiseering",
+ "description": {
+ "label": "Kirjeldus",
+ "placeholder": "Valikuline kirjeldus"
+ },
+ "edit_ui": "Redigeeri kasutajaliidese abil",
+ "edit_yaml": "Redigeeri YAML-ina",
+ "enable_disable": "Luba/Keela automatiseering",
+ "introduction": "Kasuta automatiseeringuid oma kodule elu sisse puhumiseks.",
+ "load_error_not_editable": "Ainult automations.yaml failis asuvad automatiseeringud on muudetavad.",
+ "load_error_unknown": "Viga automatiseeringu laadimisel ({err_no}).",
+ "max": {
+ "parallel": "Üheaegsete käivituste maksimaalne arv",
+ "queued": "Järjekorra pikkus"
+ },
+ "modes": {
+ "description": "See režiim kontrollib mis juhtub kui automaatika käivitatakse ja toimingud käivad veel eelmisest päästikust. Lisateavet leiate siit {documentation_link} .",
+ "documentation": "automatiseeringute dokumentatsioon",
+ "label": "Režiim",
+ "parallel": "Paralleelselt",
+ "queued": "Ootel",
+ "restart": "Taaskäivita",
+ "single": "Üks kord (vaikimisi)"
+ },
+ "move_down": "Liiguta alla",
+ "move_up": "Liiguta üles",
+ "save": "Salvesta",
+ "show_trace": "Kuva täitmise samme",
+ "triggers": {
+ "add": "Lisa päästik",
+ "delete": "Kustuta",
+ "delete_confirm": "Oled kindel, et soovid kustutada?",
+ "duplicate": "Paljunda",
+ "edit_id": "Päästiku ID muutmine",
+ "header": "Päästikud",
+ "id": "Päästiku ID",
+ "introduction": "Päästikud on need, millest algab automatiseeringu töö. Ühe automatiseeringu jaoks on võimalik määrata mitu päästikut. Kui päästik vallandub, kontrollib Home Assistant võimalike tingimuste täidetust ja käivitab tegevuse.",
+ "learn_more": "Lisateave päästikute kohta",
+ "name": "Päästik",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Üle",
+ "below": "Alla",
+ "for": "Kestus (valikuline)",
+ "zone": "Tsoon"
+ },
+ "label": "Seade",
+ "trigger": "Päästik"
+ },
+ "event": {
+ "context_user_pick": "Vali kasutaja",
+ "context_user_picked": "Kasutaja kes vallandas sündmuse",
+ "context_users": "Piira sündmustega mille on käivitanud",
+ "event_data": "Sündmuse andmed",
+ "event_type": "Sündmuse tüüp",
+ "label": "Sündmus"
+ },
+ "geo_location": {
+ "enter": "Sisenemine",
+ "event": "Sündmus:",
+ "label": "Geolokatsioon",
+ "leave": "Väljumine",
+ "source": "Allikas",
+ "zone": "Tsoon"
+ },
+ "homeassistant": {
+ "event": "Sündmus:",
+ "label": "Home Assistant",
+ "shutdown": "Seiskamine",
+ "start": "Käivitamine"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Kandam (valikuline)",
+ "topic": "Teema"
+ },
+ "numeric_state": {
+ "above": "Üle",
+ "below": "Alla",
+ "label": "Numbriline olek",
+ "value_template": "Väärtuse mall (valikuline)"
+ },
+ "state": {
+ "attribute": "Atribuut (valikuline)",
+ "for": "Jaoks (valikuline)",
+ "from": "Algväärtus (valikuline)",
+ "label": "Olek",
+ "to": "Lõppväärtus (valikuline)"
+ },
+ "sun": {
+ "event": "Sündmus:",
+ "label": "Päike",
+ "offset": "Nihe (valikuline)",
+ "sunrise": "Tõus",
+ "sunset": "Loojang"
+ },
+ "tag": {
+ "label": "Silt"
+ },
+ "template": {
+ "label": "Mall",
+ "value_template": "Väärtuse mall"
+ },
+ "time": {
+ "at": "Kellaaeg",
+ "label": "Aeg",
+ "type_input": "Kuupäeva / kellaaja abistaja väärtus",
+ "type_value": "Kindel aeg"
+ },
+ "time_pattern": {
+ "hours": "Tundi",
+ "label": "Aeg",
+ "minutes": "Minutit",
+ "seconds": "Sekundit"
+ },
+ "webhook": {
+ "label": "Veebihaak",
+ "webhook_id": "Veebihaagi ID"
+ },
+ "zone": {
+ "enter": "Sisenemine",
+ "entity": "Asukohaga olem",
+ "event": "Sündmus:",
+ "label": "Tsoon",
+ "leave": "Lahkumine",
+ "zone": "Tsoon"
+ }
+ },
+ "type_select": "Päästiku tüüp",
+ "unsupported_platform": "Kasutajaliides ei toeta: {platform}"
+ },
+ "unsaved_confirm": "Sul on salvestamata muudatusi. Oled kindel, et soovid lahkuda?"
+ },
+ "picker": {
+ "add_automation": "Lisa automatiseering",
+ "delete_automation": "Kustuta automatiseering",
+ "delete_confirm": "Oled kindel, et soovid selle automatiseeringu kustutada?",
+ "dev_automation": "Automatiseeringu silumine",
+ "dev_only_editable": "Siluda saab ainult kordumatu ID-ga automatiseeringuid.",
+ "duplicate": "Paljunda",
+ "duplicate_automation": "Paljunda automatiseering",
+ "edit_automation": "Muuda automatiseeringut",
+ "header": "Automaatika redaktor",
+ "headers": {
+ "name": "Nimi"
+ },
+ "introduction": "Automaatika redaktor võimaldab teil luua ja muuta automatiseeringuid. Palun järgige allolevat linki, veendumaks, et oled Home Assistant'i õigesti seadistanud.",
+ "learn_more": "Lisateave automatiseeringute kohta",
+ "no_automations": "Ei leitud ühtegi automatiseeringut",
+ "only_editable": "Ainult automations.yaml failis defineeritud automatiseeringud on muudetavad.",
+ "pick_automation": "Vali muudetav automatiseering",
+ "show_info_automation": "Kuva automatiseeringu teave"
+ },
+ "thingtalk": {
+ "create": "Loo automatiseering",
+ "link_devices": {
+ "ambiguous_entities": "Ühel või mitmel seadmel on mitu sobivat olemit, palun vali see, mida soovid kasutada.",
+ "header": "Suurepärane! Nüüd peame lisama mõned seadmed",
+ "unknown_placeholder": "Tundmatu kohatäide"
+ },
+ "task_selection": {
+ "error_empty": "Sisesta käsk või vajuta Jäta vahele.",
+ "error_unsupported": "Me ei saanud selle jaoks (veel?) automaatiseeringut luua .",
+ "for_example": "Näiteks:",
+ "header": "Loo uus automatiseering",
+ "introduction": "Sisesta allpool, mida see automaatiseering peaks tegema, ja proovime selle teisendada Home Assistanti automaatiseeringuks.",
+ "language_note": "Märkus: praegu toetatakse ainult inglise keelt."
+ }
+ },
+ "trace": {
+ "download_trace": "Lae jada alla",
+ "edit_automation": "Muuda automatiseeringut",
+ "newer_trace": "Uusim jada",
+ "older_trace": "Vanim jada",
+ "refresh": "Uuenda"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "kogukonna foorumid",
+ "error_no_url": "Sisesta kavandi URL.",
+ "file_name": "Kohaliku kavandifaili asukoht",
+ "header": "Impordi kavand",
+ "import_btn": "Kavandi eelvaade",
+ "import_header": "Kavand \"{name}\"",
+ "import_introduction_link": "Teiste kasutajate kavandeid saad importida Githubist ja lehelt {community_link}. Sisesta allpool kavandi URL.",
+ "importing": "Kavandi laadimine...",
+ "raw_blueprint": "Kavandi sisu",
+ "save_btn": "Impordi kavand",
+ "saving": "Kavandi importimine…",
+ "unsupported_blueprint": "Seda kavandit ei toetata",
+ "url": "Kavandi URL"
+ },
+ "caption": "Kavandid",
+ "description": "Kavandite haldamine",
+ "overview": {
+ "add_blueprint": "Laadi kavand",
+ "confirm_delete_header": "Kas kustutada see kavand?",
+ "confirm_delete_text": "Kas soovid kindlasti selle kavandi kustutada?",
+ "create_automation": "Loo automatiseering",
+ "create_script": "Loo skript",
+ "delete_blueprint": "Kustuta kavand",
+ "discover_more": "Leia rohkem kavandeid",
+ "header": "Kavandi redaktor",
+ "headers": {
+ "domain": "Domeen",
+ "file_name": "Faili nimi",
+ "name": "Nimi",
+ "type": "Tüüp"
+ },
+ "introduction": "Kavandite seadistus võimaldab importida ja hallata oma kavandeid.",
+ "learn_more": "Lisateave kavandite kasutamise kohta",
+ "share_blueprint": "Kavandi jagamine",
+ "share_blueprint_no_url": "Kavandit ei saa jagada: URL puudub",
+ "types": {
+ "automation": "Automatiseering",
+ "script": "Skript"
+ },
+ "use_blueprint": "Loo automatiseering"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Konfiguratsiooni dokumentatsioon",
+ "disable": "keela",
+ "enable": "luba",
+ "enable_ha_skill": "Aktiveerige Home Assistanti oskused Alexa jaoks",
+ "enable_state_reporting": "Lubada olekuteavitused",
+ "info": "Google Assistanti integreerimisel läbi Home Assistant Cloudi saate juhtida kõiki oma Home Assistanti seadmeid mis tahes Alexa toega seadme kaudu.",
+ "info_state_reporting": "Kui lubate olekute avaldamise, saadab Home Assistant Amazon'ile kõik avaldatud olemite olekumuutused. See võimaldab Teil alati näha Alexa rakenduses uusimaid olekuid.",
+ "manage_entities": "Halda olemeid",
+ "state_reporting_error": "Aruande olekut ei saa {enable_disable} .",
+ "sync_entities": "Sünkrooni olemid Amazoniga",
+ "sync_entities_error": "Olemite sünkroonimine ebaõnnestus:",
+ "title": "Alexa"
+ },
+ "connected": "Ühendatud",
+ "connecting": "Ühendun…",
+ "connection_status": "Pilveühenduse olek",
+ "fetching_subscription": "Tellimuse andmete toomine …",
+ "google": {
+ "config_documentation": "Konfiguratsiooni dokumentatsioon",
+ "devices_pin": "Turvaseadmete PIN kood",
+ "enable_ha_skill": "Aktiveeri Home Assistanti oskused Google Assistantis",
+ "enable_state_reporting": "Lubada olekuteavitused",
+ "enter_pin_error": "PIN koodi ei saa salvestada:",
+ "enter_pin_hint": "Turvaseadmete kasutamiseks sisesta PIN",
+ "enter_pin_info": "Turvaseadmetega suhtlemiseks sisesta PIN kood. Turvaseadmed on uksed, garaažiuksed ja lukud. Google Assistanti kaudu selliste seadmetega suheldes tuleb see PIN kood öelda / sisestada.",
+ "info": "Google Assistanti integreerimisel läbi Home Assistant Cloudi saate juhtida kõiki oma Home Assistanti seadmeid mis tahes Google Assistanti toega seadme kaudu.",
+ "info_state_reporting": "Kui lubate olekute avaldamise, saadab Home Assistant Google'ile kõik avaldatud olemite olekumuutused. See võimaldab Teil alati näha Google'i rakenduses uusimaid olekuid.",
+ "manage_entities": "Halda olemeid",
+ "not_configured_text": "Enne Google Assistanti kasutamist pead Google Home rakenduses aktiveerima Google Assistanti Home Assistant Cloud sidumise.",
+ "not_configured_title": "Google Assistant'i sidumine pole aktiveeritud",
+ "security_devices": "Turvaseadmed",
+ "sync_entities": "Sünkrooni olemid Google'iga",
+ "sync_entities_404_message": "Teie olemite Google'iga sünkroonimine ebaõnnestus, paluge Google'il teie olemite sünkroonimist \"Hey Google, sync my devices\".",
+ "title": "Google Assistant"
+ },
+ "integrations": "Sidumised",
+ "integrations_introduction": "Home Assistant Cloudi integreerimine võimaldab Teil luua ühenduse pilveteenustega ilma, et peaksite oma Home Assistanti Internetis avalikult leitavaks tegema.",
+ "integrations_introduction2": "Kontrollige veebisaiti, kas ",
+ "integrations_link_all_features": "kõik saadaolevad funktsioonid",
+ "manage_account": "Halda kontot",
+ "nabu_casa_account": "Nabu Casa konto",
+ "not_connected": "Pole ühendatud",
+ "remote": {
+ "access_is_being_prepared": "Kaugjuurdepääsu seadistatakse. Teavitame kui see on saadaval.",
+ "certificate_info": "Sertifikaadi teave",
+ "connected": "Ühendatud",
+ "info": "Home Assistant Cloud pakub turvalist kaugühendust Home Assistantiga kodust eemal olles.",
+ "instance_is_available": "Teie Home Assistant on saadaval aadressil",
+ "instance_will_be_available": "Teie Home Assistanti aadressiks saab",
+ "link_learn_how_it_works": "Loe kuidas see töötab",
+ "not_connected": "Ühendus puudub",
+ "reconnecting": "Ühendus puudub. Taasühendan.",
+ "remote_enabled": {
+ "caption": "Ühendu automaatselt",
+ "description": "Lubage see valik, et Home Assistantt oleks alati eemalt kättesaadav."
+ },
+ "title": "Kaugjuhtimine"
+ },
+ "sign_out": "Logi välja",
+ "thank_you_note": "Täname, et liitusite Home Assistanti pilvega. Just teiesuguste inimeste tõttu suudame me pakkuda kõigile suurepärase Home Assistanti kogemuse. Aitäh!",
+ "tts": {
+ "default_language": "Vaikimisi kasutatav keel",
+ "dialog": {
+ "create_automation": "Loo automatiseering",
+ "example_message": "Tere {name}, saad esitada mis tahes teksti mis tahes toetatud meediaesitajas!",
+ "header": "Proovi teksti kõneks toimimist",
+ "play": "Esita",
+ "target": "Meediaesitaja",
+ "target_browser": "Veebilehitseja"
+ },
+ "female": "Naissoost",
+ "info": "Too isikupära oma koju kasutades meie kõnesünteesiteenuseid. Saad seda kasutada automaatiseeringutes ja skriptides kasutades {service} .",
+ "male": "Meessoost",
+ "title": "Tekst kõneks",
+ "try": "Proovi"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Veebihaagi keelamine ebaõnnestus:",
+ "info": "Kõigele mis on konfigureeritud veebihaagi käivitamisel võib anda avalikult ligipääsetava URL-i, mis võimaldab teil saata andmeid Home Assistantile kõikjalt ilma et Teie seade oleks Internetis nähtav.",
+ "link_learn_more": "Lisateave veebihaagi abil töötavate automaatiseeringute loomise kohta.",
+ "loading": "Laadin …",
+ "manage": "Halda",
+ "no_hooks_yet": "Paistab, et Teil pole veel loodud veebihaake. Alustamiseks konfigureerige ",
+ "no_hooks_yet2": " või luues ",
+ "no_hooks_yet_link_automation": "veebihaagi automatiseering",
+ "no_hooks_yet_link_integration": "veebihaagipõhine sidumine",
+ "title": "Veebihaagid"
+ }
+ },
+ "alexa": {
+ "banner": "Avaldatavate olemite redaktor on keelatud, kuna seaded asuvad configuration.yaml failis.",
+ "dont_expose_entity": "Ära avalda olemit",
+ "expose": "Avalda Alexa'le",
+ "expose_entity": "Avalda olem",
+ "exposed": "{selected} avaldatavad",
+ "exposed_entities": "Avaldatud olemid",
+ "follow_domain": "Vastavalt valdkonnale",
+ "manage_domains": "Halda valdkondi",
+ "not_exposed": "{selected} pole avaldatud",
+ "not_exposed_entities": "Mitteavaldatud olemid",
+ "title": "Alexa"
+ },
+ "description_features": "Juhi kodust eemal viibides, seo Alexa ja Google Assistant'iga.",
+ "description_login": "Sisse logitud kui {email}",
+ "description_not_login": "Pole sisse logitud",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Sertifikaadi aegumiskuupäev:",
+ "certificate_information": "Sertifikaadi teave",
+ "close": "Sulge",
+ "fingerprint": "Sertifikaadi sõrmejälg:",
+ "will_be_auto_renewed": "uuendatakse automaatselt"
+ },
+ "dialog_cloudhook": {
+ "available_at": "Veebihook on saadaval järgmisel URL-il:",
+ "close": "Sulge",
+ "confirm_disable": "Oled kindel, et soovid selle veebihaagi keelata?",
+ "copied_to_clipboard": "Kopeeritud lõikepuhvrisse",
+ "info_disable_webhook": "Kui sa ei soovi enam seda veebihaaki kasutada, võid",
+ "link_disable_webhook": "keela see",
+ "managed_by_integration": "Seda veebihaaki haldab integreerimine ja seda ei saa keelata.",
+ "view_documentation": "Vaata dokumentatsiooni",
+ "webhook_for": "Veebihaak {name} jaoks"
+ },
+ "forgot_password": {
+ "check_your_email": "Parooli lähtestamise kohta saate juhiseid oma e-posti aadressilt.",
+ "email": "E-post",
+ "email_error_msg": "Vigane meiliaadress",
+ "instructions": "Sisesta oma e-posti aadress ja me saadame teile lingi parooli lähtestamiseks.",
+ "send_reset_email": "Saatke lähtestamismeil",
+ "subtitle": "Unustasid oma salasõna",
+ "title": "Unustasid salasõna"
+ },
+ "google": {
+ "banner": "Avaldatavate olemite redaktor on keelatud, kuna seaded asuvad configuration.yaml failis.",
+ "disable_2FA": "Keela kaheastmeline autentimine",
+ "dont_expose_entity": "Ära avalda olemit",
+ "expose": "Avalda Google Assistant'ile",
+ "expose_entity": "Avalda olem",
+ "exposed": "{selected} avaldatud",
+ "exposed_entities": "Avaldatud olemid",
+ "follow_domain": "Vastavalt valdkonnale",
+ "manage_domains": "Halda valdkondi",
+ "not_exposed": "{selected} pole avaldatud",
+ "not_exposed_entities": "Mitteavaldatud olemid",
+ "sync_to_google": "Sünkroonin muutusi Google'iga",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Enne sisselogimist peate oma e-posti aadressi kinnitama.",
+ "alert_password_change_required": "Enne sisselogimist pead parooli muutma.",
+ "dismiss": "Loobu",
+ "email": "E-post",
+ "email_error_msg": "Vigane meiliaadress",
+ "forgot_password": "Unustasid salasõna?",
+ "introduction": "Home Assistant Cloud pakub kodust eemal olles turvalist kaugühendust teie seadmega. See võimaldab teil ühenduda ka pilveteenustega nagu Amazon Alexa ja Google Assistant.",
+ "introduction2": "Seda teenust haldab meie partner",
+ "introduction2a": ", Home Assistanti loojate asutatud ettevõte.",
+ "introduction3": "Home Assistant Cloud on ühe kuu tasuta prooviversiooniga liitumisteenus. Makseteave pole vajalik.",
+ "learn_more_link": "Lisateave Home Assistant Cloud kohta",
+ "password": "Salasõna",
+ "password_error_msg": "Salasõnad on vähemalt 8 tähemärki",
+ "sign_in": "Logi sisse",
+ "start_trial": "Alusta oma tasuta 1-kuulist prooviversiooni",
+ "title": "Pilve sisselogimine",
+ "trial_info": "Makseteavet pole vaja"
+ },
+ "register": {
+ "account_created": "Konto loodud! Konto aktiveerimise kohta saate juhiseid oma e-posti aadressilt.",
+ "create_account": "Loo konto",
+ "email_address": "E-posti aadress",
+ "email_error_msg": "Vigane meiliaadress",
+ "feature_amazon_alexa": "Sidumine Amazon Alexa'ga",
+ "feature_google_home": "Sidumine Google Assistant'iga",
+ "feature_remote_control": "Juhi oma Home Assistanti kodust eemal",
+ "feature_webhook_apps": "Lihtne sidumine veebihaagi-põhiste rakenduste nagu OwnTracks",
+ "headline": "Alusta tasuta prooviperioodi",
+ "information": "Looge konto, et alustada oma tasuta ühekuulist prooviversiooni Home Assistant pilvega. Makseteave pole vajalik.",
+ "information2": "Prooviversioon annab teile juurdepääsu kõigile Home Assistant Cloudi eelistele, sealhulgas:",
+ "information3": "Seda teenust haldab meie partner",
+ "information3a": ", Home Assistanti loojate asutatud ettevõte.",
+ "information4": "Konto registreerimisega nõustud järgmiste tingimustega.",
+ "link_privacy_policy": "Privaatsuspoliitika",
+ "link_terms_conditions": "Tingimused",
+ "password": "Salasõna",
+ "password_error_msg": "Salasõnad on vähemalt 8 tähemärki",
+ "resend_confirm_email": "Saada kinnitusmeil uuesti",
+ "start_trial": "Alusta proovimist",
+ "title": "Loo konto"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Sul on salvestamata muudatusi. Oled kindel, et soovid lahkuda?"
+ },
+ "learn_more": "Lisateave"
+ },
+ "core": {
+ "caption": "Üldine",
+ "description": "Asukoht, võrk ja edastatav teave",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Rahaühik",
+ "edit_requires_storage": "Redaktor on keelatud, kuna seaded asuvad configuration.yaml failis.",
+ "elevation": "Kõrgus",
+ "elevation_meters": "meetrit",
+ "external_url": "Välispääsu URL",
+ "find_currency_value": "Leia oma väärtus",
+ "imperial_example": "Fahrenheit, naelad",
+ "internal_url": "Kohaliku võrgu URL",
+ "latitude": "Laius",
+ "location_name": "Sinu Home Assistant paigalduse nimi",
+ "longitude": "Pikkus",
+ "metric_example": "Celsius, kilogrammid",
+ "save_button": "Salvesta",
+ "time_zone": "Ajavöönd",
+ "unit_system": "Ühikute süsteem",
+ "unit_system_imperial": "Imperiaalne süsteem",
+ "unit_system_metric": "Meetermõõdustik"
+ },
+ "header": "Seadete ja serveri kontroll",
+ "introduction": "Halda oma asukohta, võrku ja edastatavat teavet."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Need atribuudid on juba määratud kirjes customize.yaml",
+ "attributes_not_set": "Neid olemi atribuute ei määratud. Kui soovite, määrake need.",
+ "attributes_outside": "Need olemi atribuudid on kohandatud väljastpool customize.yaml-i",
+ "attributes_override": "Soovi korral saate neid muuta.",
+ "attributes_set": "Need olemi atribuudid määratakse programmiliselt.",
+ "caption": "Kohandamised",
+ "description": "Kohanda oma olemeid",
+ "different_include": "Võimalik domeeni, globaalse või mõne muu lisamise kaudu.",
+ "pick_attribute": "Vali muudetav atribuut",
+ "picker": {
+ "documentation": "Kohandamiste dokumentatsioon",
+ "header": "Kohandamine",
+ "introduction": "Kohanda olemi atribuute. Lisatud või muudetud kohandamised rakenduvad kohe. Eemaldatud kohandamised rakenduvad olemi värskendamisel."
+ },
+ "warning": {
+ "include_link": "kaasa customize.yaml",
+ "include_sentence": "Tundub, et Teie configuration.yaml ei tee õigesti",
+ "not_applied": "Siin tehtud muudatused on salvestatud kuid neid ei rakendata enne konfiguratsiooni uuesti laadimist kui kaasamine pole paigas."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Halda automatiseeringuid, stseene, skripte ja abistajaid",
+ "title": "Automatiseerimised ja stseenid"
+ },
+ "blueprints": {
+ "description": "Kogukonna poolt loodud automaatiseeringute ja skriptide kavandid",
+ "title": "Kavandid"
+ },
+ "companion": {
+ "description": "Asukoht ja teavitused",
+ "title": "Mobiilirakendus"
+ },
+ "dashboards": {
+ "description": "Loo oma kodu juhtimiseks kohandatud juhtpaneele",
+ "title": "Vaated"
+ },
+ "devices": {
+ "description": "Sidumised, seadmed, olemid ja alad",
+ "title": "Seadmed ja teenused"
+ },
+ "energy": {
+ "description": "Jälgi oma energiatootmist ja -tarbimist",
+ "title": "Energia"
+ },
+ "people": {
+ "description": "Halda inimesi ja tsoone, mida Home Assistant jälgib",
+ "title": "Inimesed ja tsoonid"
+ },
+ "settings": {
+ "description": "Põhiseaded, serveri juhtelemendid, logid ja teave",
+ "title": "Seaded"
+ },
+ "supervisor": {
+ "description": "Varukoopiate loomine, logide kontrollimine või süsteemi taaskäivitamine",
+ "title": "Lisandmoodulid, varukoopiad ja Supervisor"
+ },
+ "tags": {
+ "description": "Käivita automaatiseering NFC märgise, QR-koodi jne. skännimisel",
+ "title": "Märgised"
+ }
+ },
+ "devices": {
+ "add_prompt": "Selle seadme abil pole veel ühtegi {name} lisatud. Saate lisada klõpsates ülal nuppu +.",
+ "automation": {
+ "actions": {
+ "caption": "Kui midagi käivitatakse …",
+ "no_actions": "Tegevused puuduvad",
+ "unknown_action": "Tundmatu tegevus"
+ },
+ "automations": "Automatiseeringud",
+ "conditions": {
+ "caption": "Tee midagi ainult siis kui …",
+ "no_conditions": "Tingimused puuduvad",
+ "unknown_condition": "Tundmatu tingimus"
+ },
+ "create": "Loo seadmega automatiseering",
+ "create_disable": "Keelatud seadmega ei saa automaatiseeringuid luua",
+ "no_automations": "Automatiseeringuid pole",
+ "no_device_automations": "Selle seadme jaoks pole automatiseerimisi saadaval.",
+ "triggers": {
+ "caption": "Tee midagi kui...",
+ "no_triggers": "Päästikud puuduvad",
+ "unknown_trigger": "Tundmatu päästik"
+ },
+ "unknown_automation": "Tundmatu automatiseering"
+ },
+ "cant_edit": "Saate muuta ainult kasutajaliideses loodud üksusi.",
+ "caption": "Seadmed",
+ "confirm_delete": "Oled kindel, et soovid selle seadme kustutada?",
+ "confirm_disable_config_entry": "Seadistuskirje {entry_name} jaoks pole enam seadmeid. Kas soovid selle asemel seadistuskirje keelata?",
+ "confirm_rename_entity_ids": "Kas soovid ka oma olemite ID-d ümber nimetada?",
+ "confirm_rename_entity_ids_warning": "See ei muuda ühtegi konfiguratsiooni (nt. automatiseerimised, skriptid, stseenid, Lovelace) mis neid olemeid praegu kasutab. Peate neid ise värskendama.",
+ "data_table": {
+ "area": "Ala",
+ "battery": "Aku",
+ "device": "Seade",
+ "integration": "Sidumine",
+ "manufacturer": "Tootja",
+ "model": "Mudel",
+ "no_devices": "Seadmeid pole",
+ "no_integration": "Sidumised puuduvad"
+ },
+ "delete": "Kustuta",
+ "description": "Halda häälestatud seadmeid",
+ "device_info": "Seadme info",
+ "device_not_found": "Seadet ei leitud.",
+ "disabled": "Keelatud",
+ "disabled_by": {
+ "config_entry": "Seade kanne",
+ "integration": "Sidumine",
+ "user": "Kasutaja"
+ },
+ "download_diagnostics": "Lae diagnostika alla",
+ "edit_settings": "Muuda sätteid",
+ "enabled_cause": "{cause} on seadme keelanud.",
+ "enabled_description": "Keelatud seadmeid ei kuvata ja seadmele kuuluvad olemid keelatakse ning neid ei lisata Home Assistantile.",
+ "enabled_label": "Luba seade",
+ "entities": {
+ "add_entities_lovelace": "Lisa Lovelace'i",
+ "config": "Seaded",
+ "control": "Juhtelemendid",
+ "diagnostic": "Tõrkeotsing",
+ "disabled_entities": "{count} {count, plural,\n one {keelatud olem}\n other {keelatud olemit}\n}",
+ "entities": "Olemid",
+ "hide_disabled": "Peida keelatud",
+ "none": "Sellel seadmel pole olemeid",
+ "sensor": "Andurid",
+ "state": "Olek"
+ },
+ "name": "Nimi",
+ "no_devices": "Seadmeid pole",
+ "open_configuration_url_device": "Seadme külastamine",
+ "open_configuration_url_service": "Külasta teenust",
+ "picker": {
+ "filter": {
+ "filter": "Filtreeri",
+ "hidden_devices": "{number} peidetud {number, plural,\n one {olem}\n other {olemit}\n}",
+ "show_all": "Kuva kõik",
+ "show_disabled": "Kuva keelatud seadmed"
+ },
+ "search": "Otsi seadmeid"
+ },
+ "scene": {
+ "create": "Loo seadmega stseen",
+ "create_disable": "Keelatud seadmega ei saa stseene luua",
+ "no_scenes": "Stseene pole",
+ "scenes": "Stseenid"
+ },
+ "scenes": "Stseenid",
+ "script": {
+ "create": "Loo seadmega skript",
+ "create_disable": "Keelatud seadmega ei saa skripte luua",
+ "no_scripts": "Skripte pole",
+ "scripts": "Skriptid"
+ },
+ "scripts": "Skriptid",
+ "unknown_error": "Tundmatu viga",
+ "unnamed_device": "Nimetu seade",
+ "update": "Uuenda",
+ "update_device_error": "Seadme värskendamine nurjus"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Akusüsteemi lisamine",
+ "battery_systems": "Akusüsteemid",
+ "dialog": {
+ "energy_into_battery": "Akusse minev energia (kWh)",
+ "energy_out_of_battery": "Akust tulev energia (kWh)",
+ "header": "Seadista akusüsteem"
+ },
+ "learn_more": "Lisateave alustamise kohta.",
+ "sub": "Kui kasutusel on akusüsteem, saad selle seadistada nii, et see jälgib, kui palju energiat akusse salvestati ja kasutati.",
+ "title": "Koduse akupanga mahtuvus"
+ },
+ "caption": "Energia",
+ "delete_integration": "Kas oled kindel, et soovid selle sidumise kustutada? See eemaldab pakutavad üksused",
+ "delete_source": "Kas olete kindel, et soovid selle allika kustutada?",
+ "description": "Jälgi oma energiatootmist ja -tarbimist",
+ "device_consumption": {
+ "add_device": "Lisa seade",
+ "add_stat": "Vali olem energia jälgimiseks",
+ "devices": "Seadmed",
+ "dialog": {
+ "device_consumption_energy": "Seadme energiatarve (kWh)",
+ "header": "Lisa seade",
+ "selected_stat_intro": "Vali olem mis näitab seadme energiatarbimist."
+ },
+ "learn_more": "Lisateave alustamise kohta.",
+ "selected_stat": "Energia jälgimine",
+ "sub": "Üksikute seadmete energiakasutuse jälgimine võimaldab Home Assistantil jaotada energiakasutuse seadmete kaupa.",
+ "title": "Üksikud seadmed"
+ },
+ "gas": {
+ "add_gas_source": "Gaasiallika lisamine",
+ "dialog": {
+ "cost_entity": "Kasuta praeguse hinnaga olemit",
+ "cost_entity_input": "Praeguse hinnaga olem {unit} kohta",
+ "cost_number": "Kasuta püsihinda",
+ "cost_number_input": "Hind {unit} kohta",
+ "cost_number_suffix": "{currency} /m³",
+ "cost_para": "Saad valida kuidas Home Assistant peaks tarbitud energia kulusid jälgima.",
+ "cost_stat": "Kogukulusid jälgiva olemi kasutamine",
+ "cost_stat_input": "Olem mis jälgib kogukulusid",
+ "energy_stat": "Tarbitud energia (m³)",
+ "gas_usage": "Gaasi tarbimine",
+ "header": "Gaasitarbimise seadistamine",
+ "m3_or_kWh": "ft³, m³, Wh, kWh või MWh",
+ "no_cost": "Ära jälgi kulusid",
+ "paragraph": "Gaasitarbimine on gaasi kogus mis kulub elamises."
+ },
+ "gas_consumption": "Gaasi tarbimine",
+ "learn_more": "Lisateave alustamise kohta.",
+ "sub": "Luba Home Assistantil jälgida oma gaasikasutust.",
+ "title": "Gaasi tarbimine"
+ },
+ "grid": {
+ "add_co2_signal": "Lisa CO2 taseme sidumine",
+ "add_consumption": "Lisa tarbimine",
+ "add_return": "Lisa tagastus",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Kasuta praeguse hinnaga olemit",
+ "cost_entity_input": "Praeguse hinnaga olem",
+ "cost_number": "Kasutage püsihinda",
+ "cost_number_input": "Hind kWh kohta",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Saad valida kuidas Home Assistant peaks tarbitud energia kulusid jälgima.",
+ "cost_stat": "Kogukulusid jälgiva olemi kasutamine",
+ "cost_stat_input": "Olem mis jälgib kogukulusid",
+ "energy_stat": "Tarbitud energia (kWh)",
+ "header": "Võrgu tarbimise seadistamine",
+ "no_cost": "Ära jälgi kulusid",
+ "paragraph": "Võrgu tarbimine on energia, mis tuleb energiavõrgust teie koju."
+ },
+ "to": {
+ "cost_entity": "Kasuta praeguse hinnaga olemit",
+ "cost_entity_input": "Praeguse hinnaga olem",
+ "cost_number": "Kasuta püsitariifi",
+ "cost_number_input": "Hind kWh kohta",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Kas te saad raha tagasi kui tagastad energiat võrku?",
+ "cost_stat": "Kogu saadud raha jälgiva olemi kasutamine",
+ "cost_stat_input": "Olem mis jälgib saadud omatoodangut",
+ "energy_stat": "Võrku tagastatud energia (kWh)",
+ "header": "Võrgu tootmise seadistamine",
+ "no_cost": "Ma ei saa raha tagasi.",
+ "paragraph": "Võrgu tootmine on energia, mis päikesepaneelid annavad võrku."
+ }
+ },
+ "grid_carbon_footprint": "Süsinikdioksiidi jalajälg",
+ "grid_consumption": "Tarbimine võrgust",
+ "learn_more": "Lisateave alustamise kohta.",
+ "return_to_grid": "Võrku tagastamine",
+ "sub": "Seadista võrgus tarbitava energia erinevad tariifid ja kui tagastad energiat võrku, siis energia, mille võrku tagasi annad. See võimaldab Home Assistantil jälgida tarbimiskoha energiakasutust.",
+ "title": "Elektrivõrk"
+ },
+ "new_device_info": "Pärast uue seadme seadistamist võib kuluda kuni 2 tundi, enne kui uued andmed jõuavad energiapaneelile.",
+ "solar": {
+ "add_solar_production": "Päikeseenergia tootmise lisamine",
+ "dialog": {
+ "add_forecast": "Lisa ennustus",
+ "dont_forecast_production": "Ära ennusta tootmist",
+ "forecast_production": "Tootmise ennustus",
+ "header": "Päikesepaneelide seadistamine",
+ "solar_production_energy": "Päikeseenergia tootmine (kWh)",
+ "solar_production_forecast": "Päikeseenergia tootmise ennustus",
+ "solar_production_forecast_description": "Päikeseenergia tootmise ennustuse lisamine võimaldab kiiresti näha oma tänast oodatavat toodangut."
+ },
+ "learn_more": "Lisateave alustamise kohta.",
+ "solar_production": "Päikeseenergia tootmine",
+ "stat_predicted_production": "Päikeseenergia tootmise prognoos",
+ "stat_production": "Päikeseenergia tootmine",
+ "stat_return_to_grid": "Võrku tagastatud päikeseenergia (kWh)",
+ "sub": "Luba Home Assistantil jälgida oma päikesepaneele ja anda ülevaade nende jõudlusest.",
+ "title": "Päikesepaneelid"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "Järgmistel olemitel on negatiivne olek, samas kui eeldatakse positiivset olekut:",
+ "title": "Olemil on negatiivne olek"
+ },
+ "entity_not_defined": {
+ "description": "Kontrollige integratsiooni või oma konfiguratsiooni, mis pakub:",
+ "title": "Olem on määratlemata"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "Järgmistel olemitel on olekuklass 'measurement' kuid puudub 'last_reset':",
+ "title": "Olekuklass 'last_reset' puudub"
+ },
+ "entity_state_non_numeric": {
+ "description": "Järgnevatel üksustel on olek, mida ei saa analüüsida numbrina:",
+ "title": "Olemil on mittenumbriline olek"
+ },
+ "entity_unavailable": {
+ "description": "Nende konfigureeritud üksuste olekud ei ole praegu kättesaadavad:",
+ "title": "Olem pole saadaval"
+ },
+ "entity_unexpected_device_class": {
+ "description": "Järgmistel olemitel puudub oodatud seadmeklass:",
+ "title": "Ootamatu seadmeklass"
+ },
+ "entity_unexpected_state_class": {
+ "description": "Järgmistel olemitel puudub oodatud olekuklass:",
+ "title": "Ootamatu olekuklass"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "Järgmistel olemitel pole eeldatavat olekuklassi 'total_increasing'",
+ "title": "Ootamatu olekuklass"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "Järgmistel olemitel pole eeldatavaid mõõtühikuid MWh, kWh või Wh:",
+ "title": "Ootamatu mõõtühik"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "Järgmistel olemitel pole eeldatavaid mõõtühikuid \"{currency}/kWh\", ''{currency}/MWh'' või \"{currency}/Wh\":",
+ "title": "Ootamatu mõõtühik"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "Järgmistel olemitel puuduvad eeldatavad mõõtühikud 'Wh', 'kWh' või 'MWh' energiaanduri puhul või 'm³' või 'ft³' gaasianduri puhul:",
+ "title": "Ootamatu mõõtühik"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "Järgmistel olemitel pole eeldatavaid mõõtühikuid ''{currency}/kWh'', ''{currency}/Wh'',\"{currency}/MWh'', ''{currency}/m³'' või ''{currency}/ft³'':",
+ "title": "Ootamatu mõõtühik"
+ },
+ "recorder_untracked": {
+ "description": "Salvesti on konfigureeritud välistama järgmisi konfigureeritud olemeid:",
+ "title": "Olemit ei jälgita"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Olemite register",
+ "description": "Ülevaade kõikidest teadaolevatest olemitest.",
+ "picker": {
+ "disable_selected": {
+ "button": "Keela valitud",
+ "confirm_text": "Keelatud olemeid ei lisata Home Assistant'i.",
+ "confirm_title": "Kas soovid keelata {number} {number, plural,\n one {olemi}\n other {olemit}\n}?"
+ },
+ "enable_selected": {
+ "button": "Luba valitud",
+ "confirm_text": "See muudab nad Home Assistanti uuesti kättesaadavaks kui nad on nüüd keelatud.",
+ "confirm_title": "Kas soovid lubada {number} {number, plural,\n one {olemi}\n other {olemit}\n}?"
+ },
+ "filter": {
+ "filter": "Filter",
+ "hidden_entities": "{number} hidden {number, plural,\n one {olem}\n other {olemit}\n}",
+ "show_all": "Kuva kõik",
+ "show_disabled": "Kuva keelatud olemid",
+ "show_readonly": "Näita kirjutuskaitstud olemeid",
+ "show_unavailable": "Kuva kättesaamatud olemid"
+ },
+ "header": "Olemid",
+ "headers": {
+ "area": "Ala",
+ "disabled_by": "Sidumise keelas",
+ "entity_id": "Olemi ID",
+ "integration": "Sidumine",
+ "name": "Nimi",
+ "status": "Olek"
+ },
+ "introduction": "Home Assistant peab registrit iga olemi kohta, mida ta kunagi näinud on ja mida saab üheselt tuvastada. Kõigile nendele olemitele antakse olemi ID, mis reserveeritakse ainult sellele olemile.",
+ "introduction2": "Kasuta olemite registrit olemi nime või ID muutmiseks või olemi eemaldamiseks Home Assistant'ist. Pane tähele, et olemi registrikirje eemaldamine ei eemalda olemit. Selleks järgi allolevat linki ja eemalda olem sidumiste lehelt.",
+ "remove_selected": {
+ "button": "Eemalda valitud",
+ "confirm_partly_text": "Saate eemaldada ainult {removable} valitud {selected} üksustest. Üksusi saab eemaldada ainult siis kui sidumine üksusi enam ei paku. Mõnikord peate enne eemaldatud sidumise üksuste eemaldamist Home Assistenti taaskäivitama. Kas soovite kindlasti eemaldatavad üksused eemaldada?",
+ "confirm_partly_title": "Ainult {number} {number, plural,\n one {valitud olem}\n other {valitud olemit}\n} saab eemaldada.",
+ "confirm_text": "Te peaksite eemaldama need olemid Lovelace seadetest ja automaatiseeringutest kui need sisaldavad neid olemeid.",
+ "confirm_title": "Kas soovid eemaldada {number} {number, plural,\n one {olemi}\n other {olemit}\n}?"
+ },
+ "search": "Otsi olemeid",
+ "selected": "{number} valitud",
+ "status": {
+ "disabled": "Keelatud",
+ "ok": "Ok",
+ "readonly": "Kirjutuskaitstud",
+ "restored": "Taastatud",
+ "unavailable": "Pole saadaval"
+ }
+ }
+ },
+ "header": "Home Assistant'i seadistamine",
+ "helpers": {
+ "caption": "Abimehed",
+ "description": "Elemendid mis aitavad automatiseeringuid luua",
+ "dialog": {
+ "add_helper": "Lisage abistaja",
+ "add_platform": "Lisa {platform}",
+ "create": "Loo"
+ },
+ "picker": {
+ "add_helper": "Lisage abistaja",
+ "headers": {
+ "editable": "Redigeeritav",
+ "entity_id": "Olemi ID",
+ "name": "Nimi",
+ "type": "Tüüp"
+ },
+ "no_helpers": "Tundub, et teil pole veel ühtegi abistajat!"
+ },
+ "types": {
+ "counter": "Loendur",
+ "input_boolean": "Lülita",
+ "input_button": "Nupp",
+ "input_datetime": "Kuupäev ja / või kellaaeg",
+ "input_number": "Arvväärtus",
+ "input_select": "Rippmenüü",
+ "input_text": "Tekst",
+ "timer": "Taimer"
+ }
+ },
+ "info": {
+ "built_using": "Ehitatud kasutades",
+ "caption": "Info",
+ "copy_github": "GitHubi jaoks",
+ "copy_menu": "Kopeeri menüü",
+ "copy_raw": "Ainult tekst",
+ "custom_uis": "Kohandatud kasutajaliidesed:",
+ "description": "Versioon, süsteemi olek ja lingid dokumentatsioonile",
+ "developed_by": "Tehtud paljude lahedate inimeste poolt.",
+ "documentation": "Dokumentatsioon",
+ "frontend": "frontend-ui",
+ "frontend_version": "Frontend versioon: {version} - {type}",
+ "home_assistant_logo": "Home Assistant'i logo",
+ "icons_by": "Ikoonide autorid",
+ "integrations": "Sidumised",
+ "issues": "Probleemid",
+ "license": "Avaldatud Apache 2.0 litsentsi alusel",
+ "path_configuration": "configuration.yaml asukoht: {path}",
+ "server": "server",
+ "setup_time": "Käivitusaeg",
+ "source": "Allikas:",
+ "system_health": {
+ "manage": "Halda",
+ "more_info": "rohkem infot"
+ },
+ "system_health_error": "Süsteemi seisundi komponenti ei laadita. Lisage \"system_health:\" configuration.yaml"
+ },
+ "integrations": {
+ "add_integration": "Lisa sidumine",
+ "attention": "Vajalik on sekkumine",
+ "caption": "Sidumised",
+ "config_entry": {
+ "area": "alas {area}",
+ "check_the_logs": "Kontrolli logisid",
+ "configure": "Seadista",
+ "delete": "Kustuta",
+ "delete_confirm": "Oled kindel, et soovid selle sidumise {title} kustutada?",
+ "depends_on_cloud": "Sõltub pilveteenusest",
+ "device_unavailable": "Seade pole saadaval",
+ "devices": "{count} {count, plural,\n one {seade}\n other {seadet}\n}",
+ "disable": {
+ "disable_confirm": "Kas soovid selle seadistuskirje kindlasti keelata? Selle seadmed ja üksused keelatakse.",
+ "disabled": "Keelatud",
+ "disabled_by": {
+ "device": "seade",
+ "integration": "sidumine",
+ "user": "kasutaja"
+ },
+ "disabled_cause": "Keelatud {cause} põhjusel"
+ },
+ "disable_error": "Sidumise lubamine või keelamine nurjus",
+ "disable_restart_confirm": "Taaskäivita Home Assistant, et lõpetada selle sidumise keelamine",
+ "disabled_polling": "Uuendatud andmete automaatne päring on välja lülitatud",
+ "documentation": "Vaata dokumentatsiooni",
+ "download_diagnostics": "Lae diagnostika alla",
+ "enable_restart_confirm": "Selle sidumise lubamise lõpetamiseks taaskäivita Home Assistant",
+ "entities": "{count} {count, plural,\n one {olem}\n other{olemit}\n}",
+ "entity_unavailable": "Olem pole saadaval",
+ "firmware": "Püsivara: {version}",
+ "hardware": "Riistvara: {version}",
+ "hub": "Ühendatud",
+ "known_issues": "Teadaolevad probleemid",
+ "manuf": "{manufacturer}",
+ "no_area": "Ala puudub",
+ "not_loaded": "Pole laaditud",
+ "open_configuration_url": "Seadme külastamine",
+ "provided_by_custom_integration": "Saadaval välise sidumise kaudu",
+ "reload": "Taaslae",
+ "reload_confirm": "Sidumine on taaslaetud",
+ "reload_restart_confirm": "Taaskäivita Home Assistant, et lõpetada selle sidumise taaslaadimine",
+ "rename": "Nimeta ümber",
+ "restart_confirm": "Selle sidumise lõplikuks eemaldamiseks taaskäivita Home Assistant",
+ "services": "{count} {count, plural,\n one {teenus}\n other {teenust}\n}",
+ "state": {
+ "failed_unload": "Eemaldamine nurjus",
+ "loaded": "Laetud",
+ "migration_error": "Tõrge teisaldamisel",
+ "not_loaded": "Pole laaditud",
+ "setup_error": "Häälestamine nurjus",
+ "setup_retry": "Proovin uuesti seadistada"
+ },
+ "system_options": "Süsteemisuvandid",
+ "unknown_via_device": "Tundmatu seade",
+ "unnamed_entry": "Nimetu kanne",
+ "via": "Ühendatud läbi"
+ },
+ "config_flow": {
+ "aborted": "Katkestatud",
+ "close": "Sulge",
+ "could_not_load": "Konfiguratsioonivoogu ei saanud laadida",
+ "created_config": "Üksuse {name} jaoks on loodud konfiguratsioon.",
+ "dismiss": "Loobumisdialoog",
+ "error": "Viga",
+ "error_saving_area": "Viga ala salvestamisel: {error}",
+ "external_step": {
+ "description": "Selle etapi lõpetamine nõuab välise veebisaidi külastamist.",
+ "open_site": "Ava veebisait"
+ },
+ "finish": "Lõpeta",
+ "loading": {
+ "fallback_title": "sidumine",
+ "loading_flow": "Oota kuni {integration} on häälestatud",
+ "loading_step": "{integration} paigaldamise järgmist sammu laadimine"
+ },
+ "next": "Järgmine",
+ "not_all_required_fields": "Kõik nõutavad väljad pole täidetud.",
+ "not_loaded": "Sidumist ei õnnestunud laadida. Proovi taaskäivitada Home Assistant.",
+ "pick_flow_step": {
+ "new_flow": "Ei, seadista teine {integration} eksemplar",
+ "title": "Avastasime need, kas soovid neid seadistada?"
+ },
+ "submit": "Esita"
+ },
+ "configure": "Seadista",
+ "configured": "Seadistatud",
+ "confirm_new": "Kas soovid seadistada sidumist {integration}?",
+ "description": "Halda teenuste või seadmete sidumisi",
+ "details": "Sidumise üksikasjad",
+ "disable": {
+ "disabled_integrations": "{number} keelatut",
+ "show": "Kuva",
+ "show_disabled": "Kuva keelatud sidumised"
+ },
+ "discovered": "Leitud",
+ "home_assistant_website": "Home Assistant veebisait",
+ "ignore": {
+ "confirm_delete_ignore": "See muudab sidumise avastatud sidumistes uuesti ilmnema kui see avastatakse. See võib vajada taaskäivitamist või võtta veidi aega.",
+ "confirm_delete_ignore_title": "Kas lõpetada {name} eiramine?",
+ "confirm_ignore": "Olete Te kindel, et ei soovi seda integratsiooni seadistada? Selle saate tagasi võtta klõpsates paremas ülanurgas menüüs valikul „Kuva ignoreeritud sidumised”.",
+ "confirm_ignore_title": "Kas eirata {name} avastamist?",
+ "ignore": "Eira",
+ "ignored": "Eiratud",
+ "show_ignored": "Näita eiratud sidumisi",
+ "stop_ignore": "Lõpeta eiramine"
+ },
+ "integration": "sidumine",
+ "integration_not_found": "Sidumist ei leitud.",
+ "new": "Loo uus sidumine",
+ "no_integrations": "Tundub, et ühtegi sidumist pole veel lisatud. Esimese sidumise lisamiseks klõpsa allolevat nuppu!",
+ "none": "Midagi pole veel seadistatud",
+ "none_found": "Sidumisi ei leitud",
+ "none_found_detail": "Korrigeerige oma otsingukriteeriume.",
+ "note_about_integrations": "Otsingule ei vastanud ükski sidumine, soovitud üksus ei pruugi olla veel kasutajaliidese kaudu seadistamiseks saadaval.",
+ "note_about_website_reference": "Rohkem on saadaval ",
+ "reconfigure": "Seadistage uuesti",
+ "rename_dialog": "Muuda selle seadistuskirje nime",
+ "rename_input_label": "Kirje nimi",
+ "search": "Otsi sidumisi"
+ },
+ "introduction": "Siin saab seadistada oma komponente ja Home Assistant'i. Mitte kõike ei saa veel kasutajaliidese kaudu seadistada kuid me töötame selle nimel.",
+ "logs": {
+ "caption": "Logid",
+ "clear": "Puhasta",
+ "copy": "Kopeeri logikirje",
+ "custom_integration": "kohandatud sidumine",
+ "description": "Home Assistanti logid",
+ "details": "Logi üksikasjad ({level})",
+ "error_from_custom_integration": "Selle tõrke põhjustas kohandatud sidumine.",
+ "level": {
+ "critical": "OLULINE",
+ "debug": "SILUMINE",
+ "error": "VIGA",
+ "info": "TEAVE",
+ "warning": "HOIATUS"
+ },
+ "load_full_log": "Lae kogu Home Assistant'i logi",
+ "loading_log": "Laadin vigade logi...",
+ "multiple_messages": "teavitus esines esmakordselt kell {time} ja on ilmnenud {counter} korda",
+ "no_errors": "Vigu ei leitud.",
+ "no_issues": "Uusi probleeme pole!",
+ "refresh": "Värskenda"
+ },
+ "lovelace": {
+ "caption": "Lovelace vaated",
+ "dashboards": {
+ "cant_edit_default": "Vaikimisi Lovelace'i vaadet, Ülevaade, ei saa kasutajaliidesest redigeerida. Saad selle peita määrates vaikevaateks mõne muu vaate.",
+ "cant_edit_yaml": "Kasutate vaateid YAML režiimis. Seega ei saa Te hallata oma ressursse kasutajaliidese kaudu. Halda neid kirjes configuration.yaml.",
+ "caption": "Vaated",
+ "conf_mode": {
+ "storage": "Kasutajaliidese kontrolli all",
+ "yaml": "YAML-fail"
+ },
+ "confirm_delete": "Oled kindel, et soovid selle vaate kustutada?",
+ "confirm_delete_text": "Valitud vaade kustutatakse jäädavalt.",
+ "confirm_delete_title": "Kas kustutada {dashboard_title} ?",
+ "default_dashboard": "See on vaikevaade",
+ "detail": {
+ "create": "Loo",
+ "delete": "Kustuta",
+ "dismiss": "Sulge",
+ "edit_dashboard": "Muuda vaadet",
+ "icon": "Ikoon",
+ "new_dashboard": "Lisa uus vaade",
+ "remove_default": "Eemalda selles seadmes vaikimisättena",
+ "require_admin": "Ainult administraatorid",
+ "set_default": "Määra selles seadmes vaikesätteks",
+ "show_sidebar": "Kuva külgribal",
+ "title": "Pealkiri",
+ "title_required": "Pealkiri on nõutav.",
+ "update": "Uuenda",
+ "url": "URL",
+ "url_error_msg": "URL peaks sisaldama - ja ei tohi sisaldada tühikuid ega erimärke, välja arvatud _ ja -"
+ },
+ "picker": {
+ "add_dashboard": "Lisa vaade",
+ "headers": {
+ "conf_mode": "Seadistusmeetod",
+ "default": "Vaikimisi",
+ "filename": "Faili nimi",
+ "require_admin": "Ainult administraatorid",
+ "sidebar": "Kuva külgribal",
+ "title": "Nimetus"
+ },
+ "open": "Ava"
+ }
+ },
+ "description": "Loo oma kodu juhtimiseks kohandatud juhtpaneele",
+ "resources": {
+ "cant_edit_yaml": "Kasutate Lovelace YAML režiimis. Seega ei saa Te hallata oma ressursse kasutajaliidese kaudu. Halda neid kirjes configuration.yaml.",
+ "caption": "Ressursid",
+ "confirm_delete": "Kas soovite selle ressursi kindlasti kustutada?",
+ "detail": {
+ "create": "Loo",
+ "delete": "Kustuta",
+ "dismiss": "Sulge",
+ "new_resource": "Lisa uus ressurss",
+ "type": "Ressursi tüüp",
+ "update": "Uuenda",
+ "url": "",
+ "url_error_msg": "URL on kohustuslik väli",
+ "warning_header": "Ole ettevaatlik!",
+ "warning_text": "Ressursside lisamine võib olla ohtlik. Veenduge, et teate ressursi allikat ja usaldate neid. Halvad ressursid võivad tõsiselt kahjustada Teie süsteemi."
+ },
+ "picker": {
+ "add_resource": "Lisa uus ressurss",
+ "headers": {
+ "type": "Tüüp",
+ "url": "URL"
+ },
+ "no_resources": "Ressursid puuduvad"
+ },
+ "refresh_body": "Eemaldamise lõpuleviimiseks peate lehte värskendama. Kas soovite kohe värskendada?",
+ "refresh_header": "Kas soovite värskendada?",
+ "types": {
+ "css": "Stiilileht CSS",
+ "html": "HTML (aegunud)",
+ "js": "JavaScripti fail (aegunud)",
+ "module": "JavaScripti moodul"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Kuula teemat",
+ "description_publish": "Avaldage pakett",
+ "listening_to": "Kuulamas",
+ "message_received": "Teavitus {id} vastu võetud {topic} kell {time}:",
+ "payload": "Väärtus (mall lubatud)",
+ "publish": "Avalda",
+ "start_listening": "Alusta kuulamist",
+ "stop_listening": "Lõpeta kuulamine",
+ "subscribe_to": "Teema, mida tellida",
+ "title": "MQTT",
+ "topic": "teema"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Kontroller",
+ "instance": "Eksemplar",
+ "network": "Võrk",
+ "node_id": "Sõlme ID",
+ "ozw_instance": "OpenZWave'i eksemplar",
+ "query_stage": "Küsitlemine",
+ "wakeup_instructions": "Äratusjuhised",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Sõlm nurjus",
+ "stage": "Etapp",
+ "zwave_info": "Z-Wave info"
+ },
+ "navigation": {
+ "network": "Võrk",
+ "node": {
+ "config": "Seaded",
+ "dashboard": "Kasutajaliidese vaade"
+ },
+ "nodes": "Sõlmed",
+ "select_instance": "Valige eksemplar"
+ },
+ "network": {
+ "header": "Võrgu haldamine",
+ "introduction": "Kogu võrku hõlmavate funktsioonide haldamine.",
+ "node_count": "{count} sõlme"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "Kõigi sõlmede kohta on päringuid tehtud",
+ "driverallnodesqueriedsomedead": "Kõik sõlmed on küsitletud. Mõned sõlmed leiti surnuna.",
+ "driverawakenodesqueries": "Kõikidele ärkvel sõlmedele on esitatud päringud.",
+ "driverfailed": "Z-Wave kontrolleriga ühenduse loomine nurjus",
+ "driverready": "Z-Wave kontrolleri lähtestamine",
+ "driverremoved": "Draiver on eemaldatud",
+ "driverreset": "Draiver on lähtestatud",
+ "offline": "OZWDaemon on võrguühenduseta",
+ "ready": "Ühendamiseks valmis",
+ "started": "Ühendatud MQTT-ga",
+ "starting": "Ühendumine MQTT-ga",
+ "stopped": "OpenZWave võrk on seiskunud"
+ },
+ "offline": "Ühenduseta",
+ "online": "Ühendatud",
+ "starting": "Alustan",
+ "unknown": "Teadmata"
+ },
+ "node": {
+ "button": "Sõlme üksikasjad",
+ "not_found": "Sõlme ei leitud"
+ },
+ "node_config": {
+ "header": "Sõlme seaded",
+ "help_source": "Seadete kirjeldused ja spikri tekst on pärit OpenZWave projektist.",
+ "introduction": "Halda Z-Wave'i sõlme erinevaid seadistusparameetreid.",
+ "wakeup_help": "Patareitoitega sõlmed peavad olema ärkvel, et muuta nende sätteid. Kui sõlm ei ole ärkvel, püüab OpenZWave uuendada sõlme sätteid järgmine kord kui see ärkab, mis võib olla mitu tundi (või päeva) hiljem. Seadme äratamiseks toimi järgnevalt:"
+ },
+ "node_metadata": {
+ "product_manual": "Toote kasutusjuhend"
+ },
+ "node_query_stages": {
+ "associations": "Seosgruppide ja liikmesuse värskendamine",
+ "cacheload": "Teabe laadimine OpenZWave'i vahemälufailist. Aku sõlmed püsivad selles tasemel kuni sõlme ärkamiseni.",
+ "complete": "Küsitlemine on lõpule viidud",
+ "configuration": "Konfiguratsiooniväärtuste hankimine sõlmest",
+ "dynamic": "Sageli muutuvate väärtuste hankimine sõlmest",
+ "instances": "Üksikasjade hankimine selle kohta milliseid eksemplare või kanaleid seade toetab",
+ "manufacturerspecific1": "Tootja ja toote ID-koodide hankimine sõlmest",
+ "manufacturerspecific2": "Täiendavate tootja ja toote ID-koodide hankimine sõlmest",
+ "neighbors": "Sõlme naabrite loendi hankimine",
+ "nodeinfo": "Toetatud käsuklasside hankimine sõlmest",
+ "nodeplusinfo": "Hangin selle sõlme Z-Wave+ põhivõimalusi kontrollerilt",
+ "probe": "Kontrollitakse kas sõlm on ärkvel / elus",
+ "protocolinfo": "Hangin selle sõlme Z-Wave põhivõimalusi kontrollerilt",
+ "session": "Harva muutuvate väärtuste hankimine sõlmest",
+ "static": "Püsiolekute hankimine seadmest",
+ "versions": "Püsivara ja käsuklassi versioonide kohta teabe hankimine",
+ "wakeup": "Äratusjärjekordade ja sõnumite toe häälestamine"
+ },
+ "nodes_table": {
+ "failed": "Nurjus",
+ "id": "ID",
+ "manufacturer": "Tootja",
+ "model": "Mudel",
+ "query_stage": "Järjekorra number",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Kui sõlm on akutoitega äratage see enne jätkamist kindlasti üles",
+ "button": "Värskenda sõlme",
+ "complete": "Sõlme värskendamine on lõpule viidud",
+ "description": "See käsib OpenZWave'il sõlme uuesti küsitleda ja uuendada sõlme käsuklasse, võimalusi ja väärtusi.",
+ "node_status": "Sõlme olek",
+ "refreshing_description": "Sõlme teabe värskendamine …",
+ "start_refresh_button": "Alusta värskendamist",
+ "step": "Nihe",
+ "title": "Värskendage sõlme teavet",
+ "wakeup_header": "Äratusjuhised",
+ "wakeup_instructions_source": "Äratusjuhised pärinevad OpenZWave kogukonna seadmete andmebaasist."
+ },
+ "select_instance": {
+ "header": "Valige OpenZWave'i eksemplar",
+ "introduction": "Teil töötab rohkem kui üks OpenZWave'i eksemplar. Millist juhtumit soovite hallata?",
+ "none_found": "Ei leitud OpenZWave'i eksemplare. Kui arvate, et see on vale, kontrollige oma OpenZWave'i ja MQTT seadistusi ning veenduge, et Home Assistant saaks teie MQTT vahendajaga suhelda."
+ },
+ "services": {
+ "add_node": "Lisa sõlm",
+ "cancel_command": "Tühista käsk",
+ "remove_node": "Eemalda sõlm"
+ }
+ },
+ "person": {
+ "add_person": "Lisa isik",
+ "caption": "Isikud",
+ "confirm_delete": "Oled kindel, et soovid selle isiku kustutada?",
+ "confirm_delete2": "Kõik sellele isikule kuuluvad seadmed jäävad peremehetuks.",
+ "create_person": "Loo isik",
+ "description": "Halda isikuid keda Home Assistant jälgib.",
+ "detail": {
+ "admin": "Administraator",
+ "allow_login": "Luba isikul sisse logida",
+ "confirm_delete_user": "Kas kustutada kasutaja {name} ? Kasutajat saate endiselt jälgida kuid kasutaja ei saa enam sisse logida.",
+ "create": "Loo",
+ "delete": "Kustuta",
+ "device_tracker_intro": "Vali seadmed, mis kuuluvad sellele isikule.",
+ "device_tracker_pick": "Vali jälgitav seade",
+ "device_tracker_picked": "Jälgi seadet",
+ "link_integrations_page": "Sidumiste leht",
+ "link_presence_detection_integrations": "Kohaloleku sidumised",
+ "linked_user": "Lingitud kasutaja",
+ "local_only": "Sisselogimine ainult koduvõrgust",
+ "name": "Nimi",
+ "name_error_msg": "Nimi on kohustuslik",
+ "new_person": "Uus isik",
+ "no_device_tracker_available_intro": "Kui on seadmeid mis näitavad isiku kohalolekut saad need määrata siin ühele isikule. Esimese seadme lisamiseks lisa Seaded->Sidumised all asukohatuvastuse sidumine.",
+ "update": "Uuenda"
+ },
+ "introduction": "Siin saate määratleda iga huvipakkuva isiku Home Assistantis.",
+ "learn_more": "Lisateave isikute kohta",
+ "no_persons_created_yet": "Paistab, et sa pole veel ühtegi isikut lisanud.",
+ "note_about_persons_configured_in_yaml": "Märkus: configuration.yaml kaudu seadistatud isikuid ei saa kasutajaliidese kaudu muuta.",
+ "person_not_found": "Ei leidnud inimest keda proovid seadistada.",
+ "person_not_found_title": "Isikuid ei leitud"
+ },
+ "scene": {
+ "activated": "Stseen {name} on käivitatud.",
+ "caption": "Stseenid",
+ "description": "Seadme olekute hõivamine ja nende hilisem taaskasutamine",
+ "editor": {
+ "area": "Ala",
+ "default_name": "Uus stseen",
+ "devices": {
+ "add": "Lisa seade",
+ "delete": "Kustuta seade",
+ "header": "Seadmed",
+ "introduction": "Lisage seadmed mida soovite oma stseeni kaasata. Seadistage kõikide seadmete olek selle stseeni jaoks."
+ },
+ "entities": {
+ "add": "Lisa olem",
+ "delete": "Kustuta olem",
+ "device_entities": "Kui lisate seadmele kuuluva olemi siis see seade lisatakse.",
+ "header": "Olemid",
+ "introduction": "Siin saab määrata olemid mis ei kuulu seadmesse.",
+ "without_device": "Olemid ilma seadmeta"
+ },
+ "icon": "Ikoon",
+ "introduction": "Kasutage stseene, et oma kodu nutikamaks muuta.",
+ "load_error_not_editable": "Ainult scenes.yaml failis asuvad stseenid on muudetavad.",
+ "load_error_unknown": "Viga stseeni laadimisel ({err_no}).",
+ "name": "Nimi",
+ "save": "Salvesta",
+ "unsaved_confirm": "Sul on salvestamata muudatusi. Oled kindel, et soovid lahkuda?"
+ },
+ "picker": {
+ "add_scene": "Lisa stseen",
+ "delete_confirm": "Oled kindel, et soovid selle stseeni kustutada?",
+ "delete_scene": "Kustuta stseen",
+ "duplicate": "Paljunda",
+ "duplicate_scene": "Paljunda stseen",
+ "edit_scene": "Muuda stseeni",
+ "header": "Stseeniredaktor",
+ "headers": {
+ "name": "Nimi"
+ },
+ "introduction": "Stseeniredaktor võimaldab teil stseene luua ja redigeerida. Juhiste lugemiseks järgige allolevat linki ja veenduge, et olete Home Assistanti õigesti konfigureerinud.",
+ "learn_more": "Lisateave stseenide kohta",
+ "no_scenes": "Ei leitud ühtegi stseeni",
+ "only_editable": "Ainult scenes.yaml failis defineeritud stseenid on muudetavad.",
+ "pick_scene": "Vali stseen mida muuta",
+ "show_info_scene": "Kuva stseeni teave"
+ }
+ },
+ "script": {
+ "caption": "Skriptid",
+ "description": "Vallanda toimingute jada",
+ "editor": {
+ "alias": "Nimi",
+ "default_name": "Uus skript",
+ "delete_confirm": "Oled kindel, et soovid selle skripti kustutada?",
+ "delete_script": "Kustuta skript",
+ "header": "Skript: {name}",
+ "icon": "Ikoon",
+ "id": "Olemi ID",
+ "id_already_exists": "See ID on juba olemas",
+ "id_already_exists_save_error": "Te ei saa seda skripti salvestada kuna ID pole kordumatu. Valige mõni teine ID või jätke see väli tühjaks, et see automaatselt luua.",
+ "introduction": "Skriptide abil saad käivitada toimingute jada.",
+ "link_available_actions": "Vaadake lisateavet saadaolevate toimingute kohta.",
+ "load_error_not_editable": "Ainult scripts.yaml failis asuvad skriptid on muudetavad.",
+ "max": {
+ "parallel": "Üheaegsete käivituste maksimaalne arv",
+ "queued": "Järjekorra pikkus"
+ },
+ "modes": {
+ "description": "Režiim kontrollib mis juhtub kui skripti käivitatakse või kui see töötab veel ühe või mitme eelmise kutsega. Lisateavet leiate saidilt {documentation_link} .",
+ "documentation": "skriptide dokumentatsioon",
+ "label": "Režiim",
+ "parallel": "Samaaegselt",
+ "queued": "Ootel",
+ "restart": "Taaskäivita",
+ "single": "Üks kord (vaikimisi)"
+ },
+ "save_script": "Salvesta skript",
+ "sequence": "Jada",
+ "sequence_sentence": "Selle skripti toimingute jada.",
+ "show_trace": "Kuva täitmise samme"
+ },
+ "picker": {
+ "add_script": "Lisa uus skript",
+ "dev_script": "Skriptide silumine",
+ "duplicate": "Klooni",
+ "duplicate_script": "Klooni skript",
+ "edit_script": "Muuda skripti",
+ "header": "Skriptiredaktor",
+ "headers": {
+ "name": "Nimi"
+ },
+ "introduction": "Skriptiredaktor võimaldab Teil skripte luua ja redigeerida. Juhiste lugemiseks järgige allolevat linki ja veenduge, et olete Home Assistanti õigesti konfigureerinud.",
+ "learn_more": "Lisateave skriptide kohta",
+ "no_scripts": "Ei leitud ühtegi skripti",
+ "run_script": "Käivita skript",
+ "show_info": "Kuva stseeni teave"
+ }
+ },
+ "server_control": {
+ "caption": "Serveri juhtimine",
+ "description": "Home Assistanti serveri kontroll ja taaskäivitamine",
+ "section": {
+ "reloading": {
+ "automation": "Automatiseeringud",
+ "command_line": "Käsurea olemid",
+ "core": "Asukohad ja kohandamised",
+ "filesize": "Failisuuruse olemid",
+ "filter": "Filtreeritud üksused",
+ "generic": "Üldised IP-kaamera olemid",
+ "generic_thermostat": "Üldise termostaadi olemid",
+ "group": "Grupid, grupi olemid ja teavitusteenused",
+ "heading": "YAML konfiguratsiooni taaslaadimine",
+ "history_stats": "Ajaloo statistika olemid",
+ "homekit": "HomeKit",
+ "input_boolean": "Loogikasisestused",
+ "input_button": "Sisestusnupud",
+ "input_datetime": "Ajaväärtused",
+ "input_number": "Arvsisestused",
+ "input_select": "Sisendi valikud",
+ "input_text": "Tekstisisestused",
+ "introduction": "Mõned Home Assistant'i komponendid on taaslaetavad ilma taaskäivituseta. Mõne alloleva valiku klõpsamisel tühistatakse nende praegused YAML seaded ja laetakse uued.",
+ "min_max": "Min/max olemid",
+ "mqtt": "Käsitsi konfigureeritud MQTT olemid",
+ "person": "Isikud",
+ "ping": "Ping binaaranduri olemid",
+ "reload": "{domain}",
+ "rest": "REST olemid ja teavitusteenused",
+ "rpi_gpio": "Raspberry Pi GPIO olemid",
+ "scene": "Stseenid",
+ "script": "Skriptid",
+ "smtp": "SMTP teavitusteenused",
+ "statistics": "Statistika olemid",
+ "telegram": "Telegram'i teavitusteenused",
+ "template": "Malli olemid",
+ "themes": "Teemad",
+ "timer": "Taimerid",
+ "trend": "Trendiolemid",
+ "universal": "Universaalse meediumipleieri olemid",
+ "zone": "Tsoonid"
+ },
+ "server_management": {
+ "confirm_restart": "Oled kindel, et soovid Home Assistant'i taaskäivitada?",
+ "confirm_stop": "Oled kindel, et soovid seisata Home Assistant'i?",
+ "heading": "Serveri haldamine",
+ "introduction": "Kontrolli oma Home Assistanti serverit.",
+ "restart": "Taaskäivita",
+ "stop": "Peata"
+ },
+ "validation": {
+ "check_config": "Kontrolli seadeid",
+ "heading": "Seadete kontrollimine",
+ "introduction": "Kontrolli oma seadeid kui oled neis hiljuti muutusi teinud ja tahad veenduda, et kõik on korrektne.",
+ "invalid": "Konfiguratsioon on vigane",
+ "valid": "Konfiguratsioon on korrektne!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Lisa märgis",
+ "automation_title": "Märgis {name} on skannitud",
+ "caption": "Märgised",
+ "confirm_remove": "Kas soovid kindlasti eemaldada märgise {tag}?",
+ "confirm_remove_title": "Kas kustutan märgise?",
+ "create_automation": "Lisa automatiseering märgise abil",
+ "description": "Käivita automaatiseering NFC-sildi, QR-koodi jne. skännimisel",
+ "detail": {
+ "companion_apps": "mobiilirakendused",
+ "create": "Loo",
+ "create_and_write": "Loo ja kirjuta",
+ "delete": "Kustuta",
+ "description": "Kirjeldus",
+ "name": "Nimi",
+ "new_tag": "Uus märgis",
+ "tag_id": "Märgise ID",
+ "tag_id_placeholder": "Tühjaks jätmise korral luuakse automaatselt",
+ "update": "Uuenda",
+ "usage": "Silt võib skannimisel käivitada automaatiseeringu. Võite kasutada NFC-silte, QR-koode või muud tüüpi silte. Kasutage meie äppi {companion_link}, et kirjutada see silt programmeeritavale NFC-märgendile või luua allpool QR-kood."
+ },
+ "edit": "Muuda",
+ "headers": {
+ "last_scanned": "Viimati skaneeritud",
+ "name": "Nimi"
+ },
+ "learn_more": "Lisateave märgiste kohta",
+ "never_scanned": "Märgiseid pole skännitud",
+ "no_tags": "Märgiseid pole",
+ "write": "Salvesta märgis"
+ },
+ "updates": {
+ "check_unavailable": {
+ "description": "Home Assistanti kasutajaliidese kaudu värskenduste kontrollimiseks ja paigaldamiseks pead käivitama operatsioonisüsteemi Home Assistant.",
+ "title": "Uuenduste kontrollimine ei ole võimalik"
+ },
+ "check_updates": "Kontrolli uuendusi",
+ "more_updates": "+ {count} uuendust",
+ "review": "ülevaade",
+ "show": "kuva",
+ "show_all_updates": "Kuva kõik uuendused",
+ "title": "{count} {count, plural,\n one {uuendus}\n other {uuendust}\n}",
+ "unable_to_fetch": "Uuenduste laadimine ei ole võimalik",
+ "version_available": "Saadaval on versioon {version_available}"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Lisa kasutaja",
+ "create": "Loo",
+ "local_only": "Ainult kohalik",
+ "password": "Salasõna",
+ "password_confirm": "Kinnita salasõna",
+ "password_not_match": "Salasõnad ei ühti"
+ },
+ "caption": "Kasutajad",
+ "description": "Halda kasutakontosid",
+ "editor": {
+ "activate_user": "Aktiveeri kasutaja",
+ "active": "Aktiivne",
+ "active_tooltip": "Määrab kas kasutaja saab sisse logida",
+ "admin": "Administraator",
+ "caption": "Vaata kasutajat",
+ "change_password": "Muuda salasõna",
+ "confirm_user_deletion": "Oled kindel, et soovid kustutada {name}?",
+ "deactivate_user": "Deaktiveeri kasutaja",
+ "delete_user": "Kustuta kasutaja",
+ "group": "Grupp",
+ "id": "ID",
+ "local_only": "Sisse saab logida ainult kohtvõrgust",
+ "name": "Kuvatav nimi",
+ "new_password": "Uus salasõna",
+ "owner": "Omanik",
+ "password_changed": "Salasõna muutmine õnnestus",
+ "system_generated": "Süsteemne kasutaja",
+ "system_generated_users_not_editable": "Süsteemi kasutajaid ei saa värskendada.",
+ "system_generated_users_not_removable": "Süsteemi kasutajaid ei saa eemaldada.",
+ "unnamed_user": "Nimetu kasutaja",
+ "update_user": "Uuenda",
+ "username": "Kasutajanimi"
+ },
+ "is_local": "Kohalik kasutaja",
+ "is_not_active": "Keelatud",
+ "is_owner": "Omanik",
+ "is_system": "Süsteemne kasutaja",
+ "picker": {
+ "add_user": "Lisa kasutaja",
+ "headers": {
+ "group": "Grupp",
+ "is_active": "Aktiivne",
+ "is_owner": "Omanik",
+ "local": "Kohalik",
+ "name": "Kuvatav nimi",
+ "system": "Süsteem",
+ "username": "Kasutajanimi"
+ }
+ },
+ "users_privileges_note": "Kasutajarühma funktsioon on pooleli. Kasutajal ei ole võimalik kasutajaliidese kaudu Home Assistanti hallata. Auditeerime endiselt kõiki haldus-API lõpp-punkte tagamaks, et need lubaks juurdepääsu ainult administraatoritele."
+ },
+ "zha": {
+ "add_device": "Lisa seade",
+ "add_device_page": {
+ "discovered_text": "Seadmed ilmuvad siia kui nad avastatakse.",
+ "no_devices_found": "Seadmeid ei leitud. Veendu, et need on paaritamise režiimis ja hoidke neid ärkvel kuni avastamine käib.",
+ "pairing_mode": "Veendu, et seadmed oleksid sidumisrežiimis. Kuidas seda teha vaata oma seadme juhendist.",
+ "search_again": "Otsi uuesti",
+ "spinner": "ZHA Zigbee seadmete otsimine …"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Valitud klastri atribuudid",
+ "get_zigbee_attribute": "Hangi Zigbee atribuut",
+ "header": "Klastri atribuudid",
+ "help_attribute_dropdown": "Vali atribuut mida soovid vaadata võ mille väärtust muuta.",
+ "help_get_zigbee_attribute": "Hangi valitud atribuudi väärtus.",
+ "help_set_zigbee_attribute": "Määra määratud olemile määratud klastri atribuudi väärtus.",
+ "introduction": "Vaata ja muuda klastri atribuute.",
+ "set_zigbee_attribute": "Määra Zigbee atribuut"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Valitud klastri käsud",
+ "header": "Klastri käsud",
+ "help_command_dropdown": "Vali käsk, millega suhelda.",
+ "introduction": "Vaata ja väljasta klastrikäske.",
+ "issue_zigbee_command": "Väljasta Zigbee käsk"
+ },
+ "clusters": {
+ "header": "Klastrid",
+ "help_cluster_dropdown": "Atribuutide ja käskude vaatamiseks vali klaster.",
+ "introduction": "Klastrid on Zigbee funktsioonide alustalad. Need eraldavad funktsioonid loogilisteks üksusteks. On kliendi ja serveri tüübid ja mis koosnevad atribuutidest ja käskudest."
+ },
+ "common": {
+ "clusters": "Klastrid",
+ "manufacturer_code_override": "Tootja koodi alistamine",
+ "value": "Väärtus"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Otseteed",
+ "update_button": "Seadete värskendamine"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Seadistamine on lõpetatud",
+ "CONFIGURED_status_text": "Lähtestan",
+ "INITIALIZED": "Lähtestamine on lõpetatud",
+ "INITIALIZED_status_text": "Seade on kasutamiseks valmis",
+ "INTERVIEW_COMPLETE": "Küsitlemine on lõpetatud",
+ "INTERVIEW_COMPLETE_status_text": "Seadistan",
+ "PAIRED": "Seade on leitud",
+ "PAIRED_status_text": "Alustan küsitlemist"
+ },
+ "group_binding": {
+ "bind_button_help": "Seo valitud rühm valitud seadmeklastritega.",
+ "bind_button_label": "Seo rühm",
+ "cluster_selection_help": "Vali klastrid mida siduda valitud rühmaga.",
+ "group_picker_help": "Vali rühm mida soovid siduda.",
+ "group_picker_label": "Seotavad rühmad",
+ "header": "Rühmasidumine",
+ "introduction": "Seo ja vallanda rühmad.",
+ "unbind_button_help": "Tühista valitud rühm valitud seadmerühmadest.",
+ "unbind_button_label": "Sidesta grupp lahti"
+ },
+ "groups": {
+ "add_group": "Lisa grupp",
+ "add_members": "Lisa liikmeid",
+ "caption": "Grupid",
+ "create": "Loo grupp",
+ "create_group": "Zigbee Home Automation - Loo grupp",
+ "create_group_details": "Sisesta uue Zigbee grupi loomiseks vajalikud üksikasjad.",
+ "creating_group": "Loon gruppi",
+ "delete": "Eemalda grupp",
+ "group_details": "Siin on kõik valitud Zigbee rühma üksikasjad.",
+ "group_id": "Grupi ID",
+ "group_info": "Grupi teave",
+ "group_name_placeholder": "Grupi nimi",
+ "group_not_found": "Gruppi ei leitud!",
+ "groups": "Grupid",
+ "members": "Liikmed",
+ "remove_members": "Eemalda liikmeid",
+ "removing_members": "Liikmete eemaldamine"
+ },
+ "network": {
+ "caption": "Võrk"
+ },
+ "visualization": {
+ "auto_zoom": "Mahuta kuvale",
+ "caption": "Visualiseerimine",
+ "enable_physics": "Luba Physics",
+ "header": "Võrgu visualiseerimine",
+ "highlight_label": "Tõsta seadmed esile",
+ "refresh_topology": "Värskenda seadmete kaarti",
+ "zoom_label": "Näita seadet"
+ }
+ },
+ "zone": {
+ "add_zone": "Lisa tsoon",
+ "caption": "Tsoonid",
+ "configured_in_yaml": "configuration.yaml kaudu seadistatud tsoone ei saa kasutajaliidese kaudu redigeerida.",
+ "confirm_delete": "Oled kindel, et soovid selle tsooni kustutada?",
+ "create_zone": "Loo tsoon",
+ "description": "Halda tsoone milles soovid inimesi jälgida.",
+ "detail": {
+ "create": "Loo",
+ "delete": "Kustuta",
+ "icon": "Ikoon",
+ "icon_error_msg": "Ikoon peaks olema formaadis \"prefiks:ikooninimi\". Näiteks: mdi:home",
+ "latitude": "Laius",
+ "longitude": "Pikkus",
+ "name": "Nimi",
+ "new_zone": "Uus tsoon",
+ "passive": "Passiivne",
+ "passive_note": "Passiivsed tsoonid on kasutajaliideses peidetud ja neid ei kasutata seadmete jälgimisel asukohana. See on kasulik, kui soovid neid lihtsalt automatiseerimiseks kasutada.",
+ "radius": "Raadius",
+ "required_error_msg": "See väli on nõutav",
+ "update": "Uuenda"
+ },
+ "edit_home_zone": "Kodutsooni raadiust ei saa kasutajaliidese abil veel redigeerida. Kodutsooni liigutamiseks lohista markerit kaardil.",
+ "edit_home_zone_narrow": "Kodutsooni raadiust ei saa kasutajaliidese abil veel redigeerida. Asukohta saab muuta üldistest seadetest.",
+ "edit_zone": "Muuda tsooni",
+ "go_to_core_config": "Kas minna üldiste seadete lehele?",
+ "home_zone_core_config": "Sinu kodutsooni asukohta saab muuta üldiste seadete lehelt. Kodutsooni raadiust ei saa kasutajaliidese abil veel redigeerida. Kas soovid minna üldiste seadete lehele?",
+ "introduction": "Tsoonid võimaldavad määratleda teatud piirkondi maakeral. Kui isik asub tsoonis, saab olek selle tsooni nime. Tsoone saab kasutada ka päästikuna või tingimusena automatiseerimisseadetes.",
+ "no_zones_created_yet": "Paistab, et sa pole veel ühtegi tsooni loonud."
+ },
+ "zwave": {
+ "common": {
+ "index": "Indeks",
+ "instance": "Eksemplar",
+ "unknown": "tundmatu",
+ "value": "Väärtus",
+ "wakeup_interval": "Ärkamise intervall"
+ },
+ "description": "Halda oma Z-Wave võrku",
+ "learn_more": "Lisateave Z-Wave'i kohta",
+ "migration": {
+ "ozw": {
+ "header": "Mine üle OpenZWave'ile",
+ "introduction": "See viisard aitab vanalt Z-Wave'i sidumiselt üle minna praegu beetaversioonis olevale OpenZWave'i sidumisele."
+ },
+ "zwave_js": {
+ "header": "Üleminek Z-Wave JS-le",
+ "introduction": "Seda sidumist enam ei hooldata ja soovitame minna üle uuele Z-Wave JS sidumisele. See nõustaja aitab vanalt Z-Wave sidumiselt uuele Z-Wave JS sidumisele üle minna."
+ }
+ },
+ "network_management": {
+ "header": "Z-Wave võrgu haldamine",
+ "introduction": "Käivita käske, mis mõjutavad Z-Wave võrku. Sa ei saa tagasisidet selle kohta, kas enamik käske õnnestus, kuid selle kontrollimiseks võid uurida OZW-logi."
+ },
+ "network_status": {
+ "network_started": "Z-Wave võrk on käivitatud",
+ "network_started_note_all_queried": "Kõikidele sõlmedele on päringud esitatud.",
+ "network_started_note_some_queried": "Ärkvel sõlmedele on päringud tehtud. Uinuvatele sõlmedele tehakse päringud, kui nad ärkavad.",
+ "network_starting": "Z-Wave võrgu käivitamine …",
+ "network_starting_note": "Sõltuvalt võrgu suurusest võib see natuke aega võtta.",
+ "network_stopped": "Z-Wave võrk on seiskunud"
+ },
+ "node_config": {
+ "config_parameter": "Konfiguratsiooniparameeter",
+ "config_value": "Seadistatud väärtus",
+ "false": "Väär",
+ "header": "Sõlme seadistamise valikud",
+ "seconds": "sekundit",
+ "set_config_parameter": "Määra konfiguratsiooniparameeter",
+ "set_wakeup": "Määra ärkamise intervall",
+ "true": "Tõene"
+ },
+ "node_management": {
+ "add_to_group": "Lisa gruppi",
+ "entities": "Selle sõlme olemid",
+ "entity_info": "Olemi teave",
+ "exclude_entity": "Eemalda see olem Home Assistantist",
+ "group": "Grupp",
+ "header": "Z-Wave'i sõlmede haldamine",
+ "introduction": "Käivitage Z-Wave'i käsud mis mõjutavad ühte sõlme. Saadaolevate käskude loendi kuvamiseks valige sõlm.",
+ "max_associations": "Maksimaalseid sidumisi:",
+ "node_group_associations": "Sõlmegruppide seosed",
+ "node_protection": "Sõlmede kaitse",
+ "node_to_control": "Kontrollitav sõlm",
+ "nodes": "Sõlmed",
+ "nodes_hint": "Sõlmeüleste valikute vaatamiseks valige sõlm",
+ "nodes_in_group": "Teised selle grupi liikmed:",
+ "pooling_intensity": "Küsitlussagedus",
+ "protection": "Kaitse",
+ "remove_broadcast": "Eemalda teavitus",
+ "remove_from_group": "Eemalda grupist",
+ "set_protection": "Määra kaitse"
+ },
+ "ozw_log": {
+ "header": "OZW logi",
+ "introduction": "Vaadake logi. 0 on miinimum (laadib kogu logi) ja 1000 on maksimaalne. Näitab staatilist logi ja jalus uueneb automaatselt logi viimase määratud ridade arvuga.",
+ "last_log_lines": "Viimaste logiridade arv",
+ "load": "Laadi",
+ "tail": "Jalus"
+ },
+ "services": {
+ "add_node": "Lisa sõlm",
+ "add_node_secure": "Lisa turvaline sõlm",
+ "cancel_command": "Tühista käsk",
+ "heal_network": "Tervenda võrku",
+ "heal_node": "Paranda sõlme",
+ "node_info": "Sõlme teave",
+ "print_node": "Sõlme trükkimine",
+ "refresh_entity": "Värskenda olemit",
+ "refresh_node": "Värskenda sõlme",
+ "remove_failed_node": "Eemalda nurjunud sõlm",
+ "remove_node": "Eemalda sõlm",
+ "replace_failed_node": "Asenda nurjunud sõlm",
+ "save_config": "Salvesta seaded",
+ "soft_reset": "Pehme lähtestamine",
+ "start_network": "Käivita võrk",
+ "stop_network": "Peata võrk",
+ "test_network": "Testi võrku",
+ "test_node": "Testi sõlme"
+ },
+ "values": {
+ "header": "Sõlme väärtused"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Tühista kaasamine",
+ "check_logs": "Lisateabe saamiseks vaata logisid.",
+ "choose_inclusion_strategy": "Kuidas soovid oma seadet lisada",
+ "controller_in_inclusion_mode": "Z-Wave kontroller on nüüd kaasamise režiimis.",
+ "enter_qr_code": "Sisesta QR-koodi väärtus",
+ "follow_device_instructions": "Sidumise käivitamiseks järgi seadmega kaasas olnud juhiseid.",
+ "inclusion_failed": "Seadet ei saanud lisada.",
+ "inclusion_finished": "Seade on lisatud.",
+ "interview_failed": "Seadme küsitlemine nurjus. Lisateave võib olla kättesaadav logides.",
+ "interview_started": "Seadet küsitletakse. See võib võtta aega.",
+ "introduction": "See viisard juhendab sõlme lisamisel Z-Wave'i võrku.",
+ "provisioning_finished": "Seade on lisatud. Kui lülitad selle sisse, muutub see kättesaadavaks.",
+ "qr_code": "QR kood",
+ "qr_code_paragraph": "Kui seade toetab SmartStart'i saad hõlpsaks ühendamiseks skannida QR-koodi.",
+ "scan_qr_code": "Skaneeri QR-kood",
+ "searching_device": "Seadme otsimine",
+ "secure_inclusion_warning": "Turvalised seadmed vajavad täiendavat ribalaiust; liiga palju turvalisi seadmeid võib Z-Wave võrku aeglustada. Turvalist kaasamist soovitame kasutada ainult seadmete jaoks mis seda vajavad, näiteks lukud või garaažiukse avajad.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Näide: vana tüüpi lukud ilma S2 toeta",
+ "title": "S0 vana tüüpi"
+ },
+ "S2_AccessControl": {
+ "description": "Näide: ukselukud ja garaažiuksed",
+ "title": "S2 juurdepääsukontroll"
+ },
+ "S2_Authenticated": {
+ "description": "Näide: valgustus, andurid ja turvasüsteemid",
+ "title": "S2 on autenditud"
+ },
+ "S2_Unauthenticated": {
+ "description": "Nagu S2 oleks autenditud kuid ilma kinnituseta, et õige seade on kaasatud",
+ "title": "S2 pole autenditud"
+ }
+ },
+ "select_camera": "Vali kaamera",
+ "start_inclusion": "Alusta kaasamist",
+ "start_secure_inclusion": "Käivita turvaline kaasamine",
+ "title": "Lisa Z-Wave seade",
+ "use_secure_inclusion": "Kasuta turvalist kaasamist",
+ "view_device": "Kuva seade"
+ },
+ "common": {
+ "add_node": "Lisa seade",
+ "back": "Tagasi",
+ "close": "Sulge",
+ "heal_network": "Paranda võrgustikku",
+ "home_id": "Kodu ID",
+ "network": "Võrk",
+ "node_id": "Seadme ID",
+ "reconfigure_server": "Taasseadista server",
+ "remove_node": "Eemalda seade",
+ "source": "Allikas"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n one {seade}\n other {seadet}\n}",
+ "driver_version": "Ajuri versioon",
+ "dump_dead_nodes_text": "Mõni seade ei vastanud ja eeldatakse, et see on surnud. Neid ei ekspordita täielikult.",
+ "dump_dead_nodes_title": "Mõned seadmed on surnud",
+ "dump_debug": "Lae alla",
+ "dump_not_ready_confirm": "Lae alla",
+ "dump_not_ready_text": "Kui lood ekspordi kui kõik seadmed pole veel valmis, võid vajaminevad andmed vahele jätta. Anna oma võrgule aega kõigi seadmete päringuteks. Kas soovid ekspordiga jätkata?",
+ "dump_not_ready_title": "Kõik seadmed pole veel valmis",
+ "header": "Halda oma Z-Wave'i võrku",
+ "home_id": "Kodu ID",
+ "introduction": "Halda oma Z-Wave'i võrgustikku ja Z-Wave'i seadmeid",
+ "nodes_ready": "Valmisolevad seadmed",
+ "not_ready": "{count} pole valmis",
+ "provisioned_devices": "Ette valmistatud seadmed",
+ "server_url": "Serveri URL",
+ "server_version": "Serveri versioon"
+ },
+ "device_info": {
+ "device_config": "Seadme häälestamine",
+ "heal_node": "Paranda seadet",
+ "highest_security": "Kõrgeim turvalisus",
+ "is_secure": "Turvaline",
+ "node_ready": "Seade on aktiivne",
+ "node_status": "Seadme olek",
+ "reinterview_device": "Seadme taasküsitlemine",
+ "remove_failed": "Eemalda vigane seade",
+ "unknown": "Teadmata",
+ "zwave_info": "Z-Wave teave",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Versioon {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "Võrgu parandamine on tühistatud.",
+ "healing_complete": "Võrgu parandamine on lõpule viidud.",
+ "healing_failed": "Parandamine nurjus. Lisateave võib olla saadaval logides.",
+ "in_progress": "Võrgu parandamine on pooleli. See võtab aega.",
+ "introduction": "Alusta oma Z-Wave võrgu parandamist. Võrgu parandamine põhjustab kõigi seadmete marsruudi kontrollerisse tagasi arvutamise ja on soovitatav, kui oled hiljuti seadmeid või oma kontrollerit teisaldanud.",
+ "run_in_background": "Saad selle dialoogi sulgeda ja võrgu parandamine jätkub taustal.",
+ "start_heal": "Alusta parandamist",
+ "stop_heal": "Peata parandamine",
+ "title": "Paranda oma Z-Wave võrku",
+ "traffic_warning": "Parandamissprotsess tekitab Z-Wave võrgus palju liiklust. See võib põhjustada seadmete aeglast reageerimise (või üldse mitte) kuni parandamine on pooleli."
+ },
+ "heal_node": {
+ "healing_complete": "Seade {device} on parandatud.",
+ "healing_failed": "Seadme {device} parandamine nurjus.",
+ "healing_failed_check_logs": "Lisateavet võib saada logidest.",
+ "in_progress": "Seadme {device} paranemine on käimas.",
+ "introduction": "Ütle {seadmele}, et ta uuendaks oma marsruute tagasi kontrollerile. See võib aidata ühendusprobleemide korral kui oled hiljuti seadet või kontrollerit ümber paigutanud.",
+ "network_heal_in_progress": "Z-Wave võrgu parandamine on juba käimas. Enne üksiku seadme parandamist oota kuni see lõpeb.",
+ "start_heal": "Paranda seadet",
+ "title": "Paranda Z-Wave seadet",
+ "traffic_warning": "Parandamissprotsess tekitab Z-Wave võrgus palju liiklust. See võib põhjustada seadmete aeglast reageerimise (või üldse mitte) kuni parandamine on pooleli."
+ },
+ "logs": {
+ "download_logs": "Logide allalaadimine",
+ "log_level": "Logimise tase",
+ "log_level_changed": "Silumisteave on muudetud: {level}",
+ "subscribed_to_logs": "Z-Wave JS Logiteavitused tellitud…",
+ "title": "Z-Wave JS logid"
+ },
+ "navigation": {
+ "logs": "Logid",
+ "network": "Võrk"
+ },
+ "network_status": {
+ "connected": "Ühendatud",
+ "connecting": "Ühendun",
+ "unknown": "Tundmatu"
+ },
+ "node_config": {
+ "attribution": "Seadme parameetrid ja kirjeldused on esitatud {device_database}",
+ "battery_device_notice": "Patareitoitel seadmed peavad olema ärkvel, et värskendada oma sätteid. Seadme äratamiseks vaata oma seadme kasutusjuhendit.",
+ "error_device_not_found": "Seadet ei leitud",
+ "header": "Z-Wave seadme häälestamine",
+ "introduction": "Valitud seadme spetsiifiliste seadistuste haldamine ja muutmine",
+ "parameter": "Parameeter",
+ "parameter_is_read_only": "See parameeter on kirjutuskaitstud.",
+ "set_param_accepted": "Parameeter on uuendatud.",
+ "set_param_error": "Ilmnes tõrge.",
+ "set_param_queued": "Parameetri uuendamine on ootel ja seda värskendatakse seadme ärkamisel.",
+ "zwave_js_device_database": "Z-Wave JS seadmete andmebaas"
+ },
+ "node_status": {
+ "alive": "Aktiivne",
+ "asleep": "Ootel",
+ "awake": "Ärkvel",
+ "dead": "Kadunud",
+ "unknown": "Teadmata"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "Kui eemaldate seadme eraldamise, ei lisata seda sisselülitamisel Home Assistantisse. Kui see on juba Home Assistantisse lisatud, ei eemalda etteantud seadme eemaldamine seda Home Assistantist.",
+ "confirm_unprovision_title": "Kas oled kindel, et soovite seadme eraldamise tühistada?",
+ "dsk": "DSK",
+ "included": "Kaasa arvatud",
+ "not_included": "Ei sisaldu",
+ "security_classes": "Turvaklassid",
+ "unprovison": "Eeskirjadeta"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "Patareitoitel seadmed peavad olema ärkvel, et neid küsitleda. Seadme äratamiseks vaata oma seadme kasutusjuhendit.",
+ "in_progress": "Seadet küsitletakse. See võib võtta aega.",
+ "interview_complete": "Seadme küsitlemine on lõpetatud.",
+ "interview_failed": "Seadme küsitlemine nurjus. Lisateave võib olla kättesaadav logides.",
+ "introduction": "Küsitle uuesti seadet Z-Wave-võrgus. Kasuta seda funktsiooni kui seadmel on puuduv või vale funktsionaalsus.",
+ "run_in_background": "Saad selle dialoogi sulgeda ja küsitlus jätkub taustal.",
+ "start_reinterview": "Alusta küsitlust uuesti",
+ "title": "Z-Wave seadme taasküsitlemine"
+ },
+ "remove_failed_node": {
+ "in_progress": "Seadme eemaldamine on käimas.",
+ "introduction": "Eemalda vigane seade Z-Wave'i võrgust. Kasuta seda kui ei saa seadet tavapäraselt välistada kuna see on katki.",
+ "removal_failed": "Seadet ei saanud Z-Wave'i võrgust eemaldada.",
+ "removal_finished": "Seade {id} on Z-Wave'i võrgust eemaldatud.",
+ "remove_device": "Eemalda seade",
+ "title": "Vigase Z-wave-seadme eemaldamine"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Tühista välistamine",
+ "controller_in_exclusion_mode": "Z-Wave kontroller on nüüd välistamisrežiimis.",
+ "exclusion_failed": "Seadet ei saanud eemaldada. Lisateabe saamiseks vaata logi.",
+ "exclusion_finished": "Seade {id} on Z-Wave'i võrgust eemaldatud.",
+ "follow_device_instructions": "Seadme välistamise käivitamiseks järgi seadmega kaasas olnud juhiseid.",
+ "introduction": "Eemalda seade Z-Wave'i võrgust ja seotud seade ning olemid Home Assistantist.",
+ "start_exclusion": "Alusta välistamist",
+ "title": "Eemalda Z-Wave seade"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Puudub"
+ },
+ "S0_Legacy": {
+ "description": "Näide: vana tüüpi lukud ilma S2 toeta",
+ "title": "S0 vana tüüpi"
+ },
+ "S2_AccessControl": {
+ "description": "Näide: ukselukud ja garaažiuksed",
+ "title": "S2 juurdepääsukontroll"
+ },
+ "S2_Authenticated": {
+ "description": "Näide: valgustus, andurid ja turvasüsteemid",
+ "title": "S2 on autenditud"
+ },
+ "S2_Unauthenticated": {
+ "description": "Nagu S2 autenditud kuid ilma kinnituseta, et õige seade on kaasatud",
+ "title": "S2 pole autenditud"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Sellel on juurdepääs kõigile Home Assistanti andmetele.",
+ "hide_message": "Selle teate peitmiseks kontrollige komponendi panel_custom dokumente",
+ "question_trust": "Kas Te usaldate välist paneeli {name} asukohas {link}?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Aktiivsed kuulajad",
+ "alert_event_type": "Sündmuse tüüp on kohustuslik väli",
+ "available_events": "Saadaolevad sündmused",
+ "count_listeners": " ({count} kuulajat)",
+ "data": "Sündmuse andmed (YAML, valikuline)",
+ "description": "Vallanda sündmus sündmuste siinil.",
+ "documentation": "Sündmuste dokumentatsioon.",
+ "event_fired": "Sündmus {name} vallandus",
+ "fire_event": "Vallanda sündmus",
+ "listen_to_events": "Kuula sündmusi",
+ "listening_to": "Kuulamas",
+ "notification_event_fired": "Sündmus {type} vallandus edukalt!",
+ "start_listening": "Alusta kuulamist",
+ "stop_listening": "Lõpeta kuulamine",
+ "subscribe_to": "Sündmus, mida tellida",
+ "title": "Sündmused",
+ "type": "Sündmuse tüüp"
+ },
+ "services": {
+ "accepts_target": "See teenus aktsepteerib sihtmärki, näiteks: \"entity_id: light.elutuba\"",
+ "all_parameters": "Kõik saadaolevad parameetrid",
+ "call_service": "Kutsu teenus",
+ "column_description": "Kirjeldus",
+ "column_example": "Näide",
+ "column_parameter": "Parameeter",
+ "description": "Teenuse arendamise tööriist võimaldab Teil kutsuda mis tahes teenuse Home Assistantis.",
+ "fill_example_data": "Täida näidisandmetega",
+ "no_template_ui_support": "Kasutajaliides ei toeta malle, saad kasutada YAML-i redaktorit.",
+ "title": "Teenused",
+ "ui_mode": "Ava kasutajaliidese režiim",
+ "yaml_mode": "Redigeeri YAML-is",
+ "yaml_parameters": "Parameetrid on saadaval ainult YAML režiimis"
+ },
+ "states": {
+ "alert_entity_field": "Olem on kohustuslik väli",
+ "attributes": "Atribuudid",
+ "copy_id": "Kopeeri ID lõikepuhvrisse",
+ "current_entities": "Praegused olemid",
+ "description1": "Sea seadme oleku esitus Home Assistendis.",
+ "description2": "Kui olem kuulub seadmele siis selle seadmega tegelikku suhtlust ei toimu.",
+ "entity": "Olem",
+ "filter_attributes": "Filtreeri atribuute",
+ "filter_entities": "Filtreeri olemeid",
+ "filter_states": "Filtreeri olekuid",
+ "last_changed": "Viimati muudetud",
+ "last_updated": "Viimati uuendatud",
+ "more_info": "Rohkem infot",
+ "no_entities": "Olemid puuduvad",
+ "set_state": "Määra olek",
+ "state": "Olek",
+ "state_attributes": "Oleku atribuudid (YAML, valikuline)",
+ "title": "Olekud"
+ },
+ "statistics": {
+ "entity": "Olem",
+ "fix_issue": {
+ "fix": "Parandage probleem",
+ "units_changed": {
+ "clear": "Kustuta kõik selle olemi vanad statistikaandmed",
+ "fix": "Parandage probleem",
+ "title": "Selle olemi mõõtühikt on muudetud",
+ "update": "Uuenda ajaloolisi statistilisi väärtusi ''{metadata_unit}'' asemel ''{state_unit}''."
+ }
+ },
+ "issue": "Probleem",
+ "issues": {
+ "entity_no_longer_recorded": "Seda olemit enam ei salvestata.",
+ "entity_not_recorded": "Selle olemi olekut ei salvestata.",
+ "no_state": "Selle olemi olek puudub.",
+ "units_changed": "Selle olemi ühik muutus ''{metadata_unit}'' asemel ''{state_unit}''.",
+ "unsupported_state_class": "Selle olemi seisundiklass ''{state_class}'' ei ole toetatud.",
+ "unsupported_unit": "Selle olemi ühik ('' {state_unit} '') ei vasta seadme klassi '' {device_class} '' ühikule.",
+ "unsupported_unit_metadata": "Salvestatud statistika ühik (''{metadata_unit}'') ei vasta seadmeklassi ''{device_class}'' toetatud ühikule ''{supported_unit}''.",
+ "unsupported_unit_state": "Selle olemi ühik ('' {state_unit} '') ei vasta seadmeklassi '' {device_class} '' ühikule."
+ },
+ "no_issue": "Probleemid puuduvad",
+ "title": "Statistika"
+ },
+ "templates": {
+ "all_listeners": "See mall kuulab kõiki olekuga muudetud sündmusi.",
+ "description": "Mallid renderdatakse Jinja2 mallimootori abil koos mõne Home Assistanti spetsiifiliste laienditega.",
+ "domain": "Asukoht",
+ "editor": "Malliredaktor",
+ "entity": "Olem",
+ "jinja_documentation": "Jinja2 malli dokumentatsioon",
+ "listeners": "See mall kuulab järgmisi olekuga muutunud sündmusi:",
+ "no_listeners": "See mall ei kuula olekuga muudetud sündmusi ega värskendu automaatselt.",
+ "reset": "Lähtesta demomallile",
+ "result_type": "Tulemuse tüüp",
+ "template_extensions": "Home Assistanti mallilaiendid",
+ "time": "See mall värskendub iga minuti alguses.",
+ "title": "Mall",
+ "unknown_error_template": "Malli renderdamisel ilmnes tundmatu viga"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Üksikute seadmete jälgimine",
+ "energy_distribution_title": "Energiajaotus",
+ "energy_gas_graph_title": "Gaasi tarbimine",
+ "energy_solar_graph_title": "Päikeseenergia tootmine",
+ "energy_sources_table_title": "Allikad",
+ "energy_usage_graph_title": "Energiakasutus"
+ },
+ "charts": {
+ "by_device": "Tarbimine seadmete kaupa",
+ "solar": "Päikeseenergia",
+ "stat_house_energy_meter": "Energia tarbimine kokku"
+ },
+ "setup": {
+ "back": "Tagasi",
+ "done": "Kuva energiabilansi vaade!",
+ "next": "Järgmine"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Seda funktsiooni saab kasutada ainult siis kui olete võtnud kontrolli Lovelace UI üle.",
+ "saving_failed": "Lovelace UI konfiguratsiooni salvestamine nurjus.",
+ "yaml_unsupported": "Seda funktsiooni ei saa kasutada kui kasutad Lovelace'i YAML-i režiimis."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Kas soovid kindlasti käivitada toimingu ''{action}''?",
+ "no_entity_more_info": "Lisateabe kuvamise olem puudub",
+ "no_entity_toggle": "Lülitamiseks vajalik olem puudub",
+ "no_navigation_path": "Navigeerimisteed pole määratud",
+ "no_service": "Käivitamiseks pole teenust määratud",
+ "no_url": "Avamiseks vajalik link puudub"
+ },
+ "confirm_delete": "Oled kindel, et soovid selle kaardi kustutada?",
+ "empty_state": {
+ "go_to_integrations_page": "Mine sidumiste lehele.",
+ "no_devices": "See leht võimaldab sul oma seadmeid juhtida, kuid tundub, et sul pole veel seadistatud seadmeid. Alustamiseks suundu sidumiste lehele.",
+ "title": "Tere tulemast koju"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "See kaart näitab, kui palju kodu tarbitavast energiast toodeti taastuvate kütuste, näiteks päikese-, tuule- ja tuumaenergia abil. Mida kõrgem, seda parem!",
+ "non_fossil_energy_consumed": "Tarbitud taastuvenergia",
+ "non_fossil_energy_not_calculated": "Tarbitud mittefossiilset energiat ei saanud arvutada"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Energiakasutus"
+ },
+ "energy_distribution": {
+ "battery": "Aku",
+ "gas": "Gaas",
+ "go_to_energy_dashboard": "Minge energia vaatesse",
+ "grid": "Võrgust",
+ "home": "Kodu",
+ "non_fossil": "Taastuvenergia",
+ "solar": "Päikeseenergia",
+ "title_today": "Energiajaotus täna"
+ },
+ "energy_solar_graph": {
+ "forecast": "Prognoos {name}",
+ "production": "Tootmine {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Akud kokku",
+ "cost": "Hind",
+ "energy": "Energia",
+ "grid_total": "Võrk kokku",
+ "source": "Allikas",
+ "total_costs": "Kogukulud"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Võrgust kokku",
+ "consumed_battery": "Akudest tarbitud",
+ "consumed_solar": "Tarbitud päikeseenergia",
+ "total_consumed": "Kokku tarbitud {num} kWh",
+ "total_returned": "Võrku tagastatud {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Kui osuti on lillas, tagastasid võrku rohkem energiat kui sellest tarbisid. Kui see on sinises, tarbisid võrgust rohkem energiat kui tootsid.",
+ "energy_dependency": "See kaart kujutab kodu energiatarbimist.",
+ "grid_neutrality_not_calculated": "Võrgu neutraalsust ei saanud arvutada",
+ "net_consumed_grid": "Võrgust tarbitud",
+ "net_returned_grid": "Võrku tagastatud",
+ "red_green_color_explain": "Kui see on roheline, tähendab see, et tootsid rohkem energiat kui võrgust tarbisid. Kui see on miinuses, tähendab see, et osa kodu energiatarbimisest tuginesi võrgule."
+ },
+ "loading": "Laadimine ...",
+ "no_data": "Kuvatavaid andmeid pole. Uute andmete saabumiseks pärast energiavaate seadistamist võib kuluda kuni 2 tundi.",
+ "no_data_period": "Selle perioodi kohta pole andmeid.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "See kaart näitab, kui palju toodetud päikeseenergiast kasutas kodu võrku tagasisaamise asemel.",
+ "card_indicates_solar_energy_used_charge_home_bat": "Kui see arv on tavaliselt väga väike, mis viitab liigsele päikeseenergia tootmisele, võiksite kaaluda koduaku või elektriauto laadimist päikesepaneelidelt suure päikeseenergia tootmise ajal.",
+ "not_produced_solar_energy": "Päikeseenergiat pole toodetud",
+ "self_consumed_solar_could_not_calc": "Ise tarbitud päikeseenergiat ei saanud arvutada",
+ "self_consumed_solar_energy": "Ise tarbitud päikeseenergia"
+ }
+ },
+ "entities": {
+ "never_triggered": "Pole kunagi vallandunud"
+ },
+ "iframe": {
+ "error_secure_context": "Veebisaitidele suunatud iframe'i ei saa laadida kasutades {target_protocol} kui Home Assistanti edastatakse üle {context_protocol} ."
+ },
+ "map": {
+ "reset_focus": "Lähtesta fookus"
+ },
+ "picture-elements": {
+ "call_service": "Kutsu välja teenus {name}",
+ "hold": "Hoia:",
+ "more_info": "Näita rohkem teavet {name} kohta",
+ "navigate_to": "Liigu asukohta {location}",
+ "tap": "Toksa:",
+ "toggle": "Lülita {name}",
+ "url": "Ava {url_path} aken"
+ },
+ "safe-mode": {
+ "description": "Home Assistant sattus Teie konfiguratsiooni laadimisel raskustesse ja töötab nüüd turvarežiimis. Vaadake vea logi, et näha, mis valesti läks.",
+ "header": "Töötan turvarežiimis"
+ },
+ "shopping-list": {
+ "add_item": "Lisa toode",
+ "checked_items": "Märgitud tooted",
+ "clear_items": "Tühjenda märgitud tooted",
+ "drag_and_drop": "Pukseeri",
+ "reorder_items": "Telli kaubad uuesti"
+ },
+ "show_more_info": "Kuva lisateavet",
+ "starting": {
+ "description": "Home Assistant käivitub, palun oota…"
+ }
+ },
+ "changed_toast": {
+ "message": "Lovelace'i seadeid uuendati. Kas soovid värskendada?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Päevas",
+ "month": "Kuu",
+ "next": "Järgmine",
+ "previous": "Eelmine",
+ "today": "Täna",
+ "week": "Nädal",
+ "year": "Aasta"
+ },
+ "timestamp-display": {
+ "invalid": "Sobimatu ajatempel",
+ "invalid_format": "Sobimatu kuvavorming"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Kutsu teenus",
+ "default_action": "Vaiketoiming",
+ "more-info": "Rohkem infot",
+ "navigate": "Navigeeri",
+ "none": "Toiming puudub",
+ "toggle": "Muuda olekut",
+ "url": "URL"
+ },
+ "navigation_path": "Navigeerimistee",
+ "url_path": "URL-i tee"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Saadaolevad olekud",
+ "description": "Valvepaneeli kaart võimaldab valvet sisse ja välja lülitada.",
+ "name": "Valvepaneeli nupustik"
+ },
+ "area": {
+ "description": "Alade kaart kuvab automaatselt kindla ala olemid.",
+ "name": "Ala",
+ "show_camera": "Ala pildi asemel näidata kaamera voogu"
+ },
+ "button": {
+ "default_action_help": "Vaiketoiming sõltub olemi võimalustest. Selle olekut muudetakse või kuvatakse rohkem teavet.",
+ "description": "Nupukaart võimaldab Teil ülesannete täitmiseks lisada nuppe.",
+ "name": "Nupp"
+ },
+ "calendar": {
+ "calendar_entities": "Kalendri olemid",
+ "description": "Kalendri kaardil kuvatakse kalender mis sisaldab päeva-, nädala- ja loendivaateid",
+ "inital_view": "Vaikevaade",
+ "name": "Kalender",
+ "views": {
+ "dayGridDay": "Päevavaade",
+ "dayGridMonth": "Kuuvaade",
+ "listWeek": "Sündmuste nimekiri"
+ }
+ },
+ "conditional": {
+ "card": "Kaart",
+ "change_type": "Muuda tüüpi",
+ "condition_explanation": "Seda kaarti näidatakse sii, kui KÕIK allolevad tingimused on täidetud.",
+ "conditions": "Tingimused",
+ "current_state": "hetkel",
+ "description": "Tingimuskaart kuvab teise kaardi olemiolekute põhjal.",
+ "name": "Tingimuslik",
+ "state_equal": "Olemi olek võrdub",
+ "state_not_equal": "Olemi olek ei võrdu"
+ },
+ "config": {
+ "optional": "valikuline",
+ "required": "nõutav"
+ },
+ "entities": {
+ "description": "Olemite kaart on kõige levinum kaarditüüp. See rühmitab olemid loenditeks.",
+ "edit_special_row": "Selle rea üksikasjade vaatamiseks klõpsa nuppu Muuda",
+ "entity_row": {
+ "attribute": "Atribuut",
+ "button": "Nupp",
+ "buttons": "Nupud",
+ "call-service": "Kutsu teenus",
+ "cast": "Voogedasta",
+ "conditional": "Tingimuslik",
+ "divider": "Eraldaja",
+ "section": "Sektsioon",
+ "weblink": "Veebilink"
+ },
+ "entity_row_editor": "Olemirea redaktor",
+ "name": "Olemid",
+ "secondary_info_values": {
+ "brightness": "Heledus",
+ "entity-id": "Olemi ID",
+ "last-changed": "Viimati muudetud",
+ "last-triggered": "Viimati vallandunud",
+ "last-updated": "Viimati uuendatud",
+ "none": "Lisateave puudub",
+ "position": "Asend",
+ "tilt-position": "Kalle"
+ },
+ "show_header_toggle": "Kas näidata päise vahetamist?",
+ "special_row": "eriline rida",
+ "toggle": "Vaheta olemeid."
+ },
+ "entity-filter": {
+ "description": "Olemifiltri kaart võimaldab teil määratleda nende olemite loendit mida soovid jälgida ainult teatud olekus.",
+ "name": "Olemi filter"
+ },
+ "entity": {
+ "description": "Olemi kaart annab teile kiire ülevaate teie olemi olekust.",
+ "name": "Olem"
+ },
+ "gauge": {
+ "description": "Mõõturikaart on lihtne kaart, mis võimaldab visuaalselt näha andurite andmeid.",
+ "name": "Mõõtur",
+ "needle_gauge": "Kas kuvada osutina?",
+ "severity": {
+ "define": "Kas määrata raskusaste?",
+ "green": "Roheline",
+ "red": "Punane",
+ "yellow": "Kollane"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Proportsioonid",
+ "attribute": "Atribuut",
+ "camera_image": "Kaamera olem",
+ "camera_view": "Kaamera vaade",
+ "days_to_show": "Kuvatavate päevade arv",
+ "double_tap_action": "Topeltklõps",
+ "entities": "Olemid",
+ "entity": "Olem",
+ "hold_action": "Pikk vajutus",
+ "hours_to_show": "Mitu tundi kuvada",
+ "icon": "Ikoon",
+ "icon_height": "Ikooni kõrgus",
+ "image": "Pildi asukoht",
+ "manual": "Käsitsi",
+ "manual_description": "Kas soovid lisada kohandatud kaarti või soovid ainult muuta YAML-is?",
+ "maximum": "Maksimaalne",
+ "minimum": "Minimaalne",
+ "name": "Nimi",
+ "no_theme": "Teema puudub",
+ "refresh_interval": "Värskendamise intervall",
+ "search": "Otsing",
+ "secondary_info_attribute": "Teisene teabeatribuut",
+ "show_icon": "Kas näidata ikooni?",
+ "show_name": "Kas näidata nime?",
+ "show_state": "Kas näidata olekut?",
+ "state": "Olek",
+ "state_color": "Kas muuta Ikoonide värvi oleku järgi?",
+ "tap_action": "Vajutus või klikk",
+ "theme": "Teema",
+ "title": "Pealkiri",
+ "unit": "Ühik",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Veerud",
+ "description": "Kaart Pilk on kasulik mitme sensori rühmitamiseks kompaktse ülevaatena.",
+ "name": "Pilk"
+ },
+ "grid": {
+ "columns": "Veerud",
+ "description": "GRID kaart võimaldab kuvada võrgustikus mitut kaarti.",
+ "name": "",
+ "square": "Kaardid kuvatakse ruudukujulisena"
+ },
+ "history-graph": {
+ "description": "Ajaloograafiku kaart võimaldab kuvada graafiku iga loetletud olemi kohta.",
+ "name": "Ajalooline graafik"
+ },
+ "horizontal-stack": {
+ "description": "Horisontaalse pinu kaart võimaldab teil mitu kaarti kokku panna nii, et need asuvad alati ühe veerus üksteise kõrval.",
+ "name": "Horisontaalne pinu"
+ },
+ "humidifier": {
+ "description": "Niisutaja kaart annab kontrolli teie niisutaja olemi üle. Võimaldab teil muuta olemi niiskust ja režiimi.",
+ "name": "Niisutaja"
+ },
+ "iframe": {
+ "description": "iFrame kaart võimaldab teil manustada oma lemmikveebilehe otse Home Assistant vaatesse.",
+ "name": "iFrame"
+ },
+ "light": {
+ "description": "Valgustikaart võimaldab muuta valguse heledust.",
+ "name": "Valgusti"
+ },
+ "logbook": {
+ "description": "Logiraamatu kaardil kuvatakse olemite sündmuste loend.",
+ "name": "Logiraamat"
+ },
+ "map": {
+ "dark_mode": "Tume režiim?",
+ "default_zoom": "Vaikesuurendus",
+ "description": "Map kaart, mis võimaldab teil kaardil olevaid üksusi kuvada.",
+ "geo_location_sources": "Asukohateabe allikad",
+ "hours_to_show": "Mitu tundi kuvada",
+ "name": "Kaart",
+ "source": "Allikas"
+ },
+ "markdown": {
+ "content": "Sisu",
+ "description": "Märkekaarti kasutatakse märgistuste renderdamiseks.",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "description": "Media Control kaarti kasutatakse meediumipleieri olemite kuvamiseks liideses kus on lihtne kasutada juhtelemente.",
+ "name": "Meedia juhtimine"
+ },
+ "picture-elements": {
+ "description": "Picture elemendid kaart on üks kõige mitmekülgsemat tüüpi kaarte. Kaart võimaldavab teil paigutada ikoone või teksti ja isegi teenuseid koordinaatidel alusel.",
+ "name": "Pildi elemendid"
+ },
+ "picture-entity": {
+ "description": "Kaardil Pildi olem kuvatakse üksus pildi kujul. URL-i piltide asemel võib see näidata ka kaameraüksuste pilti.",
+ "name": "Pildi olem"
+ },
+ "picture-glance": {
+ "description": "Kaardil Picture Glance kuvatakse pilt ja vastav olem ikoonina. Paremal asuvatel olemitel on lubatud tumblertoimingud, teised näitavad teabedialoogi.",
+ "name": "Pildi pilk",
+ "state_entity": "Oleku olem"
+ },
+ "picture": {
+ "description": "Pildikaart võimaldab teil määrata pildi mida kasutatakse liidese erinevatesse kohtadesse navigeerimiseks või teenuse väljakutsumiseks.",
+ "name": "Pilt"
+ },
+ "plant-status": {
+ "description": "Taime oleku kaart on mõeldud kõigile armsatele botaanikutele.",
+ "name": "Taime olek"
+ },
+ "sensor": {
+ "description": "Anduri kaart annab teile kiire ülevaate andurite olekust koos valikulise graafikuga, et visualiseerida muutusi ajas.",
+ "graph_type": "Graafiku tüüp",
+ "name": "Andur",
+ "show_more_detail": "Kuva rohkem üksikasju"
+ },
+ "shopping-list": {
+ "description": "Ostunimekirja kaart võimaldab teil lisada, muuta, registreerida ja tühistada oma ostunimekirja üksusi.",
+ "integration_not_loaded": "See kaart nõuab eelnevalt tehtud \"shopping_list\"sidumist.",
+ "name": "Ostunimekiri"
+ },
+ "statistics-graph": {
+ "description": "Kaart Statistika graafik võimaldab kuvada iga loetletud üksuse statistika graafikut.",
+ "name": "Statistika graafik",
+ "period": "Ajavahemik",
+ "periods": {
+ "5minute": "5 minutit",
+ "day": "Päev",
+ "hour": "Tund",
+ "month": "Kuu"
+ }
+ },
+ "thermostat": {
+ "description": "Termostaadikaart võimaldab kontrollida teie kliimaolemeid. Võimaldab teil muuta olemi temperatuuri ja režiimi.",
+ "name": "Termostaat"
+ },
+ "vertical-stack": {
+ "description": "Vertikaalse virna kaart võimaldab teil rühmitada mitu kaarti nii, et need asuksid alati samas veerus.",
+ "name": "Vertikaalne pinu"
+ },
+ "weather-forecast": {
+ "description": "Ilmateate kaart näitab ilma(ennustust). Kasulik lisada liidestele mida kuvada pidevalt.",
+ "name": "Ilmateade",
+ "show_both": "Kuva hetkeilma ja prognoosi",
+ "show_forecast": "Kuva prognoos",
+ "show_only_current": "Kuva ainult hetkeilma",
+ "show_only_forecast": "Kuva ainult prognoos"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Kaartide järgi",
+ "by_entity": "Olemite järgi",
+ "custom_card": "Kohandatud",
+ "domain": "Asukoht",
+ "entity": "Üksus",
+ "no_description": "Kirjeldus puudub."
+ },
+ "common": {
+ "add": "Lisa",
+ "clear": "Puhasta",
+ "edit": "Muuda",
+ "none": "Puudub"
+ },
+ "edit_badges": {
+ "panel_mode": "Neid märke ei kuvata kuna see vaade on paneelirežiimis.",
+ "view_no_badges": "Praegune kuva tüüp ei toeta märke."
+ },
+ "edit_card": {
+ "add": "Lisa kaart",
+ "clear": "Puhasta",
+ "confirm_cancel": "Kas oled kindel, et tahad loobuda?",
+ "delete": "Kustuta kaart",
+ "duplicate": "Loo kaardi koopia",
+ "edit": "Muuda",
+ "header": "Kaardi seadistamine",
+ "move": "Liiguta vaatesse",
+ "move_after": "Teisalda kaart pärast",
+ "move_before": "Teisalda kaart enne",
+ "move_down": "Liiguta alla",
+ "move_up": "Liiguta üles",
+ "options": "Veel valikuid",
+ "pick_card": "Vali kaart mida soovid lisada.",
+ "pick_card_view_title": "Millise kaardi soovite oma {name} vaatesse lisada?",
+ "search_cards": "Otsi kaarte",
+ "show_code_editor": "Kuva koodiredaktor",
+ "show_visual_editor": "Kuva visuaalne redaktor",
+ "toggle_editor": "Lülita redaktor sisse/välja",
+ "typed_header": "{type} kaardi seadistamine",
+ "unsaved_changes": "Teil on salvestamata muudatusi"
+ },
+ "edit_lovelace": {
+ "edit_title": "Muuda pealkirja",
+ "explanation": "Seda pealkirja näidatakse kõikide Lovelace'i vaadete kohal.",
+ "header": "Lovelace kasutajaliidese pealkiri",
+ "title": "Nimetus"
+ },
+ "edit_view": {
+ "add": "Lisa vaade",
+ "delete": "Kustuta vaade",
+ "edit": "Muuda vaadet",
+ "header": "Vaata seadeid",
+ "header_name": "{name} Vaata seadeid",
+ "move_left": "Liiguta vaadet vasakule",
+ "move_right": "Liiguta vaadet paremale",
+ "tab_badges": "Märgid",
+ "tab_settings": "Seaded",
+ "tab_visibility": "Nähtavus",
+ "type": "Kuva tüüp",
+ "types": {
+ "masonry": "Müürileht (vaikimisi)",
+ "panel": "Paneel (1 kaart)",
+ "sidebar": "Külgriba"
+ },
+ "visibility": {
+ "select_users": "Valige, millised kasutajad näevad seda vaadet navigeerimisel"
+ }
+ },
+ "header": "Muuda kasutajaliidest",
+ "header-footer": {
+ "choose_header_footer": "Vali {type}",
+ "footer": "Jalus",
+ "header": "Päis",
+ "types": {
+ "buttons": {
+ "name": "Nupud"
+ },
+ "graph": {
+ "name": "Graafik"
+ },
+ "picture": {
+ "name": "Pilt"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Vaadete haldamine",
+ "manage_resources": "Halda ressursikirjeid",
+ "open": "Ava Lovelace'i kasutajaliidese menüü",
+ "raw_editor": "Konfiguratsiooni muutmine YAMLis"
+ },
+ "migrate": {
+ "header": "Konfiguratsioon ei ühildu",
+ "migrate": "Siirda seaded",
+ "para_migrate": "Home Assistant võib kõikidele kaartidele ja vaadetele automaatselt ID-d lisada, kui vajutad nupule 'Siirda seaded'.",
+ "para_no_id": "Sellel elemendil puudub ID. Lisa sellele elemendile ID 'ui-lovelace.yaml' failis."
+ },
+ "move_card": {
+ "header": "Valige vaade kuhu kaart liigutada"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Kui eemaldate Lovelace UI konfiguratsiooni loome teie Lovelace UI vaated automaatselt teie alade ja seadmetega.",
+ "confirm_remove_config_title": "Kas soovite kindlasti oma Lovelace kasutajaliidese konfiguratsiooni eemaldada?",
+ "confirm_unsaved_changes": "Sul on salvestamata muudatusi. Oled kindel, et soovid väljuda?",
+ "confirm_unsaved_comments": "Konfiguratsioon sisaldab kommentaare, neid ei salvestata. Kas tahad jätkata?",
+ "error_invalid_config": "Teie konfiguratsioonis on vigane: {error}",
+ "error_parse_yaml": "YAML-i ei saa parsida: {error}",
+ "error_remove": "Konfiguratsiooni ei saa eemaldada: {error}",
+ "error_save_yaml": "YAML-i ei saa salvestada: {error}",
+ "header": "Muuda seadeid",
+ "lovelace_changed": "Lovelace'i konfiguratsiooni värskendati, kas soovid uuendatud konfiguratsiooni redaktorisse laadida ja oma praegused muudatused kaotada?",
+ "reload": "Taaslae",
+ "resources_moved": "Ressursse ei tohiks enam lisada Lovelace konfiguratsiooni kuid saab lisada Lovelace config paneeli.",
+ "save": "Salvesta",
+ "saved": "Salvestatud",
+ "unsaved_changes": "Salvestamata muudatused"
+ },
+ "save_config": {
+ "close": "Sulge",
+ "empty_config": "Alustage tühja kasutajaliidesega",
+ "header": "Võta Lovelace kasutajaliides oma kontrolli alla",
+ "para": "Vaikimisi hoolitseb kasutajaliidese eest Home Assistant, värskendades seda kui on saadaval uued olemid või Lovelace komponendid. Kui võtad kontrolli üle, ei tee me Sinu jaoks enam automaatselt muudatusi. Saad alati luua uue vaate, et sellega eksperimenteerida.",
+ "para_sure": "Oled kindel, et soovid kasutajaliidese oma kontrolli alla võtta?",
+ "save": "Võta kontroll",
+ "yaml_config": "Et aidata teil alustada siis siin on selle vaate praegune konfiguratsioon :",
+ "yaml_control": "YAML-režiimis redigeerimiseks looge YAML-fail nimega mille määrasite selle vaate konfiguratsioonis või vaikimisi 'ui-lovelace.yaml'.",
+ "yaml_mode": "Kasutate selle vaate jaoks YAML- režiimi, mis tähendab, et kasutajaliidesest ei saa lovelace seadistust muuta. Kui soovitte hallata seda vaadet kasutajaliidese kaudu, eemaldage oma Lovelace'i konfiguratsioonist \"configuration.yaml\" rida \"mode: yaml\"."
+ },
+ "select_view": {
+ "dashboard_label": "Kasutajaliides",
+ "header": "Valige vaade",
+ "views_label": "Vaade"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Jaluse muutmine",
+ "header": "Päise muutmine",
+ "row": "Olemirea rea redaktor"
+ }
+ },
+ "suggest_card": {
+ "add": "Lisa Lovelace'i kasutajaliidesesse",
+ "create_own": "Vali teine kaart",
+ "header": "Lõime sulle ettepaneku"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "See vaade koosneb rohkem kui ühest kaardist, aga paneeli vaade saab näidata ainult ühte kaarti"
+ }
+ }
+ },
+ "menu": {
+ "close": "Sulge",
+ "configure_ui": "Seadista kasutajaliidest",
+ "exit_edit_mode": "Valmis",
+ "help": "Abi",
+ "reload_resources": "Taaslae ressursid",
+ "start_conversation": "Alusta vestlust"
+ },
+ "reload_lovelace": "Taaslae Lovelace",
+ "reload_resources": {
+ "refresh_body": "Uuesti laadimise lõpetamiseks peate lehte värskendama. Kas soovite nüüd värskendada?",
+ "refresh_header": "Kas soovite värskendada?"
+ },
+ "unused_entities": {
+ "available_entities": "Need on olemid, mis on saadaval, kuid ei ole veel lisatud teie Lovelace.",
+ "domain": "Domeen",
+ "entity": "Olem",
+ "entity_id": "Olemi ID",
+ "last_changed": "Viimati muudetud",
+ "no_data": "Kasutamata olemeid ei leitud",
+ "search": "Otsi olemeid",
+ "select_to_add": "Vali olemid, mida soovid kaardile lisada ja seejärel klõpsa nuppu Lisa kaart.",
+ "title": "Kasutamata olemid"
+ },
+ "views": {
+ "confirm_delete": "Oled kindel, et soovid selle vaate kustutada?",
+ "confirm_delete_existing_cards": "Selle vaate kustutamisel eemaldatakse ka kaardid",
+ "confirm_delete_existing_cards_text": "Kas soovite kindlasti oma vaate {name} kustutada? Vaade sisaldab {number} kustutatavat kaarti . Seda toimingut ei saa tagasi võtta.",
+ "confirm_delete_text": "Kas soovite kindlasti oma vaate {name} kustutada?"
+ },
+ "warning": {
+ "attribute_not_found": "Olemi atribuut {attribute} pole saadaval: {entity}",
+ "entity_non_numeric": "Olem on mittenumbriline: {entity}",
+ "entity_not_found": "Olem pole saadaval: {entity}",
+ "entity_unavailable": "Olem {entity} pole praegu saadaval",
+ "starting": "Home Assistant käivitub, kõik elemendid ei pruugi veel saadaval olla"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Kustuta",
+ "delete_prompt": "Kas kustutada sõnum?",
+ "empty": "Teile pole ühtegi sõnumit",
+ "playback_title": "Sõnumi taasesitus"
+ },
+ "map": {
+ "edit_zones": "Alade muutmine"
+ },
+ "my": {
+ "component_not_loaded": "Home Assistant ei toeta seda ümbersuunamist. Selle ümbersuunamise kasutamiseks on vaja sidumist {integration}.",
+ "documentation": "dokumentatsioon",
+ "error": "Ilmnes tundmatu viga",
+ "faq_link": "Home Assistanti My sidumise KKK",
+ "no_supervisor": "Home Assistanti paigaldus ei toeta seda ümbersuunamist. See vajab kas HASS OS või Supevisoril installimise meetodit. Lisateavet leiad teemast {docs_link}.",
+ "not_supported": "Home Assistant ei toeta seda ümbersuunamist. Kontrolli kas {link} on toetatud ümbersuunamiseks ja nende kasutusele võetud HA versiooni."
+ },
+ "page-authorize": {
+ "abort_intro": "Sisselogimine katkestatud",
+ "authorizing_client": "Kavatsed anda {clientId} jaoks juurdepääsu oma Home Assistant serverile.",
+ "form": {
+ "error": "Tõrge: {error}",
+ "next": "Sisselogimine",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Sessioon aegus, palun logi uuesti sisse."
+ },
+ "error": {
+ "invalid_auth": "Vale kasutajanimi või salasõna",
+ "invalid_code": "Vale autoriseerimiskood"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Salasõna",
+ "username": "Kasutajanimi"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Kaheastmeline autentimiskood"
+ },
+ "description": "Ava oma seadmes **{mfa_module_name}**, et näha oma kaheastmelise autentimise koodi ja tõendada oma isikut:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Sessioon aegus, palun logi uuesti sisse."
+ },
+ "error": {
+ "invalid_auth": "Vale kasutajanimi või salasõna",
+ "invalid_code": "Vigane autentimiskood"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Salasõna",
+ "username": "Kasutajanimi"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Kaheastmeline autentimiskood"
+ },
+ "description": "Ava oma seadmes **{mfa_module_name}**, et näha oma kaheastmelise autentimise koodi ja tõendada oma isikut:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Sessioon aegus, palun logi uuesti sisse.",
+ "no_api_password_set": "Sul pole API salasõna seadistatud"
+ },
+ "error": {
+ "invalid_auth": "Vale API salasõna",
+ "invalid_code": "Vigane autentimiskood"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "API salasõna"
+ },
+ "description": "Palun sisesta HTTP seadetesse oma API salasõna:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Kaheastmeline autentimiskood"
+ },
+ "description": "Ava oma seadmes **{mfa_module_name}**, et näha oma kaheastmelise autentimise koodi ja tõendada oma isikut:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Sinu arvuti ei ole lubatute nimekirjas."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Kasutaja"
+ },
+ "description": "Palun vali kasutaja, kellena soovid sisse logida:"
+ }
+ }
+ }
+ },
+ "start_over": "Alusta uuesti",
+ "unknown_error": "Midagi läks valesti",
+ "working": "Palun oota"
+ },
+ "initializing": "Lähtestan",
+ "logging_in_to_with": "Logi sisse asukohta **{locationName}** teenusepakkujaga **{authProviderName}**.",
+ "logging_in_with": "Login sisse **{authProviderName}** abil.",
+ "pick_auth_provider": "Või logi sisse, kasutades",
+ "store_token": "Hoia mind sisselogituna"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "autor: {name}",
+ "introduction": "Tere tulemast koju! Siin asub Home Assistant'i demo, mis tutvustab parimaid meie kogukonna loodud kasutajaliideseid.",
+ "learn_more": "Lisateave Home Assistant'i kohta",
+ "next_demo": "Järgmine demo"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Tegevus",
+ "air": "Õhk",
+ "commute_home": "Teel koju",
+ "entertainment": "Meelelahutus",
+ "hdmi_input": "HDMI sisend",
+ "hdmi_switcher": "HDMI lüliti",
+ "information": "Teave",
+ "lights": "Valgustid",
+ "morning_commute": "Hommikune pendelränne",
+ "total_tv_time": "TV-aeg kokku",
+ "turn_tv_off": "Lülita teler välja",
+ "volume": "Helitugevus"
+ },
+ "names": {
+ "family_room": "Elutuba",
+ "hallway": "Esik",
+ "kitchen": "Köök",
+ "left": "Vasakpoolne",
+ "master_bedroom": "Suur magamistuba",
+ "mirror": "Peegel",
+ "patio": "Terrass",
+ "right": "Parempoolne",
+ "temperature_study": "Kontori temperatuur",
+ "upstairs": "Ülemine korrus"
+ },
+ "unit": {
+ "minutes_abbr": "min",
+ "watching": "jälgin"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Järgmine"
+ },
+ "core-config": {
+ "button_detect": "Tuvasta",
+ "finish": "Edasi",
+ "intro": "Tere tulemast Home Assistant'i kasutama, {name}. Kuidas sa soovid oma kodu nimetada?",
+ "intro_location": "Soovime teada kus sa elad. See teave aitab teabe kuvamisel ja päikesepõhiste automatiseeringute loomisel. Neid andmeid ei jagata kunagi väljaspool teie võrku.",
+ "intro_location_detect": "Me saame aidata sul seda teavet leida, tehes ühekordse päringu välisele teenusele.",
+ "location_name": "Sinu Home Assistant paigalduse nimi",
+ "location_name_default": "Kodu"
+ },
+ "finish": "Lõpeta",
+ "integration": {
+ "finish": "Lõpeta",
+ "intro": "Seadmed ja teenused on Home Assistant'is esitatud sidumistena. Võid neid seadistada kohe või teha seda hiljem konfiguratsioonilehelt.",
+ "more_integrations": "Rohkem"
+ },
+ "intro": "Kas oled valmis oma kodu ellu äratama, oma privaatsust tagasi võitma ja ühinema ülemaailmse nokitsejate kogukonnaga?",
+ "next": "Järgmine",
+ "restore": {
+ "addons": "Lisandmoodulid",
+ "confirm_password": "Varukoopia salasõna kinnitamine",
+ "description": "Teise võimalusena saad taastada eelmise varukoopia.",
+ "folders": "Kaustad",
+ "full_backup": "Täielik varukoopia",
+ "hide_log": "Peida täielik logi",
+ "in_progress": "Toimub taastamine",
+ "partial_backup": "Osaline varukoopia",
+ "password": "Varukoopia salasõna",
+ "password_protection": "Salasõnaga kaitstud",
+ "select_type": "Vali mida taastada",
+ "show_log": "Kuva täielik logi",
+ "type": "Varukoopia tüüp",
+ "upload_backup": "Varukoopia üleslaadimine"
+ },
+ "user": {
+ "create_account": "Loo konto",
+ "data": {
+ "name": "Nimi",
+ "password": "Salasõna",
+ "password_confirm": "Kinnita salasõna",
+ "username": "Kasutajanimi"
+ },
+ "error": {
+ "password_not_match": "Salasõnad ei ühti",
+ "required_fields": "Täida kõik nõutud väljad"
+ },
+ "intro": "Alustame kasutajakonto loomisega.",
+ "required_field": "Nõutud"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Luba täpsemad funktsioonid.",
+ "link_promo": "Lisateave",
+ "title": "Edasijõudnute režiim"
+ },
+ "change_password": {
+ "confirm_new_password": "Kinnita uut salasõna",
+ "current_password": "Praegune salasõna",
+ "error_new_is_old": "Uus salasõna peab praegusest erinema",
+ "error_new_mismatch": "Sisestatud uus salasõna ei ühti",
+ "error_required": "Nõutav",
+ "header": "Muuda salasõna",
+ "new_password": "Uus salasõna",
+ "submit": "Esita",
+ "success": "Salasõna muutmine õnnestus"
+ },
+ "current_user": "Oled praegu sisse logitud kui {fullName}.",
+ "customize_sidebar": {
+ "button": "Muuda",
+ "description": "Redigeerimisrežiimi aktiveerimiseks võite pikalt vajutada külgriba päist.",
+ "header": "Külgriba üksuste järjestuse muutmine ja peitmine"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Ülevaade (vaikimisi)",
+ "description": "Valige selle seadme jaoks vaikepaneel.",
+ "dropdown_label": "Kasutajaliidese vaade",
+ "header": "Kasutajaliidese vaade"
+ },
+ "enable_shortcuts": {
+ "description": "Luba või keela kasutajaliidese erinevate toimingute tegemise kiirklahvid.",
+ "header": "Kiirklahvid"
+ },
+ "force_narrow": {
+ "description": "See peidab vaikimisi külgriba, sarnaselt mobiilikogemusega.",
+ "header": "Peida alati külgriba"
+ },
+ "is_owner": "Oled omanik.",
+ "language": {
+ "dropdown_label": "Keel",
+ "header": "Keel",
+ "link_promo": "Aita tõlkida"
+ },
+ "logout": "Logi välja",
+ "logout_text": "Oled kindel, et soovid välja logida?",
+ "logout_title": "Login välja?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Oled kindel, et soovid kustutada juurdepääsutõendi {name} jaoks?",
+ "create": "Loo juurdepääsutõend",
+ "create_failed": "Juurdepääsutõendi loomine ebaõnnestus.",
+ "created": "Loodud {date}",
+ "delete_failed": "Juurdepääsutõendi kustutamine ebaõnnestus.",
+ "description": "Loo pikaajalised juurdepääsutõendid, mis võimaldavad sinu skriptidel suhelda sinu Home Assistant serveriga. Iga juurdepääsutõend kehtib kümme aastat loomisest alates. Praegu on aktiivsed järgmised pikaajalised juurdepääsutõendid.",
+ "empty_state": "Sul pole veel pikaajalisi juurdepääsutõendeid.",
+ "header": "Pikaajalised juurdepääsutõendid",
+ "learn_auth_requests": "Loe, kuidas teha tõendatud päringuid.",
+ "name": "Juurdepääsutõendi nimi",
+ "prompt_copy_token": "Kopeeri oma juurdepääsutõend. Seda ei näidata rohkem.",
+ "prompt_name": "Pane pikaajalisele juurdepääsutõendile nimi"
+ },
+ "mfa": {
+ "confirm_disable": "Oled kindel, et soovid keelata kasutaja {name}?",
+ "disable": "Keela",
+ "enable": "Luba",
+ "header": "Mitmeastmelise autentimise moodulid"
+ },
+ "mfa_setup": {
+ "close": "Sulge",
+ "step_done": "{step} seadistatud",
+ "submit": "Esita",
+ "title_aborted": "Katkestatud",
+ "title_success": "Korras!"
+ },
+ "number_format": {
+ "description": "Vali arvude vormindamise.",
+ "dropdown_label": "Numbrivorming",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Automaatne (kasuta keeleseadet)",
+ "none": "Puudub",
+ "space_comma": "1234 567,89",
+ "system": "Kasuta süsteemi poolt määratut"
+ },
+ "header": "Numbrivorming"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Seadme nimi",
+ "title": "Kuidas peaks seda seadet nimetama?"
+ },
+ "description": "Saada teatisi sellele seadmele.",
+ "error_load_platform": "Seadista notify.html5.",
+ "error_use_https": "Nõuab kasutajaliidese jaoks SSL lubamist.",
+ "header": "Tõuketeavitused",
+ "link_promo": "Lisateave",
+ "push_notifications": "Tõuketeavitused"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Oled kindel, et soovid kustutada ajutise juurdepääsutõendi {name} jaoks?",
+ "created_at": "Loodud {date}",
+ "current_token_tooltip": "Ei saa kustutada seda ajutist juurdepääsutõendit",
+ "delete_failed": "Ajutise juurdepääsutõendi kustutamine ebaõnnestus.",
+ "description": "Iga ajutine juurdepääsutõend kehtib ühe seansi jaoks. Ajutised juurdepääsutõendid kustutatakse automaatselt pärast välja logimist. Sinu konto jaoks on praegu aktiivsed järgmised ajutised juurdepääsutõendid.",
+ "header": "Ajutised juurdepääsutõendid",
+ "last_used": "Viimati kasutatud {date} asukohast {location}",
+ "not_used": "Pole kunagi kasutatud",
+ "token_title": "Ajutine juurdepääsutõend {clientId} jaoks"
+ },
+ "suspend": {
+ "description": "Kas sulgeda ühendus serveriga pärast 5-minutilist jõudeolekut ?",
+ "header": "Sule ühendus automaatselt"
+ },
+ "themes": {
+ "accent_color": "Esiletõstmise värv",
+ "dark_mode": {
+ "auto": "Automaatne",
+ "dark": "Tume",
+ "light": "Hele"
+ },
+ "dropdown_label": "Teema",
+ "error_no_theme": "Teemasid pole saadaval.",
+ "header": "Teema",
+ "link_promo": "Lisateave teemade kohta",
+ "primary_color": "Esmane värv",
+ "reset": "Lähtesta"
+ },
+ "time_format": {
+ "description": "Vali kuidas ajad vormindatakse.",
+ "dropdown_label": "Ajavorming",
+ "formats": {
+ "12": "12 tundi (AM/PM)",
+ "24": "24 tundi",
+ "language": "Automaatne (kasuta keeleseadet)",
+ "system": "Kasuta süsteemi poolt määratut"
+ },
+ "header": "Ajavorming"
+ },
+ "vibrate": {
+ "description": "Seadmete juhtimisel lubage või keelake vibratsioon.",
+ "header": "Vibreeri"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Alusta vestlust"
+ }
+ },
+ "sidebar": {
+ "done": "Valmis",
+ "external_app_configuration": "Äpi seaded",
+ "hide_panel": "Peida paneel",
+ "show_panel": "Kuva paneeli",
+ "sidebar_toggle": "Külgriba lülitamine"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/eu.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/eu.json
new file mode 100644
index 00000000..f185a349
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/eu.json
@@ -0,0 +1,656 @@
+{
+ "groups": {
+ "system-admin": "Administratzaileak",
+ "system-read-only": "Soilik irakurtzeko erabiltzaileak",
+ "system-users": "Erabiltzaileak"
+ },
+ "panel": {
+ "calendar": "Egutegia",
+ "config": "Konfigurazioa",
+ "developer_tools": "Garatzaileentzako tresnak",
+ "history": "Historia",
+ "logbook": "Erregistroa",
+ "mailbox": "Postontzia",
+ "map": "Mapa",
+ "profile": "Profila",
+ "shopping_list": "Erosketa zerrenda",
+ "states": "Laburpena"
+ },
+ "state": {
+ "default": {
+ "unavailable": "Ez dago erabilgarri",
+ "unknown": "Ezezaguna"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Automatikoa",
+ "off": "Itzalita",
+ "on": "Piztuta"
+ }
+ }
+ },
+ "state_badge": {
+ "default": {
+ "entity_not_found": "Ez da Entitatea Aurkitu",
+ "error": "Errorea"
+ },
+ "device_tracker": {
+ "home": "Etxean",
+ "not_home": "Kanpoan"
+ },
+ "person": {
+ "home": "Etxean",
+ "not_home": "Kanpoan"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Saio hau gorde nahi duzu?",
+ "confirm": "Erabiltzailea gorde",
+ "decline": "Ez, eskerrik asko"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "clear_code": "Garbitu",
+ "code": "Kodea"
+ },
+ "camera": {
+ "not_available": "Irudia ez dago eskuragarri"
+ },
+ "climate": {
+ "away_mode": "Etxetik kanpo",
+ "currently": "Orain",
+ "fan_mode": "Haizagailuaren modua",
+ "on_off": "Piztuta / itzalita",
+ "operation": "Modua"
+ },
+ "cover": {
+ "position": "Posizioa"
+ },
+ "fan": {
+ "speed": "Abiadura"
+ },
+ "light": {
+ "brightness": "Distira",
+ "color_temperature": "Kolore tenperatura",
+ "effect": "Efektua"
+ },
+ "lock": {
+ "code": "Kodea"
+ },
+ "media_player": {
+ "sound_mode": "Soinu modua",
+ "source": "Iturria",
+ "text_to_speak": "Esateko testua"
+ },
+ "scene": {
+ "activate": "Aktibatu"
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Garbitzen jarraitu",
+ "return_to_base": "Basera itzuli",
+ "start_cleaning": "Garbitzen hasi",
+ "turn_off": "Itzali",
+ "turn_on": "Piztu"
+ }
+ },
+ "water_heater": {
+ "currently": "Orain",
+ "on_off": "Piztuta / itzalita",
+ "operation": "Operazioa"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Aire presioa",
+ "humidity": "Hezetasuna",
+ "temperature": "Tenperatura",
+ "visibility": "Ikusgarritasuna",
+ "wind_speed": "Haizearen abiadura"
+ },
+ "cardinal_direction": {
+ "e": "E",
+ "ene": "EIE",
+ "ese": "EHE",
+ "n": "I",
+ "ne": "IE",
+ "nne": "IIE",
+ "nnw": "IIM",
+ "nw": "IM",
+ "s": "H",
+ "se": "HE",
+ "sse": "HHE",
+ "ssw": "HHM",
+ "sw": "HM",
+ "w": "M",
+ "wnw": "MIM",
+ "wsw": "MHM"
+ },
+ "forecast": "Iragarpena"
+ }
+ },
+ "common": {
+ "loading": "Kargatzen",
+ "save": "Gorde"
+ },
+ "components": {
+ "data-table": {
+ "no-data": "Daturik ez"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one {egun}\n other {egun}\n}",
+ "hour": "{count} {count, plural,\n one {ordu}\n other {ordu}\n}",
+ "minute": "{count} {count, plural,\n one {minutu}\n other {minutu}\n}",
+ "second": "{count} {count, plural,\n one {segundo}\n other {segundo}\n}",
+ "week": "{count} {count, plural,\n one {aste}\n other {aste}\n}"
+ },
+ "never": "Inoiz"
+ },
+ "service-picker": {
+ "service": "Zerbitzua"
+ }
+ },
+ "dialogs": {
+ "more_info_control": {
+ "script": {
+ "last_action": "Azken ekintza"
+ },
+ "sun": {
+ "rising": "Igotzen",
+ "setting": "Ezarpena"
+ },
+ "updater": {
+ "title": "Argibideak Eguneratu"
+ }
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\n one {egun}\n other {egun}\n}",
+ "hour": "{count} {count, plural,\n one {ordu}\n other {ordu}\n}",
+ "minute": "{count} {count, plural,\n one {minutu}\n other {minutu}\n}",
+ "second": "{count} {count, plural,\n one {segundo}\n other {segundo}\n}",
+ "week": "{count} {count, plural,\n one {aste}\n other {aste}\n}"
+ },
+ "login-form": {
+ "log_in": "Saioa hasi",
+ "password": "Pasahitza",
+ "remember": "Gogoratu"
+ },
+ "notification_drawer": {
+ "empty": "Jakinarazpenik ez",
+ "title": "Jakinarazpenak"
+ },
+ "notification_toast": {
+ "connection_lost": "Konexioa galdu da. Berriro konektatzen…"
+ },
+ "panel": {
+ "config": {
+ "areas": {
+ "caption": "Gune Erregistroa",
+ "description": "Zure etxeko gune guztien ikuspegi orokorra.",
+ "editor": {
+ "create": "SORTU",
+ "default_name": "Gune berria",
+ "delete": "EZABATU",
+ "update": "EGUNERATU"
+ },
+ "picker": {
+ "header": "Gune Erregistroa",
+ "integrations_page": "Integrazioen orria"
+ }
+ },
+ "automation": {
+ "editor": {
+ "actions": {
+ "add": "Ekintza gehitu",
+ "delete": "Ezabatu",
+ "duplicate": "Bikoiztu",
+ "header": "Ekintzak",
+ "learn_more": "Ekintzei buruz gehiago ikasi",
+ "type": {
+ "condition": {
+ "label": "Baldintza"
+ },
+ "delay": {
+ "delay": "Atzerapena",
+ "label": "Atzerapena"
+ },
+ "service": {
+ "label": "Zerbitzua deitu"
+ },
+ "wait_template": {
+ "label": "Itxaron",
+ "wait_template": "Itxaron txantiloia"
+ }
+ },
+ "type_select": "Ekintza mota",
+ "unsupported_action": "Ekintza ez onartua: {action}"
+ },
+ "alias": "Izena",
+ "conditions": {
+ "add": "Baldintza gehitu",
+ "delete": "Ezabatu",
+ "duplicate": "Bikoiztu",
+ "header": "Baldintzak",
+ "learn_more": "Baldintzei buruz gehiago ikasi",
+ "type": {
+ "state": {
+ "label": "Egoera",
+ "state": "Egoera"
+ },
+ "sun": {
+ "label": "Eguzkia",
+ "sunrise": "Egunsentia",
+ "sunset": "Ilunabarra"
+ },
+ "template": {
+ "label": "Txantiloia",
+ "value_template": "Valio txantiloia"
+ },
+ "time": {
+ "label": "Denbora",
+ "weekdays": {
+ "mon": "Astelehena"
+ }
+ }
+ },
+ "type_select": "Baldintza mota"
+ },
+ "default_name": "Automatizazio berria",
+ "load_error_not_editable": "Soilik automations.yaml fitxategian dauden automatizazioak dira editagarriak.",
+ "load_error_unknown": "Errorea automatizazioa kargatzean ({err_no}).",
+ "save": "Gorde",
+ "triggers": {
+ "add": "Abiarazlea gehitu",
+ "delete": "Ezabatu",
+ "duplicate": "Bikoiztu",
+ "header": "Abiarazleak",
+ "learn_more": "Abiarazleei buruz gehiago ikasi",
+ "type": {
+ "event": {
+ "event_type": "Gertaera mota",
+ "label": "Gertaera"
+ },
+ "geo_location": {
+ "enter": "Sartu",
+ "event": "Gertaera:",
+ "label": "Geokokapena",
+ "leave": "Utzi",
+ "source": "Iturria"
+ },
+ "homeassistant": {
+ "event": "Gertaera:",
+ "label": "Home Assistant",
+ "shutdown": "Itzali",
+ "start": "Hasi"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "topic": "Gaia"
+ },
+ "numeric_state": {
+ "above": "Honen gainetik",
+ "below": "Honen azpitik"
+ },
+ "state": {
+ "label": "Egoera"
+ },
+ "sun": {
+ "event": "Gertaera:",
+ "label": "Eguzkia",
+ "sunrise": "Egunsentia",
+ "sunset": "Ilunabarra"
+ },
+ "template": {
+ "label": "Txantiloia",
+ "value_template": "Balio txantiloia"
+ },
+ "time": {
+ "at": "Noiz",
+ "label": "Ordua"
+ },
+ "time_pattern": {
+ "hours": "Orduak",
+ "label": "Denbora Eredua",
+ "minutes": "Minutuak",
+ "seconds": "Segunduak"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook IDa"
+ },
+ "zone": {
+ "enter": "Sartu",
+ "leave": "Utzi"
+ }
+ },
+ "type_select": "Abiarazle mota"
+ }
+ },
+ "picker": {
+ "add_automation": "Automatizazioa gehitu",
+ "learn_more": "Automatizazioei buruz gehiago ikasi"
+ }
+ },
+ "cloud": {
+ "description_login": "{email} bezala hasi duzu saioa",
+ "description_not_login": "Ez da saioa hasi"
+ },
+ "core": {
+ "caption": "Orokorra",
+ "section": {
+ "core": {
+ "core_config": {
+ "elevation_meters": "metro",
+ "imperial_example": "Fahrenheit, librak",
+ "latitude": "Latitudea",
+ "location_name": "Zure Home Assistant instalazioaren izena",
+ "longitude": "Longitudea",
+ "metric_example": "Celsius, kilogramoak",
+ "save_button": "Gorde",
+ "time_zone": "Ordu-eremua",
+ "unit_system": "Unitate Sistema",
+ "unit_system_imperial": "Inperiala",
+ "unit_system_metric": "Metrikoa"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Entitate Erregistroa",
+ "picker": {
+ "header": "Entitate Erregistroa"
+ }
+ },
+ "integrations": {
+ "caption": "Integrazioak",
+ "config_entry": {
+ "firmware": "Firmware: {version}",
+ "no_area": "Ez dago gunerik"
+ },
+ "config_flow": {
+ "external_step": {
+ "description": "Urrats hau betetzeko kanpoko webgune bat bisitatu beharko duzu.",
+ "open_site": "Webgunea ireki"
+ }
+ },
+ "configure": "Konfiguratu",
+ "configured": "Konfiguratuta",
+ "new": "Integrazio berri bat konfiguratu",
+ "none": "Ez dago ezer konfiguratuta"
+ },
+ "mqtt": {
+ "title": "MQTT"
+ },
+ "ozw": {
+ "network_status": {
+ "unknown": "Ezezaguna"
+ }
+ },
+ "person": {
+ "caption": "Pertsonak",
+ "description": "Kudeatu Home Assistantek jarraituko dituen pertsonak.",
+ "detail": {
+ "device_tracker_intro": "Hautatu pertsona horri dagozkion gailuak.",
+ "device_tracker_pick": "Jarraituko diren gailua aukeratu",
+ "device_tracker_picked": "Gailua jarraitu",
+ "name": "Izena"
+ }
+ },
+ "script": {
+ "caption": "Script",
+ "description": "Scriptak sortu eta editatu"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Erabiltzailea gehitu",
+ "create": "Sortu",
+ "password": "Pasahitza"
+ },
+ "caption": "Erabiltzaileak",
+ "description": "Erabiltzaileak kudeatu",
+ "editor": {
+ "activate_user": "Erabiltzailea aktibatu",
+ "caption": "Erabiltzailea ikusi",
+ "change_password": "Pasahitza aldatu",
+ "deactivate_user": "Erabiltzailea desaktibatu",
+ "delete_user": "Erabiltzailea ezabatu"
+ }
+ },
+ "zha": {
+ "add_device_page": {
+ "spinner": "ZHA Zigbee gailuak bilatzen…"
+ }
+ },
+ "zwave": {
+ "node_config": {
+ "set_config_parameter": "Ezarri konfigurazio-parametroa"
+ }
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "title": "Gertaerak"
+ },
+ "services": {
+ "title": "Zerbitzuak"
+ },
+ "states": {
+ "title": "Egoerak"
+ },
+ "templates": {
+ "title": "Txantiloiak"
+ }
+ }
+ },
+ "lovelace": {
+ "cards": {
+ "empty_state": {
+ "go_to_integrations_page": "Integrazioen orrira joan.",
+ "title": "Ongi etorri Etxera"
+ },
+ "picture-elements": {
+ "call_service": "{name} zerbitzua deitu",
+ "hold": "Eutsi:",
+ "more_info": "Informazio gehiago erakutsi: {name}",
+ "navigate_to": "{location}-ra nabigatu",
+ "tap": "Ukitu:"
+ },
+ "shopping-list": {
+ "add_item": "Elementua gehitu",
+ "checked_items": "Aukeratutako elementuak"
+ }
+ },
+ "editor": {
+ "edit_card": {
+ "add": "Txartela gehitu",
+ "delete": "Ezabatu",
+ "edit": "Editatu",
+ "header": "Txartelaren konfigurazioa",
+ "move": "Mugitu",
+ "pick_card": "Gehitu nahi duzun txartela aukeratu."
+ },
+ "edit_view": {
+ "add": "Bista gehitu",
+ "delete": "Bista ezabatu",
+ "edit": "Bista editatu",
+ "header": "Konfigurazioa ikusi"
+ },
+ "header": "Erabiltzaile interfazea editatu",
+ "migrate": {
+ "header": "Konfigurazio Bateraezina",
+ "migrate": "Konfigurazioa migratu"
+ },
+ "raw_editor": {
+ "header": "Ezarpenak aldatu",
+ "save": "Gorde",
+ "saved": "Gordeta",
+ "unsaved_changes": "Gorde gabeko aldaketak"
+ },
+ "save_config": {
+ "header": "Hartu zure Lovelace UI-aren kontrola",
+ "save": "Kontrola hartu"
+ }
+ },
+ "menu": {
+ "configure_ui": "Erabiltzaile interfazea konfiguratu",
+ "help": "Laguntza"
+ },
+ "warning": {
+ "entity_non_numeric": "Entitatea ez da zenbakizkoa: {entity}",
+ "entity_not_found": "Entitatea ez dago eskuragarri: {entity}"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Ezabatu",
+ "delete_prompt": "Mezu hau ezabatu?",
+ "empty": "Ez duzu mezurik"
+ },
+ "page-authorize": {
+ "form": {
+ "providers": {
+ "command_line": {
+ "step": {
+ "init": {
+ "data": {
+ "password": "Pasahitza",
+ "username": "Erabiltzaile izena"
+ }
+ }
+ }
+ },
+ "homeassistant": {
+ "error": {
+ "invalid_auth": "Erabiltzaile edo pasahitz okerra"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Pasahitza",
+ "username": "Erabiltzaile izena"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Bi faktoreko autentifikazio kodea"
+ }
+ }
+ }
+ },
+ "legacy_api_password": {
+ "step": {
+ "init": {
+ "data": {
+ "password": "API pasahitza"
+ }
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Zure ordenagailua ez dago baimenduta."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Erabiltzailea"
+ }
+ }
+ }
+ }
+ },
+ "unknown_error": "Zerbait gaizki joan da",
+ "working": "Mesedez, itxaron"
+ },
+ "initializing": "Hasieratzen"
+ },
+ "page-onboarding": {
+ "core-config": {
+ "button_detect": "Detektatu",
+ "finish": "Hurregoa",
+ "intro": "Kaixo {name}, ongi etorri Home Assistantera. Nola izendatu nahi duzu zure etxea?",
+ "intro_location_detect": "Informazio hau betetzen lagundu diezazukegu kanpoko zerbitzu batera esakera bakarra eginez.",
+ "location_name_default": "Etxea"
+ },
+ "integration": {
+ "finish": "Amaitu",
+ "more_integrations": "Gehiago"
+ },
+ "user": {
+ "create_account": "Kontua sortu",
+ "data": {
+ "name": "Izena",
+ "password": "Pasahitza",
+ "password_confirm": "Pasahitza baieztatu",
+ "username": "Erabiltzaile izena"
+ },
+ "error": {
+ "password_not_match": "Pasahitzak ez datoz bat",
+ "required_fields": "Beharrezkoak diren eremu guztiak bete"
+ },
+ "intro": "Erabiltzaile kontu bat sortuz has gaitezen.",
+ "required_field": "Beharrezkoa"
+ }
+ },
+ "profile": {
+ "change_password": {
+ "confirm_new_password": "Pasahitz berria baieztatu",
+ "current_password": "Egungo pasahitza",
+ "error_required": "Beharrezkoa",
+ "header": "Pasahitza aldatu",
+ "new_password": "Pasahitz berria",
+ "submit": "Bidali"
+ },
+ "current_user": "{fullName} moduan hasi duzu saioa.",
+ "is_owner": "Jabea zara",
+ "language": {
+ "dropdown_label": "Hizkuntza",
+ "header": "Hizkuntza",
+ "link_promo": "Itzultzen lagundu"
+ },
+ "long_lived_access_tokens": {
+ "create": "Tokena Sortu",
+ "create_failed": "Ezin izan da sarbide token sortu.",
+ "delete_failed": "Errorea sortu da sarbide tokena ezabatzerakoan.",
+ "header": "Iraupen luzeko sarbide tokenak",
+ "prompt_copy_token": "Zure sarbide tokena kopiatu. Ez da berriro erakutsiko.",
+ "prompt_name": "Izena?"
+ },
+ "mfa": {
+ "confirm_disable": "{name} desgaitu nahi duzula ziur zaude?",
+ "enable": "Gaitu"
+ },
+ "mfa_setup": {
+ "close": "Itxi",
+ "submit": "Bidali",
+ "title_success": "Arrakasta!"
+ },
+ "push_notifications": {
+ "error_load_platform": "notify.html5 konfiguratu.",
+ "header": "Push jakinarazpenak",
+ "link_promo": "Gehiago ikasi",
+ "push_notifications": "Push jakinarazpenak"
+ },
+ "refresh_tokens": {
+ "current_token_tooltip": "Ezin da uneko tokena ezabatu",
+ "delete_failed": "Errorea sortu da sarbide tokena ezabatzerakoan.",
+ "header": "Tokenak eguneratu",
+ "not_used": "Ez da inoiz erabili"
+ },
+ "themes": {
+ "dropdown_label": "Gaia",
+ "error_no_theme": "Ez dago gairik eskuragarri",
+ "header": "Gaia",
+ "link_promo": "Gaiei buruz gehiago ikasi"
+ }
+ }
+ },
+ "sidebar": {
+ "external_app_configuration": "Aplikazioaren Konfigurazioa"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/fa.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/fa.json
new file mode 100644
index 00000000..f03a2b43
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/fa.json
@@ -0,0 +1,2171 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "device": "دستگاه",
+ "integration": "ادغام",
+ "user": "کاربر"
+ }
+ },
+ "groups": {
+ "owner": "مالک",
+ "system-admin": "مدیران",
+ "system-read-only": "کاربران فقط خواندنی",
+ "system-users": "کاربران"
+ },
+ "panel": {
+ "calendar": "تقویم",
+ "config": "پیکربندی",
+ "developer_tools": "ابزارهای توسعه",
+ "energy": "انرژی",
+ "history": "تاریخچه",
+ "logbook": "گزارش روزانه",
+ "mailbox": "صندوق پستی",
+ "map": "نقشه",
+ "media_browser": "مرورگر رسانه",
+ "profile": "مشخصات",
+ "shopping_list": "لیست خرید",
+ "states": "نمای کلی"
+ },
+ "state": {
+ "default": {
+ "off": "خاموش",
+ "on": "روشن",
+ "unavailable": "غیرقابل دسترس",
+ "unknown": "نامشخص"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "خودکار",
+ "off": "خاموش",
+ "on": "روشن"
+ },
+ "hvac_action": {
+ "cooling": "خنک کننده",
+ "drying": "خشك كردن",
+ "fan": "فن",
+ "heating": "گرمایش",
+ "idle": "بیکار",
+ "off": "خاموش"
+ },
+ "preset_mode": {
+ "activity": "فعالیت",
+ "away": "بیرون",
+ "boost": "افزایش",
+ "comfort": "آسایش",
+ "eco": "اکو",
+ "home": "خانه",
+ "none": "هیچ کدام",
+ "sleep": "خواب"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "خودکار",
+ "away": "بیرون",
+ "baby": "نوزاد",
+ "boost": "افزایش",
+ "comfort": "آسایش",
+ "home": "خانه",
+ "normal": "عادی",
+ "sleep": "خواب"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "مصلح شده",
+ "armed_away": "تجهیزات بیرون",
+ "armed_custom_bypass": "مجهز",
+ "armed_home": "تجهیزات خانه",
+ "armed_night": "مصلح شده",
+ "arming": "در حال مسلح کردن",
+ "disarmed": "غیر مسلح",
+ "disarming": "در حال غیر مسلح کردن",
+ "pending": "در انتظار",
+ "triggered": "راه انداخته شده"
+ },
+ "default": {
+ "entity_not_found": "نهاد یافت نشد",
+ "error": "خطا",
+ "unavailable": "غیرقابل دسترس",
+ "unknown": "نامشخص"
+ },
+ "device_tracker": {
+ "home": "خانه",
+ "not_home": "بیرون"
+ },
+ "person": {
+ "home": "خانه",
+ "not_home": "بیرون"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "پیش فرض",
+ "header": "صوتی",
+ "input": "ورودی",
+ "output": "خروجی"
+ },
+ "network": {
+ "disabled": "غیر فعال",
+ "header": "شبکه",
+ "host": "میزبان"
+ },
+ "options": {
+ "edit_in_ui": "ویرایش در رابط کاربری",
+ "edit_in_yaml": "ویرایش در YAML",
+ "header": "تنظیمات",
+ "show_unused_optional": "گزینه های پیکربندی اختیاری استفاده نشده را نشان دهید"
+ }
+ }
+ },
+ "common": {
+ "close": "بستن"
+ },
+ "system": {
+ "supervisor": {
+ "join_beta_action": "پیوستن به کانال بتا",
+ "leave_beta_action": "خروج از کانال بتا"
+ }
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "ميخواي وارد سیستم بموني؟",
+ "confirm": "ذخیره ورود به سیستم",
+ "decline": "نه"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "حفاظت بیرون",
+ "arm_custom_bypass": "بایگانی سفارشی",
+ "arm_home": "حفاظت خانه",
+ "arm_night": "نوبت شب",
+ "clear_code": "پاک کردن",
+ "code": "کد",
+ "disarm": "دزدگیر خاموش"
+ },
+ "automation": {
+ "last_triggered": "آخرین راه اندازی",
+ "trigger": "اجرا کردن"
+ },
+ "camera": {
+ "not_available": "تصویر در دسترس نیست"
+ },
+ "climate": {
+ "aux_heat": "Aux گرما",
+ "away_mode": "حالت بیرون",
+ "cooling": "{name} خنک کننده",
+ "current_temperature": "{name} دمای فعلی",
+ "currently": "در حال حاضر",
+ "fan_mode": "حالت فن",
+ "heating": "{name} حرارت دادن",
+ "high": "inalt",
+ "low": "کم",
+ "on_off": "روشن/ خاموش",
+ "operation": "عملیات",
+ "preset_mode": "از پیش تعیین شده",
+ "swing_mode": "حالت چرخش",
+ "target_humidity": "هدف رطوبت",
+ "target_temperature": "هدف دما",
+ "target_temperature_entity": "{name} دمای هدف"
+ },
+ "counter": {
+ "actions": {
+ "reset": "تنظیم مجدد"
+ }
+ },
+ "cover": {
+ "position": "موقعیت",
+ "tilt_position": "موقعیت شیب"
+ },
+ "fan": {
+ "direction": "جهت",
+ "forward": "جلو",
+ "oscillate": "نوسان",
+ "reverse": "معکوس",
+ "speed": "سرعت"
+ },
+ "humidifier": {
+ "mode": "حالت"
+ },
+ "light": {
+ "brightness": "روشنایی",
+ "color_temperature": "دمای رنگ",
+ "effect": "افکت",
+ "white_value": "مقدار سفیدی"
+ },
+ "lock": {
+ "code": "رمز",
+ "lock": "قفل",
+ "unlock": "باز کردن"
+ },
+ "media_player": {
+ "media_next_track": "بعدی",
+ "media_play": "پخش",
+ "media_play_pause": "پخش / توقف",
+ "media_previous_track": "قبلی",
+ "sound_mode": "حالت صدا",
+ "source": "منبع",
+ "text_to_speak": "تبدیل متن به صحبت کردن",
+ "turn_off": "خاموش کردن",
+ "turn_on": "روشن کردن"
+ },
+ "persistent_notification": {
+ "dismiss": "رد"
+ },
+ "scene": {
+ "activate": "فعال سازی"
+ },
+ "script": {
+ "cancel": "لغو",
+ "cancel_multiple": "لغو {number}"
+ },
+ "service": {
+ "run": "اجرا"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "anuleaza",
+ "finish": "termina",
+ "pause": "pauza",
+ "start": "شروع"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "برگشت به پاک سازی",
+ "return_to_base": "بازگشت به خانه",
+ "start_cleaning": "شروع به تمیز کردن",
+ "turn_off": "خاموش کردن",
+ "turn_on": "روشن کردن"
+ }
+ },
+ "water_heater": {
+ "away_mode": "حالت بیرون",
+ "currently": "در حال حاضر",
+ "on_off": "روشن/خاموش",
+ "operation": "عملیات",
+ "target_temperature": "دمای هدف"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "فشار هوا",
+ "humidity": "رطوبت",
+ "precipitation": "بارش",
+ "temperature": "دما",
+ "visibility": "قابل دیدن",
+ "wind_speed": "سرعت باد"
+ },
+ "cardinal_direction": {
+ "e": "شرق",
+ "n": "شمال",
+ "nne": "شمال شرقی",
+ "nnw": "شمال غربی",
+ "nw": "شمال غربی",
+ "s": "جنوب",
+ "se": "جنوب شرقی",
+ "ssw": "جنوب غربی",
+ "sw": "جنوب غربی",
+ "w": "شرق",
+ "wnw": "شمال شرقی",
+ "wsw": "جنوب غربی"
+ },
+ "day": "روز",
+ "forecast": "پیش بینی",
+ "high": "بالا",
+ "low": "کم",
+ "night": "شب"
+ }
+ },
+ "common": {
+ "and": "و",
+ "back": "بازگشت",
+ "cancel": "لغو",
+ "close": "Inchide",
+ "continue": "ادامه",
+ "copied": "کپی شد",
+ "copied_clipboard": "در کلیپ بورد ذخیره شد",
+ "delete": "حذف",
+ "disable": "غیر فعال",
+ "enable": "فعال",
+ "error_required": "ضروری",
+ "leave": "خارج شدن",
+ "loading": "در حال بارگذاری",
+ "menu": "منو",
+ "next": "بعدی",
+ "no": "نه",
+ "not_now": "الان نه",
+ "previous": "قبلی",
+ "refresh": "نوسازی",
+ "remove": "حذف",
+ "rename": "تغییر نام",
+ "save": "ذخیره",
+ "successfully_deleted": "با موفقیت حذف شد",
+ "successfully_saved": "Salvat cu succes",
+ "undo": "لغو"
+ },
+ "components": {
+ "area-picker": {
+ "add_dialog": {
+ "add": "Adauga",
+ "failed_create_area": "Nu s-a reusit creerea zonei",
+ "name": "Nume",
+ "text": "Introdu numele noii zone",
+ "title": "Adauga zona noua"
+ },
+ "no_areas": "هیچ منطقه ای ندارید",
+ "no_match": "هیچ منطقه مطابقی یافت نشد"
+ },
+ "blueprint-picker": {
+ "add_user": "اضافه کردن کاربر",
+ "remove_user": "حذف کاربر"
+ },
+ "data-table": {
+ "search": "جستجو"
+ },
+ "date-range-picker": {
+ "ranges": {
+ "last_week": "هفته گذشته",
+ "this_week": "این هفته",
+ "today": "امروز",
+ "yesterday": "دیروز"
+ }
+ },
+ "device-picker": {
+ "no_devices": "شما هیچ دستگاهی ندارید",
+ "no_match": "هیچ دستگاه منطبقی یافت نشد"
+ },
+ "entity": {
+ "entity-picker": {
+ "entity": "نهاد",
+ "no_match": "هیچ نهاد منطبقی یافت نشد"
+ }
+ },
+ "history_charts": {
+ "loading_history": "در حال بارگیری تاریخ وضعیت…",
+ "no_history_found": "هیچ تاریخ وضعیتی پیدا نشد."
+ },
+ "media-browser": {
+ "play": "پخش",
+ "play-media": "پخش رسانه ها"
+ },
+ "related-filter-menu": {
+ "filter_by_entity": "فیلتر بر اساس مجموعه",
+ "filtered_by_area": "ناحیه: {area_name}",
+ "filtered_by_device": "دستگاه : {device_name}"
+ },
+ "related-items": {
+ "area": "Zona",
+ "device": "Dispozitiv",
+ "integration": "Integrare"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one {روز}\n other {روزها}\n}",
+ "hour": "{count} {count, plural,\n one {ساعت}\n other {ساعت ها}\n}",
+ "minute": "{count} {count, plural,\n one {دقیقه}\n other {دقیقه ها}\n}",
+ "second": "{count} {count, plural,\n one {ثانیه}\n other {ثانیه ها}\n}",
+ "week": "{count} {count, plural,\n one {هفته}\n other {هفته ها}\n}"
+ },
+ "never": "هرگز"
+ },
+ "service-picker": {
+ "service": "سرویس"
+ },
+ "statistic-picker": {
+ "learn_more": "درباره داده ها بیشتر بدانید"
+ },
+ "target-picker": {
+ "add_area_id": "ناحیه را انتخاب کنید",
+ "add_device_id": "دستگاه را انتخاب کنید",
+ "add_entity_id": "نهاد را انتخاب کنید",
+ "remove_area_id": "حذف ناحیه",
+ "remove_device_id": "حذف دستگاه",
+ "remove_entity_id": "حذف نهاد"
+ }
+ },
+ "dialogs": {
+ "domain_toggler": {
+ "title": "Comuta domeniile"
+ },
+ "entity_registry": {
+ "editor": {
+ "delete": "حذف",
+ "device_disabled": "دستگاه این نهاد غیر فعال است.",
+ "open_device_settings": "باز کردن تنظیمات دستگاه",
+ "update": "به روز رسانی"
+ },
+ "no_unique_id": "این نهاد شناسه منحصر به فرد ندارد ، بنابراین تنظیمات آن از UI قابل مدیریت نیست."
+ },
+ "generic": {
+ "close": "بستن"
+ },
+ "helper_settings": {
+ "input_datetime": {
+ "date": "تاریخ",
+ "datetime": "تاریخ و زمان",
+ "mode": "چه چیزی را می خواهید وارد کنید",
+ "time": "زمان"
+ },
+ "input_number": {
+ "max": "Valoare maxima",
+ "min": "Valoare minima",
+ "mode": "Mod de vizualizare",
+ "step": "اندازه گام",
+ "unit_of_measurement": "Unitate de masura"
+ },
+ "input_select": {
+ "add": "Adauga",
+ "add_option": "Adauga optiune",
+ "no_options": "Nu exista inca optiuni",
+ "options": "Optiuni"
+ },
+ "input_text": {
+ "max": "حداکثر طول",
+ "min": "حداقل طول",
+ "mode": "Mod de vizualizare",
+ "password": "Parola",
+ "text": "Text"
+ },
+ "platform_not_loaded": "ادغام {platform} بارگیری نشده است. لطفاً تنظیمات خود را با اضافه کردن 'default_config:' یا ''{platform}:'' تنظیمات خود را اضافه کنید.",
+ "yaml_not_editable": "تنظیمات این نهاد نمی تواند از UI ویرایش شود. فقط موجودیت هایی که از UI تنظیم می شوند از UI قابل تنظیم هستند."
+ },
+ "more_info_control": {
+ "restored": {
+ "confirm_remove_text": "Esti sigur ca vrei sa elimini aceasta entitate?",
+ "confirm_remove_title": "Eliminati entitatea?",
+ "not_provided": "Aceasta entitate este momentan indisponibila fiind un orfan al unei entitati sau unui dispozitiv eliminat, schimbat sau disfunctional",
+ "remove_action": "Eliminati entitatea"
+ },
+ "script": {
+ "last_action": "آخرین اقدام"
+ },
+ "sun": {
+ "elevation": "ارتفاع",
+ "rising": "افزایش",
+ "setting": "تنظیمات"
+ },
+ "updater": {
+ "title": "دستورالعمل به روز رسانی"
+ },
+ "vacuum": {
+ "commands": "Comenzi aspirator:",
+ "fan_speed": "Viteza ventilator",
+ "locate": "Localizare",
+ "pause": "Pauza",
+ "return_home": "Intoarcere acasa",
+ "start": "Start",
+ "start_pause": "Start/Pauza",
+ "status": "Status",
+ "stop": "Stop"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "تلاش برای تجزیه MQTT پیام به عنوان JSON",
+ "entities": "موجودیت ها",
+ "no_entities": "هیچ نهاد",
+ "no_triggers": "بدون محرک",
+ "payload_display": "Payload display",
+ "recent_messages": "{n} پیام (های) اخیراً دریافت شده",
+ "show_as_yaml": "نمایش به صورت YAML",
+ "title": "{device} اطلاعات اشکال زدایی",
+ "triggers": "تحریکات"
+ },
+ "options_flow": {
+ "form": {
+ "header": "تنظیمات"
+ },
+ "success": {
+ "description": "تنظیمات با موفقیت ذخیره شدند"
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "ناحیه ها",
+ "automation": "اتوماسیون",
+ "blueprint": "Blueprint ",
+ "core": "عمومی",
+ "customize": "سفارشی سازی ها",
+ "devices": "دستگاه ها",
+ "entities": "نهادها",
+ "info": "اطلاعات",
+ "person": "افراد",
+ "script": "اسکریپت ها",
+ "server_control": "کنترل های سرور",
+ "users": "کاربران",
+ "zone": "مناطق"
+ },
+ "types": {
+ "server_control": "سرور"
+ }
+ }
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "افزودن دستگاه ها از طریق این دستگاه",
+ "reconfigure": "پیکربندی مجدد دستگاه",
+ "remove": "حذف دستگاه",
+ "zigbee_information": "اطلاعات zigbee"
+ },
+ "device_signature": "امضای دستگاه Zigbee",
+ "manuf": "de catre {fabricant}",
+ "no_area": "Nicio Zona ",
+ "power_source": "منبع نیرو",
+ "quirk": "کنجکاوی",
+ "services": {
+ "remove": "Elimina un dispozitiv din reteaua Zigbee",
+ "zigbee_information": "مشاهده اطلاعات Zigbee دستگاه."
+ },
+ "zha_device_card": {
+ "device_name_placeholder": "Prenume utilizator"
+ }
+ },
+ "zha_reconfigure_device": {
+ "heading": "پیکربندی مجدد دستگاه"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\n one {روز}\n other {روز ها}\n}",
+ "hour": "{count} {تعداد, جمع,\nیکی {ساعت}\nدیگر {ساعت}\n}",
+ "minute": "{count} {count, plural,\n one {دقیقه}\n other {دقیقه ها}\n}",
+ "second": "{count} {count, plural,\n one {ثانیه}\n other {ثانیه ها}\n}",
+ "week": "{count} {count, plural,\n one {هفته}\n other {هفته ها}\n}"
+ },
+ "login-form": {
+ "log_in": "ورود",
+ "password": "رمز عبور",
+ "remember": "یاد آوردن"
+ },
+ "notification_drawer": {
+ "click_to_configure": "برای پیکربندی {entity} روی دکمه کلیک کنید",
+ "empty": "بدون اعلان",
+ "title": "اعلانها"
+ },
+ "notification_toast": {
+ "connection_lost": "ارتباط از دست رفته است. اتصال مجدد…",
+ "service_call_failed": "تماس با سرویس {service} ناموفق بود"
+ },
+ "panel": {
+ "config": {
+ "areas": {
+ "caption": "ناحیه ها",
+ "data_table": {
+ "area": "منطقه",
+ "devices": "دستگاه ها"
+ },
+ "delete": {
+ "confirmation_text": "هیچیک از درستگاه های این ناحیه اختصاص داده نشده اند",
+ "confirmation_title": "آیا مطمئنید که می خواهید این ناحیه را حذف کنید ؟"
+ },
+ "description": "دستگاه ها و نهاد ها را در مناطق گروه بندی کن",
+ "editor": {
+ "create": "ايجاد كردن",
+ "default_name": "ناحیه جدید",
+ "delete": "حذف",
+ "update": "به روز رسانی"
+ },
+ "picker": {
+ "create_area": "ایجاد منطقه",
+ "header": "مناطق",
+ "integrations_page": "صفحه ادغام",
+ "introduction": "مناطق برای سازماندهی مکان دستگاه ها استفاده می شود. این اطلاعات در سراسر Home Assistant برای کمک به شما در سازماندهی رابط ، مجوزها و ادغام با سایر سیستم ها مورد استفاده قرار می گیرد.",
+ "no_areas": "به نظر می رسد شما هنوز هیچ منطقه ای ندارید!"
+ }
+ },
+ "automation": {
+ "caption": "اتوماسیون",
+ "description": "ایجاد و ویرایش اتوماسیون",
+ "dialog_new": {
+ "header": "ایجاد اتوماسیون جدید",
+ "thingtalk": {
+ "create": "ایجاد کردن",
+ "header": "اتوماسیونی که میخواهید بسازید را توصیف کنید",
+ "input_label": "این اتوماسیون چه کاری باید انجام دهد؟",
+ "intro": "و ما سعی خواهیم کرد آن را برای شما ایجاد کنیم. به عنوان مثال: وقتی می روم چراغ ها را خاموش کنید."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "افزودن اقدام",
+ "delete": "حذف",
+ "delete_confirm": "مطمئنید که میخواهید این را حذف کنید؟",
+ "duplicate": "تکثیر کردن",
+ "header": "اقدامات",
+ "introduction": "این اقدامات همان چیزی است که Home Assistantانجام می دهد وقتی که اتوماسیون راه اندازی می شود.",
+ "learn_more": "درباره عملگردها بیشتر بدانید",
+ "type": {
+ "choose": {
+ "label": "انتخاب کنید"
+ },
+ "condition": {
+ "label": "وضعیت"
+ },
+ "delay": {
+ "delay": "تاخیر",
+ "label": "تاخیر"
+ },
+ "device_id": {
+ "extra_fields": {
+ "code": "Cod"
+ },
+ "label": "Dispozitiv"
+ },
+ "event": {
+ "event": "اتفاق",
+ "label": "اجرا رویداد",
+ "service_data": "اطلاعات خدمات"
+ },
+ "scene": {
+ "label": "Activeaza scena"
+ },
+ "service": {
+ "label": "خدمات فراخوانی"
+ },
+ "wait_template": {
+ "label": "صبر کنید",
+ "timeout": "تایم آوت (اختیاری)",
+ "wait_template": "منتظر قالب"
+ }
+ },
+ "type_select": "نوع عمل",
+ "unsupported_action": "بدون پشتیبانی رابط کاربری برای عمل: {action}"
+ },
+ "alias": "نام",
+ "conditions": {
+ "add": "اضافه کردن شرط",
+ "delete": "حذف",
+ "delete_confirm": "مطمئنید میخواهید این را حذف کنید؟",
+ "duplicate": "تکثیر کردن",
+ "header": "شرایط",
+ "introduction": "شرایط اختیاری است و از اجرای بیشتر جلوگیری می کند مگر اینکه همه شرایط برآورده شود.",
+ "learn_more": "درباره شرایط بیشتر بدانید",
+ "type": {
+ "and": {
+ "label": "و"
+ },
+ "device": {
+ "extra_fields": {
+ "above": "Deasupra",
+ "below": "Dedesubt",
+ "for": "Durata"
+ },
+ "label": "Dispozitiv"
+ },
+ "not": {
+ "label": "نه"
+ },
+ "numeric_state": {
+ "above": "بالاتر",
+ "below": "پایین تر",
+ "label": "Numeric state",
+ "value_template": "مقدارقالب (اختیاری)"
+ },
+ "or": {
+ "label": "یا"
+ },
+ "state": {
+ "label": "حالت",
+ "state": "حالت"
+ },
+ "sun": {
+ "after": "بعد از:",
+ "after_offset": "پس از افست (اختیاری)",
+ "before": "قبل از:",
+ "before_offset": "قبل از افست (اختیاری)",
+ "label": "آفتاب",
+ "sunrise": "طلوع",
+ "sunset": "غروب"
+ },
+ "template": {
+ "label": "قالب",
+ "value_template": "مقدار قالب"
+ },
+ "time": {
+ "after": "بعد از",
+ "before": "قبل از",
+ "label": "زمان",
+ "weekdays": {
+ "mon": "دوشنبه"
+ }
+ },
+ "zone": {
+ "entity": "نهاد به همراخ موقعیت",
+ "label": "منطقه",
+ "zone": "منطقه"
+ }
+ },
+ "type_select": "نوع وضعیت",
+ "unsupported_condition": "بدون پشتیبانی رابط کاربری برای این شزایط: {condition}"
+ },
+ "default_name": "اضافه کردن اتوماسیون",
+ "description": {
+ "label": "توضیحات",
+ "placeholder": "توضیحات اختیاری"
+ },
+ "introduction": "برای روح بخشیدن به خانه از اتوماسیون استفاده کنید.",
+ "load_error_not_editable": "فقط اتوماسیون در automations.yaml قابل ویرایش هستند.",
+ "load_error_unknown": "خطا در بارگذاری اتوماسیون ({err_no}).",
+ "save": "ذخیره",
+ "triggers": {
+ "add": "اضافه کردن راه انداز",
+ "delete": "حذف",
+ "delete_confirm": "آیا مطمئن هستید که می خواهید این را حذف کنید؟",
+ "duplicate": "کپی کنید",
+ "header": "راه اندازها",
+ "introduction": "راه حلی است که پردازش یک قانون اتوماسیون را آغاز می کند. ممکن است چند عامل برای یک قاعده مشخص شود. هنگامی که یک ماشه شروع می شود، Home Assistant شرایط را تایید می کند، اگر وجود داشته باشد، و اقدام را فراخوانی می کند.",
+ "learn_more": "درباره راه اندازها بیشتر بیاموزید",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "بالا",
+ "below": "زیر",
+ "for": "مدت زمان"
+ },
+ "trigger": "ماشه"
+ },
+ "event": {
+ "event_data": "داده های رویداد",
+ "event_type": "نوع رویداد",
+ "label": "رویداد"
+ },
+ "geo_location": {
+ "enter": "ورود",
+ "event": "رویداد:",
+ "label": "موقعیت جغرافیایی",
+ "leave": "ترک کردن",
+ "source": "منبع",
+ "zone": "منطقه"
+ },
+ "homeassistant": {
+ "event": "رویداد:",
+ "label": "Home Assistant",
+ "shutdown": "خاموش کردن",
+ "start": "شروع"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "محموله (اختیاری)",
+ "topic": "موضوع"
+ },
+ "numeric_state": {
+ "above": "بالا",
+ "below": "زیر",
+ "label": "حالت عددی",
+ "value_template": "مقدار قالب (اختیاری)"
+ },
+ "state": {
+ "for": "برای",
+ "from": "از",
+ "label": "وضعیت",
+ "to": "به"
+ },
+ "sun": {
+ "event": "رویداد",
+ "label": "آفتاب",
+ "offset": "افست (اختیاری)",
+ "sunrise": "طلوع",
+ "sunset": "غروب"
+ },
+ "tag": {
+ "label": "برچسب"
+ },
+ "template": {
+ "label": "قالب",
+ "value_template": "مقدار قالب"
+ },
+ "time": {
+ "at": "در زمان",
+ "label": "زمان"
+ },
+ "time_pattern": {
+ "hours": "ساعت ها",
+ "label": "الگو زمان",
+ "minutes": "دقیقه ها",
+ "seconds": "ثانیه ها"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "شناسه Webhook"
+ },
+ "zone": {
+ "enter": "وارد",
+ "entity": "نهاد با موقعیت",
+ "event": "رویداد",
+ "label": "منطقه",
+ "leave": "خارج شدن",
+ "zone": "منطقه"
+ }
+ },
+ "type_select": "نوع راه انداز",
+ "unsupported_platform": "بدون پشتیبانی رابط کاربری برای پلت فرم: {platform}"
+ },
+ "unsaved_confirm": "شما تغییرات ذخیره نشده ای دارید. آیا مطمئنی که می خواهی خارج بشی؟"
+ },
+ "picker": {
+ "add_automation": "اضافه کردن اتوماسیون",
+ "delete_automation": "Elimina automatizare",
+ "delete_confirm": "Esti sigur ca vrei sa elimini aceasta automatizare?",
+ "edit_automation": "Editeaza automatizare",
+ "header": "ویرایشگر اتوماسیون",
+ "headers": {
+ "name": "نام"
+ },
+ "introduction": "ویرایشگر اتوماسیون اجازه می دهد تا شما را به ایجاد و ویرایش اتوماسیون بپردازید . لطفا پیوند زیر را دنبال کنید تا دستورالعمل ها را بخوانید که مطمئن شوید که Home Assistant را به درستی پیکربندی کرده اید.",
+ "learn_more": "درباره اتوماسیون بیشتر بدانید",
+ "no_automations": "ما نميتونستيم هيچ اتوماسيوني پيدا کنيم",
+ "only_editable": "Doar automatizarile definite in automations.yaml sunt editabile",
+ "pick_automation": "انتخاب اتوماسیون برای ویرایش",
+ "show_info_automation": "Afiseaza informatii despre automatizare"
+ },
+ "thingtalk": {
+ "task_selection": {
+ "language_note": "توجه: در حال حاضر فقط زبان انگلیسی پشتیبانی می شود."
+ }
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "انجمن ها",
+ "file_name": "مسیر Blueprint",
+ "import_header": "طرح '' {name} ''",
+ "import_introduction_link": "شما می توانید طرح های دیگر کاربران را از Github و {community_link}وارد کنید. آدرس طرح blueprint را در پایین وارد کنید.",
+ "raw_blueprint": "محتوای Blueprint",
+ "unsupported_blueprint": "این طرح پشتیبانی نمی شود"
+ },
+ "overview": {
+ "delete_blueprint": "حذف Blueprint",
+ "discover_more": "blueprint های بیشتری را پیدا کنید",
+ "headers": {
+ "domain": "دامنه",
+ "file_name": "نام فایل",
+ "name": "نام"
+ },
+ "use_blueprint": "ایجاد اتوماسیون"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "title": "الکسا"
+ },
+ "connected": "متصل",
+ "google": {
+ "not_configured_title": "Google Assistant فعال نیست"
+ },
+ "integrations": "ادغام ها",
+ "integrations_introduction2": "بررسی وب سایت برای ",
+ "integrations_link_all_features": "تمام ویژگی های موجود",
+ "manage_account": "مدیریت حساب",
+ "nabu_casa_account": "حساب Nabu Casa",
+ "not_connected": "متصل نیست",
+ "remote": {
+ "title": "کنترل از راه دور"
+ },
+ "sign_out": "خروج از سیستم",
+ "tts": {
+ "male": "مرد",
+ "title": "متن به گفتار",
+ "try": "تلاش كردن"
+ },
+ "webhooks": {
+ "loading": "بارگذاری…",
+ "manage": "مدیریت"
+ }
+ },
+ "alexa": {
+ "title": "Alexa"
+ },
+ "description_features": "کنترل کردن از خانه، یکپارچه با الکسا و Google Assistant.",
+ "description_login": "وارد شده به عنوان {email}",
+ "description_not_login": "وارد نشده اید",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Data expirare certificat",
+ "certificate_information": "Informatii certificat",
+ "close": "بستن",
+ "will_be_auto_renewed": "Va fi reinnoit in mod automat"
+ },
+ "dialog_cloudhook": {
+ "close": "Inchide",
+ "confirm_disable": "Esti sigur ca vrei sa dezactivezi acest webhook?",
+ "copied_to_clipboard": "Copiat in clipboard",
+ "info_disable_webhook": "Daca nu mai doresti sa folosesti acest webhook, poti sa",
+ "link_disable_webhook": "dezactiveaza",
+ "view_documentation": "Vizualizeaza documentatie"
+ },
+ "forgot_password": {
+ "email": "پست الکترونیک",
+ "email_error_msg": "ایمیل نامعتبر",
+ "subtitle": "رمز عبور خود را فراموش کرده اید",
+ "title": "رمز عبور را فراموش کرده ام"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Trebuie sa iti confirmi adresa de email inainte de a te conecta",
+ "alert_password_change_required": "Trebuie sa iti schimbi parola inainte de a te conecta",
+ "dismiss": "Revoca",
+ "email": "Adresa de email",
+ "email_error_msg": "Adresa de email invalida",
+ "forgot_password": "Ai uitat parola?",
+ "introduction2": "Acest serviciu este condus de catre partenerul nostru",
+ "learn_more_link": "Afla mai multe despre Home Assistant Coud",
+ "password": "Parola",
+ "password_error_msg": "Parolele au cel putin 8 caractere",
+ "sign_in": "Conecteaza-te",
+ "start_trial": "Incepe perioada de proba de o luna",
+ "title": "Conectare in Cloud",
+ "trial_info": "Nu sunt necesare informatii de plata"
+ },
+ "register": {
+ "account_created": "Cont creat! Verifica email-ul pentru instructiuni cum sa iti activezi contul",
+ "create_account": "Creaza cont",
+ "email_address": "Adresa de email",
+ "email_error_msg": "Adresa de email invalida",
+ "feature_amazon_alexa": "Integrare cu Amazon Alexa",
+ "feature_google_home": "Integrare cu Google Assistant",
+ "feature_remote_control": "Controleaza Home Asisstant cand nu esti acasa",
+ "headline": "Incepe perioada de proba gratuita",
+ "information": "Creaza un cont pentru a incepe perioada de proba de o luna cu Home Assistant Cloud. Nu sunt necesare informatii de plata",
+ "information2": "Perioada de proba va va da acces la toate beneficiile Home Assistant Cloud, incluzand",
+ "information3": "Acest serviciu este condus de catre partenerul nostru",
+ "information3a": ", o companie creata de fondatorii Home Assistant si Hass.io",
+ "information4": "Prin inregistrarea unui cont esti de acord cu urmatorii termeni si conditii",
+ "link_privacy_policy": "Politica de Confidentialitate",
+ "link_terms_conditions": "Termeni si Conditii",
+ "password": "Parola",
+ "password_error_msg": "Parolele au cel putin 8 caractere",
+ "resend_confirm_email": "Retrimite email-ul de confirmare",
+ "start_trial": "Incepe perioada de proba",
+ "title": "Inregistreaza Cont"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "شما تغییرات ذخیره نشده ای دارید. آیا مطمئنید که می خواهید خارج شوید؟"
+ }
+ },
+ "core": {
+ "caption": "عمومی",
+ "description": "سیستم واحد ، مکان ، منطقه زمانی و سایر پارامترهای کلی",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "واحد پول",
+ "edit_requires_storage": "ویرایشگر غیرفعال شده است چون پیکربندی ذخیره شده در configuration.yaml.",
+ "elevation": "ارتفاع",
+ "elevation_meters": "متر",
+ "external_url": "URL خارجی",
+ "find_currency_value": "ارزش خود را بیابید",
+ "imperial_example": "فارنهایت، پوند",
+ "internal_url": "URL داخلی",
+ "latitude": "طول و عرض جغرافیایی",
+ "location_name": "نام برای نصب صفحه اصلی دستیار شما",
+ "longitude": "جغرافیایی",
+ "metric_example": "سانتیگراد، کیلوگرم",
+ "save_button": "ذخیره",
+ "time_zone": "منطقه زمانی",
+ "unit_system": "واحد سیستم",
+ "unit_system_imperial": "امپریال",
+ "unit_system_metric": "متر"
+ },
+ "header": "پیکربندی و کنترل سرور",
+ "introduction": "تغییر پیکربندی شما می تواند یک روند خسته کننده باشد. ما میدانیم. این بخش سعی خواهد کرد زندگی شما را کمی ساده تر کند."
+ }
+ }
+ },
+ "customize": {
+ "attributes_not_set": "Urmatoarele atribute nu au fost fixate. Fixeaza-le daca vrei",
+ "caption": "سفارشی سازی ها",
+ "description": "نهادهای خود را سفارشی کنید",
+ "pick_attribute": "Alege un atribut pentru a trece peste acesta",
+ "picker": {
+ "header": "سفارشی سازی ها",
+ "introduction": "نویسه ویژگی های هر سازمانی. سفارشی سازی اضافه شده / ویرایش شده فورا اثر می کند. سفارشی های حذف شده هنگامی که موجودیت به روز می شود اثر می کند."
+ },
+ "warning": {
+ "include_link": "Include customize.yaml"
+ }
+ },
+ "devices": {
+ "automation": {
+ "actions": {
+ "caption": "وقتی چیزی تحریک می شود…"
+ },
+ "automations": "Automatizari",
+ "conditions": {
+ "caption": "فقط کاری کن اگر…"
+ },
+ "create": "Creaza automatizare cu acest dispozitiv",
+ "create_disable": "نمی توان اتوماسیون را با دستگاه غیر فعال ایجاد کرد",
+ "no_automations": "Nu exista automatizari",
+ "no_device_automations": "Nu exista automatizari disponibile pentru acest dispozitiv",
+ "triggers": {
+ "caption": "يه کاري بکن وقتي..."
+ }
+ },
+ "cant_edit": "Puteti edita doar elemente create in Interfata Utilizator",
+ "caption": "دستگاهها",
+ "confirm_delete": "آیا مطمئنید که می خواهید این دستگاه را حذف کنید ؟",
+ "confirm_rename_entity_ids": "Vrei de asemenea sa redenumesti Entity ID-ul entitatilor tale?",
+ "data_table": {
+ "area": "Zona",
+ "battery": "Baterie",
+ "device": "Dispozitiv",
+ "integration": "Integrare",
+ "manufacturer": "Fabricant",
+ "model": "Model",
+ "no_devices": "دستگاهی وجود ندارد"
+ },
+ "delete": "حذف",
+ "description": "مدیریت دستگاه های پیکربندی شده",
+ "device_info": "اطلاعات دستگاه",
+ "device_not_found": "Nu s-a descoperit dispozitivul.",
+ "disabled": "غیر فعال",
+ "disabled_by": {
+ "config_entry": "پیکربندی ورودی",
+ "integration": "ادغام",
+ "user": "کاربر"
+ },
+ "enabled_cause": "دستگاه به دلیل {cause} غیرفعال شده است.",
+ "enabled_description": "دستگاه های غیرفعال نشان داده نمی شوند و نهادهای متعلق به دستگاه غیرفعال می شوند و به Home Assistant اضافه نمی شوند.",
+ "enabled_label": "فعال کردن دستگاه",
+ "entities": {
+ "add_entities_lovelace": "Adauga la Lovelace",
+ "entities": "Entitati",
+ "none": "Acest dispozitiv nu are nicio entitate"
+ },
+ "name": "Nume",
+ "no_devices": "دستگاهی وجود ندارد",
+ "picker": {
+ "filter": {
+ "filter": "فیلتر",
+ "hidden_devices": "{number} hidden {number, plural,\n one {دستگاه}\n other {دستگاه ها}\n}",
+ "show_all": "نمایش همه",
+ "show_disabled": "نمایش دستگاه های غیرفعال"
+ },
+ "search": "جستجوی دستگاه ها"
+ },
+ "scene": {
+ "create": "Creaza scena cu acest dispozitiv",
+ "create_disable": "نمی توان صحنه را با دستگاه غیر فعال ایجاد کرد",
+ "no_scenes": "Nu exista scene",
+ "scenes": "Scene"
+ },
+ "scenes": "Scene",
+ "script": {
+ "create": "Creaza script cu acest dispozitiv",
+ "create_disable": "نمی توان اسکریپت را با دستگاه غیر فعال ایجاد کرد",
+ "no_scripts": "Nu exista scripturi",
+ "scripts": "Scripturi"
+ },
+ "scripts": "Scripturi",
+ "unknown_error": "Eroare necunoscuta",
+ "unnamed_device": "Dispozitiv nedenumit",
+ "update": "Actualizeaza"
+ },
+ "energy": {
+ "battery": {
+ "learn_more": "اطلاعات بیشتر در مورد چگونگی شروع."
+ },
+ "device_consumption": {
+ "selected_stat": "ردیابی انرژی برای"
+ },
+ "gas": {
+ "dialog": {
+ "cost_entity_input": "نهاد با قیمت فعلی به ازای هر {واحد}",
+ "cost_number_input": "قیمت هر {واحد}",
+ "header": "پیکربندی مصرف گاز"
+ },
+ "learn_more": "اطلاعات بیشتر در مورد چگونگی شروع.",
+ "title": "مصرف گاز"
+ },
+ "grid": {
+ "flow_dialog": {
+ "to": {
+ "cost_entity_input": "واحد با نرخ فعلی"
+ }
+ }
+ },
+ "validation": {
+ "issues": {
+ "entity_unexpected_unit_gas_price": {
+ "description": "واحدهای زیر واحد اندازه گیری مورد انتظار \"\" {currency} /kWh \"\" ، \"\" {currency} /Wh \"\" ، \" {currency} /m³\" یا \" {currency} /ft³\" \"را ندارند :",
+ "title": "واحد اندازه گیری غیر منتظره"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "نهاد ها",
+ "description": "مدیریت نهادهای شناخته شده",
+ "picker": {
+ "filter": {
+ "filter": "Filtru",
+ "show_disabled": "Afiseaza entitatile dezactivate",
+ "show_unavailable": "Afiseaza entitatile indisponibile"
+ },
+ "header": "نهاد ها",
+ "headers": {
+ "area": "منطقه",
+ "entity_id": "ID Entitate",
+ "integration": "Integrare",
+ "name": "Nume",
+ "status": "Status"
+ },
+ "status": {
+ "disabled": "Dezactivat",
+ "ok": "OK",
+ "restored": "بازیابی شد",
+ "unavailable": "Indisponibil"
+ }
+ }
+ },
+ "header": "پیکربندی HOME ASSistant",
+ "helpers": {
+ "caption": "Ajutoare",
+ "description": "Elemente ce pot ajuta la construirea de automatizari",
+ "dialog": {
+ "add_helper": "اضافه کردن کمکی",
+ "add_platform": "افزودن {platform}",
+ "create": "ایجاد کردن"
+ },
+ "picker": {
+ "add_helper": "اضافه کردن کمکی",
+ "headers": {
+ "editable": "قابل ویرایش",
+ "entity_id": "شناسه نهاد",
+ "name": "نام",
+ "type": "نوع"
+ }
+ },
+ "types": {
+ "input_boolean": "تغییر وضعیت",
+ "input_datetime": "تاریخ و / یا زمان",
+ "input_number": "Numar",
+ "input_text": "Text"
+ }
+ },
+ "info": {
+ "built_using": "Construit cu ajutorul",
+ "documentation": "مستندات",
+ "home_assistant_logo": "Logo Home Assistant",
+ "icons_by": "آیکون توسط",
+ "integrations": "یکپارچگی",
+ "issues": "موضوعات",
+ "server": "سرور",
+ "source": "Sursa:"
+ },
+ "integrations": {
+ "add_integration": "اضافه کردن ادغام",
+ "caption": "یکپارچگی",
+ "config_entry": {
+ "delete": "حذف",
+ "delete_confirm": "آیا مطمئن هستید که می خواهید این یکپارچگی را حذف کنید؟",
+ "device_unavailable": "دستگاه در دسترس نیست",
+ "entity_unavailable": "نهاد در دسترس نیست",
+ "firmware": "سیستم عامل: {version}",
+ "hub": "اتصال از طریق",
+ "manuf": "توسط {manufacturer}",
+ "no_area": "بدون منطقه",
+ "rename": "تغییر نام",
+ "restart_confirm": "برای حذف کامل این یکپارچگی home assistant را دوباره راهاندازی کنید.",
+ "system_options": "گزینه های سیستم"
+ },
+ "config_flow": {
+ "aborted": "Esuat",
+ "close": "Inchide",
+ "created_config": "Configurare creata pentru {nume}",
+ "external_step": {
+ "description": "این مرحله نیاز به بازدید از وب سایت خارجی دارد که باید تکمیل شود.",
+ "open_site": "باز کردن سایت"
+ },
+ "finish": "Termina",
+ "not_all_required_fields": "Nu toate campurile necesare sunt completate",
+ "submit": "ارسال"
+ },
+ "configure": "پیکربندی",
+ "configured": "پیکربندی شده",
+ "description": "مدیریت یکپارچه سازی با خدمات، دستگاه ها، …",
+ "discovered": "کشف شده",
+ "ignore": {
+ "ignore": "Ignora",
+ "ignored": "Ignorat",
+ "show_ignored": "Afiseaza integrarile ignorate"
+ },
+ "integration": "ادغام",
+ "integration_not_found": "Nu s-a gasit integrarea",
+ "new": "تنظیم ادغام جدید",
+ "no_integrations": "به نظر می رسد شما هنوز هیچ پیکربندی کاملی ندارید. برای اضافه کردن اولین ادغام خود بر روی دکمه زیر کلیک کنید!",
+ "none": "هیچ چیز پیکربندی نشده است",
+ "none_found": "هیچ یکپارچگی یافت",
+ "none_found_detail": "معیارهای جستجوی خود را تنظیم کنید.",
+ "note_about_integrations": "Nu toate integrarile pot fi configurate inca folosind interfata utilizator",
+ "note_about_website_reference": "Mai multe sunt disponibile la",
+ "rename_dialog": "ویرایش نام این پیکربندی ورود",
+ "rename_input_label": "ورود نام"
+ },
+ "introduction": "در اینجا می توانید اجزای خود و صفحه اصلی دستیار را پیکربندی کنید.فعلا ویرایش همه چیز از طریق ویرایش بصری امکان پذیر نیست ، اما ما داریم روی اون کار می کنیم.",
+ "logs": {
+ "level": {
+ "critical": "بحرانی",
+ "debug": "اشکال زدایی",
+ "error": "خطا",
+ "info": "اطلاعات",
+ "warning": "هشدار"
+ },
+ "no_errors": "هیچ خطایی گزارش نشده است",
+ "refresh": "تازه کن"
+ },
+ "lovelace": {
+ "dashboards": {
+ "cant_edit_default": "داشبورد استاندارد Lovelace را نمی توان از UI ویرایش کرد. می توانید با تنظیم داشبورد دیگر به عنوان پیش فرض ، آن را مخفی کنید.",
+ "cant_edit_yaml": "داشبورد های تعریف شده در YAML را نمی توان از UI ویرایش کرد. آنها را در configuration.yaml تغییر دهید.",
+ "default_dashboard": "این داشبورد پیش فرض است",
+ "detail": {
+ "create": "ایجاد",
+ "delete": "حذف",
+ "dismiss": "بستن",
+ "edit_dashboard": "ویرایش داشبورد",
+ "icon": "آیکون",
+ "new_dashboard": "افزودن داشبورد جدید",
+ "remove_default": "این دستگاه از حالت پیش فرض خارج شد",
+ "require_admin": "فقط مدیر",
+ "set_default": "این دستگاه به صورت پیش فرض تنظیم شد",
+ "show_sidebar": "نمایش در نوار کناری",
+ "title": "عنوان",
+ "title_required": "عنوان مورد نیاز است.",
+ "update": "به روز رسانی",
+ "url": "آدرس",
+ "url_error_msg": "URL باید حاوی یک - و نمی تواند شامل فاصله یا کاراکتر های خاص به جز _ و - باشد"
+ },
+ "picker": {
+ "headers": {
+ "default": "پیش فرض"
+ },
+ "open": "باز"
+ }
+ },
+ "resources": {
+ "cant_edit_yaml": "شما در حالت YAML از Lovelace استفاده می کنید ، بنابراین نمی توانید منابع خود را از طریق UI مدیریت کنید. آنها را درconfiguration.yaml مدیریت کنید.",
+ "caption": "منابع",
+ "confirm_delete": "آیا مطمئنید که می خواهید این منبع را حذف کنید ؟",
+ "detail": {
+ "create": "ایجاد کن",
+ "delete": "پاک کن",
+ "dismiss": "بستن",
+ "new_resource": "اضافه کردن منبع جدید",
+ "type": "نوع منبع",
+ "update": "به روز رسانی",
+ "url": "آدرس",
+ "url_error_msg": "Url یک فیلد ضروری است",
+ "warning_header": "محتاط باشید!",
+ "warning_text": "اضافه کردن منابع می تواند خطرناک باشد ، مطمئن شوید که منابع را می شناسید و به آنها اعتماد دارید. منابع بد به طور جدی می تواند به سیستم شما آسیب برساند."
+ },
+ "picker": {
+ "add_resource": "اضافه کردن منبع",
+ "headers": {
+ "type": "نوع",
+ "url": "آدرس"
+ },
+ "no_resources": "منابعی وجود ندارد"
+ },
+ "refresh_body": "شما باید صفحه را به روز کنید تا حذف را کامل کنید ، آیا می خواهید اکنون بازخوانی کنید ؟",
+ "refresh_header": "آیا می خواهید بروزرسانی کنید ؟",
+ "types": {
+ "css": "شیوه نامه",
+ "html": "HTML (توصیه نمی شود)",
+ "js": "فایل جاوا اسکریپت (توصیه نمی شود)",
+ "module": "ماژول جاوا اسکریپت"
+ }
+ }
+ },
+ "mqtt": {
+ "publish": "Publica",
+ "subscribe_to": "Subiect pentru abonare",
+ "title": "MQTT"
+ },
+ "ozw": {
+ "common": {
+ "controller": "کنترل کننده",
+ "network": "شبکه"
+ },
+ "network_status": {
+ "offline": "آفلاین",
+ "online": "آنلاین",
+ "unknown": "نامشخص"
+ }
+ },
+ "person": {
+ "add_person": "Adauga Persoana",
+ "caption": "افراد",
+ "confirm_delete": "Esti sigur ca vrei sa elimini aceasta persoana?",
+ "confirm_delete2": "Toate dispozitivele apartinand acestei persoane vor deveni neatribuite",
+ "create_person": "Creaza Persoana",
+ "description": "مدیریت افراد خانه هوشمند",
+ "detail": {
+ "create": "Creaza",
+ "delete": "Elimina",
+ "device_tracker_intro": "دستگاه هایی که متعلق به این شخص هستند را انتخاب کنید.",
+ "device_tracker_pick": "دستگاه را برای ردیابی انتخاب کنید",
+ "device_tracker_picked": "ردیابی دستگاه",
+ "link_integrations_page": "Pagina Integrari",
+ "link_presence_detection_integrations": "Integrari detectie prezenta",
+ "linked_user": "Utilizator corelat",
+ "name": "نام",
+ "name_error_msg": "Este necesar numele",
+ "new_person": "Persoana Noua",
+ "update": "Actualizeaza"
+ },
+ "introduction": "Aici poti defini fiecare persoana de interes in Home Assistant",
+ "no_persons_created_yet": "به نظر می رسد شما هنوز هیچ فردی را ایجاد نکرده اید."
+ },
+ "scene": {
+ "caption": "Scene",
+ "description": "Creaza si editeaza scene",
+ "editor": {
+ "entities": {
+ "add": "Adauga entitate",
+ "delete": "Elimina entitatea",
+ "device_entities": "Daca adaugi o entitate care apartine unui dispozitiv, acel dispozitiv va fi adaugat"
+ }
+ },
+ "picker": {
+ "header": "Editor de scene",
+ "headers": {
+ "name": "نام"
+ },
+ "introduction": "Editorul de scene permite crearea si editare de scene. Va rugam folositi link-ul de mai jos pentru a citi instructiunile si a va asigurat ca ati configurat corect Home Assistant",
+ "learn_more": "Invata mai multe despre scene",
+ "no_scenes": "هیچ سناریویی پیدا نکردیم"
+ }
+ },
+ "script": {
+ "caption": "اسکریپت ها",
+ "description": "دنباله ای از اقدامات را اجرا کنید",
+ "editor": {
+ "default_name": "Script nou",
+ "delete_confirm": "Esti sigur ca vrei sa elimini acest script?",
+ "delete_script": "Elimina script",
+ "header": "اسکریپت: {name}",
+ "introduction": "Foloseste script-uri pentru a executa mai multe actiuni succesive",
+ "link_available_actions": "Afla mai multe despre actiunile disponibile",
+ "load_error_not_editable": "Doar scripturile definite in scripts.yaml sunt editabile",
+ "sequence": "Secventa",
+ "sequence_sentence": "Ordinea actiunilor in acest script"
+ },
+ "picker": {
+ "add_script": "Adauga script",
+ "edit_script": "Editeaza script",
+ "header": "Editor de scripturi",
+ "headers": {
+ "name": "نام"
+ },
+ "learn_more": "Afla mai multe despre scripturi",
+ "no_scripts": "Nu s-au gasit scripturi editabile",
+ "show_info": "نمایش اطلاعات در مورد اسکریپت"
+ }
+ },
+ "server_control": {
+ "caption": "Controale Server",
+ "description": "سرور Home Assistant را مجدداً راه اندازی کرده و متوقف کنید",
+ "section": {
+ "reloading": {
+ "automation": "بارگیری مجدد اتوماسیون",
+ "core": "بارگذاری مجدد هسته",
+ "group": "بارگیری مجدد گروهها",
+ "heading": "بارگیری مجدد پیکربندی YAML",
+ "introduction": "برخی از قسمتهای Home Assistant بدون نیاز به راهاندازی مجدد میتوانند بارگیری شوند. با بارگیری مجدد، تنظیمات فعلی آنها حذف میشوند و نسخه جدید را بارگیری خواهد شد.",
+ "scene": "بارگذاری سناریوها",
+ "script": "بارگزاری مجدد اسکریپت"
+ },
+ "server_management": {
+ "heading": "مدیریت سرور",
+ "introduction": "سرور Home Assistant خود را کنترل کنید ... از Home Assistant.",
+ "restart": "راهاندازی مجدد",
+ "stop": "بایست"
+ },
+ "validation": {
+ "check_config": "بررسی پیکربندی",
+ "heading": "تایید پیکربندی",
+ "invalid": "پیکربندی نامعتبر است",
+ "valid": "پیکربندی معتبر است!"
+ }
+ }
+ },
+ "tag": {
+ "detail": {
+ "delete": "حذف",
+ "name": "نام",
+ "update": "به روز رسانی"
+ },
+ "edit": "ویرایش",
+ "headers": {
+ "name": "نام"
+ }
+ },
+ "users": {
+ "add_user": {
+ "caption": "افزودن کاربر",
+ "create": "ایجاد",
+ "password": "رمز عبور"
+ },
+ "caption": "کاربران",
+ "description": "مدیریت کاربران",
+ "editor": {
+ "activate_user": "فعال کردن کاربر",
+ "admin": "مدیر",
+ "caption": "مشاهده کاربر",
+ "change_password": "تغییر رمز عبور",
+ "confirm_user_deletion": "آیا مطمئنید می خواهید {name} را حذف کنید ؟",
+ "deactivate_user": "غیر فعال کردن کاربر",
+ "delete_user": "حذف کاربر",
+ "group": "گروه",
+ "name": "نام",
+ "owner": "Proprietar",
+ "system_generated_users_not_editable": "به روزرسانی کاربران ایجاد شده در سیستم امکان پذیر نیست.",
+ "unnamed_user": "کاربر نامشخص",
+ "update_user": "به روز رسانی",
+ "username": "نام کاربری"
+ },
+ "picker": {
+ "add_user": "اضافه کردن کاربر",
+ "headers": {
+ "group": "گروه",
+ "is_active": "فعال",
+ "is_owner": "مالک",
+ "name": "نام",
+ "system": "سیستم",
+ "username": "نام کاربری"
+ }
+ }
+ },
+ "zha": {
+ "add_device": "افزودن دستگاه",
+ "add_device_page": {
+ "search_again": "جستجوی مجدد",
+ "spinner": "جستجو برای دستگاه های ZHY Zigbee…"
+ },
+ "common": {
+ "value": "مقدار"
+ },
+ "device_pairing_card": {
+ "CONFIGURED_status_text": "راه اندازی",
+ "PAIRED": "دستگاه پیدا شد"
+ },
+ "groups": {
+ "add_group": "افزودن گروه",
+ "add_members": "Adauga membri",
+ "create": "Creaza grup",
+ "create_group": "Zigbee Home Automation - ایجاد گروه",
+ "creating_group": "Se creaza grup",
+ "group_details": "Acestea sunt toate detaliile pentru grupul Zigbee selectat",
+ "group_info": "Informatii Grup",
+ "group_name_placeholder": "Nume grup",
+ "group_not_found": "Nu s-a gasit grup!",
+ "members": "Membri",
+ "remove_members": "Elimina membri",
+ "removing_members": "Se elimina membri"
+ },
+ "network": {
+ "caption": "شبکه"
+ },
+ "visualization": {
+ "caption": "تجسم",
+ "header": "شبکه بصری",
+ "highlight_label": "برجسته کردن دستگاه ها",
+ "zoom_label": "بزرگنمایی روی دستگاه"
+ }
+ },
+ "zone": {
+ "add_zone": "Adauga zona",
+ "caption": "Zone",
+ "confirm_delete": "Esti sigur ca vrei sa elimini aceasta zona?",
+ "create_zone": "Creaza zona",
+ "detail": {
+ "icon": "Iconita",
+ "name": "Nume",
+ "new_zone": "Zona noua",
+ "passive_note": "مناطق غیرفعال در قسمت جلویی پنهان شده و به عنوان مکانی برای ردیابهای دستگاه استفاده نمی شوند. در صورتی که فقط بخواهید از آن برای اتوماسیون استفاده کنید ، این مفید است.",
+ "radius": "Raza",
+ "update": "به روز رسانی"
+ },
+ "edit_home_zone": "شعاع منطقه خانه را هنوزنمی توان از پیش زمینه ویرایش کرد. نشانگر را بر روی نقشه حرکت دهید",
+ "no_zones_created_yet": "Se pare ca inca nu ai creat nicio zona"
+ },
+ "zwave": {
+ "common": {
+ "index": "Index",
+ "instance": "نمونه، مثال",
+ "unknown": "نامشخص",
+ "value": "Valoare",
+ "wakeup_interval": "فاصله Wakeup"
+ },
+ "description": "شبکه Z-Wave خود را مدیریت کنید",
+ "network_management": {
+ "header": "مدیریت شبکه Z-Wave"
+ },
+ "network_status": {
+ "network_started": "شبکه Z-Wave شروع شد",
+ "network_starting": "شروع شبکه Z-Wave …",
+ "network_starting_note": "این کار بسته به اندازه شبکه شما ممکن است مدتی طول بکشد.",
+ "network_stopped": "شبکه Z-Wave متوقف شد"
+ },
+ "node_config": {
+ "config_parameter": "پارامتر پیکربندی",
+ "config_value": "مقدار پیکربندی",
+ "false": "نادرست",
+ "header": "گزینههای پیکربندی گره",
+ "seconds": "ثانیهها",
+ "set_config_parameter": "تنظیم پارامتر پیکربندی",
+ "set_wakeup": "تنظیم فاصله Wakeup",
+ "true": "صحیح"
+ },
+ "node_management": {
+ "group": "گروه",
+ "nodes": "گره ها"
+ },
+ "services": {
+ "add_node": "Adauga Nod",
+ "cancel_command": "Anuleaza Comanda",
+ "heal_network": "ترمیم شبکه",
+ "remove_node": "Elimina Nodul",
+ "save_config": "Salveaza Configuratie",
+ "soft_reset": "تنظیم مجدد نرم",
+ "start_network": "شروع شبکه",
+ "stop_network": "توقف شبکه",
+ "test_network": "Testare Retea"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "security_classes": {
+ "S2_AccessControl": {
+ "description": "مثال: قفل درها و درهای گاراژ"
+ },
+ "S2_Unauthenticated": {
+ "title": "S2 غیر مجاز"
+ }
+ }
+ },
+ "heal_node": {
+ "start_heal": "تعمیر دستگاه",
+ "title": " یک دستگاه Z-Wave را تعمیر کنید"
+ },
+ "provisioned": {
+ "unprovison": "پیش بینی نشده"
+ },
+ "remove_failed_node": {
+ "remove_device": "حذف دستگاه",
+ "title": "یک دستگاه Z-Wave خراب را حذف کنید"
+ }
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "title": "رویدادها"
+ },
+ "services": {
+ "call_service": "Apeleaza serviciul",
+ "column_description": "Descriere",
+ "column_example": "Exemplu",
+ "column_parameter": "Parametru",
+ "title": "خدمات"
+ },
+ "states": {
+ "attributes": "Atribute",
+ "current_entities": "Entitati curente",
+ "description2": "اگر نهاد متعلق به یک دستگاه باشد، هیچ ارتباط واقعی با آن دستگاه وجود نخواهد داشت.",
+ "entity": "Entitate",
+ "filter_attributes": "Filtreaza atributele",
+ "filter_entities": "Filtreaza entitatile",
+ "filter_states": "Filtreaza starile",
+ "last_changed": "آخرین تغییرات",
+ "last_updated": "آخرین آپدیت",
+ "more_info": "اطلاعات بیشتر",
+ "set_state": "Fixeaza stare",
+ "state": "Stare",
+ "state_attributes": "Stare atribute *(YAML, optional)",
+ "title": "وضعیت"
+ },
+ "statistics": {
+ "fix_issue": {
+ "fix": "رفع مشکل"
+ },
+ "issues": {
+ "entity_not_recorded": "این نهاد از ثبت نام مستثنی است.",
+ "unsupported_state_class": "کلاس حالت '' {state_class} '' این نهاد پشتیبانی نمی شود.",
+ "unsupported_unit_metadata": "واحد ( '' {metadata_unit} '') از آمار ثبت کند واحد پشتیبانی '' مطابقت ندارد {supported_unit} '' از کلاس دستگاه '' {device_class} ''.",
+ "unsupported_unit_state": "واحد ('{state_unit}') این نهاد با واحدی از کلاس دستگاه ''{device_class}' مطابقت ندارد."
+ },
+ "no_issue": "مسئله ای نیست"
+ },
+ "templates": {
+ "title": "قالب"
+ }
+ }
+ },
+ "energy": {
+ "setup": {
+ "back": "بازگشت",
+ "next": "بعدی"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "شما فقط می توانید هنگامی که کنترل UI Lovelace را به دست آورده اید ، از این عملکرد استفاده کنید.",
+ "saving_failed": "ذخیره تنظیمات UI Lovelace انجام نشد.",
+ "yaml_unsupported": "شما نمی توانید از این عملکرد هنگام استفاده از UI Lovelace در حالت YAML استفاده کنید."
+ },
+ "cards": {
+ "confirm_delete": "Esti sigur ca vrei sa elimini acest card?",
+ "empty_state": {
+ "go_to_integrations_page": "به صفحه ادغام بروید.",
+ "no_devices": "این صفحه به شما اجازه می دهد تا دستگاه های خود را کنترل کنید، با این حال به نظر می رسد که هیچ دستگاهی تنظیم نشده است. برای شروع به صفحه ادغام بروید.",
+ "title": "به خانه خوش آمدی"
+ },
+ "picture-elements": {
+ "call_service": "اجرای سرویس {name}",
+ "hold": "نگه دارید:",
+ "more_info": "نمایش اطلاعات بیشتر: {name}",
+ "navigate_to": "رفتن به {location}",
+ "tap": "ضربه زدن:",
+ "toggle": "تغییر {name}"
+ },
+ "shopping-list": {
+ "add_item": "اضافه کردن آیتم",
+ "checked_items": "موارد بررسی شده",
+ "clear_items": "پاک کردن آیتم های بررسی شده",
+ "drag_and_drop": "کشیدن و رها کردن",
+ "reorder_items": "اقلام را دوباره انتخاب کنید"
+ }
+ },
+ "changed_toast": {
+ "message": "پیکربندی Lovelace به روز شد، آیا مایل به بروزرسانی هستید؟"
+ },
+ "components": {
+ "timestamp-display": {
+ "invalid": "زمان سنجی نامعتبر",
+ "invalid_format": "قالب نمایش نامعتبر"
+ }
+ },
+ "editor": {
+ "card": {
+ "alarm-panel": {
+ "available_states": "Stari disponibile",
+ "name": "Panou de alarma"
+ },
+ "calendar": {
+ "name": "تقویم"
+ },
+ "conditional": {
+ "card": "کارت",
+ "conditions": "شرایط",
+ "current_state": "جاری",
+ "name": "Conditional"
+ },
+ "config": {
+ "optional": "اختیاری",
+ "required": "ضروری"
+ },
+ "entities": {
+ "name": "Entitati"
+ },
+ "entity-filter": {
+ "name": "Filtru entitate"
+ },
+ "entity": {
+ "description": "کارت نهاد یک مرور کلی از وضعیت نهاد شما را به شما می دهد.",
+ "name": "نهاد"
+ },
+ "gauge": {
+ "severity": {
+ "green": "سبز",
+ "red": "قرمز",
+ "yellow": "زرد"
+ }
+ },
+ "generic": {
+ "attribute": "ویژگی",
+ "double_tap_action": "Double Tap Action",
+ "icon": "آیکون",
+ "icon_height": "ارتفاع آیکون",
+ "image": "مسیر تصویر",
+ "manual": "دستی",
+ "manual_description": "آیا نیاز به اضافه کردن کارت سفارشی دارید یا فقط می خواهید yaml را به صورت دستی بنویسید؟",
+ "maximum": "بیشترین",
+ "minimum": "کمترین",
+ "name": "نام",
+ "no_theme": "بدون موضوع",
+ "refresh_interval": "فاصله رفرش",
+ "search": "جستجو",
+ "secondary_info_attribute": "ویژگی اطلاعات ثانویه",
+ "show_icon": "نمایش آیکون؟",
+ "show_name": "نمایش نام؟",
+ "show_state": "نمایش وضعیت؟",
+ "state": "وضعیت",
+ "theme": "زمینه",
+ "title": "عنوان",
+ "unit": "واحد",
+ "url": "آدرس"
+ },
+ "glance": {
+ "columns": "ستون ها",
+ "name": "Privire"
+ },
+ "iframe": {
+ "name": "Pagina web"
+ },
+ "light": {
+ "name": "چراغ"
+ },
+ "map": {
+ "dark_mode": "حالت تاریک",
+ "default_zoom": "بزرگنمایی پیش فرض",
+ "geo_location_sources": "منابع موقعیت یابی",
+ "hours_to_show": "زمان های نمایش",
+ "name": "نقشه",
+ "source": "منبع"
+ },
+ "markdown": {
+ "content": "محتوا"
+ },
+ "media-control": {
+ "name": "کنترل رسانه"
+ },
+ "picture-glance": {
+ "state_entity": "وضعیت نهاد"
+ },
+ "picture": {
+ "name": "تصویر"
+ },
+ "plant-status": {
+ "description": "The Plant Status card is for all the lovely botanists out there."
+ },
+ "sensor": {
+ "description": "The Sensor card gives you a quick overview of your sensors state with an optional graph to visualize change over time.",
+ "graph_type": "نوع نمودار",
+ "name": "سنسور"
+ },
+ "shopping-list": {
+ "description": "The Shopping List card allows you to add, edit, check-off, and clear items from your shopping list.",
+ "name": "لیست خرید"
+ },
+ "thermostat": {
+ "description": "The Thermostat card gives control of your climate entity. Allowing you to change the temperature and mode of the entity.",
+ "name": "ترموستات"
+ },
+ "vertical-stack": {
+ "description": "دسته کارت عمودی به شما امکان می دهد چندین کارت را گروه بندی کنید تا همیشه در همان ستون قرار بگیرند."
+ },
+ "weather-forecast": {
+ "description": "کارت پیش بینی آب و هوا را نشان می دهد. اضافه کردن آن به سایر رابط ها بسیار مفید است .",
+ "name": "پیش بینی آب و هوا",
+ "show_forecast": "نمایش پیش بینی"
+ }
+ },
+ "cardpicker": {
+ "custom_card": "سفارشی",
+ "no_description": "توضیحی در دسترس نیست"
+ },
+ "common": {
+ "add": "اضافه کردن",
+ "edit": "ویرایش"
+ },
+ "edit_card": {
+ "add": "افزودن کارت",
+ "confirm_cancel": "آیا مطمئن هستید که می خواهید لغو کنید؟",
+ "delete": "حذف",
+ "duplicate": "کارت تکراری",
+ "edit": "ویرایش",
+ "header": "پیکربندی کارت",
+ "move": "انتقال به نمای اصلی",
+ "pick_card": "کدام کارت را می خواهید اضافه کنید؟",
+ "toggle_editor": "تغییر ویرایشگر"
+ },
+ "edit_lovelace": {
+ "explanation": "Acest titlu este afisat deasupra tuturor vizualizarilor in Lovelace",
+ "title": "عنوان"
+ },
+ "edit_view": {
+ "add": "افزودن نمایه",
+ "delete": "حذف نما",
+ "edit": "ویرایش نما",
+ "header": "مشاهده پیکربندی",
+ "tab_visibility": "رویت پذیری",
+ "type": "نوع مشاهده",
+ "types": {
+ "sidebar": "نوار کناری"
+ },
+ "visibility": {
+ "select_users": "انتخاب کنید کدام کاربران باید این نمای را در پیمایش ببینند"
+ }
+ },
+ "header": "ویرایش رابط کاربری",
+ "header-footer": {
+ "types": {
+ "picture": {
+ "name": "تصویر"
+ }
+ }
+ },
+ "menu": {
+ "raw_editor": "ویرایشگر پیکربندی خام"
+ },
+ "migrate": {
+ "header": "پیکربندی ناسازگار",
+ "migrate": "انتقال پیکربندی",
+ "para_migrate": "Home Assistant می تواند با فشار دادن دکمه \"پیکربندی انتقال\" ، شناسه ها را به طور خودکار برای همه کارت ها و بازدیدها اضافه کند.",
+ "para_no_id": "این عنصر ID ندارد لطفا یک شناسه را برای این عنصر در ui-lovelace.yaml اضافه کنید."
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "اگر پیکربندی UI Lovelace خود را حذف کنید ، به طور خودکار نمایه UI Lovelace را با مناطق و دستگاه های شما تولید خواهیم کرد.",
+ "confirm_remove_config_title": "آیا مطمئن هستید که می خواهید پیکربندی UI Lovelace خود را حذف کنید؟ ما به طور خودکار نمای UI Lovelace را با مناطق و دستگاه های شما تولید خواهیم کرد.",
+ "error_remove": "امکان حذف پیکربندی وجود ندارد: {error}",
+ "header": "ویرایش پیکربندی",
+ "save": "ذخیره",
+ "saved": "ذخیره شده",
+ "unsaved_changes": "تغییرات ذخیره نشده"
+ },
+ "save_config": {
+ "close": "ببند",
+ "empty_config": "شروع با یک داشبورد خالی",
+ "header": "کنترل رابط کاربری Lovelace خود را در دست بگیرید",
+ "para_sure": "آیا مطمئن هستید که می خواهید کنترل رابط کاربری خود را به دست گیرید؟",
+ "save": "کنترل را به دست گرفتن",
+ "yaml_config": "برای کمک به شما در اینجا شروع پیکربندی فعلی این داشبورد است:",
+ "yaml_control": "برای کنترل در حالت YAML ، یک پرونده YAML با نامی که در پیکربندی خود برای این داشبورد مشخص کرده اید ، یا پیش فرض 'ui-lovelace.yaml' ایجاد کنید.",
+ "yaml_mode": "شما در حال استفاده از حالت YAML برای این داشبورد هستید ، به این معنی که نمی توانید پیکربندی Lovelace خود را از UI تغییر دهید. اگر می خواهید این داشبورد را از UI مدیریت کنید ، حالت \"yaml\" را از پیکربندی Lovelace خود در \"configuration.yaml\" حذف کنید."
+ },
+ "suggest_card": {
+ "add": "اضافه کردن به Lovelace UI",
+ "create_own": "انتخاب کارت مختلف",
+ "header": "Am creat o sugestie pentru tine"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "این نما شامل بیش از یک کارت است ، اما پانل نمایش فقط یک کارت را نشان می دهد."
+ }
+ }
+ },
+ "menu": {
+ "close": "Inchide",
+ "configure_ui": "ویرایش داشبورد",
+ "help": "کمک",
+ "reload_resources": "بارگذاری مجدد منابع"
+ },
+ "reload_lovelace": "بازنگری Lovelace",
+ "reload_resources": {
+ "refresh_body": "شما باید صفحه را تازه سازی کنید تا بارگذاری مجدد را کامل کنید ، آیا می خواهید اکنون دوباره آن را تازه کنید ؟",
+ "refresh_header": "آیا می خواهید تازه سازی کنید ؟"
+ },
+ "unused_entities": {
+ "available_entities": "Acestea sunt entitatile disponibile care nu se afla inca in Lovelace",
+ "domain": "Domeniu",
+ "entity": "Entitate",
+ "entity_id": "ID Entitate",
+ "last_changed": "Modificat ultima data",
+ "select_to_add": "Selecteaza entitatile pe care doresti sa le adaugi la un card si apasa butonul add card",
+ "title": "Entitati nefolosite"
+ },
+ "views": {
+ "confirm_delete": "Elimini vizualizare?",
+ "confirm_delete_existing_cards": "با حذف این نمای کارت ها نیز حذف می شود"
+ },
+ "warning": {
+ "attribute_not_found": "ویژگی {attribute} در دسترس نیست:: {entity}",
+ "entity_non_numeric": "نهاد غیر عددی است: {entity}",
+ "entity_not_found": "نهاد موجود نیست: {entity}",
+ "entity_unavailable": "{entity} در حال حاضر در دسترس نیست"
+ }
+ },
+ "mailbox": {
+ "delete_button": "پاک کن",
+ "delete_prompt": "این پیام حذف شود؟",
+ "empty": "شما پیامی ندارید",
+ "playback_title": "پخش پیام"
+ },
+ "page-authorize": {
+ "abort_intro": "ورود به سیستم لغو شد",
+ "authorizing_client": "شما در حال دادن دسترسی به {clientId} به Home Assistant هستید.",
+ "form": {
+ "next": "ورود",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "ورود منقضی شده است، لطفا دوباره وارد شوید."
+ },
+ "error": {
+ "invalid_auth": "نام کابری یا پسورد نامعتبر",
+ "invalid_code": "کد احراز هویت نامعتبر"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "پسورد",
+ "username": "نام کاربری"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "تایید دو مرحله ای"
+ },
+ "description": "برای مشاهده کد احراز هویت دو مرحله ای و تایید هویت خود ، **{mfa_module_name}** را در دستگاه خود باز کنید"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "ورود منقضی شده است، لطفا دوباره وارد شوید."
+ },
+ "error": {
+ "invalid_auth": "نام کاربری یا رمز ورود نامعتبر است",
+ "invalid_code": "کد احراز هویت نامعتبر"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "رمز عبور",
+ "username": "نام کاربری"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "کد احراز هویت دو مرحله ای"
+ },
+ "description": "برای مشاهده کد احراز هویت دو مرحله ای و تایید هویت خود ، **{mfa_module_name}** را در دستگاه خود باز کنید"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "لطفا دوباره وارد شوید.",
+ "no_api_password_set": "رمز ورود API شما پیکربندی نشده است."
+ },
+ "error": {
+ "invalid_auth": "رمز عبور API نامعتبر",
+ "invalid_code": "کد احراز هویت نامعتبر"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "رمز عبور API"
+ },
+ "description": "لطفاً رمزعبور API را در پیکربندی HTTP خود وارد کنید:"
+ },
+ "mfa": {
+ "data": {
+ "code": "کد احراز هویت دو مرحله ای"
+ },
+ "description": "برای مشاهده کد احراز هویت دو مرحله ای و تایید هویت خود ، **{mfa_module_name}** را در دستگاه خود باز کنید"
+ }
+ }
+ },
+ "trusted_networks": {
+ "step": {
+ "init": {
+ "data": {
+ "user": "کاربر"
+ },
+ "description": "لطفا کاربری را که می خواهید وارد شوید انتخاب کنید:"
+ }
+ }
+ }
+ },
+ "unknown_error": "مشکلی پیش آمد",
+ "working": "لطفاً منتظر بمانید"
+ },
+ "initializing": "راه اندازی",
+ "logging_in_with": "ورود به سیستم به عنوان ** {authProviderName} **.",
+ "pick_auth_provider": "یا وارد سیستم شوید"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "توسط {name}",
+ "learn_more": "درباره Home Assistant بیشتر بدانید",
+ "next_demo": "نسخه ی نمایشی بعدی"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "فعالیت",
+ "air": "هوا",
+ "commute_home": "رفت و آمد به خانه",
+ "entertainment": "سرگرمی",
+ "hdmi_input": "ورودی HDMI",
+ "hdmi_switcher": "سوئیچر HDMI",
+ "information": "اطلاعات",
+ "lights": "چراغ",
+ "morning_commute": "رفت و آمد صبحگاهی",
+ "total_tv_time": "کل زمان تلویزیون",
+ "turn_tv_off": "تلویزیون را خاموش کن",
+ "volume": "ولوم"
+ },
+ "names": {
+ "family_room": "Living",
+ "hallway": "Hol",
+ "kitchen": "Bucatarie",
+ "left": "چپ",
+ "master_bedroom": "Dormitor Principal",
+ "mirror": "آینه",
+ "patio": "پاسیو",
+ "right": "راست",
+ "upstairs": "Etaj"
+ },
+ "unit": {
+ "minutes_abbr": "دقیقه",
+ "watching": "تماشا کردن"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "بعدی"
+ },
+ "core-config": {
+ "button_detect": "تشخیص",
+ "finish": "بعدی",
+ "intro": "سلام {name} ، به دستیار خانگی خوش آمدید چگونه می خواهید خانه خود را نام ببرید؟",
+ "intro_location": "ما می خواهیم بدانیم کجا زندگی می کنید این اطلاعات برای نمایش اطلاعات و تنظیم خودکار اتوماسیون مبتنی بر آخورشید کمک خواهد کرد. این اطلاعات در خارج از شبکه شما به اشتراک گذاشته نمیشود .",
+ "intro_location_detect": "ما می تواند کمک به شما در پر کردن این اطلاعات با ساخت یک درخواست به یک سرویس خارجی.",
+ "location_name_default": "خانه"
+ },
+ "integration": {
+ "finish": "پایان",
+ "intro": "دستگاه ها و خدمات در دستیار خانگی به صورت یکپارچه ارائه می شوند. اکنون می توانید آنها را تنظیم کنید یا بعدا از صفحه تنظیمات استفاده کنید.",
+ "more_integrations": "بیشتر"
+ },
+ "intro": "آیا شما آماده فعال کردن خانه خود، پس گرفتن حریم خصوصی و پیوستن به یک جامعه متفکران در سراسر جهان هستید؟",
+ "user": {
+ "create_account": "ایجاد حساب کاربری",
+ "data": {
+ "name": "نام",
+ "password": "رمز عبور",
+ "password_confirm": "تایید رمز عبور",
+ "username": "نام کاربری"
+ },
+ "error": {
+ "password_not_match": "رمزهای عبور مطابقت ندارند",
+ "required_fields": "تمام فیلدهای لازم را پر کنید"
+ },
+ "intro": "بیایید با ایجاد یک حساب کاربری شروع کنیم.",
+ "required_field": "ضروری"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "سیستم به طور پیش فرض ویژگی ها و گزینه های پیشرفته را پنهان می کند. می توانید با تغییر این گزینه ، این ویژگی ها را در فعال کنید. این تنظیم خاص یک کاربر بوده و استفاده سایر کاربران این سیستم را تحت تأثیر قرار نمی دهد.",
+ "link_promo": "بیشتر بدانید",
+ "title": "حالت پیشرفته"
+ },
+ "change_password": {
+ "confirm_new_password": "تائید رمز جدید",
+ "current_password": "رمز فعلی",
+ "error_new_is_old": "رمز ورود جدید باید از رمز عبور فعلی متفاوت باشد",
+ "error_new_mismatch": "رمز عبور وارد شده مطابقت ندارد",
+ "error_required": "ضروری",
+ "header": "تغییر رمز عبور",
+ "new_password": "رمز جدید",
+ "submit": "ارسال",
+ "success": "رمز عبور با موفقیت تغییر کرد"
+ },
+ "current_user": "شما در حال حاضر به عنوان {fullName} وارد شده اید.",
+ "customize_sidebar": {
+ "button": "ویرایش"
+ },
+ "dashboard": {
+ "description": "یک داشبورد پیش فرض برای این دستگاه انتخاب کنید.",
+ "dropdown_label": "داشبورد",
+ "header": "داشبورد"
+ },
+ "force_narrow": {
+ "description": "با استفاده از این ویژگی ، نوار کناری به طور پیش فرض در اینجا و موبایل پنهان می شود.",
+ "header": "همیشه نوار کناری را مخفی کنید"
+ },
+ "is_owner": "شما مالک هستید",
+ "language": {
+ "dropdown_label": "زبان",
+ "header": "زبان",
+ "link_promo": "به ترجمه کمک کنید"
+ },
+ "logout": "Deconectare",
+ "logout_text": "Esti sigur ca vrei sa te deconectezi?",
+ "logout_title": "Deconectare?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "آیا مطمئن هستید که میخواهید token دسترسی زیر را برای {name} حذف کنید؟",
+ "create": "ایجاد توکن",
+ "create_failed": "رمز دسترسی ایجاد نشد.",
+ "delete_failed": "کد دسترسی حذف نشد.",
+ "empty_state": "شما هنوز هیچ رمز دسترسی طولانی مدت ندارید.",
+ "header": "توکن های دسترسی به صورت طولانی مدت",
+ "learn_auth_requests": "با نحوه انجام درخواست های تأیید اعتبار آشنا شوید.",
+ "name": "نام",
+ "prompt_copy_token": "رمز دسترسی خود را کپی کنید. دوباره نمایش داده نمی شود.",
+ "prompt_name": "به توکن یک اسم بگذارید"
+ },
+ "mfa": {
+ "confirm_disable": "آیا مطمئن هستید که میخواهید {name} را غیرفعال کنید؟",
+ "disable": "غیر فعال کردن",
+ "enable": "فعال کردن",
+ "header": "ماژول های احراز هویت چند عاملی"
+ },
+ "mfa_setup": {
+ "close": "بستن",
+ "step_done": "راه اندازی موفق برای {step}",
+ "submit": "ارسال",
+ "title_aborted": "لغو شد",
+ "title_success": "موفقیت!"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "نام دستگاه"
+ },
+ "description": "ارسال اعلانها به این دستگاه",
+ "error_load_platform": "notify.html5 را پیکربندی کنید.",
+ "error_use_https": "نیاز به SSL فعال برای frontend.",
+ "header": "ارسال اعلانها",
+ "link_promo": "بیشتر بدانید",
+ "push_notifications": "ارسال اعلانها"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "آیا مطمئن هستید که می خواهید کد تازه سازی برای {name} را حذف کنید؟",
+ "created_at": "ایجاد شده در {date}",
+ "current_token_tooltip": "رمز تازه سازی فعلی حذف نمی شود",
+ "delete_failed": "token حذف نشد.",
+ "description": "هر نشانه بازخوانی نشان دهنده یک جلسه ورود به سیستم است. هنگام خروج از سیستم ، نشانه های تازه سازی به صورت خودکار حذف می شوند. نشانه های تازه سازی زیر در حال حاضر برای حساب شما فعال هستند.",
+ "header": "تازه کردن نشانه",
+ "last_used": "آخرین استفاده در {date} از {location}",
+ "not_used": "هرگز استفاده نشده است",
+ "token_title": "تازه کردن توکن برای {clientId}"
+ },
+ "themes": {
+ "dark_mode": {
+ "auto": "خودکار",
+ "dark": "تاریک",
+ "light": "چراغ"
+ },
+ "dropdown_label": "تم",
+ "error_no_theme": "هیچ تمی در دسترس نیست.",
+ "header": "تم",
+ "link_promo": "درباره تم ها یاد بگیرید",
+ "reset": "تنظیم مجدد"
+ },
+ "vibrate": {
+ "description": "هنگام کنترل دستگاه، حالت ویبره فعال یا غیرفعال میشود.",
+ "header": "ویبره"
+ }
+ }
+ },
+ "sidebar": {
+ "done": "انجام شده",
+ "external_app_configuration": "پیکربندی برنامه"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/fi.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/fi.json
new file mode 100644
index 00000000..da3526d2
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/fi.json
@@ -0,0 +1,4647 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Asetus",
+ "device": "Laite",
+ "integration": "Integraatio",
+ "user": "Käyttäjä"
+ }
+ },
+ "groups": {
+ "owner": "Omistaja",
+ "system-admin": "Järjestelmänvalvojat",
+ "system-read-only": "Vain luku -käyttäjät",
+ "system-users": "Käyttäjät"
+ },
+ "panel": {
+ "calendar": "Kalenteri",
+ "config": "Asetukset",
+ "developer_tools": "Kehittäjän työkalut",
+ "energy": "Energia",
+ "history": "Historia",
+ "logbook": "Lokikirja",
+ "mailbox": "Postilaatikko",
+ "map": "Kartta",
+ "media_browser": "Mediaselain",
+ "profile": "Profiili",
+ "shopping_list": "Ostoslista",
+ "states": "Yleisnäkymä"
+ },
+ "state": {
+ "default": {
+ "off": "Pois",
+ "on": "Päällä",
+ "unavailable": "Ei saatavissa",
+ "unknown": "Tuntematon"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Automaatilla",
+ "off": "Pois",
+ "on": "Päällä"
+ },
+ "hvac_action": {
+ "cooling": "Jäähdytys",
+ "drying": "Kuivaus",
+ "fan": "Tuuletin",
+ "heating": "Lämmitys",
+ "idle": "Lepotilassa",
+ "off": "Sammutettu"
+ },
+ "preset_mode": {
+ "activity": "Toiminta",
+ "away": "Poissa",
+ "boost": "Tehostus",
+ "comfort": "Mukavuus",
+ "eco": "Taloudellinen",
+ "home": "Kotona",
+ "none": "Asettamatta",
+ "sleep": "Nukkumassa"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Automaattinen",
+ "away": "Poissa",
+ "baby": "Vauva",
+ "boost": "Tehostus",
+ "comfort": "Mukavuus",
+ "eco": "Taloudellinen",
+ "home": "Koti",
+ "normal": "Normaali",
+ "sleep": "Nukkumassa"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Viritetty",
+ "armed_away": "Viritetty",
+ "armed_custom_bypass": "Viritetty",
+ "armed_home": "Viritetty",
+ "armed_night": "Viritetty",
+ "armed_vacation": "Kytketty",
+ "arming": "Virittyy",
+ "disarmed": "Ei viritetty",
+ "disarming": "Ei viritetty",
+ "pending": "Odot",
+ "triggered": "Lauennut"
+ },
+ "default": {
+ "entity_not_found": "Kohdetta ei löydy",
+ "error": "Virhe",
+ "unavailable": "Ei saat",
+ "unknown": "Tunt"
+ },
+ "device_tracker": {
+ "home": "Kotona",
+ "not_home": "Poissa"
+ },
+ "person": {
+ "home": "Kotona",
+ "not_home": "Poissa"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Oletus",
+ "header": "Ääni",
+ "input": "Tulo",
+ "output": "Lähtö"
+ },
+ "network": {
+ "container": "Kontti",
+ "disabled": "Poistettu käytöstä",
+ "header": "Verkko",
+ "host": "Isäntä"
+ },
+ "no_configuration": "Tämä lisäosa ei tarjoa asetuksia, joita voisit säätää…",
+ "options": {
+ "edit_in_ui": "Muokkaa käyttöliittymässä",
+ "edit_in_yaml": "Muokkaa YAML-tiedostona",
+ "header": "Asetukset",
+ "invalid_yaml": "Virheellinen YAML",
+ "show_unused_optional": "Näytä käyttämättömät valinnaiset asetukset"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Lisäosan muutoslokin hakeminen epäonnistui",
+ "go_to_config": "Muokkaa asetuksia",
+ "install": "Lisäosan asennus epäonnistui",
+ "restart": "Lisäosan uudelleenkäynnistys epäonnistui",
+ "start": "Lisäosan käynnistäminen epäonnistui",
+ "start_invalid_config": "Siirry asetuksiin",
+ "stop": "Lisäosan pysäyttäminen epäonnistui",
+ "uninstall": "Lisäosan poistaminen epäonnistui",
+ "validate_config": "Lisäosan asetusten tarkistus epäonnistui"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor ('Application Armor') on Linux-ytimen suojausmoduuli, joka rajoittaa lisäosien ominaisuuksia, kuten verkkoyhteyksiä, raakojen pistokkeiden käyttöä ja oikeutta lukea, kirjoittaa tai suorittaa tiettyjä tiedostoja. \n\nLisäosien tekijät voivat toimittaa lisäosalle optimoidut suojausprofiilinsa tai pyytää poistamaan AppArmorin käytöstä. AppArmorin käytöstä poistaminen lisää turvallisuusriskejä ja laskee siten lisäosan turvallisuuspisteitä.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "Lisäosa voi todentaa käyttäjät Home Assistantin kautta, mikä antaa käyttäjien kirjautua lisäosien sisältämiin sovelluksiin Home Assistant -käytttäjätunnuksillaan ja -salasanoillaan. Tämä merkki osoittaa, pyytääkö lisäosan tekijä tätä toimintoa.",
+ "title": "Home Assistant -todennus"
+ },
+ "docker_api": {
+ "description": "Lisäosan tekijä on pyytänyt lisäosalle hallintaoikeuksia järjestelmäsi Docker-palveluun. Tämä tila antaa lisäosalle täyden pääsyn ja hallinnan koko Home Assistant -järjestelmääsi, mikä lisää tietoturvariskejä ja voi vahingoittaa järjestelmääsi väärinkäytettynä. Siksi tämä ominaisuus laskee lisäosan turvallisuuspisteitä.\n\nTätä käyttöoikeustasoa ei myönnetä automaattisesti, ja sinun on vahvistettava se. Tätä varten sinun on poistettava lisäosan suojaustila käytöstä manuaalisesti. Poista suojaustila käytöstä vain, jos tunnet, tarvitset JA luotat tämän lisäosan lähteeseen.",
+ "title": "Täysi Docker-pääsy"
+ },
+ "full_access": {
+ "description": "Lisäosan tekijän pyynnöstä lisäosalle annetaan täysi pääsy järjestelmäsi laitteistoon. Käyttöoikeudet vastaavat Dockerin privileged-tilaa. Koska tämä luo mahdollisia tietoturvariskejä, tämä ominaisuus laskee lisäosan turvallisuuspisteitä.\n\nTätä käyttöoikeustasoa ei myönnetä automaattisesti, ja sinun on vahvistettava se. Tätä varten sinun on poistettava lisäosan suojaustila käytöstä manuaalisesti. Poista suojaustila käytöstä vain, jos tunnet, tarvitset JA luotat tämän lisäosan lähteeseen.",
+ "title": "Täysi laitteistopääsy"
+ },
+ "hassio_api": {
+ "description": "Lisäosan tekijän pyynnöstä lisäosalle annettiin pääsy Supervisorin APIin. Oletusarvoisesti lisäosa voi käyttää järjestelmäsi yleisiä versiotietoja. Kun lisäosa pyytää 'manager'- tai 'admin'-tasoista pääsyä APIin, se voi hallita useita Home Assistant -järjestelmäsi osia. Tämä merkki ilmaisee tätä käyttöoikeutta ja laskee lisäosan turvallisuuspisteitä.",
+ "title": "Pääsy Supervisorin APIin"
+ },
+ "homeassistant_api": {
+ "description": "Tällä lisäosalla on suora pääsy Home Assistant -esiintymääsi Home Assistantin APIn kautta. Tämä tila huolehtii myös todennuksesta, mikä mahdollistaa lisäosan vuorovaikutuksen Home Assistantin kanssa ilman erillisiä todennustunnuksia.",
+ "title": "Pääsy Home Assistantin APIin"
+ },
+ "host_network": {
+ "description": "Yleensä lisäosat toimivat omassa eristetyssä verkkokerroksessaan, mikä estää niitä pääsemästä isäntäkäyttöjärjestelmän verkkoon. Joissakin tapauksissa eristys voi rajoittaa lisäosien tarjoamia palveluita, ja siksi lisäosan tekijä voi poistaa eristyksen, mikä antaa lisäosalle täyden pääsyn isäntäkoneen verkkotoimintoihin. Tämä antaa lisäosalle laajemmat verkkotoiminnot mutta heikentää turvallisuutta, minkä vuoksi tämän ominaisuuden käyttö laskee lisäosan turvallisuuspisteitä.",
+ "title": "Isännän verkko"
+ },
+ "host_pid": {
+ "description": "Yleensä lisäosan suorittamat prosessit eristetään kaikista muista järjestelmäprosesseista. Lisäosan tekijä on pyytänyt lisäosalle pääsyä isäntäjärjestelmän prosesseihin sekä oikeutta käynnistää prosesseja isäntäjärjestelmässä. Tämä tila antaa lisäosalle täyden pääsyn ja hallinnan koko Home Assistant -järjestelmääsi, mikä lisää tietoturvariskejä ja voi vahingoittaa järjestelmääsi väärinkäytettynä. Siksi tämä ominaisuus laskee lisäosan turvallisuuspisteitä.\n\nTätä käyttöoikeustasoa ei myönnetä automaattisesti, ja sinun on vahvistettava se. Tätä varten sinun on poistettava lisäosan suojaustila käytöstä manuaalisesti. Poista suojaustila käytöstä vain, jos tunnet, tarvitset JA luotat tämän lisäosan lähteeseen.",
+ "title": "Isännän prosessinimiavaruus"
+ },
+ "ingress": {
+ "description": "Tämä lisäosa käyttää Ingressiä upottaakseen käyttöliittymänsä turvallisesti Home Assistantiin.",
+ "title": "Ingress"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "autentikaatio",
+ "core": "Ydin",
+ "docker": "Docker",
+ "hardware": "Laitteisto",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "Isäntä",
+ "host_pid": "isäntä pid",
+ "ingress": "ingressi",
+ "rating": "luokitus",
+ "stage": "vaihe"
+ },
+ "rating": {
+ "description": "Home Assistant antaa jokaiselle lisäosalle turvallisuusluokituksen, joka kertoo lisäosan käyttöön liittyvistä riskeistä. Mitä enemmän käyttöoikeuksia lisäosa vaatii, sitä enemmän mahdollisia tietoturvariskejä se aiheuttaa, mikä alentaa pistemäärää.\n\nLuokituksen asteikko on 1–6, missä huonoin pistemäärä on 1 (heikoin turvallisuus ja suurimmat riskit) ja paras pistemäärä on 6 (turvallisin ja pienimmät riskit).",
+ "title": "Lisäosan turvallisuusluokitus"
+ },
+ "role": {
+ "admin": "admin",
+ "backup": "varmuuskopio",
+ "default": "oletus",
+ "homeassistant": "homeassistant",
+ "manager": "manager"
+ },
+ "stage": {
+ "description": "Lisäosat voivat olla yhdessä kolmesta vaiheesta:\n\n{icon_stable} **Vakaa**: Nämä lisäosat ovat valmiita tuotantokäyttöön.\n\n{icon_experimental} **Kokeellinen**: Nämä lisäosat voivat sisältää virheitä, ja saattavat olla keskeneräisiä.\n\n{icon_deprecated} **Vanhentunut**: Nämä lisäosat eivät enää saa päivityksiä.",
+ "title": "Lisäosan vaihe"
+ },
+ "stages": {
+ "deprecated": "Käytöstä poistettu",
+ "experimental": "Kokeellinen"
+ }
+ },
+ "changelog": "Muutosloki",
+ "cpu_usage": "Lisäosan CPU-käyttö",
+ "hostname": "Isäntänimi",
+ "install": "asenna",
+ "new_update_available": "{name} {version} on saatavilla",
+ "not_available_arch": "Tämä lisäosa ei ole yhteensopiva laitteesi prosessorin tai laitteeseesi asennetun käyttöjärjestelmän kanssa.",
+ "not_available_version": "Käytössäsi on Home Assistant {core_version_installed}. Päivittääksesi lisäosan tähän versioon tarvitset vähintään Home Assistantin version {core_version_needed}.",
+ "open_web_ui": "Avaa käyttöliittymä",
+ "option": {
+ "auto_update": {
+ "description": "Päivitä lisäosa automaattisesti, kun uusi versio on saatavilla",
+ "title": "Automaattinen päivitys"
+ },
+ "boot": {
+ "description": "Käynnistä lisäosa järjestelmän käynnistyessä",
+ "title": "Automaattinen käynnistys"
+ },
+ "ingress_panel": {
+ "description": "Lisää tämä lisäosa sivupalkkiin",
+ "title": "Näytä sivupalkissa"
+ },
+ "protected": {
+ "description": "Estää lisäosalta laajan pääsyn järjestelmään",
+ "title": "Suojaustila"
+ },
+ "watchdog": {
+ "description": "Käynnistää lisäosan, jos se kaatuu",
+ "title": "Vahtikoira"
+ }
+ },
+ "protection_mode": {
+ "content": "Suojaustila on poistettu käytöstä tälle lisäosalle! Tämä antaa lisäosalle täyden pääsyn koko järjestelmään, mikä lisää tietoturvariskejä ja voi vahingoittaa järjestelmäsi väärinkäytettynä. Poista suojaustila käytöstä vain, jos tunnet, tarvitset JA luotat tämän lisäosan lähteeseen.",
+ "enable": "Ota suojaustila käyttöön",
+ "title": "Suojaustila ei ole käytössä!"
+ },
+ "ram_usage": "Lisäosan muistinkäyttö",
+ "rebuild": "uudelleenrakenna",
+ "restart": "käynnistä uudelleen",
+ "start": "käynnistä",
+ "stop": "pysäytä",
+ "uninstall": "poista",
+ "visit_addon_page": "Lisätietoja on sivulla {name}"
+ },
+ "documentation": {
+ "get_documentation": "Lisäosan dokumentaation hakeminen epäonnistui, {error}"
+ },
+ "failed_to_reset": "Lisäosan asetusten nollaaminen epäonnistui, {error}",
+ "failed_to_save": "Lisäosan asetusten tallentaminen epäonnistui, {error}",
+ "logs": {
+ "get_logs": "Lisäosan lokien hakeminen epäonnistui, {error}"
+ },
+ "panel": {
+ "configuration": "Asetukset",
+ "documentation": "Dokumentaatio",
+ "info": "Tiedot",
+ "log": "Loki"
+ },
+ "state": {
+ "installed": "Lisäosa on asennettu",
+ "not_available": "Lisäosa ei ole saatavilla järjestelmällesi",
+ "not_installed": "Lisäosaa ei ole asennettu"
+ }
+ },
+ "backup": {
+ "addons": "Lisäosat",
+ "confirm_password": "Vahvista varmuuskopion salasana",
+ "could_not_create": "Varmuuskopiota ei voitu luoda",
+ "create": "Luo",
+ "create_backup": "Luo varmuuskopio",
+ "create_blocked_not_running": "Varmuuskopiota ei voi luoda tällä hetkellä, koska järjestelmä on tilassa {state}.",
+ "created": "Luotu ",
+ "delete_backup_confirm": "poista",
+ "delete_backup_text": "Haluatko poistaa {number} {number, plural,\n one {varmuuskopion}\n other {varmuuskopiota}\n}?",
+ "delete_backup_title": "Poista varmuuskopio",
+ "delete_selected": "Poista valitut varmuuskopiot",
+ "enter_password": "Syötä salasana.",
+ "failed_to_delete": "Poistaminen epäonnistui",
+ "folders": "Kansiot",
+ "full_backup": "Täysi varmuuskopio",
+ "name": "Varmuuskopion nimi",
+ "no_backups": "Sinulla ei ole vielä varmuuskopioita.",
+ "partial_backup": "Osittainen varmuuskopio",
+ "password": "Varmuuskopion salasana",
+ "password_protection": "Salasanasuojaus",
+ "passwords_not_matching": "Salasanat eivät täsmää",
+ "select_type": "Valitse palautettavat tiedot",
+ "selected": "{numero} valittu",
+ "size": "Koko",
+ "type": "Varmuuskopion tyyppi",
+ "upload_backup": "Lataa varmuuskopio"
+ },
+ "common": {
+ "cancel": "Peru",
+ "close": "Sulje",
+ "description": "Kuvaus",
+ "error": {
+ "unknown": "Tuntematon virhe",
+ "update_failed": "Päivitys epäonnistui"
+ },
+ "failed_to_restart_name": "{name} uudelleenkäynnistys epäonnistui",
+ "failed_to_update_name": "{name} päivittäminen epäonnistui",
+ "learn_more": "Lisätietoja",
+ "menu": "Valikko",
+ "new_version_available": "Uusi versio saatavilla",
+ "newest_version": "Uusin versio",
+ "no": "Ei",
+ "refresh": "Päivitä",
+ "release_notes": "Julkaisutiedot",
+ "reload": "Lataa uudelleen",
+ "reset_defaults": "Palauta oletukset",
+ "reset_options": "Nollaa asetukset",
+ "restart": "Käynnistä uudelleen",
+ "restart_name": "Käynnistä {name} uudelleen",
+ "running_version": "Käytät tällä hetkellä versiota {version}",
+ "save": "Tallenna",
+ "show": "näytä",
+ "show_more": "Näytä lisätietoa tästä",
+ "update": "Päivitä",
+ "update_available": "{count, plural,\n one {Päivitys}\n other {{count} päivitystä}\n} saatavilla",
+ "version": "Versio",
+ "yes": "Kyllä"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Haluatko varmasti nollata kaikki asetuksesi?",
+ "title": "Nollaa asetukset"
+ },
+ "restart": {
+ "text": "Haluatko varmasti käynnistää {name} uudelleen?",
+ "title": "Käynnistä {name} uudelleen"
+ },
+ "update": {
+ "text": "Haluatko varmasti päivittää {name} versioon {version}?",
+ "title": "Päivitä {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Uusi versio saatavilla",
+ "addon_running": "Lisäosa on käynnissä",
+ "addon_stopped": "Lisäosa on pysäytetty",
+ "addons": "Asennetut lisäosat",
+ "no_addons": "Et ole vielä asentanut lisäosia. Aloita siirtymällä lisäosakauppaan!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Peru",
+ "description": "Käytät tällä hetkellä polkua \" {current_path} \" datalevynä. Sen siirtäminen käynnistää laitteesi uudelleen, ja sen arvioidaan kestävän {time} minuuttia. Home Assistant -asennus ei ole käytettävissä tänä aikana. Älä katkaise virtaa siirron aikana!",
+ "loading_devices": "Ladataan laitteita",
+ "move": "Siirrä",
+ "moving": "Siirretään datalevyä",
+ "moving_desc": "Käynnistetään uudelleen ja siirretään datalevyä. Ole kärsivällinen.",
+ "no_devices": "Sopivia liitettyjä laitteita ei löytynyt",
+ "select_device": "Valitse uusi datalevy"
+ },
+ "hardware": {
+ "attributes": "Ominaisuudet",
+ "device_path": "Laitteen polku",
+ "id": "ID",
+ "search": "Etsi laitteita",
+ "subsystem": "Alijärjestelmä",
+ "title": "Laitteisto"
+ },
+ "network": {
+ "connected_to": "Yhdistetty kohteeseen {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Poistettu käytöstä",
+ "dns_servers": "DNS-palvelimet",
+ "failed_to_change": "Verkkoasetusten muuttaminen epäonnistui",
+ "gateway": "Yhdyskäytävän osoite",
+ "ip_netmask": "IP-osoite/aliverkon peite",
+ "open": "Avoin",
+ "scan_ap": "Etsi tukiasemia",
+ "static": "Staattinen",
+ "title": "Verkkoasetukset",
+ "unsaved": "Sinulla on tallentamattomia muutoksia, jotka menetetään, jos vaihdat välilehteä. Haluatko jatkaa?",
+ "warning": "Jos vaihdat Wi-Fi-, IP- tai yhdyskäytävän osoitteita, yhteys saattaa katketa!",
+ "wep": "WEP",
+ "wpa": "wpa-psk"
+ },
+ "registries": {
+ "add_new_registry": "Lisää uusi rekisteri",
+ "add_registry": "Lisää rekisteri",
+ "failed_to_add": "Rekisterin lisääminen epäonnistui",
+ "failed_to_remove": "Rekisterin poistaminen epäonnistui",
+ "no_registries": "Rekistereitä ei ole määritetty",
+ "password": "Salasana",
+ "registry": "Rekisteri",
+ "remove": "Poista",
+ "title_add": "Lisää uusi säilörekisteri",
+ "title_manage": "Säilörekisterien hallinta",
+ "username": "Käyttäjätunnus"
+ },
+ "repositories": {
+ "add": "Lisää",
+ "remove": "Poista",
+ "title": "Hallinnoi lisäosavarastoja"
+ },
+ "restart_addon": {
+ "confirm_text": "Käynnistä lisäosa uudelleen",
+ "text": "Haluatko käynnistää lisäosan uudelleen muutostesi kanssa?"
+ },
+ "update": {
+ "backup": "Varmuuskopio",
+ "create_backup": "Luo varmuuskopio {name}:stä ennen päivittämistä",
+ "creating_backup": "Luodaan {name} varmuuskopio",
+ "updating": "Päivitetään {name} versioon {version}"
+ }
+ },
+ "my": {
+ "error": "Tapahtui tuntematon virhe",
+ "error_addon_no_ingress": "Pyydetty lisäosa ei tue sisäänpääsyä",
+ "error_addon_not_found": "Lisäosaa ei löydy",
+ "error_addon_not_installed": "Pyydettyä lisäosaa ei ole asennettu. Asenna se ensin",
+ "error_addon_not_started": "Pyydetty lisäosa ei ole käynnissä. Käynnistä se ensin",
+ "faq_link": "Home Assistant UKK",
+ "not_supported": "Home Assistantisi ei tue tätä uudelleenohjausta. Tarkista linkistä {link} tuetut uudelleenohjaukset ja versiot, joissa ne esiteltiin."
+ },
+ "panel": {
+ "addons": "Lisäosat",
+ "backups": "Varmuuskopiot",
+ "dashboard": "Kojelauta",
+ "store": "Lisäosakauppa",
+ "system": "Järjestelmä"
+ },
+ "store": {
+ "check_updates": "Tarkista päivitykset",
+ "missing_addons": "Puuttuuko lisäosia? Ota edistynyt tila käyttöön käyttäjäprofiilisivullasi",
+ "no_results_found": "Ei tuloksia kohteesta {repository}.",
+ "registries": "Rekisterit",
+ "repositories": "Tietovarastot"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Ytimen CPU-käyttö",
+ "ram_usage": "Ytimen muistinkäyttö"
+ },
+ "host": {
+ "change": "Muuta",
+ "change_hostname": "Vaihda isäntänimi",
+ "confirm_reboot": "Haluatko varmasti käynnistää isännän uudelleen?",
+ "confirm_shutdown": "Haluatko varmasti sammuttaa isännän?",
+ "deployment": "Käyttöönotto",
+ "docker_version": "Docker-versio",
+ "emmc_lifetime_used": "eMMC:n käyttöiästä käytetty",
+ "failed_to_get_hardware_list": "Laitteistoluettelon luominen epäonnistui",
+ "failed_to_import_from_usb": "Tuonti USB:stä epäonnistui",
+ "failed_to_move": "Datalevyn siirtäminen epäonnistui",
+ "failed_to_reboot": "Isännän uudelleenkäynnistys epäonnistui",
+ "failed_to_set_hostname": "Isäntänimen asettaminen epäonnistui",
+ "failed_to_shutdown": "Isännän sammuttaminen epäonnistui",
+ "hardware": "Laitteisto",
+ "hostname": "Isäntänimi",
+ "import_from_usb": "Tuo USB:stä",
+ "ip_address": "IP-osoite",
+ "move_datadisk": "Siirrä datalevy",
+ "new_hostname": "Syötä uusi isäntänimi:",
+ "operating_system": "Käyttöjärjestelmä",
+ "reboot_host": "Käynnistä isäntä uudelleen",
+ "shutdown_host": "Sammuta isäntä",
+ "used_space": "Käytetty tila"
+ },
+ "log": {
+ "get_logs": "{provider} -lokien hakeminen epäonnistui, {error}",
+ "log_provider": "Lokien lähde"
+ },
+ "supervisor": {
+ "beta_backup": "Varmista, että sinulla on varmuuskopiot tiedoistasi, ennen kuin aktivoit tämän ominaisuuden.",
+ "beta_join_confirm": "Haluatko liittyä betakanavaan?",
+ "beta_release_items": "Tämä sisältää betaversiot seuraaville:",
+ "beta_warning": "Betaversiot on suunnattu testaajille ja varhaisille omaksujille, ja ne voivat sisältää epävakaita koodimuutoksia",
+ "channel": "Kanava",
+ "cpu_usage": "Supervisorin CPU-käyttö",
+ "failed_to_reload": "Supervisorin uudelleenlataus epäonnistui",
+ "failed_to_set_option": "Supervisor-asetuksen asettaminen epäonnistui",
+ "failed_to_update": "Supervisorin päivittäminen epäonnistui",
+ "join_beta_action": "Liity betakanavaan",
+ "join_beta_description": "Vastaanota betapäivityksiä Home Assistantille (RC:t), Supervisorille ja isännälle",
+ "leave_beta_action": "Poistu betakanavasta",
+ "leave_beta_description": "Vastaanota vakaita päivityksiä Home Assistantille, Supervisorille ja isännälle",
+ "ram_usage": "Supervisorin muistinkäyttö",
+ "reload_supervisor": "Lataa Supervisor uudelleen",
+ "search": "Hae",
+ "share_diagnostics": "Jaa diagnostiikka",
+ "share_diagnostics_description": "Jaa kaatumisraportit ja diagnostiikkatiedot.",
+ "share_diagonstics_description": "Haluatko jakaa kaatumisraportit ja diagnostiikkatiedot automaattisesti, kun Supervisor havaitsee odottamattomia virheitä? {line_break} Tämän avulla voimme korjata ongelmat. Tiedot ovat vain Home Assistant Core -tiimin käytettävissä, eikä niitä jaeta muille. {line_break} Tiedot eivät sisällä yksityisiä tai arkaluontoisia tietoja, ja voit poistaa tämän käytöstä asetuksissa milloin tahansa.",
+ "share_diagonstics_title": "Auta parantamaan Home Assistanttia",
+ "unhealthy_description": "Virheellisen asennuksen käyttö aiheuttaa ongelmia. Alla on lista asennuksestasi havaituista ongelmista; klikkaa linkkejä saadaksesi tietoa ongelmien ratkaisemisesta.",
+ "unhealthy_reason": {
+ "docker": "Docker-ympäristö ei toimi oikein",
+ "privileged": "Supervisorilla ei ole laajoja käyttöoikeuksia",
+ "setup": "Supervisorin asennus epäonnistui",
+ "supervisor": "Supervisorin päivitys epäonnistui",
+ "untrusted": "Epäluotettavaa sisältöä havaittu"
+ },
+ "unhealthy_title": "Asennuksessasi on ongelmia",
+ "unsupported_description": "Alla on lista asennuksestasi löydetyistä ongelmista. Klikkaa linkkejä saadaksesi ohjeita ongelmien ratkaisemiseen.",
+ "unsupported_reason": {
+ "apparmor": "AppArmor ei ole käytössä isännässä",
+ "container": "Tunnetusti ongelmia aiheuttavat kontit",
+ "content-trust": "Sisällön luottamuksen vahvistus on poistettu käytöstä",
+ "content_trust": "Varoitus: Suojaustila ei ole käytössä!",
+ "dbus": "DBUS",
+ "docker_configuration": "Docker-asetukset",
+ "docker_version": "Docker-versio",
+ "job_conditions": "Huomioimatta jätetyt työolot",
+ "lxc": "LXC",
+ "network_manager": "Network Manager",
+ "os": "Käyttöjärjestelmä",
+ "os_agent": "Käyttöjärjestelmän agentti",
+ "privileged": "Supervisorilla ei ole laajoja käyttöoikeuksia",
+ "software": "Ei-tuettu ohjelmisto havaittu",
+ "source_mods": "Lähteen muutokset",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Käytät asennusta, jota ei tueta",
+ "update_supervisor": "Päivitä Supervisor",
+ "warning": "VAROITUS"
+ }
+ },
+ "update_available": {
+ "core_note": "Supervisor palauttaa versioon {version} jos instanssisi ei tule näkyviin päivityksen jälkeen.",
+ "create_backup": "Luo varmuuskopio ennen päivittämistä",
+ "creating_backup": "Luodaan varmuuskopiota kohteesta {name}",
+ "description": "Olet asentanut {version}. Päivitä versioon {newest_version} napsauttamalla",
+ "no_update": "Päivitystä ei ole saatavilla kohteelle {name}",
+ "open_release_notes": "Avaa julkaisutiedot",
+ "update_name": "Päivitä {name}",
+ "updating": "Päivitetään {name} versioon {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Haluatko pysyä kirjautuneena sisään?",
+ "confirm": "Kyllä",
+ "decline": "Ei kiitos"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Viritä (poissa)",
+ "arm_custom_bypass": "Mukautettu ohitus",
+ "arm_home": "Viritä (kotona)",
+ "arm_night": "Viritä yöksi",
+ "arm_vacation": "Aktivoi lomatila",
+ "clear_code": "Tyhjennä",
+ "code": "Koodi",
+ "disarm": "Poista hälytys"
+ },
+ "area": {
+ "area_not_found": "Aluetta ei löydy."
+ },
+ "automation": {
+ "last_triggered": "Viimeksi käynnistetty",
+ "trigger": "Laukaise"
+ },
+ "button": {
+ "press": "Paina"
+ },
+ "camera": {
+ "not_available": "Kuvaa ei saatavilla"
+ },
+ "climate": {
+ "aux_heat": "Lisälämpö",
+ "away_mode": "Poissa kotoa -tila",
+ "cooling": "{name} jäähdytys",
+ "current_temperature": "{name} nykyinen lämpötila",
+ "currently": "Tällä hetkellä",
+ "fan_mode": "Tuuletustila",
+ "heating": "{name} lämmitys",
+ "high": "korkea",
+ "low": "matala",
+ "on_off": "Päällä / pois",
+ "operation": "Toiminto",
+ "preset_mode": "Esiasetus",
+ "swing_mode": "Heilutustila",
+ "target_humidity": "Tavoitekosteus",
+ "target_temperature": "Tavoitelämpötila",
+ "target_temperature_entity": "{name} tavoitelämpötila",
+ "target_temperature_mode": "{name} tavoitelämpötila {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "vähennys",
+ "increment": "lisäys",
+ "reset": "Palauta"
+ }
+ },
+ "cover": {
+ "position": "Sijainti",
+ "tilt_position": "Kallistus"
+ },
+ "fan": {
+ "direction": "Suunta",
+ "forward": "Eteenpäin",
+ "oscillate": "Kääntyminen",
+ "preset_mode": "Esiasetustila",
+ "reverse": "Taaksepäin",
+ "speed": "Nopeus"
+ },
+ "humidifier": {
+ "humidity": "Tavoitekosteus",
+ "mode": "Tila",
+ "on_entity": "{name} päällä",
+ "target_humidity_entity": "{name} tavoitekosteus"
+ },
+ "light": {
+ "brightness": "Kirkkaus",
+ "cold_white_value": "Kylmän valkoisen kirkkaus",
+ "color_brightness": "Värikirkkaus",
+ "color_temperature": "Värilämpötila",
+ "effect": "Efekti",
+ "warm_white_value": "Lämpimän valkoisen kirkkaus",
+ "white_value": "Valkoisuusarvo"
+ },
+ "lock": {
+ "code": "Koodi",
+ "lock": "Lukitse",
+ "unlock": "Avaa lukitus"
+ },
+ "media_player": {
+ "browse_media": "Selaa mediaa",
+ "media_next_track": "Seuraava",
+ "media_pause": "Tauko",
+ "media_play": "Toista",
+ "media_play_pause": "Toista/pysäytä",
+ "media_previous_track": "Edellinen",
+ "media_stop": "Pysäytä",
+ "media_volume_down": "Ääni pienemmälle",
+ "media_volume_mute": "Äänen mykistys",
+ "media_volume_unmute": "Ääni päällä",
+ "media_volume_up": "Ääni kovemmalle",
+ "sound_mode": "Äänitila",
+ "source": "Äänilähde",
+ "text_to_speak": "Tekstistä puheeksi",
+ "turn_off": "Sammuta",
+ "turn_on": "Päälle"
+ },
+ "persistent_notification": {
+ "dismiss": "Hylkää"
+ },
+ "scene": {
+ "activate": "Aktivoi"
+ },
+ "script": {
+ "cancel": "Peruuta",
+ "cancel_multiple": "Peruuta {number}",
+ "run": "Suorita"
+ },
+ "service": {
+ "run": "Suorita"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "Peruuta",
+ "finish": "Valmis",
+ "pause": "tauko",
+ "start": "Aloita"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Jatka imurointia",
+ "return_to_base": "Palaa telakkaan",
+ "start_cleaning": "Aloita imurointi",
+ "turn_off": "Sammuta",
+ "turn_on": "Päälle"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Poissa kotoa",
+ "currently": "Tällä hetkellä",
+ "on_off": "Päällä / pois",
+ "operation": "Toiminto",
+ "target_temperature": "Tavoitelämpötila"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Ilmanpaine",
+ "humidity": "Kosteus",
+ "precipitation": "Sademäärä",
+ "temperature": "Lämpötila",
+ "visibility": "Näkyvyys",
+ "wind_speed": "Tuuli"
+ },
+ "cardinal_direction": {
+ "e": "itä",
+ "ene": "itäkoillinen",
+ "ese": "itäkaakko",
+ "n": "pohjoinen",
+ "ne": "koillinen",
+ "nne": "pohjoiskoillinen",
+ "nnw": "pohjoisluode",
+ "nw": "luode",
+ "s": "etelä",
+ "se": "kaakko",
+ "sse": "eteläkaakko",
+ "ssw": "etelälounas",
+ "sw": "lounas",
+ "w": "länsi",
+ "wnw": "länsiluode",
+ "wsw": "länsilounas"
+ },
+ "day": "Päivä",
+ "forecast": "Sääennuste",
+ "high": "Korkea",
+ "low": "Alhainen",
+ "night": "Yö"
+ }
+ },
+ "common": {
+ "and": "ja",
+ "back": "Takaisin",
+ "cancel": "Peruuta",
+ "clear": "Tyhjennä",
+ "close": "Sulje",
+ "continue": "Jatka",
+ "copied": "Kopioitu",
+ "copied_clipboard": "Kopioitu leikepöydälle",
+ "delete": "Poista",
+ "disable": "Poista käytöstä",
+ "enable": "Ota käyttöön",
+ "error_required": "Pakollinen",
+ "help": "Apua",
+ "leave": "Poistu",
+ "loading": "Ladataan",
+ "menu": "Valikko",
+ "move": "Siirrä",
+ "next": "Seuraava",
+ "no": "Ei",
+ "not_now": "Ei nyt",
+ "overflow_menu": "Ylivuotovalikko",
+ "previous": "Edellinen",
+ "refresh": "Päivitä",
+ "remove": "Poista",
+ "rename": "Nimeä uudelleen",
+ "save": "Tallenna",
+ "skip": "Ohita",
+ "stay": "Pysy",
+ "submit": "Lähetä",
+ "successfully_deleted": "Poistettu onnistuneesti",
+ "successfully_saved": "Tallennus onnistui",
+ "undo": "Kumoa",
+ "yes": "Kyllä"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Lisäosa",
+ "error": {
+ "fetch_addons": {
+ "description": "Lisäosien lataamisessa tapahtui virhe.",
+ "title": "Virhe ladattaessa lisäosia."
+ },
+ "no_supervisor": {
+ "description": "Supervisoria ei löytynyt, joten lisäosia ei voitu ladata.",
+ "title": "Ei Supervisoria"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Lisää",
+ "failed_create_area": "Alueen luominen epäonnistui.",
+ "name": "Nimi",
+ "text": "Kirjoita uuden alueen nimi.",
+ "title": "Lisää uusi alue"
+ },
+ "add_new": "Lisää uusi alue…",
+ "area": "Alue",
+ "clear": "Tyhjennä",
+ "no_areas": "Sinulla ei ole alueita",
+ "no_match": "Vastaavia alueita ei löytynyt",
+ "show_areas": "Näytä alueet"
+ },
+ "attributes": {
+ "expansion_header": "Määritteet"
+ },
+ "blueprint-picker": {
+ "add_user": "Lisää käyttäjä",
+ "remove_user": "Poista käyttäjä",
+ "select_blueprint": "Valitse piirustus"
+ },
+ "calendar": {
+ "my_calendars": "Omat kalenterit",
+ "today": "Tänään"
+ },
+ "data-table": {
+ "clear": "Tyhjennä",
+ "filtering_by": "Suodatus",
+ "hidden": "{number} piilotettu",
+ "no-data": "Ei dataa",
+ "search": "Hae"
+ },
+ "date-range-picker": {
+ "end_date": "Päättymispäivä",
+ "ranges": {
+ "last_week": "Viime viikolla",
+ "this_week": "Tällä viikolla",
+ "today": "Tänään",
+ "yesterday": "Eilen"
+ },
+ "select": "Valitse",
+ "start_date": "Aloituspäivä"
+ },
+ "device-picker": {
+ "clear": "Tyhjennä",
+ "device": "Laite",
+ "no_area": "Ei aluetta",
+ "no_devices": "Sinulla ei ole laitteita",
+ "no_match": "Vastaavia laitteita ei löytynyt",
+ "show_devices": "Näytä laitteet",
+ "toggle": "Vaihda"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Määrite",
+ "show_attributes": "Näytä määritteet"
+ },
+ "entity-picker": {
+ "clear": "Tyhjennä",
+ "edit": "Muokkaa",
+ "entity": "Kohde",
+ "no_match": "Vastaavia kohteita ei löytynyt",
+ "show_entities": "Näytä kohteet"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "Historiaintegraatio poistettu käytöstä",
+ "loading_history": "Ladataan tilahistoriaa…",
+ "no_history_found": "Tilahistoriaa ei löydetty"
+ },
+ "logbook": {
+ "by": "lähteestä",
+ "by_service": "palvelusta",
+ "entries_not_found": "Lokikirjauksia ei löytynyt.",
+ "messages": {
+ "became_unavailable": "ei ollut käytettävissä",
+ "changed_to_state": "vaihdettiin tilaan {state}",
+ "cleared_device_class": "tyhjennetty (ei {device_class} havaittu)",
+ "detected_device_class": "havaittiin {device_class}",
+ "detected_tampering": "havaittu väärentäminen",
+ "is_closing": "sulkeutuu",
+ "is_opening": "avautuu",
+ "rose": "nousi",
+ "set": "laski",
+ "turned_off": "kytkettiin pois päältä",
+ "turned_on": "kytkettiin päälle",
+ "was_at_home": "oli kotona",
+ "was_at_state": "oli paikassa {state}",
+ "was_away": "oli poissa",
+ "was_closed": "suljettiin",
+ "was_connected": "yhdistettiin",
+ "was_disconnected": "katkaistiin",
+ "was_locked": "lukittiin",
+ "was_low": "oli alhainen",
+ "was_normal": "oli normaali",
+ "was_opened": "avattiin",
+ "was_plugged_in": "kytkettiin",
+ "was_safe": "oli turvallinen",
+ "was_unlocked": "avattiin",
+ "was_unplugged": "kytkettin irti",
+ "was_unsafe": "oli vaarallinen"
+ },
+ "retrieval_error": "Virhe lokikirjamerkintää haettaessa",
+ "show_trace": "Näytä jäljitys"
+ },
+ "media-browser": {
+ "audio_not_supported": "Selaimesi ei tue audioelementtiä.",
+ "choose_player": "Valitse soitin",
+ "class": {
+ "album": "Albumi",
+ "app": "Sovellus",
+ "artist": "Artisti",
+ "channel": "Kanava",
+ "composer": "Säveltäjä",
+ "contributing_artist": "Osallistuva artisti",
+ "directory": "Kirjasto",
+ "episode": "Jakso",
+ "game": "Peli",
+ "genre": "Genre",
+ "image": "Kuva",
+ "movie": "Elokuva",
+ "music": "Musiikki",
+ "playlist": "Soittolista",
+ "podcast": "Podcast",
+ "season": "Kausi",
+ "track": "Raita",
+ "tv_show": "TV-ohjelma",
+ "url": "URL",
+ "video": "Video"
+ },
+ "documentation": "dokumentaatiosta",
+ "learn_adding_local_media": "Lue lisätietoja median lisäämisestä {documentation} .",
+ "local_media_files": "Sijoita video-, ääni- ja kuvatiedostot mediahakemistoon, jotta voit selata ja toistaa niitä selaimessa tai tuetuissa mediasoittimissa.",
+ "media-player-browser": "Media Player -selain",
+ "media_browsing_error": "Median selausvirhe",
+ "media_not_supported": "Browser Media Player ei tue tämän tyyppistä mediaa",
+ "media_player": "Mediatoistin",
+ "no_items": "Ei kohteita",
+ "no_local_media_found": "Paikallista mediaa ei löytynyt",
+ "no_media_folder": "Vaikuttaa siltä, että et ole vielä luonut mediahakemistoa.",
+ "pick": "Valitse",
+ "pick-media": "Valitse media",
+ "play": "Toista",
+ "play-media": "Toista media",
+ "setup_local_help": "Tarkista paikallisen median määrittäminen {documentation}.",
+ "video_not_supported": "Selaimesi ei tue videoelementtiä.",
+ "web-browser": "Selain"
+ },
+ "picture-upload": {
+ "label": "Kuva",
+ "unsupported_format": "Muotoa ei tueta, valitse JPEG-, PNG- tai GIF-kuva."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Syötä QR-koodin arvo",
+ "manual_input": "Voit skannata QR-koodin toisella QR-skannerilla ja liittää koodin alla olevaan kenttään",
+ "not_supported": "Selaimesi ei tue QR-skannausta",
+ "only_https_supported": "Voit käyttää kameraa QR-koodin skannaamiseen vain HTTPS:ää käytettäessä.",
+ "select_camera": "Valitse kamera"
+ },
+ "related-filter-menu": {
+ "filter": "Suodatin",
+ "filter_by_area": "Suodata alueen mukaan",
+ "filter_by_device": "Suodata laitteen mukaan",
+ "filter_by_entity": "Suodata kohteen mukaan",
+ "filtered_by_area": "alue: {area_name}",
+ "filtered_by_device": "laite: {device_name}",
+ "filtered_by_entity": "kohde: {entity_name}"
+ },
+ "related-items": {
+ "area": "Alue",
+ "automation": "Osa seuraavia automaatioita",
+ "device": "Laite",
+ "entity": "Liittyvät kohteet",
+ "group": "Osa seuraavia ryhmiä",
+ "integration": "Integraatio",
+ "no_related_found": "Aiheeseen liittyviä komponentteja ei löytynyt.",
+ "scene": "Osa seuraavia tilanteita",
+ "script": "Osa seuraavia skriptejä"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one {päivä}\n other {päivää}\n}",
+ "hour": "{count} {count, plural,\none {tunti}\nother {tuntia}\n}",
+ "minute": "{count} {count, plural,\none {minuutti}\nother {minuuttia}\n}",
+ "second": "{count} {count, plural,\none {sekunti}\nother {sekuntia}\n}",
+ "week": "{count} {count, plural,\n one {viikko}\n other {viikkoa}\n}"
+ },
+ "future_duration": {
+ "day": "{count} {count, plural,\n one {päivän}\n other {päivän}\n} kuluessa",
+ "hour": "{count} {count, plural,\none {tunnin}\nother {tunnin}\n} kuluessa",
+ "minute": "{count} {count, plural,\none {minuutin}\nother {minuutin}\n} kuluessa",
+ "second": "{count} {count, plural,\none {sekunnin}\nother {sekunnin}\n} kuluessa",
+ "week": "{count} {count, plural,\n one {viikon}\n other {viikon}\n} kuluessa"
+ },
+ "just_now": "Juuri nyt",
+ "never": "Ei koskaan",
+ "past_duration": {
+ "day": "{count} {count, plural,\n one {päivä}\n other {päivää}\n} sitten",
+ "hour": "{count} {count, plural,\none {tunti}\nother {tuntia}\n} sitten",
+ "minute": "{count} {count, plural,\none {minuutti}\nother {minuuttia}\n} sitten",
+ "second": "{count} {count, plural,\none {sekunti}\nother {sekuntia}\n} sitten",
+ "week": "{count} {count, plural,\n one {viikkoa}\n other {viikkoa}\n} sitten"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Integraation dokumentaatio",
+ "required": "Tämä kenttä vaaditaan",
+ "service_data": "Palvelun tiedot",
+ "target": "Kohteet",
+ "target_description": "Mitä tämän palvelun tulisi käyttää kohdealueina, -laitteina tai -entiteetteinä."
+ },
+ "service-picker": {
+ "service": "Palvelu"
+ },
+ "statistic-picker": {
+ "learn_more": "Lisätietoja tilastoista",
+ "missing_entity": "Miksi kohdettani ei ole luettelossa?",
+ "no_match": "Vastaavia tilastoja ei löytynyt",
+ "no_statistics": "Sinulla ei ole tilastoja",
+ "statistic": "Tilasto"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Ladataan tilastoja…",
+ "no_statistics_found": "Tilastoja ei löytynyt.",
+ "statistic_types": {
+ "max": "maks",
+ "mean": "keskiarvo",
+ "min": "min",
+ "sum": "summa"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Valitse alue",
+ "add_device_id": "Valitse laite",
+ "add_entity_id": "Valitse kohde",
+ "expand": "Laajenna",
+ "expand_area_id": "Jaa tämä alue erillisiin laitteisiin ja entiteetteihin.",
+ "expand_device_id": "Jaa tämä laite erillisiin entiteetteihin.",
+ "remove": "Poista",
+ "remove_area_id": "Poista alue",
+ "remove_device_id": "Poista laite",
+ "remove_entity_id": "Poista kohde"
+ },
+ "user-picker": {
+ "add_user": "Lisää käyttäjä",
+ "no_user": "Ei käyttäjää",
+ "remove_user": "Poista käyttäjä"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Jos tämä ei ole käytössä, {integration}-sovelluksen äskettäin löydettyjä entiteettejä ei lisätä automaattisesti Home Assistantiin.",
+ "enable_new_entities_label": "Ota vasta lisätyt kohteet käyttöön.",
+ "enable_polling_description": "Jos Home Assistantin pitä kysellä automaattisesti \n{integration}:n entiteettien päivityksistä",
+ "enable_polling_label": "Ota päivitysten kysely käyttöön.",
+ "restart_home_assistant": "Sinun on käynnistettävä Home Assistant uudelleen, jotta muutokset tulevat voimaan.",
+ "title": "Järjestelmäasetukset kohteelle {integration}",
+ "update": "Päivitä"
+ },
+ "domain_toggler": {
+ "reset_entities": "Nollaa entiteetit",
+ "title": "Kytke verkkotunnukset"
+ },
+ "entity_registry": {
+ "control": "Ohjaus",
+ "customize_link": "entiteettien mukautukset",
+ "dismiss": "Hylkää",
+ "editor": {
+ "advanced": "Lisäasetukset",
+ "area": "Aseta vain entiteetin alue",
+ "area_note": "Oletuksena laitteen entiteetit ovat samalla alueella laitteen kanssa. Jos muutat tämän entiteetin aluetta, se ei enää seuraa laitteen aluetta.",
+ "change_device_area": "Vaihda laitteen aluetta",
+ "confirm_delete": "Haluatko varmasti poistaa tämän kohteen?",
+ "delete": "Poista",
+ "device_class": "Näytä",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Ovi",
+ "garage_door": "Autotallin ovi",
+ "opening": "Muu",
+ "window": "Ikkuna"
+ },
+ "cover": {
+ "door": "Ovi",
+ "garage": "Autotallin ovi",
+ "window": "Ikkuna"
+ }
+ },
+ "device_disabled": "Tämän kohteen laite on poistettu käytöstä.",
+ "enabled_cause": "{cause} on poistanut sen käytöstä.",
+ "enabled_delay_confirm": "Käyttöön otetut kohteet lisätään Home Assistantiin {delay} sekunnin kuluttua",
+ "enabled_description": "Käytöstä poistettuja kohteita ei lisätä Home Assistantiin.",
+ "enabled_label": "Ota kohte käyttöön",
+ "enabled_restart_confirm": "Viimeistele kohteiden käyttöönotto käynnistämällä Home Assistant uudelleen",
+ "entity_id": "Kohde ID",
+ "follow_device_area": "Seuraa laitteen aluetta",
+ "icon": "Kuvakkeen yliajo",
+ "icon_error": "Kuvakkeen tulisi olla muodossa etuliite:ikoni, esimerkiksi: mdi:home",
+ "name": "Nimen yliajo",
+ "note": "Huomaa: tämä ei ehkä vielä toimi kaikissa integraatioissa.",
+ "open_device_settings": "Avaa laitteen asetukset",
+ "unavailable": "Tämä kohde ei ole tällä hetkellä käytettävissä.",
+ "update": "Päivitä"
+ },
+ "faq": "dokumentaatio",
+ "info_customize": "Voit korvata joitain määritteitä {customize_link} -osiossa.",
+ "no_unique_id": "Tällä kohteella ei ole yksilöivää tunnusta, joten sen asetuksia ei voida hallita käyttöliittymästä.",
+ "related": "Liittyvät",
+ "settings": "Asetukset"
+ },
+ "generic": {
+ "cancel": "Peruuta",
+ "close": "Sulje",
+ "default_confirmation_title": "Oletko varma?",
+ "ok": "OK"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Asetusarvo",
+ "maximum": "Suurin arvo",
+ "minimum": "Pienin arvo",
+ "restore": "Palauta viimeisin tunnettu arvo, kun Home Assistant käynnistyy",
+ "step": "Askelkoko"
+ },
+ "generic": {
+ "icon": "Kuvake",
+ "name": "Nimi"
+ },
+ "input_datetime": {
+ "date": "Päivämäärä",
+ "datetime": "Päivämäärä ja kellonaika",
+ "mode": "Mitä haluat syöttää",
+ "time": "Aika"
+ },
+ "input_number": {
+ "box": "Syöttökenttä",
+ "max": "Suurin arvo",
+ "min": "Vähimmäisarvo",
+ "mode": "Näyttötila",
+ "slider": "Liukusäädin",
+ "step": "Askelkoko",
+ "unit_of_measurement": "Mittayksikkö"
+ },
+ "input_select": {
+ "add": "Lisää",
+ "add_option": "Lisää vaihtoehto",
+ "no_options": "Valintoja ei vielä ole.",
+ "options": "Asetukset"
+ },
+ "input_text": {
+ "max": "Enimmäispituus",
+ "min": "Vähimmäispituus",
+ "mode": "Näyttötila",
+ "password": "Salasana",
+ "pattern": "Regex-malli käyttäjäpuolen validointia varten.",
+ "text": "Teksti"
+ },
+ "platform_not_loaded": "Integraatiota {platform} ei ole ladattu. Voit ladata sen lisäämällä \"default_config:\" tai ''{platform}:'' konfiguraatiotiedostoon.",
+ "required_error_msg": "Tämä kenttä on pakollinen",
+ "timer": {
+ "duration": "Kesto"
+ },
+ "yaml_not_editable": "Tämän kohteen asetuksia ei voi muokata käyttöliittymästä. Vain käyttöliittymästä määritetyt kohteet ovat määritettävissä käyttöliittymästä."
+ },
+ "image_cropper": {
+ "crop": "Rajaa"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Sulje kansi",
+ "close_tile_cover": "Sulje kannen kallistus",
+ "close_tilt_cover": "Sulje kannen kallistus",
+ "open_cover": "Avaa kansi",
+ "open_tilt_cover": "Avaa kannen kallistus",
+ "stop_cover": "Pysäytä kansi liikkumasta"
+ },
+ "details": "Yksityiskohdat",
+ "dismiss": "Sulje ikkuna",
+ "edit": "Muokkaa kohdetta",
+ "history": "Historia",
+ "last_changed": "Viimeksi muutettu",
+ "last_updated": "Viimeksi päivitetty",
+ "logbook": "Lokikirja",
+ "person": {
+ "create_zone": "Luo vyöhyke nykyisestä sijainnista"
+ },
+ "remote": {
+ "activity": "Nykyinen aktiviteetti"
+ },
+ "restored": {
+ "confirm_remove_text": "Haluatko varmasti poistaa tämän kohteen?",
+ "confirm_remove_title": "Poistetaanko kohde?",
+ "not_provided": "Tämä kohde ei ole tällä hetkellä käytettävissä ja se on orpo poistetulle, muutetulle tai virheelliselle integraatiolle tai laitteelle.",
+ "remove_action": "Poista kohde",
+ "remove_intro": "Jos kokonaisuutta ei enää käytetä, voit puhdistaa sen poistamalla sen."
+ },
+ "script": {
+ "last_action": "Edellinen toiminto",
+ "last_triggered": "Viimeksi laukaistu"
+ },
+ "settings": "Kohteen asetukset",
+ "show_more": "Näytä lisää",
+ "sun": {
+ "elevation": "Korkeus merenpinnasta",
+ "rising": "Auringonnousu",
+ "setting": "Auringonlasku"
+ },
+ "updater": {
+ "title": "Päivitysohjeet"
+ },
+ "vacuum": {
+ "clean_spot": "Puhdista paikka",
+ "commands": "Pölynimurin komennot:",
+ "fan_speed": "Tuulettimen nopeus",
+ "locate": "Paikanna",
+ "pause": "Tauko",
+ "return_home": "Palaa kotiin",
+ "start": "Käynnistä",
+ "start_pause": "Käynnistys / Tauko",
+ "status": "Tila",
+ "stop": "Pysäytä"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Yritetään jäsentää MQTT-viestejä JSON-muodossa",
+ "entities": "Kohteet",
+ "no_entities": "Ei kohteita",
+ "no_triggers": "Ei laukaisimia",
+ "payload_display": "Tietosisältönäyttö",
+ "recent_messages": "{n} viimeksi vastaanotettua viestiä",
+ "show_as_yaml": "Näytä YAML-muodossa",
+ "title": "{device} vianetsintätiedot",
+ "triggers": "Laukaisimet"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Asetukset"
+ },
+ "loading": {
+ "loading_flow": "Odota, kun {integration} vaihtoehtoja alustetaan",
+ "loading_step": "Ladataan seuraavaa vaihetta {integration}"
+ },
+ "success": {
+ "description": "Asetukset tallennettiin onnistuneesti."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Alueet",
+ "automation": "Automaatiot",
+ "blueprint": "Piirustukset",
+ "core": "Yleinen",
+ "customize": "Kustomointi",
+ "devices": "Laitteet",
+ "energy": "Energia",
+ "entities": "Kohteet",
+ "helpers": "Auttajat",
+ "info": "Tiedot",
+ "integrations": "Integraatiot",
+ "logs": "Lokit",
+ "lovelace": "Lovelace-kojelaudat",
+ "person": "Henkilöt",
+ "scene": "Tilanteet",
+ "script": "Skriptit",
+ "server_control": "Palvelimen hallinta",
+ "tag": "Tunnisteet",
+ "users": "Käyttäjät",
+ "zone": "Alueet"
+ },
+ "reload": {
+ "automation": "Automaatiot",
+ "command_line": "Komentorivientiteetit",
+ "core": "Sijainti & muokkaukset",
+ "filesize": "Tiedostokokokohteet",
+ "filter": "Suodatinentiteetit",
+ "generic": "Yleiset IP-kameraentiteetit",
+ "generic_thermostat": "Yleiset termostaattientiteetit",
+ "group": "Ryhmät, ryhmäentiteetit ja ilmoituspalvelut",
+ "history_stats": "Historiatilastoentiteetit",
+ "homekit": "HomeKit",
+ "input_boolean": "Boolean-syötteet",
+ "input_datetime": "Päivämääräsyötteet",
+ "input_number": "Numerosyötteet",
+ "input_select": "Valintalaatikkosyötteet",
+ "input_text": "Tekstisyötteet",
+ "min_max": "Min/max-entiteetit",
+ "mqtt": "Manuaalisesti määritetyt MQTT-entiteetit",
+ "person": "Henkilöt",
+ "ping": "Binääriset ping-sensorientiteetit",
+ "reload": "{domain}",
+ "rest": "REST-entiteetit ja ilmoituspalvelut",
+ "rpi_gpio": "Raspberry Pi GPIO -entiteetit",
+ "scene": "Tilanteet",
+ "script": "Skriptit",
+ "smtp": "SMTP-ilmoituspalvelut",
+ "statistics": "Tilastoentiteetit",
+ "telegram": "Telegram-ilmoituspalvelut",
+ "template": "Mallientiteetit",
+ "themes": "Teemat",
+ "trend": "Trendientiteetit",
+ "universal": "Yleiset mediasoitinentiteetit",
+ "zone": "Alueet"
+ },
+ "server_control": {
+ "perform_action": "{action} palvelin",
+ "restart": "Käynnistä uudelleen",
+ "stop": "Pysäytä"
+ },
+ "types": {
+ "navigation": "Siirry",
+ "reload": "Lataa uudelleen",
+ "server_control": "Palvelin"
+ }
+ },
+ "filter_placeholder": "Kohdesuodatin",
+ "key_c_hint": "Paina 'c' millä tahansa sivulla avataksesi tämän hakupalkin",
+ "title": "Pikahaku"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant ei kuullut mitään",
+ "error": "Hups, tapahtui virhe",
+ "found": "Löysin seuraavat sinulle:",
+ "how_can_i_help": "Miten voin auttaa?",
+ "label": "Kirjoita kysymys ja paina 'Enter'",
+ "label_voice": "Kirjoita ja paina 'Enter' tai napauta mikrofonia puhuaksesi"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Lisää laitteita",
+ "clusters": "Hallitse klustereita",
+ "device_children": "Näytä lapset",
+ "reconfigure": "Määritä laite uudelleen",
+ "remove": "Poista laite",
+ "view_in_visualization": "Näytä visualisointi",
+ "zigbee_information": "Zigbee-laitteen allekirjoitus"
+ },
+ "confirmations": {
+ "remove": "Haluatko varmasti poistaa laitteen?"
+ },
+ "device_children": "Zigbee-laitteen lapset",
+ "device_signature": "Zigbee-laitteen allekirjoitus",
+ "last_seen": "Viimeksi nähty",
+ "manuf": "by {manufacturer}",
+ "no_area": "Ei aluetta",
+ "power_source": "Virtalähde",
+ "quirk": "Oikku",
+ "services": {
+ "reconfigure": "Määritä ZHA-laite uudelleen (paranna laite). Käytä tätä, jos sinulla on ongelmia laitteen kanssa. Jos kyseinen laite on akkukäyttöinen laite, varmista, että se on hereillä ja hyväksyy komentoja, kun käytät tätä palvelua.",
+ "remove": "Poista laite Zigbee-verkosta.",
+ "updateDeviceName": "Määritä laitteelle mukautettu nimi laiterekisterissä.",
+ "zigbee_information": "Tarkastele laitteen Zigbee-tietoja."
+ },
+ "unknown": "Tuntematon",
+ "zha_device_card": {
+ "device_name_placeholder": "Vaihda laitteen nimi"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Määrite",
+ "battery_device_warning": "Sinun on herätettävä paristokäyttöiset laitteet ennen uudelleenkonfigurointiprosessin aloittamista. Katso laitteen ohjekirjasta ohjeet laitteen herättämiseen.",
+ "bind_header": "Sidonta",
+ "button_hide": "Piilota yksityiskohdat",
+ "button_show": "Näytä yksityiskohdat",
+ "cluster_header": "Klusteri",
+ "configuration_complete": "Laitteen uudelleenmääritys on valmis.",
+ "configuration_failed": "Laitteen uudelleenmääritys epäonnistui. Lisätietoja voi olla lokeissa.",
+ "configuring_alt": "Määrittää",
+ "heading": "Laitetta konfiguroidaan uudelleen",
+ "in_progress": "Laitetta määriteltään uudelleen. Tämä voi viedä aikaa.",
+ "introduction": "Määritä Zigbee-verkon laite uudelleen. Käytä tätä toimintoa, jos laite ei toimi oikein.",
+ "min_max_change": "min/max/muutos",
+ "reporting_header": "Raportoi",
+ "run_in_background": "Voit sulkea tämän valintaikkunan, ja uudelleenmääritys jatkuu taustalla.",
+ "start_reconfiguration": "Aloita uudelleenmääritys"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\n one {päivä}\n other {päivää}\n}",
+ "hour": "{count} {count, plural,\none {tunti}\nother {tuntia}\n}",
+ "minute": "{count} {count, plural,\none {minuutti}\nother {minuuttia}\n}",
+ "second": "{count} {count, plural,\none {sekunti}\nother {sekuntia}\n}",
+ "week": "{count} {count, plural,\n one {viikko}\n other {viikkoa}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Voit silti muokata asetuksiasi YAML:ssä.",
+ "editor_not_available": "Visuaalista editoria ei ole saataville tyypille \"{type}\".",
+ "editor_not_supported": "Visuaalista editoria ei tueta näille asetuksille",
+ "error_detected": "Määritysvirheitä havaittu",
+ "key_missing": "Tarvittava avain ''{key}'' puuttuu.",
+ "key_not_expected": "Avainta ''{key}'' ei odotettu tai visuaalinen editori ei tue sitä.",
+ "key_wrong_type": "Visuaalinen editori ei tule annettua arvo avaimelle ''{key}''. Tuemme arvoa ({type_correct}), mutta vastaanotimme ({type_wrong}).",
+ "no_state_array_support": "Visuaalinen muokkausohjelma ei tue useita tila-arvoja",
+ "no_template_editor_support": "Visuaalinen editori ei tue malleja",
+ "no_type_provided": "Tyyppiä ei ole annettu."
+ },
+ "supervisor": {
+ "ask": "Pyydä apua",
+ "observer": "Tarkista Observer",
+ "reboot": "Yritä uudelleenkäynnistää isäntä ",
+ "system_health": "Tarkista järjestelmän kunto",
+ "title": "Supervisor-paneelia ei voitu ladata!",
+ "wait": "Jos olet juuri aloittanut, varmista, että olet antanut Supervisorille riittävästi aikaa aloittaa."
+ }
+ },
+ "login-form": {
+ "log_in": "Kirjaudu sisään",
+ "password": "Salasana",
+ "remember": "Muista"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Napsauta painiketta määrittääksesi {entity}",
+ "close": "Sulje",
+ "dismiss_all": "Hylkää kaikki",
+ "empty": "Ei ilmoituksia",
+ "title": "Ilmoitukset"
+ },
+ "notification_toast": {
+ "connection_lost": "Ei yhteyttä. Yritetään muodostaa yhteys uudelleen…",
+ "dismiss": "Hylkää",
+ "integration_starting": "Käynnistetään {integration}, kaikki ei ole saatavilla ennen kuin se on valmis.",
+ "service_call_failed": "Palvelua {service} ei onnistuttu kutsumaan.",
+ "started": "Home Assistant on käynnistynyt!",
+ "starting": "Home Assistant käynnistyy, kaikki ei ole vielä valmista.",
+ "triggered": "Laukaisi kohteen {name}",
+ "wrapping_up_startup": "Käynnistystä päätellään, kaikki ei ole saatavilla ennen kuin on valmista."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Puuttuvatko asetusvaihtoehdot? Ota edistynyt tila käyttöön",
+ "link_profile_page": "profiilisivusi"
+ },
+ "areas": {
+ "add_picture": "Lisää kuva",
+ "assigned_to_area": "Liitetty tähän alueeseen",
+ "caption": "Alueet",
+ "data_table": {
+ "area": "Alue",
+ "devices": "Laitteet",
+ "entities": "Kohteet"
+ },
+ "delete": {
+ "confirmation_text": "Tälle alueelle kuuluvien laitteiden osoitus poistetaan.",
+ "confirmation_title": "Haluatko varmasti poistaa tämän alueen?"
+ },
+ "description": "Hallinnoi kotisi alueita",
+ "edit_settings": "Alueen asetukset",
+ "editor": {
+ "area_id": "Alueen tunnus",
+ "create": "Luo",
+ "default_name": "Uusi alue",
+ "delete": "Poista",
+ "linked_entities_caption": "Kohteet",
+ "name": "Nimi",
+ "name_required": "Nimi on pakollinen",
+ "no_linked_entities": "Tähän alueeseen ei ole liitetty kohteita.",
+ "unknown_error": "Tuntematon virhe",
+ "update": "Päivitä"
+ },
+ "picker": {
+ "create_area": "Luo alue",
+ "header": "Alueet",
+ "integrations_page": "Integraatiot",
+ "introduction": "Alueita käytetään laitteiden järjestämiseen. Näitä tietoja käytetään Home Assistantissa käyttöliittymän ja käyttöoikeuksien järjestämiseen sekä integroinnin muihin järjestelmiin.",
+ "introduction2": "Voit sijoittaa laitteita alueelle siirtymällä alla olevan linkin avulla integraatiot-sivulle ja sitten napauttamalla määritettyyn integraatioon, jotta pääset laitteet -kortteihin.",
+ "no_areas": "Et ole vielä luonut alueita!"
+ },
+ "targeting_area": "Kohdistettu tähän alueeseen"
+ },
+ "automation": {
+ "caption": "Automaatiot",
+ "description": "Luo ja muokkaa automaatioita",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Käytä piirustusta"
+ },
+ "header": "Luo uusi automaatio",
+ "how": "Miten haluat luoda uuden automaation?",
+ "start_empty": "Aloita tyhjästä automaatiosta",
+ "start_empty_description": "Luo uusi automaatio",
+ "thingtalk": {
+ "create": "Luo",
+ "header": "Kuvaile automaatiota, jonka haluat luoda",
+ "input_label": "Mitä tämän automaation pitäisi tehdä?",
+ "intro": "Ja yritämme luoda sen sinulle. Esimerkki: Sammuta valot, kun lähden."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Lisää toiminto",
+ "delete": "Poista",
+ "delete_confirm": "Haluatko varmasti poistaa tämän?",
+ "duplicate": "Kopioi",
+ "header": "Toiminnot",
+ "introduction": "Home Assistant suorittaa toiminnot, kun automaatio laukaistaan.",
+ "learn_more": "Lisätietoja toiminnoista",
+ "name": "Toiminta",
+ "type": {
+ "choose": {
+ "add_option": "Lisää vaihtoehto",
+ "conditions": "Ehdot",
+ "default": "Oletustoiminnot",
+ "label": "Valitse",
+ "option": "Vaihtoehto {number}",
+ "remove_option": "Poista vaihtoehto",
+ "sequence": "Toiminnot"
+ },
+ "condition": {
+ "label": "Ehto"
+ },
+ "delay": {
+ "delay": "Viive",
+ "label": "Viive"
+ },
+ "device_id": {
+ "action": "Toiminta",
+ "extra_fields": {
+ "brightness_pct": "Kirkkaus",
+ "code": "Koodi",
+ "flash": "Väläys",
+ "humidity": "Kosteus",
+ "message": "Viesti",
+ "mode": "Tila",
+ "position": "Sijainti",
+ "title": "Otsikko",
+ "value": "Arvo"
+ },
+ "label": "Laite"
+ },
+ "event": {
+ "event": "Tapahtuma",
+ "label": "Lähetä tapahtuma",
+ "service_data": "Palvelun data"
+ },
+ "repeat": {
+ "label": "Toista",
+ "sequence": "Toiminnot",
+ "type": {
+ "count": {
+ "label": "Laske"
+ },
+ "until": {
+ "conditions": "Kunnes ehdot",
+ "label": "Kunnes"
+ },
+ "while": {
+ "conditions": "Sillä aikaa, kun ehdot",
+ "label": "Sillä aikaa"
+ }
+ },
+ "type_select": "Toistotyyppi"
+ },
+ "scene": {
+ "label": "Aktivoi tilanne"
+ },
+ "service": {
+ "label": "Kutsu palvelua"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Jatka odotusajan jälkeen",
+ "label": "Odota laukaisinta",
+ "timeout": "Odotusaika (valinnainen)"
+ },
+ "wait_template": {
+ "continue_timeout": "Jatka odotusajan jälkeen",
+ "label": "Odota",
+ "timeout": "Aikakatkaisu",
+ "wait_template": "Odotusmalli (template)"
+ }
+ },
+ "type_select": "Toiminnon tyyppi",
+ "unsupported_action": "Toimintoa {action} ei tueta"
+ },
+ "alias": "Nimi",
+ "blueprint": {
+ "blueprint_to_use": "Käytettävä piirustus",
+ "header": "Piirustus",
+ "no_blueprints": "Sinulla ei ole yhtään piirustusta",
+ "no_inputs": "Tällä piirustuksella ei ole syötteitä."
+ },
+ "conditions": {
+ "add": "Lisää ehto",
+ "delete": "Poista",
+ "delete_confirm": "Haluatko varmasti poistaa tämän?",
+ "duplicate": "Kopioi",
+ "header": "Ehdot",
+ "introduction": "Ehdot ovat vapaaehtoinen osa automaatiosääntöä. Niillä voidaan estää toimintoa tapahtumasta, vaikka se olisi laukaistu. Ehdot näyttävät hyvin samanlaisilta kuin laukaisimet, mutta ne ovat eri asia. Laukaisimen tehtävä on tarkkailla järjestelmän tapahtumia. Ehto kuitenkin katsoo systeemin tilaa vain ja ainoastaan yhdellä hetkellä. Laukaisin voi esimerkiksi huomata, jos jokin vipu käännetään päälle. Ehto voi nähdä vain onko vipu päällä vai pois päältä.",
+ "learn_more": "Lisätietoja ehdoista",
+ "name": "Ehto",
+ "type": {
+ "and": {
+ "label": "Ja"
+ },
+ "device": {
+ "condition": "Ehto",
+ "extra_fields": {
+ "above": "Yli",
+ "below": "Alle",
+ "for": "Kesto",
+ "hvac_mode": "HVAC-tila",
+ "preset_mode": "Esiasetettu tila"
+ },
+ "label": "Laite"
+ },
+ "not": {
+ "label": "Ei"
+ },
+ "numeric_state": {
+ "above": "Yli",
+ "below": "Alle",
+ "label": "Lukuarvo",
+ "value_template": "Arvomalli, vapaahtoinen (template)"
+ },
+ "or": {
+ "label": "Tai"
+ },
+ "state": {
+ "label": "Tila",
+ "state": "Tila"
+ },
+ "sun": {
+ "after": "Jälkeen",
+ "after_offset": "Auringonlaskun jälkeen",
+ "before": "Ennen",
+ "before_offset": "Ennen auringonlaskua",
+ "label": "Aurinko",
+ "sunrise": "Auringonnousu",
+ "sunset": "Auringonlasku"
+ },
+ "template": {
+ "label": "Malli (template)",
+ "value_template": "Arvomalli (template)"
+ },
+ "time": {
+ "after": "Jälkeen",
+ "before": "Ennen",
+ "label": "Aika",
+ "type_input": "Päivämäärä/aika avustimen arvo",
+ "type_value": "Kiinteä aika",
+ "weekdays": {
+ "fri": "Perjantai",
+ "mon": "Maanantai",
+ "sat": "Lauantai",
+ "sun": "Sunnuntai",
+ "thu": "Torstai",
+ "tue": "Tiistai",
+ "wed": "Keskiviikko"
+ }
+ },
+ "trigger": {
+ "id": "Laukaisimen ID",
+ "label": "Laukaisin",
+ "no_triggers": "Ei laukaisimia saatavilla"
+ },
+ "zone": {
+ "entity": "Kokonaisuus, jolla on sijainti",
+ "label": "Alue",
+ "zone": "Alue"
+ }
+ },
+ "type_select": "Ehdon tyyppi",
+ "unsupported_condition": "Ehtoa ei tueta: {condition}"
+ },
+ "copy_to_clipboard": "Kopioi leikepöydälle",
+ "default_name": "Uusi automaatio",
+ "description": {
+ "label": "Kuvaus",
+ "placeholder": "Valinnainen kuvaus"
+ },
+ "edit_ui": "Muokkaa käyttöliittymässä",
+ "edit_yaml": "Muokkaa YAML-tiedostona",
+ "enable_disable": "Ota automaatio käyttöön tai poista se käytöstä",
+ "introduction": "Käytä automaatioita herättääksesi kotisi eloon",
+ "load_error_not_editable": "Vain automaatiot tiedostossa automations.yaml ovat muokattavissa.",
+ "load_error_unknown": "Virhe ladatessa automaatiota ( {err_no} )",
+ "max": {
+ "parallel": "Rinnakkaisten ajojen enimmäismäärä",
+ "queued": "Jonon pituus"
+ },
+ "modes": {
+ "description": "Tila määrittää, mitä tapahtuu, kun automaatio käynnistyy uudelleen edellisen käynnistyskerran toimintojen ollessa vielä käynnissä. Lisätietoja {documentation_link}.",
+ "documentation": "automaatioiden ohjeissa",
+ "label": "Tila",
+ "parallel": "Rinnakkain",
+ "queued": "Peräkkäin",
+ "restart": "Aloita alusta",
+ "single": "Yksi kerrallaan (oletus)"
+ },
+ "move_down": "Siirrä alaspäin",
+ "move_up": "Siirrä ylöspäin",
+ "save": "Tallenna",
+ "show_trace": "Näytä jäljitys",
+ "triggers": {
+ "add": "Laukaisuehto",
+ "delete": "Poista",
+ "delete_confirm": "Haluatko varmasti poistaa tämän?",
+ "duplicate": "Kopioi",
+ "header": "Laukaisuehdot",
+ "id": "Laukaisimen ID (käytetään laukaisin-ehdossa)",
+ "introduction": "Laukaisuehdot määrittelevät, milloin automaatiota aletaan suorittaa. Samassa säännössä voi olla useita laukaisuehtoja. Kun laukaisuehto täyttyy, Home Assistant varmistaa ehdot. Jos ehdot täyttyvät, toiminto suoritetaan.",
+ "learn_more": "Lisätietoja triggereistä",
+ "name": "Käynnistysehto",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Yli",
+ "below": "Alle",
+ "for": "Kesto",
+ "zone": "Alue"
+ },
+ "label": "Laite",
+ "trigger": "Laukaisin"
+ },
+ "event": {
+ "context_user_pick": "Valitse käyttäjä",
+ "context_user_picked": "Käyttäjän laukaisutapahtuma",
+ "context_users": "Rajoita tapahtumiin, jotka ovat käynnistäneet",
+ "event_data": "Tapahtuman tietosisältö",
+ "event_type": "Tapahtuman tyyppi",
+ "label": "Tapahtuma"
+ },
+ "geo_location": {
+ "enter": "Saapuminen alueelle",
+ "event": "Tapahtuma:",
+ "label": "Geolocation",
+ "leave": "Poistu",
+ "source": "Lähde",
+ "zone": "Alue"
+ },
+ "homeassistant": {
+ "event": "Tapahtuma:",
+ "label": "Home Assistant",
+ "shutdown": "Sammutus",
+ "start": "Käynnistys"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Tietosisältö (payload)",
+ "topic": "Aihe"
+ },
+ "numeric_state": {
+ "above": "Yli",
+ "below": "Alle",
+ "label": "Numeerinen tila",
+ "value_template": "Arvomalli (template)"
+ },
+ "state": {
+ "attribute": "Attribuutti (valinnainen)",
+ "for": "Viive",
+ "from": "Lähtötila",
+ "label": "Tila",
+ "to": "Kohdetila"
+ },
+ "sun": {
+ "event": "Tapahtuma:",
+ "label": "Aurinko",
+ "offset": "Poikkeama (vapaaehtoinen)",
+ "sunrise": "Auringonnousu",
+ "sunset": "Auringonlasku"
+ },
+ "tag": {
+ "label": "Tägi"
+ },
+ "template": {
+ "label": "Malli (template)",
+ "value_template": "Arvomalli (template)"
+ },
+ "time": {
+ "at": "Kellonaikana",
+ "label": "Aika",
+ "type_input": "Päivämäärä- ja aika-apurin arvo",
+ "type_value": "Kiinteä aika"
+ },
+ "time_pattern": {
+ "hours": "Tuntia",
+ "label": "Aikakuvio",
+ "minutes": "Minuuttia",
+ "seconds": "Sekuntia"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook-tunnus"
+ },
+ "zone": {
+ "enter": "Saapuminen alueelle",
+ "entity": "Kokonaisuus, jolla on sijainti",
+ "event": "Tapahtuma",
+ "label": "Alue",
+ "leave": "Poistuminen alueelta",
+ "zone": "Alue"
+ }
+ },
+ "type_select": "Laukaisimen tyyppi",
+ "unsupported_platform": "Alustaa {platform} ei tueta"
+ },
+ "unsaved_confirm": "Sinulla on tallentamattomia muutoksia. Haluatko varmasti poistua?"
+ },
+ "picker": {
+ "add_automation": "Lisää automaatio",
+ "delete_automation": "Poista automaatio",
+ "delete_confirm": "Haluatko varmasti poistaa tämän automaation?",
+ "dev_automation": "Automaation vianmääritys",
+ "dev_only_editable": "Vain automaatiot, joille on määritetty yksilöllinen tunnus, ovat vianmäärityskelpoisia.",
+ "duplicate": "Kopioi",
+ "duplicate_automation": "Kopioi automaatio",
+ "edit_automation": "Muokkaa automaatiota",
+ "header": "Automaatioeditori",
+ "headers": {
+ "name": "Nimi"
+ },
+ "introduction": "Automaatioeditorissa voit luoda ja muokata automaatioita. Kannattaa lukea ohjeet, jotta osaat varmasti kirjoittaa automaatiot oikein.",
+ "learn_more": "Lisätietoja automatisoinneista",
+ "no_automations": "Ei muokattavia automaatioita",
+ "only_editable": "Vain automaatiot tiedostossa automations.yaml ovat muokattavissa.",
+ "pick_automation": "Valitse automaatio, jota haluat muokata",
+ "show_info_automation": "Näytä tietoja automaatiosta"
+ },
+ "thingtalk": {
+ "create": "Luo automaatio",
+ "link_devices": {
+ "ambiguous_entities": "Yhdessä tai useammassa laitteessa on useampi kuin yksi vastaava kokonaisuus. Valitse se, jota haluat käyttää.",
+ "header": "Upeaa! Nyt meidän on linkitettävä joitakin laitteita",
+ "unknown_placeholder": "Tuntematon paikkamerkki"
+ },
+ "task_selection": {
+ "error_empty": "Kirjoita komento tai napauta ohita.",
+ "error_unsupported": "Emme voineet luoda automaatiota sille (vielä?).",
+ "for_example": "Esimerkiksi:",
+ "header": "Luo uusi automaatio",
+ "introduction": "Kirjoita alle, mitä tämän automaation pitäisi tehdä, ja yritämme muuntaa sen Home Assistant -automaatioksi.",
+ "language_note": "Huomaa: Toistaiseksi vain englantia tuetaan."
+ }
+ },
+ "trace": {
+ "download_trace": "Lataa jälki",
+ "edit_automation": "Muokkaa automaatiota",
+ "newer_trace": "Uudempi jälki",
+ "older_trace": "Vanhempi jälki",
+ "refresh": "Päivitä"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "yhteisön keskustelualueilta",
+ "error_no_url": "Ole hyvä ja kirjoita piirustuksen URL",
+ "file_name": "Piirustuksen polku",
+ "header": "Tuo piirustus",
+ "import_btn": "Piirustuksen esikatselu",
+ "import_header": "Piirustus \"{name}\"",
+ "import_introduction_link": "Voit tuoda muiden käyttäjien piirustuksia GitHubista ja {community_link}. Kirjoita piirustuksen URL-osoite alle.",
+ "importing": "Ladataan piirustusta...",
+ "raw_blueprint": "Piirustuksen sisältö",
+ "save_btn": "Tuo piirustus",
+ "saving": "Tuodaan piirustusta…",
+ "unsupported_blueprint": "Tämä piirustus ei ole tuettu",
+ "url": "Piirustuksen URL"
+ },
+ "caption": "Piirustukset",
+ "description": "Hallitse piirustuksia",
+ "overview": {
+ "add_blueprint": "Tuo piirustus",
+ "confirm_delete_header": "Poistetaanko tämä piirustus?",
+ "confirm_delete_text": "Haluatko varmasti poistaa tämän piirustuksen?",
+ "create_automation": "Luo automaatio",
+ "create_script": "Luo skripti",
+ "delete_blueprint": "Poista piirustus",
+ "discover_more": "Löydä lisää piirustuksia",
+ "header": "Piirustusten muokkain",
+ "headers": {
+ "domain": "Toimialue",
+ "file_name": "Tiedoston nimi",
+ "name": "Nimi",
+ "type": "Tyyppi"
+ },
+ "introduction": "Piirustusmääritysten avulla voit tuoda ja hallita piirustuksiasi.",
+ "learn_more": "Lisätietoja piirustusten käytöstä",
+ "share_blueprint": "Jaa piirustus",
+ "share_blueprint_no_url": "Suunnitelmaa ei voi jakaa: ei lähde-URL-osoitetta",
+ "types": {
+ "automation": "Automaatio",
+ "script": "Skripti"
+ },
+ "use_blueprint": "Luo automaatio"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Asetusten dokumentaatio.",
+ "disable": "Poista käytöstä",
+ "enable": "Ota käyttöön",
+ "enable_ha_skill": "Ota Kotiavustajan taito käyttöön Alexassa",
+ "enable_state_reporting": "Ota tilaraportointi käyttöön",
+ "info": "Alexa Integraatio Home Assistant Cloudille mahdollistaa Home Assistant laitteiden ohjaamisen miltä tahansa Alexa laitteelta.",
+ "info_state_reporting": "Jos otat tilaraportoinnin käyttöön, Home Assistant lähettää kaikki julkistettujen kohteiden tilamuutokset Amazonille. Tämän avulla voit aina nähdä uusimmat tilat Alexa-sovelluksessa ja käyttää tilamuutoksia rutiinien luomiseen.",
+ "manage_entities": "Hallitse kohteita",
+ "state_reporting_error": "Tilaa {enable_disable} .ei ole saatavilla",
+ "sync_entities": "Synkronoi kohteet",
+ "sync_entities_error": "Kohteiden synkronointi epäonnistui:",
+ "title": "Alexa"
+ },
+ "connected": "Yhdistetty",
+ "connecting": "Yhdistetään…",
+ "connection_status": "Pilviyhteyden tila",
+ "fetching_subscription": "Haetaan tilausta…",
+ "google": {
+ "config_documentation": "Asetusten dokumentaatio.",
+ "devices_pin": "Suojauslaitteiden pin",
+ "enable_ha_skill": "Aktivoi Home Assistant -taito Google Assistantille",
+ "enable_state_reporting": "Ota tilaraportointi käyttöön",
+ "enter_pin_error": "PIN-koodin tallentaminen ei onnistu:",
+ "enter_pin_hint": "Anna PIN-koodi turvalaitteiden käyttämistä varten",
+ "enter_pin_info": "Anna turvalaitteille, kuten oville, autotalleille ja lukoille PIN-koodi. Tätä koodia tullaan sinulta kysymään käyttäessäsi edellä mainittuja laitteita Google Assistantin kautta.",
+ "info": "Google Assistant Integraatio Home Assistant Cloudille mahdollistaa Home Assistant laitteiden ohjaamisen miltä tahansa Google Assistant laitteelta.",
+ "info_state_reporting": "Jos otat tilaraportoinnin käyttöön, Home Assistant lähettää kaikki julkistettujen kohteiden tilamuutokset Googlelle. Tämän avulla voit aina nähdä uusimmat tilat Google-sovelluksessa.",
+ "manage_entities": "Hallitse kohteita",
+ "not_configured_text": "Ennen kuin voit käyttää Google Assistantia, sinun on aktivoitava Home Assistant Cloud -taito Google Assistantille Google Home -sovelluksessa.",
+ "not_configured_title": "Google Assistant ei ole aktivoitu",
+ "security_devices": "Turvalaitteet",
+ "sync_entities": "Synkronoi kohteet Googleen",
+ "sync_entities_404_message": "Kohteiden synkronointi Googlelle epäonnistui. Kysy \"Hey Google, sync my devices\" synkronoidaksesi kohteet.",
+ "title": "Google Assistant"
+ },
+ "integrations": "Integraatiot",
+ "integrations_introduction": "Home Assistant Cloud integraatiot mahdollistavat pilvipalveluihin käytön ilman että Home Assistant asennus on näkyvissä julkisesti Internetissä.",
+ "integrations_introduction2": "Tsekkaa verkkosivut kohteesta",
+ "integrations_link_all_features": " kaikki käytettävissä olevat ominaisuudet",
+ "manage_account": "Tilin Hallinta",
+ "nabu_casa_account": "Nabu Casa -tili",
+ "not_connected": "Ei yhteyttä",
+ "remote": {
+ "access_is_being_prepared": "Etäkäyttöä valmistellaan. Ilmoitamme sinulle, kun se on valmis.",
+ "certificate_info": "Sertifikaatin tiedot",
+ "connected": "Yhdistetty",
+ "info": "Home Assistant Cloud tarjoaa turvallisen etäyhteyden ollessasi poissa kotoa.",
+ "instance_is_available": "Asennuksesi on saatavilla osoitteessa",
+ "instance_will_be_available": "Asennuksesi tulee saataville",
+ "link_learn_how_it_works": "Lisätietoja toiminnasta",
+ "not_connected": "Ei yhteyttä",
+ "reconnecting": "Ei yhteyttä. Yritetään muodostaa yhteys uudelleen.",
+ "remote_enabled": {
+ "caption": "Yhdistä automaattisesti",
+ "description": "Ota tämä vaihtoehto käyttöön, jos haluat varmistaa, että Home Assistant -instanssisi on aina etäkäytettävissä."
+ },
+ "title": "Etähallinta"
+ },
+ "sign_out": "Kirjaudu ulos",
+ "thank_you_note": "Kiitos, että olet osa Home Assistant Cloudia. Sinun kaltaisten ihmisten takia pystymme tarjoamaan loistavan kodin automaatiokokemuksen kaikille. Kiitos!",
+ "tts": {
+ "default_language": "Oletuskieli",
+ "dialog": {
+ "create_automation": "Luo automaatio",
+ "example_message": "Hei {name}, voit toistaa mitä tahansa tekstiä millä tahansa tuetulla mediasoittimella!",
+ "header": "Kokeile \"teksti puheeksi\" -toimintoa",
+ "play": "Toista",
+ "target": "Kohde",
+ "target_browser": "Selain"
+ },
+ "female": "Nainen",
+ "info": "Tuo kotiisi persoonallisuutta antamalla sen puhua sinulle tekstistä puheeksi -palveluidemme avulla. Voit käyttää tätä automaatioissa ja skripteissä käyttämällä {service}.",
+ "male": "Mies",
+ "title": "Teksti puheeksi",
+ "try": "Kokeile"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Webhookin poistaminen epäonnistui:",
+ "info": "Kaikille, jotka ovat määritetty käynnistymään webhookin avulla, voidaan antaa julkisesti saatavilla oleba URL jotta voit lähettää tietoja takaisin Home Assistant mistä tahansa, paljastamatta järjestelmääsi Internetiin.",
+ "link_learn_more": "Lisätietoja webhook-pohjaisten automaatioiden luomisesta.",
+ "loading": "Ladataan…",
+ "manage": "Hallitse",
+ "no_hooks_yet": "Näyttää sinulla ei ole vielä webhookeja. Aloita määrittämällä ",
+ "no_hooks_yet2": "tai luomalla",
+ "no_hooks_yet_link_automation": "webhook-automaatio",
+ "no_hooks_yet_link_integration": "webhook-pohjainen integraatio",
+ "title": "Webhooks"
+ }
+ },
+ "alexa": {
+ "banner": "Tämän käyttöliittymän kautta näkyvien kohteiden muokkaaminen on poistettu käytöstä, koska olet määrittänyt kohdesuodattimet kohteessa configuration.yaml.",
+ "dont_expose_entity": "Älä näytä entiteettiä",
+ "expose": "Julkista Alexalle",
+ "expose_entity": "Näytä entiteetti",
+ "exposed": "{selected} on näkyvissä",
+ "exposed_entities": "Julkistetut kohteet",
+ "follow_domain": "Seuraa verkkotunnusta",
+ "manage_domains": "Hallitse toimialueita",
+ "not_exposed": "{selected} ei ole näkyvissä",
+ "not_exposed_entities": "eJulk",
+ "title": "Alexa"
+ },
+ "description_features": "Ohjaus poissa kotoa Alexan tai Google Assistantin avulla.",
+ "description_login": "Kirjautunut sisään {email}",
+ "description_not_login": "Et ole kirjautunut",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Sertifikaatin vanhenemispäivä",
+ "certificate_information": "Sertifikaatin tiedot",
+ "close": "Sulje",
+ "fingerprint": "Varmenteen sormenjälki:",
+ "will_be_auto_renewed": "Uusitaan automaattisesti"
+ },
+ "dialog_cloudhook": {
+ "available_at": "Webhook on saatavana seuraavassa URL-osoitteessa:",
+ "close": "Sulje",
+ "confirm_disable": "Haluatko varmasti poistaa tämän webhookin käytöstä?",
+ "copied_to_clipboard": "Kopioitiin leikepöydälle",
+ "info_disable_webhook": "Jos et enää halua käyttää tätä webhookia, voit",
+ "link_disable_webhook": "Poista käytöstä",
+ "managed_by_integration": "Tätä webhookia hallitsee integraatio, eikä sitä voi poistaa käytöstä.",
+ "view_documentation": "Näytä dokumentaatio",
+ "webhook_for": "Webhook kohteelle {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "Tarkista sähköpostistasi ohjeet salasanan vaihtamiseen.",
+ "email": "Sähköposti",
+ "email_error_msg": "Virheellinen sähköpostiosoite",
+ "instructions": "Kirjoita sähköpostiosoitteesi ja lähetämme sinulle linkin salasanasi palauttamiseksi.",
+ "send_reset_email": "Lähetä palautusviesti",
+ "subtitle": "Unohtuiko salasana?",
+ "title": "Unohtuiko salasana?"
+ },
+ "google": {
+ "banner": "Tämän käyttöliittymän kautta näkyvien kihteiden muokkaaminen on poistettu käytöstä, koska olet määrittänyt kohdesuodattimet kohteessa configuration.yaml.",
+ "disable_2FA": "Poista kaksivaiheinen tunnistautuminen",
+ "dont_expose_entity": "Älä näytä entiteettiä",
+ "expose": "Julkista Google Assistantille",
+ "expose_entity": "Näytä entiteetti",
+ "exposed": "{selected} on näkyvissä",
+ "exposed_entities": "Julkistetut kohteet",
+ "follow_domain": "Seuraa verkkotunnusta",
+ "manage_domains": "Hallitse toimialueita",
+ "not_exposed": "{selected} ei ole näkyvissä",
+ "not_exposed_entities": "Julkistamattomat kohteet",
+ "sync_to_google": "Synkronoidaan muutokset Googleen.",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Sinun on vahvistettava sähköpostiosoitteesi ennen sisäänkirjautumista.",
+ "alert_password_change_required": "Sinun on vaihdettava salasanasi ennen sisäänkirjautumista.",
+ "dismiss": "Hylkää",
+ "email": "Sähköposti",
+ "email_error_msg": "Virheellinen sähköpostiosoite",
+ "forgot_password": "Unohtuiko salasana?",
+ "introduction": "Home Assistant Cloud tarjoaa turvallisen etäyhteyden instanssiin ollessasi poissa kotoa. Sen avulla voit myös muodostaa yhteyden pilvipalveluihin Amazon Alexaan ja Google Assistantiin.",
+ "introduction2": "Tätä palvelua ylläpitää kumppanimme",
+ "introduction2a": ", Home Assistantin ja Hass.io: n perustajien perustama yritys.",
+ "introduction3": "Home Assistant Cloud on tilauspalvelu, jossa on ilmainen yhden kuukauden kokeilu. Maksutietoja ei tarvita.",
+ "learn_more_link": "Lisätietoja Home Assistant Cloudista",
+ "password": "Salasana",
+ "password_error_msg": "Salasanan pitää olla vähintään 8 merkkiä pitkä",
+ "sign_in": "Kirjaudu sisään",
+ "start_trial": "Aloita ilmainen 1 kuukauden kokeilu",
+ "title": "Cloud Kirjautuminen",
+ "trial_info": "Maksutietoja ei tarvita"
+ },
+ "register": {
+ "account_created": "Tili luotu! Tarkista sähköpostistasi ohjeet tilisi aktivoimiseksi.",
+ "create_account": "Luo tili",
+ "email_address": "Sähköpostiosoite",
+ "email_error_msg": "Virheellinen sähköpostiosoite",
+ "feature_amazon_alexa": "Integrointi Amazon Alexan kanssa",
+ "feature_google_home": "Integrointi Google Assistant -sovelluksen kanssa",
+ "feature_remote_control": "Hallitse Home Assistantia kodin ulkopuolelta",
+ "feature_webhook_apps": "Helppo integrointi webhook-pohjaisiin sovelluksiin, kuten OwnTracksiin",
+ "headline": "Aloita ilmainen kokeilu",
+ "information": "Luo tili aloittaaksesi ilmaisen yhden kuukauden kokeilun Home Assistant Cloudilla. Maksutietoja ei tarvita.",
+ "information2": "Kokeilu antaa sinulle pääsyn kaikkiin Home Assistant Cloud -etuihin, mukaan lukien:",
+ "information3": "Tätä palvelua ylläpitää kumppanimme",
+ "information3a": ", Home Assistantin ja Hass.io:n perustajien perustama yritys.",
+ "information4": "Rekisteröimällä tilin hyväksyt seuraavat ehdot.",
+ "link_privacy_policy": "Tietosuojakäytäntö",
+ "link_terms_conditions": "Ehdot",
+ "password": "Salasana",
+ "password_error_msg": "Salasanan pitää olla vähintään 8 merkkiä pitkä",
+ "resend_confirm_email": "Lähetä varmistusviesti uudelleen",
+ "start_trial": "Aloita kokeilujakso",
+ "title": "Rekisteröi tili"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Sinulla on tallentamattomia muutoksia. Haluatko varmasti poistua?"
+ },
+ "learn_more": "Lisätietoja"
+ },
+ "core": {
+ "caption": "Yleinen",
+ "description": "Muuta Home Assistantin yleisiä asetuksiasi",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Valuutta",
+ "edit_requires_storage": "Editori on poistettu käytöstä, koska asetuksia on annettu configuration.yaml:ssa.",
+ "elevation": "Korkeus merenpinnasta",
+ "elevation_meters": "metriä",
+ "external_url": "Ulkoinen URL-osoite",
+ "find_currency_value": "Etsi arvosi",
+ "imperial_example": "Fahrenheit, paunaa",
+ "internal_url": "Sisäinen URL-osoite",
+ "latitude": "Leveysaste",
+ "location_name": "Home Assistant -järjestelmäsi nimi",
+ "longitude": "Pituusaste",
+ "metric_example": "Celsius, kilogrammat",
+ "save_button": "Tallenna",
+ "time_zone": "Aikavyöhyke",
+ "unit_system": "Yksikköjärjestelmä",
+ "unit_system_imperial": "Brittiläinen yksikköjärjestelmä",
+ "unit_system_metric": "Kansainvälinen yksikköjärjestelmä"
+ },
+ "header": "Yleiset asetukset",
+ "introduction": "Tiedämme, että asetusten muuttaminen saattaa olla työlästä. Täältä löydät työkaluja, jotka toivottavasti helpottavat elämääsi."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Seuraavat määritteet on jo määritetty customize.yaml-tiedostossa.",
+ "attributes_not_set": "Seuraavia määritteitä ei määritetty. Aseta ne, jos haluat.",
+ "attributes_outside": "Seuraavat attribuutit on räätälöity customize.yaml-tiedoston ulkopuolella.",
+ "attributes_override": "Voit yliajaa ne, jos haluat.",
+ "attributes_set": "Seuraavat kohteet määritteet asetetaan ohjelmallisesti.",
+ "caption": "Muokkaukset",
+ "description": "Muokkaa laitteita",
+ "different_include": "Mahdollisesti verkkotunnuksen, glob-kaavan tai muun sisällön kautta.",
+ "pick_attribute": "Valitse yliajettava määrite",
+ "picker": {
+ "documentation": "Mukautusten dokumentaatio",
+ "header": "Räätälöinti",
+ "introduction": "Muotoile ominaisuuksia olemuskohtaisesti. Lisäykset/muokkaukset tulevat välittömästi voimaan. Poistetut mukautukset tulevat voimaan, kun olemus päivitetään."
+ },
+ "warning": {
+ "include_link": "sisällytä customize.yaml",
+ "include_sentence": "Näyttää siltä, että configuration.yaml ei oikein",
+ "not_applied": "Täällä tehdyt muutokset on kirjoitettu siihen, mutta niitä ei sovelleta kokoonpanon uudelleenlatauksen jälkeen, ellei niitä oteta käyttöön."
+ }
+ },
+ "dashboard": {
+ "blueprints": {
+ "description": "Yhteisön luomat valmiit automaatiot ja skriptit",
+ "title": "Piirustukset"
+ },
+ "companion": {
+ "description": "Sijainti ja ilmoitukset",
+ "title": "Oheissovellus"
+ },
+ "dashboards": {
+ "description": "Luo räätälöityjä korttisarjoja kotisi hallintaan",
+ "title": "Kojelaudat"
+ },
+ "devices": {
+ "description": "Integraatiot, laitteet, yksiköt ja alueet",
+ "title": "Laitteet ja palvelut"
+ },
+ "energy": {
+ "description": "Seuraa energiantuotantoasi ja -kulutustasi",
+ "title": "Energia"
+ },
+ "people": {
+ "description": "Hallitse ihmisiä ja alueita, joita Home Assistant seuraa",
+ "title": "Henkilöt ja alueet"
+ },
+ "settings": {
+ "description": "Perusasetukset, palvelimen hallinta, lokit ja tiedot",
+ "title": "Asetukset"
+ },
+ "supervisor": {
+ "description": "Luo varmuuskopioita, tarkista loki tai käynnistä järjestelmä uudelleen",
+ "title": "Lisäosat, varmuuskopiot ja Supervisor"
+ },
+ "tags": {
+ "description": "Käynnistä automaatioita, kun NFC-tunniste, QR-koodi jne. skannataan",
+ "title": "Tunnisteet"
+ }
+ },
+ "devices": {
+ "add_prompt": "Kohdetta {name} ei ole vielä lisätty tällä laitteella. Voit lisätä yhden napsauttamalla yllä olevaa + -painiketta.",
+ "automation": {
+ "actions": {
+ "caption": "Kun jokin laukeaa…",
+ "no_actions": "Ei toimintoja",
+ "unknown_action": "Tuntematon toiminto"
+ },
+ "automations": "Automaatiot",
+ "conditions": {
+ "caption": "Tee jotain vain, jos…",
+ "no_conditions": "Ei ehtoja",
+ "unknown_condition": "Tuntematon ehto"
+ },
+ "create": "Luo automaatio laitteella",
+ "create_disable": "Automaatiota ei voi luoda käytöstä poistetulle laitteelle",
+ "no_automations": "Ei automaatioita",
+ "no_device_automations": "Tälle laitteelle ei ole käytettävissä automaatioita.",
+ "triggers": {
+ "caption": "Tee jotain kun...",
+ "no_triggers": "Ei laukaisuehtoja",
+ "unknown_trigger": "Tuntematon laukaisuehto"
+ },
+ "unknown_automation": "Tuntematon automaatio"
+ },
+ "cant_edit": "Voit muokata vain käyttöliittymässä luotuja kohteita.",
+ "caption": "Laitteet",
+ "confirm_delete": "Haluatko varmasti poistaa tämän laitteen?",
+ "confirm_disable_config_entry": "{entry_name} ei ole enää laitteita. Haluatko poistaa määritysmerkinnän käytöstä?",
+ "confirm_rename_entity_ids": "Haluatko myös nimetä kohteiden ID:t uudelleen?",
+ "confirm_rename_entity_ids_warning": "Tämä ei muuta mitään määrityksiä (kuten automaatiot, skriptit, tilanteet, kojelaudat), jotka käyttävät tällä hetkellä entiteettejä! Sinun on päivitettävä ne itse käyttääksesi uusia entiteettitunnuksia!",
+ "data_table": {
+ "area": "Alue",
+ "battery": "Akku",
+ "device": "Laite",
+ "integration": "Integraatio",
+ "manufacturer": "Valmistaja",
+ "model": "Malli",
+ "no_devices": "Ei laitteita",
+ "no_integration": "Ei integraatiota"
+ },
+ "delete": "Poista",
+ "description": "Hallitse yhdistettyjä laitteita.",
+ "device_info": "Laitteen tiedot",
+ "device_not_found": "Laitetta ei löydy.",
+ "disabled": "Poistettu käytöstä",
+ "disabled_by": {
+ "config_entry": "Asetus",
+ "integration": "Integraatio",
+ "user": "Käyttäjä"
+ },
+ "edit_settings": "Muokkaa asetuksia",
+ "enabled_cause": "{cause} on poistanut laitteen käytöstä.",
+ "enabled_description": "Poistettuja laitteita ei näytetä, ja laitteeseen kuuluvat entiteetit poistetaan käytöstä, eikä niitä lisätä Home Assistantiin.",
+ "enabled_label": "Ota laite käyttöön",
+ "entities": {
+ "add_entities_lovelace": "Lisää Lovelace näkymään",
+ "config": "Asetukset",
+ "control": "Säätimet",
+ "diagnostic": "Diagnostiikka",
+ "disabled_entities": "{count} {count, plural,\n one {kohde}\n other {kohdetta}\n}",
+ "entities": "Kohteet",
+ "hide_disabled": "Piilota käytöstä poistetut",
+ "none": "Tällä laitteella ei ole kohteita",
+ "sensor": "Anturit",
+ "state": "Tila"
+ },
+ "name": "Nimi",
+ "no_devices": "Ei laitteita",
+ "open_configuration_url_device": "Laite",
+ "open_configuration_url_service": "Palvelu",
+ "picker": {
+ "filter": {
+ "filter": "Suodatin",
+ "hidden_devices": "{number} {number, plural,\n one {piilotettu laite}\n other {piilotettua laitetta}\n}",
+ "show_all": "Näytä kaikki",
+ "show_disabled": "Näytä käytöstä poistetut laitteet"
+ },
+ "search": "Etsi laitteita"
+ },
+ "scene": {
+ "create": "Luo tilanne laitteella",
+ "create_disable": "Tilannetta ei voi luoda käytöstä poistetulle laitteelle",
+ "no_scenes": "Ei tilanteita",
+ "scenes": "Tilanteet"
+ },
+ "scenes": "Tilanteet",
+ "script": {
+ "create": "Luo tilanne laitteella",
+ "create_disable": "Skriptiä ei voi luoda käytöstä poistetulle laitteelle",
+ "no_scripts": "Ei skriptejä",
+ "scripts": "Skriptit"
+ },
+ "scripts": "Skriptit",
+ "unknown_error": "Tuntematon virhe",
+ "unnamed_device": "Nimeämätön laite",
+ "update": "Päivitä",
+ "update_device_error": "Laitteen päivittäminen epäonnistui"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Lisää akkujärjestelmä",
+ "battery_systems": "Akkujärjestelmät",
+ "dialog": {
+ "energy_into_battery": "Akkuun menevä energia (kWh)",
+ "energy_out_of_battery": "Akusta tuleva energia (kWh)",
+ "header": "Määritä akkujärjestelmä"
+ },
+ "learn_more": "Lisätietoja siitä, miten pääset alkuun.",
+ "sub": "Jos sinulla on akkujärjestelmä, voit määrittää sen valvomaan, kuinka paljon energiaa akkuun on varastoitu ja paljonko käytetty.",
+ "title": "Kodin akku"
+ },
+ "caption": "Energia",
+ "delete_integration": "Haluatko varmasti poistaa tämän integroinnin? Se poistaa sen tarjoamat entiteetit",
+ "delete_source": "Haluatko varmasti poistaa tämän lähteen?",
+ "description": "Seuraa energiantuotantoasi ja -kulutustasi",
+ "device_consumption": {
+ "add_device": "Lisää laite",
+ "add_stat": "Valitse entiteetti, jonka energiaa seurataan",
+ "devices": "Laitteet",
+ "dialog": {
+ "device_consumption_energy": "Laitteen kulutusenergia (kWh)",
+ "header": "Lisää laite",
+ "selected_stat_intro": "Valitse entiteetti, joka edustaa laitteen energiankäyttöä."
+ },
+ "learn_more": "Lisätietoja siitä, miten pääset alkuun.",
+ "selected_stat": "Seurataan energiaa kohteelle",
+ "sub": "Yksittäisten laitteiden energiankäytön seuranta antaa Home Assistantille mahdollisuuden jakaa energiankulutuksesi laitteittain.",
+ "title": "Yksittäiset laitteet"
+ },
+ "gas": {
+ "add_gas_source": "Lisää kaasulähde",
+ "dialog": {
+ "cost_entity": "Käytä nykyisen hinnan sisältävää entiteettiä",
+ "cost_entity_input": "Nykyisen hinnan per {unit} entiteetti",
+ "cost_number": "Käytä staattista hintaa",
+ "cost_number_input": "Hinta per {unit}",
+ "cost_number_suffix": "{currency}/m³",
+ "cost_para": "Valitse, miten Home Assistant pitää kirjaa kulutetun energian kustannuksista.",
+ "cost_stat": "Käytä kokonaiskustannuksia seuraavaa entiteettiä",
+ "cost_stat_input": "Kokonaiskustannusentiteetti",
+ "energy_stat": "Kulutettu energia (m³)",
+ "gas_usage": "Kaasun käyttö",
+ "header": "Määritä kaasun kulutus",
+ "m3_or_kWh": "ft³, m³, Wh, kWh tai MWh",
+ "no_cost": "Älä seuraa kustannuksia",
+ "paragraph": "Kaasunkulutus on kotiisi virtaavan kaasun määrä."
+ },
+ "gas_consumption": "Kaasun kulutus",
+ "learn_more": "Lisätietoja siitä, miten pääset alkuun.",
+ "sub": "Anna Home Assistantin seurata kaasun käyttöäsi.",
+ "title": "Kaasun kulutus"
+ },
+ "grid": {
+ "add_co2_signal": "Lisää CO2 -signaalin integrointi",
+ "add_consumption": "Lisää kulutus",
+ "add_return": "Lisää palautus",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Käytä nykyisen hinnan sisältävää entiteettiä",
+ "cost_entity_input": "Nykyisen hinnan entiteetti",
+ "cost_number": "Käytä staattista hintaa",
+ "cost_number_input": "Hinta/kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Valitse, miten Home Assistant pitää kirjaa kulutetun energian kustannuksista.",
+ "cost_stat": "Käytä kokonaiskustannuksia seuraavaa entiteettiä",
+ "cost_stat_input": "Kokonaiskustannuksia seuraava entiteetti",
+ "energy_stat": "Kulutettu energia (kWh)",
+ "header": "Määritä verkon kulutus",
+ "no_cost": "Älä seuraa kustannuksia",
+ "paragraph": "Verkon kulutus on energiaa, joka virtaa sähköverkosta kotiisi."
+ },
+ "to": {
+ "cost_entity": "Käytä nykyisen hinnan sisältävää entiteettiä",
+ "cost_entity_input": "Nykyisen hinnan entiteetti",
+ "cost_number": "Käytä kiinteää hintaa",
+ "cost_number_input": "Hinta/kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Saatko rahaa takaisin, kun palautat energiaa verkkoon?",
+ "cost_stat": "Käytä kokonaistuottoa seuraavaa entiteettiä",
+ "cost_stat_input": "Kokonaiskorvausyksikkö",
+ "energy_stat": "Verkkoon palautettu energia (kWh)",
+ "header": "Määritä verkkotuotanto",
+ "no_cost": "En saa rahaa takaisin",
+ "paragraph": "Verkkotuotanto on energiaa, joka virtaa aurinkopaneeleistasi verkkoon."
+ }
+ },
+ "grid_carbon_footprint": "Verkon hiilijalanjälki",
+ "grid_consumption": "Verkon kulutus",
+ "learn_more": "Lisätietoja siitä, miten pääset alkuun.",
+ "return_to_grid": "Verkkoon palautettu energia (kWh)",
+ "sub": "Määritä energian määrä, jonka kulutat verkosta ja jos tuotat energiaa, anna takaisin verkkoon. Näin Home Assistant voi seurata koko kotisi energiankäyttöä.",
+ "title": "Sähköverkko"
+ },
+ "new_device_info": "Uuden laitteen määrittämisen jälkeen voi kestää jopa 2 tuntia, ennen kuin uudet tiedot saapuvat energian hallintapaneeliin.",
+ "solar": {
+ "add_solar_production": "Lisää aurinkoenergian tuotanto",
+ "dialog": {
+ "add_forecast": "Lisää ennuste",
+ "dont_forecast_production": "Älä ennusta tuotantoa",
+ "forecast_production": "Ennustetuotanto",
+ "header": "Määritä aurinkopaneelit",
+ "solar_production_energy": "Aurinkoenergian tuotanto",
+ "solar_production_forecast": "Aurinkoenergian tuotantoennuste",
+ "solar_production_forecast_description": "Lisäämällä aurinkoenergian tuotantoennustetiedot voit nopeasti nähdä tämän päivän odotetun tuotannon."
+ },
+ "learn_more": "Lisätietoja siitä, miten pääset alkuun.",
+ "solar_production": "Aurinkoenergian tuotanto",
+ "stat_predicted_production": "Ennuste aurinkoenergian tuotannostasi",
+ "stat_production": "Aurinkoenergian tuotantosi",
+ "stat_return_to_grid": "Verkkoon palautettu aurinkoenergia",
+ "sub": "Anna Home Assistantin monitoroida aurinkopaneelejasi ja antaa sinulle tietoa niiden suorituskyvystä.",
+ "title": "Aurinkopaneelit"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "Seuraavilla yksiköillä on negatiivinen tila, kun taas odotetaan positiivista tilaa:",
+ "title": "Kohteella on negatiivinen tila"
+ },
+ "entity_not_defined": {
+ "description": "Tarkista integrointi tai kokoonpano, joka tarjoaa:",
+ "title": "Kohdetta ei määritetty"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "Seuraavilla kohteilla on tilaluokka 'mittaus', mutta 'viimeinen palautus' puuttuu:",
+ "title": "Viimeisin nollaus puuttuu"
+ },
+ "entity_state_non_numeric": {
+ "description": "Seuraavilla entiteeteillä on tila, jota ei voida jäsentää numerona:",
+ "title": "Kohteella on ei-numeerinen tilaa"
+ },
+ "entity_unavailable": {
+ "description": "Näiden määritettyjen entiteettien tila ei ole tällä hetkellä saatavilla:",
+ "title": "Kohde ei saatavilla"
+ },
+ "entity_unexpected_device_class": {
+ "description": "Seuraavilla kohteilla ei ole odotettua laiteluokkaa",
+ "title": "Odottamaton laiteluokka"
+ },
+ "entity_unexpected_state_class": {
+ "description": "Seuraavilla kohteilla ei ole odotettua tilaluokkaa:",
+ "title": "Odottamaton tilaluokka"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "Seuraavilla entiteeteillä ei ole odotettua tilaluokkaa 'total_increasing'",
+ "title": "Odottamaton tilaluokka"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "Seuraavilla kohteilla ei ole odotettuja mittayksiköitä 'kWh' tai 'Wh':",
+ "title": "Odottamaton mittayksikkö"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "Seuraavilla entiteeteillä ei ole odotettuja mittayksiköitä ''{currency}/kWh'', ''{currency}/Wh'' tai ''{currency}/MWh'':",
+ "title": "Odottamaton mittayksikkö"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "Seuraavilla entiteeteillä ei ole odotettuja mittayksiköitä 'Wh', 'kWh' tai 'MWh' energia-anturille tai 'm³' tai 'ft³' kaasuanturille:",
+ "title": "Odottamaton mittayksikkö"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "Seuraavilla entiteeteillä ei ole odotettuja mittayksiköitä ''{currency}/kWh'', ''{currency}/Wh'', ''{currency}/MWh'', ''{currency}/m³'' tai ''{currency}/ft³'':",
+ "title": "Odottamaton mittayksikkö"
+ },
+ "recorder_untracked": {
+ "description": "Tallennin on määritetty jättämään pois seuraavat määritetyt entiteetit:",
+ "title": "Kohdetta ei seurata"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Kohteet",
+ "description": "Hallitse kohteita",
+ "picker": {
+ "disable_selected": {
+ "button": "Poista valitut käytöstä",
+ "confirm_text": "Käytöstä poistettuja kohteita ei lisätä Home Assistantiin.",
+ "confirm_title": "Haluatko poistaa käytöstä {number} {number, plural,\n one {entiteetin}\n other {entiteettiä}\n}?"
+ },
+ "enable_selected": {
+ "button": "Ota valitut käyttöön",
+ "confirm_text": "Tämä tekee ne saataville Home Assistantissa, jos ne ovat nyt poistettu käytöstä.",
+ "confirm_title": "Haluatko ottaa {number} {number, plural,\n one {entiteetin}\n other {entiteettiä}\n} käyttöön?"
+ },
+ "filter": {
+ "filter": "Suodatin",
+ "hidden_entities": "{number} {number, plural,\n one {piilotettu entiteetti}\n other {piilotettua entiteettiä}\n}",
+ "show_all": "Näytä kaikki",
+ "show_disabled": "Näytä käytöstä poistetut kohteet",
+ "show_readonly": "Näytä vain luku -kohteet",
+ "show_unavailable": "Näytä ei-käytettävissä olevat kohteet"
+ },
+ "header": "Kohteet",
+ "headers": {
+ "area": "Alue",
+ "disabled_by": "{cause} poistanut käytöstä",
+ "entity_id": "Kohde ID",
+ "integration": "Integraatio",
+ "name": "Nimi",
+ "status": "Tila"
+ },
+ "introduction": "Home Assistant pitää rekisteriä jokaisesta havaitetusta olemuksesta, joka voidaan yksilöidä. Kullekin näille yksiköille määritetään olemus-ID, varattu juuri tälle yksikölle.",
+ "introduction2": "Kohderekisterin avulla voit yliajaa nimen, muuttaa sen ID-tunnusta tai poistaa sen Home Assistantista. Huomaa, että rekisterimerkinnän poistaminen ei poista kohdetta.",
+ "remove_selected": {
+ "button": "Poista valitut",
+ "confirm_partly_text": "Voit poistaa vain {removable} valittujen {selected} entiteetin. Entiteetit voidaan poistaa vain, jos integraatio ei enää tarjoa entiteettejä. Joskus Home Assistant on käynnistettävä uudelleen, ennen kuin voit poistaa poistetun integroinnin entiteetit. Haluatko varmasti poistaa siirrettävät entiteetit?",
+ "confirm_partly_title": "Vain {number} {number, plural,\n one {valittu entiteetti}\n other {valittua entiteettiä}\n} voidaan poistaa.",
+ "confirm_text": "Sinun tulisi poistaa ne Lovelace-käyttöliittymästä ja automaatioista, jos ne sisältävät näitä kohteita.",
+ "confirm_title": "Haluatko poistaa {number} {number, plural,\n one {entiteetin}\n other {entiteettiä}\n}?"
+ },
+ "search": "Hae kohteita",
+ "selected": "{number} valittuna",
+ "status": {
+ "disabled": "Poistettu käytöstä",
+ "ok": "Ok",
+ "readonly": "Vain luku -tilassa",
+ "restored": "Palautettu",
+ "unavailable": "Ei saatavissa"
+ }
+ }
+ },
+ "header": "Säädä Home Assistantia",
+ "helpers": {
+ "caption": "Auttajat",
+ "description": "Elementit, jotka voivat auttaa rakentamaan automaatioita.",
+ "dialog": {
+ "add_helper": "Lisää auttaja",
+ "add_platform": "Lisää {platform}",
+ "create": "Luo"
+ },
+ "picker": {
+ "add_helper": "Lisää auttaja",
+ "headers": {
+ "editable": "Muokattavissa",
+ "entity_id": "Kohde ID",
+ "name": "Nimi",
+ "type": "Tyyppi"
+ },
+ "no_helpers": "Näyttää siltä, että sinulla ei ole vielä avustajia!"
+ },
+ "types": {
+ "counter": "Laskuri",
+ "input_boolean": "Kytkin",
+ "input_button": "Painike",
+ "input_datetime": "Päivämäärä ja/tai kellonaika",
+ "input_number": "Numero",
+ "input_select": "Alasvetovalikko",
+ "input_text": "Teksti",
+ "timer": "Ajastin"
+ }
+ },
+ "info": {
+ "built_using": "Rakennettu käyttäen",
+ "caption": "Tiedot",
+ "copy_github": "GitHubille",
+ "copy_menu": "Kopioi valikko",
+ "copy_raw": "Raaka teksti",
+ "custom_uis": "Mukautetut käyttöliittymät:",
+ "description": "Tietoja Home Assistant -asennuksesta",
+ "developed_by": "Kehittänyt joukko mahtavia ihmisiä.",
+ "documentation": "Dokumentointi",
+ "frontend": "frontend-ui",
+ "frontend_version": "Käyttöliittymän versio: {version} - {type}",
+ "home_assistant_logo": "Home Assistant-logo",
+ "icons_by": "Kuvakkeet luonut",
+ "integrations": "Integraatiot",
+ "issues": "Ongelmat",
+ "license": "Julkaistu Apache 2.0-lisenssillä",
+ "path_configuration": "Polku configuration.yaml-tiedostoon: {path}",
+ "server": "palvelin",
+ "setup_time": "Asennusaika",
+ "source": "Lähde:",
+ "system_health": {
+ "manage": "Hallitse",
+ "more_info": "lisätietoja"
+ },
+ "system_health_error": "Järjestelmän kunto-komponenttia ei ole ladattu. Lisää 'system_health:' kohteeseen configuration.yaml"
+ },
+ "integrations": {
+ "add_integration": "Lisää integraatio",
+ "attention": "Huomiota tarvitaan",
+ "caption": "Integraatiot",
+ "config_entry": {
+ "area": "Alueessa {area}",
+ "check_the_logs": "Tarkista lokitiedot",
+ "configure": "Määrittele",
+ "delete": "Poista",
+ "delete_confirm": "Haluatko varmasti poistaa tämän integraation?",
+ "depends_on_cloud": "Riippuu pilvestä",
+ "device_unavailable": "laite ei saatavissa",
+ "devices": "{count} {count, plural,\n one {laite}\n other {laitteet}\n}",
+ "disable": {
+ "disable_confirm": "Haluatko varmasti poistaa tämän asetusten osan käytöstä? Sen laitteet ja entiteetit poistetaan käytöstä.",
+ "disabled": "Poistettu käytöstä",
+ "disabled_by": {
+ "device": "Laite",
+ "integration": "Integraatio",
+ "user": "Käyttäjä"
+ },
+ "disabled_cause": "{cause} poistanut käytöstä"
+ },
+ "disable_error": "Integraation ottaminen käyttöön tai poistaminen käytöstä epäonnistui",
+ "disable_restart_confirm": "Viimeistele tämän integraation käytöstä poisto käynnistämällä Home Assistant uudelleen",
+ "disabled_polling": "Päivitettyjen tietojen automaattinen kysely pois käytöstä",
+ "documentation": "Dokumentointi",
+ "enable_restart_confirm": "Viimeistele tämän integraation käyttöönotto käynnistämällä Home Assistant uudelleen",
+ "entities": "{count} {count, plural,\n one {kohde}\n other {kohdetta}\n}",
+ "entity_unavailable": "Kohde ei saatavilla",
+ "firmware": "Laiteohjelmisto: {version}",
+ "hardware": "Laitteisto",
+ "hub": "Yhdistetty kautta",
+ "known_issues": "Tunnetut ongelmat",
+ "manuf": "{manufacturer}",
+ "no_area": "Ei aluetta",
+ "not_loaded": "Ei ladattu",
+ "open_configuration_url": "Vieraile laitteella",
+ "provided_by_custom_integration": "Mukautetun integraation tarjoama",
+ "reload": "Lataa uudelleen",
+ "reload_confirm": "Integraatio ladattiin uudelleen",
+ "reload_restart_confirm": "Käynnistä Home Assistant uudelleen viimeistelläksesi tämän integraation uudelleenlataamisen",
+ "rename": "Nimeä uudelleen",
+ "restart_confirm": "Käynnistä Home Assistant uudellen viimeistelläksesi tämän integraation poistamisen",
+ "services": "{count} {count, plural,\n one {palvelu}\n other {palvelua}\n}",
+ "state": {
+ "failed_unload": "Purkaminen epäonnistui",
+ "loaded": "Ladattu",
+ "migration_error": "Migraatiovirhe",
+ "not_loaded": "Ei ladattu",
+ "setup_error": "Määrittäminen epäonnistui",
+ "setup_retry": "Yritetään asetuksia uudelleen"
+ },
+ "system_options": "Järjestelmäasetukset",
+ "unknown_via_device": "Tuntematon laite",
+ "unnamed_entry": "Nimeämätön merkintä",
+ "via": "Yhdistetty"
+ },
+ "config_flow": {
+ "aborted": "Keskeytetty",
+ "close": "Sulje",
+ "could_not_load": "Määritystyönkulkua ei voitu ladata",
+ "created_config": "Asetus luotu {name}",
+ "dismiss": "Sulje ikkuna",
+ "error": "Virhe",
+ "error_saving_area": "Virhe tallennettaessa aluetta: {error}",
+ "external_step": {
+ "description": "Tämä vaihe edellyttää, että vierailet ulkopuolisella verkkosivustolla.",
+ "open_site": "Avaa verkkosivusto"
+ },
+ "finish": "Valmis",
+ "loading": {
+ "fallback_title": "integraatio",
+ "loading_flow": "Odota, kun {integration} määritetään",
+ "loading_step": "Ladataan seuraavaa vaihetta {integration}"
+ },
+ "next": "Seuraava",
+ "not_all_required_fields": "Täytä kaikki pakolliset kentät.",
+ "not_loaded": "Integraatiota ei voitu ladata. Yritä käynnistää Home Assistant uudelleen.",
+ "pick_flow_step": {
+ "new_flow": "Ei, määritä toinen {integration}-esiintymä",
+ "title": "Löysimme nämä, haluatko määrittää ne?"
+ },
+ "submit": "Lähetä"
+ },
+ "configure": "Määrittele",
+ "configured": "Määritetty",
+ "confirm_new": "Haluatko määrittää {integration}?",
+ "description": "Hallitse liitettyjä laitteita ja palveluita",
+ "details": "Integroinnin yksityiskohdat",
+ "disable": {
+ "disabled_integrations": "{number} poistettu käytöstä",
+ "show": "Näytä",
+ "show_disabled": "Näytä käytöstä poistetut integraatiot"
+ },
+ "discovered": "Löydetty",
+ "home_assistant_website": "Home Assistantin verkkosivulta",
+ "ignore": {
+ "confirm_delete_ignore": "Tämä saa integroinnin näkymään löydetyissä integroinneissa uudelleen, kun se löydetään. Tämä saattaa vaatia uudelleenkäynnistyksen tai kestää jonkin aikaa.",
+ "confirm_delete_ignore_title": "Lopeta integraation {name} ohittaminen?",
+ "confirm_ignore": "Haluatko varmasti jättää tämän integraation määrittämättä? Voit kumota tämän napsauttamalla oikean yläkulman valikosta \"Näytä ohitetut integraatiot\".",
+ "confirm_ignore_title": "Ohitetaanko kohteen {name} etsintä?",
+ "ignore": "Ohita",
+ "ignored": "Ohitettu",
+ "show_ignored": "Näytä ohitetut integraatiot",
+ "stop_ignore": "Lopeta ohittaminen"
+ },
+ "integration": "integraatio",
+ "integration_not_found": "Integraatiota ei löydy.",
+ "new": "Määritä uusi integraatio",
+ "no_integrations": "Näyttää ettei yhtään integraatiota ole määritetty. Lisää ensimmäinen integraatio klikkaamalla painiketta alhaalta!",
+ "none": "Mitään ei ole vielä määritetty",
+ "none_found": "Integraatioita ei löytynyt",
+ "none_found_detail": "Muokkaa haku ehtojasi",
+ "note_about_integrations": "Kaikkia integraatioita ei voi vielä määrittää käyttöliittymän kautta.",
+ "note_about_website_reference": "Lisää saatavilla ",
+ "reconfigure": "Määritä uudelleen",
+ "rename_dialog": "Muokkaa tämän määritysmerkinnän nimeä",
+ "rename_input_label": "Merkinnän nimi",
+ "search": "Etsi integraatioita"
+ },
+ "introduction": "Täällä voit säätää Home Assistanttia ja sen komponentteja. Huomioithan, ettei kaikkea voi vielä säätää käyttöliittymän kautta, mutta teemme jatkuvasti töitä sen mahdollistamiseksi.",
+ "logs": {
+ "caption": "Lokit",
+ "clear": "Tyhjennä",
+ "copy": "Kopioi lokimerkintä",
+ "custom_integration": "mukautettu integraatio",
+ "description": "Tarkastele Home Assistant -lokeja",
+ "details": "Lokitiedot ( {level} )",
+ "error_from_custom_integration": "Tämä virhe on peräisin mukautetusta integroinnista.",
+ "level": {
+ "critical": "KRIITTINEN",
+ "debug": "DEBUG",
+ "error": "VIRHE",
+ "info": "TIEDOT",
+ "warning": "VAROITUS"
+ },
+ "load_full_log": "Lataa Home Assistantin koko loki",
+ "loading_log": "Ladataan virhelokia...",
+ "multiple_messages": "Viesti esiintyi ensimmäisen kerran {time} ja tämän jälkeen {counter} kertaa",
+ "no_errors": "Virheitä ei ole ilmoitettu.",
+ "no_issues": "Ei uusia aiheita!",
+ "refresh": "Päivitä"
+ },
+ "lovelace": {
+ "caption": "Lovelace-kojelaudat",
+ "dashboards": {
+ "cant_edit_default": "Lovelace-koontinäyttöä ei voi muokata käyttöliittymästä. Voit piilottaa sen määrittämällä toisen koontinäytön oletukseksi.",
+ "cant_edit_yaml": "YAML-tiedostossa määritettyjä kojelautoja ei voi muokata käyttöliittymästä. Muuta niitä tiedostossa configuration.yaml.",
+ "caption": "Kojelaudat",
+ "conf_mode": {
+ "storage": "Käyttöliittymäohjattu",
+ "yaml": "YAML tiedosto"
+ },
+ "confirm_delete": "Haluatko varmasti poistaa tämän kojelaudan?",
+ "confirm_delete_text": "Kojelautasi poistetaan pysyvästi.",
+ "confirm_delete_title": "Poistetaanko {dashboard_title}?",
+ "default_dashboard": "Tämä on oletuskojelauta",
+ "detail": {
+ "create": "Luo",
+ "delete": "Poista",
+ "dismiss": "Sulje",
+ "edit_dashboard": "Muokkaa kojelautaa",
+ "icon": "Kuvake",
+ "new_dashboard": "Lisää uusi kojelauta",
+ "remove_default": "Poista oletuksena tässä laitteessa",
+ "require_admin": "Vain järjestelmänvalvoja",
+ "set_default": "Aseta oletukseksi tässä laitteessa",
+ "show_sidebar": "Näytä sivupalkissa",
+ "title": "Otsikko",
+ "title_required": "Otsikko vaaditaan.",
+ "update": "Päivitä",
+ "url": "URL",
+ "url_error_msg": "URL-osoitteen tulee sisältää - eikä se saa sisältää välilyöntejä tai erikoismerkkejä, paitsi _ ja -"
+ },
+ "picker": {
+ "add_dashboard": "Lisää kojelauta",
+ "headers": {
+ "conf_mode": "Asetusmenetelmä",
+ "default": "Oletus",
+ "filename": "Tiedoston nimi",
+ "require_admin": "Vain järjestelmänvalvoja",
+ "sidebar": "Näytä sivupalkissa",
+ "title": "Otsikko"
+ },
+ "open": "Avaa"
+ }
+ },
+ "description": "Määritä Lovelace-kojelaudat",
+ "resources": {
+ "cant_edit_yaml": "Käytät Lovelacea YAML-tilassa, joten et voi hallita resursseja käyttöliittymän kautta. Hallitse niitä tiedostossa configuration.yaml.",
+ "caption": "Resurssit",
+ "confirm_delete": "Haluatko varmasti poistaa tämän resurssin?",
+ "detail": {
+ "create": "Luo",
+ "delete": "Poista",
+ "dismiss": "Sulje",
+ "new_resource": "Lisää uusi resurssi",
+ "type": "Resurssin tyyppi",
+ "update": "Päivitä",
+ "url": "URL",
+ "url_error_msg": "URL on pakollinen kenttä",
+ "warning_header": "Ole varovainen!",
+ "warning_text": "Resurssien lisääminen voi olla vaarallista. Varmista, että tiedät resurssin lähteen ja luotat niihin. Huonot resurssit voivat vahingoittaa järjestelmääsi vakavasti."
+ },
+ "picker": {
+ "add_resource": "Lisää resurssi",
+ "headers": {
+ "type": "Tyyppi",
+ "url": "URL"
+ },
+ "no_resources": "Ei resursseja"
+ },
+ "refresh_body": "Sinun on päivitettävä sivu suorittaaksesi poisto loppuun. Haluatko päivittää nyt?",
+ "refresh_header": "Haluatko päivittää?",
+ "types": {
+ "css": "Tyylitiedosto",
+ "html": "HTML (vanhentunut)",
+ "js": "JavaScript-tiedosto (vanhentunut)",
+ "module": "JavaScript-moduuli"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Kuuntele aihetta",
+ "description_publish": "Julkaise paketti",
+ "listening_to": "Kuunnellaan",
+ "message_received": "Viesti {id} vastaanotettu aiheessa {topic} {time}:",
+ "payload": "Tietosisältö (malli sallittu)",
+ "publish": "Julkaise",
+ "start_listening": "Aloita kuuntelu",
+ "stop_listening": "Lopeta kuuntelu",
+ "subscribe_to": "Tilaa aihe",
+ "title": "MQTT",
+ "topic": "aihe"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Ohjain",
+ "instance": "Instanssi",
+ "network": "Verkko",
+ "node_id": "Solmun tunnus",
+ "ozw_instance": "OpenZWave-instanssi",
+ "query_stage": "Kyselyn vaihe",
+ "wakeup_instructions": "Herätysohjeet",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Solmu epäonnistui",
+ "stage": "Vaihe",
+ "zwave_info": "Z-Wave-tiedot"
+ },
+ "navigation": {
+ "network": "Verkko",
+ "node": {
+ "config": "Asetus",
+ "dashboard": "Kojelauta"
+ },
+ "nodes": "Solmut",
+ "select_instance": "Valitse instanssi"
+ },
+ "network": {
+ "header": "Verkon hallinta",
+ "introduction": "Hallitse verkon laajuisia toimintoja.",
+ "node_count": "{count} solmua"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "Kaikkia solmuja on kysytty",
+ "driverallnodesqueriedsomedead": "Kaikkia solmuja on kysytty. Osa solmuista kuolleita",
+ "driverawakenodesqueries": "Kaikkia hereillä olevia solmuja on kysytty",
+ "driverfailed": "Yhteyden muodostaminen Z-Wave-ohjaimeen epäonnistui",
+ "driverready": "Alustetaan Z-Wave-ohjain",
+ "driverremoved": "Ohjain on poistettu",
+ "driverreset": "Ohjain on nollattu",
+ "offline": "OZWDaemon offline-tilassa",
+ "ready": "Valmis yhdistämään",
+ "started": "Yhdistetty MQTT:hen",
+ "starting": "Yhdistetään MQTT:hen",
+ "stopped": "OpenZWave pysähtyi"
+ },
+ "offline": "Offline",
+ "online": "Online",
+ "starting": "Käynnistetään",
+ "unknown": "Tuntematon"
+ },
+ "node": {
+ "button": "Solmun tiedot",
+ "not_found": "Solmua ei löytynyt"
+ },
+ "node_config": {
+ "header": "Solmun määritys",
+ "help_source": "Config-parametrien kuvaukset ja ohjetekstit ovat OpenZWave-projektin toimittamia.",
+ "introduction": "Hallitse Z-Wave-solmun eri kokoonpanoparametreja.",
+ "wakeup_help": "Akkukäyttösten solmujen on oltava hereillä, jotta niiden kokoonpanoa voidaan muuttaa. Jos solmu ei ole hereillä, OpenZWave yrittää päivittää solmun kokoonpanon seuraavan herätyksen yhteydessä, mikä voi olla useita tunteja (tai päiviä) myöhemmin. Herätä laite seuraavasti:"
+ },
+ "node_metadata": {
+ "product_manual": "Tuotteen käyttöopas"
+ },
+ "node_query_stages": {
+ "associations": "Päivitetään yhdistysryhmiä ja jäsenyyksiä",
+ "cacheload": "Ladataan tietoja OpenZWave-välimuistitiedostosta. Akkukäyttöiset solmut pysyvät tässä vaiheessa, kunnes solmu herää.",
+ "complete": "Haastatteluprosessi on valmis",
+ "configuration": "Noudetaan solmun määritysarvot",
+ "dynamic": "Noudetaan solmun usein muuttuvat arvot",
+ "instances": "Noudetaan lisätietoja, laitteen tukemista esiintymistä tai kanavista",
+ "manufacturerspecific1": "Noudetaan solmun valmistajan tiedot ja tuotetunnus",
+ "manufacturerspecific2": "Noudetaan solmun lisävalmistajan tiedot ja tuotetunnus",
+ "neighbors": "Noudetaan luettelo solmun naapureista",
+ "nodeinfo": "Noudetaan solmun tuetut komentoluokat",
+ "nodeplusinfo": "Noudetaan solmun Z-Wave+-tiedot",
+ "probe": "Tarkistetaan, onko solmu hereillä/elossa",
+ "protocolinfo": "Noudetaan tämän solmun Z-Wave-perusominaisuudet ohjaimelta",
+ "session": "Noudetaan solmun harvoin muuttuvat arvot",
+ "static": "Noudetaan staattiset arvot laitteesta",
+ "versions": "Noudetaan tiedot laiteohjelmistosta ja komentoluokan versioista",
+ "wakeup": "Asetetaan tuki herätysjonoille ja viesteille"
+ },
+ "nodes_table": {
+ "failed": "Epäonnistui",
+ "id": "ID",
+ "manufacturer": "Valmistaja",
+ "model": "Malli",
+ "query_stage": "Kyselyn vaihe",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Jos solmu on akkukäyttöinen, muista herättää se ennen jatkamista",
+ "button": "Päivitä solmu",
+ "complete": "Solmun päivitys valmis",
+ "description": "Tämä käskee OpenZWavea haastattelemaan solmun uudelleen ja päivittämään solmun komentoluokat, ominaisuudet ja arvot.",
+ "node_status": "Solmun tila",
+ "refreshing_description": "Päivitetään solmun tietoja…",
+ "start_refresh_button": "Aloita päivitys",
+ "step": "Askel",
+ "title": "Päivitä solmun tiedot",
+ "wakeup_header": "Herätysohjeet",
+ "wakeup_instructions_source": "Herätysohjeet ovat peräisin OpenZWave-yhteisölaitetietokannasta."
+ },
+ "select_instance": {
+ "header": "Valitse OpenZWave",
+ "introduction": "Käynnissä on useita OpenZWave-esiintymiä. Mitä esiintymää haluat hallita?",
+ "none_found": "Emme löytäneet OpenZWave-esiintymää. Jos uskot, että tämä on väärin, tarkista OpenZWave- ja MQTT-asetukset ja varmista, että Home Assistant voi kommunikoida MQTT-välittäjäsi kanssa."
+ },
+ "services": {
+ "add_node": "Lisää solmu",
+ "cancel_command": "Peruuta komento",
+ "remove_node": "Poista solmu"
+ }
+ },
+ "person": {
+ "add_person": "Lisää henkilö",
+ "caption": "Henkilöt",
+ "confirm_delete": "Haluatko varmasti poistaa tämän henkilön?",
+ "confirm_delete2": "Tälle henkilölle kuuluvien laitteiden osoitus poistetaan.",
+ "create_person": "Luo henkilö",
+ "description": "Hallitse henkilöitä, joita Home Assistant seuraa",
+ "detail": {
+ "admin": "Järjestelmänvalvoja",
+ "allow_login": "Salli henkilön kirjautua sisään",
+ "confirm_delete_user": "Haluatko varmasti poistaa käyttäjän {name}? Voit edelleen seurata käyttäjää, mutta henkilö ei voi enää kirjautua sisään.",
+ "create": "Luo",
+ "delete": "Poista",
+ "device_tracker_intro": "Valitse tälle henkilölle kuuluvat laitteet.",
+ "device_tracker_pick": "Valitse seurattava laite",
+ "device_tracker_picked": "Seuraa laitetta",
+ "link_integrations_page": "Integraatiot",
+ "link_presence_detection_integrations": "Läsnäolon tunnistusintegraatiot",
+ "linked_user": "Yhdsitetty käyttäjä",
+ "local_only": "Voi kirjautua vain paikallisverkosta",
+ "name": "Nimi",
+ "name_error_msg": "Nimi on pakollinen",
+ "new_person": "Uusi Henkilö",
+ "no_device_tracker_available_intro": "Kun sinulla on laitteita, jotka ilmaisevat henkilön läsnäolon, voit kohdistaa ne henkilöön täällä. Voit lisätä ensimmäisen laitteen lisäämällä läsnäolon tunnistusintegraation sivulta.",
+ "update": "Päivitä"
+ },
+ "introduction": "Täällä voit määritellä jokaisen kiinnostavan henkilön Home Assistantissa.",
+ "learn_more": "Lisätietoja henkilöistä",
+ "no_persons_created_yet": "Näyttää siltä, ettet ole vielä luonut yhtään henkilöä.",
+ "note_about_persons_configured_in_yaml": "Huomaa: configuration.yaml-tiedoston kautta määritettyjä henkilöitä ei voi muokata käyttöliittymän kautta.",
+ "person_not_found": "Emme löytäneet henkilöä, jota yritit muokata.",
+ "person_not_found_title": "Henkilöä ei löydy"
+ },
+ "scene": {
+ "activated": "Aktivoitu tilanne {name}.",
+ "caption": "Tilanteet",
+ "description": "Luo ja muokkaa tilanteita",
+ "editor": {
+ "area": "Alue",
+ "default_name": "Uusi tilanne",
+ "devices": {
+ "add": "Lisää laite",
+ "delete": "Poista laite",
+ "header": "Laitteet",
+ "introduction": "Lisää laitteet, jotka haluat sisällyttää tilanteeseesi. Aseta kaikki laitteet haluamaasi tilaan tätä tilannetta varten."
+ },
+ "entities": {
+ "add": "Lisää kohde",
+ "delete": "Poista kohde",
+ "device_entities": "Jos lisäät kohteen, joka kuuluu laitteeseen, laite lisätään.",
+ "header": "Kohteet",
+ "introduction": "Kohteet, jotka eivät kuulu laitteisiin, voidaan asettaa täällä.",
+ "without_device": "Kohteet ilman laitetta"
+ },
+ "icon": "Kuvake",
+ "introduction": "Käytä tilanteita herättääksesi kotisi eloon.",
+ "load_error_not_editable": "Vain tilanteet tiedostossa scenes.yaml ovat muokattavissa.",
+ "load_error_unknown": "Virhe ladattaessa tilannetta ({err_no}).",
+ "name": "Nimi",
+ "save": "Tallenna",
+ "unsaved_confirm": "Sinulla on tallentamattomia muutoksia. Haluatko varmasti poistua?"
+ },
+ "picker": {
+ "add_scene": "Lisää tilanne",
+ "delete_confirm": "Haluatko varmasti poistaa tämän tilanteen?",
+ "delete_scene": "Poista tilanne",
+ "duplicate": "Kopioi",
+ "duplicate_scene": "Kopioi tilanne",
+ "edit_scene": "Muokkaa tilannetta",
+ "header": "Tilanne-editori",
+ "headers": {
+ "name": "Nimi"
+ },
+ "introduction": "Tilanne-editorin avulla voit luoda ja muokata tilanteita. Seuraa alla olevaa linkkiä lukeaksesi ohjeet varmistaaksesi, että olet määrittänyt Home Assistant -sovelluksen oikein.",
+ "learn_more": "Lisätietoja tilanteista",
+ "no_scenes": "Emme löytäneet muokattavia tilanteita",
+ "only_editable": "Vain tilanteet tiedostossa scenes.yaml ovat muokattavissa.",
+ "pick_scene": "Valitse muokattava tilanne",
+ "show_info_scene": "Näytä tietoja tilanteesta"
+ }
+ },
+ "script": {
+ "caption": "Skriptit",
+ "description": "Luo ja muokkaa skriptejä",
+ "editor": {
+ "alias": "Nimi",
+ "default_name": "Uusi skripti",
+ "delete_confirm": "Haluatko varmasti poistaa tämän skriptin?",
+ "delete_script": "Poista skripti",
+ "header": "Skripti: {name}",
+ "icon": "Kuvake",
+ "id": "Kohde ID",
+ "id_already_exists": "Tämä tunnus on jo olemassa",
+ "id_already_exists_save_error": "Et voi tallentaa tätä skriptiä, koska tunnus ei ole yksilöivä. Valitse toinen tunnus tai jätä se tyhjäksi, jolloin se luodaan automaattisesti.",
+ "introduction": "Käytä scriptejä suorittaaksesi toimintasarjan.",
+ "link_available_actions": "Lisätietoja saatavilla olevista toiminnoista",
+ "load_error_not_editable": "Vain scripts.yaml-tiedostossa olevat skriptit ovat muokattavissa.",
+ "max": {
+ "parallel": "Rinnakkaisten ajojen enimmäismäärä",
+ "queued": "Jonon pituus"
+ },
+ "modes": {
+ "description": "Tila määrittää, mitä tapahtuu, kun skriptiä kutsutaan uudelleen edellisen kutsukerran ollessa vielä käynnissä. Lisätietoja {documentation_link}.",
+ "documentation": "skriptien ohjeissa",
+ "label": "Tila",
+ "parallel": "Rinnakkain",
+ "queued": "Peräkkäin",
+ "restart": "Aloita alusta",
+ "single": "Yksi kerrallaan (oletus)"
+ },
+ "save_script": "Tallenna skripti",
+ "sequence": "Järjestys",
+ "sequence_sentence": "Skriptin toimintojen järjestys.",
+ "show_trace": "Näytä jäljitys"
+ },
+ "picker": {
+ "add_script": "Lisää skripti",
+ "dev_script": "Debuggaa skriptiä",
+ "duplicate": "Kopioi",
+ "duplicate_script": "Kopioi skripti",
+ "edit_script": "Muokkaa skriptiä",
+ "header": "Skriptieditori",
+ "headers": {
+ "name": "Nimi"
+ },
+ "introduction": "Skriptieditorin avulla voit luoda ja muokata skriptejä. Seuraa alla olevaa linkkiä lukeaksesi ohjeet varmistaaksesi, että olet määrittänyt Home Assistant -sovelluksen oikein.",
+ "learn_more": "Lisätietoja skripteistä",
+ "no_scripts": "Emme löytäneet muokattavia skriptejä",
+ "run_script": "Suorita skripti",
+ "show_info": "Näytä tietoja skriptistä"
+ }
+ },
+ "server_control": {
+ "caption": "Palvelimen hallinta",
+ "description": "Uudelleenkäynnistä ja sammuta Home Assistant -palvelin",
+ "section": {
+ "reloading": {
+ "automation": "Automaatiot",
+ "command_line": "Komentorivientiteetit",
+ "core": "Sijainti & muokkaukset",
+ "filesize": "Tiedostokokokohteet",
+ "filter": "Suodatinentiteetit",
+ "generic": "Yleiset IP-kameraentiteetit",
+ "generic_thermostat": "Yleiset termostaattientiteetit",
+ "group": "Ryhmät, ryhmäentiteetit ja ilmoituspalvelut",
+ "heading": "Asetusten uudelleenlataus",
+ "history_stats": "Historiatilastoentiteetit",
+ "homekit": "HomeKit",
+ "input_boolean": "Boolean-syötteet",
+ "input_button": "Syöttöpainikkeet",
+ "input_datetime": "Päivämääräsyötteet",
+ "input_number": "Numerosyötteet",
+ "input_select": "Valintalaatikkosyötteet",
+ "input_text": "Tekstisyötteet",
+ "introduction": "Jotkut Home Assistantin osat voidaan ladata uudelleen ilman uudelleenkäynnistystä. Alla olevat valinnat lataavat YAML-asetustiedoston uudelleen.",
+ "min_max": "Min/max-entiteetit",
+ "mqtt": "Manuaalisesti määritetyt MQTT-entiteetit",
+ "person": "Henkilöt",
+ "ping": "Binääriset ping-sensorientiteetit",
+ "reload": "{domain}",
+ "rest": "REST-entiteetit ja ilmoituspalvelut",
+ "rpi_gpio": "Raspberry Pi GPIO -entiteetit",
+ "scene": "Tilanteet",
+ "script": "Skriptit",
+ "smtp": "SMTP-ilmoituspalvelut",
+ "statistics": "Tilastoentiteetit",
+ "telegram": "Telegram-ilmoituspalvelut",
+ "template": "Mallientiteetit",
+ "themes": "Teemat",
+ "timer": "Ajastimet",
+ "trend": "Trendientiteetit",
+ "universal": "Yleiset mediasoitinentiteetit",
+ "zone": "Alueet"
+ },
+ "server_management": {
+ "confirm_restart": "Haluatko varmasti käynnistää Home Assistantin uudelleen?",
+ "confirm_stop": "Haluatko varmasti pysäyttää Home Assistantin?",
+ "heading": "Palvelimen hallinta",
+ "introduction": "Hallitse Home Assistantia suoraan käyttöliittymästä.",
+ "restart": "Käynnistä uudelleen",
+ "stop": "Pysäytä"
+ },
+ "validation": {
+ "check_config": "Tarkista asetukset",
+ "heading": "Asetusten tarkistus",
+ "introduction": "Tarkista asetukset, jos olet äskettäin tehnyt joitain muutoksia asetuksiin ja haluat varmistaa, että se on kelvollinen",
+ "invalid": "Asetukset ei kelpaa",
+ "valid": "Asetukset kunnossa!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Lisää tunniste",
+ "automation_title": "Tunniste {name} skannataan",
+ "caption": "Tunnisteet",
+ "confirm_remove": "Haluatko varmasti poistaa tagin {tag}?",
+ "confirm_remove_title": "Poista tägi?",
+ "create_automation": "Automaation luominen tunnisteella",
+ "description": "Hallitse tunnisteita",
+ "detail": {
+ "companion_apps": "oheissovelluksillamme",
+ "create": "Luo",
+ "create_and_write": "Luo ja kirjoita",
+ "delete": "Poista",
+ "description": "Kuvaus",
+ "name": "Nimi",
+ "new_tag": "Uusi tunniste",
+ "tag_id": "Tägin ID",
+ "tag_id_placeholder": "Luodaan automaattisesti, kun se jätetään tyhjäksi",
+ "update": "Päivitä",
+ "usage": "Tunniste voi käynnistää automaation skannattaessa; voit käyttää NFC-tunnisteita, QR-koodeja tai mitä tahansa muita tunnisteita. Kirjoitta tämä tunnisteen ohjelmoitavaan NFC-tunnisteeseen {companion_link} tai luo QR-koodin alla."
+ },
+ "edit": "Muokkaa",
+ "headers": {
+ "last_scanned": "Viimeksi skannattu",
+ "name": "Nimi"
+ },
+ "learn_more": "Lisätietoja tunnisteista",
+ "never_scanned": "Ei koskaan skannattu",
+ "no_tags": "Ei tunnisteita",
+ "write": "Kirjoita"
+ },
+ "updates": {
+ "more_updates": "+ {count} päivitystä",
+ "show": "näytä",
+ "show_all_updates": "Näytä kaikki päivitykset",
+ "title": "{count} {count, plural,\n one {päivitys}\n other {päivitystä}\n}",
+ "unable_to_fetch": "Päivityksiä ei voi ladata",
+ "version_available": "Versio {version_available} on saatavilla"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Lisää käyttäjä",
+ "create": "Luo",
+ "local_only": "Vain paikallinen",
+ "password": "Salasana",
+ "password_confirm": "Vahvista salasana",
+ "password_not_match": "Salasanat eivät täsmää"
+ },
+ "caption": "Käyttäjät",
+ "description": "Käyttäjien hallinta",
+ "editor": {
+ "activate_user": "Aktivoi käyttäjä",
+ "active": "Aktiivinen",
+ "active_tooltip": "Määrittää, voiko käyttäjä kirjautua sisään",
+ "admin": "Järjestelmänvalvoja",
+ "caption": "Näytä käyttäjä",
+ "change_password": "Vaihda salasana",
+ "confirm_user_deletion": "Haluatko varmasti poistaa {name}?",
+ "deactivate_user": "Passivoi käyttäjätunnus",
+ "delete_user": "Poista käyttäjä",
+ "group": "Ryhmä",
+ "id": "ID",
+ "local_only": "Voi kirjautua vain paikallisverkosta",
+ "name": "Näyttönimi",
+ "new_password": "Uusi salasana",
+ "owner": "Omistaja",
+ "password_changed": "Salasana on vaihdettu!",
+ "system_generated": "Järjestelmän luoma",
+ "system_generated_users_not_editable": "Järjestelmän luomia käyttäjiä ei voi päivittää.",
+ "system_generated_users_not_removable": "Järjestelmän luomia käyttäjiä ei voi poistaa.",
+ "unnamed_user": "Nimeämätön käyttäjä",
+ "update_user": "Päivitä",
+ "username": "Käyttäjätunnus"
+ },
+ "is_local": "Paikallinen käyttäjä",
+ "is_not_active": "Poistettu käytöstä",
+ "is_owner": "Omistaja",
+ "is_system": "Järjestelmän luoma",
+ "picker": {
+ "add_user": "Lisää käyttäjä",
+ "headers": {
+ "group": "Ryhmä",
+ "is_active": "Aktiivinen",
+ "is_owner": "Omistaja",
+ "local": "Vain paikallinen",
+ "name": "Näyttönimi",
+ "system": "Järjestelmä",
+ "username": "Käyttäjätunnus"
+ }
+ },
+ "users_privileges_note": "Käyttäjät-ryhmä on vielä kesken. Käyttäjä ei voi hallita Home Assistantia käyttöliittymän kautta. Auditoimme edelleen kaikkia hallinta-API-päätepisteitä varmistaaksemme, että ne rajoittavat pääsyn oikein."
+ },
+ "zha": {
+ "add_device": "Lisää laite",
+ "add_device_page": {
+ "discovered_text": "Laitteet tulevat tänne, kun ne löydetään.",
+ "no_devices_found": "Mitään laitteita ei löydy. Varmista, että ne ovat paritustilassa ja pidä ne hereillä havaitsemisen ollessa käynnissä.",
+ "pairing_mode": "Varmista, että laitteesi ovat paritustilassa. Tarkista laitteen ohjeet, kuinka tämä tehdään.",
+ "search_again": "Etsi uudestaan",
+ "spinner": "Etsitään ZHA Zigbee laitteita…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Valitun klusterin määritteet",
+ "get_zigbee_attribute": "Hae Zigbee-ominaisuus",
+ "header": "Klusterin määritteet",
+ "help_attribute_dropdown": "Valitse määrite, jonka arvoa haluat tarkastella tai määrittää.",
+ "help_get_zigbee_attribute": "Hae valitun määritteen arvo.",
+ "help_set_zigbee_attribute": "Määritä määritetyn kohteen määritetyn klusterin määritteen arvo.",
+ "introduction": "Tarkastele ja muokkaa klusterimääritteitä.",
+ "set_zigbee_attribute": "Aseta Zigbee-ominaisuus"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Valitun klusterin komennot",
+ "header": "Klusterikomennot",
+ "help_command_dropdown": "Valitse lähettettävä komento",
+ "introduction": "Tarkastele ja anna klusterikomentoja.",
+ "issue_zigbee_command": "Anna Zigbee käsky"
+ },
+ "clusters": {
+ "header": "Klusterit",
+ "help_cluster_dropdown": "Valitse klusteri tarkastellaksesi määritteitä ja komentoja.",
+ "introduction": "Klusterit ovat rakennuspalikoita Zigbee-toiminnallisuudelle. Ne erottavat toiminnallisuuden loogisiksi yksiköiksi. On asiakas- ja palvelintyyppejä, jotka koostuvat määritteistä ja komennoista."
+ },
+ "common": {
+ "clusters": "Klusterit",
+ "manufacturer_code_override": "Valmistajan koodin yliajo",
+ "value": "Arvo"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Pikanäppäimet",
+ "update_button": "Päivitä kokoonpano"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Määritys valmis",
+ "CONFIGURED_status_text": "Alustetaan",
+ "INITIALIZED": "Alustus on valmis",
+ "INITIALIZED_status_text": "Laite on käyttövalmis",
+ "INTERVIEW_COMPLETE": "Haastattelu valmis",
+ "INTERVIEW_COMPLETE_status_text": "Määrittää",
+ "PAIRED": "Laite löydetty",
+ "PAIRED_status_text": "Haastattelun aloittaminen"
+ },
+ "group_binding": {
+ "bind_button_help": "Sido valittu ryhmä valittuihin laiteklustereihin.",
+ "bind_button_label": "Sido ryhmä",
+ "cluster_selection_help": "Valitse valittuun ryhmään sidottavat klusterit.",
+ "group_picker_help": "Valitse ryhmä, jos haluat antaa sidontakomennon.",
+ "group_picker_label": "Sidottavat ryhmät",
+ "header": "Ryhmäsidonta",
+ "introduction": "Sido ja pura ryhmiä",
+ "unbind_button_help": "Pura valitun ryhmän sidonta valituista laiteklustereista.",
+ "unbind_button_label": "Pura ryhmän sidonta"
+ },
+ "groups": {
+ "add_group": "Lisää ryhmä",
+ "add_members": "Lisää jäseniä",
+ "caption": "Ryhmät",
+ "create": "Luo ryhmä",
+ "create_group": "Zigbee-kotiautomaatio - Luo ryhmä",
+ "create_group_details": "Kirjoita tarvittavat tiedot uuden Zigbee-ryhmän luomiseksi",
+ "creating_group": "Ryhmän luominen",
+ "delete": "Poista ryhmä",
+ "group_details": "Tässä ovat kaikki valitun Zigbee-ryhmän tiedot.",
+ "group_id": "Ryhmän ID",
+ "group_info": "Ryhmätiedot",
+ "group_name_placeholder": "Ryhmän nimi",
+ "group_not_found": "Ryhmää ei löytynyt!",
+ "groups": "Ryhmät",
+ "members": "Jäsenet",
+ "remove_members": "Poista jäseniä",
+ "removing_members": "Poistetaan jäseniä"
+ },
+ "network": {
+ "caption": "Verkko"
+ },
+ "visualization": {
+ "auto_zoom": "Automaattinen zoomaus",
+ "caption": "Visualisointi",
+ "header": "Verkon visualisointi",
+ "highlight_label": "Korosta laitteet",
+ "refresh_topology": "Päivitä topologia",
+ "zoom_label": "Zoomaa laitteeseen"
+ }
+ },
+ "zone": {
+ "add_zone": "Lisää vyöhyke",
+ "caption": "Alueet",
+ "configured_in_yaml": "Configuration.yaml-tiedoston kautta määritettyjä vyöhykkeitä ei voi muokata käyttöliittymän kautta.",
+ "confirm_delete": "Haluatko varmasti poistaa tämän vyöhykkeen?",
+ "create_zone": "Luo alue",
+ "description": "Hallitse vyöhykkeitä, joissa haluat seurata ihmisiä.",
+ "detail": {
+ "create": "Luo",
+ "delete": "Poista",
+ "icon": "Kuvake",
+ "icon_error_msg": "Kuvakkeen tulisi olla muodossa etuliite:ikoni, esimerkiksi: mdi:koti",
+ "latitude": "Leveysaste",
+ "longitude": "Pituusaste",
+ "name": "Nimi",
+ "new_zone": "Uusi vyöhyke",
+ "passive": "Passiivinen",
+ "passive_note": "Passiiviset vyöhykkeet on piilotetaan käyttöliittymässä, eikä niitä käytetä laitteiden paikannuksen sijaintina. Tämä on hyödyllistä, jos haluat käyttää vain automaatioihin.",
+ "radius": "Säde",
+ "required_error_msg": "Tämä kenttä on pakollinen",
+ "update": "Päivitä"
+ },
+ "edit_home_zone": "Kotivyöhykkeen sädettä ei voi vielä määrittää käyttöliittymästä. Raahaa merkkiä kartalla muuttaaksesi kotivyöhykettä.",
+ "edit_home_zone_narrow": "Kotivyöhykkeen sädettä ei voi vielä muokata käyttöliittymästä. Paikka voidaan muuttaa yleisestä konfiguraatiosta.",
+ "edit_zone": "Muokkaa aluetta",
+ "go_to_core_config": "Siirry yleisiin asetuksiin?",
+ "home_zone_core_config": "Kotivyöhykkeen sijaintia voi muokata yleiset asetukset-sivulta. Koti-alueen sädettä ei voi vielä muokata Frontendistä. Haluatko siirtyä yleisiin asetuksiin?",
+ "introduction": "Vyöhykkeiden avulla voit määrittää alueita maan päällä. Kun henkilö on vyöhykkeellä, tila saa vyöhykkeen nimen. Vyöhykkeitä voidaan käyttää myös laukaisimina tai ehtoina automaatioissa.",
+ "no_zones_created_yet": "Näyttää siltä, että et ole vielä luonut vyöhykkeitä."
+ },
+ "zwave": {
+ "common": {
+ "index": "Indeksi",
+ "instance": "Esiintymä",
+ "unknown": "tuntematon",
+ "value": "Arvo",
+ "wakeup_interval": "Herätysväli"
+ },
+ "description": "Z-Wave -verkon asetukset",
+ "learn_more": "Z-wave lisätietoja",
+ "migration": {
+ "ozw": {
+ "header": "Siirry OpenZWaveen",
+ "introduction": "Tämän ohjatun toiminnon avulla voit siirtyä vanhasta Z-Wave-integraatiosta OpenZWave-integraatioon, joka on tällä hetkellä betaversiossa."
+ },
+ "zwave_js": {
+ "header": "Siirry Z-Wave JS: ään",
+ "introduction": "Tätä integraatiota ei enää ylläpidetä, ja suosittelemme siirtymään uuteen Z-Wave JS -integraatioon. Tämä ohjattu toiminto auttaa sinua siirtymään vanhasta Z-Wave-integraatiosta uuteen Z-Wave JS -integraatioon."
+ }
+ },
+ "network_management": {
+ "header": "Z-Wave-verkon hallinta",
+ "introduction": "Suorita Z-Wave-verkkoon vaikuttavia komentoja. Et saa palautetta siitä, onnistuiko useimmat komennot, mutta voit tarkistaa OZW-lokin ja yrittää selvittää sen."
+ },
+ "network_status": {
+ "network_started": "Z-Wave-verkko käynnistetty",
+ "network_started_note_all_queried": "Kaikista solmuista on kyselty.",
+ "network_started_note_some_queried": "Hereillä olevat solmut on kysytty. Nukkuvat solmut kysytään kun ne heräävät.",
+ "network_starting": "Käynnistetään Z-Wave-verkkoa…",
+ "network_starting_note": "Tämä voi viedä hetken verkon koosta riippuen.",
+ "network_stopped": "Z-Wave-verkko pysäytetty"
+ },
+ "node_config": {
+ "config_parameter": "Asetusparametri",
+ "config_value": "Asetusarvo",
+ "false": "Epätosi",
+ "header": "Solmun määritysasetukset",
+ "seconds": "sekuntia",
+ "set_config_parameter": "Aseta parametri",
+ "set_wakeup": "Aseta herätysväli",
+ "true": "Tosi"
+ },
+ "node_management": {
+ "add_to_group": "Lisää ryhmään",
+ "entities": "Tämän solmun kohteet",
+ "entity_info": "Kohteen tiedot",
+ "exclude_entity": "Jätä tämä kohde pois Home Assistantista",
+ "group": "Ryhmä",
+ "header": "Z-Wave-solmun hallinta",
+ "introduction": "Suorita Z-Wave-komennot, jotka vaikuttavat yhteen solmuun. Valitse solmu nähdäksesi luettelon käytettävissä olevista komennoista.",
+ "max_associations": "Maksimiyhdistykset:",
+ "node_group_associations": "Solmujen ryhmäyhdistykset",
+ "node_protection": "Solmujen suojaus",
+ "node_to_control": "Hallinnoitava solmu",
+ "nodes": "Solmut",
+ "nodes_hint": "Valitse solmu tarkastellaksesi solmukohtaisia vaihtoehtoja",
+ "nodes_in_group": "Muut tämän ryhmän solmut:",
+ "pooling_intensity": "Kyselyn voimakkuus",
+ "protection": "Suojaus",
+ "remove_broadcast": "Poista lähetys",
+ "remove_from_group": "Poista ryhmästä",
+ "set_protection": "Aseta suojaus"
+ },
+ "ozw_log": {
+ "header": "OZW-loki",
+ "introduction": "Tarkastele lokia. 0 on pienin (lataa koko lokin) ja 1000 on maksimi. Lataus näyttää staattisen lokin ja päivittää automaattisesti viimeisen määritetyn määrän rivejä lokiin.",
+ "last_log_lines": "Viimeisten lokirivien määrä",
+ "load": "Lataa",
+ "tail": "Häntä"
+ },
+ "services": {
+ "add_node": "Lisää solmu",
+ "add_node_secure": "Lisää suojattu solmu",
+ "cancel_command": "Peruuta komento",
+ "heal_network": "Paranna verkko",
+ "heal_node": "Paranna solmu",
+ "node_info": "Solmun tiedot",
+ "print_node": "Tulosta solmu",
+ "refresh_entity": "Päivitä kohde",
+ "refresh_node": "Päivitä solmu",
+ "remove_failed_node": "Poista epäonnistunut solmu",
+ "remove_node": "Poista solmu",
+ "replace_failed_node": "Korvaa epäonnistunut solmu",
+ "save_config": "Tallenna asetukset",
+ "soft_reset": "Pehmeä nollaus",
+ "start_network": "Käynnistä verkko",
+ "stop_network": "Pysäytä verkko",
+ "test_network": "Testaa verkkoyhteys",
+ "test_node": "Testaa solmu"
+ },
+ "values": {
+ "header": "Solmujen arvot"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Peruuta sisällyttäminen",
+ "check_logs": "Katso lisätietoja lokista.",
+ "choose_inclusion_strategy": "Miten haluat lisätä laitteesi",
+ "controller_in_inclusion_mode": "Z-Wave-ohjaimesi on nyt sisällyttämistilassa.",
+ "enter_qr_code": "Syötä QR-koodin arvo",
+ "follow_device_instructions": "Noudata laitteen mukana tulleita ohjeita käynnistääksesi laiteparin muodostamisen.",
+ "inclusion_failed": "Laitetta ei voitu lisätä.",
+ "inclusion_finished": "Laite on lisätty.",
+ "interview_failed": "Laitehaastattelu epäonnistui. Lisätietoa saattaa löytyä lokeista.",
+ "interview_started": "Laitetta haastatellaan. Tämä voi kestää jonkin aikaa.",
+ "introduction": "Tämä ohjattu toiminto opastaa sinua lisäämään laitteen Z-Wave-verkkoosi.",
+ "provisioning_finished": "Laite on lisätty. Kun kytket siihen virran, se tulee saataville.",
+ "qr_code": "QR-koodi",
+ "qr_code_paragraph": "Jos laitteesi tukee SmartStartia, voit skannata QR-koodin pariliitoksen muodostamisen helpottamiseksi.",
+ "scan_qr_code": "Skannaa QR-koodi",
+ "searching_device": "Etsitään laitetta",
+ "secure_inclusion_warning": "Suojatut laitteet vaativat lisää kaistanleveyttä; liian monta suojattua laitetta voi hidastaa Z-Wave-verkkoasi. Suosittelemme, että käytät suojattua integrointia vain laitteissa, jotka vaativat sitä, kuten lukoissa tai autotallin oven avaajissa.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Esimerkki: Vanhat ovenlukot ilman S2-tukea",
+ "title": "S0 Legacy"
+ },
+ "S2_AccessControl": {
+ "description": "Esimerkki: Ovenlukot ja autotallin ovet",
+ "title": "S2-pääsynvalvonta"
+ },
+ "S2_Authenticated": {
+ "description": "Esimerkki: Valaistus, anturit ja turvajärjestelmät",
+ "title": "S2 Todennettu"
+ },
+ "S2_Unauthenticated": {
+ "description": "Kuten S2 Todennettu, mutta ilman vahvistusta, että oikea laite on mukana",
+ "title": "S2 Todentamaton"
+ }
+ },
+ "select_camera": "Valitse kamera",
+ "start_inclusion": "Aloita sisällyttäminen",
+ "start_secure_inclusion": "Aloita suojattu sisällyttäminen",
+ "title": "Lisää Z-Wave-laite",
+ "use_secure_inclusion": "Käytä turvallista sisällyttämistä",
+ "view_device": "Näytä laite"
+ },
+ "common": {
+ "add_node": "Lisää laite",
+ "back": "Takaisin",
+ "close": "Sulje",
+ "heal_network": "Paranna verkko",
+ "home_id": "Kodin ID",
+ "network": "Verkko",
+ "node_id": "Laitetunnus",
+ "reconfigure_server": "Määritä palvelin uudelleen",
+ "remove_node": "Poista laite",
+ "source": "Lähde"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n one {laite}\n other {laitteet}\n}",
+ "driver_version": "Ohjaimen versio",
+ "dump_dead_nodes_text": "Jotkin laitteistasi eivät vastanneet, ja niiden oletetaan kuolleen. Niitä ei viedä kokonaan.",
+ "dump_dead_nodes_title": "Jotkin laitteistasi ovat kuolleet",
+ "dump_debug": "Lataa tiedot",
+ "dump_not_ready_confirm": "Lataa",
+ "dump_not_ready_text": "Jos luot viennin, kun kaikki laitteet eivät ole valmiita, saatat menettää osan tiedoista. Anna verkollesi aikaa tehdä kyselyitä kaikista laitteista. Haluatko jatkaa vientiä?",
+ "dump_not_ready_title": "Kaikki laitteet eivät ole vielä valmiita",
+ "header": "Hallitse Z-Wave-verkkoasi",
+ "home_id": "Kodin ID",
+ "introduction": "Hallitse Z-Wave-verkkoasi ja -laitteitasi",
+ "nodes_ready": "Laitteet valmiina",
+ "not_ready": "{count} ei valmis",
+ "provisioned_devices": "Provisioidut laitteet",
+ "server_url": "Palvelimen URL-osoite",
+ "server_version": "Palvelinversio"
+ },
+ "device_info": {
+ "device_config": "Määritä laite",
+ "heal_node": "Paranna laite",
+ "highest_security": "Korkein turvallisuus",
+ "is_secure": "Turvallinen",
+ "node_ready": "Laite valmis",
+ "node_status": "Laitteen tila",
+ "reinterview_device": "Haastattele laite uudelleen",
+ "remove_failed": "Poista vikaantunut laite",
+ "unknown": "Tuntematon",
+ "zwave_info": "Z-Wave tiedot",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Versio {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "Verkon parantaminen on peruutettu.",
+ "healing_complete": "Verkon parantaminen on valmis.",
+ "healing_failed": "Parantaminen epäonnistui. Lisätietoja voi olla lokeissa.",
+ "in_progress": "Verkon parantaminen on käynnissä. Tämä vie jonkin aikaa.",
+ "introduction": "Aloita verkon parantaminen Z-Wave-verkossasi. Verkon korjaus saa kaikki laitteet laskemaan uudelleen reittinsä takaisin ohjaimeen, ja se on suositeltavaa, jos olet äskettäin siirtänyt laitteita tai ohjaintasi.",
+ "run_in_background": "Voit sulkea tämän valintaikkunan ja verkon parantaminen jatkuu taustalla.",
+ "start_heal": "Aloita parantaminen",
+ "stop_heal": "Lopeta parantaminen",
+ "title": "Paranna Z-Wave-verkkosi",
+ "traffic_warning": "Parantamisprosessi tuottaa suuren määrän liikennettä Z-Wave-verkkoon. Tämä voi aiheuttaa sen, että laitteet reagoivat hitaasti (tai eivät lainkaan), kun paraneminen on käynnissä."
+ },
+ "heal_node": {
+ "healing_complete": "{device} on parantunut.",
+ "healing_failed": "{device} ei voitu parantaa.",
+ "healing_failed_check_logs": "Lisätietoja voi olla saatavilla lokitiedoissa.",
+ "in_progress": "{device}: paraneminen on käynnissä.",
+ "introduction": "Käske laitteen {device} päivittää reittinsä takaisin ohjaimeen. Tämä voi auttaa tietoliikenneongelmissa, jos olet äskettäin siirtänyt laitteen tai ohjaimen.",
+ "network_heal_in_progress": "Z-Wave-verkon parantaminen on jo käynnissä. Odota sen päättymistä ennen yksittäisen laitteen parantamista.",
+ "start_heal": "Paranna laite",
+ "title": "Paranna Z-Wave-laite",
+ "traffic_warning": "Parantamisprosessi tuottaa suuren määrän liikennettä Z-Wave-verkkoon. Tämä voi aiheuttaa sen, että laitteet reagoivat hitaasti (tai eivät reagoi lainkaan), kun paraneminen on käynnissä."
+ },
+ "logs": {
+ "download_logs": "Lataa lokit",
+ "log_level": "Lokitaso",
+ "log_level_changed": "Lokitasoksi on muutettu: {level}",
+ "subscribed_to_logs": "Z-Wave JS -lokiviestit tilattu…",
+ "title": "Z-Wave JS -lokit"
+ },
+ "navigation": {
+ "logs": "Lokit",
+ "network": "Verkko"
+ },
+ "network_status": {
+ "connected": "Yhdistetty",
+ "connecting": "Yhdistetään",
+ "unknown": "Tuntematon"
+ },
+ "node_config": {
+ "attribution": "Laitteen määritysparametrit ja kuvaukset tarjoavat {device_database}",
+ "battery_device_notice": "Akkulaitteiden on oltava hereillä, jotta ne voivat päivittää konfiguraationsa. Katso laitteen käyttöoppaasta ohjeet laitteen herättämiseen.",
+ "error_device_not_found": "Laitetta ei löydy.",
+ "header": "Z-Wave-laitteen konfigurointi",
+ "introduction": "Hallitse ja säädä valitun laitteen laitekohtaisia konfigurointiparametreja",
+ "parameter": "Parametri",
+ "parameter_is_read_only": "Tämä parametri on vain luku -tyyppinen.",
+ "set_param_accepted": "Parametri on päivitetty.",
+ "set_param_error": "Tapahtui virhe.",
+ "set_param_queued": "Parametrimuutos on asetettu jonoon, ja se päivitetään, kun laite herää.",
+ "zwave_js_device_database": "Z-Wave JS -laitetietokanta"
+ },
+ "node_status": {
+ "alive": "Elossa",
+ "asleep": "Unessa",
+ "awake": "Hereillä",
+ "dead": "Kuollut",
+ "unknown": "Tuntematon"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "Jos poistat laitteen provisioinnin, sitä ei lisätä Home Assistantiin, kun se kytketään päälle. Jos se on jo lisätty Home Assistantiin, provisioidun laitteen poistaminen ei poista sitä Home Assistantista.",
+ "confirm_unprovision_title": "Haluatko varmasti poistaa tämän laitteen provisioinnin?",
+ "dsk": "DSK",
+ "included": "Mukana",
+ "not_included": "Ei sisälly",
+ "security_classes": "Turvallisuusluokat",
+ "unprovison": "Peru provisiointi"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "Sinun tulee herättää akkukäyttöiset laitteet ennen uudelleenhaastattelun aloittamista. Katso laitteen käyttöoppaasta ohjeet laitteen herättämiseen.",
+ "in_progress": "Laitetta haastatellaan. Tämä voi kestää jonkin aikaa.",
+ "interview_complete": "Laitehaastattelu valmis.",
+ "interview_failed": "Laitehaastattelu epäonnistui. Lisätietoa saattaa löytyä lokeista.",
+ "introduction": "Haastattele Z-Wave-verkossasi oleva laite uudelleen. Käytä tätä ominaisuutta, jos laitteestasi puuttuu jotain tai se toimii väärin.",
+ "run_in_background": "Voit sulkea tämän valintaikkunan ja haastattelu jatkuu taustalla.",
+ "start_reinterview": "Aloita uudelleenhaastattelu",
+ "title": "Haastattele Z-Wave-laite uudelleen"
+ },
+ "remove_failed_node": {
+ "in_progress": "Laitteen poisto on käynnissä.",
+ "introduction": "Poista vikaantunut laite Z-Wave-verkosta. Käytä tätä, jos et voi normaalisti sulkea laitetta pois, koska se on rikki.",
+ "removal_failed": "Laitetta ei voitu poistaa Z-Wave-verkostasi.",
+ "removal_finished": "Laite {id} on poistettu Z-Wave-verkostasi.",
+ "remove_device": "Poista laite",
+ "title": "Poista vikaantunut Z-Wave-laite"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Peruuta poissulkeminen",
+ "controller_in_exclusion_mode": "Z-Wave-ohjaimesi on nyt poissulkemistilassa.",
+ "exclusion_failed": "Laitetta ei voitu poistaa. Tarkista lisätietoja lokitiedoista.",
+ "exclusion_finished": "Laite {id} on poistettu Z-Wave-verkostasi.",
+ "follow_device_instructions": "Noudata laitteen mukana tulleita ohjeita käynnistääksesi poissulkemisen laitteessa.",
+ "introduction": "Poista laite Z-Wave-verkosta ja poista siihen liittyvä laite ja entiteetit Home Assistantista.",
+ "start_exclusion": "Aloita poissulkeminen",
+ "title": "Poista Z-Wave-laite"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Ei mitään"
+ },
+ "S0_Legacy": {
+ "description": "Esimerkki: Legacy-ovilukot ilman S2-tukea",
+ "title": "S0 Legacy"
+ },
+ "S2_AccessControl": {
+ "description": "Esimerkki: Ovenlukot ja autotallin ovet",
+ "title": "S2-pääsynvalvonta"
+ },
+ "S2_Authenticated": {
+ "description": "Esimerkki: Valaistus, anturit ja turvajärjestelmät",
+ "title": "S2 Todennettu"
+ },
+ "S2_Unauthenticated": {
+ "description": "Kuten S2 Authenticated, mutta ilman vahvistusta, että oikea laite on mukana",
+ "title": "S2 Todentamaton"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Se voi käyttää kaikkia Home Assistantin tietoja.",
+ "hide_message": "Tarkista panel_custom-komponentin dokumentaatio piilottaaksesi tämän viestin",
+ "question_trust": "Luotatko ulkoiseen paneeliin {name} osoitteessa {link} ?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Aktiiviset kuuntelijat",
+ "alert_event_type": "Tapahtumatyyppi on pakollinen kenttä",
+ "available_events": "Käytettävissä olevat tapahtumat",
+ "count_listeners": "({count} kuuntelijaa)",
+ "data": "Tapahtuman data (YAML, valinnainen)",
+ "description": "Lähetä tapahtumaa Home Assistantin tapahtumaväylään.",
+ "documentation": "Tapahtumien dokumentaatio",
+ "event_fired": "Tapahtuma {name} käynnistetty",
+ "fire_event": "Laukaise tapahtuma",
+ "listen_to_events": "Kuuntele tapahtumia",
+ "listening_to": "Kuunnellaan",
+ "notification_event_fired": "Tapahtuma {type} käynnistetty!",
+ "start_listening": "Aloita kuuntelu",
+ "stop_listening": "Lopeta kuuntelu",
+ "subscribe_to": "Tilaa tapahtuma",
+ "title": "Tapahtumat",
+ "type": "Tapahtumatyyppi"
+ },
+ "services": {
+ "accepts_target": "Tämä palvelu hyväksyy kohteen, esimerkiksi: \"entity_id: light.bed_light\".",
+ "all_parameters": "Kaikki saatavilla olevat parametrit",
+ "call_service": "Kutsu palvelua",
+ "column_description": "Kuvaus",
+ "column_example": "Esimerkki",
+ "column_parameter": "Parametri",
+ "description": "Service dev -työkalun avulla voit kutsua mitä tahansa käytettävissä olevaan palvelua Home Assistant -sovelluksessa.",
+ "fill_example_data": "Täytä esimerkkitiedoilla",
+ "no_template_ui_support": "Käyttöliittymä ei tue malleja, mutta voit silti käyttää YAML-editoria.",
+ "title": "Palvelut",
+ "ui_mode": "Siirry käyttöliittymätilaan",
+ "yaml_mode": "Siirry YAML-tilaan",
+ "yaml_parameters": "Parametrit ovat käytettävissä vain YAML-tilassa"
+ },
+ "states": {
+ "alert_entity_field": "Kohde on pakollinen kenttä",
+ "attributes": "Määritteet",
+ "copy_id": "Kopioi ID leikepöydälle",
+ "current_entities": "Nykyiset kohteet",
+ "description1": "Aseta laitteen esitys Home Assistant -sovelluksessa.",
+ "description2": "Tämä ei kommunikoi varsinaisen laitteen kanssa.",
+ "entity": "Kohde",
+ "filter_attributes": "Suodata määritteitä",
+ "filter_entities": "Suodata kohteita",
+ "filter_states": "Suodata tiloja",
+ "last_changed": "Viimeksi muutettu",
+ "last_updated": "Viimeksi päivitetty",
+ "more_info": "Lisätietoja",
+ "no_entities": "Ei kohteita",
+ "set_state": "Aseta tila",
+ "state": "Tila",
+ "state_attributes": "Tilamääritteet (YAML, valinnainen)",
+ "title": "Tilat"
+ },
+ "statistics": {
+ "entity": "Kohde",
+ "fix_issue": {
+ "fix": "Korjaa ongelma",
+ "units_changed": {
+ "clear": "Poista kaikki vanhat tilastotiedot tästä entiteetistä",
+ "fix": "Korjaa ongelma",
+ "title": "Tämän entiteetin yksikkö muuttui",
+ "update": "Päivitä historialliset tilastoarvot yksiköstä {metadata_unit} yksikköön {state_unit}"
+ }
+ },
+ "issue": "Ongelma",
+ "issues": {
+ "entity_no_longer_recorded": "Tätä entiteettiä ei enää kirjata.",
+ "entity_not_recorded": "Tätä entiteettiä ei tallenneta.",
+ "no_state": "Tälle entiteetille ei ole saatavilla tilaa.",
+ "units_changed": "Tämän kohteen yksikkö muutettiin arvosta '' {metadata_unit} '' arvoon '' {state_unit} ''.",
+ "unsupported_state_class": "Tämän entiteetin tilaluokkaa {state_class} ei tueta.",
+ "unsupported_unit": "Tämän entiteetin yksikkö (''{state_unit}'') ei vastaa laiteluokan ''{device_class}'' yksikköä.",
+ "unsupported_unit_metadata": "Tallennettujen tilastojen yksikkö ({metadata_unit}) ei vastaa laiteluokan {device_class} tuettua yksikköä {supported_unit}.",
+ "unsupported_unit_state": "Tämän entiteetin yksikkö (''{state_unit}'') ei vastaa laiteluokan ''{device_class}'' yksikköä."
+ },
+ "no_issue": "Ei ongelmaa",
+ "title": "Tilastot"
+ },
+ "templates": {
+ "all_listeners": "Tämä malli kuuntelee kaikkia tilan muuttamia tapahtumia.",
+ "description": "Mallit tehdään Jinja2-mallimoottorilla, joissa on joitain Home Assistant -kohtaisia laajennuksia.",
+ "domain": "Toimialue",
+ "editor": "Mallieditori",
+ "entity": "Kohde",
+ "jinja_documentation": "Jinja2-mallin dokumentaatio",
+ "listeners": "Tämä malli kuuntelee seuraavia tilan muuttuneita tapahtumia:",
+ "no_listeners": "Tämä malli ei kuuntele mitään tapahtumia eikä päivity automaattisesti.",
+ "reset": "Palauta demomalliin",
+ "result_type": "Tuloksen tyyppi",
+ "template_extensions": "Home Assistant -mallilaajennukset",
+ "time": "Tämä malli päivittyy jokaisen minuutin alussa.",
+ "title": "Malli",
+ "unknown_error_template": "Tuntematon virhe mallin renderöinnissa"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Valvo yksittäisiä laitteita",
+ "energy_distribution_title": "Energian jakelu",
+ "energy_gas_graph_title": "Kaasun kulutus",
+ "energy_solar_graph_title": "Aurinkoenergian tuotanto",
+ "energy_sources_table_title": "Lähteet",
+ "energy_usage_graph_title": "Energian käyttö"
+ },
+ "charts": {
+ "by_device": "Kulutus laitteittain",
+ "solar": "Aurinkopaneeli",
+ "stat_house_energy_meter": "Energian kokonaiskulutus"
+ },
+ "setup": {
+ "back": "Takaisin",
+ "done": "Näytä energiakojelautani!",
+ "next": "Seuraava"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Voit käyttää tätä toimintoa vain, kun olet ottanut hallintaan Lovelace-käyttöliittymän.",
+ "saving_failed": "Lovelacen käyttöliittymän asetusten tallennus epäonnistui.",
+ "yaml_unsupported": "Tätä toimintoa ei voi käyttää, kun Lovelace-käyttöliittymää käytetään YAML-tilassa."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Haluatko varmasti suorittaa toiminnon \"{action}\"?",
+ "no_entity_more_info": "Lisätietoikkunalle ei ole annettu entiteettiä",
+ "no_entity_toggle": "Ei entiteettiä kytkemistä varten",
+ "no_navigation_path": "Navigointipolkua ei ole määritetty",
+ "no_service": "Suoritettavaa palvelua ei ole määritelty",
+ "no_url": "Avattavaa URL-osoitetta ei ole määritetty"
+ },
+ "confirm_delete": "Oletko varma, että haluat poistaa tämän kortin?",
+ "empty_state": {
+ "go_to_integrations_page": "Siirry integraatiot-sivulle",
+ "no_devices": "Tällä sivulla voit ohjata laitteitasi, mutta näyttää siltä, että et ole vielä määrittänyt laitteita. Pääset alkuun integroinnit-sivulla.",
+ "title": "Tervetuloa kotiin"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "Tämä kortti osoittaa, kuinka suuri osa kodin käyttämästä energiasta on tuotettu ei-fossiilisilla polttoaineilla, kuten aurinko-, tuuli- ja ydinvoimalla. Mitä korkeampi, sen parempi!",
+ "non_fossil_energy_consumed": "Ei-fossiilista energiaa kulutettu",
+ "non_fossil_energy_not_calculated": "Kulutettua ei-fossiilista energiaa ei voitu laskea"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Energian käyttö"
+ },
+ "energy_distribution": {
+ "battery": "Akku",
+ "gas": "Kaasu",
+ "go_to_energy_dashboard": "Siirry energiakojelautaan",
+ "grid": "Sähköverkko",
+ "home": "Koti",
+ "non_fossil": "Ei-fossiilinen",
+ "solar": "Aurinko",
+ "title_today": "Energian jakelu tänään"
+ },
+ "energy_solar_graph": {
+ "forecast": "Ennuste {name}",
+ "production": "Tuotanto {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Akku yhteensä",
+ "cost": "Kustannus",
+ "energy": "Energia",
+ "grid_total": "Verkko yhteensä",
+ "source": "Lähde",
+ "total_costs": "Kustannukset yhteensä"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Yhdistetty verkosta",
+ "consumed_battery": "Kulutettu akkuenergia",
+ "consumed_solar": "Kulutettu aurinkoenergia",
+ "total_consumed": "Kulutettu energia (kWh)",
+ "total_returned": "Palautettu yhteensä {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Jos neula on violetilla alueella, palautit verkkoon enemmän energiaa kuin kulutit siitä. Jos se on sinisellä alueella, kulutit enemmän energiaa verkosta kuin palautit.",
+ "energy_dependency": "Tämä kortti ilmaisee energian nettokulutuksesi.",
+ "grid_neutrality_not_calculated": "Verkkoneutraaliutta ei voitu laskea",
+ "net_consumed_grid": "Verkosta kulutettu netto",
+ "net_returned_grid": "Verkkoon palautettu netto",
+ "red_green_color_explain": "Jos se on vihreä, se tarkoittaa, että olet tuottanut enemmän energiaa kuin mitä olet kuluttanut verkosta. Jos se on punainen, se tarkoittaa, että osa kotisi energiankulutuksesta on peräisin sähköverkosta."
+ },
+ "loading": "Ladataan...",
+ "no_data": "Näytettäviä tietoja ei ole. Energian koontinäytön määrittämisen jälkeen voi kestää jopa kaksi tuntia, ennen kuin uudet tiedot saapuvat.",
+ "no_data_period": "Tältä ajanjaksolta ei ole tietoja.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "Tämä kortti osoittaa, kuinka paljon tuottamastasi aurinkoenergiasta käytettiin kotona sen sijaan, että se olisi palautettu verkkoon.",
+ "card_indicates_solar_energy_used_charge_home_bat": "Jos tämä luku on tyypillisesti hyvin alhainen, mikä osoittaa liiallista aurinkotuotantoa, sinun kannattaa harkita koti -akun tai sähköauton lataamista aurinkopaneeleistasi korkean aurinkotuotannon aikoina.",
+ "not_produced_solar_energy": "Et ole tuottanut aurinkoenergiaa",
+ "self_consumed_solar_could_not_calc": "Itse kulutettua aurinkoenergiaa ei voitu laskea",
+ "self_consumed_solar_energy": "Kulutettu aurinkoenergia"
+ }
+ },
+ "entities": {
+ "never_triggered": "Ei koskaan laukaistu"
+ },
+ "iframe": {
+ "error_secure_context": "Ei voida ladata iframe-kehyksiä, jotka osoittavat verkkosivustoille, joissa on {target_protocol}-protokolla jos Home Assistantia käytetään {context_protocol}-protokollalla."
+ },
+ "map": {
+ "reset_focus": "Nollaa kohdistus"
+ },
+ "picture-elements": {
+ "call_service": "Kutsu palvelua {name}",
+ "hold": "Pidä:",
+ "more_info": "Näytä lisätietoa: {name}",
+ "navigate_to": "Siirry kohtaan {location}",
+ "tap": "Napauta:",
+ "toggle": "Kytke {name}",
+ "url": "Avaa ikkuna {url_path}"
+ },
+ "safe-mode": {
+ "description": "Home Assistant joutui vaikeuksiin kokoonpanoa ladattaessa, ja se on nyt käynnissä vikasietotilassa. Katso virhelokistua mikä meni pieleen.",
+ "header": "Vikasietotila aktivoitu"
+ },
+ "shopping-list": {
+ "add_item": "Lisää",
+ "checked_items": "Valitut kohteet",
+ "clear_items": "Tyhjää valitut kohteet",
+ "drag_and_drop": "Raahaa ja pudota",
+ "reorder_items": "Järjestä kohteet uudelleen"
+ },
+ "show_more_info": "Näytä lisätietoja",
+ "starting": {
+ "description": "Home Assistant käynnistyy…"
+ }
+ },
+ "changed_toast": {
+ "message": "Lovelace-asetukset päivitettiin. Haluatko päivittää näkymän?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Päivä",
+ "month": "Kuukausi",
+ "next": "Seuraava",
+ "previous": "Edellinen",
+ "today": "Tänään",
+ "week": "Viikko",
+ "year": "Vuosi"
+ },
+ "timestamp-display": {
+ "invalid": "Virheellinen aikaleima",
+ "invalid_format": "Virheellinen näyttömuoto"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Kutsu palvelua",
+ "default_action": "Oletustoiminto",
+ "more-info": "Lisätietoja",
+ "navigate": "Siirry",
+ "none": "Ei toimintoa",
+ "toggle": "Vaihda",
+ "url": "URL-osoite"
+ },
+ "navigation_path": "Navigointipolku",
+ "url_path": "URL-polku"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Käytettävissä olevat tilat",
+ "description": "Hälytyspaneelikortin kortin avulla voit virittää ja purkaa hälytyksen ohjauspaneelin integrointeja.",
+ "name": "Hälytyspaneeli"
+ },
+ "area": {
+ "description": "Aluekortti näyttää automaattisesti tietyn alueen kohteet.",
+ "name": "Alue",
+ "show_camera": "Näytä kamerasyöte aluekuvan sijaan"
+ },
+ "button": {
+ "default_action_help": "Oletustoiminto riippuu entiteetin ominaisuuksista, se joko vaihtaa tai lisätietoja näytetään.",
+ "description": "Painikekortti antaa sinun lisätä painikkeita tehtävien suorittamiseen.",
+ "name": "Painike"
+ },
+ "calendar": {
+ "calendar_entities": "Kalenteri entiteetit",
+ "description": "Kalenterikortissa näkyy kalenteri, joka sisältää päivä-, viikko- ja luettelonäkymät",
+ "inital_view": "Alkuperäinen näkymä",
+ "name": "Kalenteri",
+ "views": {
+ "dayGridDay": "Päivä",
+ "dayGridMonth": "Kuukausi",
+ "listWeek": "Luettelo"
+ }
+ },
+ "conditional": {
+ "card": "Kortti",
+ "change_type": "Muuta tyyppiä",
+ "condition_explanation": "Kortti näytetään, kun kaikki alla olevat ehdot täyttyvät.",
+ "conditions": "Ehdot",
+ "current_state": "Nykyinen",
+ "description": "Ehdollinen kortti näyttää toisen kortin kohteen tilan perusteella.",
+ "name": "Ehdollinen",
+ "state_equal": "Tila on yhtä suuri kuin",
+ "state_not_equal": "Tila ei ole yhtä suuri kuin"
+ },
+ "config": {
+ "optional": "Valinnainen",
+ "required": "Vaadittu"
+ },
+ "entities": {
+ "description": "Kohde-kortti on yleisin korttityyppi. Se ryhmittelee kohteet yhteen luetteloiksi.",
+ "edit_special_row": "Näytä rivin tiedot klikkaamalla Muokkaa-painiketta",
+ "entity_row": {
+ "attribute": "Määrite",
+ "button": "Painike",
+ "buttons": "Painikkeet",
+ "call-service": "Kutsu palvelua",
+ "cast": "Cast",
+ "conditional": "Ehdollinen",
+ "divider": "Jakaja",
+ "section": "Osio",
+ "weblink": "Nettilinkki"
+ },
+ "entity_row_editor": "Entiteetti rivi editori",
+ "name": "Kohteet",
+ "secondary_info_values": {
+ "brightness": "Kirkkaus",
+ "entity-id": "Entiteetin tunnus",
+ "last-changed": "Viimeksi muutettu",
+ "last-triggered": "Viimeksi laukaistu",
+ "last-updated": "Viimeksi päivitetty",
+ "none": "Ei toissijaisia tietoja",
+ "position": "Sijainti",
+ "tilt-position": "Kallistuksen sijainti"
+ },
+ "show_header_toggle": "Näytä otsikkokytkin?",
+ "special_row": "erityinen rivi",
+ "toggle": "Ota kohteet käyttöön tai poista käytöstä"
+ },
+ "entity-filter": {
+ "description": "Kohdesuodatin-kortin avulla voit määrittää luettelon kohteista, joita haluat seurata vain tietyssä tilassa.",
+ "name": "Kohteen suodatus"
+ },
+ "entity": {
+ "description": "Kohdekortti antaa sinulle nopean yleiskatsauksen kohteen tilasta.",
+ "name": "Kohde"
+ },
+ "gauge": {
+ "description": "Mittarikortti on peruskortti, jonka avulla anturitiedot voidaan nähdä visuaalisesti.",
+ "name": "Mittari",
+ "needle_gauge": "Näytetäänkö neulamittarina?",
+ "severity": {
+ "define": "Määritä vakavuus?",
+ "green": "Vihreä",
+ "red": "Punainen",
+ "yellow": "Keltainen"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Kuvasuhde",
+ "attribute": "Määrite",
+ "camera_image": "Kamerakohde",
+ "camera_view": "Kameranäkymä",
+ "days_to_show": "Näytettävät päivät",
+ "double_tap_action": "Kaksoisnapautustoiminto",
+ "entities": "Kohteet",
+ "entity": "Kohde",
+ "hold_action": "Pitkä painallus toiminto",
+ "hours_to_show": "Näytettävät tunnit",
+ "icon": "Kuvake",
+ "icon_height": "Kuvakkeen korkeus",
+ "image": "Kuvan polku",
+ "manual": "Manuaalinen",
+ "manual_description": "Haluatko lisätä mukautetun kortin tai vain kirjoittaa YAML:in manuaalisesti?",
+ "maximum": "Enimmäismäärä",
+ "minimum": "Vähimmäismäärä",
+ "name": "Nimi",
+ "no_theme": "Ei teemaa",
+ "refresh_interval": "Päivitysväli",
+ "search": "Hae",
+ "secondary_info_attribute": "Toissijainen info-attribuutti",
+ "show_icon": "Näytä kuvake?",
+ "show_name": "Näytä nimi?",
+ "show_state": "Näytä tila?",
+ "state": "Tila",
+ "state_color": "Värikuvakkeet tilan perusteella?",
+ "tap_action": "Napautus toiminto",
+ "theme": "Teema",
+ "title": "Otsikko",
+ "unit": "Yksikkö",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Sarakkeet",
+ "description": "Glance-kortti on hyödyllinen useiden anturien ryhmittelemiseksi kompaktiin yleiskuvaan.",
+ "name": "Pikavilkaisu"
+ },
+ "grid": {
+ "columns": "Sarakkeet",
+ "description": "Ruudukkokortin avulla voit näyttää useita kortteja ruudukossa.",
+ "name": "Ruudukko",
+ "square": "Näytä kortit neliöinä"
+ },
+ "history-graph": {
+ "description": "Historiakaavio-kortin avulla voit näyttää kaavion kullekin luettelossa olevalle kohteelle.",
+ "name": "Historiakuvaaja"
+ },
+ "horizontal-stack": {
+ "description": "Vaakapinokortin avulla voit pinota yhteen useita kortteja, jolloin ne ovat aina vierekkäin yhden sarakkeen tilassa.",
+ "name": "Vaakapino"
+ },
+ "humidifier": {
+ "description": "Ilmankostutin-kortti antaa hallita ilmankostutin kokonaisuutta. Voit muuttaa kosteus ja tila asetusta.",
+ "name": "Ilmankostutin"
+ },
+ "iframe": {
+ "description": "Verkkosivukortin avulla voit upottaa suosikkiverkkosivusi suoraan Home Assistantiin.",
+ "name": "iFrame"
+ },
+ "light": {
+ "description": "Valokortti antaa sinun muuttaa valon kirkkautta.",
+ "name": "Valo"
+ },
+ "logbook": {
+ "description": "Lokikirja-kortti näyttää listan entiteettien tapahtumista.",
+ "name": "Lokikirja"
+ },
+ "map": {
+ "dark_mode": "Tumma tila?",
+ "default_zoom": "Oletuszoomaus",
+ "description": "Karttakortti, jonka avulla voit näyttää entiteettejä kartalla.",
+ "geo_location_sources": "Maantieteelliset lähteet",
+ "hours_to_show": "Näytettävät tunnit",
+ "name": "Kartta",
+ "source": "Lähde"
+ },
+ "markdown": {
+ "content": "Sisältö",
+ "description": "Markdown-korttia käytetään Markdownin tuottamiseen.",
+ "name": "Merkintä"
+ },
+ "media-control": {
+ "description": "Media Control -korttia käytetään mediasoittimen näyttämiseen käyttöliittymässä, jossa on helppokäyttöiset ohjaimet.",
+ "name": "Mediaohjaus"
+ },
+ "picture-elements": {
+ "description": "Picture Elements -kortti on yksi monipuolisimmista korttityypeistä. Korttien avulla voit sijoittaa kuvakkeita tai tekstiä ja jopa palveluja! Koordinaatteihin perustuvassa kuvassa.",
+ "name": "Kuvaelementit"
+ },
+ "picture-entity": {
+ "description": "Kuvakohde -kortti näyttää kohteen kuvan muodossa. URL-osoitteesta saatujen kuvien sijasta se voi myös näyttää kameran kuvan.",
+ "name": "Kuvakohde"
+ },
+ "picture-glance": {
+ "description": "Picture Glance -kortissa näkyy kuva ja vastaava kohde näkyy kuvakkeena. Oikealla puolella olevat kohteet sallivat vaihtotoiminnot, toiset näyttävät enemmän tietoja -valintaikkunan.",
+ "name": "Kuva pikavilkaisu",
+ "state_entity": "Tilaentiteetti"
+ },
+ "picture": {
+ "description": "Kuvakortti antaa sinun asettaa kuvan, jota käytetään navigointiin käyttöliittymän eri poluille tai palvelun suorittamiseen.",
+ "name": "Kuva"
+ },
+ "plant-status": {
+ "description": "Kasvien tila -kortti on tarkoitettu kaikille siellä oleville ihanille kotikasvitieteilijöille.",
+ "name": "Kasvin tila"
+ },
+ "sensor": {
+ "description": "Anturikortti antaa sinulle nopean yleiskatsauksen antureiden tilasta valinnaisella kaaviolla, joka kuvaa muutosta ajan myötä.",
+ "graph_type": "Kaavion tyyppi",
+ "name": "Sensori",
+ "show_more_detail": "Näytä lisätietoja"
+ },
+ "shopping-list": {
+ "description": "Ostolistakortti antaa sinun lisätä, muokata, tarkistaa ja tyhjentää kohteita ostoslistaltasi.",
+ "integration_not_loaded": "Tämä kortti vaatii `shopping_list` -integraation ottamisen käyttöön.",
+ "name": "Ostoslista"
+ },
+ "statistics-graph": {
+ "description": "Tilastokaavio-kortin avulla voit näyttää kaavion kunkin entiteetin tilastoista.",
+ "name": "Tilastokaavio",
+ "periods": {
+ "5minute": "5 minuuttia",
+ "day": "Päivä",
+ "hour": "Tunti",
+ "month": "Kuukausi"
+ }
+ },
+ "thermostat": {
+ "description": "Termostaatti-kortti antaa sinun hallita ilmastokohteita. Voit muuttaa kohteen lämpötilaa ja toimintaa.",
+ "name": "Termostaatti"
+ },
+ "vertical-stack": {
+ "description": "Pystypino-kortti antaa sinun ryhmitellä useita kortteja niin, että ne ovat aina samassa sarakkeessa.",
+ "name": "Pystypino"
+ },
+ "weather-forecast": {
+ "description": "Sääennustekortti näyttää säätiedot. Erittäin hyödyllinen sisällyttää käyttöliittymiin, joita ihmiset näkevät seinällä.",
+ "name": "Sääennuste",
+ "show_both": "Näytä nykyinen sää ja ennuste",
+ "show_forecast": "Näytä sääennuste",
+ "show_only_current": "Näytä vain nykyinen sää",
+ "show_only_forecast": "Näytä vain ennuste"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Kortin mukaan",
+ "by_entity": "Kohteen mukaan",
+ "custom_card": "Mukautettu",
+ "domain": "Toimialue",
+ "entity": "Kohde",
+ "no_description": "Ei kuvausta saatavilla."
+ },
+ "common": {
+ "add": "Lisää",
+ "clear": "Tyhjennä",
+ "edit": "Muokkaa",
+ "none": "Ei mitään"
+ },
+ "edit_badges": {
+ "panel_mode": "Näitä merkkejä ei näytetä, koska tämä näkymä on \"Paneelitilassa\".",
+ "view_no_badges": "Nykyinen näkymä ei tue merkkejä."
+ },
+ "edit_card": {
+ "add": "Lisää kortti",
+ "clear": "Tyhjennä",
+ "confirm_cancel": "Haluatko varmasti peruuttaa?",
+ "delete": "Poista kortti",
+ "duplicate": "Kopioi kortti",
+ "edit": "Muokkaa",
+ "header": "Kortti-asetukset",
+ "move": "Siirrä",
+ "move_after": "Siirrä kortti jälkeen",
+ "move_before": "Siirrä kortti ennen",
+ "move_down": "Siirrä korttia alaspäin",
+ "move_up": "Siirrä korttia ylöspäin",
+ "options": "Lisää vaihtoehtoja",
+ "pick_card": "Valitse kortti jonka haluat lisätä",
+ "pick_card_view_title": "Minkä kortin haluat lisätä {name} -näkymääsi?",
+ "search_cards": "Etsi kortteja",
+ "show_code_editor": "Näytä koodieditori",
+ "show_visual_editor": "Näytä visuaalinen editori",
+ "toggle_editor": "Vaihda editori",
+ "typed_header": "{type}-kortin kokoonpano",
+ "unsaved_changes": "Sinulla on tallentamattomia muutoksia"
+ },
+ "edit_lovelace": {
+ "edit_title": "Muokkaa otsikkoa",
+ "explanation": "Tämä otsikko on esillä näkymien yläpuolella Lovelace-käyttöliittymässä.",
+ "header": "Lovelace-käyttöliittymän otsikko",
+ "title": "Otsikko"
+ },
+ "edit_view": {
+ "add": "Lisää näkymä",
+ "delete": "Poista näkymä",
+ "edit": "Muokkaa näkymää",
+ "header": "Näkymän asetukset",
+ "header_name": "Näkymän {name} asetukset",
+ "move_left": "Siirrä näkymää vasemmalle",
+ "move_right": "Siirrä näkymää oikealle",
+ "tab_badges": "Merkit",
+ "tab_settings": "Asetukset",
+ "tab_visibility": "Näkyvyys",
+ "type": "Näkymän tyyppi",
+ "types": {
+ "masonry": "Muuraus (oletus)",
+ "panel": "Paneeli (1 kortti)",
+ "sidebar": "Sivupalkki"
+ },
+ "visibility": {
+ "select_users": "Valitse ketkä käyttäjät näkevät tämän näkymän navigoinnissa"
+ }
+ },
+ "header": "Muokkaa käyttöliittymää",
+ "header-footer": {
+ "choose_header_footer": "Valitse {type}",
+ "footer": "Alatunniste",
+ "header": "Otsikko",
+ "types": {
+ "buttons": {
+ "name": "Painikkeet"
+ },
+ "graph": {
+ "name": "Kaavio"
+ },
+ "picture": {
+ "name": "Kuva"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Hallinnoi työpöytiä",
+ "manage_resources": "Hallinnoi resursseja",
+ "open": "Avaa Lovelace-valikko",
+ "raw_editor": "Raaka konfigurointieditori"
+ },
+ "migrate": {
+ "header": "Epäkelvot asetukset",
+ "migrate": "Tuo vanhat asetukset",
+ "para_migrate": "Home Assistant voi lisätä ID:t kaikkiin kortteihisi ja näkymiin automaattisesti painamalla 'Tuo vanhat asetukset'-nappia.",
+ "para_no_id": "Elementillä ei ole ID. Lisää ID elementille 'ui-lovelace.yaml'-tiedostossa."
+ },
+ "move_card": {
+ "header": "Valitse näkymä, johon kortti siirretään"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Lovelace käyttöliittymän näkymät luodaan automaattisesti alueistasi ja laitteistasi, jos poistat nykyisen määrityksen.",
+ "confirm_remove_config_title": "Haluatko varmasti poistaa Lovelace-käyttöliittymän asetukset?",
+ "confirm_unsaved_changes": "Sinulla on tallentamattomia muutoksia. Haluatko varmasti poistua?",
+ "confirm_unsaved_comments": "Asetuksesi sisältää kommentoituja rivejä. Kommentoituja rivejä ei tallenneta. Haluatko jatkaa?",
+ "error_invalid_config": "Asetuksesi ovat virheelliset: {error}",
+ "error_parse_yaml": "YAML-tiedostoa ei voida jäsentää: {error}",
+ "error_remove": "Asetusta ei voida poistaa: {error}",
+ "error_save_yaml": "YAML-tiedostoa ei voi tallentaa: {error}",
+ "header": "Muokkaa asetuksia",
+ "lovelace_changed": "Lovelace-kokoonpano päivitettiin, haluatko ladata päivitetyn kokoonpanon editoriin ja menettää nykyiset muutokset?",
+ "reload": "Lataa uudelleen",
+ "resources_moved": "Resursseja ei enää lisätä Lovelace-kokoonpanoon, mutta ne voidaan lisätä Lovelace config -paneeliin.",
+ "save": "Tallenna",
+ "saved": "Tallennettu",
+ "unsaved_changes": "Tallentamattomat muutokset"
+ },
+ "save_config": {
+ "close": "Sulje",
+ "empty_config": "Aloita tyhjällä kojelaudalla",
+ "header": "Hallitse Lovelace käyttöliittymääsi",
+ "para": "Oletuksena Home Assistant ylläpitää käyttöliittymääsi, päivittäen sitä uusien yksiköiden tai Lovelace komponenttien tullessa saataville. Jos muokkaat käyttöliittymääsi, emme enää tee muutoksia automaattisesti.",
+ "para_sure": "Oletko varma, että haluat ottaa haltuun käyttöliittymän?",
+ "save": "Ota hallintaan",
+ "yaml_config": "Tämän aloittamisen helpottamiseksi on tämä hallintapaneelin nykyinen kokoonpano:",
+ "yaml_control": "Jos haluat hallita YAML-tilaa, luo YAML-tiedosto, jonka nimi on määritetty tämän kojelaudan kokoonpanossa, tai oletusarvoinen 'ui-lovelace.yaml'.",
+ "yaml_mode": "Käytät YAML-tilaa, mikä tarkoittaa, että et voi muuttaa Lovelace-asetuksia käyttöliittymästä. Jos haluat muuttaa Lovelacea käyttöliittymästä, poista 'mode: yaml' Lovelace-määrityksestäsi tiedostossa 'configuration.yaml'."
+ },
+ "select_view": {
+ "dashboard_label": "Kojelauta",
+ "header": "Valitse näkymä",
+ "views_label": "Näytä"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Alatunnisteen muokkaus",
+ "header": "Otsikkoeditori",
+ "row": "Kohderivieditori"
+ }
+ },
+ "suggest_card": {
+ "add": "Lisää Lovelace-käyttöliittymään",
+ "create_own": "Valitse toinen kortti",
+ "header": "Loimme ehdotuksen sinulle"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Tämä näkymä sisältää useamman kuin yhden kortin, paneelinäkymä tukee vain yhtä korttia."
+ }
+ }
+ },
+ "menu": {
+ "close": "Sulje",
+ "configure_ui": "Muokkaa käyttöliittymää",
+ "exit_edit_mode": "Poistu käyttöliittymän muokkaustilasta",
+ "help": "Apua",
+ "reload_resources": "Lataa resurssit uudelleen",
+ "start_conversation": "Aloita keskustelu"
+ },
+ "reload_lovelace": "Lataa Lovelace uudelleen",
+ "reload_resources": {
+ "refresh_body": "Sinun täytyy päivittää sivu viimeistelläksesi uudelleenlatauksen. Haluatko päivittää nyt?",
+ "refresh_header": "Haluatko päivittää?"
+ },
+ "unused_entities": {
+ "available_entities": "Nämä ovat yksiköitä, jotka sinulla on käytettävissä, mutta joita ei vielä ole Lovelace-käyttöliittymässäsi.",
+ "domain": "Toimialue",
+ "entity": "Kohde",
+ "entity_id": "Kohde ID",
+ "last_changed": "Viimeksi muutettu",
+ "no_data": "Käyttämättömiä kohteita ei löytynyt",
+ "search": "Hae kohteita",
+ "select_to_add": "Valitse kohteet, jotka haluat lisätä korttiin, ja napsauta sitten Lisää kortti -painiketta.",
+ "title": "Käyttämättömät entiteetit"
+ },
+ "views": {
+ "confirm_delete": "Oletko varma, että haluat poistaa tämän näkymän?",
+ "confirm_delete_existing_cards": "Tämän näkymän poistaminen poistaa myös kortit",
+ "confirm_delete_existing_cards_text": "Haluatko varmasti poistaa näkymän {name}? Näkymä sisältää {number} korttia, jotka poistetaan. Tätä toimintoa ei voi kumota.",
+ "confirm_delete_text": "Haluatko varmasti poistaa ''{name}'' -näkymäsi?"
+ },
+ "warning": {
+ "attribute_not_found": "Määrite {attribute} ei ole käytettävissä kohteessa {entity}",
+ "entity_non_numeric": "Yksikkö ei ole numeerinen: {entity}",
+ "entity_not_found": "Yksikkö ei ole käytettävissä: {entity}",
+ "entity_unavailable": "{entity} ei ole tällä hetkellä käytettävissä",
+ "starting": "Home Assistant käynnistyy. Kaikki palvelut eivät välttämättä ole vielä saatavilla."
+ }
+ },
+ "mailbox": {
+ "delete_button": "Poista",
+ "delete_prompt": "Poistetaanko tämä viesti?",
+ "empty": "Sinulle ei ole yhtään viestiä",
+ "playback_title": "Toista viesti"
+ },
+ "map": {
+ "edit_zones": "Muokkaa alueita"
+ },
+ "my": {
+ "component_not_loaded": "Home Assistantisi ei tue tätä uudelleenohjausta. Tarvitset integroinnin {integration} käyttääksesi tätä uudelleenohjausta.",
+ "documentation": "dokumentaatio",
+ "error": "Tapahtui tuntematon virhe",
+ "faq_link": "Home Assistant UKK",
+ "no_supervisor": "Home Assistant -asennuksesi ei tue tätä uudelleenohjausta. Se vaatii joko Home Assistant -käyttöjärjestelmän tai Home Assistant Supervised -asennustavan. Lisätietoja on osoitteessa {docs_link} .",
+ "not_supported": "Home Assistantisi ei tue tätä uudelleenohjausta. Tarkista linkistä {link} tuetut uudelleenohjaukset ja versiot, joissa ne esiteltiin."
+ },
+ "page-authorize": {
+ "abort_intro": "Kirjautuminen on keskeytetty",
+ "authorizing_client": "Olet antamassa pääsyn {clientId} Home Assistant -ympäristöösi.",
+ "form": {
+ "error": "Virhe: {error}",
+ "next": "Kirjaudu sisään",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Istunto päättyi, ole hyvä ja kirjaudu uudelleen."
+ },
+ "error": {
+ "invalid_auth": "Virheellinen käyttäjätunnus tai salasana",
+ "invalid_code": "Virheellinen tunnistuskoodi"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Salasana",
+ "username": "Käyttäjätunnus"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Kaksivaiheinen tunnistuskoodi"
+ },
+ "description": "Avaa **{mfa_module_name}** laitteessasi nähdäksesi kaksivaiheisen tunnistautumisen koodisi ja vahvistaaksesi identiteettisi:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Istunto päättyi, ole hyvä ja kirjaudu uudelleen."
+ },
+ "error": {
+ "invalid_auth": "Virheellinen käyttäjätunnus tai salasana",
+ "invalid_code": "Väärä tunnistuskoodi"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Salasana",
+ "username": "Käyttäjätunnus"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Kaksivaiheinen tunnistuskoodi"
+ },
+ "description": "Avaa **{mfa_module_name}** laitteessasi nähdäksesi kaksivaiheisen tunnistautumisen koodisi ja vahvistaaksesi identiteettisi:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Istunto vanhentunut, ole hyvä ja kirjaudu uudelleen.",
+ "no_api_password_set": "API-salasanaa ei ole asetettu."
+ },
+ "error": {
+ "invalid_auth": "Virheellinen API-salasana",
+ "invalid_code": "Virheellinen tunnistautumiskoodi"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "API-salasana"
+ },
+ "description": "Ole hyvä ja syötä API-salasanasi http-asetuksissa:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Kaksivaiheinen tunnistuskoodi"
+ },
+ "description": "Avaa **{mfa_module_name}** laitteessasi nähdäksesi kaksivaiheisen tunnistautumisen koodisi ja vahvistaaksesi identiteettisi:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Tietokone ei ole sallittu."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Käyttäjä"
+ },
+ "description": "Valitse käyttäjä, jolla haluat kirjautua:"
+ }
+ }
+ }
+ },
+ "start_over": "Aloita alusta",
+ "unknown_error": "Jotain meni pieleen",
+ "working": "Ole hyvä ja odota"
+ },
+ "initializing": "Alustetaan",
+ "logging_in_to_with": "Kirjaudutaan kohteeseen **{locationName}** palvelulla **{authProviderName}**.",
+ "logging_in_with": "Kirjaudutaan sisään **{authProviderName}**.",
+ "pick_auth_provider": "Tai kirjaudu sisään joillakin seuraavista",
+ "store_token": "Pidä minut kirjautuneena sisään"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "kirjoittanut {name}",
+ "introduction": "Tervetuloa kotiin! Olet päätynyt Home Assistant -demoon, missä esittelemme yhteisömme parhaat käyttöliittymät.",
+ "learn_more": "Opi enemmän Home Assistantista",
+ "next_demo": "Seuraava demo"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Aktiviteetti",
+ "air": "Ilmastointi",
+ "commute_home": "Työmatka kotiin",
+ "entertainment": "Viihde",
+ "hdmi_input": "HDMI-tulo",
+ "hdmi_switcher": "HDMI-kytkin",
+ "information": "Tiedot",
+ "lights": "Valot",
+ "morning_commute": "Aamuinen työmatka",
+ "total_tv_time": "TV-aikaa yhteensä",
+ "turn_tv_off": "Sammuta televisio",
+ "volume": "Äänenvoimakkuus"
+ },
+ "names": {
+ "family_room": "Perhehuone",
+ "hallway": "Käytävä",
+ "kitchen": "Keittiö",
+ "left": "Vasen",
+ "master_bedroom": "Makuuhuone",
+ "mirror": "Peili",
+ "patio": "Terassi",
+ "right": "Oikea",
+ "temperature_study": "Lämpötilaoppi",
+ "upstairs": "Yläkerta"
+ },
+ "unit": {
+ "minutes_abbr": "min",
+ "watching": "katsomassa"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Seuraava"
+ },
+ "core-config": {
+ "button_detect": "Havaitse",
+ "finish": "Seuraava",
+ "intro": "Hei {name}, tervetuloa Home Assistant -käyttäjäksi. Kuinka haluaisit nimetä uuden kotisi?",
+ "intro_location": "Haluaisimme tietää, missä asut. Nämä tiedot auttavat näyttämään tietoja ja perustamaan aurinkoon perustuvia automaatioita. Näitä tietoja ei koskaan jaeta oman verkkosi ulkopuolelle.",
+ "intro_location_detect": "Voimme auttaa sinua täyttämään nämä tiedot tekemällä kertaluonteisen pyynnön ulkoiselle palvelulle.",
+ "location_name": "Home Assistant -asennuksen nimi",
+ "location_name_default": "Koti"
+ },
+ "finish": "Valmis",
+ "integration": {
+ "finish": "Valmis",
+ "intro": "Laitteet ja palvelut on esitetty Home Assistantissa integraatioina. Voit määrittää ne nyt tai tehdä sen myöhemmin asetus valikosta.",
+ "more_integrations": "Lisää"
+ },
+ "intro": "Oletko valmis herättämään kotisi eloon, palauttamaan yksityisyytesi ja liittymään maailmanlaajuiseen nikkarien joukkoon?",
+ "next": "Seuraava",
+ "restore": {
+ "addons": "Lisäosat",
+ "confirm_password": "Vahvista varmuuskopion salasana",
+ "description": "Vaihtoehtoisesti voit palauttaa aiemmasta varmuuskopiosta.",
+ "folders": "Kansiot",
+ "full_backup": "Täysi varmuuskopio",
+ "hide_log": "Piilota koko loki",
+ "in_progress": "Palautus käynnissä",
+ "partial_backup": "Osittainen varmuuskopio",
+ "password": "Varmuuskopion salasana",
+ "password_protection": "Salasanasuojaus",
+ "select_type": "Valitse palautettavat tiedot",
+ "show_log": "Näytä koko loki",
+ "type": "Varmuuskopion tyyppi"
+ },
+ "user": {
+ "create_account": "Luo tili",
+ "data": {
+ "name": "Nimi",
+ "password": "Salasana",
+ "password_confirm": "Vahvista salasana",
+ "username": "Käyttäjätunnus"
+ },
+ "error": {
+ "password_not_match": "Salasanat eivät täsmää",
+ "required_fields": "Täytä kaikki pakolliset kentät"
+ },
+ "intro": "Aloitetaan luomalla käyttäjätili.",
+ "required_field": "Edellytetään"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Home Assistant piilottaa lisäominaisuudet ja -asetukset oletuksena. Voit aktivoida nämä ominaisuudet painamalla tästä kytkimestä. Tämä on käyttäjäkohtainen asetus, eikä se vaikuta muihin Home Assistantia käyttäviin käyttäjiin.",
+ "link_promo": "Lisätietoja",
+ "title": "Lisäasetukset"
+ },
+ "change_password": {
+ "confirm_new_password": "Vahvista uusi salasana",
+ "current_password": "Nykyinen salasana",
+ "error_new_is_old": "Uuden salasanan on oltava eri kuin nykyinen salasana",
+ "error_new_mismatch": "Annetut uudet salasanat eivät täsmää",
+ "error_required": "Pakollinen",
+ "header": "Vaihda salasana",
+ "new_password": "Uusi salasana",
+ "submit": "Lähetä",
+ "success": "Salasana vaihdettu onnistuneesti"
+ },
+ "current_user": "Olet tällä hetkellä kirjautuneena tunnuksella {fullName}.",
+ "customize_sidebar": {
+ "button": "Muokkaa",
+ "description": "Voit myös aktivoida muokkaustilan pitämällä sivupalkin otsikkoa painettuna.",
+ "header": "Muuta järjestystä ja piiloita kohteita sivupalkista"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Yleiskatsaus (oletus)",
+ "description": "Valitse oletuskojelauta tälle laitteelle",
+ "dropdown_label": "Kojelauta",
+ "header": "Kojelauta"
+ },
+ "enable_shortcuts": {
+ "description": "Ota käyttöön tai poista käytöstä pikanäppäimet eri toimintojen suorittamiseksi käyttöliittymässä.",
+ "header": "Pikanäppäimet"
+ },
+ "force_narrow": {
+ "description": "Tämä piilottaa oletusarvoisesti sivupalkin, joka muistuttaa mobiilikokemusta.",
+ "header": "Piilota sivupalkki aina"
+ },
+ "is_owner": "Olet omistaja.",
+ "language": {
+ "dropdown_label": "Kieli",
+ "header": "Kieli",
+ "link_promo": "Auta kääntämään"
+ },
+ "logout": "Kirjaudu ulos",
+ "logout_text": "Haluatko varmasti kirjautua ulos?",
+ "logout_title": "Kirjaudu ulos",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Haluatko varmasti poistaa {name} käyttöoikeustunnuksen?",
+ "create": "Luo token",
+ "create_failed": "Käyttötunnussanoman luominen epäonnistui.",
+ "created": "Luotu {date}",
+ "delete_failed": "Käyttötunnussanoman poistaminen epäonnistui.",
+ "description": "Luo pitkäikäisiä käyttöoikeustunnuksia, jotta komentosarjasi voivat vuorovaikuttaa Home Assistantin kanssa. Tunnukset ovat voimassa 10 vuotta luonnista. Seuraavat pitkäikäiset käyttöoikeustunnukset ovat tällä hetkellä käytössä.",
+ "empty_state": "Sinulla ei ole vielä pitkäaikaisia käyttötunnussanomia",
+ "header": "Pitkäaikaiset käyttötunnussanomat",
+ "learn_auth_requests": "Opi tekemään tunnistautuneita kutsuja.",
+ "name": "Nimi",
+ "prompt_copy_token": "Kopioi käyttöoikeuskoodi. Sitä ei näytetä uudelleen.",
+ "prompt_name": "Nimi?"
+ },
+ "mfa": {
+ "confirm_disable": "Haluatko varmasti poistaa {name}?",
+ "disable": "Poista käytöstä",
+ "enable": "Ota käyttöön",
+ "header": "Monivaiheisen tunnistautumisen moduulit"
+ },
+ "mfa_setup": {
+ "close": "Sulje",
+ "step_done": "Asetus tehty {step}",
+ "submit": "Lähetä",
+ "title_aborted": "Keskeytetty",
+ "title_success": "Onnistui!"
+ },
+ "number_format": {
+ "description": "Valitse, miten luvut muotoillaan.",
+ "dropdown_label": "Numeromuoto",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Automaattinen (käytä kieliasetusta)",
+ "none": "Ei mitään",
+ "space_comma": "1 234 567,89",
+ "system": "Käytä järjestelmän asetusta"
+ },
+ "header": "Numeromuoto"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Laitteen nimi",
+ "title": "Miksi tätä laitetta tulisi kutsua?"
+ },
+ "description": "Lähetä ilmoitukset tälle laitteelle.",
+ "error_load_platform": "Määritä notify.html5-komponentti",
+ "error_use_https": "Vaatii SSL suojauksen",
+ "header": "Notifikaatiot",
+ "link_promo": "Lisätietoja",
+ "push_notifications": "Notifikaatiot"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Haluatko varmasti poistaa {name} päivitystunnuksen?",
+ "created_at": "Luotu {date}",
+ "current_token_tooltip": "Nykyistä päivitystunnusta ei voi poistaa",
+ "delete_failed": "Päivitystunnuksen poistaminen epäonnistui.",
+ "description": "Jokainen päivitystunnus edustaa kirjautumisistuntoa. Päivitystunnukset poistetaan automaattisesti, kun napautat Kirjaudu ulos. Seuraavat päivitystunnukset ovat parhaillaan käytössä tililläsi.",
+ "header": "Päivitä tokenit",
+ "last_used": "Viimeksi käytetty {date} sijainnista {location}",
+ "not_used": "Ei ole koskaan käytetty",
+ "token_title": "Päivitä tunnus kohteelle {clientId}"
+ },
+ "suspend": {
+ "description": "Suljetaanko yhteys palvelimeen 5 minuuttia piilottamisen jälkeen?",
+ "header": "Sulje yhteys automaattisesti"
+ },
+ "themes": {
+ "accent_color": "Korostusväri",
+ "dark_mode": {
+ "auto": "Automaattinen",
+ "dark": "Tumma",
+ "light": "Vaalea"
+ },
+ "dropdown_label": "Teema",
+ "error_no_theme": "Ei teemoja käytettävissä.",
+ "header": "Teema",
+ "link_promo": "Lisätietoja teemoista",
+ "primary_color": "Ensisijainen väri",
+ "reset": "Nollaa"
+ },
+ "time_format": {
+ "description": "Valitse, miten kellonajat muotoillaan.",
+ "dropdown_label": "Aikamuoto",
+ "formats": {
+ "12": "12-tuntinen (AM/PM)",
+ "24": "24-tuntinen",
+ "language": "Automaattinen (käytä kieliasetusta)",
+ "system": "Käytä järjestelmän asetusta"
+ },
+ "header": "Aikamuoto"
+ },
+ "vibrate": {
+ "description": "Ota tämän laitteen värinä käyttöön tai poista se käytöstä, kun ohjaat laitteita.",
+ "header": "Värinä"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Aloita keskustelu"
+ }
+ },
+ "sidebar": {
+ "done": "Valmis",
+ "external_app_configuration": "Sovelluksen määritykset",
+ "hide_panel": "Piilota paneeli",
+ "show_panel": "Näytä paneeli",
+ "sidebar_toggle": "Sivupalkin kytkin"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/fr.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/fr.json
new file mode 100644
index 00000000..b27d3c90
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/fr.json
@@ -0,0 +1,4662 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Paramètre de configuration",
+ "device": "Appareil",
+ "integration": "Intégration",
+ "user": "Utilisateur"
+ }
+ },
+ "groups": {
+ "owner": "Propriétaire",
+ "system-admin": "Administrateurs",
+ "system-read-only": "Utilisateurs en lecture seule",
+ "system-users": "Utilisateurs"
+ },
+ "panel": {
+ "calendar": "Calendrier",
+ "config": "Configuration",
+ "developer_tools": "Outils de développement",
+ "energy": "Énergie",
+ "history": "Historique",
+ "logbook": "Journal",
+ "mailbox": "Boîtes aux lettres",
+ "map": "Carte",
+ "media_browser": "Navigateur multimédia",
+ "profile": "Profil",
+ "shopping_list": "Liste de courses",
+ "states": "Aperçu"
+ },
+ "state": {
+ "default": {
+ "off": "Off",
+ "on": "On",
+ "unavailable": "Indisponible",
+ "unknown": "Inconnu"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Auto",
+ "off": "Inactif",
+ "on": "Actif"
+ },
+ "hvac_action": {
+ "cooling": "Refroidissement",
+ "drying": "Séchage",
+ "fan": "Ventilateur",
+ "heating": "En chauffe",
+ "idle": "Inactif",
+ "off": "Éteint"
+ },
+ "preset_mode": {
+ "activity": "Activité",
+ "away": "Absent",
+ "boost": "Renforcer",
+ "comfort": "Confort",
+ "eco": "Éco",
+ "home": "Présent",
+ "none": "Aucun",
+ "sleep": "Veille"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Auto",
+ "away": "Absent",
+ "baby": "Bébé",
+ "boost": "Boost",
+ "comfort": "Confort",
+ "eco": "Éco",
+ "home": "Présent",
+ "normal": "Normal",
+ "sleep": "Sommeil"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Activé",
+ "armed_away": "Activé",
+ "armed_custom_bypass": "Activé",
+ "armed_home": "Activé",
+ "armed_night": "Activé",
+ "armed_vacation": "Armé",
+ "arming": "Activer",
+ "disarmed": "Désactivé",
+ "disarming": "Désarmement",
+ "pending": "En cours",
+ "triggered": "Déclenchée"
+ },
+ "default": {
+ "entity_not_found": "Entité introuvable",
+ "error": "Erreur",
+ "unavailable": "Indispo.",
+ "unknown": "Inconnu"
+ },
+ "device_tracker": {
+ "home": "Présent",
+ "not_home": "Absent"
+ },
+ "person": {
+ "home": "Présent",
+ "not_home": "Absent"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Défaut",
+ "header": "Audio",
+ "input": "Entrée",
+ "output": "Sortie"
+ },
+ "network": {
+ "container": "Conteneur",
+ "disabled": "Désactivé",
+ "header": "Réseau",
+ "host": "Hôte"
+ },
+ "no_configuration": "Ce module complémentaire n'expose pas de configuration pour que vous puissiez jouer avec …",
+ "options": {
+ "edit_in_ui": "Modifier dans l'interface utilisateur",
+ "edit_in_yaml": "Modifier en tant que YAML",
+ "header": "Options",
+ "invalid_yaml": "YAML invalide",
+ "show_unused_optional": "Afficher les options non utilisées dans la configuration"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Impossible d'obtenir le journal des modifications du module complémentaire",
+ "go_to_config": "Échec du démarrage du module complémentaire - échec de la validation de la configuration!",
+ "install": "Échec de l'installation de l'extension",
+ "restart": "Échec du redémarrage de l'extension",
+ "start": "Échec du démarrage de l'extension",
+ "start_invalid_config": "Aller à la configuration",
+ "stop": "Échec de l'arrêt de l'extension",
+ "uninstall": "Échec de la désinstallation de l'extension",
+ "validate_config": "Échec de la validation de la configuration du module complémentaire"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor ('Application Armor') est un module de sécurité du noyau Linux qui restreint les capacités des modules complémentaires comme l'accès réseau, l'accès au socket brut et l'autorisation de lire, d'écrire ou d'exécuter des fichiers spécifiques. \n\n Les auteurs de modules complémentaires peuvent fournir leurs profils de sécurité, optimisés pour le module complémentaire, ou demander sa désactivation. Si AppArmor est désactivé, cela augmentera les risques de sécurité et, par conséquent, aura un impact négatif sur le score de sécurité du module complémentaire.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "Un module complémentaire peut authentifier les utilisateurs auprès de Home Assistant, permettant aux modules complémentaires de donner aux utilisateurs la possibilité de se connecter à des applications exécutées à l'intérieur de modules complémentaires, en utilisant leur nom d'utilisateur / mot de passe Home Assistant. Ce badge indique si l'auteur du module complémentaire demande cette capacité.",
+ "title": "Authentification de l'assistant domestique"
+ },
+ "docker_api": {
+ "description": "L'auteur du module complémentaire a demandé au module complémentaire d'avoir un accès de gestion à l'instance Docker exécutée sur votre système. Ce mode donne au module complémentaire un accès et un contrôle complets à l'ensemble de votre système Home Assistant, ce qui ajoute des risques de sécurité et peut endommager votre système en cas d'utilisation abusive. Par conséquent, cette fonctionnalité a un impact négatif sur le score de sécurité du module complémentaire. \n\n Ce niveau d'accès n'est pas accordé automatiquement et doit être confirmé par vous. Pour ce faire, vous devez désactiver manuellement le mode de protection sur le module complémentaire. Ne désactivez le mode de protection que si vous connaissez, avez besoin ET faites confiance à la source de ce module complémentaire.",
+ "title": "Accès complet à Docker"
+ },
+ "full_access": {
+ "description": "Ce module complémentaire bénéficie d'un accès complet au matériel de votre système, à la demande de l'auteur du module complémentaire. L'accès est comparable au mode privilégié dans Docker. Étant donné que cela ouvre des risques de sécurité possibles, cette fonctionnalité a un impact négatif sur le score de sécurité du module complémentaire. \n\n Ce niveau d'accès n'est pas accordé automatiquement et doit être confirmé par vous. Pour ce faire, vous devez désactiver manuellement le mode de protection sur le module complémentaire. Ne désactivez le mode de protection que si vous connaissez, avez besoin ET faites confiance à la source de ce module complémentaire.",
+ "title": "Accès complet au matériel"
+ },
+ "hassio_api": {
+ "description": "Le module complémentaire a eu accès à l'API du Superviseur, à la demande de l'auteur du module complémentaire. Par défaut, le module complémentaire peut accéder aux informations générales sur la version de votre système. Lorsque le module complémentaire demande un accès de niveau \"gestionnaire\" ou \"administrateur\" à l'API, il aura accès pour contrôler plusieurs parties de votre système Home Assistant. Cette autorisation est indiquée par ce badge et aura un impact négatif sur le score de sécurité du module complémentaire.",
+ "title": "Accès à l'API du Superviseur"
+ },
+ "homeassistant_api": {
+ "description": "Ce module complémentaire est autorisé à accéder à votre instance Home Assistant en cours d'exécution directement via l'API Home Assistant. Ce mode gère également l'authentification pour le module complémentaire, ce qui permet à un module complémentaire d'interagir avec Home Assistant sans avoir besoin de jetons d'authentification supplémentaires.",
+ "title": "Accès à l'API Home Assistant"
+ },
+ "host_network": {
+ "description": "Les modules complémentaires s'exécutent généralement dans leur propre couche réseau isolée, ce qui les empêche d'accéder au réseau du système d'exploitation hôte. Dans certains cas, cette isolation du réseau peut limiter les modules complémentaires dans la fourniture de leurs services et, par conséquent, l'isolement peut être levé par l'auteur du module complémentaire, donnant au module complémentaire un accès complet aux capacités réseau de la machine hôte. Cela donne au module complémentaire plus de capacités de mise en réseau mais réduit la sécurité, par conséquent, la cote de sécurité du module complémentaire sera réduite lorsque cette option est utilisée par le module complémentaire.",
+ "title": "Réseau hôte"
+ },
+ "host_pid": {
+ "description": "Habituellement, les processus exécutés par le module complémentaire sont isolés de tous les autres processus système. L'auteur du module complémentaire a demandé au module complémentaire d'avoir accès aux processus système s'exécutant sur l'instance du système hôte et de permettre au module complémentaire de générer également des processus sur le système hôte. Ce mode donne au module complémentaire un accès et un contrôle complets à l'ensemble de votre système Home Assistant, ce qui ajoute des risques de sécurité et peut endommager votre système en cas d'utilisation abusive. Par conséquent, cette fonctionnalité a un impact négatif sur le score de sécurité du module complémentaire. \n\n Ce niveau d'accès n'est pas accordé automatiquement et doit être confirmé par vous. Pour ce faire, vous devez désactiver manuellement le mode de protection sur le module complémentaire. Ne désactivez le mode de protection que si vous connaissez, avez besoin ET faites confiance à la source de ce module complémentaire.",
+ "title": "Espace de noms des processus hôtes"
+ },
+ "ingress": {
+ "description": "Ce module complémentaire utilise Ingress pour intégrer son interface en toute sécurité dans Home Assistant.",
+ "title": "Entrée"
+ },
+ "label": {
+ "apparmor": "Apparmor",
+ "auth": "auth",
+ "core": "Coeur",
+ "docker": "docker",
+ "hardware": "Matériel",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "Hôte",
+ "host_pid": "hôte pid",
+ "ingress": "entrée",
+ "rating": "notation",
+ "stage": "Étape"
+ },
+ "rating": {
+ "description": "Home Assistant fournit une cote de sécurité à chacun des modules complémentaires, qui indique les risques encourus lors de l'utilisation de ce module complémentaire. Plus un module complémentaire a besoin d'accès à votre système, plus le score est bas, augmentant ainsi les risques de sécurité potentiels. \n\n Un score est sur une échelle de 1 à 6. Où 1 est le score le plus bas (considéré comme le plus dangereux et le plus risqué) et un score de 6 est le score le plus élevé (considéré comme le plus sûr et le plus faible risque).",
+ "title": "Évaluation de sécurité de l'extension"
+ },
+ "role": {
+ "admin": "admin",
+ "backup": "sauvegarde",
+ "default": "Défaut",
+ "homeassistant": "homeassistant",
+ "manager": "gestionnaire"
+ },
+ "stage": {
+ "description": "Les modules complémentaires peuvent comporter l'une des trois étapes suivantes: \n\n {icon_stable} ** Stable **: il s'agit de modules complémentaires prêts à être utilisés en production. \n\n {icon_experimental} ** Expérimental **: Ceux-ci peuvent contenir des bogues et peuvent être inachevés. \n\n {icon_deprecated} ** Obsolète **: ces modules complémentaires ne recevront plus de mises à jour.",
+ "title": "Étape complémentaire"
+ },
+ "stages": {
+ "deprecated": "Obsolète",
+ "experimental": "Expérimental"
+ }
+ },
+ "changelog": "Journal des modifications",
+ "cpu_usage": "Utilisation CPU de l'extension",
+ "hostname": "Nom d'hôte",
+ "install": "installer",
+ "new_update_available": "{name} {version} est disponible",
+ "not_available_arch": "Ce module complémentaire n'est pas compatible avec le processeur de votre appareil ou le système d'exploitation que vous avez installé sur votre appareil.",
+ "not_available_version": "Votre Home Assistant est en version {core_version_installed}, pour mettre à jour ce module complémentaire, vous devez êtes au minimum en version {core_version_needed} de Home Assistant",
+ "open_web_ui": "Ouvrir l'interface utilisateur Web",
+ "option": {
+ "auto_update": {
+ "description": "Mettre à jour automatiquement le module complémentaire lorsqu'une nouvelle version est disponible",
+ "title": "Mise à jour automatique"
+ },
+ "boot": {
+ "description": "Faire démarrer le module complémentaire lors du démarrage du système",
+ "title": "Lancer au démarrage"
+ },
+ "ingress_panel": {
+ "description": "Ajoutez l'extension à la barre latérale",
+ "title": "Afficher dans la barre latérale"
+ },
+ "protected": {
+ "description": "Bloque l'accès élevé au système depuis le module complémentaire",
+ "title": "Mode protégé"
+ },
+ "watchdog": {
+ "description": "Cela démarrera l'extension en cas de panne",
+ "title": "Chien de garde"
+ }
+ },
+ "protection_mode": {
+ "content": "Le mode de protection de ce module complémentaire est désactivé! Cela donne au module complémentaire un accès complet à l'ensemble du système, ce qui ajoute des risques de sécurité et peut endommager votre système s'il est utilisé de manière incorrecte. Ne désactivez le mode de protection que si vous connaissez, avez besoin ET faites confiance à la source de ce module complémentaire.",
+ "enable": "Activer",
+ "title": "Le mode protection est désactivé !"
+ },
+ "ram_usage": "Utilisation de la RAM de l'extension",
+ "rebuild": "reconstruire",
+ "restart": "redémarrer",
+ "start": "démarrer",
+ "stop": "arrêter",
+ "uninstall": "désinstaller",
+ "visit_addon_page": "Visitez la page {name} pour plus de détails"
+ },
+ "documentation": {
+ "get_documentation": "Échec de l'obtention de la documentation du module complémentaire, {error}"
+ },
+ "failed_to_reset": "Échec de la réinitialisation de la configuration du module complémentaire, {error}",
+ "failed_to_save": "Échec de l'enregistrement de la configuration du module complémentaire, {error}",
+ "logs": {
+ "get_logs": "Échec de l'obtention des journaux du module complémentaire, {error}"
+ },
+ "panel": {
+ "configuration": "Configuration",
+ "documentation": "Documentation",
+ "info": "Info",
+ "log": "Journal"
+ },
+ "state": {
+ "installed": "Le module complémentaire est installé",
+ "not_available": "L'extension n'est pas disponible sur votre système",
+ "not_installed": "Le module complémentaire n'est pas installé"
+ }
+ },
+ "backup": {
+ "addons": "Modules complémentaires",
+ "confirm_password": "Confirmez le mot de passe de la sauvegarde",
+ "could_not_create": "Impossible de créer une sauvegarde",
+ "create": "Créer",
+ "create_backup": "Créer une sauvegarde",
+ "create_blocked_not_running": "La création d’une sauvegarde n’est pas possible en ce moment car le système est en état {state}.",
+ "created": "créé",
+ "delete_backup_confirm": "Supprimer",
+ "delete_backup_text": "Voulez-vous supprimer {number} {number, plural,\n one {sauvegarde}\n other {sauvegardes}\n} ?",
+ "delete_backup_title": "Supprimer la sauvegarde",
+ "delete_selected": "Supprimer les sauvegardes sélectionnées",
+ "enter_password": "Veuillez entrer un mot de passe.",
+ "failed_to_delete": "Échec de la suppression",
+ "folders": "Dossiers",
+ "full_backup": "Sauvegarde complète",
+ "name": "Nom de la sauvegarde",
+ "no_backups": "Vous n'avez pas encore de sauvegardes.",
+ "partial_backup": "Sauvegarde partielle",
+ "password": "Mot de passe de la sauvegarde",
+ "password_protection": "Protection par mot de passe",
+ "passwords_not_matching": "Les mots de passe ne correspondent pas",
+ "select_type": "Sélectionnez ce qu'il faut restaurer",
+ "selected": "{number} sélectionné",
+ "size": "Taille",
+ "type": "Type de sauvegarde",
+ "upload_backup": "Téléverser une sauvegarde"
+ },
+ "common": {
+ "cancel": "Annuler",
+ "close": "Fermer",
+ "description": "Description",
+ "error": {
+ "unknown": "Erreur inconnue",
+ "update_failed": "La mise à jour a échoué"
+ },
+ "failed_to_restart_name": "Échec du redémarrage de {name}",
+ "failed_to_update_name": "Échec de la mise à jour de {name}",
+ "learn_more": "En savoir plus",
+ "menu": "Menu",
+ "new_version_available": "Nouvelle version disponible",
+ "newest_version": "Version la plus récente",
+ "no": "Non",
+ "refresh": "Actualiser",
+ "release_notes": "Notes de version",
+ "reload": "Recharger",
+ "reset_defaults": "Réinitialiser la configuration",
+ "reset_options": "Réinitialiser les options",
+ "restart": "Redémarrer",
+ "restart_name": "Redémarrer {name}",
+ "review": "voir",
+ "running_version": "Vous utilisez actuellement la version {version}",
+ "save": "Sauvegarder",
+ "show": "afficher",
+ "show_more": "Afficher plus d'informations à ce sujet",
+ "update": "Mise à jour",
+ "update_available": "{count, plural,\n one {Mise à jour en attente}\n other {{count} mises à jour en attente}\n}",
+ "version": "Version",
+ "yes": "Oui"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Êtes-vous sûr de vouloir réinitialiser toutes vos options ?",
+ "title": "Réinitialiser les options"
+ },
+ "restart": {
+ "text": "Êtes-vous sûr de vouloir redémarrer {name}?",
+ "title": "Redémarre {name}"
+ },
+ "update": {
+ "text": "Êtes-vous sûr de vouloir mettre à jour {name} vers {version}?",
+ "title": "Mettre à jour {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Nouvelle version disponible",
+ "addon_running": "Le module complémentaire fonctionne",
+ "addon_stopped": "Le module complémentaire est arrêté",
+ "addons": "Modules complémentaires installés",
+ "no_addons": "Vous n'avez pas encore installé de modules complémentaires. Rendez-vous dans la boutique des modules complémentaires pour commencer!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Annuler",
+ "description": "Vous utilisez actuellement '' {current_path} '' comme disque de données. Le déplacement des disques de données va redémarrer votre appareil et cela devrait prendre {time} minutes. Home Assistant ne sera pas accessible pendant cette période. Ne débranchez pas l'alimentation pendant le déplacement !",
+ "loading_devices": "Chargement des appareils",
+ "move": "Déplacer",
+ "moving": "Déplacement du disque de données",
+ "moving_desc": "Redémarrage et déplacement du disque de données. S’il vous plaît ayez de la patience",
+ "no_devices": "Aucun périphérique connecté approprié trouvé",
+ "select_device": "Sélectionner un nouveau disque de données",
+ "title": "Déplacer le disque de données"
+ },
+ "hardware": {
+ "attributes": "Attributs",
+ "device_path": "Chemin du dispositif",
+ "id": "Identifiant",
+ "search": "Recherche de matériel",
+ "subsystem": "Sous-système",
+ "title": "Matériel informatique"
+ },
+ "network": {
+ "connected_to": "Connecté à {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Désactivé",
+ "dns_servers": "Serveurs DNS",
+ "failed_to_change": "Échec de la modification des paramètres réseaux",
+ "gateway": "Adresse de la passerelle",
+ "ip_netmask": "Adresse IP / masque réseau",
+ "open": "Ouvrir",
+ "scan_ap": "Rechercher les points d'accès",
+ "static": "Statique",
+ "title": "Paramètres réseaux",
+ "unsaved": "Vous avez des modifications non enregistrées, elles seront perdues si vous changez d'onglet, voulez-vous continuer?",
+ "warning": "Si vous modifiez les adresses Wi-Fi, IP ou de passerelle, vous risquez de perdre la connexion!",
+ "wep": "WEP",
+ "wpa": "wpa-psk"
+ },
+ "registries": {
+ "add_new_registry": "Ajouter un nouveau registre",
+ "add_registry": "Ajouter un registre",
+ "failed_to_add": "Échec de l'ajout du registre",
+ "failed_to_remove": "Échec de la suppression du registre",
+ "no_registries": "Aucun registre configuré",
+ "password": "Mot de passe",
+ "registry": "Registre",
+ "remove": "Supprimer",
+ "title_add": "Ajouter un nouveau registre de conteneurs",
+ "title_manage": "Gérer les registres de conteneurs",
+ "username": "Nom d'utilisateur"
+ },
+ "repositories": {
+ "add": "Ajouter",
+ "remove": "Supprimer",
+ "title": "Gérer les référentiels de modules complémentaires",
+ "used": "Le référentiel est utilisé pour les modules complémentaires installés et ne peut pas être supprimé."
+ },
+ "restart_addon": {
+ "confirm_text": "Redémarrer le module complémentaire",
+ "text": "Voulez-vous redémarrer le module complémentaire avec vos modifications?"
+ },
+ "update": {
+ "backup": "Sauvegarde",
+ "create_backup": "Créer une sauvegarde de {name} avant la mise à jour",
+ "creating_backup": "Création d'une sauvegarde de {name}",
+ "updating": "Mise à jour de {name} vers la version {version}"
+ }
+ },
+ "my": {
+ "error": "Une erreur inconnue s'est produite",
+ "error_addon_no_ingress": "L’add-on demandé ne prend pas en charge l’entrée",
+ "error_addon_not_found": "Module complémentaire introuvable",
+ "error_addon_not_installed": "Le module complémentaire demandé n'est pas installé. Veuillez l'installer d'abord",
+ "error_addon_not_started": "Le module complémentaire demandé n'est pas en cours d'exécution. Veuillez le lancer d'abord",
+ "faq_link": "FAQ de My Home Assistant",
+ "not_supported": "Cette redirection n'est pas prise en charge par votre instance Home Assistant. Vérifiez le {link} pour les redirections prises en charge et la version dans laquelle elles ont été introduites."
+ },
+ "panel": {
+ "addons": "Modules complémentaires",
+ "backups": "Sauvegardes",
+ "dashboard": "Tableau de bord",
+ "store": "Boutique des modules complémentaires",
+ "system": "Système"
+ },
+ "store": {
+ "check_updates": "Rechercher des mises à jour…",
+ "missing_addons": "Modules complémentaires manquants? Activer le mode avancé dans votre page de profil utilisateur",
+ "no_results_found": "Aucun résultat trouvé dans {repository}.",
+ "registries": "Registres",
+ "repositories": "Dépôts"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Utilisation du processeur principal",
+ "ram_usage": "Utilisation de la RAM principale"
+ },
+ "host": {
+ "change": "Changer",
+ "change_hostname": "Changer le nom de l'hôte",
+ "confirm_reboot": "Êtes-vous sûr de vouloir redémarrer l'hôte ?",
+ "confirm_shutdown": "Êtes-vous sûr de vouloir arrêter l'hôte ?",
+ "deployment": "Déploiement",
+ "docker_version": "Version Docker",
+ "emmc_lifetime_used": "Durée de vie de l'eMMC utilisée",
+ "failed_to_get_hardware_list": "Impossible d'obtenir la liste du matériel",
+ "failed_to_import_from_usb": "Impossible d'importer à partir de l'USB",
+ "failed_to_move": "Échec du déplacement du disque de données",
+ "failed_to_reboot": "Échec du redémarrage du système.",
+ "failed_to_set_hostname": "Échec du paramétrage du nom de la machine",
+ "failed_to_shutdown": "Échec de l'arrêt du système",
+ "hardware": "Matériel",
+ "hostname": "Nom d'hôte",
+ "import_from_usb": "Importer depuis USB",
+ "ip_address": "Adresse IP",
+ "move_datadisk": "Déplacer le disque de données",
+ "new_hostname": "Veuillez saisir un nouveau nom d'hôte:",
+ "operating_system": "Système d'exploitation",
+ "reboot_host": "Redémarrer l'hôte",
+ "shutdown_host": "Arrêter l'hôte",
+ "used_space": "Espace utilisé"
+ },
+ "log": {
+ "get_logs": "Échec de l'obtention des journaux de {provider} {error}",
+ "log_provider": "Fournisseur de journaux"
+ },
+ "supervisor": {
+ "beta_backup": "Assurez-vous d'avoir des sauvegardes de vos données avant d'activer cette fonctionnalité.",
+ "beta_join_confirm": "Voulez-vous rejoindre le canal bêta?",
+ "beta_release_items": "Cela inclut les versions bêta pour:",
+ "beta_warning": "Les versions bêta sont destinées aux testeurs et aux utilisateurs précoces et peuvent contenir des modifications de code instables",
+ "channel": "Canal",
+ "cpu_usage": "Utilisation du processeur par le Superviseur",
+ "failed_to_reload": "Échec de la mise à jour du Superviseur",
+ "failed_to_set_option": "Échec lors du paramétrage de l'option du Superviseur",
+ "failed_to_update": "Échec de la mise à jour du Superviseur",
+ "join_beta_action": "Rejoignez le canal bêta",
+ "join_beta_description": "Obtenez des mises à jour bêta pour Home Assistant (RCs), Superviseur et l'hôte",
+ "leave_beta_action": "Quitter le canal bêta",
+ "leave_beta_description": "Obtenez des mises à jour stables pour l'assistant domestique, le Superviseur et l'hôte",
+ "ram_usage": "Utilisation de la RAM du Superviseur",
+ "reload_supervisor": "Recharger le Superviseur",
+ "search": "Recherche",
+ "share_diagnostics": "Partager les diagnostics",
+ "share_diagnostics_description": "Partagez les rapports d'incident et les informations de diagnostic.",
+ "share_diagonstics_description": "Souhaitez-vous partager automatiquement les rapports d'erreur et les informations de diagnostic lorsque le Superviseur rencontre des erreurs inattendues? {line_break} Cela nous permettra de résoudre les problèmes, les informations ne sont accessibles qu'à l'équipe Home Assistant Core et ne seront pas partagées avec d'autres. {line_break} Les données n'incluent aucune information privée / sensible et vous pouvez désactiver cela dans les paramètres à tout moment.",
+ "share_diagonstics_title": "Aider à améliorer Home Assistant",
+ "unhealthy_description": "L'exécution d'une installation défectueuse entraînera des problèmes. Vous trouverez ci-dessous une liste des problèmes rencontrés avec votre installation, cliquez sur les liens pour savoir comment vous pouvez résoudre les problèmes.",
+ "unhealthy_reason": {
+ "docker": "L'environnement Docker ne fonctionne pas correctement",
+ "privileged": "Le Superviseur n'est pas privilégié",
+ "setup": "La configuration du Superviseur a échoué",
+ "supervisor": "Le Superviseur ne peut pas mettre à jour",
+ "untrusted": "Contenu non approuvé détecté"
+ },
+ "unhealthy_title": "Votre installation est défectueuse",
+ "unsupported_description": "Vous trouverez ci-dessous une liste des problèmes rencontrés avec votre installation, cliquez sur les liens pour savoir comment vous pouvez résoudre les problèmes.",
+ "unsupported_reason": {
+ "apparmor": "AppArmor n'est pas activé sur l'hôte",
+ "container": "Conteneurs connus pour causer des problèmes",
+ "content-trust": "La validation de la confiance du contenu est désactivée",
+ "content_trust": "La validation de confiance de contenu est désactivée",
+ "dbus": "DBUS",
+ "docker_configuration": "Configuration de Docker",
+ "docker_version": "Version Docker",
+ "job_conditions": "Conditions de travail ignorées",
+ "lxc": "LXC",
+ "network_manager": "Gestionnaire de réseaux",
+ "os": "Système d'exploitation",
+ "os_agent": "Agent OS",
+ "privileged": "Le Superviseur n'est pas privilégié",
+ "software": "Logiciel non pris en charge détecté",
+ "source_mods": "Modifications de sources",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Vous exécutez une installation non prise en charge",
+ "update_supervisor": "Mettre à jour Superviseur",
+ "warning": "AVERTISSEMENT"
+ }
+ },
+ "update_available": {
+ "core_note": "Le superviseur reviendra à la version {version} si votre instance ne s'affiche pas après la mise à jour.",
+ "create_backup": "Créer une sauvegarde avant la mise à jour",
+ "creating_backup": "Création d'une sauvegarde de {name}",
+ "description": "Vous avez la version {version} installée. Cliquez sur mise à jour pour passer à la version {newest_version}",
+ "no_update": "Aucune mise à jour disponible pour {name}",
+ "open_release_notes": "Ouvrir les notes de version",
+ "update_name": "Mettre à jour {name}",
+ "updating": "Mise à jour de {name} vers la version {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Voulez-vous enregistrer cette connexion?",
+ "confirm": "Connexion automatique",
+ "decline": "Non merci"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Armer (absent)",
+ "arm_custom_bypass": "Bypass personnalisé",
+ "arm_home": "Armer (présent)",
+ "arm_night": "Armer nuit",
+ "arm_vacation": "Armer vacances",
+ "clear_code": "Effacer",
+ "code": "Code",
+ "disarm": "Désarmer"
+ },
+ "area": {
+ "area_not_found": "Zone non trouvée."
+ },
+ "automation": {
+ "last_triggered": "Dernier déclenchement",
+ "trigger": "Exécuter"
+ },
+ "button": {
+ "press": "Appui"
+ },
+ "camera": {
+ "not_available": "Image non disponible"
+ },
+ "climate": {
+ "aux_heat": "Chauffage d'appoint",
+ "away_mode": "Mode \"Absent\"",
+ "cooling": "{name} refroidissement",
+ "current_temperature": "{name} température actuelle",
+ "currently": "Actuellement",
+ "fan_mode": "Mode de ventilation",
+ "heating": "{name} chauffage",
+ "high": "haute",
+ "low": "basse",
+ "on_off": "On / off",
+ "operation": "Opération",
+ "preset_mode": "Préréglage",
+ "swing_mode": "Mode de balancement",
+ "target_humidity": "Humidité cible",
+ "target_temperature": "Température cible",
+ "target_temperature_entity": "{name} température cible",
+ "target_temperature_mode": "{name} température cible {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "décrémenter",
+ "increment": "incrémenter",
+ "reset": "réinitialiser"
+ }
+ },
+ "cover": {
+ "position": "Position",
+ "tilt_position": "Inclinaison"
+ },
+ "fan": {
+ "direction": "Direction",
+ "forward": "En avant",
+ "oscillate": "Osciller",
+ "preset_mode": "Mode préréglé",
+ "reverse": "Sens inverse",
+ "speed": "Vitesse"
+ },
+ "humidifier": {
+ "humidity": "Humidité cible",
+ "mode": "Mode",
+ "on_entity": "{name} on",
+ "target_humidity_entity": "{name} humidité cible"
+ },
+ "light": {
+ "brightness": "Luminosité",
+ "cold_white_value": "Luminosité du blanc froid",
+ "color_brightness": "Luminosité de la couleur",
+ "color_temperature": "Température de couleur",
+ "effect": "Effet",
+ "warm_white_value": "Luminosité du blanc chaud",
+ "white_value": "Niveau de blanc"
+ },
+ "lock": {
+ "code": "Code",
+ "lock": "Verrouiller",
+ "unlock": "Déverrouiller"
+ },
+ "media_player": {
+ "browse_media": "Parcourir les médias",
+ "media_next_track": "Suivant",
+ "media_pause": "Pause",
+ "media_play": "Lecture",
+ "media_play_pause": "Lecture/pause",
+ "media_previous_track": "Précédent",
+ "media_stop": "Stop",
+ "media_volume_down": "Volume bas",
+ "media_volume_mute": "Volume muet",
+ "media_volume_unmute": "Volume désactivé",
+ "media_volume_up": "Volume haut",
+ "nothing_playing": "Rien en cours de lecture",
+ "sound_mode": "Mode sonore",
+ "source": "Source",
+ "text_to_speak": "Texte à lire",
+ "turn_off": "Éteindre",
+ "turn_on": "Allumer"
+ },
+ "persistent_notification": {
+ "dismiss": "Ignorer"
+ },
+ "scene": {
+ "activate": "Activer"
+ },
+ "script": {
+ "cancel": "Annuler",
+ "cancel_multiple": "Annuler {number}",
+ "run": "Exécuter"
+ },
+ "service": {
+ "run": "Exécuter"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "annuler",
+ "finish": "terminer",
+ "pause": "pause",
+ "start": "démarrer"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Reprendre le nettoyage",
+ "return_to_base": "Retourner à la base",
+ "start_cleaning": "Commencer à nettoyer",
+ "turn_off": "Éteindre",
+ "turn_on": "Allumer"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Mode \"Absent\"",
+ "currently": "Actuellement",
+ "on_off": "Marche / Arrêt",
+ "operation": "Opération",
+ "target_temperature": "Température cible"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Pression atmosphérique",
+ "humidity": "Humidité",
+ "precipitation": "Précipitation",
+ "temperature": "Température",
+ "visibility": "Visibilité",
+ "wind_speed": "Vitesse du vent"
+ },
+ "cardinal_direction": {
+ "e": "E",
+ "ene": "E-NE",
+ "ese": "E-SE",
+ "n": "N",
+ "ne": "NE",
+ "nne": "N-NE",
+ "nnw": "N-NO",
+ "nw": "NO",
+ "s": "S",
+ "se": "SE",
+ "sse": "S-SE",
+ "ssw": "S-SO",
+ "sw": "SO",
+ "w": "O",
+ "wnw": "O-NO",
+ "wsw": "O-SO"
+ },
+ "day": "Jour",
+ "forecast": "Prévisions",
+ "high": "Haute",
+ "low": "Faible",
+ "night": "Nuit"
+ }
+ },
+ "common": {
+ "and": "et",
+ "back": "Retour",
+ "cancel": "Annuler",
+ "clear": "Effacer",
+ "close": "Fermer",
+ "continue": "Continuer",
+ "copied": "Copié",
+ "copied_clipboard": "Copié dans le presse-papier",
+ "delete": "Supprimer",
+ "disable": "Désactiver",
+ "enable": "Activer",
+ "error_required": "Obligatoire",
+ "help": "Aide",
+ "leave": "Quitter",
+ "loading": "Chargement",
+ "menu": "Menu",
+ "move": "Déplacer",
+ "next": "Suivant",
+ "no": "Non",
+ "not_now": "Pas maintenant",
+ "overflow_menu": "Menu de débordement",
+ "previous": "Précédent",
+ "refresh": "Rafraîchir",
+ "remove": "Supprimer",
+ "rename": "Renommer",
+ "save": "Enregistrer",
+ "skip": "Passer",
+ "stay": "Rester",
+ "submit": "Soumettre",
+ "successfully_deleted": "Supprimé avec succès",
+ "successfully_saved": "Enregistré avec succès",
+ "undo": "Annuler",
+ "yes": "Oui"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Modules complémentaires",
+ "error": {
+ "fetch_addons": {
+ "description": "La récupération des modules complémentaires a renvoyé une erreur.",
+ "title": "Erreur lors de la récupération des modules complémentaires"
+ },
+ "no_supervisor": {
+ "description": "Aucun Superviseur n'a été trouvé, donc les modules complémentaires n'ont pas pu être chargés.",
+ "title": "Aucun Superviseur"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Ajouter",
+ "failed_create_area": "Échec de la création de la pièce.",
+ "name": "Nom",
+ "text": "Entrez le nom de la nouvelle pièce.",
+ "title": "Ajouter une pièce"
+ },
+ "add_new": "Ajouter une pièce…",
+ "area": "Pièce",
+ "clear": "Effacer",
+ "no_areas": "Vous n'avez pas de pièce",
+ "no_match": "Aucune pièce correspondante trouvée",
+ "show_areas": "Afficher les pièces"
+ },
+ "attributes": {
+ "expansion_header": "Attributs"
+ },
+ "blueprint-picker": {
+ "add_user": "Ajouter un utilisateur",
+ "remove_user": "Supprimer l'utilisateur",
+ "select_blueprint": "Sélectionnez un Blueprint"
+ },
+ "calendar": {
+ "my_calendars": "Mes calendriers",
+ "today": "Aujourd'hui"
+ },
+ "data-table": {
+ "clear": "Effacer",
+ "filtering_by": "Filtrer par",
+ "hidden": "{number} masqué",
+ "no-data": "Pas de données",
+ "search": "Chercher"
+ },
+ "date-range-picker": {
+ "end_date": "Date de fin",
+ "ranges": {
+ "last_week": "La semaine dernière",
+ "this_week": "Cette semaine",
+ "today": "Aujourd'hui",
+ "yesterday": "Hier"
+ },
+ "select": "Sélectionner",
+ "start_date": "Date de début"
+ },
+ "device-picker": {
+ "clear": "Effacer",
+ "device": "Appareil",
+ "no_area": "Pas de zone",
+ "no_devices": "Vous n'avez aucun appareil",
+ "no_match": "Aucun appareil correspondant trouvé",
+ "show_devices": "Afficher les appareils",
+ "toggle": "Permuter"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Attribut",
+ "show_attributes": "Afficher les attributs"
+ },
+ "entity-picker": {
+ "clear": "Effacer",
+ "edit": "Modifier",
+ "entity": "Entité",
+ "no_match": "Aucune entité correspondante trouvée",
+ "show_entities": "Afficher les entités"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "Intégration historique désactivée",
+ "loading_history": "Chargement de l'historique des valeurs…",
+ "no_history_found": "Aucun historique des valeurs trouvé."
+ },
+ "logbook": {
+ "by": "par",
+ "by_service": "par le service",
+ "entries_not_found": "Aucune entrée trouvée dans le journal.",
+ "messages": {
+ "became_unavailable": "est devenu indisponible",
+ "changed_to_state": "changé en {state}.",
+ "cleared_device_class": "effacé (aucun {device_class} détecté)",
+ "cleared_tampering": "Anti-sabotage réinitialisé",
+ "detected_device_class": "détecté {device_class}",
+ "detected_tampering": "Sabotage détecté",
+ "is_closing": "se ferme",
+ "is_opening": "s'ouvre",
+ "rose": "s'est levé",
+ "set": "s'est couché",
+ "turned_off": "éteint",
+ "turned_on": "activé",
+ "was_at_home": "a été détecté à la maison",
+ "was_at_state": "a été détecté à {state}",
+ "was_away": "a été détecté absent",
+ "was_closed": "était fermé",
+ "was_connected": "était connecté",
+ "was_disconnected": "était déconnecté",
+ "was_locked": "Était verrouillé",
+ "was_low": "était faible",
+ "was_normal": "était normal",
+ "was_opened": "était ouvert",
+ "was_plugged_in": "était branché",
+ "was_safe": "était sûr",
+ "was_unlocked": "Était déverrouillé",
+ "was_unplugged": "était débranché",
+ "was_unsafe": "n'était pas sûr"
+ },
+ "retrieval_error": "Erreur lors de la récupération d'une entrée du journal",
+ "show_trace": "Afficher la trace"
+ },
+ "media-browser": {
+ "audio_not_supported": "Votre navigateur ne prend pas en charge l'élément audio.",
+ "choose_player": "Choisissez le lecteur",
+ "class": {
+ "album": "Album",
+ "app": "App",
+ "artist": "Artiste",
+ "channel": "Canal",
+ "composer": "Compositeur",
+ "contributing_artist": "Artiste collaborateur",
+ "directory": "Bibliothèque",
+ "episode": "Épisode",
+ "game": "Jeu",
+ "genre": "Genre",
+ "image": "Image",
+ "movie": "Film",
+ "music": "Musique",
+ "playlist": "Liste de lecture",
+ "podcast": "Podcast",
+ "season": "Saison",
+ "track": "Piste",
+ "tv_show": "Émission de télévision",
+ "url": "URL",
+ "video": "Vidéo"
+ },
+ "documentation": "documentation",
+ "learn_adding_local_media": "En savoir plus sur l'ajout de médias dans la {documentation} .",
+ "local_media_files": "Placez vos fichiers vidéo, audio et image dans le répertoire multimédia pour pouvoir les parcourir et les lire dans le navigateur ou sur les lecteurs multimédias pris en charge.",
+ "media-player-browser": "Lecteur multimédia",
+ "media_browsing_error": "Erreur de navigation multimédia",
+ "media_not_supported": "Le navigateur Media Player ne prend pas en charge ce type de médias",
+ "media_player": "Lecteur multimédia",
+ "no_items": "Aucun éléments",
+ "no_local_media_found": "Aucun média local trouvé",
+ "no_media_folder": "Il semble que vous n’avez pas encore créé de répertoire multimédia.",
+ "pick": "Choisir",
+ "pick-media": "Choisissez un média",
+ "play": "Lecture",
+ "play-media": "Lire le média",
+ "setup_local_help": "Consultez la {documentation} pour savoir comment configurer un média local.",
+ "video_not_supported": "Votre navigateur ne prend pas en charge l'élément vidéo.",
+ "web-browser": "Navigateur web"
+ },
+ "picture-upload": {
+ "label": "Image",
+ "unsupported_format": "Format non pris en charge, veuillez choisir une image JPEG, PNG ou GIF."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Entrer la valeur du code QR",
+ "manual_input": "Vous pouvez scanner le code QR avec un autre scanner QR et coller le code dans l'entrée ci-dessous",
+ "not_supported": "Votre navigateur ne prend pas en charge le scan de QR code",
+ "only_https_supported": "Vous ne pouvez utiliser votre appareil photo que pour scanner un code QR lorsque vous utilisez HTTPS.",
+ "select_camera": "Sélectionner la caméra"
+ },
+ "related-filter-menu": {
+ "filter": "Filtre",
+ "filter_by_area": "Filtrer par zone",
+ "filter_by_device": "Filtrer par appareil",
+ "filter_by_entity": "Filtrer par entité",
+ "filtered_by_area": "zone: {area_name}",
+ "filtered_by_device": "appareil: {device_name}",
+ "filtered_by_entity": "entité: {entity_name}"
+ },
+ "related-items": {
+ "area": "Pièce",
+ "automation": "Partie des automatisations suivantes",
+ "device": "Appareil",
+ "entity": "Entités liées",
+ "group": "Partie des groupes suivants",
+ "integration": "Intégration",
+ "no_related_found": "Aucun historique des valeurs trouvé.",
+ "scene": "Partie des scènes suivantes",
+ "script": "Partie des scripts suivants"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\nzero {jour}\none {jour}\nother {jours}\n}",
+ "hour": "{count} {count, plural,\nzero {heure}\none {heure}\nother {heures}\n}",
+ "minute": "{count} {count, plural,\nzero {minute}\none {minute}\nother {minutes}\n}",
+ "second": "{count} {count, plural,\nzero {seconde}\none {seconde}\nother {secondes}\n}",
+ "week": "{count} {count, plural,\nzero {semaine}\none {semaine}\nother {semaines}\n}"
+ },
+ "future_duration": {
+ "day": "Dans {count} {count, plural,\n one {jour}\n other {jours}\n}",
+ "hour": "Dans {count} {count, plural,\n one {heure}\n other {heures}\n}",
+ "minute": "Dans {count} {count, plural,\n one {minute}\n other {minutes}\n}",
+ "second": "Dans {count} {count, plural,\n one {seconde}\n other {secondes}\n}",
+ "week": "Dans {count} {count, plural,\n one {semaine}\n other {semaines}\n}"
+ },
+ "just_now": "Juste maintenant",
+ "never": "Jamais",
+ "past_duration": {
+ "day": "Il y a {count} {count, plural,\n one {jour}\n other {jours}\n}",
+ "hour": "Il y a {count} {count, plural,\n one {heure}\n other {heures}\n}",
+ "minute": "Il y a {count} {count, plural,\n one {minute}\n other {minutes}\n}",
+ "second": "Il y a {count} {count, plural,\n one {seconde}\n other {secondes}\n}",
+ "week": "Il y a {count} {count, plural,\n one {semaine}\n other {semaines}\n}"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Documentation de l'intégration",
+ "required": "Ce champ est obligatoire",
+ "service_data": "Données de service",
+ "target": "Cibles",
+ "target_description": "Que doit utiliser ce service comme zones, dispositifs ou entités ciblés."
+ },
+ "service-picker": {
+ "service": "Service"
+ },
+ "statistic-picker": {
+ "learn_more": "En savoir plus sur les statistiques",
+ "missing_entity": "Pourquoi mon entité n'est-elle pas répertoriée ?",
+ "no_match": "Aucune statistique correspondante trouvée",
+ "no_statistics": "Vous n'avez pas de statistiques",
+ "statistic": "Statistique"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Chargement des statistiques…",
+ "no_statistics_found": "Aucune statistique trouvée.",
+ "statistic_types": {
+ "max": "max",
+ "mean": "moyenne",
+ "min": "min",
+ "sum": "somme"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Choisissez la zone",
+ "add_device_id": "Choisissez un appareil",
+ "add_entity_id": "Choisissez une entité",
+ "expand": "Développer",
+ "expand_area_id": "Développe cette zone dans les périphériques et entités séparés qu'elle contient. Une fois développé, il ne mettra pas à jour les appareils et les entités lorsque la zone change.",
+ "expand_device_id": "Développe cet appareil dans des entités séparées. Une fois développé, il ne mettra pas à jour les entités lorsque l'appareil change.",
+ "remove": "Supprimer",
+ "remove_area_id": "Supprimer la zone",
+ "remove_device_id": "Supprimer l'appareil",
+ "remove_entity_id": "Supprimer l'entité"
+ },
+ "user-picker": {
+ "add_user": "Ajouter un utilisateur",
+ "no_user": "Aucun utilisateur",
+ "remove_user": "Supprimer l'utilisateur"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Si les appareils nouvellement découverts pour {integration} doivent être automatiquement ajoutés.",
+ "enable_new_entities_label": "Activer les entités nouvellement ajoutées.",
+ "enable_polling_description": "Si Home Assistant doit interroger automatiquement les entités {integration} pour les mises à jour.",
+ "enable_polling_label": "Activer la récupération des nouvelles mises à jour.",
+ "restart_home_assistant": "Vous devez redémarrer Home Assistant pour que vos modifications soient prises en compte.",
+ "title": "Options système pour {integration}",
+ "update": "Mise à jour"
+ },
+ "domain_toggler": {
+ "reset_entities": "Réinitialiser les entités",
+ "title": "Changer de domaine"
+ },
+ "entity_registry": {
+ "control": "Contrôle",
+ "customize_link": "personnalisations d'entité",
+ "dismiss": "Ignorer",
+ "editor": {
+ "advanced": "Paramètres avancés",
+ "area": "Définir la zone d'entité uniquement",
+ "area_note": "Par défaut, les entités d'un appareil se trouvent dans la même zone que l'appareil. Si vous modifiez la zone de cette entité, elle ne suivra plus la zone de l'appareil.",
+ "change_device_area": "Modifier la zone de l'appareil",
+ "confirm_delete": "Voulez-vous vraiment supprimer cette entité ?",
+ "delete": "Supprimer",
+ "device_class": "Afficher en tant que",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Porte",
+ "garage_door": "Porte de garage",
+ "opening": "Autre",
+ "window": "Fenêtre"
+ },
+ "cover": {
+ "door": "Porte",
+ "garage": "Porte de garage",
+ "window": "Fenêtre"
+ }
+ },
+ "device_disabled": "L'appareil de cette entité est désactivé.",
+ "enabled_cause": "Désactivé par {cause} .",
+ "enabled_delay_confirm": "Les entités activées seront ajoutées à Home Assistant dans {delay} secondes",
+ "enabled_description": "Les entités désactivées ne seront pas ajoutées à Home Assistant.",
+ "enabled_label": "Activer l'entité",
+ "enabled_restart_confirm": "Redémarrez Home Assistant pour terminer l'activation des entités",
+ "entity_id": "ID d'entité",
+ "follow_device_area": "Suivre la zone de l'appareil",
+ "icon": "Icône",
+ "icon_error": "Les icônes doivent être au format «préfixe: iconname», par exemple «mdi: home»",
+ "name": "Nom",
+ "note": "Remarque: cela peut ne pas encore fonctionner avec toutes les intégrations.",
+ "open_device_settings": "Ouvrir les paramètres de l'appareil",
+ "unavailable": "Cette entité n'est pas disponible actuellement.",
+ "update": "Mise à jour"
+ },
+ "faq": "documentation",
+ "info_customize": "Vous pouvez remplacer certains attributs dans la section {customize_link} .",
+ "no_unique_id": "Cette entité (\"{entity_id}\") n'a pas d'ID unique, par conséquent ses paramètres ne peuvent pas être gérés à partir de l'interface utilisateur. Consultez le {faq_link} pour plus de détails.",
+ "related": "Liées",
+ "settings": "Réglages"
+ },
+ "generic": {
+ "cancel": "Annuler",
+ "close": "Fermer",
+ "default_confirmation_title": "Êtes-vous sûr ?",
+ "ok": "OK"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Valeur initiale",
+ "maximum": "Valeur maximum",
+ "minimum": "Valeur minimum",
+ "restore": "Restaurer la dernière valeur connue au démarrage de Home Assistant",
+ "step": "Taille de pas"
+ },
+ "generic": {
+ "icon": "Icône",
+ "name": "Nom"
+ },
+ "input_datetime": {
+ "date": "Date",
+ "datetime": "Date et heure",
+ "mode": "Que voulez-vous saisir",
+ "time": "Heure"
+ },
+ "input_number": {
+ "box": "Champ de saisie",
+ "max": "Valeur maximum",
+ "min": "Valeur minimum",
+ "mode": "Mode d'affichage",
+ "slider": "Curseur",
+ "step": "Taille du pas du curseur",
+ "unit_of_measurement": "Unité de mesure"
+ },
+ "input_select": {
+ "add": "Ajouter",
+ "add_option": "Ajouter une option",
+ "no_options": "Il n'y a aucune option pour le moment.",
+ "options": "Options"
+ },
+ "input_text": {
+ "max": "Longueur maximale",
+ "min": "Longueur minimum",
+ "mode": "Mode d'affichage",
+ "password": "Mot de passe",
+ "pattern": "Modèle d'expression régulière pour la validation côté client",
+ "text": "Texte"
+ },
+ "platform_not_loaded": "L'intégration {platform} n'est pas chargée. Veuillez l'ajouter à votre configuration en ajoutant 'default_config:' ou ''{platform}:''.",
+ "required_error_msg": "Ce champ est requis",
+ "timer": {
+ "duration": "Durée"
+ },
+ "yaml_not_editable": "Les paramètres de cette entité ne peuvent pas être modifiés à partir de l'interface utilisateur. Seules les entités configurées à partir de l'interface utilisateur sont configurables à partir de l'interface utilisateur."
+ },
+ "image_cropper": {
+ "crop": "Recadrer"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Fermer le volet",
+ "close_tile_cover": "Fermer le volet",
+ "close_tilt_cover": "Fermer le volet",
+ "open_cover": "Ouvrir le volet",
+ "open_tilt_cover": "Ouvrir le volet",
+ "stop_cover": "Arrêter le mouvement du volet"
+ },
+ "details": "Détails",
+ "dismiss": "Fermer la fenêtre de dialogue",
+ "edit": "Modifier l'entité",
+ "history": "Historique",
+ "last_changed": "Dernière modification",
+ "last_updated": "Dernière mise à jour",
+ "logbook": "Journal de bord",
+ "person": {
+ "create_zone": "Créer une zone à partir de l'emplacement actuel"
+ },
+ "remote": {
+ "activity": "Activité en cours"
+ },
+ "restored": {
+ "confirm_remove_text": "Voulez-vous vraiment supprimer cette entité ?",
+ "confirm_remove_title": "Supprimer l'entité ?",
+ "not_provided": "Cette entité est actuellement indisponible et est orpheline d'une intégration ou d'un périphérique supprimé, modifié ou dysfonctionnel.",
+ "remove_action": "Supprimer l'entité",
+ "remove_intro": "Si l'entité n'est plus utilisée, vous pouvez la nettoyer en la supprimant."
+ },
+ "script": {
+ "last_action": "Dernière action",
+ "last_triggered": "Dernier déclenchement"
+ },
+ "settings": "Paramètres de l'entité",
+ "show_more": "Afficher plus",
+ "sun": {
+ "elevation": "Élévation",
+ "rising": "Lever",
+ "setting": "Coucher"
+ },
+ "updater": {
+ "title": "Instructions de mise à jour"
+ },
+ "vacuum": {
+ "clean_spot": "Nettoyer Endroit",
+ "commands": "Commandes d'aspirateur :",
+ "fan_speed": "Vitesse ventilateur",
+ "locate": "Localiser",
+ "pause": "Pause",
+ "return_home": "Rentrer à la maison",
+ "start": "Démarrer",
+ "start_pause": "Démarrer/Pause",
+ "status": "Statut",
+ "stop": "Arrêter"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Tentative d'analyse des messages MQTT en tant que JSON",
+ "entities": "Entités",
+ "no_entities": "Aucune entité",
+ "no_triggers": "Pas de déclencheur",
+ "payload_display": "Affichage de la charge utile",
+ "recent_messages": "{n} dernier(s) message(s) reçu(s)",
+ "show_as_yaml": "Afficher en tant que YAML",
+ "title": "{device} informations de débogage",
+ "triggers": "Déclencheurs"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Options"
+ },
+ "loading": {
+ "loading_flow": "Veuillez patienter pendant l'initialisation {integration}",
+ "loading_step": "Chargement de l'étape suivante pour {integration}"
+ },
+ "success": {
+ "description": "Options enregistrées avec succès."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Zones",
+ "automation": "Automatisations",
+ "blueprint": "Blueprints",
+ "core": "Général",
+ "customize": "Customisations",
+ "devices": "Appareils",
+ "energy": "Énergie",
+ "entities": "Entités",
+ "helpers": "Entrées",
+ "info": "Info",
+ "integrations": "Intégrations",
+ "logs": "Journaux",
+ "lovelace": "Tableaux de bord Lovelace",
+ "person": "Personnes",
+ "scene": "Scènes",
+ "script": "Scripts",
+ "server_control": "Contrôle du serveur",
+ "tag": "Balises",
+ "users": "Utilisateurs",
+ "zone": "Zones"
+ },
+ "reload": {
+ "automation": "Automatisations",
+ "command_line": "Entités de ligne de commande",
+ "core": "Emplacement et personnalisations",
+ "filesize": "Entités de taille de fichier",
+ "filter": "Entités de filtrage",
+ "generic": "Entités de caméra IP générique",
+ "generic_thermostat": "Entités thermostatiques génériques",
+ "group": "Groupes, entités de groupe et services de notification",
+ "history_stats": "Entités de statistiques d'historique",
+ "homekit": "HomeKit",
+ "input_boolean": "Entrées booléennes",
+ "input_datetime": "Entrée des dates et heures",
+ "input_number": "Entrées numériques",
+ "input_select": "Listes de sélection",
+ "input_text": "Entrées de texte",
+ "min_max": "Min/max entités",
+ "mqtt": "Entités MQTT configurées manuellement",
+ "person": "Personnes",
+ "ping": "Entités de capteur binaire Ping",
+ "reload": "{domain}",
+ "rest": "Rest entités et services de notification",
+ "rpi_gpio": "Entités GPIO Raspberry Pi",
+ "scene": "Scènes",
+ "script": "Scripts",
+ "smtp": "Services de notification SMTP",
+ "statistics": "Entités statistiques",
+ "telegram": "Services de notification par télégramme",
+ "template": "Entités modèles",
+ "themes": "Thèmes",
+ "trend": "Entités de tendance",
+ "universal": "Entités de lecteur multimédia universel",
+ "zone": "Zones"
+ },
+ "server_control": {
+ "perform_action": "{action} Serveur",
+ "restart": "Redémarrer",
+ "stop": "Arrêter"
+ },
+ "types": {
+ "navigation": "Naviguer",
+ "reload": "Recharger",
+ "server_control": "Serveur"
+ }
+ },
+ "filter_placeholder": "Filtre d'entité",
+ "key_c_hint": "Appuyez sur 'c' sur n'importe quelle page pour ouvrir cette barre de recherche",
+ "title": "Recherche rapide"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant n'a rien entendu",
+ "error": "Oups, une erreur est survenue",
+ "found": "J'ai trouvé ce qui suit pour vous:",
+ "how_can_i_help": "Comment puis-je vous aider ?",
+ "label": "Tapez une question et appuyez sur 'Entrée'",
+ "label_voice": "Tapez et appuyez sur 'Entrée' ou appuyez sur le microphone pour parler"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Ajouter des appareils",
+ "clusters": "Gérer les clusters",
+ "device_children": "Voir les enfants",
+ "reconfigure": "Reconfigurer l'appareil",
+ "remove": "Supprimer l'appareil",
+ "view_in_visualization": "Afficher dans la visualisation",
+ "zigbee_information": "Informations Zigbee"
+ },
+ "confirmations": {
+ "remove": "Êtes-vous sûr de vouloir retirer l'appareil ?"
+ },
+ "device_children": "Enfants de l'appareil Zigbee",
+ "device_signature": "Signature de l'appareil Zigbee",
+ "last_seen": "Dernière vue",
+ "manuf": "par {manufacturer}",
+ "no_area": "Aucune pièce",
+ "power_source": "Source d'énergie",
+ "quirk": "Quirk",
+ "services": {
+ "reconfigure": "Reconfigurer le périphérique ZHA. Utilisez cette option si vous rencontrez des problèmes avec le périphérique. Si l'appareil en question est un appareil alimenté par batterie, assurez-vous qu'il soit allumé et qu'il accepte les commandes lorsque vous utilisez ce service.",
+ "remove": "Supprimer un appareil du réseau Zigbee.",
+ "updateDeviceName": "Définissez un nom personnalisé pour ce périphérique dans le registre de périphériques.",
+ "zigbee_information": "Affichez les informations Zigbee de l'appareil."
+ },
+ "unknown": "Inconnu",
+ "zha_device_card": {
+ "device_name_placeholder": "Nom personnalisé"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Attribut",
+ "battery_device_warning": "Vous allez avoir besoin de réveiller les appareils sur batterie avant de commencer le processus de reconfiguration. Consultez le manuel de l'appareil pour connaître la procédure.",
+ "bind_header": "Liaison",
+ "button_hide": "Masquer les détails",
+ "button_show": "Afficher les détails",
+ "cluster_header": "Cluster",
+ "configuration_complete": "Reconfiguration de l'appareil complété.",
+ "configuration_failed": "La reconfiguration de l'appareil a échoué. Des informations additionnelles sont disponibles dans les journaux.",
+ "configuring_alt": "Configurer",
+ "heading": "Reconfigurer l'appareil",
+ "in_progress": "L'appareil est en cours de configuration. Cela peut prendre du temps.",
+ "introduction": "Reconfigure l'appareil sur votre réseau Zigbee. Utilisez cette fonctionnalité si votre appareil ne fonctionne pas correctement.",
+ "min_max_change": "min / max / changement",
+ "reporting_header": "Rapports",
+ "run_in_background": "Vous pouvez fermer cette fenêtre pendant que la reconfiguration se poursuivra en arrière-plan.",
+ "start_reconfiguration": "Démarrer la reconfiguration"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\nzero {jour}\none {jour}\nother {jours}\n}",
+ "hour": "{count} {count, plural,\nzero {heure}\none {heure}\nother {heures}\n}",
+ "minute": "{count} {count, plural,\nzero {minute}\none {minute}\nother {minutes}\n}",
+ "second": "{count} {count, plural,\nzero {seconde}\none {seconde}\nother {secondes}\n}",
+ "week": "{count} {count, plural,\nzero {semaine}\none {semaine}\nother {semaines}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Vous pouvez toujours modifier votre configuration dans YAML.",
+ "editor_not_available": "Aucun éditeur visuel disponible pour le type \" {type} \".",
+ "editor_not_supported": "L'éditeur visuel n'est pas pris en charge pour cette configuration",
+ "error_detected": "Erreurs de configuration détectées",
+ "key_missing": "La clé requise « {key} » est manquante.",
+ "key_not_expected": "La clé « {key} » n’est pas attendue ou non prise en charge par l’éditeur visuel.",
+ "key_wrong_type": "La valeur fournie pour \"{key}\" n'est pas prise en charge par l'éditeur visuel. Nous supportons ({type_correct}) mais avons reçu ({type_wrong}).",
+ "no_state_array_support": "Les valeurs d'état multiples ne sont pas prises en charge dans l'éditeur visuel",
+ "no_template_editor_support": "Modèles non pris en charge dans l'éditeur visuel",
+ "no_type_provided": "Aucun type fourni."
+ },
+ "supervisor": {
+ "ask": "Demandez de l’aide",
+ "observer": "Vérifiez l'observateur",
+ "reboot": "Essayez un redémarrage de l’hôte",
+ "system_health": "Vérifier la santé du système",
+ "title": "Impossible de charger le panneau du Supervisor!",
+ "wait": "Si vous venez de commencer, assurez-vous d’avoir donné au Superviseur suffisamment de temps pour démarrer."
+ }
+ },
+ "login-form": {
+ "log_in": "Connexion",
+ "password": "Mot de passe",
+ "remember": "Se souvenir"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Cliquez sur le bouton pour configurer {entity}",
+ "close": "Fermer",
+ "dismiss_all": "Tout ignorer",
+ "empty": "Aucune notification",
+ "title": "Notifications"
+ },
+ "notification_toast": {
+ "connection_lost": "Connexion perdue. Reconnexion en cours…",
+ "dismiss": "Ignorer",
+ "integration_starting": "Démarrage de {integration}, tout ne sera pas disponible tant qu'il n'aura pas terminé",
+ "service_call_failed": "Échec d'appel du service \"{service}\".",
+ "started": "Home Assistant a démarré !",
+ "starting": "Home Assistant est en cours de démarrage, tout ne sera pas disponible tant qu’il n’aura pas terminé.",
+ "triggered": "{name} déclenché",
+ "wrapping_up_startup": "Finalisation du démarrage, tout ne sera pas disponible tant qu'il ne sera pas terminé."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Options de configuration manquantes? Activer le mode avancé",
+ "link_profile_page": "votre page de profil"
+ },
+ "areas": {
+ "add_picture": "Ajouter une image",
+ "assigned_to_area": "Assigné à cette pièce",
+ "caption": "Pièces",
+ "data_table": {
+ "area": "Pièce",
+ "devices": "Appareils",
+ "entities": "Entités"
+ },
+ "delete": {
+ "confirmation_text": "Tous les appareils de cette pièce ne seront plus attribués.",
+ "confirmation_title": "Êtes-vous sûr de vouloir supprimer cette pièce ?"
+ },
+ "description": "Regrouper les appareils et les entités en zones",
+ "edit_settings": "Paramètres de zone",
+ "editor": {
+ "area_id": "ID de la zone",
+ "create": "Créer",
+ "default_name": "Nouvelle Pièce",
+ "delete": "Supprimer",
+ "linked_entities_caption": "Entités",
+ "name": "Nom",
+ "name_required": "Le nom est requis",
+ "no_linked_entities": "Il n'y a pas d'entités liées à cette pièce",
+ "unknown_error": "Erreur inconnue",
+ "update": "Mise à jour"
+ },
+ "picker": {
+ "create_area": "Créer une pièce",
+ "header": "Pièces",
+ "integrations_page": "Page des intégrations",
+ "introduction": "Les pièces sont utilisées pour organiser l'emplacement des périphériques. Ces informations seront utilisées partout dans Home Assistant pour vous aider à organiser votre interface, vos autorisations et vos intégrations avec d'autres systèmes.",
+ "introduction2": "Pour placer des périphériques dans une pièce, utilisez le lien ci-dessous pour accéder à la page des intégrations, puis cliquez sur une intégration configurée pour accéder aux cartes de périphérique.",
+ "no_areas": "On dirait que vous n'avez pas encore de pièces !"
+ },
+ "targeting_area": "Cible cette pièce"
+ },
+ "automation": {
+ "caption": "Automatisations",
+ "description": "Créez des règles de comportement personnalisées pour votre maison",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Utiliser un Blueprint"
+ },
+ "header": "Créer une nouvelle automatisation",
+ "how": "Comment souhaitez-vous créer votre nouvelle automatisation?",
+ "start_empty": "Commencer par une automatisation vide",
+ "start_empty_description": "Créer une nouvelle automatisation à partir de zéro",
+ "thingtalk": {
+ "create": "Créer",
+ "header": "Décrivez l'automatisation que vous souhaitez créer",
+ "input_label": "Que devrait faire cette automatisation ?",
+ "intro": "Et nous essaierons de le créer pour vous. Par exemple: éteignez les lumières lorsque je pars."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Ajouter une action",
+ "delete": "Supprimer",
+ "delete_confirm": "Voulez-vous vraiment effacer ?",
+ "duplicate": "Dupliquer",
+ "header": "Actions",
+ "introduction": "Les actions sont ce que Home Assistant fera quand une automatisation est déclenchée.",
+ "learn_more": "En savoir plus sur les actions",
+ "name": "Action",
+ "type": {
+ "choose": {
+ "add_option": "Ajouter une option",
+ "conditions": "Conditions",
+ "default": "Actions par défaut",
+ "label": "Choisir",
+ "option": "Option {number}",
+ "remove_option": "Supprimer l'option",
+ "sequence": "Actions"
+ },
+ "condition": {
+ "label": "Condition"
+ },
+ "delay": {
+ "delay": "Délai",
+ "label": "Attendre que le temps passe (délai)"
+ },
+ "device_id": {
+ "action": "Action",
+ "extra_fields": {
+ "brightness_pct": "Luminosité",
+ "code": "Code",
+ "flash": "Flash",
+ "humidity": "Humidité",
+ "message": "Message",
+ "mode": "Mode",
+ "position": "Position",
+ "title": "Titre",
+ "value": "Valeur"
+ },
+ "label": "Appareil"
+ },
+ "event": {
+ "event": "Évènement :",
+ "label": "Déclencher l'évènement",
+ "service_data": "Données du service"
+ },
+ "repeat": {
+ "label": "Répéter",
+ "sequence": "Actions",
+ "type": {
+ "count": {
+ "label": "Nombre"
+ },
+ "until": {
+ "conditions": "Jusqu'à ce que les conditions",
+ "label": "Jusqu'à ce que"
+ },
+ "while": {
+ "conditions": "Tant que les conditions",
+ "label": "Tant que"
+ }
+ },
+ "type_select": "Type de répétition"
+ },
+ "scene": {
+ "label": "Activer la scène"
+ },
+ "service": {
+ "label": "Appeler un service"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Continuer à l'expiration du délai",
+ "label": "Attendre le déclencheur",
+ "timeout": "Délai d'expiration (optionnel)"
+ },
+ "wait_template": {
+ "continue_timeout": "Continuer à l'expiration du délai",
+ "label": "Attendre un modèle",
+ "timeout": "Délai d'expiration (optionnel)",
+ "wait_template": "Template d'attente"
+ }
+ },
+ "type_select": "Type d'action",
+ "unsupported_action": "Pas d'interface utilisateur pour l'action : {action}"
+ },
+ "alias": "Nom",
+ "blueprint": {
+ "blueprint_to_use": "Blueprint à utiliser",
+ "header": "Blueprint",
+ "no_blueprints": "Vous n'avez pas de Blueprint",
+ "no_inputs": "Ce Blueprint n'a aucune entrée."
+ },
+ "conditions": {
+ "add": "Ajouter une condition",
+ "delete": "Supprimer",
+ "delete_confirm": "Voulez-vous vraiment supprimer ?",
+ "duplicate": "Dupliquer",
+ "header": "Conditions",
+ "introduction": "Les conditions sont facultatives et empêcheront toute exécution ultérieure si toutes les conditions ne sont pas remplies.",
+ "learn_more": "En savoir plus sur les conditions",
+ "name": "Condition",
+ "type": {
+ "and": {
+ "label": "Et"
+ },
+ "device": {
+ "condition": "Condition",
+ "extra_fields": {
+ "above": "Au-dessus de",
+ "below": "Au-dessous de",
+ "for": "Durée",
+ "hvac_mode": "Mode HVAC",
+ "preset_mode": "Mode préréglé"
+ },
+ "label": "Appareil"
+ },
+ "not": {
+ "label": "Pas"
+ },
+ "numeric_state": {
+ "above": "Au dessus de",
+ "below": "En-dessous de",
+ "label": "Valeur numérique",
+ "value_template": "Contenu du modèle (optionnel)"
+ },
+ "or": {
+ "label": "Ou"
+ },
+ "state": {
+ "label": "État",
+ "state": "État"
+ },
+ "sun": {
+ "after": "Après:",
+ "after_offset": "Décalage après (optionnel)",
+ "before": "Avant:",
+ "before_offset": "Décalage avant (optionnel)",
+ "label": "Soleil",
+ "sunrise": "Lever du soleil",
+ "sunset": "Coucher du soleil"
+ },
+ "template": {
+ "label": "Template",
+ "value_template": "Contenu du template"
+ },
+ "time": {
+ "after": "Après",
+ "before": "Avant",
+ "label": "Heure",
+ "type_input": "Valeur d'une entrée de date/heure",
+ "type_value": "Temps fixe",
+ "weekdays": {
+ "fri": "Vendredi",
+ "mon": "Lundi",
+ "sat": "Samedi",
+ "sun": "Dimanche",
+ "thu": "Jeudi",
+ "tue": "Mardi",
+ "wed": "Mercredi"
+ }
+ },
+ "trigger": {
+ "id": "ID de déclencheur",
+ "label": "Déclencheur",
+ "no_triggers": "Aucun déclencheur disponible"
+ },
+ "zone": {
+ "entity": "Entité avec localisation",
+ "label": "Zone",
+ "zone": "Zone"
+ }
+ },
+ "type_select": "Type de condition",
+ "unsupported_condition": "Pas d'interface utilisateur pour la condition : {condition}"
+ },
+ "copy_to_clipboard": "Copier dans le presse-papier",
+ "default_name": "Nouvelle automatisation",
+ "description": {
+ "label": "Description",
+ "placeholder": "Description optionnelle"
+ },
+ "edit_ui": "Modifier avec l'interface utilisateur",
+ "edit_yaml": "Modifier en tant que YAML",
+ "enable_disable": "Activer/Désactiver l'automatisation",
+ "introduction": "Utiliser les automatisations pour donner vie à votre maison.",
+ "load_error_not_editable": "Seules les automatisations dans automations.yaml sont modifiables.",
+ "load_error_unknown": "Erreur lors du chargement de l'automatisation ( {err_no} ).",
+ "max": {
+ "parallel": "Nombre maximal de parcours parallèles",
+ "queued": "Longueur de la file d'attente"
+ },
+ "modes": {
+ "description": "Le mode contrôle ce qui se passe lorsque l’automatisation est déclenchée alors que les actions sont toujours en cours d’exécution à partir d’un déclencheur précédent. Consultez le {documentation_link} pour plus d’informations.",
+ "documentation": "documentation d'automatisation",
+ "label": "Mode",
+ "parallel": "Parallèle",
+ "queued": "En attente",
+ "restart": "Redémarrer",
+ "single": "Unique (par défaut)"
+ },
+ "move_down": "Déplacer vers le bas",
+ "move_up": "Déplacer vers le haut",
+ "save": "Sauvegarder",
+ "show_trace": "Afficher la trace",
+ "triggers": {
+ "add": "Ajouter un déclencheur",
+ "delete": "Supprimer",
+ "delete_confirm": "Voulez-vous effacer ?",
+ "duplicate": "Dupliquer",
+ "edit_id": "Modifier l'ID du déclencheur",
+ "header": "Déclencheurs",
+ "id": "ID de déclenchement (utilisé par la condition de déclenchement)",
+ "introduction": "Les déclencheurs sont ce qui lance le traitement d'une règle d'automatisation. Il est possible de spécifier plusieurs déclencheurs pour une même règle. Dès qu'un déclencheur est activé, Home Assistant validera les conditions, s'il y en a, et appellera l'action.",
+ "learn_more": "En savoir plus sur les déclencheurs",
+ "name": "Déclencheur",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Au-dessus de",
+ "below": "En dessous de",
+ "for": "Durée",
+ "zone": "Zone"
+ },
+ "label": "Équipements",
+ "trigger": "Déclencheur"
+ },
+ "event": {
+ "context_user_pick": "Sélectionner un utilisateur",
+ "context_user_picked": "Événement déclenché par l'utilisateur",
+ "context_users": "Limiter aux événements déclenchés par",
+ "event_data": "Données de l'événement",
+ "event_type": "Type d'événement",
+ "label": "Événement :"
+ },
+ "geo_location": {
+ "enter": "Entre",
+ "event": "Événement :",
+ "label": "Géolocalisation",
+ "leave": "Quitte",
+ "source": "Source",
+ "zone": "Zone"
+ },
+ "homeassistant": {
+ "event": "Événement :",
+ "label": "Home Assistant",
+ "shutdown": "Arrêt",
+ "start": "Démarrage"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Payload (optionnel)",
+ "topic": "Sujet"
+ },
+ "numeric_state": {
+ "above": "Au-dessus de",
+ "below": "En-dessous de",
+ "label": "État numérique",
+ "value_template": "Contenu du template (optionnel)"
+ },
+ "state": {
+ "attribute": "Attribut (facultatif)",
+ "for": "Pendant",
+ "from": "De",
+ "label": "État",
+ "to": "À"
+ },
+ "sun": {
+ "event": "Événement :",
+ "label": "Soleil",
+ "offset": "Décalage (optionnel)",
+ "sunrise": "Lever du soleil",
+ "sunset": "Coucher du soleil"
+ },
+ "tag": {
+ "label": "Balise"
+ },
+ "template": {
+ "label": "Template",
+ "value_template": "Contenu du template"
+ },
+ "time": {
+ "at": "À",
+ "label": "Heure",
+ "type_input": "Valeur d'une entrée de date/heure",
+ "type_value": "Temps fixe"
+ },
+ "time_pattern": {
+ "hours": "Heures",
+ "label": "Modèle de temps",
+ "minutes": "Minutes",
+ "seconds": "Secondes"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "ID Webhook"
+ },
+ "zone": {
+ "enter": "Entre",
+ "entity": "Entité avec emplacement",
+ "event": "Événement :",
+ "label": "Zone",
+ "leave": "Quitte",
+ "zone": "Zone"
+ }
+ },
+ "type_select": "Type de déclencheur",
+ "unsupported_platform": "Pas d'interface utilisateur pour la plateforme : {platform}"
+ },
+ "unsaved_confirm": "Vous avez des changements non enregistrés. Êtes-vous sûr de vouloir quitter?"
+ },
+ "picker": {
+ "add_automation": "Ajouter une automatisation",
+ "delete_automation": "Supprimer l'automatisation",
+ "delete_confirm": "Voulez-vous vraiment supprimer cette automatisation ?",
+ "dev_automation": "Débogage de l'automatisation",
+ "dev_only_editable": "Seules les automatisations dans automations.yaml sont debuggables.",
+ "duplicate": "Dupliquer",
+ "duplicate_automation": "Dupliquer l'automatisation",
+ "edit_automation": "Modifier l'automatisation",
+ "header": "Éditeur d'automatisation",
+ "headers": {
+ "name": "Nom"
+ },
+ "introduction": "L'éditeur d'automatisation vous permet de créer et éditer des automatisations. Veuillez lire les instructions ci-dessous pour vous assurer d'avoir configuré Home-Assistant correctement.",
+ "learn_more": "En savoir plus sur les automatisations",
+ "no_automations": "Il n'y a aucune automatisation modifiable",
+ "only_editable": "Seules les automatisations définies dans automations.yaml sont modifiables.",
+ "pick_automation": "Choisissez l'automatisation à modifier",
+ "show_info_automation": "Afficher des informations sur l'automatisation"
+ },
+ "thingtalk": {
+ "create": "Créer l’automatisation",
+ "link_devices": {
+ "ambiguous_entities": "Un ou plusieurs appareils ont plus d’une entrée correspondante, veuillez choisir celle que vous souhaitez utiliser.",
+ "header": "Super ! Maintenant nous allons lier quelques appareils",
+ "unknown_placeholder": "Espace réservé introuvable"
+ },
+ "task_selection": {
+ "error_empty": "Entrez une commande ou appuyez sur ignorer.",
+ "error_unsupported": "Nous n'avons pas pu créer une automatisation pour cela (pour le moment ?).",
+ "for_example": "Par exemple :",
+ "header": "Créer une nouvelle automatisation",
+ "introduction": "Tapez ci-dessous ce que cette automatisation devrait faire, et nous allons essayer de la convertir en une automatisation Home Assistant.",
+ "language_note": "Remarque: pour l'instant, seul l'anglais est pris en charge."
+ }
+ },
+ "trace": {
+ "download_trace": "Télécharger la trace",
+ "edit_automation": "Modifier l'automatisation",
+ "newer_trace": "Trace plus récente",
+ "older_trace": "Trace plus ancienne",
+ "refresh": "Rafraîchir"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "Forum de la communauté",
+ "error_no_url": "Veuillez entrer l'URL du Blueprint",
+ "file_name": "Chemin du Blueprint",
+ "header": "Importer un Blueprint",
+ "import_btn": "Aperçu du Blueprint",
+ "import_header": "Blueprint \"{name}\"",
+ "import_introduction_link": "Vous pouvez importer les Blueprints d'autres utilisateurs à partir de GitHub et du {community_link}. Entrez l'URL du Blueprint ci-dessous.",
+ "importing": "Chargement du Blueprint ...",
+ "raw_blueprint": "Contenu du Blueprint",
+ "save_btn": "Importer un Blueprint",
+ "saving": "Importation du Blueprint …",
+ "unsupported_blueprint": "Ce Blueprint n'est pas pris en charge",
+ "url": "URL du Blueprint"
+ },
+ "caption": "Blueprints",
+ "description": "Créez des automatisations facilement à l'aide de modèles configurables",
+ "overview": {
+ "add_blueprint": "Importer un Blueprint",
+ "confirm_delete_header": "Supprimer ce Blueprint ?",
+ "confirm_delete_text": "Êtes-vous sûr de vouloir supprimer ce Blueprint ?",
+ "create_automation": "Créer une automatisation",
+ "create_script": "Créer un script",
+ "delete_blueprint": "Supprimer le Blueprint",
+ "discover_more": "Découvrez plus de Blueprints",
+ "header": "Éditeur de Blueprints",
+ "headers": {
+ "domain": "Domaine",
+ "file_name": "Nom de fichier",
+ "name": "Nom",
+ "type": "Type"
+ },
+ "introduction": "L’éditeur de Blueprint vous permet de créer et de modifier les Blueprints qui permettent de créer des automatisations facilement à l'aide de modèles configurables.",
+ "learn_more": "En savoir plus sur les Blueprints",
+ "share_blueprint": "Partager le Blueprint",
+ "share_blueprint_no_url": "Impossible de partager le Blueprint: pas d'URL source",
+ "types": {
+ "automation": "Automatisation",
+ "script": "Script"
+ },
+ "use_blueprint": "Créer une automatisation"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Documentation de configuration",
+ "disable": "désactiver",
+ "enable": "activer",
+ "enable_ha_skill": "Activer le skill Home Assistant pour Alexa",
+ "enable_state_reporting": "Activer le rapport d'état",
+ "info": "Grâce à l'intégration d'Alexa pour Home Assistant Cloud, vous pourrez contrôler tous vos appareils Home Assistant via n'importe quel appareil compatible Alexa.",
+ "info_state_reporting": "Si vous activez le rapport d'état, Home Assistant envoie tous les changements d'état des entités exposées à Amazon. Cela vous permet de toujours voir les derniers états de l'application Alexa et d'utiliser les changements d'état pour créer des routines.",
+ "manage_entities": "Gérer les entités",
+ "state_reporting_error": "Impossible de {enable_disable} le rapport d'état.",
+ "sync_entities": "Synchroniser les entités",
+ "sync_entities_error": "Échec de la synchronisation des entités:",
+ "title": "Alexa"
+ },
+ "connected": "Connecté",
+ "connecting": "Connexion…",
+ "connection_status": "État de la connexion cloud",
+ "fetching_subscription": "Récupération de l'abonnement…",
+ "google": {
+ "config_documentation": "Documentation de configuration",
+ "devices_pin": "NIP pour les appareils sécurisés",
+ "enable_ha_skill": "Activer le skill Home Assistant pour Google Assistant",
+ "enable_state_reporting": "Activer le rapport d'état",
+ "enter_pin_error": "Impossible de stocker le NIP :",
+ "enter_pin_hint": "Entrer un code NIP pour utiliser les dispositifs de sécurité",
+ "enter_pin_info": "Veuillez entrer un code NIP pour interagir avec les dispositifs de sécurité. Les dispositifs de sécurité sont les portes, les portes de garage et les serrures. Il vous sera demandé de dire/entrer ce code NIP lorsque vous interagissez avec de tels appareils via Google Assistant.",
+ "info": "Grâce à l'intégration de Google Assistant pour Home Assistant Cloud, vous pourrez contrôler tous vos appareils Home Assistant via n'importe quel appareil compatible avec Google Assistant.",
+ "info_state_reporting": "Si vous activez le rapport d'état, Home Assistant envoie tous les changements d'état des entités exposées à Google. Cela vous permet de toujours voir les derniers états de l'application Google.",
+ "manage_entities": "Gérer les entités",
+ "not_configured_text": "Avant de pouvoir utiliser Google Assistant, vous devez activer l'action Home Assistant Cloud pour Google Assistant dans l'application Google Home.",
+ "not_configured_title": "Google Assistant n'est pas activé",
+ "security_devices": "Dispositif de sécurité",
+ "sync_entities": "Synchroniser les entités vers Google",
+ "sync_entities_404_message": "Échec de la synchronisation de vos entités avec Google, demandez à Google \"Hey Google, synchronise mes appareils\" de synchroniser vos entités.",
+ "title": "Google Assistant"
+ },
+ "integrations": "Intégrations",
+ "integrations_introduction": "Les intégrations pour Home Assistant Cloud vous permettent de vous connecter à des services dans le cloud sans avoir à exposer publiquement votre instance de Home Assistant sur Internet.",
+ "integrations_introduction2": "Consultez le site Web pour",
+ "integrations_link_all_features": "Toutes les fonctionnalités disponibles",
+ "manage_account": "Gérer le compte",
+ "nabu_casa_account": "Compte Nabu Casa",
+ "not_connected": "Non connecté",
+ "remote": {
+ "access_is_being_prepared": "L'accès à distance est en préparation. Nous vous informerons quand ce sera prêt.",
+ "certificate_info": "Informations sur le certificat",
+ "connected": "Connecté",
+ "info": "Home Assistant Cloud fournit une connexion à distance sécurisée à votre instance lorsque vous n'êtes pas chez vous.",
+ "instance_is_available": "Votre instance est disponible à l'adresse",
+ "instance_will_be_available": "Votre instance sera disponible sur",
+ "link_learn_how_it_works": "Apprenez comment ça marche",
+ "not_connected": "Non connecté",
+ "reconnecting": "Non connecté. Essai de reconnexion.",
+ "remote_enabled": {
+ "caption": "Se connecter automatiquement",
+ "description": "Activez cette option pour vous assurer que votre instance de Home Assistant est toujours accessible à distance."
+ },
+ "title": "Contrôle à distance"
+ },
+ "sign_out": "Déconnexion",
+ "thank_you_note": "Merci de faire partie de Home Assistant Cloud. C’est grâce à des personnes comme vous que nous sommes en mesure de proposer une expérience domotique exceptionnelle à tout le monde. Je vous remercie!",
+ "tts": {
+ "default_language": "Langue par défaut à utiliser",
+ "dialog": {
+ "create_automation": "Créer une automatisation",
+ "example_message": "Bonjour {name}, vous pouvez lire n’importe quel texte sur n’importe quel lecteur multimédia pris en charge !",
+ "header": "Essayez la synthèse vocale",
+ "play": "Lecture",
+ "target": "Cible",
+ "target_browser": "Navigateur"
+ },
+ "female": "Femme",
+ "info": "Donnez de la personnalité à votre maison en lui faisant parler en utilisant nos services de synthèse vocale. Vous pouvez l'utiliser dans des automatismes et des scripts en utilisant le service {service}.",
+ "male": "Homme",
+ "title": "Synthèse vocale",
+ "try": "Essayer"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Impossible de désactiver le Webhook:",
+ "info": "Tout ce qui est configuré pour être déclenché par un Webhook peut recevoir une URL accessible publiquement pour vous permettre de renvoyer des données à Home Assistant de n’importe où, sans exposer votre instance à Internet.",
+ "link_learn_more": "En savoir plus sur la création d'automatisations basées sur Webhook.",
+ "loading": "Chargement …",
+ "manage": "Gérer",
+ "no_hooks_yet": "Il semble que vous n'ayez pas encore de Webhooks. Commencez en configurer un ",
+ "no_hooks_yet2": "ou en créant un",
+ "no_hooks_yet_link_automation": "automatisation webhook",
+ "no_hooks_yet_link_integration": "intégration basée sur un Webhook",
+ "title": "Webhooks"
+ }
+ },
+ "alexa": {
+ "banner": "La modification des entités exposées via cette interface utilisateur est désactivée, car vous avez configuré les filtres d'entité dans configuration.yaml.",
+ "dont_expose_entity": "Ne pas exposer l'entité",
+ "expose": "Exposer à Alexa",
+ "expose_entity": "Exposer l'entité",
+ "exposed": "{selected} exposé",
+ "exposed_entities": "Entités exposées",
+ "follow_domain": "Suivre le domaine",
+ "manage_domains": "Gérer les domaines",
+ "not_exposed": "{selected} non exposé",
+ "not_exposed_entities": "Entités non exposées",
+ "title": "Alexa"
+ },
+ "description_features": "Contrôlez votre domicile lorsque vous êtes absent et intégrez avec Alexa et Google Assistant",
+ "description_login": "Connecté en tant que {email}",
+ "description_not_login": "Non connecté",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Date d'expiration du certificat",
+ "certificate_information": "Informations sur le certificat",
+ "close": "Fermer",
+ "fingerprint": "Empreinte du certificat:",
+ "will_be_auto_renewed": "Sera automatiquement renouvelé"
+ },
+ "dialog_cloudhook": {
+ "available_at": "Le Webhook est disponible à l'URL suivante:",
+ "close": "Fermer",
+ "confirm_disable": "Êtes-vous sûr de vouloir désactiver ce Webhook?",
+ "copied_to_clipboard": "Copié dans le presse-papiers",
+ "info_disable_webhook": "Si vous ne souhaitez plus utiliser ce Webhook, vous pouvez",
+ "link_disable_webhook": "le désactiver",
+ "managed_by_integration": "Ce Webhook est géré par une intégration et ne peut pas être désactivé.",
+ "view_documentation": "Voir la documentation",
+ "webhook_for": "Webhook pour {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "Consultez votre courrier électronique pour savoir comment réinitialiser votre mot de passe.",
+ "email": "Email",
+ "email_error_msg": "Email invalide",
+ "instructions": "Entrez votre adresse email et nous vous enverrons un lien pour réinitialiser votre mot de passe.",
+ "send_reset_email": "Envoyer un email de réinitialisation",
+ "subtitle": "Mot de passe oublié",
+ "title": "Mot de passe oublié"
+ },
+ "google": {
+ "banner": "La modification des entités exposées via cette interface utilisateur est désactivée, car vous avez configuré les filtres d'entité dans configuration.yaml.",
+ "disable_2FA": "Désactiver l'authentification à deux facteurs",
+ "dont_expose_entity": "Ne pas exposer l'entité",
+ "expose": "Exposer à Google Assistant",
+ "expose_entity": "Exposer l'entité",
+ "exposed": "{selected} exposé",
+ "exposed_entities": "Entités exposées",
+ "follow_domain": "Suivre le domaine",
+ "manage_domains": "Gérer les domaines",
+ "not_exposed": "{selected} non exposé",
+ "not_exposed_entities": "Entités non exposées",
+ "sync_to_google": "Synchroniser les modifications sur Google.",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Vous devez confirmer votre email avant de vous connecter.",
+ "alert_password_change_required": "Vous devez changer votre mot de passe avant de vous connecter.",
+ "dismiss": "Rejeter",
+ "email": "Email",
+ "email_error_msg": "Email non valide",
+ "forgot_password": "Mot de passe oublié?",
+ "introduction": "Home Assistant Cloud vous fournit une connexion sécurisée à distance à votre instance lorsque vous êtes loin de chez vous. Il vous permet également de vous connecter à des services cloud uniquement : Amazon Alexa et Google Assistant.",
+ "introduction2": "Ce service est géré par notre partenaire",
+ "introduction2a": ", une entreprise fondée par les fondateurs de Home Assistant.",
+ "introduction3": "Home Assistant Cloud est un service d'abonnement avec un essai gratuit d'un mois. Aucune information de paiement nécessaire.",
+ "learn_more_link": "En savoir plus sur Home Assistant Cloud",
+ "password": "Mot de passe",
+ "password_error_msg": "Les mots de passe doivent comporter au moins 8 caractères.",
+ "sign_in": "Connexion",
+ "start_trial": "Commencez votre essai gratuit de 1 mois",
+ "title": "Connexion Cloud",
+ "trial_info": "Aucune information de paiement nécessaire"
+ },
+ "register": {
+ "account_created": "Compte créé! Consultez votre courrier électronique pour savoir comment activer votre compte.",
+ "create_account": "Créer un compte",
+ "email_address": "Adresse e-mail",
+ "email_error_msg": "Courriel invalide",
+ "feature_amazon_alexa": "Intégration avec Amazon Alexa",
+ "feature_google_home": "Intégration avec Google Assistant",
+ "feature_remote_control": "Contrôle de Home Assistant en dehors de la maison",
+ "feature_webhook_apps": "Intégration facile avec des applications Webhook telles que OwnTracks",
+ "headline": "Commencer votre essai gratuit",
+ "information": "Créer un compte afin de commencer un mois d'essai gratuit avec Home Assistant Cloud. Aucune information de paiement nécessaires.",
+ "information2": "L'essai vous donnera accès à tous les avantages de Home Assistant Cloud, y compris:",
+ "information3": "Ce service est géré par notre partenaire",
+ "information3a": ", une entreprise fondée par les fondateurs de Home Assistant.",
+ "information4": "En créant un compte, vous acceptez les conditions générales suivantes.",
+ "link_privacy_policy": "Politique de confidentialité",
+ "link_terms_conditions": "Conditions générales",
+ "password": "Mot de passe",
+ "password_error_msg": "Les mots de passe doivent comporter au moins 8 caractères.",
+ "resend_confirm_email": "Renvoyer l'email de confirmation",
+ "start_trial": "Commencer la période d'évaluation",
+ "title": "Créer un compte"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Vous avez des changements non enregistrés. Êtes-vous sûr de vouloir quitter?"
+ },
+ "learn_more": "En savoir plus"
+ },
+ "core": {
+ "caption": "Général",
+ "description": "Localisation, réseau et analyse",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Devise",
+ "edit_requires_storage": "L'éditeur est désactivé car la configuration est stockée dans configuration.yaml.",
+ "elevation": "Élévation",
+ "elevation_meters": "mètres",
+ "external_url": "URL externe",
+ "find_currency_value": "Trouvez votre valeur",
+ "imperial_example": "Fahrenheit, livres",
+ "internal_url": "URL interne",
+ "latitude": "Latitude",
+ "location_name": "Nom de votre installation Home Assistant",
+ "longitude": "Longitude",
+ "metric_example": "Celsius, kilogrammes",
+ "save_button": "Enregistrer",
+ "time_zone": "Fuseau horaire",
+ "unit_system": "Système unitaire",
+ "unit_system_imperial": "Impérial",
+ "unit_system_metric": "Métrique"
+ },
+ "header": "Configuration générale",
+ "introduction": "Gérez votre emplacement, votre réseau et vos analyses."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Les attributs suivants sont déjà configurés dans le fichier customize.yaml",
+ "attributes_not_set": "Les attributs suivants ne sont pas définis. Définissez-les si vous le voulez.",
+ "attributes_outside": "Les attributs suivants sont personnalisés en dehors du fichier customize.yaml",
+ "attributes_override": "Vous pouvez les remplacer si vous le souhaitez.",
+ "attributes_set": "Les attributs suivants de l'entité sont définis par programmation.",
+ "caption": "Personnalisation",
+ "description": "Personnaliser vos entités",
+ "different_include": "Peut-être via un domaine, un glob ou un autre include.",
+ "pick_attribute": "Sélectionnez un attribut à remplacer",
+ "picker": {
+ "documentation": "Documentation sur la personnalisation",
+ "header": "Personnalisations",
+ "introduction": "Ajuster les attributs par entité. Les personnalisations ajoutées / modifiées prendront effet immédiatement. Les personnalisations supprimées prendront effet lors de la mise à jour de l'entité."
+ },
+ "warning": {
+ "include_link": "inclure customize.yaml",
+ "include_sentence": "Il semble que votre configuration.yaml ne fonctionne pas correctement",
+ "not_applied": "Les modifications apportées ici y sont écrites, mais ne seront pas appliquées après un rechargement de configuration, à moins que l'inclusion ne soit en place."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Gérer les automatisations, les scènes, les scripts et les assistants",
+ "title": "Automatisations et Scènes"
+ },
+ "blueprints": {
+ "description": "Gérer les blueprints",
+ "title": "Blueprints"
+ },
+ "companion": {
+ "description": "Localisation et notifications",
+ "title": "Application compagnon"
+ },
+ "dashboards": {
+ "description": "Créer des cartes personnalisés pour contrôler votre maison",
+ "title": "Tableaux de bord"
+ },
+ "devices": {
+ "description": "Intégrations, appareils, entités et zones",
+ "title": "Appareils et Services"
+ },
+ "energy": {
+ "description": "Surveiller votre production et consommation d'énergie",
+ "title": "Énergie"
+ },
+ "people": {
+ "description": "Gérer les personnes et les zones suivies par Home Assistant",
+ "title": "Personnes et Zones"
+ },
+ "settings": {
+ "description": "Paramètres de base, contrôles du serveur, journaux et informations",
+ "title": "Paramètres"
+ },
+ "supervisor": {
+ "description": "Créer des sauvegardes, vérifier les journaux ou redémarrer votre système",
+ "title": "Modules complémentaires, Sauvegardes et Superviseur"
+ },
+ "tags": {
+ "description": "Déclencher les automatisations lorsqu’un tag NFC, un code QR, etc. est scanné",
+ "title": "Tags"
+ }
+ },
+ "devices": {
+ "add_prompt": "Aucun {name} n'a encore été ajouté à l'aide de cet appareil. Vous pouvez en ajouter un en cliquant sur le bouton + ci-dessus.",
+ "automation": {
+ "actions": {
+ "caption": "Quand quelque chose est déclenché …",
+ "no_actions": "Aucune action",
+ "unknown_action": "Action inconnue"
+ },
+ "automations": "Automatisations",
+ "conditions": {
+ "caption": "Ne faire quelque chose que si…",
+ "no_conditions": "Aucune condition",
+ "unknown_condition": "Condition inconnue"
+ },
+ "create": "Créer une automatisation avec l'appareil",
+ "create_disable": "Impossible de créer une automatisation avec un appareil désactivé",
+ "no_automations": "Aucune automatisation",
+ "no_device_automations": "Aucune automatisation n'est disponible pour cet appareil.",
+ "triggers": {
+ "caption": "Faire quelque chose quand ...",
+ "no_triggers": "Pas de déclencheur",
+ "unknown_trigger": "Déclencheur inconnu"
+ },
+ "unknown_automation": "Automatisation inconnue"
+ },
+ "cant_edit": "Vous ne pouvez modifier que les éléments créés dans l'interface utilisateur.",
+ "caption": "Appareils",
+ "confirm_delete": "Voulez-vous vraiment supprimer cet appareil ?",
+ "confirm_disable_config_entry": "Il n'y a plus de périphériques pour l'entrée de configuration {entry_name} , voulez-vous à la place désactiver l'entrée de configuration?",
+ "confirm_rename_entity_ids": "Voulez-vous aussi renommer les ID de vos entités?",
+ "confirm_rename_entity_ids_warning": "Cela ne changera aucune configuration (comme les automatisations, les scripts, les scènes, Lovelace) qui utilisent actuellement ces entités, vous devrez les mettre à jour vous-même.",
+ "data_table": {
+ "area": "Zone",
+ "battery": "Batterie",
+ "device": "Appareil",
+ "integration": "Intégration",
+ "manufacturer": "Fabricant",
+ "model": "Modèle",
+ "no_devices": "Aucun appareil",
+ "no_integration": "Pas d'intégration"
+ },
+ "delete": "Supprimer",
+ "description": "Gérer les appareils configurés",
+ "device_info": "Informations sur l’appareil",
+ "device_not_found": "Appareil non trouvé.",
+ "disabled": "Désactivé",
+ "disabled_by": {
+ "config_entry": "Paramètre de configuration",
+ "integration": "Intégration",
+ "user": "Utilisateur"
+ },
+ "download_diagnostics": "Télécharger les journaux",
+ "edit_settings": "Modifier les paramètres",
+ "enabled_cause": "L'appareil est désactivé par {cause}.",
+ "enabled_description": "Les appareils désactivés ne seront pas affichés et les entités appartenant à l'appareil seront désactivées et ne seront pas ajoutées à Home Assistant.",
+ "enabled_label": "Activer l'appareil",
+ "entities": {
+ "add_entities_lovelace": "Ajouter à Lovelace",
+ "config": "Configuration",
+ "control": "Contrôles",
+ "diagnostic": "Diagnostique",
+ "disabled_entities": "+{count} {count, plural,\none {entité désactivée}\nother {entité désactivée}\n}",
+ "entities": "Entités",
+ "hide_disabled": "Masquer désactivé",
+ "none": "Cet appareil n'a pas d'entités",
+ "sensor": "Capteurs",
+ "state": "État"
+ },
+ "name": "Nom",
+ "no_devices": "Aucun appareil",
+ "open_configuration_url_device": "Visiter l'appareil",
+ "open_configuration_url_service": "Visiter l'appareil",
+ "picker": {
+ "filter": {
+ "filter": "Filtre",
+ "hidden_devices": "{number} caché {number, plural,\n one {entité}\n other {entités}\n}",
+ "show_all": "Tout afficher",
+ "show_disabled": "Afficher les appareils désactivés"
+ },
+ "search": "Rechercher des appareils"
+ },
+ "scene": {
+ "create": "Créer une scène avec l'appareil",
+ "create_disable": "Impossible de créer une scène avec un appareil désactivé",
+ "no_scenes": "Pas de scènes",
+ "scenes": "Scènes"
+ },
+ "scenes": "Scènes",
+ "script": {
+ "create": "Créer un script avec l'appareil",
+ "create_disable": "Impossible de créer un script avec un appareil désactivé",
+ "no_scripts": "Pas de scripts",
+ "scripts": "Scripts"
+ },
+ "scripts": "Scripts",
+ "unknown_error": "Erreur inconnue",
+ "unnamed_device": "Appareil sans nom",
+ "update": "Mettre à jour",
+ "update_device_error": "Échec de la mise à jour de l’appareil"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Ajouter un système de batterie",
+ "battery_systems": "Systèmes de batteries",
+ "dialog": {
+ "energy_into_battery": "Énergie entrant dans la batterie (kWh)",
+ "energy_out_of_battery": "Énergie sortant de la batterie (kWh)",
+ "header": "Configurer le système de batterie"
+ },
+ "learn_more": "Plus d'informations sur la façon de commencer.",
+ "sub": "Si vous avez un système de batterie, vous pouvez le configurer pour surveiller la quantité d'énergie stockée et utilisée à partir de votre batterie.",
+ "title": "Batterie de stockage domestique"
+ },
+ "caption": "Énergie",
+ "delete_integration": "Êtes-vous sûr de vouloir supprimer cette intégration ? Cela supprimera les entités qu'elle fournit",
+ "delete_source": "Voulez-vous vraiment supprimer cette source ?",
+ "description": "Surveiller votre production et votre consommation d'énergie",
+ "device_consumption": {
+ "add_device": "Ajouter un appareil",
+ "add_stat": "Choisir l’entité pour suivre l’énergie de",
+ "devices": "Appareils",
+ "dialog": {
+ "device_consumption_energy": "Consommation d'énergie de l'appareil (kWh)",
+ "header": "Ajouter un périphérique",
+ "selected_stat_intro": "Sélectionner l’entité qui représente la consommation d’énergie de l’appareil."
+ },
+ "learn_more": "Plus d’informations sur la façon de commencer.",
+ "selected_stat": "Suivi de l'énergie pour",
+ "sub": "Le suivi de la consommation d’énergie des appareils individuels permet à Home Assistant de décomposer votre consommation d’énergie par appareil.",
+ "title": "Appareils individuels"
+ },
+ "gas": {
+ "add_gas_source": "Ajouter une source de gaz",
+ "dialog": {
+ "cost_entity": "Utiliser une entité avec le prix actuel",
+ "cost_entity_input": "Entité avec le prix actuel par {unit}",
+ "cost_number": "Utiliser un prix statique",
+ "cost_number_input": "Prix par {unit}",
+ "cost_number_suffix": "{currency}/m³",
+ "cost_para": "Sélectionnez comment Home Assistant doit suivre les coûts de l'énergie consommée.",
+ "cost_stat": "Utiliser une entité qui suit les coûts totaux",
+ "cost_stat_input": "Entité de coûts totaux",
+ "energy_stat": "Énergie consommée (m³)",
+ "gas_usage": "Consommation de gaz",
+ "header": "Configurer la consommation de gaz",
+ "m3_or_kWh": "m³ ou kWh",
+ "no_cost": "Ne pas suivre les coûts",
+ "paragraph": "La consommation de gaz est le volume de gaz qui circule vers votre maison."
+ },
+ "gas_consumption": "Consommation de gaz",
+ "learn_more": "Plus d'informations sur la façon de débuter.",
+ "sub": "Laissez Home Assistant surveiller votre consommation de gaz.",
+ "title": "Consommation de gaz"
+ },
+ "grid": {
+ "add_co2_signal": "Ajouter l'intégration du signal CO2",
+ "add_consumption": "Ajouter la consommation",
+ "add_return": "Ajouter un retour",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Utiliser une entité avec le prix actuel",
+ "cost_entity_input": "Entité avec le prix actuel",
+ "cost_number": "Utiliser un prix statique",
+ "cost_number_input": "Prix par kWh",
+ "cost_number_suffix": "{currency} /kWh",
+ "cost_para": "Sélectionnez comment Home Assistant doit suivre les coûts de l'énergie consommée.",
+ "cost_stat": "Utiliser une entité de suivi des coûts totaux",
+ "cost_stat_input": "Coûts totaux Entité",
+ "energy_stat": "Énergie consommée (kWh)",
+ "header": "Configurer la consommation du réseau",
+ "no_cost": "Ne pas suivre les coûts",
+ "paragraph": "La consommation du réseau est l'énergie qui circule du réseau énergétique vers votre maison."
+ },
+ "to": {
+ "cost_entity": "Utiliser une entité avec le taux actuel",
+ "cost_entity_input": "Entité avec le taux actuel",
+ "cost_number": "Utiliser un taux statique",
+ "cost_number_input": "Tarif par kWh",
+ "cost_number_suffix": "{currency} /kWh",
+ "cost_para": "Récupérez-vous de l'argent lorsque vous restituez de l'énergie au réseau ?",
+ "cost_stat": "Utiliser une entité qui suit le total de l'argent reçu",
+ "cost_stat_input": "Entité de rémunération totale",
+ "energy_stat": "Énergie restituée au réseau (kWh)",
+ "header": "Configurer la production du réseau",
+ "no_cost": "je ne récupère pas d'argent",
+ "paragraph": "La production du réseau est l'énergie qui circule de vos panneaux solaires au réseau."
+ }
+ },
+ "grid_carbon_footprint": "Empreinte carbone du réseau",
+ "grid_consumption": "Consommation du réseau",
+ "learn_more": "Plus d’informations sur la façon de commencer.",
+ "return_to_grid": "Retourné au réseau",
+ "sub": "Configurer la quantité d'énergie que vous consommez du réseau et, si vous produisez de l'énergie, redonnez au réseau. Cela permet à Home Assistant de suivre votre consommation d'énergie dans toute la maison.",
+ "title": "Réseau électrique"
+ },
+ "new_device_info": "Après avoir configuré un nouvel appareil, cela peut prendre jusqu'à 2 heures pour que de nouvelles données arrivent dans votre tableau de bord énergétique.",
+ "solar": {
+ "add_solar_production": "Ajouter la production solaire",
+ "dialog": {
+ "add_forecast": "Ajouter une prévision",
+ "dont_forecast_production": "Ne pas prévoir la production",
+ "forecast_production": "Prévision de la production",
+ "header": "Configurer les panneaux solaires",
+ "solar_production_energy": "Énergie de production solaire (kWh)",
+ "solar_production_forecast": "Prévision de la production solaire",
+ "solar_production_forecast_description": "L'ajout d'informations sur les prévisions de production solaire vous permettra de voir rapidement votre production attendue pour aujourd'hui."
+ },
+ "learn_more": "Plus d’informations sur la façon de commencer.",
+ "solar_production": "Production solaire",
+ "stat_predicted_production": "Prévision de votre production d'énergie solaire",
+ "stat_production": "Votre production d'énergie solaire",
+ "stat_return_to_grid": "L'énergie solaire restituée au réseau",
+ "sub": "Laissez Home Assistant surveiller vos panneaux solaires et vous donner un aperçu de leurs performances.",
+ "title": "Panneaux solaires"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "Les entités suivantes ont un état négatif alors qu'un état positif est attendu :",
+ "title": "L'entité a un état négatif"
+ },
+ "entity_not_defined": {
+ "description": "Vérifiez l'intégration ou votre configuration qui fournit :",
+ "title": "Entité non définie"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "Les entités suivantes ont la classe d'état « mesure », mais « last_reset » est manquant :",
+ "title": "Dernière réinitialisation manquante"
+ },
+ "entity_state_non_numeric": {
+ "description": "Les entités suivantes ont un état qui ne peut pas être analysé comme un nombre :",
+ "title": "L'entité a un état non numérique"
+ },
+ "entity_unavailable": {
+ "description": "L'état de ces entités configurées n'est actuellement pas disponible :",
+ "title": "Entité indisponible"
+ },
+ "entity_unexpected_device_class": {
+ "description": "Les entités suivantes n'ont pas la classe d'appareil attendue :",
+ "title": "Classe d'appareil inattendue"
+ },
+ "entity_unexpected_state_class": {
+ "description": "Les entités suivantes n'ont pas la classe d'état attendue :",
+ "title": "Classe d'état inattendue"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "Les entités suivantes n'ont pas la classe d'état attendue \"total_increasing\"",
+ "title": "Classe d'état inattendue"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "Les entités suivantes n'ont pas d'unités de mesure attendues en kWh ou Wh :",
+ "title": "Unité de mesure inattendue"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "Les entités suivantes n'ont pas les unités de mesure attendues '' {currency} /kWh'' ou '' {currency} /Wh'' :",
+ "title": "Unité de mesure inattendue"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "Les entités suivantes n'ont pas les unités de mesure attendues « kWh », « m³ » ou « ft³ » :",
+ "title": "Unité de mesure inattendue"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "Les entités suivantes n'ont pas les unités de mesure attendues '' {currency} /kWh'', '' {currency} /Wh'', '' {currency} /m³'' ou '' {currency} /ft³'' :",
+ "title": "Unité de mesure inattendue"
+ },
+ "recorder_untracked": {
+ "description": "Le recorder a été configuré pour exclure ces entités :",
+ "title": "Entité non suivie"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Entités",
+ "description": "Vue d'ensemble de toutes les entités connues.",
+ "picker": {
+ "disable_selected": {
+ "button": "Désactiver la sélection",
+ "confirm_text": "Les entités désactivées ne seront pas ajoutées à Home Assistant.",
+ "confirm_title": "Voulez-vous désactiver {number} {number, plural,\n one {entité}\n other {entités}\n} ?"
+ },
+ "enable_selected": {
+ "button": "Activer la sélection",
+ "confirm_text": "Cela les rendra à nouveau disponibles dans Home Assistant s'ils sont maintenant désactivés.",
+ "confirm_title": "Voulez-vous activer {number} {number, plural,\n one {entité}\n other {entités}\n} ?"
+ },
+ "filter": {
+ "filter": "Filtre",
+ "hidden_entities": "{number} caché {number, plural,\n one {entité}\n other {entités}\n}",
+ "show_all": "Afficher tout",
+ "show_disabled": "Afficher les entités désactivées",
+ "show_readonly": "Afficher les entités en lecture seule",
+ "show_unavailable": "Afficher les entités non disponibles"
+ },
+ "header": "Entités",
+ "headers": {
+ "area": "Pièce",
+ "disabled_by": "Désactivé par",
+ "entity_id": "ID de l'entité",
+ "integration": "Intégration",
+ "name": "Nom",
+ "status": "Statut"
+ },
+ "introduction": "Home Assistant tient un registre de chaque entité qu'il a déjà vu au moins une fois et qui peut être identifiée de manière unique. Chacune de ces entités se verra attribuer un identifiant qui sera réservé à cette seule entité.",
+ "introduction2": "Utilisé le registre des entités pour remplacer le nom, modifier l'ID de l'entité ou supprimer l'entrée de Home Assistant.",
+ "remove_selected": {
+ "button": "Supprimer la sélection",
+ "confirm_partly_text": "Vous ne pouvez supprimer que {removable} des {selected} entités. Les entités ne peuvent être supprimées que lorsque l'intégration ne fournit plus les entités. Parfois, vous devez redémarrer Home Assistant avant de pouvoir supprimer les entités d'une intégration supprimée. Voulez-vous vraiment supprimer les entités obsolètes?",
+ "confirm_partly_title": "Seulement {number} {number, plural,\n one {entité sélectionnée peut être supprimée}\n other {entités sélectionnées peuvent être supprimées}\n}.",
+ "confirm_text": "Les entités ne peuvent être supprimées que lorsque l'intégration ne fournit plus les entités.",
+ "confirm_title": "Voulez-vous supprimer {number} {number, plural,\n one {entité}\n other {entités}\n} ?"
+ },
+ "search": "Chercher les entités",
+ "selected": "{number} sélectionné",
+ "status": {
+ "disabled": "Désactivé",
+ "ok": "Ok",
+ "readonly": "Lecture seule",
+ "restored": "Restauré",
+ "unavailable": "Indisponible"
+ }
+ }
+ },
+ "header": "Configurer Home Assistant",
+ "helpers": {
+ "caption": "Entrées",
+ "description": "Éléments pouvant aider à construire des automatisations.",
+ "dialog": {
+ "add_helper": "Ajouter une entrée",
+ "add_platform": "Ajouter {platform}",
+ "create": "Créer"
+ },
+ "picker": {
+ "add_helper": "Ajouter une entrée",
+ "headers": {
+ "editable": "Modifiable",
+ "entity_id": "ID de l'entité",
+ "name": "Nom",
+ "type": "Type"
+ },
+ "no_helpers": "On dirait que vous n'avez pas encore d'entrée!"
+ },
+ "types": {
+ "counter": "Compteur",
+ "input_boolean": "Interrupteur",
+ "input_button": "Bouton",
+ "input_datetime": "Date et/ou heure",
+ "input_number": "Nombre",
+ "input_select": "Liste déroulante",
+ "input_text": "Texte",
+ "timer": "Minuteur"
+ }
+ },
+ "info": {
+ "built_using": "Construit en utilisant",
+ "caption": "Info",
+ "copy_github": "Pour GitHub",
+ "copy_menu": "Menu Copier",
+ "copy_raw": "Texte brut",
+ "custom_uis": "Interfaces utilisateur personnalisées :",
+ "description": "Version, état du système et liens vers la documentation",
+ "developed_by": "Développé par un groupe de personnes formidables.",
+ "documentation": "Documentation",
+ "frontend": "interface utilisateur",
+ "frontend_version": "Version interface utilisateur : {version} - {type}",
+ "home_assistant_logo": "Logo de Home Assistant",
+ "icons_by": "Icônes par",
+ "integrations": "Intégrations",
+ "issues": "Problèmes",
+ "license": "Publié sous la licence Apache 2.0",
+ "path_configuration": "Chemin vers configuration.yaml : {path}",
+ "server": "serveur",
+ "setup_time": "Temps de configuration",
+ "source": "Source:",
+ "system_health": {
+ "manage": "Gérer",
+ "more_info": "plus d'infos"
+ },
+ "system_health_error": "Le composant System Health n'est pas chargé. Ajouter 'system_health:' à configuration.yaml"
+ },
+ "integrations": {
+ "add_integration": "Ajouter l'intégration",
+ "attention": "Attention requise",
+ "caption": "Intégrations",
+ "config_entry": {
+ "area": "Dans {area}",
+ "check_the_logs": "Vérifiez les journaux",
+ "configure": "Configurer",
+ "delete": "Supprimer",
+ "delete_confirm": "Êtes-vous sûr de vouloir supprimer l'intégration {title} ?",
+ "depends_on_cloud": "Dépend du cloud",
+ "device_unavailable": "Appareil non disponible",
+ "devices": "{count} {count, plural,\n one {appareil}\n other {appareils}\n}",
+ "disable": {
+ "disable_confirm": "Voulez-vous vraiment désactiver cette entrée de configuration? Ses appareils et entités seront désactivés.",
+ "disabled": "Désactivé",
+ "disabled_by": {
+ "device": "appareil",
+ "integration": "intégration",
+ "user": "utilisateur"
+ },
+ "disabled_cause": "Désactivé par {cause}"
+ },
+ "disable_error": "Échec de l’activation ou de la désactivation de l’intégration",
+ "disable_restart_confirm": "Redémarrez Home Assistant pour terminer la désactivation de cette intégration",
+ "disabled_polling": "Interrogation automatique des données mises à jour désactivée",
+ "documentation": "Documentation",
+ "download_diagnostics": "Télécharger les journaux",
+ "enable_restart_confirm": "Redémarrez Home Assistant pour terminer l'activation de cette intégration",
+ "entities": "{count} {count, plural,\n one {entity}\n other {entities}\n}",
+ "entity_unavailable": "Entité indisponible",
+ "firmware": "Firmware: {version}",
+ "hardware": "Matériel : {version}",
+ "hub": "Connecté via",
+ "known_issues": "Problèmes connus",
+ "manuf": "par {manufacturer}",
+ "no_area": "Pas de zone",
+ "not_loaded": "Non chargé",
+ "open_configuration_url": "Visiter l'appareil",
+ "provided_by_custom_integration": "Fourni par une intégration personnalisée",
+ "reload": "Recharger",
+ "reload_confirm": "L'intégration a été rechargée",
+ "reload_restart_confirm": "Redémarrer Home Assistant pour finaliser le rechargement de cette intégration",
+ "rename": "Renommer",
+ "restart_confirm": "Redémarrer Home Assistant pour terminer la suppression de cette intégration",
+ "services": "{count} {count, plural,\n one {service}\n other {services}\n}",
+ "state": {
+ "failed_unload": "Échec du déchargement",
+ "loaded": "Chargé",
+ "migration_error": "Erreur de migration",
+ "not_loaded": "Non chargé",
+ "setup_error": "Échec de la configuration",
+ "setup_retry": "Réessayer la configuration"
+ },
+ "system_options": "Options système",
+ "unknown_via_device": "Périphérique inconnu",
+ "unnamed_entry": "Entrée sans nom",
+ "via": "Connecté via"
+ },
+ "config_flow": {
+ "aborted": "Abandonné",
+ "close": "Fermer",
+ "could_not_load": "Le flux de configuration n'a pas pu être chargé",
+ "created_config": "Configuration créée pour {name}.",
+ "dismiss": "Fermer la boîte de dialogue",
+ "error": "Erreur",
+ "error_saving_area": "Erreur lors de l'enregistrement de la zone: {error}",
+ "external_step": {
+ "description": "Cette étape nécessite la visite d'un site Web externe pour être complétée.",
+ "open_site": "Ouvrir le site"
+ },
+ "finish": "Terminer",
+ "loading": {
+ "fallback_title": "l'intégration",
+ "loading_flow": "Veuillez patienter pendant la configuration de {integration}",
+ "loading_step": "Chargement de l'étape suivante pour {integration}"
+ },
+ "next": "Suivant",
+ "not_all_required_fields": "Tous les champs obligatoires ne sont pas renseignés.",
+ "not_loaded": "Cette intégration ne peut être chargée, essayez de redémarrer Home Assistant",
+ "pick_flow_step": {
+ "new_flow": "Non, configurez une autre instance de {integration}",
+ "title": "Nous les avons découverts, vous voulez les mettre en place?"
+ },
+ "submit": "Soumettre"
+ },
+ "configure": "Configurer",
+ "configured": "Configuré",
+ "confirm_new": "Voulez-vous configurer {integration} ?",
+ "description": "Gérer les appareils et services connectés",
+ "details": "Détails de l'intégration",
+ "disable": {
+ "disabled_integrations": "{number} désactivé",
+ "show": "Montrer",
+ "show_disabled": "Afficher les intégrations désactivées"
+ },
+ "discovered": "Découvert",
+ "home_assistant_website": "site web de Home Assistant",
+ "ignore": {
+ "confirm_delete_ignore": "Cela fera réintégrer l'intégration dans vos intégrations découvertes lorsqu'elle sera découverte. Cela peut nécessiter un redémarrage ou prendre un certain temps.",
+ "confirm_delete_ignore_title": "Arrêter d'ignorer {name} ?",
+ "confirm_ignore": "Êtes-vous sûr de ne pas vouloir configurer cette intégration? Vous pouvez annuler cela en cliquant sur «Afficher les intégrations ignorées» dans le menu de débordement en haut à droite.",
+ "confirm_ignore_title": "Ignorer la découverte de {name} ?",
+ "ignore": "Ignorer",
+ "ignored": "Ignoré",
+ "show_ignored": "Afficher les intégrations ignorées",
+ "stop_ignore": "Arrêter d'ignorer"
+ },
+ "integration": "intégration",
+ "integration_not_found": "Intégration introuvable.",
+ "new": "Configurer une nouvelle intégration",
+ "no_integrations": "Il semble que vous n'ayez pas encore configuré d'intégrations. Cliquez sur le bouton ci-dessous pour ajouter votre première intégration!",
+ "none": "Rien n'est encore configuré",
+ "none_found": "Aucune intégration trouvée",
+ "none_found_detail": "Ajustez vos critères de recherche.",
+ "note_about_integrations": "Aucune intégration ne correspond à votre recherche, l'intégration que vous souhaitez configurer n'est peut-être pas encore disponible pour la configuration via l'interface utilisateur.",
+ "note_about_website_reference": "D'autres sont disponibles sur le ",
+ "reconfigure": "Reconfigurer",
+ "rename_dialog": "Modifier le nom de cette entrée de configuration",
+ "rename_input_label": "Nom de l'entrée",
+ "search": "Chercher les intégrations"
+ },
+ "introduction": "Ici, il est possible de configurer vos composants et Home Assistant. Tout n'est pas encore configurable à partir de l'interface utilisateur, mais nous y travaillons.",
+ "logs": {
+ "caption": "Journaux",
+ "clear": "Nettoyer",
+ "copy": "Copier l'entrée du journal",
+ "custom_integration": "intégration personnalisée",
+ "description": "Afficher les journaux de Home Assistant",
+ "details": "Détails du journal ({level})",
+ "error_from_custom_integration": "Cette erreur provient d'une intégration personnalisée",
+ "level": {
+ "critical": "CRITIQUE",
+ "debug": "DEBUG",
+ "error": "ERREUR",
+ "info": "INFO",
+ "warning": "ATTENTION"
+ },
+ "load_full_log": "Charger le journal complet de Home Assistant",
+ "loading_log": "Chargement du journal des erreurs…",
+ "multiple_messages": "message survenu pour la première fois à {time} et apparu {counter} fois.",
+ "no_errors": "Aucune erreur n'a été signalée.",
+ "no_issues": "Il n'y a pas de nouveaux problèmes!",
+ "refresh": "Rafraîchir"
+ },
+ "lovelace": {
+ "caption": "Tableaux de bord Lovelace",
+ "dashboards": {
+ "cant_edit_default": "Le tableau de bord Lovelace standard ne peut pas être modifié à partir de l'interface utilisateur. Vous pouvez le masquer en définissant un autre tableau de bord par défaut.",
+ "cant_edit_yaml": "Les tableaux de bord définis dans YAML ne peuvent pas être modifiés à partir de l'interface utilisateur. Modifiez-les dans configuration.yaml.",
+ "caption": "Tableaux de bord",
+ "conf_mode": {
+ "storage": "Contrôle de l'IU",
+ "yaml": "Fichier YAML"
+ },
+ "confirm_delete": "Voulez-vous vraiment supprimer ce tableau de bord ?",
+ "confirm_delete_text": "Votre tableau de bord sera définitivement supprimé.",
+ "confirm_delete_title": "Supprimer {dashboard_title} ?",
+ "default_dashboard": "Ceci est le tableau de bord par défaut",
+ "detail": {
+ "create": "Créer",
+ "delete": "Supprimer",
+ "dismiss": "Fermer",
+ "edit_dashboard": "Modifier le tableau de bord",
+ "icon": "Icône",
+ "new_dashboard": "Ajouter un nouveau tableau de bord",
+ "remove_default": "Supprimer par défaut sur cet appareil",
+ "require_admin": "Administrateur uniquement",
+ "set_default": "Définir par défaut sur cet appareil",
+ "show_sidebar": "Afficher dans la barre latérale",
+ "title": "Titre",
+ "title_required": "Le titre est requis.",
+ "update": "Mise à jour",
+ "url": "URL",
+ "url_error_msg": "L'URL ne peut pas contenir d'espaces ni de caractères spéciaux, sauf pour _ et -"
+ },
+ "picker": {
+ "add_dashboard": "Ajouter un tableau de bord",
+ "headers": {
+ "conf_mode": "Méthode de configuration",
+ "default": "Défaut",
+ "filename": "Nom de fichier",
+ "require_admin": "Admin uniquement",
+ "sidebar": "Afficher dans la barre latérale",
+ "title": "Titre"
+ },
+ "open": "Ouvrir"
+ }
+ },
+ "description": "Créez des jeux de cartes personnalisés pour contrôler votre maison",
+ "resources": {
+ "cant_edit_yaml": "Vous utilisez Lovelace en mode YAML, vous ne pouvez donc pas gérer vos ressources via l'interface utilisateur. Gérez-les dans configuration.yaml.",
+ "caption": "Ressources",
+ "confirm_delete": "Voulez-vous vraiment supprimer cette ressource ?",
+ "detail": {
+ "create": "Créer",
+ "delete": "Supprimer",
+ "dismiss": "Fermer",
+ "new_resource": "Ajouter une nouvelle ressource",
+ "type": "Type de ressource",
+ "update": "Mise à jour",
+ "url": "URL",
+ "url_error_msg": "L'URL est un champ obligatoire",
+ "warning_header": "Soyez prudents !",
+ "warning_text": "L'ajout de ressources peut être dangereux, assurez-vous de connaître la source de la ressource et faites-lui confiance. De mauvaises ressources peuvent sérieusement endommager votre système."
+ },
+ "picker": {
+ "add_resource": "Ajouter une ressource",
+ "headers": {
+ "type": "Type",
+ "url": "URL"
+ },
+ "no_resources": "Pas de ressources"
+ },
+ "refresh_body": "Vous devez actualiser la page pour terminer la suppression, voulez-vous actualiser maintenant ?",
+ "refresh_header": "Voulez-vous vous rafraîchir ?",
+ "types": {
+ "css": "Feuille de style",
+ "html": "HTML (obsolète)",
+ "js": "Fichier JavaScript (obsolète)",
+ "module": "Module JavaScript"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Écouter un sujet",
+ "description_publish": "Publier un paquet",
+ "listening_to": "Écouter",
+ "message_received": "Message {id} reçu sur {topic} à {time} :",
+ "payload": "Payload (modèle autorisé)",
+ "publish": "Publier",
+ "start_listening": "Commencer à écouter",
+ "stop_listening": "Arrêter d'écouter",
+ "subscribe_to": "Sujet auquel s'abonner",
+ "title": "MQTT",
+ "topic": "sujet"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Contrôleur",
+ "instance": "Instance",
+ "network": "Réseau",
+ "node_id": "ID du nœud",
+ "ozw_instance": "Instance Z-Wave",
+ "query_stage": "Étape de requête",
+ "wakeup_instructions": "Instructions de réveil",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Nœud Défaillant",
+ "stage": "Étape",
+ "zwave_info": "Informations Z-Wave"
+ },
+ "navigation": {
+ "network": "Réseau",
+ "node": {
+ "config": "Config",
+ "dashboard": "Tableau de bord"
+ },
+ "nodes": "Nœuds",
+ "select_instance": "Sélectionnez une instance"
+ },
+ "network": {
+ "header": "Gestion du réseau",
+ "introduction": "Gérer les fonctions de niveau réseau.",
+ "node_count": "{count} nœuds"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "Tous les nœuds ont été interrogés",
+ "driverallnodesqueriedsomedead": "Tous les nœuds ont été interrogés. Certains nœuds ont été trouvés morts",
+ "driverawakenodesqueries": "Tous les nœuds éveillés ont été interrogés",
+ "driverfailed": "Échec de la connexion au contrôleur Z-Wave",
+ "driverready": "Initialisation du contrôleur Z-Wave",
+ "driverremoved": "Le pilote a été supprimé",
+ "driverreset": "Le pilote a été réinitialisé",
+ "offline": "OZWDaemon hors ligne",
+ "ready": "Prêt à se connecter",
+ "started": "Connecté à MQTT",
+ "starting": "Connexion à MQTT",
+ "stopped": "OpenZWave arrêté"
+ },
+ "offline": "Hors ligne",
+ "online": "En ligne",
+ "starting": "Démarrage",
+ "unknown": "Inconnu"
+ },
+ "node": {
+ "button": "Détails du nœud",
+ "not_found": "Nœud introuvable"
+ },
+ "node_config": {
+ "header": "Configuration du nœud",
+ "help_source": "Les descriptions des paramètres de configuration et le texte d'aide sont fournis par le projet OpenZWave.",
+ "introduction": "Gérez les différents paramètres de configuration d'un nœud Z-Wave.",
+ "wakeup_help": "Les nœuds alimentés par batterie doivent être éveillés pour modifier leur configuration. Si le nœud n'est pas réveillé, OpenZWave tentera de mettre à jour la configuration du nœud la prochaine fois qu'il se réveillera, ce qui pourrait être plusieurs heures (ou jours) plus tard. Suivez ces étapes pour réactiver votre appareil:"
+ },
+ "node_metadata": {
+ "product_manual": "Manuel du produit"
+ },
+ "node_query_stages": {
+ "associations": "Rafraîchissement les associations et les membres",
+ "cacheload": "Chargement des informations à partir du fichier de cache OpenZWave. Les nœuds de batterie resteront à cette étape jusqu'à ce que le nœud se réveille.",
+ "complete": "Le processus d'interrogation est terminé",
+ "configuration": "Obtention la configuration à partir du nœud",
+ "dynamic": "Obtention de valeurs fréquemment modifiées du nœud",
+ "instances": "Obtention des détails sur les instances ou les canaux pris en charge par un appareil",
+ "manufacturerspecific1": "Obtention des codes d'identification du fabricant et du produit auprès du nœud",
+ "manufacturerspecific2": "Obtention de codes d’identification supplémentaires du fabricant et du produit à partir du nœud",
+ "neighbors": "Obtenir une liste des nœuds voisins",
+ "nodeinfo": "Obtention des classes de commande prises en charge à partir du nœud",
+ "nodeplusinfo": "Obtention d'informations Z-Wave + à partir du nœud",
+ "probe": "Vérification si le nœud est éveillé/vivant",
+ "protocolinfo": "Obtention des capacités Z-Wave de base de ce nœud à partir du contrôleur",
+ "session": "Obtention de valeurs rarement modifiées du nœud",
+ "static": "Obtention des valeurs statiques de l'appareil",
+ "versions": "Obtention d'informations sur les versions des microprogrammes et des classes de commande",
+ "wakeup": "Configuration de la prise en charge des files d'attente et des messages de réveil"
+ },
+ "nodes_table": {
+ "failed": "Échec",
+ "id": "ID",
+ "manufacturer": "Fabricant",
+ "model": "Modèle",
+ "query_stage": "Étape de requête",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Si le nœud est alimenté par batterie, assurez-vous de l'activer avant de continuer",
+ "button": "Actualiser le nœud",
+ "complete": "Actualisation du nœud terminée",
+ "description": "Cela indiquera à OpenZWave de réinterroger un nœud et de mettre à jour les classes de commande, les capacités et les valeurs du nœud.",
+ "node_status": "État du nœud",
+ "refreshing_description": "Rafraîchissement des informations sur le nœud…",
+ "start_refresh_button": "Démarrer l'actualisation",
+ "step": "Étape",
+ "title": "Actualiser les informations du nœud",
+ "wakeup_header": "Instructions de réveil pour",
+ "wakeup_instructions_source": "Les instructions de réveil proviennent de la base de données de la communauté OpenZWave."
+ },
+ "select_instance": {
+ "header": "Sélectionnez une instance OpenZWave",
+ "introduction": "Vous avez plus d'une instance OpenZWave en cours d'exécution. Quelle instance souhaitez-vous gérer ?",
+ "none_found": "Nous n'avons pas trouvé d'instance d'OpenZWave. Si vous pensez c'est incorrect, vérifiez vos configurations OpenZWave et MQTT et assurez-vous que Home Assistant peut communiquer avec votre serveur MQTT."
+ },
+ "services": {
+ "add_node": "Ajouter un nœud",
+ "cancel_command": "Annuler la commande",
+ "remove_node": "Supprimer le nœud"
+ }
+ },
+ "person": {
+ "add_person": "Ajouter une personne",
+ "caption": "Personnes",
+ "confirm_delete": "Êtes-vous sûr de vouloir supprimer cette personne?",
+ "confirm_delete2": "Tous les appareils appartenant à cette personne ne seront plus affectés.",
+ "create_person": "Créer une personne",
+ "description": "Gérez les personnes suivies par Home Assistant",
+ "detail": {
+ "admin": "Administrateur",
+ "allow_login": "Autoriser la personne à se connecter",
+ "confirm_delete_user": "Êtes-vous sûr de vouloir supprimer le compte utilisateur de {name} ? Vous pouvez toujours suivre l'utilisateur, mais la personne ne pourra plus se connecter.",
+ "create": "Créer",
+ "delete": "Supprimer",
+ "device_tracker_intro": "Sélectionnez les appareils appartenant à cette personne.",
+ "device_tracker_pick": "Choisissez le périphérique à suivre",
+ "device_tracker_picked": "Appareil suivi",
+ "link_integrations_page": "Page des intégrations",
+ "link_presence_detection_integrations": "Intégrations de détection de présence",
+ "linked_user": "Utilisateur lié",
+ "local_only": "Ne peut se connecter qu'à partir du réseau local",
+ "name": "Nom",
+ "name_error_msg": "Le nom est requis",
+ "new_person": "Nouvelle personne",
+ "no_device_tracker_available_intro": "Lorsque vous avez des appareils qui indiquent la présence d'une personne, vous serez en mesure de les affecter à une personne ici. Vous pouvez ajouter votre premier appareil en ajoutant une intégration de détection de présence à partir de la page d'intégration.",
+ "update": "Mettre à jour"
+ },
+ "introduction": "Ici, vous pouvez définir chaque personne d'intérêt dans Home Assistant.",
+ "learn_more": "En savoir plus sur les personnes",
+ "no_persons_created_yet": "Il semble que vous n’avez encore créé personne.",
+ "note_about_persons_configured_in_yaml": "Remarque: les personnes configurées via configuration.yaml ne peuvent pas être modifiées via l'interface utilisateur.",
+ "person_not_found": "Nous n'avons pas trouvé la personne que vous tentiez de modifier.",
+ "person_not_found_title": "Personne introuvable"
+ },
+ "scene": {
+ "activated": "Scène activée {name}.",
+ "caption": "Scènes",
+ "description": "Capturez les états de l'appareil et rappelez-les facilement plus tard",
+ "editor": {
+ "area": "Zone",
+ "default_name": "Nouvelle scène",
+ "devices": {
+ "add": "Ajouter un appareil",
+ "delete": "Supprimer l'appareil",
+ "header": "Appareils",
+ "introduction": "Ajoutez les périphériques que vous souhaitez inclure dans votre scène. Définissez l'état que vous souhaitez pour tous les périphériques de cette scène."
+ },
+ "entities": {
+ "add": "Ajouter une entité",
+ "delete": "Supprimer l'entité",
+ "device_entities": "Si vous ajoutez une entité appartenant à un périphérique, ce dernier sera ajouté.",
+ "header": "Entités",
+ "introduction": "Les entités n'appartenant pas à un périphérique peuvent être définies ici.",
+ "without_device": "Entités sans appareil"
+ },
+ "icon": "Icône",
+ "introduction": "Utilisez des scènes pour donner vie à votre maison.",
+ "load_error_not_editable": "Seules les scènes de scenes.yaml sont modifiables.",
+ "load_error_unknown": "Erreur de chargement de la scène ({err_no})",
+ "name": "Nom",
+ "save": "Sauvegarder",
+ "unsaved_confirm": "Vous avez des changements non enregistrés. Êtes-vous sûr de vouloir quitter?"
+ },
+ "picker": {
+ "add_scene": "Ajouter une scène",
+ "delete_confirm": "Êtes-vous sûr de vouloir supprimer cette scène?",
+ "delete_scene": "Supprimer la scène",
+ "duplicate": "Dupliquer",
+ "duplicate_scene": "Dupliquer la scène",
+ "edit_scene": "Éditer la scène",
+ "header": "Éditeur de scène",
+ "headers": {
+ "name": "Nom"
+ },
+ "introduction": "L'éditeur de scène vous permet de créer et d'éditer des scènes. Suivez le lien ci-dessous pour lire les instructions afin de vous assurer que vous avez correctement configuré Home Assistant.",
+ "learn_more": "En savoir plus sur les scènes",
+ "no_scenes": "Nous n'avons pas pu trouver de scènes modifiables",
+ "only_editable": "Seules les scènes définies dans scenes.yaml sont modifiables.",
+ "pick_scene": "Choisir une scène à éditer",
+ "show_info_scene": "Afficher les informations de la scène"
+ }
+ },
+ "script": {
+ "caption": "Scripts",
+ "description": "Exécuter une séquence d'actions",
+ "editor": {
+ "alias": "Nom",
+ "default_name": "Nouveau script",
+ "delete_confirm": "Êtes-vous sûr de vouloir supprimer ce script?",
+ "delete_script": "Supprimer le script",
+ "header": "Script: {name}",
+ "icon": "Icône",
+ "id": "ID de l'entité",
+ "id_already_exists": "Cet ID existe déjà",
+ "id_already_exists_save_error": "Vous ne pouvez pas enregistrer ce script car l'ID n'est pas unique, choisissez un autre ID ou laissez-le vide pour en générer automatiquement un.",
+ "introduction": "Utiliser des scripts pour exécuter une séquence d'actions.",
+ "link_available_actions": "En savoir plus sur les actions disponibles.",
+ "load_error_not_editable": "Seuls les scripts dans scripts.yaml sont modifiables.",
+ "max": {
+ "parallel": "Nombre maximal de parcours parallèles",
+ "queued": "Longueur de la file d'attente"
+ },
+ "modes": {
+ "description": "Le mode contrôle ce qui se passe lorsque le script est appelé alors qu’il est toujours en cours d’exécution à partir d’une ou plusieurs invocations précédentes. Consultez le {documentation_link} pour plus d’informations.",
+ "documentation": "documentation script",
+ "label": "Mode",
+ "parallel": "Parallèle",
+ "queued": "En attente",
+ "restart": "Redémarrer",
+ "single": "Unique (par défaut)"
+ },
+ "save_script": "Enregistrer le script",
+ "sequence": "Séquence",
+ "sequence_sentence": "La séquence d'actions de ce script.",
+ "show_trace": "Afficher la trace"
+ },
+ "picker": {
+ "add_script": "Ajouter un script",
+ "dev_script": "Script de débogage",
+ "duplicate": "Dupliquer",
+ "duplicate_script": "Dupliquer le script",
+ "edit_script": "Éditer le script",
+ "header": "Éditeur de script",
+ "headers": {
+ "name": "Nom"
+ },
+ "introduction": "L'éditeur de script vous permet de créer et d'éditer des scripts. Suivez le lien ci-dessous pour lire les instructions afin de vous assurer que vous avez correctement configuré Home Assistant.",
+ "learn_more": "En savoir plus sur les scripts",
+ "no_scripts": "Nous n'avons pas trouvé de scripts modifiables",
+ "run_script": "Exécuter le script",
+ "show_info": "Afficher des informations sur le script"
+ }
+ },
+ "server_control": {
+ "caption": "Contrôle du serveur",
+ "description": "Redémarrer et arrêter le serveur Home Assistant",
+ "section": {
+ "reloading": {
+ "automation": "Automatisations",
+ "command_line": "Entités de ligne de commande",
+ "core": "Emplacement et personnalisations",
+ "filesize": "Entités de taille de fichier",
+ "filter": "Entités de filtrage",
+ "generic": "Entités de caméra IP générique",
+ "generic_thermostat": "Entités thermostatiques génériques",
+ "group": "Groupes, entités de groupe et services de notification",
+ "heading": "Rechargement de la configuration",
+ "history_stats": "Entités de statistiques d'historique",
+ "homekit": "HomeKit",
+ "input_boolean": "Entrées booléennes",
+ "input_button": "Boutons de saisie",
+ "input_datetime": "Entrée des dates et heures",
+ "input_number": "Entrées numériques",
+ "input_select": "Listes de sélection",
+ "input_text": "Entrées de texte",
+ "introduction": "Certaines parties de Home Assistant peuvent être rechargées sans nécessiter de redémarrage. Le fait de cliquer sur recharger déchargera leur configuration actuelle et chargera la nouvelle.",
+ "min_max": "Min/max entités",
+ "mqtt": "Entités MQTT configurées manuellement",
+ "person": "Personnes",
+ "ping": "Entités de capteur binaire Ping",
+ "reload": "{domain}",
+ "rest": "Rest entités et services de notification",
+ "rpi_gpio": "Entités GPIO Raspberry Pi",
+ "scene": "Scènes",
+ "script": "Scripts",
+ "smtp": "Services de notification SMTP",
+ "statistics": "Entités statistiques",
+ "telegram": "Services de notification par télégramme",
+ "template": "Entités modèles",
+ "themes": "Thèmes",
+ "timer": "Minuteurs",
+ "trend": "Entités de tendance",
+ "universal": "Entités de lecteur multimédia universel",
+ "zone": "Zones"
+ },
+ "server_management": {
+ "confirm_restart": "Êtes-vous sûr de vouloir redémarrer Home Assistant?",
+ "confirm_stop": "Êtes-vous sûr de vouloir arrêter Home Assistant?",
+ "heading": "Gestion du serveur",
+ "introduction": "Contrôler votre serveur Home Assistant… à partir de Home Assistant.",
+ "restart": "Redémarrer",
+ "stop": "Arrêter"
+ },
+ "validation": {
+ "check_config": "Vérifier la configuration",
+ "heading": "Validation de la configuration",
+ "introduction": "Valider votre configuration si vous avez récemment apporté des modifications à votre configuration et que vous souhaitez vous assurer que celle-ci est entièrement valide",
+ "invalid": "Configuration invalide",
+ "valid": "Configuration valide !"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Ajouter une balise",
+ "automation_title": "La balise {name} est analysée",
+ "caption": "Balises",
+ "confirm_remove": "Voulez-vous vraiment supprimer la balise {tag} ?",
+ "confirm_remove_title": "Supprimer la balise ?",
+ "create_automation": "Créer une automatisation avec une balise",
+ "description": "Déclenchez les automatisations lorsqu’une balise NFC, un code QR, etc. est scanné",
+ "detail": {
+ "companion_apps": "applications associées",
+ "create": "Créer",
+ "create_and_write": "Créer et Écrire",
+ "delete": "Supprimer",
+ "description": "Description",
+ "name": "Nom",
+ "new_tag": "Nouvelle balise",
+ "tag_id": "Id de balise",
+ "tag_id_placeholder": "Généré automatiquement lorsque laissé vide",
+ "update": "Mise à jour",
+ "usage": "Un tag peut déclencher une automatisation lorsqu'il est scanné, vous pouvez utiliser des tags NFC, des codes QR ou tout autre type de tag. Utilisez notre {companion_link} pour écrire cette balise sur une balise NFC programmable ou créez un code QR ci-dessous."
+ },
+ "edit": "Modifier",
+ "headers": {
+ "last_scanned": "Dernière analyse",
+ "name": "Nom"
+ },
+ "learn_more": "En savoir plus sur les balises",
+ "never_scanned": "Jamais scanné",
+ "no_tags": "Aucunes balises",
+ "write": "Écrire"
+ },
+ "updates": {
+ "more_updates": "+ {count} Mises à jour",
+ "review": "voir",
+ "show": "afficher",
+ "show_all_updates": "Afficher toutes les mises à jour",
+ "title": "{count} {count, plural,\n one {mise à jour}\n other {mises à jour}\n}",
+ "unable_to_fetch": "Impossible de récupérer les mises à jour disponibles",
+ "version_available": "La version {version_available} est disponible"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Ajouter un utilisateur",
+ "create": "Créer",
+ "local_only": "Local uniquement",
+ "password": "Mot de passe",
+ "password_confirm": "Confirmer le mot de passe",
+ "password_not_match": "Le mot de passe ne correspond pas"
+ },
+ "caption": "Utilisateurs",
+ "description": "Gérer les comptes utilisateur de Home Assistant",
+ "editor": {
+ "activate_user": "Activer l'utilisateur",
+ "active": "Actif",
+ "active_tooltip": "Contrôle si l'utilisateur peut se connecter",
+ "admin": "Administrateur",
+ "caption": "Voir l'utilisateur",
+ "change_password": "Changer le mot de passe",
+ "confirm_user_deletion": "Êtes-vous sûr de vouloir supprimer {name} ?",
+ "deactivate_user": "Désactiver l'utilisateur",
+ "delete_user": "Supprimer l'utilisateur",
+ "group": "Groupe",
+ "id": "ID",
+ "local_only": "Ne peut se connecter qu'à partir du réseau local",
+ "name": "Nom",
+ "new_password": "Nouveau mot de passe",
+ "owner": "Propriétaire",
+ "password_changed": "Le mot de passe a été changé avec succès",
+ "system_generated": "Généré par le système",
+ "system_generated_users_not_editable": "Impossible de mettre à jour les utilisateurs générés par le système.",
+ "system_generated_users_not_removable": "Impossible de supprimer les utilisateurs générés par le système.",
+ "unnamed_user": "Utilisateur sans nom",
+ "update_user": "Mise à jour",
+ "username": "Nom d'utilisateur"
+ },
+ "is_local": "Utilisateur local",
+ "is_not_active": "Désactivé",
+ "is_owner": "Propriétaire",
+ "is_system": "Utilisateur système",
+ "picker": {
+ "add_user": "Ajouter un utilisateur",
+ "headers": {
+ "group": "Groupe",
+ "is_active": "Actif",
+ "is_owner": "Propriétaire",
+ "local": "Local uniquement",
+ "name": "Nom",
+ "system": "Généré par le système",
+ "username": "Nom d'utilisateur"
+ }
+ },
+ "users_privileges_note": "La fonctionnalité de groupe d'utilisateurs est en cours de développement. L'utilisateur ne pourra pas gérer l'instance via l'interface. Nous vérifions toujours tous les points terminaisons d'API pour assurer que les accès soient limités aux administrateurs."
+ },
+ "zha": {
+ "add_device": "Ajouter un appareil",
+ "add_device_page": {
+ "discovered_text": "Les appareils s'afficheront ici une fois découverts.",
+ "no_devices_found": "Aucun appareil n'a été trouvé, assurez-vous qu'ils sont en mode d'appairage et gardez-les éveillés pendant que la découverte est en cours",
+ "pairing_mode": "Assurez-vous que vos appareils sont en mode d'appairage. Consultez les instructions de votre appareil pour savoir comment procéder.",
+ "search_again": "Rechercher à nouveau",
+ "spinner": "Recherche de périphériques ZHA Zigbee …"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Attributs du cluster sélectionné",
+ "get_zigbee_attribute": "Obtenir l'attribut Zigbee",
+ "header": "Attributs de cluster",
+ "help_attribute_dropdown": "Sélectionnez un attribut à afficher ou définissez sa valeur.",
+ "help_get_zigbee_attribute": "Obtenez la valeur pour l'attribut sélectionné.",
+ "help_set_zigbee_attribute": "Définir la valeur d'attribut pour le cluster spécifié sur l'entité spécifiée.",
+ "introduction": "Voir et éditer les attributs du cluster.",
+ "set_zigbee_attribute": "Définir l'attribut Zigbee"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Commandes du cluster sélectionné",
+ "header": "Commandes de cluster",
+ "help_command_dropdown": "Sélectionnez une commande avec laquelle interagir.",
+ "introduction": "Afficher et émettre des commandes de cluster.",
+ "issue_zigbee_command": "Émettre une commande Zigbee"
+ },
+ "clusters": {
+ "header": "Clusters",
+ "help_cluster_dropdown": "Sélectionnez un cluster pour afficher les attributs et les commandes.",
+ "introduction": "Les grappes sont les éléments de construction de la fonctionnalité Zigbee. Ils séparent les fonctionnalités en unités logiques. Il en existe de types client et serveur et sont composés d'attributs et de commandes."
+ },
+ "common": {
+ "clusters": "Clusters",
+ "manufacturer_code_override": "Code de remplacement du fabricant",
+ "value": "Valeur"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Raccourcis",
+ "update_button": "Configuration de mise à jour"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Configuration terminée",
+ "CONFIGURED_status_text": "Initialisation",
+ "INITIALIZED": "Initialisation terminée",
+ "INITIALIZED_status_text": "L'appareil est prêt à être utilisé",
+ "INTERVIEW_COMPLETE": "Processus d'interrogation terminé",
+ "INTERVIEW_COMPLETE_status_text": "Configurer",
+ "PAIRED": "Appareil trouvé",
+ "PAIRED_status_text": "Démarrage du processus d'interrogation"
+ },
+ "group_binding": {
+ "bind_button_help": "Lier le groupe sélectionné aux groupes de dispositifs sélectionnés.",
+ "bind_button_label": "Lier Groupe",
+ "cluster_selection_help": "Sélectionnez les clusters à lier au groupe sélectionné.",
+ "group_picker_help": "Sélectionnez un groupe pour émettre une commande de liaison.",
+ "group_picker_label": "Groupes pouvant être liés",
+ "header": "Liaison de groupe",
+ "introduction": "Lier et délier les groupes.",
+ "unbind_button_help": "Délier le groupe sélectionné des groupes de périphériques sélectionnés.",
+ "unbind_button_label": "Délier Groupe"
+ },
+ "groups": {
+ "add_group": "Ajouter un groupe",
+ "add_members": "Ajouter des membres",
+ "caption": "Groupes",
+ "create": "Créer un groupe",
+ "create_group": "Zigbee Home Automation - Créer un groupe",
+ "create_group_details": "Entrez les détails requis pour créer un nouveau groupe de zigbee",
+ "creating_group": "Création de groupe",
+ "delete": "Supprimer le groupe",
+ "group_details": "Voici tous les détails du groupe Zigbee sélectionné.",
+ "group_id": "ID de groupe",
+ "group_info": "Informations sur le groupe",
+ "group_name_placeholder": "Nom du groupe",
+ "group_not_found": "Groupe introuvable !",
+ "groups": "Groupes",
+ "members": "Membres",
+ "remove_members": "Supprimer des membres",
+ "removing_members": "Suppression de membres"
+ },
+ "network": {
+ "caption": "Réseau"
+ },
+ "visualization": {
+ "auto_zoom": "Zoom automatique",
+ "caption": "Visualisation",
+ "enable_physics": "Activer la physique",
+ "header": "Visualisation du réseau",
+ "highlight_label": "Mettre en évidence les appareils",
+ "refresh_topology": "Actualiser la topologie",
+ "zoom_label": "Se connecter à l'appareil"
+ }
+ },
+ "zone": {
+ "add_zone": "Ajouter une zone",
+ "caption": "Zones",
+ "configured_in_yaml": "Les zones configurées via configuration.yaml ne peuvent pas être modifiées via l'interface utilisateur.",
+ "confirm_delete": "Êtes-vous sûr de vouloir supprimer cette zone ?",
+ "create_zone": "Créer une zone",
+ "description": "Gérez les zones dans lesquelles vous souhaitez suivre les personnes",
+ "detail": {
+ "create": "Créer",
+ "delete": "Effacer",
+ "icon": "Icône",
+ "icon_error_msg": "L'icône doit être au format \"préfixe:nom d'icône\", par exemple : \"mdi:home\"",
+ "latitude": "Latitude",
+ "longitude": "Longitude",
+ "name": "Nom",
+ "new_zone": "Nouvelle zone",
+ "passive": "Passif",
+ "passive_note": "Les zones passives sont cachées dans l'interface utilisateur et ne sont pas utilisées comme emplacement pour les appareils suivis. Elles sont utiles si vous voulez les utiliser pour des automatisations.",
+ "radius": "Rayon",
+ "required_error_msg": "Ce champ est requis",
+ "update": "Mettre à jour"
+ },
+ "edit_home_zone": "Le rayon de la zone d'habitation ne peut pas encore être modifié depuis le frontend. Faites glisser le marqueur sur la carte pour déplacer la zone d'habitation.",
+ "edit_home_zone_narrow": "Le rayon de la zone d'habitation ne peut pas encore être modifié depuis le frontend. L'emplacement peut être modifié par rapport à la configuration générale.",
+ "edit_zone": "Modifier la zone",
+ "go_to_core_config": "Aller à la configuration générale ?",
+ "home_zone_core_config": "L'emplacement de votre zone d'habitation est modifiable à partir de la page de configuration générale. Le rayon de la zone d'habitation ne peut pas encore être modifié depuis le frontend. Voulez-vous passer à la configuration générale ?",
+ "introduction": "Les zones vous permettent de spécifier certaines régions sur la terre. Lorsqu'une personne se trouve dans une zone, l'état prend le nom de la zone. Les zones peuvent également être utilisées comme déclencheur ou condition dans les configurations d'automatisation.",
+ "no_zones_created_yet": "Il semble que vous n'ayez pas encore créé de zones."
+ },
+ "zwave": {
+ "common": {
+ "index": "Index",
+ "instance": "Instance",
+ "unknown": "inconnu",
+ "value": "Valeur",
+ "wakeup_interval": "Intervalle de réveil"
+ },
+ "description": "Gérer votre réseau Z-Wave",
+ "learn_more": "En savoir plus sur Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "Migrer vers OpenZWave",
+ "introduction": "Cet assistant vous aidera à migrer de l'ancienne intégration Z-Wave vers l'intégration OpenZWave qui est actuellement en bêta."
+ },
+ "zwave_js": {
+ "header": "Migrez vers Z-Wave JS",
+ "introduction": "Cette intégration n'est plus maintenue, et nous vous conseillons de passer à la nouvelle intégration Z-Wave JS. Cet assistant vous aidera à migrer de l'intégration existante Z-Wave vers la nouvelle intégration Z-Wave JS."
+ }
+ },
+ "network_management": {
+ "header": "Gestion de réseau Z-Wave",
+ "introduction": "Exécutez les commandes qui affectent le réseau Z-Wave. Vous ne saurez pas si la plupart des commandes ont réussi, mais vous pouvez consulter le journal OZW pour essayer de le savoir."
+ },
+ "network_status": {
+ "network_started": "Le réseau Z-Wave a été démarré",
+ "network_started_note_all_queried": "Tous les nœuds ont été interrogés.",
+ "network_started_note_some_queried": "Les nœuds éveillés ont été interrogés. Les nœuds en veille seront interrogés à leur réveil.",
+ "network_starting": "Démarrage du réseau Z-Wave…",
+ "network_starting_note": "Ceci peut prendre un certain temps en fonction du débit de votre réseau.",
+ "network_stopped": "Réseau Z-Wave arrêté"
+ },
+ "node_config": {
+ "config_parameter": "Paramètre de configuration",
+ "config_value": "Valeur de configuration",
+ "false": "Faux",
+ "header": "Options de configuration du nœud",
+ "seconds": "secondes",
+ "set_config_parameter": "Définir le paramètre de configuration",
+ "set_wakeup": "Définir l'intervalle de réveil",
+ "true": "Vrai"
+ },
+ "node_management": {
+ "add_to_group": "Ajouter au groupe",
+ "entities": "Entités du nœud",
+ "entity_info": "Informations sur l'entité",
+ "exclude_entity": "Exclure cette entité de Home Assistant",
+ "group": "Groupe",
+ "header": "Gestion des nœuds Z-Wave",
+ "introduction": "Exécute des commandes Z-Wave affectant individuellement un nœud. Sélectionnez un nœud pour voir une liste des commandes disponibles.",
+ "max_associations": "Associations Max:",
+ "node_group_associations": "Associations aux groupes de nœuds",
+ "node_protection": "Protection des nœuds",
+ "node_to_control": "Nœud à contrôler",
+ "nodes": "Nœuds",
+ "nodes_hint": "Sélectionnez le nœud pour afficher les options par nœud",
+ "nodes_in_group": "Autres nœuds de ce groupe :",
+ "pooling_intensity": "Intensité du sondage",
+ "protection": "Protection",
+ "remove_broadcast": "Supprimer la diffusion",
+ "remove_from_group": "Supprimer du groupe",
+ "set_protection": "Définir la protection"
+ },
+ "ozw_log": {
+ "header": "Journal OZW",
+ "introduction": "Afficher le journal. 0 est le minimum (charge le journal entier) et 1000 est le maximum. Load affichera un journal statique et tail se mettra à jour automatiquement avec le dernier nombre de lignes spécifié du journal.",
+ "last_log_lines": "Nombre de dernières lignes de journal",
+ "load": "Charger",
+ "tail": "Suivre"
+ },
+ "services": {
+ "add_node": "Ajouter un nœud",
+ "add_node_secure": "Ajouter un nœud sécurisé",
+ "cancel_command": "Annuler la commande",
+ "heal_network": "Soigner le réseau",
+ "heal_node": "Guérir Nœud",
+ "node_info": "Informations sur le nœud",
+ "print_node": "Imprimer le nœud",
+ "refresh_entity": "Actualiser l'entité",
+ "refresh_node": "Actualiser Nœud",
+ "remove_failed_node": "Supprimer le nœud défaillant",
+ "remove_node": "Supprimer un nœud",
+ "replace_failed_node": "Remplacer le nœud défaillant",
+ "save_config": "Enregistrer la configuration",
+ "soft_reset": "Redémarrage",
+ "start_network": "Démarrer le réseau",
+ "stop_network": "Arrêter le réseau",
+ "test_network": "Tester le réseau",
+ "test_node": "Tester Nœud"
+ },
+ "values": {
+ "header": "Valeurs des nœuds"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Annuler l'inclusion",
+ "check_logs": "Veuillez consulter les journaux pour plus d'informations.",
+ "choose_inclusion_strategy": "Comment voulez-vous ajouter votre appareil",
+ "controller_in_inclusion_mode": "Votre contrôleur Z-Wave est maintenant en mode inclusion.",
+ "enter_qr_code": "Entrer la valeur du code QR",
+ "follow_device_instructions": "Suivez les instructions fournies avec votre appareil pour déclencher l'appairage sur l'appareil.",
+ "inclusion_failed": "L'appareil n'a pas pu être ajouté.",
+ "inclusion_finished": "Le périphérique a été ajouté.",
+ "interview_failed": "L'interrogation de l'appareil a échoué. Des informations additionnelles peuvent être disponibles dans les journaux.",
+ "interview_started": "L'appareil est en cours d'interrogation. Cela peut prendre du temps.",
+ "introduction": "Cet assistant vous guidera dans l'ajout d'un nœud à votre réseau Z-Wave.",
+ "provisioning_finished": "L'appareil a été ajouté. Une fois allumé, il deviendra disponible.",
+ "qr_code": "QR Code",
+ "qr_code_paragraph": "Si votre appareil prend en charge SmartStart, vous pouvez scanner le code QR pour un jumelage facile.",
+ "scan_qr_code": "Scanner le code QR",
+ "searching_device": "Recherche d'appareil",
+ "secure_inclusion_warning": "Les dispositifs sécurisés nécessitent une bande passante supplémentaire ; un trop grand nombre de dispositifs sécurisés peut ralentir votre réseau Z-Wave. Nous recommandons de n'utiliser l'inclusion sécurisée que pour les dispositifs qui en ont besoin, comme les serrures ou les ouvre-portes de garage.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Exemple : Serrures de portes anciennes sans support S2",
+ "title": "Héritage S0"
+ },
+ "S2_AccessControl": {
+ "description": "Exemple : Serrures de porte et portes de garage",
+ "title": "Contrôle d'accès S2"
+ },
+ "S2_Authenticated": {
+ "description": "Exemple: Éclairage, capteurs et systèmes de sécurité",
+ "title": "Authentifié S2"
+ },
+ "S2_Unauthenticated": {
+ "description": "Comme S2 Authentifié, mais sans vérification que le bon appareil est inclus",
+ "title": "S2 non authentifié"
+ }
+ },
+ "select_camera": "Sélectionner la caméra",
+ "start_inclusion": "Commencer l'inclusion",
+ "start_secure_inclusion": "Commencer l'inclusion sécurisée",
+ "title": "Ajouter un périphérique Z-Wave",
+ "use_secure_inclusion": "Utiliser l'inclusion sécurisée",
+ "view_device": "Afficher l'appareil"
+ },
+ "common": {
+ "add_node": "Ajouter un appareil",
+ "back": "Précédent",
+ "close": "Fermer",
+ "heal_network": "Guérir le réseau",
+ "home_id": "ID de la maison",
+ "network": "Réseau",
+ "node_id": "ID de l’appareil",
+ "reconfigure_server": "Reconfigurer le serveur",
+ "remove_node": "Supprimer l’appareil",
+ "source": "source"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n one {appareil}\n other {appareils}\n}",
+ "driver_version": "Version du pilote",
+ "dump_dead_nodes_text": "Certains de vos appareils n'ont pas répondu et sont supposés morts. Ceux-ci ne seront pas entièrement exportés.",
+ "dump_dead_nodes_title": "Certains de vos appareils sont morts",
+ "dump_debug": "Télécharger les données",
+ "dump_not_ready_confirm": "Télécharger",
+ "dump_not_ready_text": "Si vous créez une exportation alors que tous les nœuds ne sont pas prêts, vous risquez de manquer les données nécessaires. Donnez à votre réseau le temps d'interroger tous les nœuds. Voulez-vous continuer le vidage?",
+ "dump_not_ready_title": "Tous les appareils ne sont pas encore prêts",
+ "header": "Gérez votre réseau Z-Wave",
+ "home_id": "ID de la maison",
+ "introduction": "Gérez votre réseau Z-Wave et vos nœuds Z-Wave",
+ "nodes_ready": "Les nœuds sont prêts",
+ "not_ready": "{count} pas prêt",
+ "provisioned_devices": "Appareils provisionnés",
+ "server_url": "URL du serveur",
+ "server_version": "Version du serveur"
+ },
+ "device_info": {
+ "device_config": "Configurer l'appareil",
+ "heal_node": "Guérir le nœud",
+ "highest_security": "Sécurité maximale",
+ "is_secure": "Sécurise",
+ "node_ready": "Nœud prêt",
+ "node_status": "État du nœud",
+ "reinterview_device": "Ré interviewer l'appareil",
+ "remove_failed": "Supprimer le périphérique défaillant",
+ "unknown": "Inconnu",
+ "zwave_info": "Informations Z-Wave",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Version {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "La guérison du réseau a été annulée.",
+ "healing_complete": "La guérison du réseau est terminée.",
+ "healing_failed": "La guérison a échoué. Des informations supplémentaires peuvent être disponibles dans les journaux.",
+ "in_progress": "La guérison du réseau est en cours. Cela prendra un certain temps.",
+ "introduction": "Démarrez un traitement de réseau sur votre réseau Z-Wave. Une réparation du réseau obligera tous les appareils à recalculer leurs itinéraires vers le contrôleur et est recommandé si vous avez récemment déplacé des appareils ou votre contrôleur.",
+ "run_in_background": "Vous pouvez fermer cette boîte de dialogue et la guérison du réseau se poursuivra en arrière-plan.",
+ "start_heal": "Commencer à guérir",
+ "stop_heal": "Arrêter de guérir",
+ "title": "Guérissez votre réseau Z-Wave",
+ "traffic_warning": "Le processus de guérison génère une grande quantité de trafic sur le réseau Z-Wave. Cela peut entraîner une réponse lente (ou pas du tout) des appareils pendant la guérison."
+ },
+ "heal_node": {
+ "healing_complete": "{device} a été guéri.",
+ "healing_failed": "{device} n'a pas pu être réparé.",
+ "healing_failed_check_logs": "Des informations supplémentaires peuvent être disponibles dans les journaux.",
+ "in_progress": "La guérison de {device} est en cours.",
+ "introduction": "Dites à {device} de mettre à jour ses routes vers le contrôleur. Cela peut aider à résoudre les problèmes de communication si vous avez récemment déplacé l'appareil ou votre contrôleur.",
+ "network_heal_in_progress": "Une guérison du réseau Z-Wave est déjà en cours. Veuillez attendre la fin avant de réparer un appareil individuel.",
+ "start_heal": "Dispositif de guérison",
+ "title": "Guérir un appareil Z-Wave",
+ "traffic_warning": "Le processus de guérison génère une grande quantité de trafic sur le réseau Z-Wave. Cela peut entraîner une réponse lente (ou pas du tout) des appareils pendant la guérison."
+ },
+ "logs": {
+ "download_logs": "Télécharger les journaux",
+ "log_level": "Niveau du journal",
+ "log_level_changed": "Niveau de journal modifié en : {level}",
+ "subscribed_to_logs": "S'abonner aux messages du journal Z-Wave JS…",
+ "title": "Journaux Z-Wave JS"
+ },
+ "navigation": {
+ "logs": "Journaux",
+ "network": "Réseau"
+ },
+ "network_status": {
+ "connected": "Connecté",
+ "connecting": "Connexion",
+ "unknown": "Inconnu"
+ },
+ "node_config": {
+ "attribution": "Les paramètres et descriptions de configuration des appareils sont fournis par {device_database}",
+ "battery_device_notice": "Les appareils à batterie doivent être réveillés pour mettre à jour leur configuration. Veuillez consulter le manuel de votre appareil pour savoir comment réveiller l'appareil.",
+ "error_device_not_found": "Appareil non trouvé",
+ "header": "Configuration du périphérique Z-Wave",
+ "introduction": "Gérer et ajuster les paramètres de configuration spécifiques au périphérique (nœud) pour le périphérique sélectionné",
+ "parameter": "Paramètre",
+ "parameter_is_read_only": "Ce paramètre est en lecture seule.",
+ "set_param_accepted": "Le paramètre a été mis à jour.",
+ "set_param_error": "Une erreur s'est produite.",
+ "set_param_queued": "La modification du paramètre a été mise en file d'attente et sera mise à jour lorsque l'appareil se réveillera.",
+ "zwave_js_device_database": "Base de données de périphériques Z-Wave JS"
+ },
+ "node_status": {
+ "alive": "Actif",
+ "asleep": "Endormi",
+ "awake": "Éveillé",
+ "dead": "Mort",
+ "unknown": "Inconnu"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "Si vous annulez le provisionnement de l'appareil, il ne sera pas ajouté à Home Assistant lors de sa mise sous tension. S'il est déjà ajouté à Home Assistant, la suppression de l'appareil configuré ne le supprimera pas de Home Assistant.",
+ "confirm_unprovision_title": "Voulez-vous vraiment annuler le provisionnement de l'appareil ?",
+ "dsk": "DSK",
+ "included": "Inclus",
+ "not_included": "Non inclus",
+ "security_classes": "Classes de sécurité",
+ "unprovison": "Annuler la mise à disposition"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "Vous allez avoir besoin de réveiller les appareils sur batterie avant de commencer le processus de réinterrogation. Consultez le manuel de l'appareil pour connaître la procédure.",
+ "in_progress": "L'appareil est en cours d'interrogation. Cela peut prendre du temps.",
+ "interview_complete": "Processus d'interrogation de l'appareil terminé.",
+ "interview_failed": "L'interrogation de l'appareil a échoué. Des informations additionnelles peuvent être disponibles dans les journaux.",
+ "introduction": "Réinterroger un appareil sur votre réseau Z-Wave. Utilisez cette fonctionnalité si votre appareil a des fonctionnalités manquantes ou incorrectes.",
+ "run_in_background": "Vous pouvez fermer cette fenêtre pendant que le processus d'interrogation se poursuivra en arrière-plan.",
+ "start_reinterview": "Démarrer le processus de réinterrogation",
+ "title": "Réinterroger un appareil Z-Wave"
+ },
+ "remove_failed_node": {
+ "in_progress": "La suppression de l'appareil est en cours.",
+ "introduction": "Supprimez un appareil défaillant de votre réseau Z-Wave. Utilisez-le si vous ne parvenez pas à exclure un périphérique normalement car il est défectueux.",
+ "removal_failed": "L'appareil n'a pas pu être supprimé de votre réseau Z-Wave.",
+ "removal_finished": "Le périphérique {id} a été supprimé de votre réseau Z-Wave.",
+ "remove_device": "Supprimer l’appareil",
+ "title": "Supprimer un périphérique Z-Wave défaillant"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Annuler l'exclusion",
+ "controller_in_exclusion_mode": "Votre contrôleur Z-Wave est maintenant en mode exclusion.",
+ "exclusion_failed": "L'appareil n'a pas pu être retiré. Veuillez consulter les journaux pour plus d'informations.",
+ "exclusion_finished": "L'appareil {id} a été supprimé de votre réseau Z-Wave.",
+ "follow_device_instructions": "Suivez les instructions fournies avec votre appareil pour déclencher une exclusion sur l'appareil.",
+ "introduction": "Supprimez un appareil de votre réseau Z-Wave et supprimez l'appareil et les entités associés de Home Assistant.",
+ "start_exclusion": "Commencer l'exclusion",
+ "title": "Supprimer un périphérique Z-Wave"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Aucun"
+ },
+ "S0_Legacy": {
+ "description": "Exemple : serrures de porte héritées sans prise en charge de S2",
+ "title": "Héritage S0"
+ },
+ "S2_AccessControl": {
+ "description": "Exemple : Serrures de porte et portes de garage",
+ "title": "Contrôle d'accès S2"
+ },
+ "S2_Authenticated": {
+ "description": "Exemple : Éclairage, capteurs et systèmes de sécurité",
+ "title": "S2 Authentifié"
+ },
+ "S2_Unauthenticated": {
+ "description": "Comme S2 Authentifié, mais sans vérification que le bon appareil est inclus",
+ "title": "S2 non authentifié"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Il aura accès à toutes les données de Home Assistant",
+ "hide_message": "Vérifiez la documentation du composant panel_custom pour masquer ce message",
+ "question_trust": "Faites-vous confiance au panneau externe {name} sur {link} ?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Auditeurs actifs",
+ "alert_event_type": "Le type d'événement est un champ obligatoire",
+ "available_events": "Événements disponibles",
+ "count_listeners": " ({count} récepteurs)",
+ "data": "Données d'événement (YAML, facultatif)",
+ "description": "Déclencher un événement dans le bus événement.",
+ "documentation": "Documentation sur les événements.",
+ "event_fired": "Événement {name} déclenché",
+ "fire_event": "Déclencher l'événement",
+ "listen_to_events": "Écouter les événements",
+ "listening_to": "Écouter",
+ "notification_event_fired": "Événement {type} déclenché avec succès!",
+ "start_listening": "Commence à écouter",
+ "stop_listening": "Arrêter d'écouter",
+ "subscribe_to": "Évènement auquel s'abonner",
+ "title": "Événements",
+ "type": "Type d'événement"
+ },
+ "services": {
+ "accepts_target": "Ce service accepte une cible, par exemple: `entity_id: light.bed_light`",
+ "all_parameters": "Tous les paramètres disponibles",
+ "call_service": "Appeler le service",
+ "column_description": "Description",
+ "column_example": "Exemple",
+ "column_parameter": "Paramètre",
+ "description": "L'outil de développement 'services' vous permet d'appeler n'importe quel service disponible dans Home Assistant.",
+ "fill_example_data": "Remplir des exemples de données",
+ "no_template_ui_support": "L'interface utilisateur ne prend pas en charge les modèles, vous pouvez toujours utiliser l'éditeur YAML.",
+ "title": "Services",
+ "ui_mode": "Passer en mode UI",
+ "yaml_mode": "Passez en mode YAML",
+ "yaml_parameters": "Paramètres disponibles uniquement en mode YAML"
+ },
+ "states": {
+ "alert_entity_field": "L'entité est un champ obligatoire",
+ "attributes": "Attributs",
+ "copy_id": "Copier l'ID dans le presse-papiers",
+ "current_entities": "Entités actuelles",
+ "description1": "Définir la représentation d'un périphérique dans Home Assistant.",
+ "description2": "Cela ne communiquera pas avec le périphérique réel.",
+ "entity": "Entité",
+ "filter_attributes": "Filtrer les attributs",
+ "filter_entities": "Filtrer les entités",
+ "filter_states": "Filtrer les états",
+ "last_changed": "Dernier changement",
+ "last_updated": "Dernière mise à jour",
+ "more_info": "Plus d’infos",
+ "no_entities": "Aucune entité",
+ "set_state": "Définir l'état",
+ "state": "État",
+ "state_attributes": "Attributs d'état (YAML, facultatif)",
+ "title": "États"
+ },
+ "statistics": {
+ "entity": "Entité",
+ "fix_issue": {
+ "fix": "Resoudre le probleme",
+ "units_changed": {
+ "clear": "Supprimer toutes les anciennes données statistiques pour cette entité",
+ "fix": "Resoudre le probleme",
+ "title": "L'unité de cette entité a changé",
+ "update": "Mettre à jour les valeurs statistiques historiques de ''{metadata_unit}'' à ''{state_unit}''"
+ }
+ },
+ "issue": "Problème",
+ "issues": {
+ "entity_no_longer_recorded": "Cette entité n’est plus enregistrée.",
+ "entity_not_recorded": "Cette entité est exclue de l'enregistrement.",
+ "no_state": "Aucun état n’est disponible pour cette entité.",
+ "units_changed": "L'unité de cette entité est passée de '' {metadata_unit} '' à '' {state_unit} ''.",
+ "unsupported_state_class": "La classe d'état '' {state_class} '' de cette entité n'est pas prise en charge.",
+ "unsupported_unit": "L'unité ('' {state_unit} '') de cette entité ne correspond pas à une unité de classe d'appareil '' {device_class} ''.",
+ "unsupported_unit_metadata": "L'unité ('' {metadata_unit} '') des statistiques enregistrées ne correspond pas à l'unité prise en charge '' {supported_unit} '' de la classe d'appareil '' {device_class} ''.",
+ "unsupported_unit_state": "L'unité ('' {state_unit} '') de cette entité ne correspond pas à une unité de classe d'appareil '' {device_class} ''."
+ },
+ "no_issue": "Pas de problème",
+ "title": "Statistiques"
+ },
+ "templates": {
+ "all_listeners": "Ce modèle écoute tous les événements de changement d'état.",
+ "description": "Les modèles sont rendus à l'aide du moteur de modèles Jinja2 avec certaines extensions spécifiques de Home Assistant.",
+ "domain": "Domaine",
+ "editor": "Éditeur de modèles",
+ "entity": "Entité",
+ "jinja_documentation": "Documentation de modèle Jinja2",
+ "listeners": "Ce modèle écoute les événements de changement d'état suivants:",
+ "no_listeners": "Ce modèle n'écoute aucun événement de changement d'état et ne sera pas mis à jour automatiquement.",
+ "reset": "Réinitialiser au modèle de démonstration",
+ "result_type": "Type de résultat",
+ "template_extensions": "Extensions de modèles de Home Assistant",
+ "time": "Ce modèle est mis à jour au début de chaque minute.",
+ "title": "Modèle",
+ "unknown_error_template": "Erreur inconnue lors du rendu du modèle"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Appareils surveillés",
+ "energy_distribution_title": "Distribution d'énergie",
+ "energy_gas_graph_title": "Consommation de gaz",
+ "energy_solar_graph_title": "Production solaire",
+ "energy_sources_table_title": "Sources",
+ "energy_usage_graph_title": "Consommation d'énergie"
+ },
+ "charts": {
+ "by_device": "Consommation par appareil",
+ "solar": "Solaire",
+ "stat_house_energy_meter": "Consommation totale d'énergie"
+ },
+ "setup": {
+ "back": "Retour",
+ "done": "Montrez-moi mon tableau de bord énergétique !",
+ "next": "Suivant"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Vous ne pouvez utiliser cette fonction que lorsque vous avez pris le contrôle de Lovelace UI.",
+ "saving_failed": "La sauvegarde de la configuration de Lovelace UI a échoué.",
+ "yaml_unsupported": "Vous ne pouvez pas utiliser cette fonction lorsque vous utilisé Lovelace UI en mode YAML."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Voulez-vous vraiment exécuter l'action \" {action} \"?",
+ "no_entity_more_info": "Aucune entité fournie pour plus d'informations",
+ "no_entity_toggle": "Aucune entité fournie pour basculer",
+ "no_navigation_path": "Aucun chemin de navigation spécifié",
+ "no_service": "Aucun service d'exécution spécifié",
+ "no_url": "Aucune URL à ouvrir spécifiée"
+ },
+ "confirm_delete": "Êtes-vous sûr de vouloir supprimer cette carte?",
+ "empty_state": {
+ "go_to_integrations_page": "Aller à la page des intégrations.",
+ "no_devices": "Cette page vous permet de contrôler vos périphériques. Toutefois, il semble que vous n’ayez pas encore configuré de périphériques. Rendez-vous sur la page des intégrations pour commencer.",
+ "title": "Bienvenue à la maison"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "Cette carte indique la part de l'énergie consommée par votre foyer qui a été produite à l'aide de combustibles non fossiles comme le solaire, l'éolien et le nucléaire. Plus c'est élevé, mieux c'est !",
+ "non_fossil_energy_consumed": "Énergie non fossile consommée",
+ "non_fossil_energy_not_calculated": "L'énergie non fossile consommée n'a pas pu être calculée"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Consommation d'énergie"
+ },
+ "energy_distribution": {
+ "battery": "Batterie",
+ "gas": "Gaz",
+ "go_to_energy_dashboard": "Accéder au tableau de bord énergétique",
+ "grid": "Réseau",
+ "home": "Maison",
+ "non_fossil": "Non fossile",
+ "solar": "Solaire",
+ "title_today": "Distribution d’énergie aujourd’hui"
+ },
+ "energy_solar_graph": {
+ "forecast": "Prévision {name}",
+ "production": "Production {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Batterie totale",
+ "cost": "Coût",
+ "energy": "Énergie",
+ "grid_total": "Total du réseau",
+ "source": "Source",
+ "total_costs": "Coûts totaux"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Combiné à partir du réseau",
+ "consumed_battery": "Batterie consommée",
+ "consumed_solar": "Solaire consommé",
+ "total_consumed": "Total consommé {num} kWh",
+ "total_returned": "Total retourné {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Si l'aiguille est dans le violet, vous avez renvoyé plus d'énergie au réseau que vous n'en avez consommé. Si c'est dans le bleu, vous avez consommé plus d'énergie du réseau que vous n'en avez restitué.",
+ "energy_dependency": "Cette carte représente votre dépendance énergétique.",
+ "grid_neutrality_not_calculated": "La neutralité du réseau n'a pas pu être calculée",
+ "net_consumed_grid": "Consommation nette du réseau",
+ "net_returned_grid": "Net retourné au réseau",
+ "red_green_color_explain": "S'il est vert, cela signifie que vous avez produit plus d'énergie que ce que vous avez consommé à partir du réseau. S'il est dans le rouge, cela signifie que vous dépendiez du réseau pour une partie de la consommation d'énergie de votre maison."
+ },
+ "loading": "Chargement...",
+ "no_data": "Il n'y a pas de données à afficher. L'arrivée de nouvelles données peut prendre jusqu'à 2 heures après la configuration de votre tableau de bord énergétique.",
+ "no_data_period": "Il n'y a pas de données pour cette période.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "Cette carte indique la part de l'énergie solaire que vous avez produite qui a été utilisée par votre foyer au lieu d'être renvoyée sur le réseau.",
+ "card_indicates_solar_energy_used_charge_home_bat": "Si ce nombre est généralement très faible, indiquant une production solaire excessive, vous pouvez envisager de charger une batterie domestique ou une voiture électrique à partir de vos panneaux solaires en période de forte production solaire.",
+ "not_produced_solar_energy": "Vous n'avez pas produit d'énergie solaire",
+ "self_consumed_solar_could_not_calc": "L'énergie solaire autoconsommée n'a pas pu être calculée",
+ "self_consumed_solar_energy": "Énergie solaire autoconsommée"
+ }
+ },
+ "entities": {
+ "never_triggered": "Jamais déclenché"
+ },
+ "iframe": {
+ "error_secure_context": "Impossible de charger les iframes pointant vers des sites Web utilisant le protocole {target_protocol} si Home Assistant est servi par le protocole {context_protocol}."
+ },
+ "map": {
+ "reset_focus": "Réinitialiser le focus"
+ },
+ "picture-elements": {
+ "call_service": "Appeler le service {name}",
+ "hold": "Maintenir:",
+ "more_info": "Afficher plus d'informations: {name}",
+ "navigate_to": "Naviguer vers {location}",
+ "tap": "Appuyez sur:",
+ "toggle": "Permuter {name}",
+ "url": "Ouvrir la fenêtre vers {url_path}."
+ },
+ "safe-mode": {
+ "description": "Home Assistant a rencontré des problèmes lors du chargement de votre configuration et fonctionne désormais en mode sans échec. Jetez un œil au journal des erreurs pour voir ce qui ne va pas.",
+ "header": "Mode sans échec activé"
+ },
+ "shopping-list": {
+ "add_item": "Ajouter un élément",
+ "checked_items": "Éléments cochés",
+ "clear_items": "Effacer les éléments cochés",
+ "drag_and_drop": "Glisser-déposer",
+ "reorder_items": "Réorganiser les articles"
+ },
+ "show_more_info": "Afficher plus d'informations",
+ "starting": {
+ "description": "Home Assistant démarre, veuillez patienter."
+ }
+ },
+ "changed_toast": {
+ "message": "La configuration de l'interface utilisateur de Lovelace a été mise à jour. Voulez-vous actualiser pour voir les changements ?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Jour",
+ "month": "Mois",
+ "next": "Suivant",
+ "previous": "Précédent",
+ "today": "Aujourd'hui",
+ "week": "Semaine",
+ "year": "Année"
+ },
+ "timestamp-display": {
+ "invalid": "Horodatage non valide",
+ "invalid_format": "Format d'affichage non valide"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Appeler le service",
+ "default_action": "Actions par défaut",
+ "more-info": "Plus d’infos",
+ "navigate": "Naviguer",
+ "none": "Pas d'action",
+ "toggle": "Permuter",
+ "url": "URL"
+ },
+ "navigation_path": "Chemin de navigation",
+ "url_path": "Chemin de l'URL"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "États disponibles",
+ "description": "La carte du panneau d'alarme vous permet d'armer et de désarmer les intégrations de votre panneau de commande d'alarme.",
+ "name": "Panneau d'alarme"
+ },
+ "area": {
+ "description": "La carte Zone affiche automatiquement les entités d'une zone spécifique.",
+ "name": "Zone",
+ "show_camera": "Afficher le flux de la caméra au lieu de l'image de la zone"
+ },
+ "button": {
+ "default_action_help": "L'action par défaut dépend des capacités de l'entité, elle sera soit activée/désactivée, soit plus d'informations seront affichées.",
+ "description": "La carte Bouton vous permet d'ajouter des boutons pour effectuer des tâches.",
+ "name": "Bouton"
+ },
+ "calendar": {
+ "calendar_entities": "Calendrier",
+ "description": "La carte Calendrier affiche un calendrier comprenant des vues par jour, par semaine et par liste",
+ "inital_view": "Vue initiale",
+ "name": "Calendrier",
+ "views": {
+ "dayGridDay": "Jour",
+ "dayGridMonth": "Mois",
+ "listWeek": "Liste"
+ }
+ },
+ "conditional": {
+ "card": "Carte",
+ "change_type": "Changer le type",
+ "condition_explanation": "La carte sera affichée lorsque TOUTES les conditions ci-dessous seront remplies.",
+ "conditions": "Conditions",
+ "current_state": "actuel",
+ "description": "La carte conditionnelle affiche une autre carte basée sur les états d'entité.",
+ "name": "Conditionnel",
+ "state_equal": "L'État est égal à",
+ "state_not_equal": "L'état n'est pas égal à"
+ },
+ "config": {
+ "optional": "Optionnel",
+ "required": "Requis"
+ },
+ "entities": {
+ "description": "La carte Entités est le type de carte le plus courant. Il regroupe les éléments dans des listes.",
+ "edit_special_row": "Affichez les détails de cette ligne en cliquant sur le bouton Modifier",
+ "entity_row": {
+ "attribute": "Attribut",
+ "button": "Bouton",
+ "buttons": "Boutons",
+ "call-service": "Appeler un service",
+ "cast": "Cast",
+ "conditional": "Conditionnel",
+ "divider": "Diviseur",
+ "section": "Section",
+ "weblink": "Lien Web"
+ },
+ "entity_row_editor": "Modifier à l'aide de l'éditeur de code",
+ "name": "Entités",
+ "secondary_info_values": {
+ "brightness": "Luminosité",
+ "entity-id": "ID de l'entité",
+ "last-changed": "Dernière modification",
+ "last-triggered": "Dernier déclenchement",
+ "last-updated": "Dernière mise à jour",
+ "none": "Pas d'informations secondaires",
+ "position": "Position",
+ "tilt-position": "position d'inclinaison"
+ },
+ "show_header_toggle": "Afficher le bouton d'en-tête ?",
+ "special_row": "ligne spéciale",
+ "toggle": "Basculer les entités."
+ },
+ "entity-filter": {
+ "description": "La carte Filtre d'entité vous permet de définir une liste d'entités que vous souhaitez suivre uniquement dans un certain état.",
+ "name": "Filtre d'entité"
+ },
+ "entity": {
+ "description": "La carte Entité vous donne un aperçu rapide de l'état de votre entité.",
+ "name": "Entité"
+ },
+ "gauge": {
+ "description": "La carte Jauge est une carte de base qui permet de voir visuellement les données des capteurs.",
+ "name": "Jauge",
+ "needle_gauge": "Afficher comme jauge ?",
+ "severity": {
+ "define": "Définir la sévérité ?",
+ "green": "Vert",
+ "red": "Rouge",
+ "yellow": "Jaune"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Ratio d'aspect",
+ "attribute": "Attribut",
+ "camera_image": "Entité caméra",
+ "camera_view": "Vue de la caméra",
+ "days_to_show": "Jours à afficher",
+ "double_tap_action": "Double appui",
+ "entities": "Entités",
+ "entity": "Entité",
+ "hold_action": "Appui long",
+ "hours_to_show": "Heures à montrer",
+ "icon": "Icône",
+ "icon_height": "Hauteur de l'icône",
+ "image": "Chemin de l'image",
+ "manual": "Manuel",
+ "manual_description": "Besoin d'ajouter une carte personnalisée ou simplement d'écrire manuellement le yaml?",
+ "maximum": "Maximum",
+ "minimum": "Minimum",
+ "name": "Nom",
+ "no_theme": "Pas de thème",
+ "refresh_interval": "Intervalle de rafraîchissement",
+ "search": "Chercher",
+ "secondary_info_attribute": "Attribut d'informations secondaires",
+ "show_icon": "Afficher l'icône ?",
+ "show_name": "Afficher le nom ?",
+ "show_state": "Afficher l'état ?",
+ "state": "État",
+ "state_color": "Icônes de couleur basées sur l'état ?",
+ "tap_action": "Appui court",
+ "theme": "Thème",
+ "title": "Titre",
+ "unit": "Unité",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Colonnes",
+ "description": "La carte Coup d'œil est utile pour regrouper plusieurs capteurs dans une vue d'ensemble compacte.",
+ "name": "Coup d'œil"
+ },
+ "grid": {
+ "columns": "Colonnes",
+ "description": "La carte Grille vous permet d’afficher plusieurs cartes dans une grille.",
+ "name": "Grille",
+ "square": "Rendre les cartes sous forme de carrés"
+ },
+ "history-graph": {
+ "description": "La carte Graphique historique vous permet d'afficher un graphique pour chacune des entités répertoriées.",
+ "name": "Graphique Historique"
+ },
+ "horizontal-stack": {
+ "description": "La carte de pile horizontale vous permet d'empiler plusieurs cartes, de sorte qu'elles soient toujours côte à côte dans l'espace d'une colonne.",
+ "name": "Pile horizontale"
+ },
+ "humidifier": {
+ "description": "La carte Humidificateur donne le contrôle de votre entité humidificateur. Vous permettant de changer l'humidité et le mode de l'entité.",
+ "name": "Humidificateur"
+ },
+ "iframe": {
+ "description": "La carte Page Web vous permet d'intégrer votre page Web préférée directement dans Home Assistant.",
+ "name": "Page Web"
+ },
+ "light": {
+ "description": "La carte Lumière vous permet de modifier la luminosité de la lumière.",
+ "name": "Lumière"
+ },
+ "logbook": {
+ "description": "La fiche du journal de bord présente une liste d'événements pour les entités.",
+ "name": "Journal"
+ },
+ "map": {
+ "dark_mode": "Mode sombre ?",
+ "default_zoom": "Zoom par défaut",
+ "description": "La carte Map vous permet d'afficher des entités sur une carte.",
+ "geo_location_sources": "Sources de géolocalisation",
+ "hours_to_show": "Heures à montrer",
+ "name": "Carte",
+ "source": "Source"
+ },
+ "markdown": {
+ "content": "Contenu",
+ "description": "La carte Markdown est utilisée pour le rendu du Markdown.",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "description": "La carte Contrôle des médias est utilisée pour afficher les entités de lecteur multimédia sur une interface avec des commandes faciles à utiliser.",
+ "name": "Contrôle des médias"
+ },
+ "picture-elements": {
+ "description": "La carte Éléments d'image est l'un des types de cartes les plus polyvalents. La carte vous permet de positionner des icônes ou du texte et même des services! Sur une image basée sur des coordonnées.",
+ "name": "Éléments d'image"
+ },
+ "picture-entity": {
+ "description": "La carte Entité image affiche une entité sous la forme d'une image. Au lieu d'images provenant d'une URL, il peut également afficher l'image des entités de la caméra.",
+ "name": "Entité image"
+ },
+ "picture-glance": {
+ "description": "La carte Coup d'œil affiche une image et les états d'entité correspondants sous forme d'icône. Les entités sur le côté droit permettent de basculer entre les actions, d'autres affichent la boîte de dialogue plus d'informations.",
+ "name": "Coup d'œil en image",
+ "state_entity": "État entité"
+ },
+ "picture": {
+ "description": "La carte Image vous permet de définir une image à utiliser pour la navigation vers divers chemins de votre interface ou d'appeler un service.",
+ "name": "Image"
+ },
+ "plant-status": {
+ "description": "La carte Statut des plantes est destinée à tous nos adorables botanistes.",
+ "name": "Statut de la plante"
+ },
+ "sensor": {
+ "description": "La carte Capteur vous donne un aperçu rapide de l'état de vos capteurs avec un graphique en option pour visualiser les changements au fil du temps.",
+ "graph_type": "Type de graphique",
+ "name": "Capteur",
+ "show_more_detail": "Afficher plus de détails"
+ },
+ "shopping-list": {
+ "description": "La carte Liste d'achats vous permet d'ajouter, de modifier, de valider et d'effacer des articles de votre liste d'achats.",
+ "integration_not_loaded": "Cette carte nécessite la mise en place de l'intégration `shopping_list`.",
+ "name": "Liste de courses"
+ },
+ "statistics-graph": {
+ "description": "La carte Graphique des statistiques vous permet d'afficher un graphique des statistiques pour chacune des entités répertoriées.",
+ "name": "Graphique de statistiques",
+ "period": "Période",
+ "periods": {
+ "5minute": "5 minutes",
+ "day": "Jour",
+ "hour": "Heure",
+ "month": "Mois"
+ }
+ },
+ "thermostat": {
+ "description": "La carte Thermostat permet de contrôler votre entité de chauffage. Permettant de changer la température et le mode de l'entité.",
+ "name": "Thermostat"
+ },
+ "vertical-stack": {
+ "description": "La carte Pile verticale vous permet de regrouper plusieurs cartes afin qu'elles se trouvent toujours dans la même colonne.",
+ "name": "Pile verticale"
+ },
+ "weather-forecast": {
+ "description": "La carte Prévisions météorologiques affiche la météo. Très utile pour les écrans placés au mur.",
+ "name": "Prévisions Météo",
+ "show_both": "Afficher la météo et les prévisions actuelles",
+ "show_forecast": "Afficher les prévisions",
+ "show_only_current": "Afficher uniquement la météo actuelle",
+ "show_only_forecast": "Afficher uniquement les prévisions"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Par carte",
+ "by_entity": "Par entité",
+ "custom_card": "Personnalisé",
+ "domain": "Domaine",
+ "entity": "Entité",
+ "no_description": "Aucune description disponible."
+ },
+ "common": {
+ "add": "Ajouter",
+ "clear": "Effacer",
+ "edit": "Modifier",
+ "none": "Aucun"
+ },
+ "edit_badges": {
+ "panel_mode": "Ces badges ne seront pas affichés car cette vue est en \"Mode Panneau\".",
+ "view_no_badges": "Les badges ne sont pas supportés par le type de vue actuel."
+ },
+ "edit_card": {
+ "add": "Ajouter une carte",
+ "clear": "Effacer",
+ "confirm_cancel": "Êtes-vous sûr de vouloir annuler ?",
+ "delete": "Supprimer la carte",
+ "duplicate": "Dupliquer la carte",
+ "edit": "Modifier",
+ "header": "Configuration de la carte",
+ "move": "Déplacer",
+ "move_after": "Déplacer la carte après",
+ "move_before": "Déplacer la carte avant",
+ "move_down": "Déplacer la carte vers le bas",
+ "move_up": "Déplacer la carte vers le haut",
+ "options": "Plus d'options",
+ "pick_card": "Quelle carte aimeriez-vous ajouter ?",
+ "pick_card_view_title": "Quelle carte souhaitez-vous ajouter à votre vue {name} ?",
+ "search_cards": "Rechercher des cartes",
+ "show_code_editor": "Afficher l'éditeur de code",
+ "show_visual_editor": "Afficher l'éditeur visuel",
+ "toggle_editor": "Permuter l’éditeur",
+ "typed_header": "{type} Configuration de la carte",
+ "unsaved_changes": "Vous avez des changements non enregistrés"
+ },
+ "edit_lovelace": {
+ "edit_title": "Éditer le titre",
+ "explanation": "Ce titre est affiché au-dessus de toutes vos vues dans Lovelace UI.",
+ "header": "Titre de votre UI Lovelace",
+ "title": "Titre"
+ },
+ "edit_view": {
+ "add": "Ajouter la vue",
+ "delete": "Supprimer la vue",
+ "edit": "Modifier la vue",
+ "header": "Voir la configuration",
+ "header_name": "{name} Voir la configuration",
+ "move_left": "Déplacer la vue à gauche",
+ "move_right": "Déplacer la vue à droite",
+ "tab_badges": "Badges",
+ "tab_settings": "Paramètres",
+ "tab_visibility": "Visibilité",
+ "type": "Type de vue",
+ "types": {
+ "masonry": "Maçonnerie (par défaut)",
+ "panel": "Panneau (1 carte)",
+ "sidebar": "Barre latérale"
+ },
+ "visibility": {
+ "select_users": "Sélectionnez les utilisateurs qui devraient voir cette vue dans la navigation"
+ }
+ },
+ "header": "Modifier l'interface utilisateur",
+ "header-footer": {
+ "choose_header_footer": "Choisissez un {type}",
+ "footer": "Pied de page",
+ "header": "En-tête",
+ "types": {
+ "buttons": {
+ "name": "Boutons"
+ },
+ "graph": {
+ "name": "Graphique"
+ },
+ "picture": {
+ "name": "Image"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Gérer les tableaux de bord",
+ "manage_resources": "Gérer les ressources",
+ "open": "Ouvrir le menu Lovelace UI",
+ "raw_editor": "Éditeur de configuration"
+ },
+ "migrate": {
+ "header": "Configuration incompatible",
+ "migrate": "Migrer la configuration",
+ "para_migrate": "Home Assistant peut ajouter automatiquement des identifiants à toutes vos cartes et vues en appuyant sur le bouton «Migrer la configuration».",
+ "para_no_id": "Cet élément n'a pas d'identifiant. Veuillez ajouter un identifiant à cet élément dans 'ui-lovelace.yaml'."
+ },
+ "move_card": {
+ "header": "Choisissez une vue vers laquelle déplacer la carte"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Nous générerons automatiquement vos vues Lovelace UI avec vos zones et appareils si vous supprimez votre configuration Lovelace UI.",
+ "confirm_remove_config_title": "Êtes-vous sûr de vouloir supprimer votre configuration Lovelace UI ?",
+ "confirm_unsaved_changes": "Vous avez des changements non enregistrés. Êtes-vous sûr de vouloir quitter?",
+ "confirm_unsaved_comments": "Votre configuration contient des commentaires, ceux-ci ne seront pas sauvegardés. Voulez-vous continuer?",
+ "error_invalid_config": "Votre configuration n'est pas valide : {error}",
+ "error_parse_yaml": "Impossible d'analyser le YAML : {error}",
+ "error_remove": "Impossible de supprimer la configuration: {error}",
+ "error_save_yaml": "Impossible de sauvegarder le YAML : {error}",
+ "header": "Modifier la configuration",
+ "lovelace_changed": "La configuration Lovelace a été mise à jour, voulez-vous charger la configuration mise à jour dans l'éditeur et perdre vos modifications actuelles?",
+ "reload": "Recharger",
+ "resources_moved": "Les ressources ne doivent plus être ajoutées à la configuration Lovelace mais peuvent être ajoutées dans le panneau de configuration Lovelace.",
+ "save": "Enregistrer",
+ "saved": "Enregistré",
+ "unsaved_changes": "Modifications non enregistrées"
+ },
+ "save_config": {
+ "close": "Fermer",
+ "empty_config": "Commencer par un tableau de bord vide",
+ "header": "Prenez le contrôle de votre Interface Lovelace",
+ "para": "Par défaut, Home Assistant maintient votre interface utilisateur et la met à jour lorsque de nouvelles entités ou de nouveaux composants Lovelace UI sont disponibles. Si vous prenez le contrôle, nous ne ferons plus les changements automatiquement pour vous.",
+ "para_sure": "Êtes-vous sûr de vouloir prendre le contrôle de l'interface utilisateur?",
+ "save": "Prenez le contrôle",
+ "yaml_config": "Pour vous aider à démarrer, voici la configuration actuelle de ce tableau de bord:",
+ "yaml_control": "Pour prendre le contrôle en mode YAML, créez un fichier YAML avec le nom que vous avez spécifié dans votre configuration pour ce tableau de bord, ou le 'ui-lovelace.yaml' par défaut.",
+ "yaml_mode": "Vous utilisez le mode YAML pour ce tableau de bord, ce qui signifie que vous ne pouvez pas modifier votre configuration Lovelace depuis l'interface utilisateur. Si vous souhaitez gérer votre tableau de bord via l'interface utilisateur, supprimez «mode: yaml» de votre configuration Lovelace dans «configuration.yaml»."
+ },
+ "select_view": {
+ "dashboard_label": "Tableau de bord",
+ "header": "Choisissez une vue",
+ "views_label": "Vue"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Modifier le pied de page",
+ "header": "Modifier l'en-tête",
+ "row": "Modifier à l'aide de l'éditeur de code"
+ }
+ },
+ "suggest_card": {
+ "add": "Ajouter à Lovelace UI",
+ "create_own": "Choisissez une autre carte",
+ "header": "Nous avons créé une suggestion pour vous"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Cette vue contient plusieurs carte, mais un panneau d'affichage ne peut montrer que 1 carte."
+ }
+ }
+ },
+ "menu": {
+ "close": "Fermer",
+ "configure_ui": "Modifier le tableau de bord",
+ "exit_edit_mode": "Quitter le mode d'édition de l'interface utilisateur",
+ "help": "Aide",
+ "reload_resources": "Recharger les ressources",
+ "start_conversation": "Démarrer la conversation"
+ },
+ "reload_lovelace": "Recharger UI",
+ "reload_resources": {
+ "refresh_body": "Vous devez actualiser la page pour terminer le rechargement, voulez-vous actualiser maintenant?",
+ "refresh_header": "Voulez-vous vous rafraîchir ?"
+ },
+ "unused_entities": {
+ "available_entities": "Ce sont les entités dont vous disposez, mais qui ne figurent pas encore dans votre interface utilisateur Lovelace.",
+ "domain": "Domaine",
+ "entity": "Entité",
+ "entity_id": "ID de l'entité",
+ "last_changed": "Dernière modification",
+ "no_data": "Aucune entité inutilisée trouvée",
+ "search": "Rechercher des entités",
+ "select_to_add": "Sélectionner les entités que vous souhaitez ajouter à une carte, puis cliquez sur le bouton Ajouter une carte.",
+ "title": "Entités inutilisées"
+ },
+ "views": {
+ "confirm_delete": "Êtes-vous sûr de vouloir supprimer cette vue?",
+ "confirm_delete_existing_cards": "La suppression de cette vue supprimera également les cartes",
+ "confirm_delete_existing_cards_text": "Voulez-vous vraiment supprimer votre vue ''{name}'' ? La vue contient {number} cartes qui seront supprimées. Cette action ne peut pas être annulée.",
+ "confirm_delete_text": "Voulez-vous vraiment supprimer votre vue ''{name}''?"
+ },
+ "warning": {
+ "attribute_not_found": "Attribut {attribute} non disponible dans: {entity}",
+ "entity_non_numeric": "L'entité est non numérique: {entity}",
+ "entity_not_found": "Entité non disponible: {entity}",
+ "entity_unavailable": "Entité non disponible actuellement : {entity}",
+ "starting": "Home Assistant démarre, tout n'est peut-être pas encore disponible"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Effacer",
+ "delete_prompt": "Supprimer ce message ?",
+ "empty": "Vous n'avez aucun message",
+ "playback_title": "Lecture de messages"
+ },
+ "map": {
+ "edit_zones": "Modifier les zones"
+ },
+ "my": {
+ "component_not_loaded": "Cette redirection n'est pas prise en charge par votre instance Home Assistant. Vous avez besoin de l'intégration {integration} pour utiliser cette redirection.",
+ "documentation": "documentation",
+ "error": "Une erreur inconnue est survenue",
+ "faq_link": "Ma Home Assistant FAQ",
+ "no_supervisor": "Cette redirection n'est pas prise en charge par votre installation Home Assistant. Il nécessite soit le système d'exploitation Home Assistant, soit la méthode d'installation supervisée par Home Assistant. Pour plus d'informations, consultez le {docs_link} .",
+ "not_supported": "Cette redirection n'est pas prise en charge par votre instance Home Assistant. Vérifiez le {link} pour les redirections prises en charge et la version dans laquelle elles ont été introduites."
+ },
+ "page-authorize": {
+ "abort_intro": "Connexion interrompue",
+ "authorizing_client": "Vous êtes sur le point de donner accès à {clientId} à votre instance de Home Assistant.",
+ "form": {
+ "error": "Erreur: {error}",
+ "next": "Connexion",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Session expirée, veuillez vous connecter à nouveau."
+ },
+ "error": {
+ "invalid_auth": "Nom d'utilisateur ou mot de passe invalide",
+ "invalid_code": "Code d'authentification invalide"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Mot de passe",
+ "username": "Nom d'utilisateur"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Code d'authentification à deux facteurs"
+ },
+ "description": "Ouvrez le **{mfa_module_name}** sur votre appareil pour afficher votre code d'authentification à deux facteurs et vérifier votre identité:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Session expirée, veuillez vous connecter à nouveau."
+ },
+ "error": {
+ "invalid_auth": "Nom d'utilisateur ou mot de passe invalide",
+ "invalid_code": "Code d'authentification invalide"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Mot de passe",
+ "username": "Nom d'utilisateur"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Code d'authentification à deux facteurs"
+ },
+ "description": "Ouvrez le **{mfa_module_name}** sur votre appareil pour afficher votre code d'authentification à deux facteurs et vérifier votre identité:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Session expirée, veuillez vous connecter à nouveau.",
+ "no_api_password_set": "Vous n'avez pas de mot de passe API configuré."
+ },
+ "error": {
+ "invalid_auth": "Mot de passe API invalide",
+ "invalid_code": "Code d'authentification invalide"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Mot de passe API"
+ },
+ "description": "Veuillez saisir le mot de passe API dans votre configuration http:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Code d'authentification à deux facteurs"
+ },
+ "description": "Ouvrez le **{mfa_module_name}** sur votre appareil pour afficher votre code d'authentification à deux facteurs et vérifier votre identité:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Votre ordinateur n'est pas autorisé."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Utilisateur"
+ },
+ "description": "Sélectionnez l'utilisateur avec lequel vous souhaitez vous connecter :"
+ }
+ }
+ }
+ },
+ "start_over": "Recommencer",
+ "unknown_error": "Un problème est survenu",
+ "working": "Veuillez patienter"
+ },
+ "initializing": "Initialisation",
+ "logging_in_to_with": "Connexion à **{locationName}** avec **{authProviderName}**.",
+ "logging_in_with": "Se connecter avec **{authProviderName}**.",
+ "pick_auth_provider": "Ou connectez-vous avec",
+ "store_token": "Rester connecté"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "par {name}",
+ "introduction": "Bienvenue à la maison ! Vous êtes sur la démo de Home Assistant, où nous présentons les meilleures interfaces utilisateur créées par notre communauté.",
+ "learn_more": "En savoir plus sur Home Assistant",
+ "next_demo": "Prochaine démo"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Activité",
+ "air": "Air",
+ "commute_home": "Se rendre à la maison",
+ "entertainment": "Divertissement",
+ "hdmi_input": "Entrée HDMI",
+ "hdmi_switcher": "Sélecteur HDMI",
+ "information": "Information",
+ "lights": "Lumières",
+ "morning_commute": "Trajet du matin",
+ "total_tv_time": "Temps total de télévision",
+ "turn_tv_off": "Éteindre la télévision",
+ "volume": "Volume"
+ },
+ "names": {
+ "family_room": "Pièce Familiale",
+ "hallway": "Couloir",
+ "kitchen": "Cuisine",
+ "left": "Gauche",
+ "master_bedroom": "Chambre principale",
+ "mirror": "Miroir",
+ "patio": "Patio",
+ "right": "Droite",
+ "temperature_study": "Étude de température",
+ "upstairs": "Étage"
+ },
+ "unit": {
+ "minutes_abbr": "min",
+ "watching": "en train de regarder"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Suivant"
+ },
+ "core-config": {
+ "button_detect": "Détecter",
+ "finish": "Suivant",
+ "intro": "Bonjour {name}, bienvenue dans Home Assistant. Comment voudriez-vous nommer votre maison?",
+ "intro_location": "Nous aimerions savoir où vous habitez. Ces informations vous aideront à afficher des informations et à configurer des automatisations basés sur le soleil. Ces données ne sont jamais partagées en dehors de votre réseau.",
+ "intro_location_detect": "Nous pouvons vous aider à renseigner ces informations en adressant une demande unique à un service externe.",
+ "location_name": "Nom de votre installation Home Assistant",
+ "location_name_default": "Maison"
+ },
+ "finish": "Terminer",
+ "integration": {
+ "finish": "Terminer",
+ "intro": "Les appareils et les services sont représentés dans Home Assistant sous forme d’intégrations. Vous pouvez les configurer maintenant ou le faire plus tard à partir de l'écran de configuration.",
+ "more_integrations": "Plus"
+ },
+ "intro": "Êtes-vous prêt à réveiller votre maison, à récupérer votre vie privée et à rejoindre une communauté mondiale de bricoleurs?",
+ "next": "Suivant",
+ "restore": {
+ "addons": "Modules complémentaires",
+ "confirm_password": "Confirmez le mot de passe de la sauvegarde",
+ "description": "Vous pouvez également restaurer à partir d'une sauvegarde précédente.",
+ "folders": "Dossiers",
+ "full_backup": "Sauvegarde complète",
+ "hide_log": "Masquer le journal",
+ "in_progress": "Restauration en cours",
+ "partial_backup": "Sauvegarde partielle",
+ "password": "Mot de passe de la sauvegarde",
+ "password_protection": "Protection par mot de passe",
+ "select_type": "Sélectionnez ce qu'il faut restaurer",
+ "show_log": "Afficher le journal",
+ "type": "Type de sauvegarde"
+ },
+ "user": {
+ "create_account": "Créer un compte",
+ "data": {
+ "name": "Nom",
+ "password": "Mot de passe",
+ "password_confirm": "Confirmez le mot de passe",
+ "username": "Nom d'utilisateur"
+ },
+ "error": {
+ "password_not_match": "Les mots de passe ne correspondent pas",
+ "required_fields": "Remplissez tous les champs requis"
+ },
+ "intro": "Commençons par créer un compte utilisateur.",
+ "required_field": "Requis"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Home Assistant cache les fonctionnalités et options avancées par défaut. Vous pouvez rendre ces fonctionnalités accessibles en cochant cette case. Il s'agit d'un paramètre spécifique à l'utilisateur et n'a pas d'impact sur les autres utilisateurs utilisant Home Assistant.",
+ "link_promo": "Apprendre encore plus",
+ "title": "Mode avancé"
+ },
+ "change_password": {
+ "confirm_new_password": "Confirmer le nouveau mot de passe",
+ "current_password": "Mot de passe actuel",
+ "error_new_is_old": "Le nouveau mot de passe doit être différent du mot de passe actuel",
+ "error_new_mismatch": "Les mots de passe saisis ne correspondent pas",
+ "error_required": "Requis",
+ "header": "Changer le mot de passe",
+ "new_password": "nouveau mot de passe",
+ "submit": "Envoyer",
+ "success": "Le mot de passe a été changé avec succès"
+ },
+ "current_user": "Vous êtes actuellement connecté en tant que {fullName}.",
+ "customize_sidebar": {
+ "button": "Modifier",
+ "description": "Vous pouvez également appuyer et maintenir l'en-tête de la barre latérale pour activer le mode d'édition.",
+ "header": "Modifier l'ordre et masquer les éléments de la barre latérale"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Vue d'ensemble (par défaut)",
+ "description": "Choisissez un tableau de bord par défaut pour cet appareil.",
+ "dropdown_label": "Tableau de bord",
+ "header": "Tableau de bord"
+ },
+ "enable_shortcuts": {
+ "description": "Activer ou désactiver les raccourcis clavier pour effectuer diverses actions dans l'interface utilisateur.",
+ "header": "Raccourcis clavier"
+ },
+ "force_narrow": {
+ "description": "Cela masquera la barre latérale par défaut, semblable à l'expérience mobile.",
+ "header": "Toujours cacher la barre latérale"
+ },
+ "is_owner": "Vous êtes propriétaire",
+ "language": {
+ "dropdown_label": "Langue",
+ "header": "Langue",
+ "link_promo": "Aider à traduire"
+ },
+ "logout": "Déconnexion",
+ "logout_text": "Êtes-vous sûr de vouloir vous déconnecter ?",
+ "logout_title": "Se déconnecter ?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Êtes-vous sûr de vouloir supprimer le jeton d'accès de {name} ?",
+ "create": "Créer un jeton",
+ "create_failed": "Impossible de créer le jeton d'accès.",
+ "created": "Créé le {date}",
+ "delete_failed": "Impossible de supprimer le jeton d'accès.",
+ "description": "Créez des jetons d'accès de longue durée pour permettre à vos scripts d'interagir avec votre instance de Home Assistant. Chaque jeton sera valable 10 ans à compter de sa création. Les jetons d'accès longue durée suivants sont actuellement actifs.",
+ "empty_state": "Vous n'avez pas encore de jetons d'accès longue durée.",
+ "header": "Jetons d'accès de longue durée",
+ "learn_auth_requests": "Apprenez comment faire des demandes authentifiées.",
+ "name": "Nom",
+ "prompt_copy_token": "Copiez votre jeton d'accès. Il ne sera plus affiché à nouveau.",
+ "prompt_name": "Donnez un nom au jeton"
+ },
+ "mfa": {
+ "confirm_disable": "Êtes-vous sûr de vouloir désactiver {name} ?",
+ "disable": "Désactiver",
+ "enable": "Activer",
+ "header": "Modules d'authentification multi-facteurs"
+ },
+ "mfa_setup": {
+ "close": "Fermer",
+ "step_done": "Configuration terminée pour {step}",
+ "submit": "Envoyer",
+ "title_aborted": "Abandonné",
+ "title_success": "Succès !"
+ },
+ "number_format": {
+ "description": "Définir le formatage des nombres",
+ "dropdown_label": "Format de nombre",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Auto (utiliser le paramètre de langue)",
+ "none": "Aucun",
+ "space_comma": "1 234 567,89",
+ "system": "Utiliser les paramètres régionaux du système"
+ },
+ "header": "Format de nombre"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Nom de l'appareil",
+ "title": "Comment doit-on appeler cet appareil?"
+ },
+ "description": "Envoyer des notifications à cet appareil.",
+ "error_load_platform": "Configurer notify.html5.",
+ "error_use_https": "Nécessite l'activation SSL pour l'interface utilisateur.",
+ "header": "Notifications push",
+ "link_promo": "En savoir plus",
+ "push_notifications": "Notifications push"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Êtes-vous sûr de vouloir supprimer le jeton d'actualisation de {name} ?",
+ "created_at": "Créé le {date}",
+ "current_token_tooltip": "Impossible de supprimer le jeton d'actualisation actuel",
+ "delete_failed": "Impossible de supprimer le jeton d'actualisation",
+ "description": "Chaque jeton d'actualisation représente une session de connexion. Les jetons d'actualisation seront automatiquement supprimés lorsque vous cliquez sur Déconnexion. Les jetons d'actualisation suivants sont actuellement actifs pour votre compte.",
+ "header": "Actualiser les jetons",
+ "last_used": "Dernière utilisation le {date} à partir de {location}",
+ "not_used": "N'a jamais été utilisé",
+ "token_title": "Actualiser le jeton de {clientId}"
+ },
+ "suspend": {
+ "description": "Faut-il fermer la connexion au serveur après avoir été caché pendant 5 minutes ?",
+ "header": "Fermer automatiquement la connexion"
+ },
+ "themes": {
+ "accent_color": "Couleur d'accentuation",
+ "dark_mode": {
+ "auto": "Auto",
+ "dark": "Sombre",
+ "light": "Clair"
+ },
+ "dropdown_label": "Thème",
+ "error_no_theme": "Aucun thème disponible.",
+ "header": "Thème",
+ "link_promo": "En savoir plus sur les thèmes",
+ "primary_color": "Couleur primaire",
+ "reset": "Réinitialiser"
+ },
+ "time_format": {
+ "description": "Définir le formatage des nombres",
+ "dropdown_label": "Format de l'heure",
+ "formats": {
+ "12": "12 heures (AM / PM)",
+ "24": "24 heures",
+ "language": "Auto (utiliser le paramètre de langue)",
+ "system": "Utiliser les paramètres régionaux du système"
+ },
+ "header": "Format de l'heure"
+ },
+ "vibrate": {
+ "description": "Activer ou désactiver les vibrations sur cet appareil lors du contrôle des périphériques.",
+ "header": "Vibrer"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Démarrer la conversation"
+ }
+ },
+ "sidebar": {
+ "done": "Terminé",
+ "external_app_configuration": "Configuration de l'application",
+ "hide_panel": "Masquer le panneau",
+ "show_panel": "Afficher le panneau",
+ "sidebar_toggle": "Activer la barre latérale"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/fy.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/fy.json
new file mode 100644
index 00000000..89e47c92
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/fy.json
@@ -0,0 +1,492 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "user": "Brûker"
+ }
+ },
+ "groups": {
+ "system-users": "Brûkers"
+ },
+ "panel": {
+ "config": "Konfiguraasje",
+ "history": "Skiednis",
+ "logbook": "Lochboek",
+ "mailbox": "Postfak",
+ "map": "Kaart",
+ "shopping_list": "Boadskiplist"
+ },
+ "state": {
+ "default": {
+ "off": "Út",
+ "on": "Oan",
+ "unavailable": "Net beskikber",
+ "unknown": "Ûnbekend"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "off": "Út",
+ "on": "Oan"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed_custom_bypass": "Ynskeakele"
+ },
+ "default": {
+ "unknown": "Ûnbek."
+ },
+ "device_tracker": {
+ "home": "Thús"
+ },
+ "person": {
+ "home": "Thús"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "dashboard": {
+ "capability": {
+ "label": {
+ "docker": "docker"
+ }
+ },
+ "install": "ynstallearje",
+ "start": "start",
+ "stop": "stop"
+ },
+ "panel": {
+ "info": "Ynfo"
+ }
+ },
+ "backup": {
+ "create": "Meitsje",
+ "created": "Makke",
+ "delete_backup_confirm": "ferwiderje",
+ "failed_to_delete": "Ferwiderje is mislearre",
+ "selected": "{number} selekteare"
+ },
+ "common": {
+ "close": "Slute",
+ "no": "Nee",
+ "refresh": "Ferfarskje",
+ "restart": "Opnij starte",
+ "restart_name": "{Name} opnij starte",
+ "yes": "Ja"
+ },
+ "dialog": {
+ "network": {
+ "open": "Iepenje"
+ },
+ "registries": {
+ "username": "Brûkersnamme"
+ },
+ "repositories": {
+ "add": "Tafoegje"
+ },
+ "restart_addon": {
+ "confirm_text": "Start add-on opnij op",
+ "text": "Wolle jo de add-on opnij starte mei jo feroaringen?"
+ },
+ "update": {
+ "updating": "{name} bywurkje nei ferzje {version}"
+ }
+ },
+ "my": {
+ "error_addon_not_found": "Add-on net fûn"
+ },
+ "system": {
+ "host": {
+ "change": "Feroarje"
+ },
+ "supervisor": {
+ "search": "Sykje",
+ "warning": "Warskoging"
+ }
+ }
+ },
+ "ui": {
+ "card": {
+ "climate": {
+ "on_off": "Oan / út",
+ "operation": "Operaasje"
+ },
+ "script": {
+ "cancel": "Annulearje",
+ "cancel_multiple": "Annulearje {number}"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "Annulearje"
+ }
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Luchtdruk",
+ "precipitation": "Delslach",
+ "temperature": "Temperatuer"
+ },
+ "cardinal_direction": {
+ "e": "E",
+ "n": "N",
+ "ne": "NE",
+ "nw": "NW",
+ "s": "S",
+ "se": "SE",
+ "sw": "SW",
+ "w": "W"
+ },
+ "day": "Dei",
+ "high": "Heech",
+ "low": "Leech",
+ "night": "Nacht"
+ }
+ },
+ "common": {
+ "cancel": "Annulearje",
+ "loading": "Oan it laden",
+ "no": "Nee",
+ "yes": "Ja"
+ },
+ "components": {
+ "area-picker": {
+ "add_dialog": {
+ "add": "Tafoegje",
+ "name": "Namme"
+ }
+ },
+ "blueprint-picker": {
+ "add_user": "Brûker tafoegje"
+ },
+ "calendar": {
+ "today": "Hjoed"
+ },
+ "data-table": {
+ "clear": "Opklearje"
+ },
+ "date-range-picker": {
+ "ranges": {
+ "last_week": "Foarige wike",
+ "this_week": "Dizze wike",
+ "today": "Hjoed",
+ "yesterday": "Juster"
+ }
+ },
+ "device-picker": {
+ "device": "Apparaat",
+ "toggle": "Skeakelje"
+ },
+ "user-picker": {
+ "add_user": "Brûker tafoegje",
+ "no_user": "Gjin brûker"
+ }
+ },
+ "dialogs": {
+ "generic": {
+ "cancel": "Annulearje"
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "users": "Brûkers"
+ },
+ "types": {
+ "navigation": "Navigearje",
+ "server_control": "Server"
+ }
+ }
+ },
+ "zha_device_info": {
+ "zha_device_card": {
+ "device_name_placeholder": "Feroarje apparaatnamme"
+ }
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\none {dei}\nother {dagen}\n}",
+ "second": "{count} {count, plural,\none {sekonde}\nother {sekonden}\n}",
+ "week": "{count} {count, plural,\none {wike}\nother {wiken}\n}"
+ },
+ "notification_drawer": {
+ "close": "Slute"
+ },
+ "panel": {
+ "config": {
+ "automation": {
+ "editor": {
+ "actions": {
+ "header": "Aksjes",
+ "type": {
+ "choose": {
+ "add_option": "Opsje tafoegje"
+ },
+ "device_id": {
+ "extra_fields": {
+ "mode": "Wize",
+ "value": "Wearde"
+ }
+ }
+ }
+ },
+ "alias": "Namme",
+ "conditions": {
+ "type": {
+ "sun": {
+ "label": "Sinne"
+ },
+ "time": {
+ "weekdays": {
+ "fri": "Freed",
+ "mon": "Moandei",
+ "sat": "Sneon",
+ "sun": "Snein",
+ "thu": "Tongersdei",
+ "tue": "Tiisdei",
+ "wed": "Woansdei"
+ }
+ }
+ }
+ },
+ "triggers": {
+ "add": "Trigger tafoegje",
+ "header": "",
+ "type": {
+ "homeassistant": {
+ "label": "",
+ "shutdown": "Ofslúte",
+ "start": "Opstarte"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Payload (opsjoneel)"
+ },
+ "state": {
+ "from": "Fan",
+ "to": "Nei"
+ },
+ "time": {
+ "at": "Om"
+ }
+ }
+ }
+ },
+ "picker": {
+ "headers": {
+ "name": "Namme"
+ }
+ }
+ },
+ "blueprint": {
+ "overview": {
+ "headers": {
+ "name": "Namme"
+ },
+ "share_blueprint": "Diel blaudruk"
+ }
+ },
+ "cloud": {
+ "account": {
+ "connecting": "Ferbine …",
+ "tts": {
+ "try": "bisykje"
+ }
+ },
+ "alexa": {
+ "title": "Alexa"
+ },
+ "google": {
+ "title": "Google Assistant"
+ }
+ },
+ "devices": {
+ "data_table": {
+ "device": "Apparaat"
+ },
+ "device_not_found": "Apparaat net fûn.",
+ "disabled_by": {
+ "user": "Gebrûker"
+ }
+ },
+ "helpers": {
+ "types": {
+ "input_boolean": "Skeakelje",
+ "input_number": "Nûmer"
+ }
+ },
+ "info": {
+ "description": "Ynformaasje oer dyn Home Assistant ynstallaasje"
+ },
+ "integrations": {
+ "config_entry": {
+ "configure": "Ynstelle",
+ "disable": {
+ "disabled_by": {
+ "user": "Gebrûker"
+ }
+ }
+ },
+ "disable": {
+ "show": "Toan"
+ }
+ },
+ "logs": {
+ "level": {
+ "critical": "KRITYSK",
+ "info": "YNFO",
+ "warning": "WARSKÔGING"
+ }
+ },
+ "lovelace": {
+ "description": "Konfigurearje dyn Lovelace-dashboards",
+ "resources": {
+ "detail": {
+ "warning_header": "Wês foarsichtich!"
+ }
+ }
+ },
+ "mqtt": {
+ "title": "MQTT"
+ },
+ "scene": {
+ "editor": {
+ "devices": {
+ "add": "Foegje in apparaat ta",
+ "delete": "Apparaat ferwiderje"
+ },
+ "name": "Namme"
+ },
+ "picker": {
+ "duplicate": "Duplisearje",
+ "duplicate_scene": "Duplisearje sêne",
+ "headers": {
+ "name": "Namme"
+ }
+ }
+ },
+ "script": {
+ "description": "Meitsje en bewurkje scripts",
+ "picker": {
+ "headers": {
+ "name": "Namme"
+ }
+ }
+ },
+ "users": {
+ "add_user": {
+ "caption": "Brûker tafoegje"
+ },
+ "editor": {
+ "password_changed": "It wachtwurd is feroare!",
+ "username": "Brûkersnamme"
+ },
+ "picker": {
+ "headers": {
+ "is_owner": "Eigner",
+ "name": "Namme",
+ "username": "Brûkersnamme"
+ }
+ }
+ },
+ "zha": {
+ "clusters": {
+ "introduction": "Clusters binne de boustiennen foar Zigbee-funksjonaliteit. Se skiede funksjonaliteit yn logyske ienheden. D'r binne client- en serversoarten en disse besteane út attributen en kommando's."
+ }
+ },
+ "zwave": {
+ "node_config": {
+ "config_value": "Konfiguraasje wearde"
+ },
+ "node_management": {
+ "add_to_group": "Tafoegje oan groep",
+ "remove_from_group": "Ferwiderje út groep"
+ },
+ "services": {
+ "cancel_command": "Opdracht annulearje"
+ }
+ }
+ },
+ "lovelace": {
+ "cards": {
+ "starting": {
+ "description": "Home Assistant komt op gong, eefkes geduld…"
+ }
+ },
+ "editor": {
+ "card": {
+ "calendar": {
+ "views": {
+ "dayGridDay": "Dei",
+ "dayGridMonth": "Moanne"
+ }
+ },
+ "entities": {
+ "edit_special_row": "Rige bewurkje mei de code-editor",
+ "special_row": "Spesjale rige"
+ }
+ },
+ "raw_editor": {
+ "confirm_remove_config_title": "Binne jo wis dat jo jo Lovelace UI-konfiguraasje ferwiderje wolle?"
+ },
+ "select_view": {
+ "dashboard_label": "Dashboard"
+ }
+ },
+ "menu": {
+ "configure_ui": "Konfigurearje UI"
+ }
+ },
+ "mailbox": {
+ "playback_title": "Berjocht ôfspylje"
+ },
+ "page-authorize": {
+ "form": {
+ "providers": {
+ "command_line": {
+ "step": {
+ "init": {
+ "data": {
+ "password": "Wachtwurd",
+ "username": "Brûkersnamme"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Folgjende"
+ },
+ "finish": "Ein",
+ "next": "Folgjende"
+ },
+ "profile": {
+ "advanced_mode": {
+ "link_promo": "Lear mear"
+ },
+ "dashboard": {
+ "dropdown_label": "Dashboard",
+ "header": "Dashboard"
+ },
+ "mfa_setup": {
+ "close": "Slute"
+ },
+ "number_format": {
+ "formats": {
+ "none": "Gjin"
+ }
+ },
+ "themes": {
+ "dark_mode": {
+ "dark": "Tsjuster",
+ "light": "Ljocht"
+ },
+ "primary_color": "Primêre kleur"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/gl.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/gl.json
new file mode 100644
index 00000000..9438351f
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/gl.json
@@ -0,0 +1,1174 @@
+{
+ "panel": {
+ "shopping_list": "Lista da compra"
+ },
+ "state": {
+ "default": {
+ "unavailable": "Non dispoñible",
+ "unknown": "Descoñecido"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Automático",
+ "off": "Apagado",
+ "on": "Acendido"
+ }
+ }
+ },
+ "state_badge": {
+ "default": {
+ "unknown": "Descoñecido"
+ },
+ "person": {
+ "home": "Na casa"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Predeterminado",
+ "header": "Audio",
+ "input": "Entrada",
+ "output": "Saída"
+ },
+ "network": {
+ "container": "Contedor",
+ "disabled": "Deshabilitada",
+ "header": "Rede",
+ "host": "Host"
+ },
+ "no_configuration": "Este complemento non expón a configuración para que poidas xogar con …",
+ "options": {
+ "edit_in_ui": "Editar en IU",
+ "edit_in_yaml": "Editar en YAML",
+ "header": "Opcións",
+ "invalid_yaml": "YAML non válido",
+ "show_unused_optional": "Amosar as opcións de configuración opcionais non utilizadas"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Non se puido obter o rexistro de cambios do complemento",
+ "go_to_config": "Non se puido iniciar o complemento: fallou a validación da configuración.",
+ "install": "Non se puido instalar o complemento",
+ "restart": "Non se puido reiniciar o complemento",
+ "start": "Non se puido iniciar o complemento",
+ "start_invalid_config": "Ir á configuración",
+ "stop": "Non se puido deter o complemento",
+ "uninstall": "Non se puido desinstalar o complemento",
+ "validate_config": "Non se puido validar a configuración do complemento"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor ('Application Armor') é un módulo de seguridade do núcleo Linux que restrinxe as capacidades dos complementos como o acceso á rede, o acceso de socket bruto e o permiso para ler, escribir ou executar ficheiros específicos. \n\nOs autores do complemento poden proporcionar os seus perfís de seguridade, optimizados para o complemento, ou solicitar a súa desactivación. Se AppArmor está desactivado, aumentará os riscos de seguridade e, polo tanto, terá un impacto negativo na puntuación de seguridade do complemento.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "Un complemento pode autenticar aos usuarios contra Home Assistant, permitindo aos complementos darlles aos usuarios a posibilidade de iniciar sesión en aplicacións que se executan dentro dos complementos, usando o seu nome de usuario / contrasinal Home Assistant. Esta insignia indica se o autor do complemento solicita esta capacidade.",
+ "title": "Autenticación de Home Assistant"
+ },
+ "docker_api": {
+ "description": "O autor do complemento solicitou que o complemento teña acceso administrativo á instancia de Docker que se executa no seu sistema. Este modo proporciona ao complemento acceso e control completos a todo o sistema Home Assistant, o que engade riscos de seguridade e pode danar o seu sistema se se usa incorrectamente. Polo tanto, esta función ten un impacto negativo na puntuación de seguridade do complemento. \n\nEste nivel de acceso non se concede automaticamente e debe ser confirmado por vostede. Para iso, debes desactivar o modo de protección no complemento manualmente. Desactiva só o modo de protección se sabes, precisas E confías na fonte deste complemento.",
+ "title": "Acceso completo a Docker"
+ },
+ "full_access": {
+ "description": "Este complemento ten acceso completo ao hardware do seu sistema, a petición do autor do complemento. O acceso é comparable ao modo privilexiado en Docker. Dado que isto abre riscos potenciais de seguridade, esta función afecta negativamente á puntuación de seguridade do complemento. \n\n Este nivel de acceso non se concede automaticamente e debe ser confirmado por ti. Para iso, debes desactivar o modo de protección no complemento manualmente. Desactive só o modo de protección se sabes, precisas E confías na fonte deste complemento.",
+ "title": "Acceso completo ao hardware"
+ },
+ "hassio_api": {
+ "description": "O complemento deu acceso á API do supervisor, a petición do autor do complemento. Por defecto, o complemento pode acceder á información xeral da versión do seu sistema. Cando o complemento solicite acceso á API de nivel \"xestor\" ou \"administrador\", accederá a controlar varias partes do sistema Home Assistant. Este permiso indícase con esta insignia e afectará negativamente á puntuación de seguridade do complemento.",
+ "title": "Acceso á API do supervisor"
+ },
+ "homeassistant_api": {
+ "description": "Este complemento pode acceder á súa instancia Home Assistant en execución directamente a través da API Home Assistant. Este modo tamén manexa a autenticación do complemento, o que permite que un complemento interactúe co Home Assistant sen necesidade de tokens de autenticación adicionais.",
+ "title": "Acceso á API de Home Assistant"
+ },
+ "host_network": {
+ "description": "Os complementos normalmente executanse na súa propia capa de rede illada, evitando que accedan á rede do sistema operativo host. Nalgúns casos, este illamento de rede pode limitar os complementos na prestación dos seus servizos e, polo tanto, o autor do complemento pode eliminar o illamento, dándolle ao complemento acceso completo ás capacidades de rede da máquina host. Isto proporciona ao complemento máis capacidades de rede pero reduce a seguridade, polo tanto a clasificación de seguridade do complemento baixarase cando o complemento use esta opción.",
+ "title": "Rede do host"
+ },
+ "host_pid": {
+ "description": "Xeralmente, os procesos que executa o complemento están illados de todos os demais procesos do sistema. O autor do complemento solicitou que o complemento teña acceso aos procesos do sistema que se executan na instancia do sistema host e tamén que permita ao complemento xerar procesos no sistema host. Este modo proporciona ao complemento acceso e control completos a todo o sistema Home Assistant, o que engade riscos de seguridade e pode danar o seu sistema se se usa incorrectamente. Polo tanto, esta función ten un impacto negativo na puntuación de seguridade do complemento. \n\n Este nivel de acceso non se concede automaticamente e debe ser confirmado por ti. Para iso, debes desactivar o modo de protección no complemento manualmente. Desactiva só o modo de protección se sabes, precisas E confías na fonte deste complemento.",
+ "title": "Espazo de nomes dos procesos do host"
+ },
+ "ingress": {
+ "description": "Este complemento usa o inicio de sesión para integrar a súa interface de forma segura no Home Assistant.",
+ "title": "Entrada"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "auth",
+ "docker": "docker",
+ "hardware": "hardware",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "host",
+ "host_pid": "pid do host",
+ "ingress": "entrada",
+ "rating": "clasificación",
+ "stage": "etapa"
+ },
+ "rating": {
+ "description": "Home Assistant ofrece unha clasificación de seguridade para cada un dos complementos, indicando os riscos que implica o uso do complemento. Canto máis acceso precisa un complemento no seu sistema, menor será a puntuación, aumentando os riscos potenciais de seguridade. \n\nA puntuación está nunha escala de 1 a 6. Onde 1 é a puntuación máis baixa (considerada o máis inseguro e maior risco) e unha puntuación de 6 é a puntuación máis alta (considerada o máis seguro e menor risco).",
+ "title": "Clasificación de seguridade do complemento"
+ },
+ "role": {
+ "admin": "administrador",
+ "backup": "copia de seguridade",
+ "default": "predeterminado",
+ "homeassistant": "homeaasistant",
+ "manager": "xerente"
+ },
+ "stage": {
+ "description": "Os complementos poden ter unha das tres etapas: \n\n {icon_stable} ** Estable **: son complementos listos para usalos na produción. \n\n {icon_experimental} ** Experimental **: poden conter erros e poden estar inacabados. \n\n {icon_deprecated} ** Obsoleto **: estes complementos deixarán de recibir actualizacións.",
+ "title": "Etapa de complemento"
+ }
+ },
+ "changelog": "Rexistro de cambios",
+ "cpu_usage": "Uso da CPU do complemento",
+ "hostname": "Nome do host",
+ "install": "instalar",
+ "new_update_available": "{name} {version} está dispoñible",
+ "not_available_arch": "Este complemento non é compatible co procesador do dispositivo nin co sistema operativo que instalou no dispositivo.",
+ "not_available_version": "Estás a executar Home Assistant {core_version_installed} , para actualizar esta versión do complemento necesitas polo menos a versión {core_version_needed} de Home Assistant",
+ "open_web_ui": "Abrir a interface web",
+ "option": {
+ "auto_update": {
+ "description": "Actualice automaticamente o complemento cando estea dispoñible unha nova versión",
+ "title": "Actualización automática"
+ },
+ "boot": {
+ "description": "Fai que o complemento comece durante o arranque do sistema",
+ "title": "Comezar no arranque"
+ },
+ "ingress_panel": {
+ "description": "Engade este complemento á túa barra lateral",
+ "title": "Amosar na barra lateral"
+ },
+ "protected": {
+ "description": "Bloquear o acceso elevado ao sistema desde o complemento",
+ "title": "Modo de protección"
+ },
+ "watchdog": {
+ "description": "Isto reiniciará o complemento se falla",
+ "title": "Vixilancia"
+ }
+ },
+ "protection_mode": {
+ "content": "O modo de protección neste complemento está desactivado. Isto proporciona ao complemento acceso completo a todo o sistema, o que engade riscos de seguridade e pode danar o seu sistema se se usa incorrectamente. Desactive só o modo de protección se sabe, precisa E confía na fonte deste complemento.",
+ "enable": "Activar o modo de protección",
+ "title": "Aviso: O modo de protección está desactivado!"
+ },
+ "ram_usage": "Uso de RAM do complemento",
+ "rebuild": "reconstruír",
+ "restart": "reiniciar",
+ "start": "iniciar",
+ "stop": "deter",
+ "uninstall": "desinstalar",
+ "visit_addon_page": "Visita a páxina {name} para obter máis detalles"
+ },
+ "documentation": {
+ "get_documentation": "Non se puido obter a documentación do complemento, {error}"
+ },
+ "failed_to_reset": "Non se puido restablecer a configuración do complemento, {error}",
+ "failed_to_save": "Non se puido gardar a configuración do complemento, {error}",
+ "logs": {
+ "get_logs": "Non se puideron obter rexistros de complementos, {error}"
+ },
+ "panel": {
+ "configuration": "Configuración",
+ "documentation": "Documentación",
+ "info": "Información",
+ "log": "Rexistro"
+ },
+ "state": {
+ "installed": "O complemento está instalado",
+ "not_available": "O complemento non está dispoñible no seu sistema",
+ "not_installed": "O complemento non está instalado"
+ }
+ },
+ "backup": {
+ "addons": "Complementos",
+ "could_not_create": "Non se puido crear unha instantánea",
+ "create": "Crear",
+ "create_blocked_not_running": "Non é posible crear unha instantánea neste momento porque o sistema está {state} .",
+ "enter_password": "Insira un contrasinal.",
+ "folders": "Carpetas",
+ "name": "Nome",
+ "password": "Contrasinal",
+ "password_protection": "Protección por contrasinal",
+ "type": "Tipo"
+ },
+ "common": {
+ "cancel": "Cancelar",
+ "close": "Pechar",
+ "description": "Descrición",
+ "error": {
+ "unknown": "Erro descoñecido",
+ "update_failed": "Fallou a actualización"
+ },
+ "failed_to_restart_name": "Non se puido reiniciar {name}",
+ "failed_to_update_name": "Non se puido actualizar {name}",
+ "learn_more": "Aprender máis",
+ "new_version_available": "Nova versión dispoñible",
+ "newest_version": "Versión máis nova",
+ "no": "Non",
+ "refresh": "Actualizar",
+ "release_notes": "Notas de lanzamento",
+ "reload": "Recargar",
+ "reset_defaults": "Restablecer os valores predeterminados",
+ "reset_options": "Restablecer as opcións",
+ "restart": "Reiniciar",
+ "restart_name": "Reiniciar {name}",
+ "running_version": "Actualmente estás executando a versión {version}",
+ "save": "Gardar",
+ "show_more": "Amosar máis información sobre isto",
+ "update": "Actualización",
+ "update_available": "{count, plural,\n one {actualización pendente}\n other {{count} actualizacións pendentes}\n}",
+ "version": "Versión",
+ "yes": "Si"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Seguro que queres restablecer todas as túas opcións?",
+ "title": "Restablecer as opcións"
+ },
+ "restart": {
+ "text": "Estás seguro de que queres reiniciar {name} ?",
+ "title": "Reiniciar {name}"
+ },
+ "update": {
+ "text": "Seguro que queres actualizar {name} á versión {version}?",
+ "title": "Actualizar {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Nova versión dispoñible",
+ "addon_running": "O complemento está en execución",
+ "addon_stopped": "O complemento está parado",
+ "addons": "Complementos instalados",
+ "no_addons": "Aínda non tes ningún complemento instalado. Diríxete á tenda de complementos para comezar."
+ },
+ "dialog": {
+ "network": {
+ "connected_to": "Conectado a {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Desactivado",
+ "dns_servers": "Servidores DNS",
+ "failed_to_change": "Non se puido cambiar a configuración de rede",
+ "gateway": "Enderezo de porta de enlace",
+ "ip_netmask": "Enderezo IP / máscara de rede",
+ "open": "Aberto",
+ "scan_ap": "Buscar puntos de acceso",
+ "static": "Estático",
+ "title": "Configuración de rede",
+ "unsaved": "Tes cambios sen gardar, estes perderanse se cambias a pestana, queres continuar?",
+ "warning": "Se está a cambiar os enderezos de wifi, IP ou porta de enlace, podería perder a súa conexión!",
+ "wep": "WEP",
+ "wpa": "wpa-psk"
+ },
+ "registries": {
+ "add_new_registry": "Engadir un novo rexistro",
+ "add_registry": "Engadir rexistro",
+ "failed_to_add": "Non se puido engadir o rexistro",
+ "failed_to_remove": "Non se puido eliminar o rexistro",
+ "no_registries": "Non hai rexistros configurados",
+ "password": "Contrasinal",
+ "registry": "Rexistro",
+ "remove": "Eliminar",
+ "title_add": "Engade un novo rexistro de contedor",
+ "title_manage": "Xestionar rexistros de contedores",
+ "username": "Nome de usuario"
+ },
+ "repositories": {
+ "add": "Engadir",
+ "remove": "Eliminar",
+ "title": "Xestionar os repositorios de complementos",
+ "used": "O repositorio está en uso para os complementos instalados e non se pode eliminar."
+ },
+ "restart_addon": {
+ "confirm_text": "Reiniciar complemento",
+ "text": "¿Queres reiniciar o complemento cos teus cambios?"
+ },
+ "update": {
+ "updating": "Actualizando {name} á versión {version}"
+ }
+ },
+ "my": {
+ "error": "Producíuse un erro descoñecido",
+ "error_addon_not_found": "Complemento non atopado",
+ "faq_link": "Preguntas frecuentes sobre o meu Home Assistant",
+ "not_supported": "Este enderezo non é compatibel coa tua instancia de Home Assistant. Consulta o {link} para coñecer as redireccións admitidas e a versión na que se incluiron."
+ },
+ "panel": {
+ "dashboard": "Panel de control",
+ "store": "Tenda de complementos",
+ "system": "Sistema"
+ },
+ "store": {
+ "missing_addons": "Faltan complementos? Activa o modo avanzado na páxina do teu perfil de usuario",
+ "no_results_found": "Non se atoparon resultados en {repository} .",
+ "registries": "Rexistros",
+ "repositories": "Repositorios"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Uso de CPU principal",
+ "ram_usage": "Uso de RAM principal"
+ },
+ "host": {
+ "change": "Cambiar",
+ "change_hostname": "Cambiar nome de host",
+ "confirm_reboot": "Seguro que queres reiniciar o host?",
+ "confirm_shutdown": "Seguro que queres apagar o host?",
+ "deployment": "Despregamento",
+ "docker_version": "Versión Docker",
+ "emmc_lifetime_used": "Vida útil do eMMC usado",
+ "failed_to_get_hardware_list": "Non foi posíbel obter a lista de hardware",
+ "failed_to_import_from_usb": "Non se puido importar dende USB",
+ "failed_to_reboot": "Non se puido reiniciar o host",
+ "failed_to_set_hostname": "Non se puido configurar o nome do host",
+ "failed_to_shutdown": "Non se puido apagar o host",
+ "hardware": "Hardware",
+ "hostname": "Nome do host",
+ "import_from_usb": "Importar dende USB",
+ "ip_address": "Enderezo IP",
+ "new_hostname": "Insira un novo nome de host:",
+ "operating_system": "Sistema operativo",
+ "reboot_host": "Reiniciar o host",
+ "shutdown_host": "Apagar o host",
+ "used_space": "Espazo usado"
+ },
+ "log": {
+ "get_logs": "Non se puideron obter os rexistros de {provider} , {error}",
+ "log_provider": "Provedor de rexistros"
+ },
+ "supervisor": {
+ "beta_backup": "Asegúrate de ter copias de seguridade dos teus datos antes de activar esta función.",
+ "beta_join_confirm": "Queres unirte á canle beta?",
+ "beta_release_items": "Isto inclúe versións beta para:",
+ "beta_warning": "As versións beta son para probadores e adoptantes anticipados e poden conter cambios de código inestables",
+ "channel": "Canle",
+ "cpu_usage": "Uso da CPU do supervisor",
+ "failed_to_reload": "Non se puido recargar o supervisor",
+ "failed_to_set_option": "Non se puido configurar a opción do supervisor",
+ "failed_to_update": "Non se puido actualizar o supervisor",
+ "join_beta_action": "Únete á canle beta",
+ "join_beta_description": "Recibe actualizacións beta para Home Assistant (RC), Supervisor e host",
+ "leave_beta_action": "Saír da canle beta",
+ "leave_beta_description": "Recibe actualizacións estables para Home Assistant, Supervisor e host",
+ "ram_usage": "Uso de RAM do supervisor",
+ "reload_supervisor": "Recargar o supervisor",
+ "share_diagnostics": "Compartir diagnósticos",
+ "share_diagnostics_description": "Comparte informes de fallos e información de diagnóstico.",
+ "share_diagonstics_description": "Quere compartir automaticamente informes de fallos e información de diagnóstico cando o supervisor atope erros inesperados? {line_break} Isto permitiranos solucionar os problemas, a información só é accesible para o equipo Home Assistant Core e non se compartirá con outras persoas. {line_break} Os datos non inclúen ningunha información privada / confidencial e podes desactivala na configuración cando queiras.",
+ "share_diagonstics_title": "Axuda a mellorar Home Assistant",
+ "unhealthy_description": "Executar unha instalación pouco saudable causará problemas. Abaixo amósase unha lista de problemas atopados coa súa instalación, faga clic nas ligazóns para saber como pode resolver os problemas.",
+ "unhealthy_reason": {
+ "docker": "O entorno Docker non funciona correctamente",
+ "privileged": "O supervisor non é privilexiado",
+ "setup": "Fallou a configuración do supervisor",
+ "supervisor": "Non se puido actualizar o supervisor",
+ "untrusted": "Detectouse contido non fiable"
+ },
+ "unhealthy_title": "A túa instalación non é saudable",
+ "unsupported_description": "Abaixo amósase unha lista de problemas atopados coa súa instalación, faga clic nas ligazóns para saber como pode resolver os problemas.",
+ "unsupported_reason": {
+ "container": "Contedores coñecidos por causar problemas",
+ "content-trust": "A validación de confianza de contido está desactivada",
+ "dbus": "DBUS",
+ "docker_configuration": "Configuración de Docker",
+ "docker_version": "Versión Docker",
+ "job_conditions": "Ignoráronse as condicións do traballo",
+ "lxc": "LXC",
+ "network_manager": "Xestor de rede",
+ "os": "Sistema operativo",
+ "privileged": "O supervisor non ten privilexios",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Está a executar unha instalación non soportada",
+ "update_supervisor": "Actualice o supervisor",
+ "warning": "AVISO"
+ }
+ },
+ "update_available": {
+ "no_update": "Non hai ningunha actualización dispoñible para {name}"
+ }
+ },
+ "ui": {
+ "card": {
+ "fan": {
+ "direction": "Enderezo",
+ "preset_mode": "Modo predefinido"
+ },
+ "media_player": {
+ "media_pause": "Pausa",
+ "media_stop": "Deter",
+ "media_volume_down": "Baixar o volume",
+ "media_volume_mute": "Silenciar o volume",
+ "media_volume_unmute": "Reactivar o volume",
+ "media_volume_up": "Subir o volume"
+ },
+ "script": {
+ "run": "Executar"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Presión do aire",
+ "humidity": "Humidade",
+ "precipitation": "Precipitación",
+ "temperature": "Temperatura",
+ "visibility": "Visibilidade",
+ "wind_speed": "Velocidade do vento"
+ },
+ "cardinal_direction": {
+ "e": "L",
+ "ene": "LNL",
+ "ese": "LSL",
+ "n": "N",
+ "ne": "NL",
+ "nne": "NNL",
+ "nnw": "NNO",
+ "nw": "NO",
+ "s": "S",
+ "se": "SL",
+ "sse": "SSL",
+ "ssw": "SSO",
+ "sw": "SO",
+ "w": "O",
+ "wnw": "ONO",
+ "wsw": "OSO"
+ },
+ "day": "Día",
+ "forecast": "Predición",
+ "high": "Máximo",
+ "low": "Mínimo",
+ "night": "Noite"
+ }
+ },
+ "common": {
+ "cancel": "Cancelar",
+ "submit": "Enviar"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Complemento",
+ "error": {
+ "fetch_addons": {
+ "description": "Ao obter complementos devolveuse un erro.",
+ "title": "Non se puideron obter complementos"
+ },
+ "no_supervisor": {
+ "description": "Non se atopou ningún supervisor, polo que non se puideron cargar os complementos.",
+ "title": "Sen supervisor"
+ }
+ }
+ },
+ "area-picker": {
+ "show_areas": "Amosar áreas"
+ },
+ "data-table": {
+ "clear": "Elim",
+ "filtering_by": "Filtrando por",
+ "hidden": "{number} oculto"
+ },
+ "device-picker": {
+ "show_devices": "Amosar dispositivos"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "show_attributes": "Amosar atributos"
+ },
+ "entity-picker": {
+ "show_entities": "Amosar entidades"
+ }
+ },
+ "logbook": {
+ "messages": {
+ "is_closing": "estase pechando",
+ "is_opening": "estase abrindo"
+ },
+ "show_trace": "Amosar rastro"
+ },
+ "media-browser": {
+ "class": {
+ "url": "URL"
+ }
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Introduza o valor do código QR",
+ "manual_input": "Podes escanear o código QR con outro escáner QR e pegar o código na seguinte entrada",
+ "not_supported": "O teu navegador non admite o escaneo QR",
+ "only_https_supported": "Só podes usar a túa cámara para escanear un código QR cando utilizas HTTPS.",
+ "select_camera": "Seleccionar cámara"
+ },
+ "related-filter-menu": {
+ "filter": "Filtrar",
+ "filter_by_area": "Filtrar por área",
+ "filter_by_device": "Filtrar por dispositivo",
+ "filter_by_entity": "Filtrar por entidade",
+ "filtered_by_area": "área: {area_name}",
+ "filtered_by_device": "dispositivo: {device_name}",
+ "filtered_by_entity": "entidade: {entity_name}"
+ },
+ "service-control": {
+ "required": "Este campo é necesario",
+ "service_data": "Datos do servizo",
+ "target": "Obxectivos"
+ },
+ "statistic-picker": {
+ "learn_more": "Leer mas sobre estatísticas"
+ }
+ },
+ "dialogs": {
+ "entity_registry": {
+ "editor": {
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Porta"
+ }
+ }
+ }
+ },
+ "more_info_control": {
+ "cover": {
+ "close_tilt_cover": "Pechar a inclinación da persiana"
+ },
+ "remote": {
+ "activity": "Actividade actual"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "payload_display": "Amosar carga útil",
+ "show_as_yaml": "Amosar como YAML"
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "energy": "Enerxía",
+ "tag": "Etiquetas"
+ },
+ "reload": {
+ "themes": "Temas"
+ },
+ "types": {
+ "navigation": "Navegar",
+ "reload": "Recargar",
+ "server_control": "Servidor"
+ }
+ }
+ },
+ "zha_device_info": {
+ "buttons": {
+ "device_children": "Ver fillos",
+ "view_in_visualization": "Ver en Visualización"
+ },
+ "device_children": "Dispositivos Zigbee fillos"
+ },
+ "zha_reconfigure_device": {
+ "heading": "Reconfiguración do dispositivo"
+ }
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Aínda podes editar a túa configuración en YAML.",
+ "editor_not_available": "Non hai ningún editor visual dispoñible para o tipo \"{type}\".",
+ "editor_not_supported": "O editor visual non é compatible con esta configuración",
+ "key_missing": "Falta a clave requirida \"{key}\".",
+ "key_wrong_type": "O editor visual non admite o valor proporcionado para \"{key}\". Sopórtase ({type_correct}) pero recibiuse ({type_wrong}).",
+ "no_template_editor_support": "Os modelos non son compatibles co editor visual"
+ }
+ },
+ "login-form": {
+ "password": "Contrasinal"
+ },
+ "panel": {
+ "config": {
+ "areas": {
+ "picker": {
+ "introduction2": "Para colocar os dispositivos nunha área, use a ligazón seguinte para navegar ata a páxina de integracións e, a continuación, faga clic nunha integración configurada para acceder ás tarxetas do dispositivo."
+ }
+ },
+ "automation": {
+ "editor": {
+ "actions": {
+ "type": {
+ "device_id": {
+ "extra_fields": {
+ "brightness_pct": "Brillo",
+ "flash": "Flash",
+ "humidity": "Humidade",
+ "mode": "Modo",
+ "value": "Valor"
+ }
+ }
+ }
+ },
+ "conditions": {
+ "type": {
+ "device": {
+ "extra_fields": {
+ "hvac_mode": "Modo sistema climatización",
+ "preset_mode": "Modo predefinido"
+ }
+ },
+ "time": {
+ "weekdays": {
+ "mon": "Luns"
+ }
+ }
+ }
+ },
+ "show_trace": "Mostrar rastro",
+ "triggers": {
+ "edit_id": "Editar ID do disparador",
+ "type": {
+ "mqtt": {
+ "label": "MQTT"
+ },
+ "sun": {
+ "label": "Sol",
+ "sunrise": "Amencer",
+ "sunset": "Solpor"
+ }
+ }
+ }
+ },
+ "picker": {
+ "dev_automation": "Depurar automatización",
+ "dev_only_editable": "Só se poden depurar os automatismos definidos en automations.yaml",
+ "show_info_automation": "Amosar información sobre a automatización"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "unsupported_blueprint": "Este plano non é compatible"
+ },
+ "overview": {
+ "share_blueprint": "Compartir plano",
+ "share_blueprint_no_url": "O plano non se pode compartir, sen URL de orixe"
+ }
+ },
+ "cloud": {
+ "account": {
+ "google": {
+ "not_configured_text": "Antes de usar o Asistente de Google, debes activar a skill Home Assistant Cloud para Google Assistant na aplicación Google Home.",
+ "not_configured_title": "Google Assistant non está activado"
+ },
+ "tts": {
+ "dialog": {
+ "example_message": "Ola {name} , podes reproducir calquera texto en calquera reprodutor multimedia compatible.",
+ "header": "Proba Texto a voz",
+ "play": "Reproducir",
+ "target": "Obxectivo",
+ "target_browser": "Navegador"
+ },
+ "try": "Probar"
+ }
+ },
+ "forgot_password": {
+ "instructions": "Introduce o teu enderezo de correo electrónico e enviarémosche unha ligazón para restablecer o teu contrasinal."
+ },
+ "register": {
+ "email_address": "Enderezo electrónico"
+ }
+ },
+ "common": {
+ "learn_more": "Saber máis"
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Xestiona automatizacións, escenas, guións e axudantes.",
+ "title": "Automatizacións e escenas"
+ },
+ "blueprints": {
+ "description": "Scripts e automatizacións preconstruídas pola comunidade",
+ "title": "Planos"
+ },
+ "companion": {
+ "description": "Localización e notificacións",
+ "title": "Aplicación complementaria"
+ },
+ "dashboards": {
+ "description": "Crea conxuntos de tarxetas personalizados para controlar o teu fogar",
+ "title": "Paneis de control"
+ },
+ "devices": {
+ "description": "Integracións, dispositivos, entidades e áreas",
+ "title": "Dispositivos e servizos"
+ },
+ "energy": {
+ "description": "Monitoriza a túa produción e consumo de enerxía",
+ "title": "Enerxía"
+ },
+ "people": {
+ "description": "Xestiona as persoas e as áreas que rastrexa o Home Assistant",
+ "title": "Persoas e Zonas"
+ },
+ "settings": {
+ "description": "Configuración básica, controis do servidor, rexistros e información",
+ "title": "Configuración"
+ },
+ "supervisor": {
+ "description": "Crea copias de seguridade, revisa os rexistros ou reinicia o teu sistema",
+ "title": "Complementos, copias de seguridade e Supervisor"
+ },
+ "tags": {
+ "description": "Activar automatizacións cando se escanea unha etiqueta NFC, un código QR, etc.",
+ "title": "Etiquetas"
+ }
+ },
+ "devices": {
+ "confirm_disable_config_entry": "Non hai máis dispositivos para a entrada de configuración {entry_name} . Queres deshabilitar a entrada de configuración?",
+ "enabled_description": "Os dispositivos desactivados non se amosarán e as entidades que pertencen ao dispositivo desactivaranse e non se engadirán ao Asistente doméstico.",
+ "picker": {
+ "filter": {
+ "show_all": "Amosar todo",
+ "show_disabled": "Amosar dispositivos deshabilitados"
+ }
+ }
+ },
+ "energy": {
+ "caption": "Enerxía",
+ "grid": {
+ "flow_dialog": {
+ "from": {
+ "cost_number": "Usar prezo fixo",
+ "cost_number_input": "Prezo por kWh"
+ }
+ }
+ },
+ "solar": {
+ "sub": "Permita a Home Assistant monitorear sus paneles solares y obtener "
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "As seguintes entidades teñen un estado negativo mentres agardan un estado positivo",
+ "title": "A entidade ten un estado negativo"
+ },
+ "entity_not_defined": {
+ "description": "Comproba a integración ou a configuración que proporciona:",
+ "title": "Entidade non definida"
+ },
+ "entity_state_non_numeric": {
+ "description": "As seguintes entidades teñen un estado que non pode ser analizado como un número",
+ "title": "A entidade ten un esrado non numérico"
+ },
+ "entity_unavailable": {
+ "description": "O estado das entidades configuradas non está dispoñible actualmente",
+ "title": "Entidade non dispoñible"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "As seguintes entidades non teñen as unidades de medida esperadas 'kWh' ou 'Wh'",
+ "title": "Unidade de medida inesperada"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "title": "Unidade de medida inesperada"
+ },
+ "recorder_untracked": {
+ "title": "Entidade sen seguimento"
+ }
+ }
+ }
+ },
+ "entities": {
+ "picker": {
+ "filter": {
+ "show_all": "Amosar todo",
+ "show_disabled": "Amosar entidades desactivadas",
+ "show_readonly": "Amosar entidades de só lectura",
+ "show_unavailable": "Amosar entidades non dispoñibles"
+ },
+ "headers": {
+ "disabled_by": "Deshabilitado por"
+ }
+ }
+ },
+ "integrations": {
+ "config_entry": {
+ "disable": {
+ "disable_confirm": "Seguro que queres desactivar esta entrada de configuración? Os seus dispositivos e entidades estarán desactivados.",
+ "disabled": "Desactivado",
+ "disabled_by": {
+ "device": "dispositivo",
+ "integration": "integración",
+ "user": "usuario"
+ },
+ "disabled_cause": "Desactivado por {cause}"
+ },
+ "disable_restart_confirm": "Reinicie o Home Assistant para rematar de desactivar esta integración",
+ "enable_restart_confirm": "Reinicie o Home Assistant para rematar de habilitar esta integración",
+ "hardware": "Hardware: {version}",
+ "not_loaded": "Non cargado, comproba o {logs_link}"
+ },
+ "config_flow": {
+ "could_not_load": "Non se puido cargar o fluxo de configuración",
+ "error": "Erro",
+ "not_loaded": "Non se puido cargar a integración. Tenta reiniciar Home Assistant.",
+ "pick_flow_step": {
+ "new_flow": "Non, configura outra instancia de {integration}",
+ "title": "Descubrimos estes, queres montalos?"
+ }
+ },
+ "confirm_new": "¿Queres configurar {integration} ?",
+ "disable": {
+ "disabled_integrations": "{number} desactivado",
+ "show": "Amosar",
+ "show_disabled": "Amosar as integracións desactivadas"
+ },
+ "ignore": {
+ "confirm_ignore": "Está seguro de que non quere configurar esta integración? Podes desfacer isto premendo en \"Amosar integracións ignoradas\" no menú de desbordamento da parte superior dereita.",
+ "show_ignored": "Amosar integracións ignoradas"
+ }
+ },
+ "introduction": "Aquí podes configurar os teus compoñentes e Home Assistant. Non todo se pode configurar graficamente aínda, pero estamos traballando niso.",
+ "logs": {
+ "level": {
+ "critical": "CRÍTICO",
+ "debug": "DEPURAR",
+ "error": "ERRO",
+ "info": "INFORMACIÓN",
+ "warning": "AVISO"
+ }
+ },
+ "lovelace": {
+ "dashboards": {
+ "detail": {
+ "show_sidebar": "Amosar na barra lateral"
+ },
+ "picker": {
+ "headers": {
+ "sidebar": "Amosar na barra lateral"
+ }
+ }
+ },
+ "description": "Crea conxuntos de tarxetas personalizados para controlar a túa casa"
+ },
+ "ozw": {
+ "network_status": {
+ "unknown": "Descoñecido"
+ }
+ },
+ "scene": {
+ "picker": {
+ "show_info_scene": "Amosar información sobre a escena"
+ }
+ },
+ "script": {
+ "picker": {
+ "show_info": "Amosar información sobre o script"
+ }
+ },
+ "server_control": {
+ "section": {
+ "reloading": {
+ "filesize": "Entidades de tamaño de ficheiro",
+ "mqtt": "Entidades MQTT configuradas manualmente",
+ "ping": "Ping a entidades binarias do sensor",
+ "reload": "{domain}",
+ "rpi_gpio": "Entidades GPIO de Raspberry Pi",
+ "smtp": "Servizos de notificación SMTP",
+ "themes": "Temas",
+ "timer": "Temporizadores",
+ "trend": "Entidades de tendencia"
+ }
+ }
+ },
+ "users": {
+ "editor": {
+ "name": "Nome de visualización",
+ "password_changed": "O contrasinal cambiouse correctamente"
+ },
+ "picker": {
+ "headers": {
+ "name": "Nome de visualización"
+ }
+ }
+ },
+ "zha": {
+ "visualization": {
+ "auto_zoom": "Zoom automático",
+ "refresh_topology": "Actualizar topoloxía"
+ }
+ },
+ "zwave": {
+ "migration": {
+ "ozw": {
+ "header": "Migrar a OpenZWave",
+ "introduction": "Este asistente axudarache a migrar da integración herdada de Z-Wave á integración OpenZWave que está actualmente en versión beta."
+ }
+ },
+ "ozw_log": {
+ "introduction": "Ver o rexistro. 0 é o mínimo (carga todo o rexistro) e 1000 é o máximo. Load amosará un rexistro estático e a cola actualizarase automaticamente co último número de liñas especificado no rexistro."
+ }
+ },
+ "zwave_js": {
+ "common": {
+ "back": "Volver"
+ },
+ "device_info": {
+ "device_config": "Configurar dispositivo"
+ },
+ "logs": {
+ "download_logs": "Descargar rexistros"
+ },
+ "node_config": {
+ "attribution": "{device_database} proporciona os parámetros e as descricións de configuración do dispositivo",
+ "battery_device_notice": "Os dispositivos a batería deben estar espertos para actualizarla súa configuración. Consulte o manual do dispositivo para obter instrucións sobre como activalo.",
+ "error_device_not_found": "Non se atopou o dispositivo",
+ "header": "Configuración do dispositivo Z-Wave",
+ "introduction": "Xestione e axuste os parámetros de configuración específicos do dispositivo (nodo) para o dispositivo seleccionado",
+ "parameter_is_read_only": "Este parámetro é de só lectura.",
+ "zwave_js_device_database": "Base de datos de dispositivos Z-Wave JS"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "Se desaprovisiona o dispositivo, non se engadirá ao Home Assistant cando estea prendido. Se xa está engadido ao Home Assistant, ao eliminar o dispositivo aprovisionado non se eliminará do Home Assistant.",
+ "included": "Incluído",
+ "not_included": "Non incluído"
+ }
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "services": {
+ "accepts_target": "Este servizo acepta un destino, por exemplo: `entity_id: light.bed_light`",
+ "all_parameters": "Todos os parámetros dispoñibles",
+ "no_template_ui_support": "A interface de usuario non admite modelos, máis podes usar o editor YAML.",
+ "ui_mode": "Ir ao modo de interface de usuario",
+ "yaml_mode": "Ir ao modo YAML",
+ "yaml_parameters": "Os parámetros só están dispoñibles no modo YAML"
+ },
+ "states": {
+ "copy_id": "Copia a identificación ao portapapeis"
+ },
+ "templates": {
+ "no_listeners": "Este modelo non escoita ningún evento e non se actualizará automaticamente.",
+ "unknown_error_template": "Erro descoñecido ao amosar o modelo"
+ }
+ }
+ },
+ "lovelace": {
+ "cards": {
+ "confirm_delete": "Seguro que queres eliminar esta tarxeta?",
+ "picture-elements": {
+ "more_info": "Amosar máis información: {name}"
+ }
+ },
+ "editor": {
+ "card": {
+ "alarm-panel": {
+ "description": "A tarxeta Panel de alarma permíte armar e desarmar as integracións do seu panel de control de alarma."
+ },
+ "area": {
+ "show_camera": "Mostra a imaxe da cámara en lugar da imaxe da área"
+ },
+ "button": {
+ "default_action_help": "A acción predeterminada depende das capacidades da entidade, cambiará ou amosará o diálogo de máis información.",
+ "description": "A tarxeta Botón permite engadir botóns para realizar tarefas."
+ },
+ "calendar": {
+ "description": "A tarxeta Calendario mostra un calendario que inclúe vistas de día, semana e lista",
+ "views": {
+ "dayGridDay": "Día",
+ "dayGridMonth": "Mes"
+ }
+ },
+ "conditional": {
+ "card": "Tarxeta",
+ "condition_explanation": "A tarxeta amosarase cando se cumpran TODAS as seguintes condicións.",
+ "description": "A tarxeta Condicional mostra outra tarxeta en función dos estados da entidade."
+ },
+ "entities": {
+ "description": "A tarxeta de entidades é o tipo de tarxeta máis común. Agrupa elementos en listas.",
+ "show_header_toggle": "Queres amosar o interruptor na cabeceira?"
+ },
+ "entity-filter": {
+ "description": "A tarxeta Filtro de entidades permíte definir unha lista de entidades das que só desexa realizar un seguimento cando se atopa nun determinado estado."
+ },
+ "entity": {
+ "description": "A tarxeta Entidade ofrécelle unha rápida visión xeral do estado da súa entidade."
+ },
+ "gauge": {
+ "description": "A tarxeta Indicator é unha tarxeta básica que permite ver visualmente os datos do sensor."
+ },
+ "generic": {
+ "hours_to_show": "Horas para amosar",
+ "manual_description": "Necesitas engadir unha tarxeta personalizada ou só queres escribir manualmente o YAML?",
+ "show_icon": "Amosar icona?",
+ "show_name": "Amosar nome?",
+ "show_state": "Amosar estado?"
+ },
+ "glance": {
+ "description": "A tarxeta Ollada é útil para agrupar varios sensores nunha visión xeral compacta."
+ },
+ "grid": {
+ "columns": "Columnas",
+ "description": "A tarxeta Cuadrícula permítelle amosar varias tarxetas nunha grella.",
+ "name": "Cuadrícula",
+ "square": "Representar as tarxetas como cadrados"
+ },
+ "history-graph": {
+ "description": "A tarxeta Historial de gráficos permítelle amosar un gráfico para cada unha das entidades listadas."
+ },
+ "horizontal-stack": {
+ "description": "A tarxeta de Pila horizontal permite empillar varias tarxetas de xeito que sempre se senten un ao lado do outro nun espazo de columna."
+ },
+ "humidifier": {
+ "description": "A tarxeta Humidificador ofréce o control da súa entidade de humidificador. Permite cambiar a humidade e o modo da entidade."
+ },
+ "iframe": {
+ "description": "A tarxeta de Páxina web permítelle inserir a súa páxina web favorita directamente no Asistente doméstico."
+ },
+ "light": {
+ "description": "A tarxeta de Luz permíte cambiar a intensidade da luz."
+ },
+ "logbook": {
+ "description": "A tarxeta Rexistro mostra unha lista de eventos das entidades."
+ },
+ "map": {
+ "description": "A tarxeta de mapa que lle permite amosar funcións nun mapa.",
+ "hours_to_show": "Horas para amosar"
+ },
+ "markdown": {
+ "description": "A tarxeta Markdown úsase para representar Markdown."
+ },
+ "media-control": {
+ "description": "A tarxeta Media Control úsase para amosar as entidades do reprodutor multimedia nunha interface con controis fáciles de usar."
+ },
+ "picture-elements": {
+ "description": "A tarxeta Elementos de Imaxe é un dos tipos de tarxetas máis versátiles. As tarxetas permiten colocar iconas ou texto e incluso servizos. Nunha imaxe baseada en coordenadas."
+ },
+ "picture-entity": {
+ "description": "A tarxeta Entidade de imaxe mostra unha entidade como imaxe. En lugar de imaxes dun URL, tamén pode amosar a imaxe das entidades da cámara."
+ },
+ "picture-glance": {
+ "description": "A tarxeta Ollada de imaxe mostra unha imaxe e a entidade correspondente indica como icona. As entidades do lado dereito permiten accións alternativas, outras mostran o diálogo para obter máis información."
+ },
+ "picture": {
+ "description": "A tarxeta de Imaxe permíte configurar unha imaxe para usala para navegar por varias rutas na súa interface ou para chamar a un servizo."
+ },
+ "plant-status": {
+ "description": "A tarxeta de Estado das plantas é para todos os encantadores botánicos que hai."
+ },
+ "sensor": {
+ "description": "A tarxeta Sensor ofrécelle unha rápida visión xeral do estado dos sensores cun gráfico opcional para visualizar os cambios co paso do tempo.",
+ "show_more_detail": "Amosar máis detalles"
+ },
+ "shopping-list": {
+ "description": "A tarxeta da lista da compra permíte engadir, editar, marcar e eliminar elementos da súa lista da compra.",
+ "integration_not_loaded": "Esta tarxeta precisa configurar a integración \"Lista de compras\"."
+ },
+ "thermostat": {
+ "description": "A tarxeta de Termostato ofréce o control da súa entidade climática. Permite cambiar a temperatura e o modo da entidade."
+ },
+ "vertical-stack": {
+ "description": "A tarxeta de Pila vertical permíte agrupar varias tarxetas para que sempre se sintúen na mesma columna."
+ },
+ "weather-forecast": {
+ "description": "A tarxeta Predición metereolóxica mostra o tempo. Moi útil para incluír nas interfaces que a xente amosa na parede.",
+ "name": "Predición metereolóxica",
+ "show_forecast": "Amosar predición"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Por tarxeta"
+ },
+ "edit_badges": {
+ "panel_mode": "Estas insignias non se amosarán porque esta vista está en \"modo de panel\"."
+ },
+ "edit_card": {
+ "add": "Engadir tarxeta",
+ "delete": "Eliminar tarxeta",
+ "duplicate": "Duplicar tarxeta",
+ "header": "Configuración da tarxeta",
+ "move_after": "Mover a tarxeta despois",
+ "move_before": "Mover a tarxeta antes",
+ "pick_card": "Que tarxeta lle gustaría engadir?",
+ "pick_card_view_title": "Que tarxeta lle gustaría engadir á súa {name} ?",
+ "search_cards": "Buscar tarxetas",
+ "show_code_editor": "Amosar editor de código",
+ "show_visual_editor": "Amosar editor visual",
+ "typed_header": "Configuración da tarxeta {type}"
+ },
+ "menu": {
+ "manage_dashboards": "Xestionar paneis",
+ "manage_resources": "Xestionar recursos"
+ },
+ "migrate": {
+ "para_migrate": "Home Assistant pode engadir identificacións a todas as súas tarxetas e vistas automaticamente premendo o botón \"Migrar configuración\"."
+ },
+ "move_card": {
+ "header": "Escolle unha vista á que mover a tarxeta"
+ },
+ "raw_editor": {
+ "lovelace_changed": "Actualizouse a configuración de Lovelace, queres cargar a configuración actualizada no editor e perder os cambios actuais?",
+ "reload": "Recargar"
+ },
+ "suggest_card": {
+ "create_own": "Escolle unha tarxeta diferente"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Esta vista contén máis dunha tarxeta, pero unha vista de panel só pode amosar 1 tarxeta."
+ }
+ }
+ },
+ "unused_entities": {
+ "select_to_add": "Selecciona as entidades que queres engadir a unha tarxeta e logo fai clic no botón Engadir tarxeta."
+ },
+ "views": {
+ "confirm_delete_existing_cards": "Se eliminas esta vista, tamén se eliminarán as tarxetas",
+ "confirm_delete_existing_cards_text": "Seguro que queres eliminar a túa vista '' {name} ''? A vista contén {number} tarxetas que se eliminarán. Esta acción non se pode desfacer."
+ }
+ },
+ "my": {
+ "component_not_loaded": "Esta redirección non é compatible coa túa instancia de Home Assistant. Necesitas a integración {integration} para usar esta redirección.",
+ "documentation": "documentación",
+ "error": "Produciuse un erro descoñecido",
+ "faq_link": "Preguntas máis frecuentes sobre o meu Home Assistant",
+ "no_supervisor": "Esta redirección non é compatible coa instalación do teu Home Assistant. Precísase o sistema operativo Home Assistant ou o método de instalación do Home Assistant supervisado. Para obter máis información, consulte o {docs_link} .",
+ "not_supported": "Esta redirección non é compatible coa túa instancia de Home Assistant. Comprobe a {link} para coñecer as redireccións compatibles e a versión na que se introduciron."
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Seguinte"
+ },
+ "core-config": {
+ "intro_location": "Gustaríanos saber onde vives. Esta información axudará a amosar información e configurar automatismos baseados no sol. Estes datos nunca se comparten fóra da túa rede."
+ },
+ "finish": "Rematar",
+ "next": "Seguinte",
+ "restore": {
+ "addons": "Complementos",
+ "folders": "Carpetas",
+ "password": "Contrasinal",
+ "password_protection": "Protección por contrasinal",
+ "show_log": "Amosar rexistro completo",
+ "type": "Tipo"
+ }
+ },
+ "profile": {
+ "long_lived_access_tokens": {
+ "prompt_copy_token": "Copia o teu token de acceso. Non aparecerá de novo."
+ },
+ "number_format": {
+ "description": "Escolle como se formatean os números.",
+ "dropdown_label": "Formato de número",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Automático (usar a configuración do idioma)",
+ "none": "Ningunha",
+ "space_comma": "1 234 567,89",
+ "system": "Usa a configuración rexional do sistema"
+ },
+ "header": "Formato de número"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/gsw.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/gsw.json
new file mode 100644
index 00000000..815956a5
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/gsw.json
@@ -0,0 +1,340 @@
+{
+ "panel": {
+ "calendar": "Kaländer",
+ "config": "Istellige",
+ "history": "Vrlouf",
+ "logbook": "Logbuech",
+ "mailbox": "Postigang",
+ "map": "Charte",
+ "profile": "Profiu",
+ "shopping_list": "Ichoufsliste",
+ "states": "Übersicht"
+ },
+ "state": {
+ "default": {
+ "off": "Aus",
+ "on": "An",
+ "unavailable": "Nid verfüägbar",
+ "unknown": "Unbekannt"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Automatik",
+ "off": "Us",
+ "on": "Ah"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Scharf",
+ "armed_away": "Scharf",
+ "armed_custom_bypass": "Scharf",
+ "armed_home": "Scharf Dahei",
+ "armed_night": "Scharf",
+ "arming": "Scharf steue",
+ "disarmed": "Entschärft",
+ "disarming": "Deaktiviärt",
+ "pending": "Usstehend",
+ "triggered": "Usglöst"
+ },
+ "default": {
+ "unavailable": "Nid verfüägbar",
+ "unknown": "Unbekannt"
+ },
+ "device_tracker": {
+ "home": "Dahei"
+ },
+ "person": {
+ "home": "Dahei"
+ }
+ },
+ "ui": {
+ "card": {
+ "alarm_control_panel": {
+ "clear_code": "Lösche",
+ "code": "Code"
+ },
+ "automation": {
+ "trigger": "Uslöser"
+ },
+ "climate": {
+ "away_mode": "Wäg-Modus",
+ "currently": "Aktuell",
+ "fan_mode": "Ventilator-Modus",
+ "on_off": "I / us",
+ "operation": "Aktion",
+ "swing_mode": "Schwing-Modus",
+ "target_humidity": "Ziu-Fuächtigkeit",
+ "target_temperature": "Ziu-Temperatur"
+ },
+ "cover": {
+ "position": "Position",
+ "tilt_position": "Kipp-Position"
+ },
+ "fan": {
+ "direction": "Richtig",
+ "oscillate": "Ozilliere",
+ "speed": "Geschwindigkeit"
+ },
+ "light": {
+ "brightness": "Häuigkeit",
+ "color_temperature": "Farb-Temperatur",
+ "effect": "Effekt",
+ "white_value": "Wiss-Wärt"
+ },
+ "lock": {
+ "lock": "Zuätuä",
+ "unlock": "Uftuä"
+ },
+ "media_player": {
+ "sound_mode": "Sound-Modus",
+ "source": "Quelle"
+ },
+ "scene": {
+ "activate": "Aktiviere"
+ },
+ "vacuum": {
+ "actions": {
+ "turn_off": "Ausschaute",
+ "turn_on": "Ischaute"
+ }
+ },
+ "water_heater": {
+ "currently": "Aktuell",
+ "on_off": "I / Us",
+ "operation": "Operation",
+ "target_temperature": "Ziu-Temperatur"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Luftdruck",
+ "humidity": "Feuchtigkeit",
+ "temperature": "Temperatur",
+ "visibility": "Sichtwithi",
+ "wind_speed": "Windgschwindigkeit"
+ },
+ "cardinal_direction": {
+ "e": "O",
+ "ene": "ONO",
+ "ese": "OSO",
+ "n": "N",
+ "ne": "NO",
+ "nne": "NNO",
+ "nnw": "NNW",
+ "nw": "NW",
+ "s": "S",
+ "se": "SO",
+ "sse": "SSO",
+ "ssw": "SSW",
+ "sw": "SW",
+ "w": "W",
+ "wnw": "WNW",
+ "wsw": "WSW"
+ },
+ "forecast": "Vorhärsag"
+ }
+ },
+ "common": {
+ "loading": "Lade",
+ "next": "Weiter",
+ "previous": "Zurück",
+ "refresh": "Neu laden"
+ },
+ "components": {
+ "date-range-picker": {
+ "ranges": {
+ "last_week": "Letschti Wuche",
+ "this_week": "Die Wuche",
+ "today": "Hüt",
+ "yesterday": "Geschder"
+ }
+ },
+ "device-picker": {
+ "clear": "Lösche"
+ },
+ "entity": {
+ "entity-picker": {
+ "clear": "Lösche"
+ }
+ },
+ "relative_time": {
+ "never": "Niä"
+ },
+ "service-picker": {
+ "service": "Service"
+ },
+ "statistic-picker": {
+ "learn_more": "Meh über Statistike lehre",
+ "missing_entity": "Wieso isch mini Entity nit ufglischdet?",
+ "no_match": "Kei passendi Statistik gfunde",
+ "no_statistics": "Du hesch keini Statistike",
+ "statistic": "Statistik"
+ }
+ },
+ "login-form": {
+ "password": "Passwort"
+ },
+ "notification_toast": {
+ "connection_lost": "Vrbindig vrlore. Neu verbinde…"
+ },
+ "panel": {
+ "config": {
+ "automation": {
+ "caption": "Automation",
+ "editor": {
+ "actions": {
+ "header": "Aktione",
+ "type": {
+ "condition": {
+ "label": "Bedingig"
+ },
+ "delay": {
+ "label": "Vrzögerig"
+ },
+ "event": {
+ "label": "Event uslöse"
+ },
+ "wait_template": {
+ "label": "Warte"
+ }
+ },
+ "unsupported_action": "Nicht unterstützte Aktion: {action}"
+ },
+ "alias": "Name",
+ "conditions": {
+ "header": "Bedingig",
+ "type": {
+ "not": {
+ "label": "Nicht"
+ },
+ "sun": {
+ "after": "Nachhär:",
+ "before": "Vorhär:",
+ "sunrise": "Sunneungergang",
+ "sunset": "Sunneufgang"
+ },
+ "time": {
+ "after": "Nachhär",
+ "before": "Vorhär"
+ }
+ }
+ },
+ "default_name": "Nöii Automation",
+ "save": "Spichere",
+ "triggers": {
+ "add": "Uslöser hinzuäfüäge",
+ "duplicate": "Kopie",
+ "header": "Uslöser",
+ "type": {
+ "event": {
+ "label": "Event"
+ },
+ "homeassistant": {
+ "label": "Home Assistant",
+ "shutdown": "Abefahre",
+ "start": "Starte"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "topic": "Topic"
+ },
+ "numeric_state": {
+ "above": "Über",
+ "below": "Unger",
+ "label": "Nummerische Zuästand"
+ },
+ "state": {
+ "from": "Vo",
+ "label": "Zuästand",
+ "to": "Für"
+ },
+ "sun": {
+ "label": "Sunne",
+ "sunrise": "Sunneungergang",
+ "sunset": "Sunneufgang"
+ },
+ "template": {
+ "label": "Vorlag",
+ "value_template": "Wärt-Vorlag"
+ },
+ "time": {
+ "label": "Zyt"
+ },
+ "zone": {
+ "enter": "Inecho",
+ "label": "Zone",
+ "leave": "Verla"
+ }
+ }
+ }
+ }
+ },
+ "core": {
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Währig"
+ }
+ }
+ }
+ },
+ "devices": {
+ "device_info": "Geräteinformationen",
+ "scripts": "Scripts"
+ },
+ "energy": {
+ "device_consumption": {
+ "title": "Einzelne Devices"
+ }
+ },
+ "integrations": {
+ "caption": "Integratione",
+ "config_entry": {
+ "device_unavailable": "Grät verfüägbar",
+ "entity_unavailable": "Entitiy verfüägbar",
+ "firmware": "Firmware: {version}",
+ "manuf": "vo {manufacturer}"
+ },
+ "configure": "Konfiguriärä",
+ "configured": "Konfiguriärt",
+ "discovered": "Erkennt",
+ "none_found": "Keine Integrationen gefunden",
+ "none_found_detail": "Passen Sie Ihre Suchkriterien an."
+ },
+ "mqtt": {
+ "title": "MQTT"
+ },
+ "users": {
+ "caption": "Benutzer",
+ "editor": {
+ "delete_user": "Benutzer lösche"
+ }
+ }
+ },
+ "mailbox": {
+ "delete_button": "Lösche"
+ },
+ "profile": {
+ "change_password": {
+ "confirm_new_password": "Nöis Passwort bestätige",
+ "current_password": "Aktuells Passwort",
+ "error_required": "Benötigt",
+ "header": "Passwort wächsle",
+ "new_password": "Nöis Passwort",
+ "submit": "Abschicke"
+ },
+ "is_owner": "Du bisch dr Bsitzer",
+ "long_lived_access_tokens": {
+ "create": "Token erzüge",
+ "prompt_name": "Name?"
+ },
+ "mfa": {
+ "disable": "Deaktiviert"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/he.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/he.json
new file mode 100644
index 00000000..216cc99e
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/he.json
@@ -0,0 +1,4662 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "תצורת כניסה",
+ "device": "התקן",
+ "integration": "שילוב",
+ "user": "משתמש"
+ }
+ },
+ "groups": {
+ "owner": "בעלים",
+ "system-admin": "מנהלים",
+ "system-read-only": "משתמשים לקריאה בלבד",
+ "system-users": "משתמשים"
+ },
+ "panel": {
+ "calendar": "לוח שנה",
+ "config": "תצורה",
+ "developer_tools": "כלים למפתחים",
+ "energy": "אנרגיה",
+ "history": "היסטוריה",
+ "logbook": "יומן רישום",
+ "mailbox": "תיבת דואר",
+ "map": "מפה",
+ "media_browser": "סייר המדיה",
+ "profile": "פרופיל",
+ "shopping_list": "רשימת קניות",
+ "states": "ראשי"
+ },
+ "state": {
+ "default": {
+ "off": "מופסק",
+ "on": "מופעל",
+ "unavailable": "לא זמין",
+ "unknown": "לא ידוע"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "אוטומטי",
+ "off": "כבוי",
+ "on": "מופעל"
+ },
+ "hvac_action": {
+ "cooling": "קירור",
+ "drying": "מייבש",
+ "fan": "מאוורר",
+ "heating": "חימום",
+ "idle": "כבוי",
+ "off": "כבוי"
+ },
+ "preset_mode": {
+ "activity": "פעילות",
+ "away": "לא בבית",
+ "boost": "מוגבר",
+ "comfort": "נוחות",
+ "eco": "חסכון",
+ "home": "בבית",
+ "none": "לא נבחר",
+ "sleep": "שינה"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "אוטומטי",
+ "away": "לא בבית",
+ "baby": "תִינוֹק",
+ "boost": "גבוה",
+ "comfort": "נוחות",
+ "eco": "חסכוני",
+ "home": "בבית",
+ "normal": "רגיל",
+ "sleep": "שינה"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "דרוך",
+ "armed_away": "דרוך",
+ "armed_custom_bypass": "דרוך",
+ "armed_home": "דרוך",
+ "armed_night": "דרוך",
+ "armed_vacation": "דרוך",
+ "arming": "דורך",
+ "disarmed": "לא דרוך",
+ "disarming": "מבטל",
+ "pending": "ממתין",
+ "triggered": "מופעל"
+ },
+ "default": {
+ "entity_not_found": "הישות לא נמצאה",
+ "error": "שגיאה",
+ "unavailable": "לא זמין",
+ "unknown": "לא ידוע"
+ },
+ "device_tracker": {
+ "home": "בבית",
+ "not_home": "בחוץ"
+ },
+ "person": {
+ "home": "בבית",
+ "not_home": "בחוץ"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "ברירת מחדל",
+ "header": "שמע",
+ "input": "קלט",
+ "output": "פלט"
+ },
+ "network": {
+ "container": "מכולה",
+ "disabled": "מושבת",
+ "header": "רשת",
+ "host": "מארח"
+ },
+ "no_configuration": "הרחבה זו אינה חושפת תצורה עבורך כדי להתעסק עם…",
+ "options": {
+ "edit_in_ui": "עריכה בממשק המשתמש",
+ "edit_in_yaml": "עריכה ב-YAML",
+ "header": "אפשרויות",
+ "invalid_yaml": "YAML לא חוקי",
+ "show_unused_optional": "הצג אפשרויות תצורה אופציונליות שאינן בשימוש"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "קבלת יומן שינויים של התוסף נכשלה",
+ "go_to_config": "עריכת תצורה",
+ "install": "התקנת הרחבה נכשלה",
+ "restart": "הפעלה מחדש של הרחבה נכשלה",
+ "start": "הפעלת ההרחבה נכשלה",
+ "start_invalid_config": "עבור לתצורה",
+ "stop": "הפסקת ההרחבה נכשלה",
+ "uninstall": "הסרת התקנת ההרחבה נכשלה",
+ "validate_config": "אימות תצורת התוסף נכשל"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor ('שריון יישומים') הוא מודול אבטחה של ליבת לינוקס המגביל יכולות הרחבות כגון גישה לרשת, גישה לשקע גולמי והרשאה לקרוא, לכתוב או לבצע קבצים ספציפיים.\n\nעורכי הרחבות יכולים לספק את פרופילי האבטחה שלהם, ממוטבים עבור ההרחבה או לבקש להפוך אותה ללא זמינה. אם AppArmor מושבת, זה יעלה את סיכוני האבטחה ולכן, יש השפעה שלילית על ניקוד האבטחה של ההרחבה.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "הרחבה יכולה לאמת משתמשים מול Home Assistant, דבר המאפשר להרחבות להעניק למשתמשים את האפשרות להיכנס ליישומים הפועלים בתוך הרחבות, באמצעות שם המשתמש/הסיסמה של Home Assistant שלהם. תג זה מציין אם מחבר ההרחבה מבקש יכולת זו.",
+ "title": "אימות Home Assistant"
+ },
+ "docker_api": {
+ "description": "מחבר ההרחבה ביקש שההרחבה תהיה בעלת גישת ניהול למופע Docker הפועל במערכת שלך. מצב זה מעניק להרחבה גישה ושליטה מלאה למערכת Home Assistant כולה, מה שמוסיף סיכוני אבטחה ועלול לגרום נזק למערכת בעת שימוש לרעה. לכן, תכונה זו משפיעה לרעה על תוצאת אבטחת ההרחבה.\n\nרמת גישה זו אינה מוענקת באופן אוטומטי ועליך להיות מאושרת על ידיך. כדי לעשות זאת, עליך להשבית את מצב ההגנה בהרחבה באופן ידני. הפוך את מצב ההגנה ללא זמין רק אם ידוע לך, עליך לתת אמון במקור של הרחבה זו.",
+ "title": "גישה מלאה ל-docker"
+ },
+ "full_access": {
+ "description": "הרחבה זו מקבלת גישה מלאה לחומרת המערכת שלך, לפי בקשת מחבר ההרחבה. הגישה דומה למצב מורשה ב-Docker. מאחר שתכונה זו פותחת סיכוני אבטחה אפשריים, תכונה זו משפיעה לרעה על תוצאת אבטחת ההרחבה.\n\nרמת גישה זו אינה מוענקת באופן אוטומטי ועליך להיות מאושרת על ידיך. כדי לעשות זאת, עליך להשבית את מצב ההגנה בהרחבה באופן ידני. הפוך את מצב ההגנה ללא זמין רק אם ידוע לך, עליך לתת אמון במקור של הרחבה זו.",
+ "title": "גישה מלאה לחומרה"
+ },
+ "hassio_api": {
+ "description": "ההרחבה ניתנה גישה ל-API של המפקח, לבקשת מחבר ההרחבה. כברירת מחדל, ההרחבה יכולה לגשת למידע גירסה כללי של המערכת שלך. כאשר ההרחבה מבקשת גישה ברמת 'מנהל' או 'מנהל' ל-API, היא תקבל גישה לשליטה בחלקים מרובים של מערכת Home Assistant שלך. הרשאה זו מצוינת על ידי תג זה ותשפיע לרעה על תוצאת האבטחה של ההרחבה.",
+ "title": "גישת API למפקח"
+ },
+ "homeassistant_api": {
+ "description": "הרחבה זו מותרת לגשת למופע Home Assistant הפועל שלך ישירות באמצעות ה-API של Home Assistant. מצב זה מטפל באימות גם עבור ההרחבה, המאפשר להרחבה לקיים אינטראקציה עם Home Assistant ללא צורך באסימוני אימות נוספים.",
+ "title": "גישה ל-API של Assistant Home"
+ },
+ "host_network": {
+ "description": "הרחבות פועלות בדרך כלל בשכבת רשת מבודדת משלהן, המונעת מהן גישה לרשת של מערכת ההפעלה המארחת. במקרים מסוימים, בידוד רשת זה יכול להגביל הרחבות במתן השירותים שלהם ולכן, מחבר ההרחבה יכול להסיר את הבידוד, מה שמעניק להרחבה גישה מלאה ליכולות הרשת של המחשב המארח. פעולה זו מעניקה להרחבה יכולות רשת נוספות אך מורידה את האבטחה, ומכאן, דירוג האבטחה של ההרחבה יופחת כאשר אפשרות זו תשמש את ההרחבה.",
+ "title": "רשת מארח"
+ },
+ "host_pid": {
+ "description": "בדרך כלל, התהליכים שההרחבה מפעילה מבודדים מכל תהליכי המערכת האחרים. מחבר ההרחבה ביקש מההרחבה לקבל גישה לתהליכי המערכת הפועלים במופע המערכת המארחת, ולאפשר להרחבה להוליד תהליכים גם במערכת המארחת. מצב זה מעניק להרחבה גישה ושליטה מלאה למערכת Home Assistant כולה, מה שמוסיף סיכוני אבטחה ועלול לגרום נזק למערכת בעת שימוש לרעה. לכן, תכונה זו משפיעה לרעה על תוצאת אבטחת ההרחבה.\n\nרמת גישה זו אינה מוענקת באופן אוטומטי ועליך להיות מאושרת על-ידיך. כדי לעשות זאת, עליך להשבית את מצב ההגנה בהרחבה באופן ידני. הפוך את מצב ההגנה ללא זמין רק אם ידוע לך, עליך לתת אמון במקור של הרחבה זו.",
+ "title": "מרחב שמות של תהליכי מארח"
+ },
+ "ingress": {
+ "description": "תוסף זה משתמש בכניסה כדי להטמיע את הממשק שלו בצורה מאובטחת ב-Home Assistant.",
+ "title": "כניסה"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "אימות",
+ "core": "ליבה",
+ "docker": "docker",
+ "hardware": "חומרה",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "מארח",
+ "host_pid": "pid של מארח",
+ "ingress": "חדירה",
+ "rating": "דירוג",
+ "stage": "שלב"
+ },
+ "rating": {
+ "description": "Home Assistant מספק דירוג אבטחה לכל אחת מההרחבות, המציין את הסיכונים הכרוכים בשימוש בהרחבה זו. ככל שההרחבה דורשת גישה רבה יותר למערכת שלך, כך הציון נמוך יותר, ובכך מעלה את סיכוני האבטחה האפשריים.\n\nציון הוא בסולם מ 1 עד 6. כאשר 1 הוא הציון הנמוך ביותר (נחשב לסיכון הגבוה ביותר וחסר ביטחון) וציון של 6 הוא הציון הגבוה ביותר (נחשב לסיכון הבטוח והנמוך ביותר).",
+ "title": "דירוג אבטחה של הרחבה"
+ },
+ "role": {
+ "admin": "מנהל מערכת",
+ "backup": "גיבוי",
+ "default": "ברירת מחדל",
+ "homeassistant": "homeassistant",
+ "manager": "מנהל"
+ },
+ "stage": {
+ "description": "הרחבות יכולות להיות אחד משלושה שלבים:\n\n{icon_stable} **יציב**: אלו הרחבות המוכנות לשימוש במערכת מתפקדת.\n\n{icon_experimental} **נסיוני**: אלו עשויים להכיל באגים, וייתכן שהם לא גמורים.\n\n{icon_deprecated} **הוצא משימוש**: הרחבות אלו כבר לא יקבלו עדכונים.",
+ "title": "שלב הרחבה"
+ },
+ "stages": {
+ "deprecated": "הוצא משימוש",
+ "experimental": "ניסיוני"
+ }
+ },
+ "changelog": "יומן שינויים",
+ "cpu_usage": "שימוש ב-CPU של הרחבה",
+ "hostname": "שם מארח",
+ "install": "התקנה",
+ "new_update_available": "{name} {version} זמין",
+ "not_available_arch": "הרחבה זו אינה תואמת למעבד ההתקן או למערכת ההפעלה שהתקנת בהתקן שלך.",
+ "not_available_version": "אתה מפעיל את Home Assistant {core_version_installed} , כדי לעדכן לגרסה זו של התוסף אתה זקוק לפחות לגרסה {core_version_needed} של Home Assistant",
+ "open_web_ui": "פתח ממשק משתמש אינטרנטי",
+ "option": {
+ "auto_update": {
+ "description": "עדכן אוטומטית את ההרחבה כאשר גירסה חדשה זמינה",
+ "title": "עדכון אוטומטי"
+ },
+ "boot": {
+ "description": "הפעלת ההרחבה במהלך אתחול מערכת",
+ "title": "הפעל באתחול"
+ },
+ "ingress_panel": {
+ "description": "הוסף הרחבה זו לסרגל הצד",
+ "title": "הצג בסרגל הצד"
+ },
+ "protected": {
+ "description": "חסימת גישה מוגברת למערכת מההרחבה",
+ "title": "מצב הגנה"
+ },
+ "watchdog": {
+ "description": "פעולה זו תפעיל את ההרחבה אם היא תקרוס",
+ "title": "כלב שמירה"
+ }
+ },
+ "protection_mode": {
+ "content": "מצב הגנה על הרחבה זו מושבת! פעולה זו מעניקה להרחבה גישה מלאה למערכת כולה, מה שמוסיף סיכוני אבטחה ועלול לגרום נזק למערכת בעת שימוש שגוי. הפוך את מצב ההגנה ללא זמין רק אם אתה יודע מה אתה עושה, עליך לתת אמון במקור של הרחבה זו.",
+ "enable": "אפשר",
+ "title": "מצב ההגנה מושבת!"
+ },
+ "ram_usage": "שימוש ב-RAM של הרחבה",
+ "rebuild": "בנייה מחדש",
+ "restart": "הפעלה מחדש",
+ "start": "התחל",
+ "stop": "עצור",
+ "uninstall": "הסרת התקנה",
+ "visit_addon_page": "בקר בדף {name} לפרטים נוספים"
+ },
+ "documentation": {
+ "get_documentation": "קבלת תיעוד התוסף נכשלה, {error}"
+ },
+ "failed_to_reset": "איפוס תצורת ההרחבה נכשל, {error}",
+ "failed_to_save": "שמירת תצורת ההרחבה נכשלה, {error}",
+ "logs": {
+ "get_logs": "קבלת יומני התוסף נכשלה, {error}"
+ },
+ "panel": {
+ "configuration": "תצורה",
+ "documentation": "תיעוד",
+ "info": "מידע",
+ "log": "יומן"
+ },
+ "state": {
+ "installed": "ההרחבה מותקנת",
+ "not_available": "הרחבה אינה זמינה במערכת שלך",
+ "not_installed": "ההרחבה אינה מותקנת"
+ }
+ },
+ "backup": {
+ "addons": "תוספים",
+ "confirm_password": "אישור סיסמת גיבוי",
+ "could_not_create": "לא ניתן ליצור גיבוי",
+ "create": "צור",
+ "create_backup": "יצירת גיבוי",
+ "create_blocked_not_running": "יצירת גיבוי אינה אפשרית כרגע מכיוון שהמערכת במצב {state} .",
+ "created": "נוצר",
+ "delete_backup_confirm": "מחיקה",
+ "delete_backup_text": "האם ברצונך למחוק {number, plural,\n one {גיבוי אחד}\n other {{number} גיבויים}\n}?",
+ "delete_backup_title": "מחיקת גיבוי",
+ "delete_selected": "מחיקת גיבויים שנבחרו",
+ "enter_password": "נא הזן סיסמה.",
+ "failed_to_delete": "המחיקה נכשלה",
+ "folders": "תיקיות",
+ "full_backup": "גיבוי מלא",
+ "name": "שם נקודת גיבוי",
+ "no_backups": "אין לך גיבויים עדיין.",
+ "partial_backup": "גיבוי חלקי",
+ "password": "סיסמת גיבוי",
+ "password_protection": "הגנה באמצעות סיסמה",
+ "passwords_not_matching": "הסיסמאות אינן תואמות",
+ "select_type": "בחר מה לשחזר",
+ "selected": "{number} נבחרו",
+ "size": "גודל",
+ "type": "סוג נקודת גיבוי",
+ "upload_backup": "העלאת גיבוי"
+ },
+ "common": {
+ "cancel": "ביטול",
+ "close": "סגור",
+ "description": "תיאור",
+ "error": {
+ "unknown": "בעיה לא ידועה",
+ "update_failed": "העדכון נכשל"
+ },
+ "failed_to_restart_name": "אתחול {name} נכשל.",
+ "failed_to_update_name": "עדכון {name} נכשל.",
+ "learn_more": "למד עוד",
+ "menu": "תפריט",
+ "new_version_available": "גרסה חדשה זמינה",
+ "newest_version": "הגרסה החדשה ביותר",
+ "no": "לא",
+ "refresh": "רענן",
+ "release_notes": "הערות שיחרור",
+ "reload": "טען מחדש",
+ "reset_defaults": "אפס לברירות מחדל",
+ "reset_options": "אפשרויות איפוס",
+ "restart": "הפעלה מחדש",
+ "restart_name": "הפעל מחדש את {name}",
+ "review": "סקירה",
+ "running_version": "אתה מריץ כעת גרסה {version}",
+ "save": "שמור",
+ "show": "הצג",
+ "show_more": "הראה מידע נוסף על כך",
+ "update": "עדכן",
+ "update_available": "{count, plural,\n one {עדכון}\n other {{count} עדכונים}\n} בהמתנה",
+ "version": "גירסה",
+ "yes": "כן"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "האם בוודאות ברצונך לאפס את כל האפשרויות שלך?",
+ "title": "אפשרויות איפוס"
+ },
+ "restart": {
+ "text": "האם בוודאות ברצונך להפעיל מחדש את {name}?",
+ "title": "הפעל מחדש את {name}"
+ },
+ "update": {
+ "text": "האם בוודאות ברצונך לעדכן את {name} לגרסה {version}?",
+ "title": "עדכן את {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "גירסה חדשה זמינה",
+ "addon_running": "ההרחבה פועלת",
+ "addon_stopped": "ההרחבה הופסקה",
+ "addons": "הרחבות מותקנות",
+ "no_addons": "עדיין לא מותקנות הרחבות. גשו לחנות ההרחבה כדי להתחיל!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "ביטול",
+ "description": "הינך משתמש כעת ב-''{current_path}'' כערכת נתונים. העברת ערכת נתונים תאתחל מחדש את ההתקן וההערכה היא שזה ייקח {time} דקות. התקנת Home Assistant שלך לא תהיה נגישה במהלך תקופה זו. אין לנתק את החשמל במהלך העברה!",
+ "loading_devices": "טוען התקנים",
+ "move": "העברה",
+ "moving": "מעביר ערכת נתונים",
+ "moving_desc": "מאתחל ומעביר את ערכת הנתונים. נא להתאזר בסבלנות.",
+ "no_devices": "לא נמצאו התקנים מחוברים מתאימים",
+ "select_device": "בחירת ערכת נתונים חדשה",
+ "title": "העברת ערכת נתונים"
+ },
+ "hardware": {
+ "attributes": "תכונות",
+ "device_path": "נתיב התקן",
+ "id": "מזהה",
+ "search": "חפש חומרה",
+ "subsystem": "תת מערכת",
+ "title": "חומרה"
+ },
+ "network": {
+ "connected_to": "מחובר אל {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "מושבת",
+ "dns_servers": "שרתי DNS",
+ "failed_to_change": "שינוי הגדרות הרשת נכשל",
+ "gateway": "כתובת Gateway",
+ "ip_netmask": "כתובת IP/Netmask",
+ "open": "פתוח",
+ "scan_ap": "חפש נקודות גישה",
+ "static": "סטטי",
+ "title": "הגדרות רשת",
+ "unsaved": "יש לך שינויים שלא נשמרו ויאבדו אם תעבור כרטיסיות, האם ברצונך להמשיך?",
+ "warning": "אם אתה משנה את כתובות ה- Wi-Fi, ה- IP או ה Gateway, אתה עלול לאבד את החיבור!",
+ "wep": "WEP",
+ "wpa": "wpa-psk"
+ },
+ "registries": {
+ "add_new_registry": "הוסף מאגר חדש",
+ "add_registry": "הוסף מאגר",
+ "failed_to_add": "הוספת המאגר נכשלה",
+ "failed_to_remove": "הסרת המאגר נכשלה",
+ "no_registries": "לא הוגדרו מאגרים",
+ "password": "סיסמה",
+ "registry": "מאגר",
+ "remove": "הסרה",
+ "title_add": "הוסף רישום מכולה חדשה",
+ "title_manage": "ניהול מאגרי מכולות",
+ "username": "שם משתמש"
+ },
+ "repositories": {
+ "add": "הוספה",
+ "remove": "הסרה",
+ "title": "נהל את מאגרי ההרחבות",
+ "used": "המאגר נמצא בשימוש עבור הרחבות מותקנות ולא ניתן להסירו."
+ },
+ "restart_addon": {
+ "confirm_text": "הפעל מחדש את ההרחבה",
+ "text": "האם ברצונך להפעיל מחדש את ההרחבה עם השינויים שביצעת?"
+ },
+ "update": {
+ "backup": "גיבוי",
+ "create_backup": "יצירת גיבוי של {name} לפני עדכון",
+ "creating_backup": "יצירת גיבוי של {name}",
+ "updating": "מעדכן את {name} לגרסה {version}"
+ }
+ },
+ "my": {
+ "error": "אירעה שגיאה לא ידועה",
+ "error_addon_no_ingress": "ההרחבה המבוקשת אינו תומכת בכניסה",
+ "error_addon_not_found": "התוסף לא נמצא",
+ "error_addon_not_installed": "התוסף המבוקש אינו מותקן. אנא התקן אותו תחילה",
+ "error_addon_not_started": "ההרחבה המבוקשת אינה פועלת. נא הפעל אותו תחילה",
+ "faq_link": "שאלות נפוצות על Home Assistant שלי",
+ "not_supported": "הפניה זו אינה נתמכת על ידי מופע ה-Home Assistant שלך. בדוק ב-{link} את ההפניות הנתמכות ואת הגרסה שהוצגה."
+ },
+ "panel": {
+ "addons": "הרחבות",
+ "backups": "גיבויים",
+ "dashboard": "לוח בקרה",
+ "store": "חנות הרחבות",
+ "system": "מערכת"
+ },
+ "store": {
+ "check_updates": "בדיקת עדכונים",
+ "missing_addons": "חסרות הרחבות? אפשר מצב מתקדם בדף פרופיל המשתמש שלך",
+ "no_results_found": "לא נמצאו תוצאות ב-{repository}.",
+ "registries": "רישומים",
+ "repositories": "מאגרים"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "שימוש ליבה ב-CPU",
+ "ram_usage": "שימוש ליבה ב-RAM"
+ },
+ "host": {
+ "change": "שינוי",
+ "change_hostname": "שנה שם המארח",
+ "confirm_reboot": "האם בוודאות ברצונך לאתחל שרת מארח?",
+ "confirm_shutdown": "האם בוודאות ברצונך לכבות שרת מארח?",
+ "deployment": "פריסה",
+ "docker_version": "גרסת Docker",
+ "emmc_lifetime_used": "eMMC Lifetime בשימוש",
+ "failed_to_get_hardware_list": "קבלת רשימת החומרה נכשלה",
+ "failed_to_import_from_usb": "ייבוא מ-USB נכשל",
+ "failed_to_move": "העברת ערכת נתונים נכשלה",
+ "failed_to_reboot": "אתחול המארח נכשל",
+ "failed_to_set_hostname": "הגדרת שם המארח נכשלה",
+ "failed_to_shutdown": "כיבוי המארח נכשל",
+ "hardware": "חומרה",
+ "hostname": "שם מארח",
+ "import_from_usb": "ייבא מ-USB",
+ "ip_address": "כתובת IP",
+ "move_datadisk": "העברת ערכת נתונים",
+ "new_hostname": "נא להזין שם מארח חדש:",
+ "operating_system": "מערכת הפעלה",
+ "reboot_host": "אתחל שרת",
+ "shutdown_host": "כבה שרת מארח",
+ "used_space": "שטח בשימוש"
+ },
+ "log": {
+ "get_logs": "קבלת יומני רישום של {provider} נכשלה. {error}.",
+ "log_provider": "ספק יומן רישום"
+ },
+ "supervisor": {
+ "beta_backup": "ודא שיש לך גיבויים של הנתונים לפני הפעלת תכונה זו.",
+ "beta_join_confirm": "האם ברצונך להצטרף לערוץ הביטא?",
+ "beta_release_items": "זה כולל גרסאות בטא עבור:",
+ "beta_warning": "גרסאות בטא מיועדות לבודקים ומאמצים מוקדמים ויכולות להכיל שינויי קוד לא יציבים",
+ "channel": "ערוץ",
+ "cpu_usage": "שימוש ב-CPU של מפקח",
+ "failed_to_reload": "טעינה מחדש של המפקח נכשלה",
+ "failed_to_set_option": "הגדרת אפשרות המפקח נכשלה",
+ "failed_to_update": "עדכון המפקח נכשל",
+ "join_beta_action": "הצטרף לערוץ ביטא",
+ "join_beta_description": "קבל עדכוני ביטא עבור Home Assistant, מפקח ומערכת ההפעלה",
+ "leave_beta_action": "עזוב את ערוץ הביטא",
+ "leave_beta_description": "קבל עדכונים יציבים עבור Home Assistant, מפקח ומערכת ההפעלה",
+ "ram_usage": "שימוש בזיכרון RAM של מפקח",
+ "reload_supervisor": "טען מחדש את המפקח",
+ "search": "חיפוש",
+ "share_diagnostics": "שתף מידע אבחוני",
+ "share_diagnostics_description": "שתף דוחות קריסה ומידע אבחוני.",
+ "share_diagonstics_description": "האם ברצונך לשתף באופן אוטומטי דוחות קריסה ומידע אבחון כאשר המפקח נתקל בשגיאות בלתי צפויות? {line_break} זה יאפשר לנו לתקן את הבעיות, המידע נגיש רק לצוות הליבה של Home Assistant ולא ישותף עם אחרים. {line_break} הנתונים אינם כוללים מידע פרטי/רגיש ובאפשרותך להפוך מידע זה ללא זמין בהגדרות בכל עת שתרצה.",
+ "share_diagonstics_title": "עזור לשפר את Home Assistant",
+ "unhealthy_description": "הפעלת התקנה לא בריאה תגרום לבעיות. להלן רשימת הבעיות שנמצאו בהתקנה שלך, לחץ על הקישורים כדי ללמוד כיצד תוכל לפתור את הבעיות.",
+ "unhealthy_reason": {
+ "docker": "סביבת ה-Docker אינה פועלת כראוי",
+ "privileged": "אין הרשאות למפקח",
+ "setup": "הגדרת המפקח נכשלה",
+ "supervisor": "המפקח לא הצליח להתעדכן",
+ "untrusted": "זוהה תוכן לא מהימן"
+ },
+ "unhealthy_title": "ההתקנה שלך אינה תקינה",
+ "unsupported_description": "למטה רשימת נושאים שנימצאו במהלך ההתקנה, לחץ על קישור על מנת ללמוד איך לפתור את הנושא",
+ "unsupported_reason": {
+ "apparmor": "AppArmor אינו זמין במחשב המארח",
+ "container": "המכולה ידועה כבעייתית",
+ "content-trust": "אימות אמון תוכן מושבת",
+ "content_trust": "אימות אמון תוכן מושבת",
+ "dbus": "DBUS",
+ "docker_configuration": "תצורת Docker",
+ "docker_version": "גרסת Docker",
+ "job_conditions": "התעלם מתנאי ה Job",
+ "lxc": "LXC",
+ "network_manager": "מנהל רשת",
+ "os": "מערכת הפעלה",
+ "os_agent": "סוכן מערכת הפעלה",
+ "privileged": "אין הרשאות למפקח",
+ "software": "זוהתה תוכנה שאינה נתמכת",
+ "source_mods": "שינויי מקור",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "אתה מפעיל התקנה שאינה נתמכת",
+ "update_supervisor": "עדכון המפקח",
+ "warning": "אזהרה"
+ }
+ },
+ "update_available": {
+ "core_note": "המפקח יחזור לגרסה {version} אם המופע שלך לא יופיע לאחר העדכון.",
+ "create_backup": "יצירת גיבוי לפני העדכון",
+ "creating_backup": "יצירת גיבוי של {name}",
+ "description": "מותקנת גירסה {version} יש ללחוץ על עדכון כדי לעדכן לגרסה {newest_version}",
+ "no_update": "אין עדכון זמין עבור {name}",
+ "open_release_notes": "פתיחת הערות שיחרור",
+ "update_name": "עדכן את {name}",
+ "updating": "מעדכן את {name} לגרסה {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "האם ברצונך להישאר מחובר?",
+ "confirm": "כן",
+ "decline": "לא"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "דרוך לא בבית",
+ "arm_custom_bypass": "מעקף מותאם אישית",
+ "arm_home": "דרוך בבית",
+ "arm_night": "דריכה לילית",
+ "arm_vacation": "דריכה - חופשה",
+ "clear_code": "נקה",
+ "code": "קוד",
+ "disarm": "לא דרוך"
+ },
+ "area": {
+ "area_not_found": "אזור לא נמצא."
+ },
+ "automation": {
+ "last_triggered": "הפעלה אחרונה",
+ "trigger": "הרץ פעולות"
+ },
+ "button": {
+ "press": "לחיצה"
+ },
+ "camera": {
+ "not_available": "התמונה אינה זמינה"
+ },
+ "climate": {
+ "aux_heat": "מסייע חום",
+ "away_mode": "מצב לא בבית",
+ "cooling": "{name} קירור",
+ "current_temperature": "{name} טמפרטורה נוכחית",
+ "currently": "כעת",
+ "fan_mode": "מצב מאורר",
+ "heating": "{name} חימום",
+ "high": "גבוה",
+ "low": "נמוך",
+ "on_off": "הפעלה / כיבוי",
+ "operation": "פעולה",
+ "preset_mode": "מצב מוגדר",
+ "swing_mode": "מצב נדנוד",
+ "target_humidity": "לחות היעד",
+ "target_temperature": "טמפרטורת היעד",
+ "target_temperature_entity": "{name} טמפרטורת יעד",
+ "target_temperature_mode": "{name} טמפרטורת יעד {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "הקטנה",
+ "increment": "הגדלה",
+ "reset": "איפוס"
+ }
+ },
+ "cover": {
+ "position": "מיקום",
+ "tilt_position": "הטיה"
+ },
+ "fan": {
+ "direction": "כיוון",
+ "forward": "קדימה",
+ "oscillate": "נעים",
+ "preset_mode": "מצב מוגדר מראש",
+ "reverse": "אחורה",
+ "speed": "מהירות"
+ },
+ "humidifier": {
+ "humidity": "יעד לחות",
+ "mode": "מצב",
+ "on_entity": "{name} דולק",
+ "target_humidity_entity": "{name} לחות היעד"
+ },
+ "light": {
+ "brightness": "בהירות",
+ "cold_white_value": "בהירות לבנה קרה",
+ "color_brightness": "בהירות צבע",
+ "color_temperature": "טמפרטורת הצבע",
+ "effect": "אפקט",
+ "warm_white_value": "בהירות לבנה חמה",
+ "white_value": "בהירות לבנה"
+ },
+ "lock": {
+ "code": "קוד",
+ "lock": "נעילה",
+ "unlock": "ביטול נעילה"
+ },
+ "media_player": {
+ "browse_media": "עיון במדיה",
+ "media_next_track": "רצועה באה",
+ "media_pause": "השהיה",
+ "media_play": "הפעל",
+ "media_play_pause": "הפעל/השהה",
+ "media_previous_track": "רצועה קודמת",
+ "media_stop": "עצירה",
+ "media_volume_down": "הנמכת עוצמת קול",
+ "media_volume_mute": "השתקה",
+ "media_volume_unmute": "ביטול השתקה",
+ "media_volume_up": "הגברת עוצמת קול",
+ "nothing_playing": "שום דבר לא מתנגן",
+ "sound_mode": "מצב קול",
+ "source": "מקור",
+ "text_to_speak": "טקסט לדיבור",
+ "turn_off": "כבה",
+ "turn_on": "הדלק"
+ },
+ "persistent_notification": {
+ "dismiss": "נקה"
+ },
+ "scene": {
+ "activate": "הפעל"
+ },
+ "script": {
+ "cancel": "ביטול",
+ "cancel_multiple": "בטל {number}",
+ "run": "רוץ"
+ },
+ "service": {
+ "run": "רוץ"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "ביטול",
+ "finish": "סיום",
+ "pause": "השהיה",
+ "start": "התחלה"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "חידוש הניקוי",
+ "return_to_base": "חוזר לתחנת עגינה",
+ "start_cleaning": "התחל לנקות",
+ "turn_off": "כיבוי",
+ "turn_on": "הפעלה"
+ }
+ },
+ "water_heater": {
+ "away_mode": "מצב לא בבית",
+ "currently": "כעת",
+ "on_off": "הפעלה / כיבוי",
+ "operation": "פעולה",
+ "target_temperature": "טמפרטורת היעד"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "לחץ אוויר",
+ "humidity": "לחות",
+ "precipitation": "משקעים",
+ "temperature": "טמפרטורה",
+ "visibility": "ראות",
+ "wind_speed": "מהירות הרוח"
+ },
+ "cardinal_direction": {
+ "e": "מזרח",
+ "ene": "צפון מזרח",
+ "ese": "דרום מזרח",
+ "n": "צפון",
+ "ne": "צפון מזרח",
+ "nne": "צפון מזרח",
+ "nnw": "צפון מערב",
+ "nw": "צפון מערב",
+ "s": "דרום",
+ "se": "דרום מזרח",
+ "sse": "דרום מזרח",
+ "ssw": "דרום מערב",
+ "sw": "דרום מערב",
+ "w": "מערב",
+ "wnw": "צפון מערב",
+ "wsw": "דרום מערב"
+ },
+ "day": "יום",
+ "forecast": "תחזית",
+ "high": "גבוה",
+ "low": "נמוך",
+ "night": "לילה"
+ }
+ },
+ "common": {
+ "and": "וגם",
+ "back": "חזור",
+ "cancel": "ביטול",
+ "clear": "ניקוי",
+ "close": "סגור",
+ "continue": "המשך",
+ "copied": "מועתק",
+ "copied_clipboard": "הועתק ללוח",
+ "delete": "מחיקה",
+ "disable": "השבת",
+ "enable": "אפשר",
+ "error_required": "נדרש",
+ "help": "עזרה",
+ "leave": "עזוב",
+ "loading": "טוען",
+ "menu": "תפריט",
+ "move": "העברה",
+ "next": "הבא",
+ "no": "לא",
+ "not_now": "לא עכשיו",
+ "overflow_menu": "תפריט גולש",
+ "previous": "הקודם",
+ "refresh": "רענן",
+ "remove": "הסרה",
+ "rename": "שנה שם",
+ "save": "שמור",
+ "skip": "דלג",
+ "stay": "הישאר",
+ "submit": "שלח",
+ "successfully_deleted": "נמחק בהצלחה",
+ "successfully_saved": "נשמר בהצלחה",
+ "undo": "בטל",
+ "yes": "כן"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "הרחבה",
+ "error": {
+ "fetch_addons": {
+ "description": "אירעה שגיאה בטעינת הרחבות.",
+ "title": "שגיאה בטעינת הרחבות"
+ },
+ "no_supervisor": {
+ "description": "הרחבות אינן נתמכות.",
+ "title": "אין מפקח"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "הוסף",
+ "failed_create_area": "יצירת אזור נכשלה.",
+ "name": "שם",
+ "text": "הזן את שם האזור החדש.",
+ "title": "הוסף אזור חדש"
+ },
+ "add_new": "הוספת אזור חדש…",
+ "area": "אזור",
+ "clear": "נקה",
+ "no_areas": "אין לך אזורים",
+ "no_match": "לא נמצאו אזורים תואמים",
+ "show_areas": "הצג אזורים"
+ },
+ "attributes": {
+ "expansion_header": "תכונות"
+ },
+ "blueprint-picker": {
+ "add_user": "הוסף משתמש",
+ "remove_user": "הסר משתמש",
+ "select_blueprint": "בחר תכנית שרטוט"
+ },
+ "calendar": {
+ "my_calendars": "היומנים שלי",
+ "today": "היום"
+ },
+ "data-table": {
+ "clear": "נקה",
+ "filtering_by": "סינון לפי",
+ "hidden": "{number} מוסתר",
+ "no-data": "אין נתונים",
+ "search": "חיפוש"
+ },
+ "date-range-picker": {
+ "end_date": "תאריך סיום",
+ "ranges": {
+ "last_week": "בשבוע שעבר",
+ "this_week": "השבוע",
+ "today": "היום",
+ "yesterday": "אתמול"
+ },
+ "select": "בחר",
+ "start_date": "תאריך התחלה"
+ },
+ "device-picker": {
+ "clear": "נקה",
+ "device": "התקן",
+ "no_area": "אין אזור",
+ "no_devices": "אין לך מכשירים",
+ "no_match": "לא נמצאו התקנים תואמים",
+ "show_devices": "הצג התקנים",
+ "toggle": "בורר דו-מצבי"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "תכונה",
+ "show_attributes": "הצג תכונות"
+ },
+ "entity-picker": {
+ "clear": "נקה",
+ "edit": "עריכה",
+ "entity": "ישות",
+ "no_match": "לא נמצאו ישויות תואמות",
+ "show_entities": "הצגת ישויות"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "היסטוריית השילוב מושבתת",
+ "loading_history": "טוען היסטוריה…",
+ "no_history_found": "לא נמצאה היסטוריה"
+ },
+ "logbook": {
+ "by": "על ידי",
+ "by_service": "באמצעות שרות",
+ "entries_not_found": "לא נמצאו אירועי יומן רישום.",
+ "messages": {
+ "became_unavailable": "הפך ללא זמין",
+ "changed_to_state": "השתנה ל{state}",
+ "cleared_device_class": "נוקה (לא זוהה {device_class} )",
+ "cleared_tampering": "ניקוי חבלה",
+ "detected_device_class": "זוהה {device_class}",
+ "detected_tampering": "התגלתה חבלה",
+ "is_closing": "סגור",
+ "is_opening": "נפתח",
+ "rose": "זרחה",
+ "set": "שקעה",
+ "turned_off": "נכבה",
+ "turned_on": "הופעל",
+ "was_at_home": "היה בבית",
+ "was_at_state": "היה ב {state}",
+ "was_away": "זוהה כלא בבית",
+ "was_closed": "היה סגור",
+ "was_connected": "היה מחובר",
+ "was_disconnected": "היה מנותק",
+ "was_locked": "היה נעול",
+ "was_low": "היה נמוך",
+ "was_normal": "היה נורמלי",
+ "was_opened": "היה פתוח",
+ "was_plugged_in": "היה מחובר",
+ "was_safe": "היה בטוח",
+ "was_unlocked": "לא היה נעול",
+ "was_unplugged": "היה מנותק",
+ "was_unsafe": "היה לא בטוח"
+ },
+ "retrieval_error": "לא היתה אפשרות לטעון יומן רישום",
+ "show_trace": "הצג מעקב"
+ },
+ "media-browser": {
+ "audio_not_supported": "הדפדפן שלך אינו תומך ברכיב השמע.",
+ "choose_player": "בחר נגן",
+ "class": {
+ "album": "אלבום",
+ "app": "יישום",
+ "artist": "אמן",
+ "channel": "ערוץ",
+ "composer": "מלחין",
+ "contributing_artist": "אמן תורם",
+ "directory": "ספריה",
+ "episode": "פרק",
+ "game": "משחק",
+ "genre": "ז'אנר",
+ "image": "תמונה",
+ "movie": "סרט",
+ "music": "מוזיקה",
+ "playlist": "רשימת השמעה",
+ "podcast": "פודקאסט",
+ "season": "עונה",
+ "track": "רצועה",
+ "tv_show": "תוכנית טלוויזיה",
+ "url": "כתובת אתר",
+ "video": "וידאו"
+ },
+ "documentation": "תיעוד",
+ "learn_adding_local_media": "למד עוד אודות הוספת מדיה ב-{documentation}.",
+ "local_media_files": "מקם את קבצי הווידאו, השמע והתמונה בספריית המדיה כדי שתוכל לעיין בהם ולהשמיע אותם בדפדפן או בנגני מדיה נתמכים.",
+ "media-player-browser": "סייר נגן המדיה",
+ "media_browsing_error": "שגיאת בסיור המדיה",
+ "media_not_supported": "נגן המדיה של הדפדפן אינו תומך בסוג מדיה זה",
+ "media_player": "נגן מדיה",
+ "no_items": "אין פריטים",
+ "no_local_media_found": "לא נמצאה מדיה מקומית",
+ "no_media_folder": "נראה שעדיין לא יצרת ספריית מדיה.",
+ "pick": "בחר",
+ "pick-media": "בחר מדיה",
+ "play": "הפעל",
+ "play-media": "הפעל מדיה",
+ "setup_local_help": "עיין ב{documentation} כיצד להגדיר מדיה מקומית.",
+ "video_not_supported": "הדפדפן שלך אינו תומך ברכיב הווידאו.",
+ "web-browser": "דפדפן"
+ },
+ "picture-upload": {
+ "label": "תמונה",
+ "unsupported_format": "פורמט לא נתמך, בחר תמונת JPEG, PNG או GIF."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "הזנת ערך קוד QR",
+ "manual_input": "ניתן לסרוק את קוד ה-QR באמצעות סורק QR אחר ולהדביק את הקוד בקלט שלהלן",
+ "not_supported": "הדפדפן שלך אינו תומך בסריקת QR.",
+ "only_https_supported": "באפשרותך להשתמש במצלמה רק כדי לסרוק קוד QR בעת שימוש ב-HTTPS.",
+ "select_camera": "בחר מצלמה"
+ },
+ "related-filter-menu": {
+ "filter": "מסנן",
+ "filter_by_area": "סנן לפי אזור",
+ "filter_by_device": "סינון לפי התקן",
+ "filter_by_entity": "סנן לפי ישות",
+ "filtered_by_area": "אזור: {area_name}",
+ "filtered_by_device": "התקן: {device_name}",
+ "filtered_by_entity": "ישות: {entity_name}"
+ },
+ "related-items": {
+ "area": "איזור",
+ "automation": "חלק מהאוטומציות הבאות",
+ "device": "מכשיר",
+ "entity": "ישויות קשורות",
+ "group": "חלק מהקבוצות הבאות",
+ "integration": "שילוב",
+ "no_related_found": "לא נמצאו פריטים קשורים.",
+ "scene": "חלק מהסצנות הבאות",
+ "script": "חלק מהסקריפטים הבאים"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count, plural,\n one {יום אחד}\n two {יומיים}\n other {{count} ימים}\n}",
+ "hour": "{count, plural,\n one {שעה}\n two {שעתיים}\n other {{count} שעות}\n}",
+ "minute": "{count, plural,\n one {דקה}\n other {{count} דקות}\n}",
+ "second": "{count, plural,\n one {שנייה}\n other {{count} שניות}\n}",
+ "week": "{count, plural,\n one {שבוע}\n two {שבועיים}\n other {{count} שבועות}\n}"
+ },
+ "future_duration": {
+ "day": "בעוד {count, plural,\n one {יום אחד}\n two {יומיים}\n other {{count} ימים}\n}",
+ "hour": "בעוד {count, plural,\n one {שעה אחת}\n two {שעתיים}\n other {{count} שעות}\n}",
+ "minute": "בעוד {count, plural,\n one {דקה אחת}\n other {{count} דקות}\n}",
+ "second": "בעוד {count, plural,\n one {שניה אחת}\n other {{count} שניות}\n}",
+ "week": "בעוד {count, plural,\n one {שבוע אחד}\n two {שבועיים}\n other {{count} שבועות}\n}"
+ },
+ "just_now": "עכשיו",
+ "never": "אף פעם לא",
+ "past_duration": {
+ "day": "לפני {count, plural,\n one {יום אחד}\n two {יומיים}\n other {{count} ימים}\n}",
+ "hour": "לפני {count, plural,\n one {שעה אחת}\n two {שעתיים}\n other {{count} שעות}\n}",
+ "minute": "לפני {count, plural,\n one {דקה אחת}\n other {{count} דקות}\n}",
+ "second": "לפני {count, plural,\n one {שניה אחת}\n other {{count} שניות}\n}",
+ "week": "לפני {count, plural,\n one {שבוע אחד}\n two {שבועיים}\n other {{count} שבועות}\n}"
+ }
+ },
+ "service-control": {
+ "integration_doc": "תיעוד שילוב",
+ "required": "שדה זה נדרש",
+ "service_data": "נתוני שירות",
+ "target": "יעדים",
+ "target_description": "אלה האיזורים, התקנים וישויות בהם ישתמש שירות זה"
+ },
+ "service-picker": {
+ "service": "שירות"
+ },
+ "statistic-picker": {
+ "learn_more": "למידע נוסף על סטטיסטיקות",
+ "missing_entity": "מדוע הישות שלי אינה מופיעה ברשימה?",
+ "no_match": "לא נמצאו סטטיסטיקות תואמות",
+ "no_statistics": "אין לך סטטיסטיקות.",
+ "statistic": "סטטיסטיקות"
+ },
+ "statistics_charts": {
+ "loading_statistics": "טוען סטטיסטיקה…",
+ "no_statistics_found": "לא נמצאו נתונים סטטיסטיים.",
+ "statistic_types": {
+ "max": "מקסימום",
+ "mean": "מתכוון",
+ "min": "דקות",
+ "sum": "סכום"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "בחר אזור",
+ "add_device_id": "בחר התקן",
+ "add_entity_id": "בחר ישות",
+ "expand": "הרחבה",
+ "expand_area_id": "פצל אזור זה להתקנים וישויות נפרדים.",
+ "expand_device_id": "פצל התקן זה לישויות נפרדות.",
+ "remove": "הסרה",
+ "remove_area_id": "הסר אזור",
+ "remove_device_id": "הסרת התקן",
+ "remove_entity_id": "הסר ישות"
+ },
+ "user-picker": {
+ "add_user": "הוספת משתמש",
+ "no_user": "אין משתמש",
+ "remove_user": "הסר משתמש"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "אם יש להוסיף באופן אוטומטי התקנים שהתגלו לאחרונה עבור {integration}.",
+ "enable_new_entities_label": "הפוך ישויות חדשות שנוספו לזמינות.",
+ "enable_polling_description": "אם Home Assistant אמור לתשאל אוטומטית {integration} עבור עדכונים.",
+ "enable_polling_label": "אפשר תשאול עבור עדכונים.",
+ "restart_home_assistant": "עליך להפעיל מחדש את Home Assistant כדי שהשינויים שלך ייכנסו לתוקף.",
+ "title": "אפשרויות מערכת עבור {integration}",
+ "update": "עדכון"
+ },
+ "domain_toggler": {
+ "reset_entities": "איפוס ישויות",
+ "title": "החלף דומיינים"
+ },
+ "entity_registry": {
+ "control": "בקרה",
+ "customize_link": "התאמות אישיות של ישויות",
+ "dismiss": "בטל",
+ "editor": {
+ "advanced": "הגדרות מתקדמות",
+ "area": "הגדרת אזור ישות בלבד",
+ "area_note": "כברירת מחדל, הישויות של התקן נמצאות באותו אזור כמו ההתקן. אם תשנה את האזור של ישות זו, היא לא תעקוב עוד אחר אזור ההתקן.",
+ "change_device_area": "שינוי את אזור ההתקן",
+ "confirm_delete": "האם בוודאות ברצונך למחוק ישות זו?",
+ "delete": "מחק",
+ "device_class": "הצג בתור",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "דלת",
+ "garage_door": "דלת מוסך",
+ "opening": "אחר",
+ "window": "חלון"
+ },
+ "cover": {
+ "door": "דלת",
+ "garage": "דלת מוסך",
+ "window": "חלון"
+ }
+ },
+ "device_disabled": "המכשיר של ישות זו מושבת.",
+ "enabled_cause": "מושבת עקב {cause}.",
+ "enabled_delay_confirm": "הישויות המופעלות יתווספו ל-Home Assistant בעוד {delay} שניות",
+ "enabled_description": "ישויות מושבתות לא יתווספו ל-Home Assistant.",
+ "enabled_label": "הפוך ישות לזמינה",
+ "enabled_restart_confirm": "הפעל מחדש את Assistant Home כדי להפוך את היישויות לזמינות",
+ "entity_id": "מזהה ישות",
+ "follow_device_area": "עקוב אחר אזור ההתקן",
+ "icon": "סמליל",
+ "icon_error": "סמלים צריכים להיות בפורמט: prefix:iconname, למשל: mdi:home",
+ "name": "שם",
+ "note": "הערה: יתכן שזה עדיין לא פועל עם כל השילובים.",
+ "open_device_settings": "פתיחת הגדרות התקן",
+ "unavailable": "ישות זו אינה זמינה.",
+ "update": "עדכון"
+ },
+ "faq": "תיעוד",
+ "info_customize": "באפשרותך להחליף תכונות מסוימות במקטע {customize_link}.",
+ "no_unique_id": "לישות זו (''{entity_id}'') אין מזהה ייחודי, ולכן לא ניתן לנהל את הגדרותיה ממשק המשתמש. עיין ב-{faq_link} לפרטים נוספים.",
+ "related": "קשורים",
+ "settings": "הגדרות"
+ },
+ "generic": {
+ "cancel": "ביטול",
+ "close": "סגור",
+ "default_confirmation_title": "בוודאות?",
+ "ok": "אישור"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "ערך התחלתי",
+ "maximum": "ערך מרבי",
+ "minimum": "ערך מינימלי",
+ "restore": "שחזור הערך הידוע האחרון בעת הפעלת Home Assistant",
+ "step": "גודל הצעד"
+ },
+ "generic": {
+ "icon": "סמל",
+ "name": "שם"
+ },
+ "input_datetime": {
+ "date": "תאריך",
+ "datetime": "תאריך ושעה",
+ "mode": "מה ברצונך להזין?",
+ "time": "זמן"
+ },
+ "input_number": {
+ "box": "שדה קלט",
+ "max": "ערך מקסימאלי",
+ "min": "ערך מינימלי",
+ "mode": "מצב תצוגה",
+ "slider": "מחוון",
+ "step": "גודל צעד",
+ "unit_of_measurement": "יחידת מידה"
+ },
+ "input_select": {
+ "add": "הוסף",
+ "add_option": "הוסף אפשרות",
+ "no_options": "אין עדיין אפשרויות.",
+ "options": "אפשרויות"
+ },
+ "input_text": {
+ "max": "אורך מקסימאלי",
+ "min": "אורך מינימלי",
+ "mode": "מצב תצוגה",
+ "password": "סיסמה",
+ "pattern": "דפוס Regex לצורך אימות בצד הלקוח",
+ "text": "טקסט"
+ },
+ "platform_not_loaded": "השילוב {platform} לא נטען. אנא הוסף אותו לתצורה שלך על ידי הוספת 'default_config:' או '' {platform} : ''.",
+ "required_error_msg": "שדה זה הוא חובה",
+ "timer": {
+ "duration": "משך"
+ },
+ "yaml_not_editable": "אין אפשרות לערוך את ההגדרות של ישות זו מממשק המשתמש. רק ישויות שהוגדרו מממשק המשתמש ניתנות להגדרה מתוך ממשק המשתמש."
+ },
+ "image_cropper": {
+ "crop": "חתוך"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "סגור וילון",
+ "close_tile_cover": "סגור את הטיית הוילון",
+ "close_tilt_cover": "סגור את הטיית הוילון",
+ "open_cover": "פתח וילון",
+ "open_tilt_cover": "פתח את הטיית הוילון",
+ "stop_cover": "עצירת וילון"
+ },
+ "details": "פרטים",
+ "dismiss": "סגור",
+ "edit": "ערוך יישות",
+ "history": "היסטוריה",
+ "last_changed": "שינוי אחרון",
+ "last_updated": "עודכן לאחרונה",
+ "logbook": "יומן אירועים",
+ "person": {
+ "create_zone": "צור אזור מהמיקום הנוכחי"
+ },
+ "remote": {
+ "activity": "פעילות נוכחית"
+ },
+ "restored": {
+ "confirm_remove_text": "האם בוודאות ברצונך להסיר ישות זו?",
+ "confirm_remove_title": "להסיר את הישות?",
+ "not_provided": "ישות זו אינה זמינה כעת והיא יתומה משילוב או התקן שהוסרו, שונו או לא מתפקדים.",
+ "remove_action": "הסר יישות",
+ "remove_intro": "אם הישות כבר אינה בשימוש, ניתן לנקות אותה על ידי הסרתה."
+ },
+ "script": {
+ "last_action": "פעולה אחרונה",
+ "last_triggered": "גורם הפעיל לאחרונה"
+ },
+ "settings": "הגדרות ישות",
+ "show_more": "הצג עוד",
+ "sun": {
+ "elevation": "גובה",
+ "rising": "זורחת",
+ "setting": "שוקעת"
+ },
+ "updater": {
+ "title": "הוראות עדכון"
+ },
+ "vacuum": {
+ "clean_spot": "ניקוי אזור",
+ "commands": "פקודות שואב אבק:",
+ "fan_speed": "מהירות מאוורר",
+ "locate": "איתור",
+ "pause": "השהיה",
+ "return_home": "חוזר הביתה",
+ "start": "התחלה",
+ "start_pause": "התחלה/השהיה",
+ "status": "מצב",
+ "stop": "עצירה"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "נסה לנתח הודעות MQTT כ- JSON",
+ "entities": "ישויות",
+ "no_entities": "אין ישויות",
+ "no_triggers": "אין טריגרים",
+ "payload_display": "הצג Payload",
+ "recent_messages": "{n} ההודעות שהתקבלו לאחרונה",
+ "show_as_yaml": "הצג כ־YAML",
+ "title": "{device} פרטי איתור באגים",
+ "triggers": "טריגרים"
+ },
+ "options_flow": {
+ "form": {
+ "header": "אפשרויות"
+ },
+ "loading": {
+ "loading_flow": "יש להמתין בזמן שמתבצע אתחול עבור אפשרויות {integration}",
+ "loading_step": "טוען את השלב הבא עבור {integration}"
+ },
+ "success": {
+ "description": "האפשרויות נשמרו בהצלחה."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "אזורים",
+ "automation": "אוטומציות",
+ "blueprint": "שרטוטים",
+ "core": "כללי",
+ "customize": "התאמות אישיות",
+ "devices": "התקנים",
+ "energy": "תצורת אנרגיה",
+ "entities": "ישויות",
+ "helpers": "מסייעים",
+ "info": "מידע",
+ "integrations": "שילובים",
+ "logs": "יומנים",
+ "lovelace": "לוחות הבקרה של Lovelace",
+ "person": "אנשים",
+ "scene": "סצנות",
+ "script": "סקריפטים",
+ "server_control": "פקדי שרת",
+ "tag": "תגים",
+ "users": "משתמשים",
+ "zone": "אזורים"
+ },
+ "reload": {
+ "automation": "אוטומציות",
+ "command_line": "ישויות שורת פקודה",
+ "core": "מיקום והתאמות אישיות",
+ "filesize": "ישויות בגודל הקובץ",
+ "filter": "סינון ישויות",
+ "generic": "ישויות כלליות של מצלמת IP",
+ "generic_thermostat": "ישויות כלליות של וסת חום",
+ "group": "קבוצות, ישויות קבוצתיות ושירותי הודעה",
+ "history_stats": "היסטוריית מצב ישויות",
+ "homekit": "HomeKit",
+ "input_boolean": "קלט בוליאני",
+ "input_datetime": "קלט תאריך וזמן",
+ "input_number": "קלט מספרים",
+ "input_select": "קלט בחירה",
+ "input_text": "קלט טקסט",
+ "min_max": "ישויות מינימום/מקסימום",
+ "mqtt": "ישויות MQTT שתצורתן נקבעה באופן ידני",
+ "person": "אנשים",
+ "ping": "איתות (Ping) ישויות חיישנים בינאריים",
+ "reload": "{domain}",
+ "rest": "שאר ישויות ושירותי הודעות",
+ "rpi_gpio": "ישויות GPIO של רספברי פאי",
+ "scene": "סצנות",
+ "script": "סקריפטים",
+ "smtp": "שירותי הודעת SMTP",
+ "statistics": "סטטיסטיקה ישויות",
+ "telegram": "שירותי הודעת טלגרם",
+ "template": "תבנית ישויות",
+ "themes": "ערכות נושא",
+ "trend": "מגמת ישויות",
+ "universal": "ישויות אוניברסליות של נגן מדיה",
+ "zone": "אזורים"
+ },
+ "server_control": {
+ "perform_action": "{action} שרת",
+ "restart": "הפעלה מחדש",
+ "stop": "עצור"
+ },
+ "types": {
+ "navigation": "ניווט",
+ "reload": "טען מחדש",
+ "server_control": "שרת"
+ }
+ },
+ "filter_placeholder": "מסנן ישויות",
+ "key_c_hint": "ניתן לפתוח בכל עמוד את שורת החיפוש הזו על ידי הקשה על 'c'",
+ "title": "חיפוש מהיר"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant לא שמע כלום",
+ "error": "אופס, אירעה שגיאה",
+ "found": "מצאתי עבורך את הדברים הבאים:",
+ "how_can_i_help": "איך אני יכול לעזור?",
+ "label": "הקלד שאלה ולחץ על 'Enter'",
+ "label_voice": "הקלד ולחץ על 'Enter' או הקש על המיקרופון כדי לדבר"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "הוסף התקנים באמצעות התקן זה",
+ "clusters": "ניהול אשכולות",
+ "device_children": "צפה בילדים",
+ "reconfigure": "קביעת תצורה מחדש של ההתקן",
+ "remove": "הסרת התקן",
+ "view_in_visualization": "הצג בפריט חזותי",
+ "zigbee_information": "חתימת התקן Zigbee"
+ },
+ "confirmations": {
+ "remove": "האם בוודאות ברצונך למחוק מכשיר זה?"
+ },
+ "device_children": "ילדי התקן זיגבי",
+ "device_signature": "חתימת התקן Zigbee",
+ "last_seen": "נראה לאחרונה",
+ "manuf": "לפי {manufacturer}",
+ "no_area": "ללא אזור",
+ "power_source": "מקור כוח",
+ "quirk": "מוזרות",
+ "services": {
+ "reconfigure": "הגדרה מחדש של התקן ZHA (ריפוי התקן). השתמש בזה אם אתה נתקל בבעיות בהתקן. אם התקן המדובר הוא התקן המונע על ידי סוללה, ילש וודא שהוא פועל ומקבל פקודות בעת השימוש בשירות זה.",
+ "remove": "הסר מכשיר מרשת ה-Zigbee",
+ "updateDeviceName": "הגדרת שם מותאם אישית עבור התקן זה במאגר ההתקנים.",
+ "zigbee_information": "הצגת מידע Zigbee עבור ההתקן."
+ },
+ "unknown": "לא ידוע",
+ "zha_device_card": {
+ "device_name_placeholder": "שנה שם התקן"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "מאפיין",
+ "battery_device_warning": "יהיה עליך להעיר התקנים המופעלים באמצעות סוללה לפני שתתחיל בתהליך קביעת התצורה מחדש. יש לעיין במדריך למשתמש של ההתקן לקבלת הוראות להעיר את ההתקן.",
+ "bind_header": "קישור",
+ "button_hide": "הסתר פרטים",
+ "button_show": "הצג פרטים",
+ "cluster_header": "אשכול",
+ "configuration_complete": "קביעת התצורה הושלמה",
+ "configuration_failed": "קביעת התצורה מחדש של ההתקן נכשלה. ייתכן שמידע נוסף יהיה זמין ביומני הרישום.",
+ "configuring_alt": "הגדרת תצורה",
+ "heading": "קביעת תצורה מחדש של התקן",
+ "in_progress": "תצורת ההתקן נקבע, מחדש. פעולה זו עשויה להימשך זמן מה.",
+ "introduction": "קביעת תצורה מחדש של התקן ברשת Zigbee. השתמש בתכונה זו אם ההתקן שלך אינו פועל כראוי.",
+ "min_max_change": "מינימום/מקסימום/שינוי",
+ "reporting_header": "דיווח",
+ "run_in_background": "באפשרותך לסגור תיבת דו-שיח זו וקביעת התצורה מחדש תמשיך ברקע.",
+ "start_reconfiguration": "התחל קביעת תצורה מחדש"
+ }
+ },
+ "duration": {
+ "day": "{count, plural,\n one {יום}\n two {יומיים}\n other {{count} ימים}\n}",
+ "hour": "{count, plural,\n one {שעה}\n two {שעתיים}\n other {{count} שעות}\n}",
+ "minute": "{count, plural,\n one {דקה}\n other {{count} דקות}\n}",
+ "second": "{count, plural,\n one {שניה}\n other {{count} שניות}\n}",
+ "week": "{count, plural,\n one {שבוע}\n other {{count} שבועות}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "באפשרותך עדיין לערוך את תצורתך ב-YAML.",
+ "editor_not_available": "אין עורך חזותי זמין עבור הסוג ''{type}''.",
+ "editor_not_supported": "עורך חזותי אינו נתמך עבור תצורה זו",
+ "error_detected": "זוהו שגיאות תצורה",
+ "key_missing": "המפתח הנדרש ''{key}'' חסר.",
+ "key_not_expected": "המפתח ''{key}'' אינו צפוי או אינו נתמך על ידי העורך החזותי.",
+ "key_wrong_type": "הערך שסופק עבור ''{key}'' אינו נתמך על ידי העורך החזותי. אנו תומכים ב-({type_correct}) אך קיבלנו את ({type_wrong}).",
+ "no_state_array_support": "ערכי מצב מרובים אינם נתמכים בעורך חזותי",
+ "no_template_editor_support": "תבניות אינן נתמכות בעורך החזותי",
+ "no_type_provided": "לא סופק סוג."
+ },
+ "supervisor": {
+ "ask": "בקש עזרה",
+ "observer": "בדוק את המשקיף",
+ "reboot": "נסה אתחול מחדש של המחשב המארח",
+ "system_health": "בדוק את בריאות המערכת",
+ "title": "לא ניתן לטעון את לוח המפקח!",
+ "wait": "אם רק התחלת, ודא שנתת למפקח מספיק זמן להתחיל."
+ }
+ },
+ "login-form": {
+ "log_in": "התחבר",
+ "password": "סיסמה",
+ "remember": "זכור"
+ },
+ "notification_drawer": {
+ "click_to_configure": "לחץ על הלחצן כדי להגדיר {entity}",
+ "close": "סגור",
+ "dismiss_all": "שחרר הכל",
+ "empty": "אין התראות",
+ "title": "התראות"
+ },
+ "notification_toast": {
+ "connection_lost": "החיבור אבד. מתחבר מחדש…",
+ "dismiss": "בטל",
+ "integration_starting": "מפעיל את {integration}, לא הכל יהיה זמין עד לסיום.",
+ "service_call_failed": "נכשלה הקריאה לשירות {service}.",
+ "started": "Home Assistant אותחל!",
+ "starting": "Home Assistant באיתחול, לא הכל יהיה זמין עד שהאתחול יסתיים",
+ "triggered": "{name} הופעל",
+ "wrapping_up_startup": "סיום העליה, לא הכל יהיה זמין עד לסיום."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "חסרים אפשרויות תצורה? אפשר מצב מתקדם פועל",
+ "link_profile_page": "דף הפרופיל שלך"
+ },
+ "areas": {
+ "add_picture": "הוסף תמונה",
+ "assigned_to_area": "מוקצה לאזור זה",
+ "caption": "אזורים",
+ "data_table": {
+ "area": "אזור",
+ "devices": "התקנים",
+ "entities": "ישויות"
+ },
+ "delete": {
+ "confirmation_text": "כל ההתקנים באזור זה לא יהיו מוקצים.",
+ "confirmation_title": "האם בוודאות ברצונך למחוק אזור זה?"
+ },
+ "description": "קיבוץ התקנים וישויות לאזורים",
+ "edit_settings": "הגדרות אזור",
+ "editor": {
+ "area_id": "מזהה אזור",
+ "create": "צור",
+ "default_name": "אזור חדש",
+ "delete": "מחק",
+ "linked_entities_caption": "ישויות",
+ "name": "שם",
+ "name_required": "שם הוא חובה",
+ "no_linked_entities": "אין ישויות המקושרות לאזור זה.",
+ "unknown_error": "שגיאה לא ידועה",
+ "update": "עדכן"
+ },
+ "picker": {
+ "create_area": "צור אזור",
+ "header": "אזורים",
+ "integrations_page": "דף השילובים",
+ "introduction": "אזורים משמשים לארגון המיקום של ההתקנים. Home Assistant יעשה שימוש במידע זה בכדי לסייע לך בארגון הממשק, ההרשאות והשילובים שלך עם מערכות אחרות.",
+ "introduction2": "כדי למקם התקנים באזור, יש להשתמש בקישור שלהלן כדי לנווט לדף השילובים ולאחר מכן לחץ על שילוב מוגדר כדי להגיע לכרטיסי ההתקן.",
+ "no_areas": "נראה שאין לך אזורים עדיין!"
+ },
+ "targeting_area": "מיקוד לאזור זה"
+ },
+ "automation": {
+ "caption": "אוטומציות",
+ "description": "יצירת כללי התנהגות מותאמים אישית עבור הבית שלך",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "השתמש בשרטוט"
+ },
+ "header": "צור אוטומציה חדשה",
+ "how": "כיצד ברצונך ליצור את האוטומציה החדשה שלך?",
+ "start_empty": "התחל עם אוטומציה ריקה",
+ "start_empty_description": "יצירת אוטומציה חדשה מאפס",
+ "thingtalk": {
+ "create": "צור",
+ "header": "תאר את האוטומציה שברצונך ליצור",
+ "input_label": "מה האוטומציה הזו צריכה לעשות?",
+ "intro": "ואנחנו ננסה ליצור את זה בשבילך. לדוגמא: כבה את האורות כשאני עוזב."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "הוסף פעולה",
+ "delete": "מחיקה",
+ "delete_confirm": "האם בוודאות ברצונך למחוק זאת?",
+ "duplicate": "שיכפול",
+ "header": "פעולות",
+ "introduction": "הפעולות הן מה שHome Assistant יעשה כאשר אוטומציה מופעלת.",
+ "learn_more": "למד עוד על פעולות",
+ "name": "פעולה",
+ "type": {
+ "choose": {
+ "add_option": "הוסף אפשרות",
+ "conditions": "תנאים",
+ "default": "פעולות ברירת מחדל",
+ "label": "בחר",
+ "option": "אפשרות {number}",
+ "remove_option": "הסר אפשרות",
+ "sequence": "פעולות"
+ },
+ "condition": {
+ "label": "תנאי"
+ },
+ "delay": {
+ "delay": "משך",
+ "label": "המתנה שהזמן יעבור (עיכוב)"
+ },
+ "device_id": {
+ "action": "פעולה",
+ "extra_fields": {
+ "brightness_pct": "בהירות",
+ "code": "קוד",
+ "flash": "הבהוב",
+ "humidity": "לחות",
+ "message": "הודעה",
+ "mode": "מצב",
+ "position": "מיקום",
+ "title": "כותרת",
+ "value": "ערך"
+ },
+ "label": "התקן"
+ },
+ "event": {
+ "event": "אירוע",
+ "label": "ירה אירוע",
+ "service_data": "נתוני שירות"
+ },
+ "repeat": {
+ "label": "חזור",
+ "sequence": "פעולות",
+ "type": {
+ "count": {
+ "label": "ספירה"
+ },
+ "until": {
+ "conditions": "תנאיי עד ש",
+ "label": "עד ש"
+ },
+ "while": {
+ "conditions": "תנאיי כאשר",
+ "label": "כל עוד"
+ }
+ },
+ "type_select": "סוג חזרה"
+ },
+ "scene": {
+ "label": "הפעל סצנה"
+ },
+ "service": {
+ "label": "קריאה לשירות"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "המשך בפסק הזמן",
+ "label": "המתן לטריגר",
+ "timeout": "זמן קצוב (אופציונלי)"
+ },
+ "wait_template": {
+ "continue_timeout": "המשך בפסק הזמן",
+ "label": "המתנה לתבנית",
+ "timeout": "זמן קצוב (אופציונלי)",
+ "wait_template": "תבנית זמן"
+ }
+ },
+ "type_select": "סוג פעולה",
+ "unsupported_action": "אין תמיכה בעורך חזותי לפעולה: {action}"
+ },
+ "alias": "שם",
+ "blueprint": {
+ "blueprint_to_use": "שרטוט לשימוש",
+ "header": "שרטוט",
+ "no_blueprints": "אין לך שרטוטים",
+ "no_inputs": "לשרטוט הזה אין קלט."
+ },
+ "conditions": {
+ "add": "הוסף תנאי",
+ "delete": "מחיקה",
+ "delete_confirm": "האם בוודאות ברצונך למחוק זאת?",
+ "duplicate": "שיכפול",
+ "header": "תנאים",
+ "introduction": "התנאים הם אופציונליים וימנעו מהאוטומציה לפעול אלא אם כן כל התנאים מתקיימים.",
+ "learn_more": "למד עוד על תנאים",
+ "name": "תנאים",
+ "type": {
+ "and": {
+ "label": "וגם"
+ },
+ "device": {
+ "condition": "תנאי",
+ "extra_fields": {
+ "above": "מעל",
+ "below": "מתחת",
+ "for": "משך הזמן",
+ "hvac_mode": "מצב HVAC",
+ "preset_mode": "מצב מוגדר מראש"
+ },
+ "label": "התקן"
+ },
+ "not": {
+ "label": "לא"
+ },
+ "numeric_state": {
+ "above": "מעל",
+ "below": "מתחת",
+ "label": "מצב מספרי",
+ "value_template": "תבנית ערך (אופציונלי)"
+ },
+ "or": {
+ "label": "או"
+ },
+ "state": {
+ "label": "מצב",
+ "state": "מצב"
+ },
+ "sun": {
+ "after": "לאחר:",
+ "after_offset": "לאחר השקיעה (אופציונלי)",
+ "before": "לפני:",
+ "before_offset": "לפני השקיעה (אופציונלי)",
+ "label": "שמש",
+ "sunrise": "זריחה",
+ "sunset": "שקיעה"
+ },
+ "template": {
+ "label": "תבנית",
+ "value_template": "ערך תבנית"
+ },
+ "time": {
+ "after": "אחרי",
+ "before": "לפני",
+ "label": "זמן",
+ "type_input": "הערך של עוזר תאריך/שעה",
+ "type_value": "זמן קבוע",
+ "weekdays": {
+ "fri": "יום שישי",
+ "mon": "יום שני",
+ "sat": "יום שבת",
+ "sun": "יום ראשון",
+ "thu": "יום חמישי",
+ "tue": "יום שלישי",
+ "wed": "יום רביעי"
+ }
+ },
+ "trigger": {
+ "id": "מזהה טריגר",
+ "label": "טריגר",
+ "no_triggers": "אין טריגרים זמינים"
+ },
+ "zone": {
+ "entity": "ישות עם מיקום",
+ "label": "אזור",
+ "zone": "אזור"
+ }
+ },
+ "type_select": "סוג תנאי",
+ "unsupported_condition": "אין תמיכה בעורך חזותי בתנאי: {condition}"
+ },
+ "copy_to_clipboard": "העתק ללוח",
+ "default_name": "אוטומציה חדשה",
+ "description": {
+ "label": "תיאור",
+ "placeholder": "תיאור אופציונלי"
+ },
+ "edit_ui": "עריכה בעורך חזותי",
+ "edit_yaml": "עריכה ב-YAML",
+ "enable_disable": "הפעל / השבת אוטומציה",
+ "introduction": "השתמש באוטומציות כדי לעורר את ביתך לחיים.",
+ "load_error_not_editable": "רק אוטומציה ב automations.yaml ניתנים לעריכה.",
+ "load_error_unknown": "שגיאה בטעינת אוטומציה ({err_no}).",
+ "max": {
+ "parallel": "המספר המרבי של ריצות מקבילות",
+ "queued": "אורך התור"
+ },
+ "modes": {
+ "description": "המצב שולט במתרחש כאשר האוטומציה מופעלת בזמן שהפעולות עדיין פועלות מהטריגר הקודם. עיין ב {documentation_link} למידע נוסף.",
+ "documentation": "תיעוד אוטומציה",
+ "label": "מצב",
+ "parallel": "במקביל",
+ "queued": "בתור",
+ "restart": "הפעלה מחדש",
+ "single": "יחיד (ברירת מחדל)"
+ },
+ "move_down": "הזז למטה",
+ "move_up": "הזז למעלה",
+ "save": "שמור",
+ "show_trace": "הצג מעקב",
+ "triggers": {
+ "add": "הוספת טריגר",
+ "delete": "מחיקה",
+ "delete_confirm": "האם בוודאות ברצונך למחוק זאת?",
+ "duplicate": "שיכפול",
+ "edit_id": "עריכת מזהה גורם מפעיל",
+ "header": "טריגרים",
+ "id": "מזהה גורם מפעיל",
+ "introduction": "טריגרים הם מה שמתחיל כל אוטומציה. ניתן לציין מספר טריגרים עבור אותו כלל. לאחר הפעלת טריגר, Home Assistant יאמת את התנאים, אם ישנם, ויפעיל את הפעולה.",
+ "learn_more": "למד עוד על טריגרים",
+ "name": "טריגר",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "מעל",
+ "below": "מתחת",
+ "for": "משך (אופציונלי)",
+ "zone": "אזור"
+ },
+ "label": "התקן",
+ "trigger": "טריגר"
+ },
+ "event": {
+ "context_user_pick": "בחירת משתמש",
+ "context_user_picked": "שיגור אירוע של משתמש",
+ "context_users": "הגבל לאירועים שהופעלו על ידי",
+ "event_data": "נתוני אירוע",
+ "event_type": "סוג אירוע",
+ "label": "אירוע"
+ },
+ "geo_location": {
+ "enter": "כניסה",
+ "event": "אירוע:",
+ "label": "מיקום גיאוגרפי",
+ "leave": "יציאה",
+ "source": "מקור",
+ "zone": "אזור"
+ },
+ "homeassistant": {
+ "event": "אירוע:",
+ "label": "Home Assistant",
+ "shutdown": "כיבוי",
+ "start": "התחל"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Payload (אופציונלי)",
+ "topic": "נושא"
+ },
+ "numeric_state": {
+ "above": "מעל",
+ "below": "מתחת",
+ "label": "מצב מספרי",
+ "value_template": "תבנית ערך (אופציונלי)"
+ },
+ "state": {
+ "attribute": "תכונה (אופציונלי)",
+ "for": "עבור (אופציונלי)",
+ "from": "החל מ (אופציונלי)",
+ "label": "מצב",
+ "to": "אל (אופציונלי)"
+ },
+ "sun": {
+ "event": "אירוע:",
+ "label": "שמש",
+ "offset": "שקיעה (אופציונלי)",
+ "sunrise": "זריחה",
+ "sunset": "שקיעה"
+ },
+ "tag": {
+ "label": "תג"
+ },
+ "template": {
+ "label": "תבנית",
+ "value_template": "ערך תבנית"
+ },
+ "time": {
+ "at": "בזמן",
+ "label": "זמן",
+ "type_input": "הערך של עוזר תאריך/שעה",
+ "type_value": "זמן קבוע"
+ },
+ "time_pattern": {
+ "hours": "שעות",
+ "label": "תבנית זמן",
+ "minutes": "דקות",
+ "seconds": "שניות"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook ID"
+ },
+ "zone": {
+ "enter": "כניסה",
+ "entity": "ישות עם מיקום",
+ "event": "אירוע:",
+ "label": "אזור",
+ "leave": "יציאה",
+ "zone": "אזור"
+ }
+ },
+ "type_select": "סוג מפעיל",
+ "unsupported_platform": "אין תמיכה בעורך חזותי עבור פלטפורמה: {platform}"
+ },
+ "unsaved_confirm": "יש לך שינויים שלא נשמרו. אתה בטוח שאתה רוצה לעזוב?"
+ },
+ "picker": {
+ "add_automation": "הוסף אוטומציה",
+ "delete_automation": "מחק אוטומציה",
+ "delete_confirm": "האם בוודאות ברצונך למחוק אוטומציה זו?",
+ "dev_automation": "דבג אוטומציה",
+ "dev_only_editable": "רק אוטומציות שהוקצה להן מזהה ייחודי ניתנות לדיבוג.",
+ "duplicate": "שכפל",
+ "duplicate_automation": "שכפול אוטומציה",
+ "edit_automation": "ערוך אוטומציה",
+ "header": "עורך אוטומציה",
+ "headers": {
+ "name": "שם"
+ },
+ "introduction": "עורך אוטומציה מאפשר לך ליצור ולערוך אוטומציות. אנא עקוב אחר הקישור למטה וקרא את ההוראות כדי לוודא שהגדרת את ה - Home Assistant כהלכה.",
+ "learn_more": "למד עוד על אוטומציות",
+ "no_automations": "לא הצלחנו למצוא אוטומציות",
+ "only_editable": "רק אוטומציות שהוגדרו ב automations.yaml ניתנות לעריכה.",
+ "pick_automation": "בחר אוטומציה לעריכה",
+ "show_info_automation": "הצג מידע על אוטומציה"
+ },
+ "thingtalk": {
+ "create": "צור אוטומציה",
+ "link_devices": {
+ "ambiguous_entities": "התקן אחד או יותר כולל יותר מישות תואמת אחת, נא בחר את הישות שבה ברצונך להשתמש.",
+ "header": "נהדר! עכשיו אנחנו צריכים לקשר כמה התקנים",
+ "unknown_placeholder": "לא ידוע"
+ },
+ "task_selection": {
+ "error_empty": "הזן פקודה או הקש על דלג.",
+ "error_unsupported": "לא יכולנו ליצור אוטומציה לזה (עדיין?).",
+ "for_example": "לדוגמה:",
+ "header": "צור אוטומציה חדשה",
+ "introduction": "יש להקליד להלן את מה שאוטומציה זו צריכה לעשות, וננסה להמיר אותה לאוטומציה של Home Assistant.",
+ "language_note": "הערה: רק אנגלית נתמכת לעת עתה."
+ }
+ },
+ "trace": {
+ "download_trace": "הורדת מעקב",
+ "edit_automation": "עריכת אוטומציה",
+ "newer_trace": "מעקב חדש יותר",
+ "older_trace": "מעקב ישן יותר",
+ "refresh": "רענן"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "פורומים קהילתיים",
+ "error_no_url": "אנא הזן כתובת URL של השרטוט",
+ "file_name": "נתיב שרטוט",
+ "header": "יבוא שרטוט",
+ "import_btn": "תצוגה מקדימה של שרטוט",
+ "import_header": "שרטוט ''{name}''",
+ "import_introduction_link": "באפשרותך לייבא שרטוטים של משתמשים אחרים מ- Github ומ {community_link}. הזן את כתובת ה- URL של השרטוט.",
+ "importing": "טוען שרטוט...",
+ "raw_blueprint": "תוכן שרטוט",
+ "save_btn": "יבוא שרטוט",
+ "saving": "מייבא תכנית שרטוט…",
+ "unsupported_blueprint": "שרטוט זה לא נתמך",
+ "url": "כתובת URL של השרטוט"
+ },
+ "caption": "שרטוטים",
+ "description": "ניהול שרטוטים",
+ "overview": {
+ "add_blueprint": "יבוא שרטוט",
+ "confirm_delete_header": "למחוק את השרטוט הזה?",
+ "confirm_delete_text": "האם בוודאות ברצונך למחוק שרטוט זה?",
+ "create_automation": "צור אוטומציה",
+ "create_script": "צור סקריפט",
+ "delete_blueprint": "מחק שרטוט",
+ "discover_more": "גלה שרטוטים נוספים",
+ "header": "עורך השרטוטים",
+ "headers": {
+ "domain": "דומיין",
+ "file_name": "שם קובץ",
+ "name": "שם",
+ "type": "סוּג"
+ },
+ "introduction": "התצורה של שרטוטים מאפשרת לך לייבא ולנהל את השרטוטים שלך.",
+ "learn_more": "למד עוד אודות שימוש בשרטוטים",
+ "share_blueprint": "שתף שרטוט",
+ "share_blueprint_no_url": "אין אפשרות לשתף שרטוט: אין כתובת URL",
+ "types": {
+ "automation": "אוטומציה",
+ "script": "סקריפט"
+ },
+ "use_blueprint": "צור אוטומציה"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "תיעוד תצורה",
+ "disable": "מושבת",
+ "enable": "מאופשר",
+ "enable_ha_skill": "הפעל את מיומנות Home Assistant עבור אלקסה",
+ "enable_state_reporting": "הפוך דיווח מצב לזמין",
+ "info": "עם השילוב של Alexa עבור Home Assistant Cloud, ניתן לשלוט בכל מכשירי Home Assistant שלך באמצעות כל התקן המותאם לשימוש ב-Alexa.",
+ "info_state_reporting": "אם תאפשר דיווח על מצב, Home Assistant ישלח כל שינוי מצב של ישויות חשופות לאמזון. זה יאפשר לך לראות תמיד את המצב העדכני באפליקציית Alexa ולהשתמש בשינויי המצב ליצירת שגרות.",
+ "manage_entities": "נהל ישויות",
+ "state_reporting_error": "אין אפשרות לעשות {enable_disable} לדיווח מצב.",
+ "sync_entities": "סנכרן ישויות לאמזון",
+ "sync_entities_error": "סינכרון ישויות נכשל:",
+ "title": "Alexa"
+ },
+ "connected": "מחובר",
+ "connecting": "מתחבר…",
+ "connection_status": "מצב חיבור ענן",
+ "fetching_subscription": "מאחזר מנוי…",
+ "google": {
+ "config_documentation": "תיעוד תצורה",
+ "devices_pin": "PIN של התקני אבטחה",
+ "enable_ha_skill": "הפעלת מיומנות הענן של Home Assistant עבור Google Assistant",
+ "enable_state_reporting": "אפשר דיווח מצב",
+ "enter_pin_error": "אין אפשרות לאחסן PIN:",
+ "enter_pin_hint": "הזן קוד PIN לשימוש בהתקני אבטחה",
+ "enter_pin_info": "נא להזין מספר PIN כדי לקיים שילוב עם התקני אבטחה. התקני אבטחה הם דלתות, דלתות מוסך ומנעולים. תתבקש לומר/להזין מספר זיהוי אישי זה בעת שילוב עם התקנים כאלה באמצעות Google Assistant.",
+ "info": "עם שילוב מסייע Google עבור ענן Home Assistant ניתן לשלוט בכל התקני Home Assistant שלך באמצעות כל התקן המקושר למסייע של Google.",
+ "info_state_reporting": "אם תפעיל דיווח מצב, Home Assistant ישלח את כל שינויי המצבים של ישויות חשופות ל-Google. זה מאפשר לך תמיד לראות את המצבים האחרונים באפליקציה של גוגל.",
+ "manage_entities": "נהל ישויות",
+ "not_configured_text": "לפני שתוכל להשתמש ב- Google Assistant, עליך להפעיל את Home Assistant Cloud skill עבור Google Assistant באפליקציית Google Home.",
+ "not_configured_title": "Google Assistant אינו מופעל",
+ "security_devices": "התקני אבטחה",
+ "sync_entities": "סנכרן ישויות לגוגל",
+ "sync_entities_404_message": "כישלון בסינכרון היישויות שלך ל-Google, בקש מ Google 'Hey Google, sync my devices' כדי לסנכרן את הישויות שלך.",
+ "title": "Google Assistant"
+ },
+ "integrations": "שילובים",
+ "integrations_introduction": "שילובים עבור ענן Home Assistant מאפשרים לך להתחבר לשירותים בענן מבלי שתצטרך לחשוף את המופע של Home Assistant שלך באופן ציבורי באינטרנט.",
+ "integrations_introduction2": "בדוק באתר האינטרנט ",
+ "integrations_link_all_features": " כל התכונות הזמינות",
+ "manage_account": "נהל חשבון",
+ "nabu_casa_account": "חשבון נאבו קאסה",
+ "not_connected": "לא מחובר",
+ "remote": {
+ "access_is_being_prepared": "מתבצעת הכנה של שליטה מרחוק. נודיע לך כשזה יהיה מוכן.",
+ "certificate_info": "פרטי התעודה",
+ "connected": "מחובר",
+ "info": "ענן Home Assistant מספק חיבור מרוחק מאובטח למערכת שלך כשאתה רחוק מהבית.",
+ "instance_is_available": "המופע שלך זמין ב",
+ "instance_will_be_available": "המופע שלך יהיה זמין ב",
+ "link_learn_how_it_works": "למד כיצד זה עובד",
+ "not_connected": "לא מחובר",
+ "reconnecting": "לא מחובר. מנסה להתחבר מחדש.",
+ "remote_enabled": {
+ "caption": "התחבר אוטומטית",
+ "description": "אפשר אפשרות זו כדי לוודא שמופע ה-Home Assistant שלך תמיד נגיש מרחוק."
+ },
+ "title": "שליטה מרחוק"
+ },
+ "sign_out": "התנתק",
+ "thank_you_note": "תודה לך על היותך חלק בענן Home Assistant. בזכות אנשים כמוך אנחנו מסוגלים לייצר חווית בית חכם עבור כולם. תודה!",
+ "tts": {
+ "default_language": "שפת ברירת מחדל לשימוש",
+ "dialog": {
+ "create_automation": "יצירת אוטומציה",
+ "example_message": "שלום {name} , אתה יכול לנגן כל טקסט בכל נגן מדיה נתמך!",
+ "header": "נסה טקסט לדיבור",
+ "play": "הפעל",
+ "target": "יעד",
+ "target_browser": "סייר"
+ },
+ "female": "נקבה",
+ "info": "הבא אישיות לביתך על-ידי כך שהוא ידבר אליך באמצעות שירותי המרת הטקסט לדיבור שלנו. באפשרותך להשתמש באפשרות זו באוטומציות ובקבצי סקריפט באמצעות שירות {service}.",
+ "male": "זכר",
+ "title": "טקסט לדיבור",
+ "try": "נסה"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "השבתת הwebhook נכשלה:",
+ "info": "לכל דבר שתצורתו נקבעה כמופעלת על-ידי webhook יכולה להינתן כתובת URL ציבורית כדי לאפשר לך לשלוח נתונים בחזרה ל Home Assistant מכל מקום, מבלי לחשוף את המערכת שלך לאינטרנט.",
+ "link_learn_more": "למד עוד אודות יצירת אוטומציות המונעות על-ידי webhook.",
+ "loading": "טוען…",
+ "manage": "ניהול",
+ "no_hooks_yet": "נראה שעדיין אין לך webhooks. תחילת העבודה על ידי קביעת תצורה של ",
+ "no_hooks_yet2": " או על ידי יצירת ",
+ "no_hooks_yet_link_automation": "אוטומצית webhook",
+ "no_hooks_yet_link_integration": "שילוב מבוסס webhook",
+ "title": "Webhooks"
+ }
+ },
+ "alexa": {
+ "banner": "עריכת היישויות החשופות באמצעות ממשק משתמש זה אינה זמינה מאחר שקבעת את תצורת מסנני הישויות ב configuration.yaml.",
+ "dont_expose_entity": "אל תחשוף ישות",
+ "expose": "חשוף בפני אלכסה",
+ "expose_entity": "חשוף ישות",
+ "exposed": "{selected} נחשף",
+ "exposed_entities": "ישויות חשופות",
+ "follow_domain": "עקוב אחר התחום",
+ "manage_domains": "נהל תחומים",
+ "not_exposed": "{selected} לא חשוף",
+ "not_exposed_entities": "ישויות לא חשופות",
+ "title": "Alexa"
+ },
+ "description_features": "שליטה על הבית מרחוק, ושילוב עם Alexa ו-Google Assistant.",
+ "description_login": "מחובר בתור {email} מה",
+ "description_not_login": "לא מחובר",
+ "dialog_certificate": {
+ "certificate_expiration_date": "תאריך תפוגה של התעודה:",
+ "certificate_information": "פרטי התעודה",
+ "close": "סגור",
+ "fingerprint": "טביעת אצבע של התעודה:",
+ "will_be_auto_renewed": "תתחדש באופן אוטומטי"
+ },
+ "dialog_cloudhook": {
+ "available_at": "ה-webhook זמין בכתובת הבאה:",
+ "close": "סגור",
+ "confirm_disable": "אתה בןןדאות ברצונך להשבית את ה-webhook?",
+ "copied_to_clipboard": "הועתק ללוח",
+ "info_disable_webhook": "אם אינך מעוניין עוד להשתמש ב-webhook זה, באפשרותך",
+ "link_disable_webhook": "השבת אותו",
+ "managed_by_integration": "webhook זה מנוהל על ידי שילוב ולא ניתן להשבית.",
+ "view_documentation": "הצג תיעוד",
+ "webhook_for": "Webhook עבור {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "בדוק את הדואר האלקטרוני שלך לקבלת הוראות כיצד לאפס את סיסמתך.",
+ "email": "דוא\"ל",
+ "email_error_msg": "דואר אלקטרוני לא חוקי",
+ "instructions": "הזן את כתובת הדוא\"ל שלך ואנו נשלח לך קישור כדי לאפס את הסיסמה שלך.",
+ "send_reset_email": "שלח אימייל לאיפוס",
+ "subtitle": "שכחתי את הסיסמה שלך",
+ "title": "שכחת סיסמא"
+ },
+ "google": {
+ "banner": "עריכת היישויות החשופות באמצעות ממשק משתמש זה אינה זמינה מאחר שקבעת את תצורת מסנני הישויות ב configuration.yaml.",
+ "disable_2FA": "השבת אימות דו-שלבי",
+ "dont_expose_entity": "אל תחשוף ישות",
+ "expose": "חשוף בפני Google Assistant",
+ "expose_entity": "חשוף ישות",
+ "exposed": "{selected} חשוף",
+ "exposed_entities": "ישויות חשופות",
+ "follow_domain": "עקוב אחר התחום",
+ "manage_domains": "נהל תחומים",
+ "not_exposed": "{selected} לא חשוף",
+ "not_exposed_entities": "ישויות לא חשופות",
+ "sync_to_google": "מסנכרן שינויים ל-Google.",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "עליך לאשר את הדוא\"ל שלך לפני שתתחבר.",
+ "alert_password_change_required": "עליך לשנות את הסיסמה שלך לפני שתתחבר.",
+ "dismiss": "בטל",
+ "email": "דוא\"ל",
+ "email_error_msg": "דואר אלקטרוני לא חוקי",
+ "forgot_password": "שכחת סיסמה?",
+ "introduction": "שירות Home Assistant Cloud מספק לך חיבור מרוחק מאובטח למערכת שלך כשאתה מחוץ לבית. הוא גם מאפשר לך להתחבר לשירותים הזמינים בענן בלבד: Alexa ו-Google Assistant.",
+ "introduction2": "שירות זה מנוהל על ידי השותף שלנו ",
+ "introduction2a": ", חברה שהוקמה על ידי מייסדי Home Assistant.",
+ "introduction3": "ענן Home Assistant הוא שירות מנוי עם ניסיון חינם למשך חודש. אין צורך באמצעי תשלום.",
+ "learn_more_link": "למד עוד על ענן Home Assistant",
+ "password": "סיסמה",
+ "password_error_msg": "סיסמאות הן לפחות 8 תווים",
+ "sign_in": "היכנס",
+ "start_trial": "התחלת תקופת ניסיון בחינם למשך חודש",
+ "title": "כניסה לענן",
+ "trial_info": "אין צורך באמצעי תשלום"
+ },
+ "register": {
+ "account_created": "החשבון נוצר! בדוק את הדואר האלקטרוני שלך לקבלת הוראות כיצד להפעיל את חשבונך.",
+ "create_account": "צור חשבון",
+ "email_address": "כתובת דוא\"ל",
+ "email_error_msg": "דוא\"ל לא חוקי",
+ "feature_amazon_alexa": "שילוב עם Amazon Alexa",
+ "feature_google_home": "שילוב עם Google Assistant",
+ "feature_remote_control": "שליטה ב Home Assistant הרחק מהבית",
+ "feature_webhook_apps": "שילוב קל עם יישומים מבוססי Webhook כגון OwnTracks",
+ "headline": "התחל את תקופת הניסיון בחינם",
+ "information": "צור חשבון כדי להתחיל את גירסת הניסיון של ענן Home Assistant לחודש אחד ללא תשלום. אין צורך באמצעי תשלום.",
+ "information2": "הניסיון ייתן לך גישה לכל היתרונות של ענן Home Assistant, כולל:",
+ "information3": "שירות זה מנוהל על ידי השותף שלנו ",
+ "information3a": ", חברה שהוקמה על ידי מייסדי Home Assistant.",
+ "information4": "על-ידי רישום חשבון אתה מסכים לתנאים ולהתניות הבאות.",
+ "link_privacy_policy": "מדיניות פרטיות",
+ "link_terms_conditions": "תנאי שימוש",
+ "password": "סיסמה",
+ "password_error_msg": "סיסמאות חייבות לפחות 8 תווים",
+ "resend_confirm_email": "שלח מחדש דוא\"ל אימות",
+ "start_trial": "התחל את תקופת הניסיון",
+ "title": "צור חשבון"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "יש לך שינויים שלא נשמרו. אתה בטוח שאתה רוצה לצאת?"
+ },
+ "learn_more": "למד עוד"
+ },
+ "core": {
+ "caption": "כללי",
+ "description": "מיקום, רשת וניתוח",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "מטבע",
+ "edit_requires_storage": "העורך מושבת משום שהתצורה מאוחסנת ב-configuration.yaml.",
+ "elevation": "גובה",
+ "elevation_meters": "מטר",
+ "external_url": "כתובת URL חיצונית",
+ "find_currency_value": "מצא את הערך שלך",
+ "imperial_example": "פרנהייט, פאונד",
+ "internal_url": "כתובת URL פנימית",
+ "latitude": "קו רוחב",
+ "location_name": "שם ההתקנה של הבית שלך",
+ "longitude": "קו אורך",
+ "metric_example": "צלזיוס, ק\"ג",
+ "save_button": "שמור",
+ "time_zone": "איזור זמן",
+ "unit_system": "יחידת מידה",
+ "unit_system_imperial": "אימפריאלי",
+ "unit_system_metric": "מטרי"
+ },
+ "header": "תצורה כללית",
+ "introduction": "ניהול המיקום, הרשת והניתוח שלך."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "התכונות הבאות מוגדרות כבר ב-customize.yaml",
+ "attributes_not_set": "התכונות הבאות לא הוגדרו. הגדר אותם אם תרצה.",
+ "attributes_outside": "התכונות הבאות מותאמות אישית מחוץ ל-customize.yaml",
+ "attributes_override": "ניתן לדרוס אותם כמובן.",
+ "attributes_set": "התכונות הבאות של הישות מוגדרות באופן תכנותי.",
+ "caption": "התאמות אישיות",
+ "description": "התאם אישית את הישויות שלך",
+ "different_include": "יתכן דרך דומיין, גלובלי או כלול אחר.",
+ "pick_attribute": "בחר תכונה לדריסה",
+ "picker": {
+ "documentation": "תיעוד התאמה אישית",
+ "header": "התאמות אישיות",
+ "introduction": "כוונן תכונות לפי ישות. התאמות אישיות שנוספו/נערכו ייכנסו לתוקף באופן מיידי. התאמות אישיות שהוסרו ייכנסו לתוקף כאשר הישות תעודכן."
+ },
+ "warning": {
+ "include_link": "את customize.yaml באופן תקין",
+ "include_sentence": "נראה כי configuration.yaml אינו תקין",
+ "not_applied": "שינויים שבוצעו כאן כתובים בו, אך לא יחולו לאחר טעינה מחדש של תצורה אלא אם הכלל נמצא במקומו."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "ניהול אוטומציות, סצנות, סקריפטים ומסייעים",
+ "title": "אוטומציות וסצנות"
+ },
+ "blueprints": {
+ "description": "אוטומציות וסקריפטים שהוכנו מראש על ידי הקהילה",
+ "title": "שרטוטים"
+ },
+ "companion": {
+ "description": "מיקום והתראות",
+ "title": "יישום נלווה"
+ },
+ "dashboards": {
+ "description": "יצירת ערכות כרטיסים מותאמות אישית כדי לשלוט בביתך",
+ "title": "לוחות בקרה"
+ },
+ "devices": {
+ "description": "אינטגרציות, התקנים, ישויות ואזורים",
+ "title": "התקנים ושירותים"
+ },
+ "energy": {
+ "description": "ניטור ייצור האנרגיה וצריכת האנרגיה שלך",
+ "title": "אנרגיה"
+ },
+ "people": {
+ "description": "נהל את האנשים והאזורים ש-Home Assistant עוקב אחריהם",
+ "title": "אנשים ואזורים"
+ },
+ "settings": {
+ "description": "הגדרות בסיסיות, פקדי שרת, יומני רישום ומידע",
+ "title": "הגדרות"
+ },
+ "supervisor": {
+ "description": "יצירת גיבויים, בדיקת יומני רישום או אתחול מחדש של המערכת",
+ "title": "הרחבות, גיבויים ומפקח"
+ },
+ "tags": {
+ "description": "אוטומציות מופעלות כאשר תג NFC, קוד QR וכדו' נסרקים",
+ "title": "תגים"
+ }
+ },
+ "devices": {
+ "add_prompt": "אף {name} לא נוסף באמצעות התקן זה. ניתן להוסיף אחד על ידי לחיצה על כפתור + למעלה.",
+ "automation": {
+ "actions": {
+ "caption": "כאשר משהו מופעל…",
+ "no_actions": "אין פעולות",
+ "unknown_action": "פעולה לא ידועה"
+ },
+ "automations": "אוטומציות",
+ "conditions": {
+ "caption": "בצע משהו רק אם…",
+ "no_conditions": "ללא תנאים",
+ "unknown_condition": "תנאי לא ידוע"
+ },
+ "create": "יצירת אוטומציה באמצעות התקן",
+ "create_disable": "non posso creare automazioni condispositivi disabilitati",
+ "no_automations": "אין אוטומציות",
+ "no_device_automations": "אין אוטומציות זמינות עבור התקן זה.",
+ "triggers": {
+ "caption": "לעשות משהו כש...",
+ "no_triggers": "אין טריגרים",
+ "unknown_trigger": "טריגר לא ידוע"
+ },
+ "unknown_automation": "אוטומציה לא ידועה"
+ },
+ "cant_edit": "באפשרותך לערוך פריטים שנוצרו בממשק המשתמש בלבד.",
+ "caption": "התקנים",
+ "confirm_delete": "האם בוודאות ברצונך למחוק התקן זה?",
+ "confirm_disable_config_entry": "אין התקנים נוספים עבור ערך התצורה {entry_name} , האם ברצונך להשבית את ערך התצורה?",
+ "confirm_rename_entity_ids": "האם ברצונך גם לשנות את שמות מזהי הישויות של הישויות שלך?",
+ "confirm_rename_entity_ids_warning": "שינוי זה לא ישפיע על התצורה (כמו אוטומציות, קבצי סקריפט, סצנות, Lovelace) המשתמשת כעת בישויות אלה! יהיה עליך לעדכן אותן בעצמך כדי להשתמש במזהים של הישויות החדשות.",
+ "data_table": {
+ "area": "אזור",
+ "battery": "סוללה",
+ "device": "התקן",
+ "integration": "שילוב",
+ "manufacturer": "יצרן",
+ "model": "מודל",
+ "no_devices": "אין התקנים",
+ "no_integration": "אין שילוב"
+ },
+ "delete": "מחיקה",
+ "description": "ניהול התקנים שתצורתם נקבעה",
+ "device_info": "פרטי התקן",
+ "device_not_found": "ההתקן לא נמצא.",
+ "disabled": "מושבת",
+ "disabled_by": {
+ "config_entry": "ערך תצורה",
+ "integration": "שילוב",
+ "user": "משתמש"
+ },
+ "download_diagnostics": "הורד אבחון",
+ "edit_settings": "עריכת הגדרות",
+ "enabled_cause": "המכשיר מושבת על ידי {cause} .",
+ "enabled_description": "מכשירים מושבתים לא יוצגו והישויות השייכות למכשיר יושבתו ולא יתווספו ל- Home Assistant.",
+ "enabled_label": "אפשר התקן",
+ "entities": {
+ "add_entities_lovelace": "הוספה לממשק Lovelace",
+ "config": "תצורה",
+ "control": "פקדים",
+ "diagnostic": "אבחון",
+ "disabled_entities": "+{count, plural,\n one {ישות אחת לא זמינה}\n other {{count} ישויות לא זמינות}\n}",
+ "entities": "ישויות",
+ "hide_disabled": "הסתרת מושבתים",
+ "none": "למכשיר זה אין ישויות",
+ "sensor": "חיישנים",
+ "state": "מצב"
+ },
+ "name": "שם",
+ "no_devices": "אין התקנים",
+ "open_configuration_url_device": "ביקור בהתקן",
+ "open_configuration_url_service": "ביקור בשירות",
+ "picker": {
+ "filter": {
+ "filter": "מסנן",
+ "hidden_devices": "{number, plural,\n one {התקן אחד מוסתר}\n other {{number} התקנים מוסתרים}\n}",
+ "show_all": "הצג הכל",
+ "show_disabled": "הצגת התקנים לא זמינים"
+ },
+ "search": "חיפוש התקנים"
+ },
+ "scene": {
+ "create": "צור סצנה עם ההתקן",
+ "create_disable": "אין אפשרות ליצור סצנה עם התקן לא זמין",
+ "no_scenes": "אין סצנות",
+ "scenes": "סצנות"
+ },
+ "scenes": "סצנות",
+ "script": {
+ "create": "יצירת סקריפט עם התקן",
+ "create_disable": "לא ניתן ליצור סקריפט עם מכשיר מושבת",
+ "no_scripts": "אין סקריפטים",
+ "scripts": "סקריפטים"
+ },
+ "scripts": "סקריפטים",
+ "unknown_error": "שגיאה לא ידועה",
+ "unnamed_device": "התקן ללא שם",
+ "update": "עדכון",
+ "update_device_error": "עדכון ההתקן נכשל"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "הוספת מערכת סוללות",
+ "battery_systems": "מערכות סוללות",
+ "dialog": {
+ "energy_into_battery": "אנרגיה נכנסה לסוללה (קוט\"ש)",
+ "energy_out_of_battery": "אנרגיה יוצאת מהסוללה (קוט\"ש)",
+ "header": "קביעת תצורה של מערכת סוללות"
+ },
+ "learn_more": "מידע נוסף כיצד להתחיל.",
+ "sub": "אם יש לך מערכת סוללות, באפשרותך להגדיר אותה כך שתנטר את כמות האנרגיה שאוחסנה ונעשה בה שימוש מהסוללה.",
+ "title": "אחסון סוללות ביתי"
+ },
+ "caption": "אנרגיה",
+ "delete_integration": "האם בוודאות ברצונך למחוק שילוב זה? היא תסיר את הישויות שהיא מספקת",
+ "delete_source": "האם בוודאות ברצונך למחוק מקור זה?",
+ "description": "ניטור ייצור האנרגיה וצריכת האנרגיה שלך",
+ "device_consumption": {
+ "add_device": "הוספת התקן",
+ "add_stat": "בחירת ישות למעקב אחר אנרגיה של",
+ "devices": "התקנים",
+ "dialog": {
+ "device_consumption_energy": "אנרגיית צריכת ההתקן (קוט\"ש)",
+ "header": "הוספת התקן",
+ "selected_stat_intro": "יש לבחור את הישות המייצגת את צריכת האנרגיה של ההתקן."
+ },
+ "learn_more": "מידע נוסף כיצד להתחיל.",
+ "selected_stat": "מעקב אחר אנרגיה עבור",
+ "sub": "מעקב אחר צריכת האנרגיה של התקנים בודדים מאפשר ל-Home Assistant לפרק את צריכת האנרגיה שלך באמצעות התקן.",
+ "title": "התקנים בודדים"
+ },
+ "gas": {
+ "add_gas_source": "הוספת מקור גז",
+ "dialog": {
+ "cost_entity": "שימוש בישות עם מחיר נוכחי",
+ "cost_entity_input": "ישות עם המחיר הנוכחי לכל {unit}",
+ "cost_number": "שימוש במחיר סטטי",
+ "cost_number_input": "מחיר לכל {unit}",
+ "cost_number_suffix": "{currency}/מ\"ק",
+ "cost_para": "בחר כיצד Home Assistant צריך לעקוב אחר העלויות של האנרגיה הנצרכת.",
+ "cost_stat": "שימוש בישות העוקבת אחר העלויות הכוללות",
+ "cost_stat_input": "סך כל ישות העלויות",
+ "energy_stat": "אנרגיה נצרכת (מ\"ק)",
+ "gas_usage": "שימוש בגז",
+ "header": "קביעת תצורה של צריכת גז",
+ "m3_or_kWh": "ft³, m³, Wh, קוט\"ש או MWh",
+ "no_cost": "אל תעקוב אחר עלויות",
+ "paragraph": "צריכת גז היא נפח הגז שזורם לביתך."
+ },
+ "gas_consumption": "צריכת גז",
+ "learn_more": "מידע נוסף כיצד להתחיל.",
+ "sub": "אפשר ל-Home Assistant לפקח על צריכת הגז שלך.",
+ "title": "צריכת גז"
+ },
+ "grid": {
+ "add_co2_signal": "הוסף שילוב אות CO2",
+ "add_consumption": "הוספת צריכה",
+ "add_return": "הוספת החזרה",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "שימוש בישות עם מחיר נוכחי",
+ "cost_entity_input": "ישות עם המחיר הנוכחי",
+ "cost_number": "שימוש במחיר סטטי",
+ "cost_number_input": "מחיר לקוט\"ש",
+ "cost_number_suffix": "{currency}/קוט\"ש",
+ "cost_para": "בחר כיצד Home Assistant צריך לעקוב אחר העלויות של האנרגיה הנצרכת.",
+ "cost_stat": "שימוש בישות העוקבת אחר העלויות הכוללות",
+ "cost_stat_input": "סך כל ישות העלויות",
+ "energy_stat": "אנרגיה נצרכת (קוט\"ש)",
+ "header": "קביעת תצורה של צריכת רשת",
+ "no_cost": "אל תעקוב אחר עלויות",
+ "paragraph": "צריכת רשת היא האנרגיה הזורמת מרשת האנרגיה לביתך."
+ },
+ "to": {
+ "cost_entity": "שימוש בישות עם תעריף נוכחי",
+ "cost_entity_input": "ישות עם התעריף הנוכחי",
+ "cost_number": "שימוש בקצב סטטי",
+ "cost_number_input": "תעריף לקוט\"ש",
+ "cost_number_suffix": "{currency}/קוט\"ש",
+ "cost_para": "האם מחזירים לך כסף כאשר חוזרת אנרגיה לרשת?",
+ "cost_stat": "שימוש בישות העוקבת אחר סך כל הכסף שהתקבל",
+ "cost_stat_input": "סך כל ישות הפיצויים",
+ "energy_stat": "אנרגיה שהוחזרה לרשת (קוט\"ש)",
+ "header": "קביעת תצורה של ייצור רשת",
+ "no_cost": "לא מחזירים לי כסף",
+ "paragraph": "ייצור רשת הוא האנרגיה הזורמת מהלוחות הסולאריים שלך לרשת."
+ }
+ },
+ "grid_carbon_footprint": "טביעת רגל פחמנית של רשת",
+ "grid_consumption": "צריכת רשת",
+ "learn_more": "מידע נוסף כיצד להתחיל.",
+ "return_to_grid": "חוזר לרשת",
+ "sub": "הגדרת כמות האנרגיה הנצרכת מהרשת, וואם יש ייצור אנרגיה, להחזיר לרשת. הדבר מאפשר ל-Home Assistant לעקוב אחר כל צריכת האנרגיה הביתית שלך.",
+ "title": "רשת חשמל"
+ },
+ "new_device_info": "לאחר הגדרת התקן חדש, ייתכן שיחלפו עד שעתיים עד שנתונים חדשים יגיעו ללוח המחוונים של האנרגיה שלך.",
+ "solar": {
+ "add_solar_production": "הוספת ייצור סולארי",
+ "dialog": {
+ "add_forecast": "הוספת תחזית",
+ "dont_forecast_production": "אל תחזה ייצור",
+ "forecast_production": "תחזית ייצור",
+ "header": "קביעת תצורה של פאנלים סולאריים",
+ "solar_production_energy": "אנרגיית ייצור סולארית (קוט\"ש)",
+ "solar_production_forecast": "תחזית ייצור סולארי",
+ "solar_production_forecast_description": "הוספת מידע אודות תחזית הייצור הסולארי תאפשר לך לראות במהירות את הייצור הצפוי שלך להיום."
+ },
+ "learn_more": "מידע נוסף כיצד להתחיל.",
+ "solar_production": "ייצור סולארי",
+ "stat_predicted_production": "חיזוי ייצור האנרגיה הסולארית שלך",
+ "stat_production": "ייצור האנרגיה הסולארית שלך",
+ "stat_return_to_grid": "אנרגיה סולארית חזרה לרשת",
+ "sub": "לתת ל-Home Assistant לפקח על הפאנלים הסולאריים שלך ולתת לך תובנות על הביצועים שלהם.",
+ "title": "פאנלים סולאריים"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "לישויות הבאות יש מצב שלילי בעוד שצפוי מצב חיובי:",
+ "title": "לישות יש מצב שלילי"
+ },
+ "entity_not_defined": {
+ "description": "בדיקת השילוב או התצורה שלך המסופקת:",
+ "title": "ישות לא מוגדרת"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "ליישויות הבאות יש מצב מסיווג 'מדידה' אך 'last_reset' עבורן חסר:",
+ "title": "איפוס אחרון חסר"
+ },
+ "entity_state_non_numeric": {
+ "description": "לישויות הבאות יש מצב שלא ניתן לנתח כמספר:",
+ "title": "לישות יש מצב לא מספרי"
+ },
+ "entity_unavailable": {
+ "description": "המצב של ישויות שתצורתן נקבעה אינו זמין כעת:",
+ "title": "הישות אינה זמינה"
+ },
+ "entity_unexpected_device_class": {
+ "description": "לישויות הבאות אין את מחלקת ההתקן הצפויה:",
+ "title": "מחלקת התקן לא צפויה"
+ },
+ "entity_unexpected_state_class": {
+ "description": "ליישויות הבאות אין מצב מסיווג צפוי:",
+ "title": "מצב מסיווג לא צפוי"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "ליישויות הבאות אין את מצב הסיווג הצפוי 'total_increasing'",
+ "title": "מצב מסיווג לא צפוי"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "לישויות הבאות אין את יחידות המידה הצפויות 'Wh', 'קוט\"ש' או 'MWh':",
+ "title": "יחידת מדידה בלתי צפויה"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "לישויות הבאות אין את יחידות המידה הצפויות ''{currency}/קוט\"ש'', ''{currency}/Wh'' או ''{currency}/MWh'':",
+ "title": "יחידת מדידה בלתי צפויה"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "לישויות הבאות אין את יחידות המדידה הצפויות 'Wh', 'קוט\"ש' או 'MWh' עבור חיישן אנרגיה או 'm³' או 'ft³' עבור חיישן גז:",
+ "title": "יחידת מדידה בלתי צפויה"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "לישויות הבאות אין את יחידות המידה הצפויות ''{currency}/קוט\"ש'', ''{currency}/Wh'', '' {currency}/MWh'', ''{currency}/m³'' או ''{currency}/ft³'':",
+ "title": "יחידת מדידה בלתי צפויה"
+ },
+ "recorder_untracked": {
+ "description": "תצורת המקליט נקבעה ללא הכללת ישויות שתצורתן נקבעה:",
+ "title": "ישות שלא מבצעת מעקב"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "ישויות",
+ "description": "ניהול ישויות מוכרות",
+ "picker": {
+ "disable_selected": {
+ "button": "השבת מסומנים",
+ "confirm_text": "ישויות מושבתות לא יתווספו ל-Home Assistant.",
+ "confirm_title": "האם ברצונך להשבית {number, plural,\n one {ישות אחת}\n other {{number} ישויות}\n}?"
+ },
+ "enable_selected": {
+ "button": "אפשר מסומנים",
+ "confirm_text": "זה יהפוך אותם לזמינים ב Home Assistant שוב אם הם מושבתים כעת.",
+ "confirm_title": "האם ברצונך להפעיל {number, plural,\n one {ישות אחת}\n other {{number} ישויות}\n}?"
+ },
+ "filter": {
+ "filter": "סנן",
+ "hidden_entities": "{number, plural,\n one {ישות אחת מוסתרת}\n other {{number} ישויות מוסתרות}\n}",
+ "show_all": "הצג הכל",
+ "show_disabled": "הצגת ישויות מושבתות",
+ "show_readonly": "הצגת ישויות לקריאה בלבד",
+ "show_unavailable": "הצגת ישויות לא זמינות"
+ },
+ "header": "ישויות",
+ "headers": {
+ "area": "איזור",
+ "disabled_by": "הושבת על ידי",
+ "entity_id": "מזהה ישות",
+ "integration": "שילוב",
+ "name": "שם",
+ "status": "סטטוס"
+ },
+ "introduction": "Home Assistant מנהל רישום של כל ישות שנראתה אי פעם ואשר ניתנת לזיהוי ייחודי. לכל אחד מישויות אלו יהיה מזהה ישות שהוקצה ואשר יהה שמור רק עבור ישות זו.",
+ "introduction2": "השתמש ברישום הישויות כדי לעקוף את השם, לשנות את מזהה הישות או להסיר את הערך מ-Home Assistant.",
+ "remove_selected": {
+ "button": "הסר את המסומנים",
+ "confirm_partly_text": "ניתן להסיר רק את {removable} מהישויות שנבחרו {selected}. ניתן להסיר ישויות רק כאשר השילוב כבר לא מספק עוד את הישויות. לעיתים יש להפעיל מחדש את Home Assistant לפני שניתן להסיר את הישויות של השילוב שהוסרה. האם בוודאות ברצונך להסיר את הישויות הניתנות להסרה?",
+ "confirm_partly_title": "רק {number, plural,\n one {ישות אחת שנבחרה ניתנת}\n other {{number} ישויות שנבחרו ניתנות}\n} להסרה.",
+ "confirm_text": "יש להסיר אותם מתצורת ה-Lovelace ומהאוטומציות שלך אם הם מכילים ישויות אלה.",
+ "confirm_title": "האם ברצונך להסיר {number, plural,\n one {ישות אחת}\n other {{number} ישויות}\n}?"
+ },
+ "search": "חיפוש ישויות",
+ "selected": "{number} נבחרו",
+ "status": {
+ "disabled": "מושבת",
+ "ok": "אישור",
+ "readonly": "קריאה בלבד",
+ "restored": "שוחזר",
+ "unavailable": "לא זמין"
+ }
+ }
+ },
+ "header": "הגדר את Home Assistant",
+ "helpers": {
+ "caption": "מסייעים",
+ "description": "רכיבים המסייעים בבניית אוטומציות",
+ "dialog": {
+ "add_helper": "הוסף עוזר",
+ "add_platform": "הוסף {platform}",
+ "create": "צור"
+ },
+ "picker": {
+ "add_helper": "הוסף עוזר",
+ "headers": {
+ "editable": "ניתן לעריכה",
+ "entity_id": "מזהה ישות",
+ "name": "שם",
+ "type": "סוג"
+ },
+ "no_helpers": "נראה שאין לך עדיין מסייעים!"
+ },
+ "types": {
+ "counter": "מונה",
+ "input_boolean": "בורר דו-מצבי",
+ "input_button": "לחצן",
+ "input_datetime": "תאריך ו/או שעה",
+ "input_number": "מספר",
+ "input_select": "תיבת בחירה",
+ "input_text": "טקסט",
+ "timer": "טיימר"
+ }
+ },
+ "info": {
+ "built_using": "נבנה באמצעות",
+ "caption": "מידע",
+ "copy_github": "עבור GitHub",
+ "copy_menu": "תפריט העתקה",
+ "copy_raw": "טקסט גולמי",
+ "custom_uis": "ממשקי משתמש מותאמים אישית:",
+ "description": "גרסה, תקינות המערכת וקישורים לתיעוד",
+ "developed_by": "פותח על ידי חבורה של אנשים מדהימים.",
+ "documentation": "תיעוד",
+ "frontend": "חזית ממשק משתמש",
+ "frontend_version": "גרסת ממשק המשתמש: {version} - {type}",
+ "home_assistant_logo": "לוגו Home Assistant",
+ "icons_by": "סמלים מאת",
+ "integrations": "שילובים",
+ "issues": "בעיות",
+ "license": "פורסם תחת רישיון Apache 2.0",
+ "path_configuration": "נתיב אל configuration.yaml: {path}",
+ "server": "שרת",
+ "setup_time": "זמן התקנה",
+ "source": "מקור:",
+ "system_health": {
+ "manage": "נהל",
+ "more_info": "מידע נוסף"
+ },
+ "system_health_error": "רכיב בריאות המערכת לא נטען. הוסף את 'system_health:' ל- configuration.yaml"
+ },
+ "integrations": {
+ "add_integration": "הוספת שילוב",
+ "attention": "נדרשת תשומת לב",
+ "caption": "שילובים",
+ "config_entry": {
+ "area": "ב-{area}",
+ "check_the_logs": "בדוק את היומנים",
+ "configure": "הגדר",
+ "delete": "מחק",
+ "delete_confirm": "האם בוודאות ברצונך למחוק את השילוב {title}?",
+ "depends_on_cloud": "תלוי בענן",
+ "device_unavailable": "ההתקן אינו זמין",
+ "devices": "{count, plural,\n one {התקן אחד}\n other {{count} התקנים}\n}",
+ "disable": {
+ "disable_confirm": "האם בוודאות ברצונך להשבית את רשומת התצורה הזו? ההתקנים והישויות שלו יושבתו.",
+ "disabled": "מושבת",
+ "disabled_by": {
+ "device": "התקן",
+ "integration": "שילוב",
+ "user": "משתמש"
+ },
+ "disabled_cause": "מושבת על ידי {cause}"
+ },
+ "disable_error": "ההפעלה או השבתה של השילוב נכשלה",
+ "disable_restart_confirm": "הפעל מחדש את Assistant Home כדי לסיים את השבתת השילוב הזה",
+ "disabled_polling": "תשאול אוטומטי עבור עדכוני נתונים אינו זמין",
+ "documentation": "תיעוד",
+ "download_diagnostics": "הורד אבחון",
+ "enable_restart_confirm": "הפעל מחדש את Assistant Home כדי לסיים את הפעלת השילוב הזה",
+ "entities": "{count, plural,\n one {ישות אחת}\n other {{count} ישויות}\n}",
+ "entity_unavailable": "הישות אינה זמינה",
+ "firmware": "קושחה: {version}",
+ "hardware": "חומרה: {version}",
+ "hub": "מחובר באמצעות",
+ "known_issues": "בעיות ידועות",
+ "manuf": "על ידי {manufacturer}",
+ "no_area": "ללא אזור",
+ "not_loaded": "לא נטען",
+ "open_configuration_url": "ביקור בהתקן",
+ "provided_by_custom_integration": "מסופק על ידי שילוב מותאם אישית",
+ "reload": "טען מחדש",
+ "reload_confirm": "השילוב נטען מחדש",
+ "reload_restart_confirm": "הפעל מחדש את Assistant Home כדי לסיים את הטעינה מחדש של שילוב זה",
+ "rename": "שנה שם",
+ "restart_confirm": "הפעל מחדש את Home Assistant כדי לסיים את הסרת השילוב",
+ "services": "{count, plural,\n one {שירות אחד}\n other {{count} שירותים}\n}",
+ "state": {
+ "failed_unload": "ביטול הטעינה נכשל",
+ "loaded": "טעון",
+ "migration_error": "שגיאת המרה",
+ "not_loaded": "לא טעון",
+ "setup_error": "ההגדרה נכשלה",
+ "setup_retry": "מנסה להתקין מחדש"
+ },
+ "system_options": "אפשרויות מערכת",
+ "unknown_via_device": "התקן לא ידוע",
+ "unnamed_entry": "ערך ללא שם",
+ "via": "מחובר באמצעות"
+ },
+ "config_flow": {
+ "aborted": "הופסק",
+ "close": "סגור",
+ "could_not_load": "לא היתה אפשרות לטעון זרימת תצורה",
+ "created_config": "נוצרה תצורה עבור {name}.",
+ "dismiss": "ביטול תיבת דו-שיח",
+ "error": "שגיאה",
+ "error_saving_area": "שגיאה בשמירת האזור: {error}",
+ "external_step": {
+ "description": "שלב זה מחייב אותך לבקר באתר אינטרנט חיצוני להשלמת הפעולה.",
+ "open_site": "פתח אתר"
+ },
+ "finish": "סיום",
+ "loading": {
+ "fallback_title": "השילוב",
+ "loading_flow": "יש להמתין בזמן שההגדרה של {integration} מתבצעת",
+ "loading_step": "טוען את השלב הבא עבור {integration}"
+ },
+ "next": "הבא",
+ "not_all_required_fields": "לא כל שדות החובה מולאו.",
+ "not_loaded": "לא ניתן היה לטעון את השילוב, נסה להפעיל מחדש את Home Assistant.",
+ "pick_flow_step": {
+ "new_flow": "לא, הגדר מופע אחר של {integration}",
+ "title": "גילינו את אלה, רוצים להגדיר אותם?"
+ },
+ "submit": "המשך"
+ },
+ "configure": "הגדר",
+ "configured": "הוגדר",
+ "confirm_new": "האם ברצונך להגדיר {integration}?",
+ "description": "ניהול שילובים עם שירותים או התקנים",
+ "details": "פרטי השילוב",
+ "disable": {
+ "disabled_integrations": "{number} מושבת",
+ "show": "הצג",
+ "show_disabled": "הצג שילובים מושבתים"
+ },
+ "discovered": "זוהו",
+ "home_assistant_website": "אתר Home Assistant",
+ "ignore": {
+ "confirm_delete_ignore": "פעולה זו תגרום לשילוב להופיע בשילובים שהתגלו שוב כאשר היא תתגלה. ייתכן שתידרש הפעלה מחדש או להמתין כדי שזה יקרה.",
+ "confirm_delete_ignore_title": "הפסק להתעלם מ-{name}?",
+ "confirm_ignore": "האם בוודאות הינך רוצה להגדיר שילוב זה? ניתן לבטל את זה על ידי לחיצה על 'הצגת שילובים שמתעלמים מהן' בתפריט שמשמאל למעלה.",
+ "confirm_ignore_title": "להתעלם מגילוי {name}?",
+ "ignore": "התעלם",
+ "ignored": "מתעלם",
+ "show_ignored": "הצגת שילובים שמתעלמים מהן",
+ "stop_ignore": "הפסק להתעלם"
+ },
+ "integration": "שילוב",
+ "integration_not_found": "השילוב לא נמצא.",
+ "new": "הגדרת שילוב חדש",
+ "no_integrations": "נראה שעדיין לא הוגדרו שילובים. לחץ על הכפתור למטה כדי להוסיף את השילוב הראשון שלך!",
+ "none": "כלום אינו הוגדר עדיין",
+ "none_found": "לא נמצאו שילובים",
+ "none_found_detail": "התאם את קריטריוני החיפוש שלך.",
+ "note_about_integrations": "אין שילובים שתאמו לחיפוש שלך, ייתכן שהשילוב שברצונך להגדיר לא יהיה זמין עדיין להגדרה באמצעות ממשק המשתמש.",
+ "note_about_website_reference": "מידע נוסף זמין ב:",
+ "reconfigure": "קביעת תצורה מחדש",
+ "rename_dialog": "ערוך את שם ישות התצורה הזו",
+ "rename_input_label": "שם ישות",
+ "search": "חפש שילובים"
+ },
+ "introduction": "כאן ניתן להגדיר את הרכיבים ואת ה-Home Assistant. לא הכל ניתן להגדיר עם ממשק המשתמש עדיין, אבל אנחנו עובדים על זה.",
+ "logs": {
+ "caption": "יומנים",
+ "clear": "נקה",
+ "copy": "העתקת ערך יומן רישום",
+ "custom_integration": "שילוב מותאם אישית",
+ "description": "צפה ביומני Home Assistant",
+ "details": "פרטי יומן האירועים ({level})",
+ "error_from_custom_integration": "שגיאה זו מקורה בשילוב מותאם אישית.",
+ "level": {
+ "critical": "קריטי",
+ "debug": "איתור באגים",
+ "error": "שגיאה",
+ "info": "מידע",
+ "warning": "אזהרה"
+ },
+ "load_full_log": "טען את הלוג המלא של Home Assistant",
+ "loading_log": "טוען יומן שגיאות...",
+ "multiple_messages": "ההודעה התרחשה לראשונה בשעה {time} והיא מופיעה {counter} פעמים",
+ "no_errors": "לא דווח על שגיאות",
+ "no_issues": "אין נושאים חדשים!",
+ "refresh": "רענן"
+ },
+ "lovelace": {
+ "caption": "לוחות הבקרה של Lovelace",
+ "dashboards": {
+ "cant_edit_default": "אין אפשרות לערוך את לוח המחוונים של Lovelace המוגדר כברירת מחדל מתוך מממשק המשתמש. באפשרותך להסתיר אותו על ידי הגדרת לוח מחוונים אחר כברירת מחדל.",
+ "cant_edit_yaml": "לא ניתן לערוך שלוחות מחוונים המוגדרים ב- YAML מממשק המשתמש. שנה אותם ב- configuration.yaml.",
+ "caption": "לוחות בקרה",
+ "conf_mode": {
+ "storage": "ממשק המשתמש נשלט",
+ "yaml": "קובץ YAML"
+ },
+ "confirm_delete": "האם בוודאות ברצונך למחוק את לוח הבקרה הזה?",
+ "confirm_delete_text": "לוח המחוונים שלך יימחק לצמיתות.",
+ "confirm_delete_title": "האם למחוק את {dashboard_title}?",
+ "default_dashboard": "זהו לוח הבקרה ברירת המחדל",
+ "detail": {
+ "create": "צור",
+ "delete": "מחק",
+ "dismiss": "סגור",
+ "edit_dashboard": "ערוך לוח בקרה",
+ "icon": "סמל",
+ "new_dashboard": "הוסף לוח בקרה חדש",
+ "remove_default": "הסרה כברירת מחדל בהתקן זה",
+ "require_admin": "מנהל בלבד",
+ "set_default": "קביעה כברירת מחדל בהתקן זה",
+ "show_sidebar": "הצג בסרגל הצד",
+ "title": "כותרת",
+ "title_required": "הכותרת נדרשת.",
+ "update": "עדכן",
+ "url": "כתובת אתר",
+ "url_error_msg": "כתובת האתר צריכה להכיל - ולא יכולה להכיל רווחים או תווים מיוחדים, למעט _ ו- -"
+ },
+ "picker": {
+ "add_dashboard": "הוסף לוח בקרה חדש",
+ "headers": {
+ "conf_mode": "שיטת קביעת תצורה",
+ "default": "ברירת מחדל",
+ "filename": "שם קובץ",
+ "require_admin": "מנהל בלבד",
+ "sidebar": "הצג בסרגל הצד",
+ "title": "כותרת"
+ },
+ "open": "פתח"
+ }
+ },
+ "description": "יצירת ערכות כרטיסים מותאמות אישית כדי לשלוט בביתך",
+ "resources": {
+ "cant_edit_yaml": "אתה משתמש ב- Lovelace במצב YAML, לכן אינך יכול לנהל את המשאבים שלך דרך ממשק המשתמש. נהל אותם ב- configuration.yaml.",
+ "caption": "משאבים",
+ "confirm_delete": "האם בוודאות ברצונך למחוק משאב זה?",
+ "detail": {
+ "create": "צור",
+ "delete": "מחק",
+ "dismiss": "סגור",
+ "new_resource": "הוסף משאב חדש",
+ "type": "סוג המשאב",
+ "update": "עדכן",
+ "url": "כתובת אתר",
+ "url_error_msg": "כתובת אתר היא שדה חובה",
+ "warning_header": "היה זהיר!",
+ "warning_text": "הוספת משאבים יכולה להיות מסוכנת, וודא שאתה יודע את מקור המשאב וסומך עליו. משאבים רעים עלולים לפגוע קשות במערכת שלך."
+ },
+ "picker": {
+ "add_resource": "הוסף משאב",
+ "headers": {
+ "type": "סוג",
+ "url": "כתובת אתר"
+ },
+ "no_resources": "אין משאבים"
+ },
+ "refresh_body": "עליך לרענן את הדף כדי להשלים את ההסרה. האם ברצונך לרענן כעת?",
+ "refresh_header": "האם ברצונך לרענן?",
+ "types": {
+ "css": "גיליון סגנונות",
+ "html": "HTML (הוצא משימוש)",
+ "js": "קובץ ג'אווה סקריפט (הוצא משימוש)",
+ "module": "מודול ג'אווה סקריפט"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "האזנה לנושא",
+ "description_publish": "פרסם חבילה",
+ "listening_to": "האזנה ל",
+ "message_received": "הודעה {id} התקבלה ב- {topic} בשעה {time}:",
+ "payload": "תוכן (תומך בתבניות)",
+ "publish": "פרסם",
+ "start_listening": "התחל להאזין",
+ "stop_listening": "הפסק להאזין",
+ "subscribe_to": "נושא להירשם אליו",
+ "title": "MQTT",
+ "topic": "נושא"
+ },
+ "ozw": {
+ "common": {
+ "controller": "בקר",
+ "instance": "מופע",
+ "network": "רשת",
+ "node_id": "מזהה צומת",
+ "ozw_instance": "מופע OpenZWave",
+ "query_stage": "שלב שאילתה",
+ "wakeup_instructions": "הוראות השכמה",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "הצומת נכשל",
+ "stage": "שלב",
+ "zwave_info": "מידע Z-Wave"
+ },
+ "navigation": {
+ "network": "רשת",
+ "node": {
+ "config": "תצורה",
+ "dashboard": "לוח בקרה"
+ },
+ "nodes": "צמתים",
+ "select_instance": "בחר מופע"
+ },
+ "network": {
+ "header": "ניהול רשת",
+ "introduction": "נהל פונקציות ברחבי הרשת.",
+ "node_count": "{count} צמתים"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "כל הצמתים נחקרו",
+ "driverallnodesqueriedsomedead": "כל הצמתים נחקרו. כמה צמתים נמצאו מתים",
+ "driverawakenodesqueries": "כל הצמתים הערים נחקרו",
+ "driverfailed": "ההתחברות לבקר Z-Wave נכשלה",
+ "driverready": "אתחול בקר Z-Wave",
+ "driverremoved": "מנהל ההתקן הוסר",
+ "driverreset": "מנהל ההתקן אופס",
+ "offline": "OZWDaemon לא מקוון",
+ "ready": "מוכן להתחברות",
+ "started": "מחובר ל-MQTT",
+ "starting": "מתחבר ל-MQTT",
+ "stopped": "OpenZWave הופסק"
+ },
+ "offline": "לא מקוון",
+ "online": "מקוון",
+ "starting": "מתחיל",
+ "unknown": "לא ידוע"
+ },
+ "node": {
+ "button": "פרטי צומת",
+ "not_found": "הצומת לא נמצא"
+ },
+ "node_config": {
+ "header": "תצורת צומת",
+ "help_source": "תיאור פרמטרי תצורה וטקסט עזרה ניתנים על ידי פרויקט OpenZWave.",
+ "introduction": "נהל את פרמטרי התצורה השונים עבור צומת Z-Wave.",
+ "wakeup_help": "צמתים המופעלים באמצעות סוללה חייבים להיות ערים כדי לשנות את התצורה שלהם. אם הצומת אינו ער, OpenZWave ינסה לעדכן את תצורת הצומת בפעם הבאה שהוא יתעורר, דבר שעשוי להיות מספר שעות (או ימים) מאוחר יותר. יש לבצע את השלבים הבאים כדי להעיר את ההתקן:"
+ },
+ "node_metadata": {
+ "product_manual": "מדריך מוצר"
+ },
+ "node_query_stages": {
+ "associations": "מרענן קבוצות וחברויות",
+ "cacheload": "טוען מידע מקובץ המטמון של OpenZWave. צמתי סוללה יישארו בשלב זה עד שהצומת יתעורר.",
+ "complete": "תהליך הראיון הושלם",
+ "configuration": "קבלת ערכי תצורה מהצומת",
+ "dynamic": "קבלת ערכים המשתנים לעתים קרובות מהצומת",
+ "instances": "קבלת פרטים אודות המופעים או הערוצים שבהם תומך התקן",
+ "manufacturerspecific1": "קבלת קודי יצרן ומזהה מוצר מהצומת",
+ "manufacturerspecific2": "קבלת קודי יצרן ומזהה מוצר נוספים מהצומת",
+ "neighbors": "קבלת רשימת שכני הצומת",
+ "nodeinfo": "קבלת מחלקות פקודה נתמכות מהצומת",
+ "nodeplusinfo": "קבלת מידע Z-Wave+ מהצומת",
+ "probe": "בדיקה אם הצומת ער/חי",
+ "protocolinfo": "קבלת יכולות Z-Wave בסיסיות של צומת זה מהבקר",
+ "session": "קבלת ערכים המשתנים לעתים רחוקות מהצומת",
+ "static": "קבלת ערכים סטטיים מההתקן",
+ "versions": "מקבל מידע אודות גירסאות קושחה ומחלקות פקודות",
+ "wakeup": "הגדרת תמיכה בתורים והודעות השכמה"
+ },
+ "nodes_table": {
+ "failed": "נכשל",
+ "id": "מזהה",
+ "manufacturer": "יצרן",
+ "model": "דגם",
+ "query_stage": "שלב שאילתה",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "אם הצומת מופעל באמצעות סוללה, הקפד להעיר אותו לפני שתמשיך",
+ "button": "רענן צומת",
+ "complete": "רענון הצומת הושלם",
+ "description": "פעולה זו תגיד ל-OpenZWave לראיין מחדש צומת ולעדכן את מחלקות הפקודות, היכולות והערכים של הצומת.",
+ "node_status": "מצב הצומת",
+ "refreshing_description": "מרענן מידע צומת…",
+ "start_refresh_button": "התחל לרענן",
+ "step": "שלב",
+ "title": "רענן מידע צומת",
+ "wakeup_header": "הוראות התעוררות עבור",
+ "wakeup_instructions_source": "הוראות ההשכמה מגיעות ממסד הנתונים של ההתקנים הקהילתיים OpenZWave."
+ },
+ "select_instance": {
+ "header": "בחר מופע OpenZWave",
+ "introduction": "רצים יותר ממופע OpenZWave אחד. איזה מופע ברצונך לנהל?",
+ "none_found": "לא הצלחנו למצוא שרת OpenZWave. אם אתה סבור שזה לא נכון, בדוק את הגדרות OpenZWave ו- MQTT וודא ש Home Assistant יכול לתקשר עם ה MQTT broker."
+ },
+ "services": {
+ "add_node": "הוסף צומת",
+ "cancel_command": "בטל פקודה",
+ "remove_node": "הסר צומת"
+ }
+ },
+ "person": {
+ "add_person": "הוסף אדם",
+ "caption": "אנשים",
+ "confirm_delete": "האם בוודאות ברצונך למחוק אדם זה?",
+ "confirm_delete2": "כל ההתקנים השייכים לאדם זה לא יהיו מוקצים.",
+ "create_person": "צור אדם",
+ "description": "נהל את האנשים ש-Home Assistant עוקב אחריהם.",
+ "detail": {
+ "admin": "מנהל המערכת",
+ "allow_login": "אפשר לאדם להתחבר",
+ "confirm_delete_user": "האם בוודאות ברצונך למחוק את חשבון המשתמש {name} ? אתה עדיין יכול לעקוב אחר המשתמש, אך הוא כבר לא יוכל להתחבר.",
+ "create": "צור",
+ "delete": "מחק",
+ "device_tracker_intro": "בחר את ההתקנים השייכים לאדם זה.",
+ "device_tracker_pick": "בחר התקן למעקב",
+ "device_tracker_picked": "מעקב אחר התקן",
+ "link_integrations_page": "עמוד שילובים",
+ "link_presence_detection_integrations": "שילובי איתור נוכחות",
+ "linked_user": "משתמש מקושר",
+ "local_only": "ניתן להתחבר מהרשת המקומית בלבד",
+ "name": "שם",
+ "name_error_msg": "שם נדרש",
+ "new_person": "אדם חדש",
+ "no_device_tracker_available_intro": "כאשר יש לך התקנים המציינים את נוכחותו של אדם, כאן תוכל להקצותם לאדם זה. באפשרותך להוסיף את ההתקן הראשון על ידי הוספת שילוב של זיהוי נוכחות מעמוד השילובים.",
+ "update": "עדכון"
+ },
+ "introduction": "כאן תוכלו להגדיר כל אדם ב Home Assistant.",
+ "learn_more": "למד עוד על אנשים",
+ "no_persons_created_yet": "נראה שעדיין לא יצרת אנשים.",
+ "note_about_persons_configured_in_yaml": "הערה: לא ניתן באמצעות ממשק המשתמש לערוך אנשים המוגדרים ב configuration.yaml.",
+ "person_not_found": "לא הצלחנו למצוא את האדם שניסית לערוך.",
+ "person_not_found_title": "אדם לא נמצא"
+ },
+ "scene": {
+ "activated": "הופעלה סצינה {name}.",
+ "caption": "סצנות",
+ "description": "צור וערוך סצנות",
+ "editor": {
+ "area": "איזור",
+ "default_name": "סצינה חדשה",
+ "devices": {
+ "add": "הוספת התקן",
+ "delete": "מחיקת התקן",
+ "header": "התקנים",
+ "introduction": "הוסף את ההתקנים שברצונך שייכללו בסצינה. הגדר את כל ההתקנים למצב הרצוי עבור סצינה זו."
+ },
+ "entities": {
+ "add": "הוסף ישות",
+ "delete": "מחק ישות",
+ "device_entities": "אם תוסיף ישות השייכת להתקן, ההתקן יתווסף.",
+ "header": "ישויות",
+ "introduction": "ניתן להגדיר כאן ישויות שאינן שייכות להתקן.",
+ "without_device": "ישויות ללא התקן"
+ },
+ "icon": "סמל",
+ "introduction": "השתמש בסצנות כדי להחיות את ביתך.",
+ "load_error_not_editable": "רק סצנות ב-scenes.yaml ניתנות לעריכה.",
+ "load_error_unknown": "שגיאה בטעינת סצנה ({err_no}).",
+ "name": "שם",
+ "save": "שמור",
+ "unsaved_confirm": "יש לך שינויים שלא נשמרו. אתה בטוח שאתה רוצה לעזוב?"
+ },
+ "picker": {
+ "add_scene": "הוסף סצנה",
+ "delete_confirm": "האם בוודאות ברצונך למחוק את הסצינה הזו?",
+ "delete_scene": "מחק סצנה",
+ "duplicate": "שכפל",
+ "duplicate_scene": "שכפל סצנה",
+ "edit_scene": "ערוך סצנה",
+ "header": "עורך סצנות",
+ "headers": {
+ "name": "שם"
+ },
+ "introduction": "עורך הסצנות מאפשר לך ליצור ולערוך סצנות. נא עקוב אחר הקישור שלהלן כדי לקרוא את ההוראות כדי לוודא שתצורת Home Assistant נקבעה כראוי.",
+ "learn_more": "למידע נוסף על סצנות",
+ "no_scenes": "לא הצלחנו למצוא סצנות",
+ "only_editable": "רק סצנות שהוגדרו ב-scenes.yaml ניתנות לעריכה.",
+ "pick_scene": "בחר סצינה לעריכה",
+ "show_info_scene": "הצג מידע על הסצנה"
+ }
+ },
+ "script": {
+ "caption": "סקריפטים",
+ "description": "ביצוע רצף של פעולות",
+ "editor": {
+ "alias": "שם",
+ "default_name": "סקריפט חדש",
+ "delete_confirm": "האם בוודאות ברצונך למחוק סקריפט זה?",
+ "delete_script": "מחק סקריפט",
+ "header": "סקריפט: {name}",
+ "icon": "סמל",
+ "id": "מזהה ישות",
+ "id_already_exists": "מזהה זה כבר קיים",
+ "id_already_exists_save_error": "אינך יכול לשמור סקריפט זה מכיוון שהמזהה אינו ייחודי, בחר מזהה אחר או השאר אותו ריק כדי ליצור אוטומטית.",
+ "introduction": "השתמש בסקריפטים כדי לבצע רצף של הרצות.",
+ "link_available_actions": "למד עוד אודות פעולות זמינות.",
+ "load_error_not_editable": "רק סקריפטים בתוך קובץ scripts.yaml ניתנים לעריכה.",
+ "max": {
+ "parallel": "המספר המרבי של ריצות מקבילות",
+ "queued": "אורך התור"
+ },
+ "modes": {
+ "description": "המצב שולט במה שקורה כאשר רץ סקריפט בזמן שהוא עדיין רץ מהרצה קודמת אחת או יותר. עיין ב-{documentation_link} למידע נוסף.",
+ "documentation": "תיעוד סקריפט",
+ "label": "מצב",
+ "parallel": "מקביל",
+ "queued": "בתור",
+ "restart": "הפעלה מחדש",
+ "single": "יחיד (ברירת מחדל)"
+ },
+ "save_script": "שמור סקריפט",
+ "sequence": "סדר פעולות",
+ "sequence_sentence": "רצף הפעולות של סקריפט זה.",
+ "show_trace": "הצג מעקב"
+ },
+ "picker": {
+ "add_script": "הוסף סקריפט",
+ "dev_script": "ניפוי באגים סקריפט",
+ "duplicate": "שכפל",
+ "duplicate_script": "שכפול סקריפט",
+ "edit_script": "ערוך סקריפט",
+ "header": "עורך סקריפטים",
+ "headers": {
+ "name": "שם"
+ },
+ "introduction": "עורך הסקריפטים מאפשר לך ליצור ולערוך סקריפטים. נא כנס לקישור שלמטה כדי לקרוא את ההוראות בכדי לוודא שקבעת את תצורת Home Assistant כהלה.",
+ "learn_more": "למד עוד אודות קבצי סקריפטים",
+ "no_scripts": "לא הצלחנו למצוא סקריפטים",
+ "run_script": "הרץ סקריפט",
+ "show_info": "הצג מידע על התסריט"
+ }
+ },
+ "server_control": {
+ "caption": "פקדי שרת",
+ "description": "אימות והפעלה מחדש של שרת Home Assistant",
+ "section": {
+ "reloading": {
+ "automation": "אוטומציות",
+ "command_line": "ישויות שורת פקודה",
+ "core": "מיקום והתאמות אישיות",
+ "filesize": "ישויות בגודל הקובץ",
+ "filter": "סינון ישויות",
+ "generic": "ישויות כלליות של מצלמת IP",
+ "generic_thermostat": "ישויות כלליות של וסת חום",
+ "group": "קבוצות, ישויות קבוצתיות ושירותי הודעה",
+ "heading": "טעינה מחדש של תצורת YAML",
+ "history_stats": "היסטוריית מצב ישויות",
+ "homekit": "HomeKit",
+ "input_boolean": "קלט בוליאני",
+ "input_button": "לחצני קלט",
+ "input_datetime": "קלט תאריך וזמן",
+ "input_number": "קלט מספרים",
+ "input_select": "קלט בחירה",
+ "input_text": "קלט טקסט",
+ "introduction": "חלקים מסוימים של Homr Assistant יכולים לטעון מחדש ללא צורך בהפעלה מחדש. לחיצה על אחת מהאפשרויות שלהלן תבטל את טעינת תצורת YAML הנוכחית שלהם ותטען את התצורה החדשה.",
+ "min_max": "ישויות מינימום/מקסימום",
+ "mqtt": "ישויות MQTT שתצורתן נקבעה באופן ידני",
+ "person": "אנשים",
+ "ping": "איתות (Ping) ישויות חיישנים בינאריים",
+ "reload": "{domain}",
+ "rest": "שאר ישויות ושירותי הודעות",
+ "rpi_gpio": "ישויות GPIO של רספברי פאי",
+ "scene": "סצנות",
+ "script": "סקריפטים",
+ "smtp": "שירותי הודעת SMTP",
+ "statistics": "סטטיסטיקה ישויות",
+ "telegram": "שירותי הודעת טלגרם",
+ "template": "תבנית ישויות",
+ "themes": "ערכות נושא",
+ "timer": "שעוני עצר",
+ "trend": "מגמת ישויות",
+ "universal": "ישויות אוניברסליות של נגן מדיה",
+ "zone": "אזורים"
+ },
+ "server_management": {
+ "confirm_restart": "האם בוודאות ברצונך להפעיל מחדש את Home Assistant?",
+ "confirm_stop": "האם בוודאות ברצונך לעצור את Home Assistant?",
+ "heading": "ניהול שרת",
+ "introduction": "שלוט ב-Home Assistant שלך.",
+ "restart": "הפעלה מחדש",
+ "stop": "עצור"
+ },
+ "validation": {
+ "check_config": "בדיקת התצורה",
+ "heading": "בדיקת התצורה",
+ "introduction": "אמת את התצורה שלך אם ביצעת לאחרונה כמה שינויים בתצורה שלך וברצונך לוודא שהכול תקין.",
+ "invalid": "תצורה לא תקנית",
+ "valid": "תצורה תקינה!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "הוסף תג",
+ "automation_title": "התג {name} נסרק",
+ "caption": "תגים",
+ "confirm_remove": "האם בוודאות ברצונך להסיר את התג {tag}?",
+ "confirm_remove_title": "להסיר תג?",
+ "create_automation": "צור אוטומציה עם תג",
+ "description": "אוטומציות מופעלות כאשר תג NFC, קוד QR וכדו' נסרקים",
+ "detail": {
+ "companion_apps": "אפליקציות נלוות",
+ "create": "צור",
+ "create_and_write": "צור וכתוב",
+ "delete": "מחק",
+ "description": "תיאור",
+ "name": "שם",
+ "new_tag": "תג חדש",
+ "tag_id": "מזהה תג",
+ "tag_id_placeholder": "מחולל אוטומטית אם ריק",
+ "update": "עדכן",
+ "usage": "תג יכול להפעיל אוטומציה בעת סריקה, באפשרותך להשתמש בתגי NFC, קודי QR או כל סוג אחר של תג. השתמש ב {companion_link} שלנו כדי לכתוב תג זה לתג NFC הניתן לתכנות או ליצור קוד QR להלן."
+ },
+ "edit": "ערוך",
+ "headers": {
+ "last_scanned": "נסרק לאחרונה",
+ "name": "שם"
+ },
+ "learn_more": "למד עוד אודות תגיות",
+ "never_scanned": "מעולם לא נסרק",
+ "no_tags": "אין תגים",
+ "write": "כתוב"
+ },
+ "updates": {
+ "more_updates": "+ {count} עדכונים",
+ "review": "סקירה",
+ "show": "הצג",
+ "show_all_updates": "הצג את כל העדכונים",
+ "title": "{count, plural,\n one {עדכון אחד}\n other {{count} עדכונים}\n}",
+ "unable_to_fetch": "לא ניתן לטעון עדכונים",
+ "version_available": "גרסה {version_available} זמינה"
+ },
+ "users": {
+ "add_user": {
+ "caption": "הוסף משתמש",
+ "create": "צור",
+ "local_only": "מקומי בלבד",
+ "password": "סיסמה",
+ "password_confirm": "אשר סיסמה",
+ "password_not_match": "סיסמאות אינן תואמות"
+ },
+ "caption": "משתמשים",
+ "description": "נהל את חשבונות המשתמש ב-Home Assistant",
+ "editor": {
+ "activate_user": "הפעל משתמש",
+ "active": "פעיל",
+ "active_tooltip": "שולט האם המשתמש יכול להתחבר",
+ "admin": "מנהל",
+ "caption": "הצג משתמש",
+ "change_password": "שינוי סיסמה",
+ "confirm_user_deletion": "האם בוודאות ברצונך למחוק את {name}?",
+ "deactivate_user": "בטל את המשתמש",
+ "delete_user": "מחיקת משתמש",
+ "group": "קבוצה",
+ "id": "מזהה",
+ "local_only": "ניתן להתחבר מהרשת המקומית בלבד",
+ "name": "שם תצוגה",
+ "new_password": "סיסמה חדשה",
+ "owner": "בעלים",
+ "password_changed": "הסיסמה שונתה בהצלחה",
+ "system_generated": "משתמש מערכת",
+ "system_generated_users_not_editable": "לא ניתן לעדכן את משתמשי המערכת.",
+ "system_generated_users_not_removable": "לא ניתן להסיר משתמשי מערכת.",
+ "unnamed_user": "משתמש ללא שם",
+ "update_user": "עדכון",
+ "username": "שם משתמש"
+ },
+ "is_local": "משתמש מקומי",
+ "is_not_active": "מושבת",
+ "is_owner": "בעלים",
+ "is_system": "משתמש מערכת",
+ "picker": {
+ "add_user": "הוסף משתמש",
+ "headers": {
+ "group": "קבוצה",
+ "is_active": "פעיל",
+ "is_owner": "בעלים",
+ "local": "מקומי",
+ "name": "שם תצוגה",
+ "system": "מערכת",
+ "username": "שם משתמש"
+ }
+ },
+ "users_privileges_note": "תכונת קבוצת המשתמשים מתבצעת כעת. למשתמש לא תהיה אפשרות לנהל את המופע באמצעות ממשק המשתמש. אנו עדיין בודקים את כל נקודות הקצה של ניהול API כדי לוודא שהן מגבילות כראוי את הגישה למנהלי מערכת."
+ },
+ "zha": {
+ "add_device": "הוסף מכשיר",
+ "add_device_page": {
+ "discovered_text": "התקנים יופיעו כאן לאחר שהתגלו.",
+ "no_devices_found": "לא נמצאו התקנים, ודא שהם נמצאים במצב שיוך ושמור אותם ערים בזמן שהגילוי פועל.",
+ "pairing_mode": "ודא שההתקנים שלך נמצאים במצב צימוד. בדוק את הוראות ההתקן כיצד לבצע זאת.",
+ "search_again": "חפש שוב",
+ "spinner": "מחפש התקני ZHA Zigbee…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "תכונות של האשכול שנבחר",
+ "get_zigbee_attribute": "קבל שדה Zigbee",
+ "header": "תכונות אשכול",
+ "help_attribute_dropdown": "בחר שדה לצפייה או לשינוי ערכו.",
+ "help_get_zigbee_attribute": "קבל את הערך עבור השדה שנבחר.",
+ "help_set_zigbee_attribute": "הגדר ערך תכונה עבור האשכול שצוין ביישות שצוינה.",
+ "introduction": "הצגה ועריכה של תכונות אשכול.",
+ "set_zigbee_attribute": "קבע שדה Zigbee"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "פקודות של האשכול שנבחר",
+ "header": "פקודות אשכול",
+ "help_command_dropdown": "בחר פקודה שאליה יש לקיים אינטראקציה.",
+ "introduction": "הצגה והרצת פקודות אשכול.",
+ "issue_zigbee_command": "שלח פקודת Zigbee"
+ },
+ "clusters": {
+ "header": "אשכולות",
+ "help_cluster_dropdown": "בחר אשכול כדי להציג תכונות ופקודות.",
+ "introduction": "אשכולות הם אבני הבניין עבור פונקציונליות Zigbee. הם מפרידים פונקציונליות ליחידות לוגיות. קיימים סוגי לקוחות ושרתים המורכבים מתכונות ופקודות."
+ },
+ "common": {
+ "clusters": "אשכולות",
+ "manufacturer_code_override": "עקיפת קוד יצרן",
+ "value": "ערך"
+ },
+ "configuration_page": {
+ "shortcuts_title": "קיצורי דרך",
+ "update_button": "עדכן תצורה"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "קביעת התצורה הושלמה",
+ "CONFIGURED_status_text": "מאתחל",
+ "INITIALIZED": "האתחול הושלם",
+ "INITIALIZED_status_text": "ההתקן מוכן לשימוש",
+ "INTERVIEW_COMPLETE": "הראיון הושלם",
+ "INTERVIEW_COMPLETE_status_text": "הגדרת תצורה",
+ "PAIRED": "התקן נמצא",
+ "PAIRED_status_text": "מתחיל ראיון"
+ },
+ "group_binding": {
+ "bind_button_help": "קשר את הקבוצה שנבחרה לאשכול ההתקנים שנבחר.",
+ "bind_button_label": "קשר קבוצה",
+ "cluster_selection_help": "בחר אשכולות לקישור לקבוצה שנבחרה.",
+ "group_picker_help": "בחר קבוצה להפעלת פקודת קישור.",
+ "group_picker_label": "קבוצות הניתנות לקישור",
+ "header": "קישור הקבוצה",
+ "introduction": "קישור וניתוק קבוצות.",
+ "unbind_button_help": "נתק את הקבוצה שנבחרה מאשכולות ההתקנים שנבחרו.",
+ "unbind_button_label": "ביטול קישור של קבוצה"
+ },
+ "groups": {
+ "add_group": "הוסף קבוצה",
+ "add_members": "הוסף חברים",
+ "caption": "קבוצות",
+ "create": "צור קבוצה",
+ "create_group": "אוטומציה ביתית של Zigbee - צור קבוצה",
+ "create_group_details": "הזן את הפרטים הדרושים כדי ליצור קבוצת zigbee חדשה",
+ "creating_group": "יוצר קבוצה",
+ "delete": "מחיקת קבוצה",
+ "group_details": "להלן כל הפרטים עבור קבוצת Zigbee שנבחרה.",
+ "group_id": "מזהה קבוצה",
+ "group_info": "פרטי קבוצה",
+ "group_name_placeholder": "שם קבוצה",
+ "group_not_found": "הקבוצה לא נמצאה!",
+ "groups": "קבוצות",
+ "members": "חברים",
+ "remove_members": "הסר חברים",
+ "removing_members": "מסיר חברים"
+ },
+ "network": {
+ "caption": "רשת"
+ },
+ "visualization": {
+ "auto_zoom": "זום אוטומטי",
+ "caption": "ויזואליזציה",
+ "enable_physics": "אפשר פיזיקה",
+ "header": "הדמית רשת",
+ "highlight_label": "הדגש התקנים",
+ "refresh_topology": "רענן טופולוגיה",
+ "zoom_label": "הכנס למכשיר"
+ }
+ },
+ "zone": {
+ "add_zone": "הוסף אזור",
+ "caption": "אזורים",
+ "configured_in_yaml": "לא ניתן לערוך אזורים המוגדרים באמצעות configuration.yaml באמצעות ממשק המשתמש.",
+ "confirm_delete": "האם בוודאות ברצונך למחוק אזור זה?",
+ "create_zone": "צור אזור",
+ "description": "נהל את האזורים שבהם ברצונך לעקוב אחר אנשים",
+ "detail": {
+ "create": "צור",
+ "delete": "מחק",
+ "icon": "סמל",
+ "icon_error_msg": "הסמליל צריך להיות בפורמט: קידומת:שםסמליל, למשל: mdi:home",
+ "latitude": "קו רוחב",
+ "longitude": "קו אורך",
+ "name": "שם",
+ "new_zone": "אזור חדש",
+ "passive": "פסיבי",
+ "passive_note": "אזורים פסיביים מוסתרים בחזית ואינם משמשים כמיקום עבור עוקבים אחר התקנים. אפשרות זו שימושית אם ברצונך להשתמש בה רק עבור אוטומציות.",
+ "radius": "רדיוס",
+ "required_error_msg": "שדה זה הוא חובה",
+ "update": "עדכן"
+ },
+ "edit_home_zone": "עדיין לא ניתן לערוך את רדיוס אזור הבית מממשק המשתמש. גרור את הסמן על המפה כדי להזיז את אזור הבית.",
+ "edit_home_zone_narrow": "עדיין לא ניתן לערוך את הרדיוס של אזור הבית מהחזית. ניתן לשנות את המיקום מהתצורה הכללית.",
+ "edit_zone": "עריכת אזור",
+ "go_to_core_config": "לעבור לתצורה כללית?",
+ "home_zone_core_config": "המיקום של אזור הבית שלך ניתן לעריכה מדף התצורה הכללי. עדיין לא ניתן לערוך את הרדיוס של אזור הבית מהחזית. האם ברצונך לעבור לתצורה הכללית?",
+ "introduction": "אזורים מאפשרים לך לציין אזורים מסוימים בכדור הארץ. כאשר אדם נמצא באזור, הסטטוס יקח את השם מהאזור. אזורים יכולים לשמש גם כטריגר או תנאי בתוך הגדרות אוטומציה.",
+ "no_zones_created_yet": "נראה שעדיין לא יצרת אזורים."
+ },
+ "zwave": {
+ "common": {
+ "index": "אינדקס",
+ "instance": "מופע",
+ "unknown": "לא ידוע",
+ "value": "ערך תצורה",
+ "wakeup_interval": "מרווח זמן להתעוררות"
+ },
+ "description": "נהל את רשת ה- Z-Wave שלך",
+ "learn_more": "למידע נוסף על Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "העבר ל-OpenZWave",
+ "introduction": "אשף זה יעזור לך לעבור משילוב Z-Wave מדור קודם לשילוב OpenZWave שנמצא כעת בגרסת ביטא."
+ },
+ "zwave_js": {
+ "header": "מעבר ל-Z-Wave JS",
+ "introduction": "שילוב זה אינו מתוחזק עוד, ואנו ממליצים לך לעבור לשילוב החדש של Z-Wave JS. אשף זה יסייע לך לעבור משילוב Z-Wave מדור קודם לשילוב Z-Wave JS החדש."
+ }
+ },
+ "network_management": {
+ "header": "ניהול רשת ה Z-Wave",
+ "introduction": "הפעל פקודות המשפיעות על רשת ה-Z Wave. לא תקבל משוב אם רוב הפקודות הצליחו, אך באפשרותך לבדוק את יומן ה-OZW כדי לנסות לגלות."
+ },
+ "network_status": {
+ "network_started": "רשת ה Z-Wave הופעלה",
+ "network_started_note_all_queried": "כל הצמתים נחקרו.",
+ "network_started_note_some_queried": "בוצעה שאילתה על צמתים ערים. צמתים ישנים יישאלו כאשר הם יתעוררו.",
+ "network_starting": "מפעיל את רשת Z-Wave ...",
+ "network_starting_note": "הדבר עשוי להימשך זמן מה בהתאם לגודל הרשת.",
+ "network_stopped": "רשת ה Z-Wave נעצרה"
+ },
+ "node_config": {
+ "config_parameter": "פרמטר תצורה",
+ "config_value": "ערך תצורה",
+ "false": "שקר",
+ "header": "אפשרויות תצורת צומת",
+ "seconds": "שניות",
+ "set_config_parameter": "הגדרת פרמטר תצורה",
+ "set_wakeup": "הגדרת מרווח זמן להתעוררות",
+ "true": "אמת"
+ },
+ "node_management": {
+ "add_to_group": "הוסף לקבוצה",
+ "entities": "ישויות של צומת זה",
+ "entity_info": "מידע על הישות",
+ "exclude_entity": "לא לכלול ישות זו ב-Home Assistant",
+ "group": "קבוצה",
+ "header": "ניהול צמתי Z-Wave",
+ "introduction": "הפעלת פקודות Z-Wave המשפיעות על צומת יחיד. יש לבחור צומת כדי לראות רשימה של פקודות זמינות.",
+ "max_associations": "כמות קישורים מקסימלי:",
+ "node_group_associations": "שיוכי קבוצות צמתים",
+ "node_protection": "הגנת צומת",
+ "node_to_control": "צומת לשליטה",
+ "nodes": "צמתים",
+ "nodes_hint": "יש לבחור צומת כדי להציג אפשרויות לפי צומת",
+ "nodes_in_group": "צמתים אחרים בקבוצה זו:",
+ "pooling_intensity": "עוצמת תשאול",
+ "protection": "הגנה",
+ "remove_broadcast": "הסר שידור רחב",
+ "remove_from_group": "הסר מהקבוצה",
+ "set_protection": "הגדרת הגנה"
+ },
+ "ozw_log": {
+ "header": "יומן OZW",
+ "introduction": "הצגת יומן הרישום. 0 הוא המינימום (טוען יומן שלם) ו-1000 הוא המקסימום. הטעינה תציג יומן רישום סטטי והסוף יתעדכן אוטומטית עם מספר השורות האחרון שצוין ביומן הרישום.",
+ "last_log_lines": "מספר שורות יומן אחרונות",
+ "load": "לִטעוֹן",
+ "tail": "סוף"
+ },
+ "services": {
+ "add_node": "הוסף צומת",
+ "add_node_secure": "הוסף צומת מאובטח",
+ "cancel_command": "ביטול פקודה",
+ "heal_network": "ריפוי רשת",
+ "heal_node": "תיקון יחידה",
+ "node_info": "מידע על צומת",
+ "print_node": "הדפסת יחידה",
+ "refresh_entity": "רענן ישות",
+ "refresh_node": "רענן יחידה",
+ "remove_failed_node": "הסר יחידה תקולה",
+ "remove_node": "הסר צומת",
+ "replace_failed_node": "החלף יחידה תקולה",
+ "save_config": "שמור תצורה",
+ "soft_reset": "איפוס רך",
+ "start_network": "הפעל רשת",
+ "stop_network": "עצור רשת",
+ "test_network": "בדיקת רשת",
+ "test_node": "בדיקת יחידה"
+ },
+ "values": {
+ "header": "ערכים"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "בטל הכללה",
+ "check_logs": "נא לבדוק את יומני הרישום לקבלת מידע נוסף.",
+ "choose_inclusion_strategy": "כיצד ברצונך להוסיף את המכשיר",
+ "controller_in_inclusion_mode": "בקר Z-Wave נמצא כעת במצב הכללה.",
+ "enter_qr_code": "הזנת ערך קוד QR",
+ "follow_device_instructions": "בצע את ההוראות המצורפת להתקן כדי להפעיל את השיוך בהתקן.",
+ "inclusion_failed": "לא היתה אפשרות להוסיף את ההתקן.",
+ "inclusion_finished": "ההתקן נוסף.",
+ "interview_failed": "ראיון ההתקן נכשל. ייתכן שמידע נוסף יהיה זמין ביומני הרישום.",
+ "interview_started": "ההתקן מתראיין. זה עלול לקחת זמן מה.",
+ "introduction": "אשף זה ינחה אותך לאורך הוספת צומת לרשת Z-Wave שלך.",
+ "provisioning_finished": "ההתקן נוסף. ברגע שתפעיל את זה, זה יהיה זמין.",
+ "qr_code": "קוד QR",
+ "qr_code_paragraph": "אם ההתקן שלך תומך ב-SmartStart, באפשרותך לסרוק את קוד ה-QR לצורך שיוך קל.",
+ "scan_qr_code": "סריקת קוד QR",
+ "searching_device": "חיפוש התקן",
+ "secure_inclusion_warning": "התקנים מאובטחים דורשים רוחב פס נוסף; התקנים מאובטחים רבים מדי יכולים להאט את רשת Z-Wave שלך. אנו ממליצים להשתמש בהכללה מאובטחת רק עבור התקנים הדורשים זאת, כגון מנעולים או פותחני דלתות מוסך.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "דוגמה: מנעולי דלת מדור קודם ללא תמיכה ב-S2",
+ "title": "מורשת S0"
+ },
+ "S2_AccessControl": {
+ "description": "דוגמה: מנעולי דלת ודלתות מוסך",
+ "title": "בקרת גישה S2"
+ },
+ "S2_Authenticated": {
+ "description": "דוגמה: תאורה, חיישנים ומערכות אבטחה",
+ "title": "S2 מאומת"
+ },
+ "S2_Unauthenticated": {
+ "description": "כמו S2 מאומת, אך ללא אימות שההתקן הנכון כלול",
+ "title": "S2 לא מאומת"
+ }
+ },
+ "select_camera": "בחר מצלמה",
+ "start_inclusion": "התחל הכללה",
+ "start_secure_inclusion": "התחל הכללה מאובטחת",
+ "title": "הוספת התקן Z-Wave",
+ "use_secure_inclusion": "השתמש בהכללה מאובטחת",
+ "view_device": "הצג התקן"
+ },
+ "common": {
+ "add_node": "הוספת התקן",
+ "back": "חזור",
+ "close": "סגור",
+ "heal_network": "ריפוי רשת",
+ "home_id": "מזהה בית",
+ "network": "רשת",
+ "node_id": "מזהה התקן",
+ "reconfigure_server": "קביעת תצורה מחדש של שרת",
+ "remove_node": "הסרת התקן",
+ "source": "מקור"
+ },
+ "dashboard": {
+ "devices": "{count, plural,\n one {התקן אחד}\n other {{count} התקנים}\n}",
+ "driver_version": "גירסת מנהל התקן",
+ "dump_dead_nodes_text": "חלק מההתקרנים שלך לא הגיבו ויש להניח שהם מתים. אלה לא ייוצאו במלואם.",
+ "dump_dead_nodes_title": "חלק מההתקנים שלך מתים",
+ "dump_debug": "הורדת נתונים",
+ "dump_not_ready_confirm": "הורדה",
+ "dump_not_ready_text": "אם תיצור ייצוא בזמן שלא כל ההתקנים מוכנים, ייתכן שתפספס את הנתונים הדרושים. תן לרשת שלך קצת זמן לבצע שאילתה על כל ההתקנים. האם ברצונך להמשיך עם הגיבוי?",
+ "dump_not_ready_title": "לא כל ההתקנים מוכנים עדיין",
+ "header": "נהל את רשת Z-Wave שלך",
+ "home_id": "מזהה בית",
+ "introduction": "ניהול רשת Z-Wave והתקני Z-Wave",
+ "nodes_ready": "התקנים מוכנים",
+ "not_ready": "{count} לא מוכן",
+ "provisioned_devices": "התקנים שהוקצו",
+ "server_url": "כתובת האתר של השרת",
+ "server_version": "גירסת שרת"
+ },
+ "device_info": {
+ "device_config": "קביעת תצורה של התקן",
+ "heal_node": "ריפוי התקן",
+ "highest_security": "האבטחה הגבוהה ביותר",
+ "is_secure": "מאובטח",
+ "node_ready": "התקן מוכן",
+ "node_status": "מצב התקן",
+ "reinterview_device": "מראיין את ההתקן מחדש",
+ "remove_failed": "הסרת התקן שנכשל",
+ "unknown": "לא ידוע",
+ "zwave_info": "מידע Z-Wave",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "גרסה {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "ריפוי הרשת בוטל.",
+ "healing_complete": "ריפוי הרשת הושלם.",
+ "healing_failed": "הריפוי נכשל. מידע נוסף עשוי להיות זמין ביומנים.",
+ "in_progress": "ריפוי הרשת בעיצומו. זה ייקח קצת זמן.",
+ "introduction": "התחל ריפוי רשת ברשת Z-Wave שלך. ריפוי רשת יגרום לכל ההתקנים לחשב מחדש את הנתיבים שלהם בחזרה לבקר ומומלץ אם העברת לאחרונה התקנים או הבקר שלך.",
+ "run_in_background": "באפשרותך לסגור תיבת דו שיח זו וריפוי הרשת ימשיך ברקע.",
+ "start_heal": "התחל ריפוי",
+ "stop_heal": "הפסק ריפוי",
+ "title": "רפא את רשת Z-Wave שלך",
+ "traffic_warning": "תהליך הריפוי מייצר כמות גדולה של תעבורה ברשת Z-Wave. הדבר עלול לגרום להתקנים להגיב באיטיות (או בכלל לא) בזמן שהריפוי מתבצע."
+ },
+ "heal_node": {
+ "healing_complete": "{device} נרפא.",
+ "healing_failed": "לא היתה אפשרות לרפא את {device}.",
+ "healing_failed_check_logs": "ייתכן שמידע נוסף יהיה זמין ביומני הרישום.",
+ "in_progress": "ריפוי {device} מתבצע כעת.",
+ "introduction": "אמור {device} לעדכן את נתיביו בחזרה לבקר. הדבר יכול לסייע בבעיות תקשורת אם העברת לאחרונה את ההתקן או את הבקר שלך.",
+ "network_heal_in_progress": "רשת Z-Wave כבר מתבצעת. נא להמתין לסיום ההתקן לפני ריפוי התקן בודד.",
+ "start_heal": "ריפוי התקן",
+ "title": "ריפוי התקן Z-Wave",
+ "traffic_warning": "תהליך הריפוי מייצר כמות גדולה של תעבורה ברשת Z-Wave. הדבר עלול לגרום להתקנים להגיב באיטיות (או בכלל לא) בזמן שההחלמה מתבצעת."
+ },
+ "logs": {
+ "download_logs": "הורדת יומנים",
+ "log_level": "רמת יומן",
+ "log_level_changed": "רמת היומן שונתה ל: {level}",
+ "subscribed_to_logs": "הרשם כמנוי להודעות יומן Z-Wave JS …",
+ "title": "יומני Z-Wave JS"
+ },
+ "navigation": {
+ "logs": "יומנים",
+ "network": "רשת"
+ },
+ "network_status": {
+ "connected": "מחובר",
+ "connecting": "מתחבר",
+ "unknown": "לא ידוע"
+ },
+ "node_config": {
+ "attribution": "הפרמטרים והתיאורים של תצורת ההתקן מסופקים על-ידי {device_database}",
+ "battery_device_notice": "התקני סוללה חייבים להיות ערים כדי לעדכן את תצורתם. נא עיין במדריך למשתמש לקבלת הוראות כיצד להעיר את ההתקן.",
+ "error_device_not_found": "ההתקן לא נמצא",
+ "header": "תצורת התקן Z-Wave",
+ "introduction": "ניהול והתאמת פרמטרי תצורה ספציפיים להתקן עבור ההתקן הנבחר",
+ "parameter": "פרמטר",
+ "parameter_is_read_only": "פרמטר זה מוגדר לקריאה בלבד.",
+ "set_param_accepted": "הפרמטר עודכן.",
+ "set_param_error": "אירעה שגיאה.",
+ "set_param_queued": "שינוי הפרמטר נכנס לתור ויעודכן כאשר ההתקן יתעורר.",
+ "zwave_js_device_database": "מאגר התקני Z-Wave JS"
+ },
+ "node_status": {
+ "alive": "חי",
+ "asleep": "ישן",
+ "awake": "ער",
+ "dead": "מת",
+ "unknown": "לא ידוע"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "אם תבטל את ההתנייה של ההתקן, הוא לא יתווסף ל-Home Assistant כאשר הוא מופעל. אם הוא כבר נוסף אל Home Assistant, הסרת ההתקן שהוקצה לא תסיר אותו מ-Home Assistant.",
+ "confirm_unprovision_title": "האם בוודאות ברצונך לבטל את חוסר ההתנייה של ההתקן?",
+ "dsk": "DSK",
+ "included": "כלול",
+ "not_included": "לא כלול",
+ "security_classes": "מחלקות אבטחה",
+ "unprovison": "ללא התניות"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "יהיה עליך להעיר התקנים המופעלים באמצעות סוללה לפני שתתחיל בראיון מחדש. יש לעיין במדריך למשתמש של ההתקן לקבלת הוראות להעיר את ההתקן.",
+ "in_progress": "ההתקן מתראיין. זה עלול לקחת זמן מה.",
+ "interview_complete": "ראיון ההתקן הושלם.",
+ "interview_failed": "ראיון ההתקן נכשל. ייתכן שמידע נוסף יהיה זמין ביומני הרישום.",
+ "introduction": "ראיינו מחדש התקן ברשת Z-Wave שלכם. יש להשתמש בתכונה זו אם הפונקציונליות של ההתקן שלך חסרה או שגויה.",
+ "run_in_background": "ניתן לסגור תיבת דו-שיח זו והראיון יימשך ברקע.",
+ "start_reinterview": "מתחיל ראיון מחדש",
+ "title": "ראיון מחדש של התקן Z-Wave"
+ },
+ "remove_failed_node": {
+ "in_progress": "הסרת ההתקן מתבצעת כעת.",
+ "introduction": "הסרת התקן שנכשל מרשת Z-Wave. יש להשתמש באפשרות זו אם אין באפשרותך להחריג התקן כרגיל מכיוון שהוא מקולקל.",
+ "removal_failed": "לא היתה אפשרות להסיר את ההתקן מרשת Z-Wave שלך.",
+ "removal_finished": "ההתקן {id} הוסר מרשת Z-Wave שלך.",
+ "remove_device": "הסרת התקן",
+ "title": "הסרת התקן Z-Wave שנכשל"
+ },
+ "remove_node": {
+ "cancel_exclusion": "בטל אי הכללה",
+ "controller_in_exclusion_mode": "בקר Z-Wave שלך נמצא כעת במצב אי הכללה.",
+ "exclusion_failed": "לא היתה אפשרות להסיר את ההתקן. נא לבדוק את יומני הרישום לקבלת מידע נוסף.",
+ "exclusion_finished": "ההתקן {id} הוסר מרשת Z-Wave שלך.",
+ "follow_device_instructions": "בצעו את ההוראות המצורף להתקן כדי להפעיל אי הכללה בהתקן.",
+ "introduction": "הסר התקן מרשת Z-Wave והסר את ההתקן והישויות המשויכים מ-Home Assistant.",
+ "start_exclusion": "התחל אי הכללה",
+ "title": "הסרת התקן Z-Wave"
+ },
+ "security_classes": {
+ "None": {
+ "title": "ללא"
+ },
+ "S0_Legacy": {
+ "description": "דוגמה: מנעולי דלת מדור קודם ללא תמיכה ב-S2",
+ "title": "מורשת S0"
+ },
+ "S2_AccessControl": {
+ "description": "דוגמה: מנעולי דלת ודלתות מוסך",
+ "title": "בקרת גישה S2"
+ },
+ "S2_Authenticated": {
+ "description": "דוגמה: תאורה, חיישנים ומערכות אבטחה",
+ "title": "S2 מאומת"
+ },
+ "S2_Unauthenticated": {
+ "description": "כמו S2 מאומת, אך ללא אימות שההתקן הנכון כלול",
+ "title": "S2 לא מאומת"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "תהיה לו גישה לכל הנתונים ב- Assistant Home.",
+ "hide_message": "בדוק מסמכים עבור רכיב panel_custom כדי להסתיר הודעה זו",
+ "question_trust": "האם אתה סומך על הפאנל החיצוני {name} ב-{link}?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "מאזינים פעילים",
+ "alert_event_type": "סוג האירוע הוא שדה חובה",
+ "available_events": "אירועים זמינים",
+ "count_listeners": " ({count} מאזינים)",
+ "data": "נתוני אירוע (YAML, אופציונלי)",
+ "description": "יריית אירוע במערכת",
+ "documentation": "תיעוד אירועים",
+ "event_fired": "אירוע {name} שוגר",
+ "fire_event": "שיגור אירוע",
+ "listen_to_events": "האזן לאירועים",
+ "listening_to": "מאזין ל",
+ "notification_event_fired": "האירוע {type} שוגר בהצלחה!",
+ "start_listening": "התחל להאזין",
+ "stop_listening": "עצור האזנה",
+ "subscribe_to": "אירוע להירשם אליו",
+ "title": "אירועים",
+ "type": "סוג אירוע"
+ },
+ "services": {
+ "accepts_target": "שירות זה מקבל יעד, לדוגמה: 'entity_id: light.bed_light'",
+ "all_parameters": "כל הפרמטרים הזמינים",
+ "call_service": "קריאה לשירות",
+ "column_description": "תיאור",
+ "column_example": "דוגמא",
+ "column_parameter": "פרמטר",
+ "description": "כלי הפיתוח של השירותים מאפשר לך לקרוא לכל שירות ב Home Assistant.",
+ "fill_example_data": "מלא נתונים לדוגמה",
+ "no_template_ui_support": "ממשק המשתמש אינו תומך בתבניות, עדיין תוכל להשתמש בעורך ה YAML.",
+ "title": "שירותים",
+ "ui_mode": "עבור למצב ממשק משתמש",
+ "yaml_mode": "עבור למצב YAML",
+ "yaml_parameters": "פרמטרים זמינים במצב YAML בלבד"
+ },
+ "states": {
+ "alert_entity_field": "ישות היא שדה חובה",
+ "attributes": "תכונות",
+ "copy_id": "העתק מזהה ללוח",
+ "current_entities": "ישויות נוכחיות",
+ "description1": "הגדר את ייצוג המצב הנוכחי של ישות במסגרת Home Assistant.",
+ "description2": "אם הישות שייכת להתקן, לא תהיה תקשורת ממשית עם התקן זה.",
+ "entity": "ישות",
+ "filter_attributes": "סנן תכונות",
+ "filter_entities": "סנן ישויות",
+ "filter_states": "סנן מצבים",
+ "last_changed": "שינוי אחרון",
+ "last_updated": "עודכן לאחרונה",
+ "more_info": "מידע נוסף",
+ "no_entities": "אין ישויות",
+ "set_state": "קבע מצב",
+ "state": "מצב",
+ "state_attributes": "תכונות מצב (YAML, אופציונלי)",
+ "title": "מצבים"
+ },
+ "statistics": {
+ "entity": "ישות",
+ "fix_issue": {
+ "fix": "תיקון הבעיה",
+ "units_changed": {
+ "clear": "מחיקת כל נתוני הסטטיסטיקה הישנים עבור ישות זו",
+ "fix": "תיקון הבעיה",
+ "title": "היחידה של ישות זו השתנתה",
+ "update": "עדכון ערכי הסטטיסטיקה ההיסטוריים מ-''{metadata_unit}'' אל ''{state_unit}''"
+ }
+ },
+ "issue": "בעיה",
+ "issues": {
+ "entity_no_longer_recorded": "ישות זו אינה מתועדת עוד.",
+ "entity_not_recorded": "ישות זו אינה נכללת בהקלטה.",
+ "no_state": "אין מצב זמין עבור ישות זו.",
+ "units_changed": "היחידה של ישות זו השתנתה מ-''{metadata_unit}'' אל ''{state_unit}''",
+ "unsupported_state_class": "מחלקת המצב ''{state_class}'' של ישות זו אינה נתמכת.",
+ "unsupported_unit": "היחידה (\"{state_unit}\") של ישות זו אינה תואמת ליחידה של מחלקת התקן ''{device_class}''.",
+ "unsupported_unit_metadata": "היחידה (''{metadata_unit}'') של הסטטיסטיקה המתועדת אינה תואמת ליחידה הנתמכת ''{supported_unit}'' של מחלקת ההתקן ''{device_class}''.",
+ "unsupported_unit_state": "היחידה (\"{state_unit}\") של ישות זו אינה תואמת ליחידה של מחלקת התקן ''{device_class}''."
+ },
+ "no_issue": "אין בעיה",
+ "title": "סטטיסטיקה"
+ },
+ "templates": {
+ "all_listeners": "תבנית זו מאזינה לכל האירועים שהשתנו על ידי המצב.",
+ "description": "תבניות מעובדות באמצעות מנגנון התבניות Jinja2 עם כמה הרחבות ספציפיות של Home Assistant.",
+ "domain": "תחום",
+ "editor": "עורך תבניות",
+ "entity": "ישות",
+ "jinja_documentation": "תיעוד תבנית Jinja2",
+ "listeners": "תבנית זו מאזינה לאירועים הבאים שהשתנו במצב:",
+ "no_listeners": "תבנית זו אינה מאזינה לאירועים כלשהם ולא תתעדכן באופן אוטומטי.",
+ "reset": "איפוס לתבנית הדגמה",
+ "result_type": "סוג תוצאה",
+ "template_extensions": "הרחבות תבנית של Home Assistant",
+ "time": "תבנית זו מתעדכנת בתחילת כל דקה.",
+ "title": "תבניות",
+ "unknown_error_template": "תבנית עיבוד שגיאות לא ידועה"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "ניטור התקנים בודדים",
+ "energy_distribution_title": "חלוקת אנרגיה",
+ "energy_gas_graph_title": "צריכת גז",
+ "energy_solar_graph_title": "ייצור סולארי",
+ "energy_sources_table_title": "מקורות",
+ "energy_usage_graph_title": "שימוש באנרגיה"
+ },
+ "charts": {
+ "by_device": "צריכה לפי התקן",
+ "solar": "שמשי",
+ "stat_house_energy_meter": "צריכת אנרגיה כוללת"
+ },
+ "setup": {
+ "back": "חזור",
+ "done": "הצג לי את לוח המחוונים לאנרגיה שלי!",
+ "next": "הבא"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "אתה יכול להשתמש בפונקציה זו רק לאחר שהשתלטת על ממשק המשתמש של Lovelace.",
+ "saving_failed": "שמירת תצורת ממשק המשתמש של Lovelace נכשלה.",
+ "yaml_unsupported": "אינך יכול להשתמש בפונקציה זו כשמשתמשים בממשק המשתמש של Lovelace במצב YAML."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "האם בוודאות ברצונך להריץ את הפעולה ''{action}''?",
+ "no_entity_more_info": "לא סופקה ישות עבור תיבת דו שיח של מידע נוסף",
+ "no_entity_toggle": "אין ישות שניתנה להחלפה",
+ "no_navigation_path": "לא צוין נתיב ניווט",
+ "no_service": "לא צוין שירות להרצה",
+ "no_url": "לא צוין כתובת אתר לפתיחה"
+ },
+ "confirm_delete": "האם בוודאות ברצונך למחוק את הכרטיס הזה?",
+ "empty_state": {
+ "go_to_integrations_page": "יש לעבור לדף השילובים.",
+ "no_devices": "דף זה מאפשר לך לשלוט בהתקנים שלך, אולם נראה שעדיין לא הגדרת התקנים. עבור לדף שילובים כדי להתחיל.",
+ "title": "ברוך הבא הביתה"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "כרטיס זה מציין כמה מהאנרגיה הנצרכת על ידי הבית שלך נוצרה באמצעות דלקים שאינם מאובנים כמו שמש, רוח וגרעין. כמה שיותר גבוה, יותר טוב!",
+ "non_fossil_energy_consumed": "צריכת אנרגיה לא מאובנת",
+ "non_fossil_energy_not_calculated": "לא היתה אפשרות לחשב אנרגיה שאינה מאובנת"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "שימוש באנרגיה"
+ },
+ "energy_distribution": {
+ "battery": "סוללה",
+ "gas": "גז",
+ "go_to_energy_dashboard": "עבור אל לוח המחוונים של האנרגיה",
+ "grid": "רשת",
+ "home": "בבית",
+ "non_fossil": "לא מאובן",
+ "solar": "שמש",
+ "title_today": "חלוקת אנרגיה כיום"
+ },
+ "energy_solar_graph": {
+ "forecast": "תחזית {name}",
+ "production": "הפקה {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "סך הכל סוללה",
+ "cost": "עלות",
+ "energy": "אנרגיה",
+ "grid_total": "סה\"כ רשת",
+ "source": "מקור",
+ "total_costs": "מחיר כולל"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "משולב מהרשת",
+ "consumed_battery": "צריכת סוללה",
+ "consumed_solar": "צריכה סולארית",
+ "total_consumed": "סה\"כ נצרך {num} קוט\"ש",
+ "total_returned": "סה\"כ הוחזר {num} קוט\"ש"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "אם המחט בסגול, החזרת יותר אנרגיה לרשת ממה שצרכת ממנה. אם זה בכחול, צרכת יותר אנרגיה מהרשת ממה שהחזרת.",
+ "energy_dependency": "כרטיס זה מציין את צריכת האנרגיה נטו שלך.",
+ "grid_neutrality_not_calculated": "לא היתה אפשרות לחשב את ניטרליות הרשת",
+ "net_consumed_grid": "נטו הנצרך מהרשת",
+ "net_returned_grid": "נטו חזרה לרשת",
+ "red_green_color_explain": "אם זה ירוק, זה אומר שהפקת יותר אנרגיה מזו שצרכת מהרשת. אם זה אדום, זה אומר שהסתמכת על הרשת עבור חלק מצריכת האנרגיה של הבית שלך."
+ },
+ "loading": "טוען...",
+ "no_data": "אין נתונים להצגה. ייתכן שיחלפו עד שעתיים עד שנתונים חדשים יגיעו לאחר קביעת התצורה של לוח המחוונים לאנרגיה.",
+ "no_data_period": "אין נתונים לתקופה זו.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "כרטיס זה מציין כמה מהאנרגיה הסולארית שהפקת שימשה את ביתך במקום להיות מוחזרת לרשת.",
+ "card_indicates_solar_energy_used_charge_home_bat": "אם המספר הזה בדרך כלל נמוך מאוד, מה שמעיד על עודף ייצור סולארי, כדאי לשקול להטעין סוללה ביתית או מכונית חשמלית מהפאנלים הסולאריים שלך בזמן ייצור סולארי גבוה.",
+ "not_produced_solar_energy": "לא ייצרת שום אנרגיה סולארית",
+ "self_consumed_solar_could_not_calc": "לא היתה אפשרות לחשב צריכת אנרגיה סולארית עצמית",
+ "self_consumed_solar_energy": "צריכת אנרגיה סולארית עצמית"
+ }
+ },
+ "entities": {
+ "never_triggered": "מעולם לא הופעל"
+ },
+ "iframe": {
+ "error_secure_context": "לא ניתן לטעון מסגרות ifram שמצביעות על אתרים המשתמשים ב-{target_protocol} אם Home Assistant מוגש באמצעות {context_protocol}."
+ },
+ "map": {
+ "reset_focus": "איפוס המוקד"
+ },
+ "picture-elements": {
+ "call_service": "קריאה לשירות {name}",
+ "hold": "החזק:",
+ "more_info": "הצג מידע נוסף: {name}",
+ "navigate_to": "נווט אל {location}",
+ "tap": "הקש:",
+ "toggle": "החלף מצב {name}",
+ "url": "פתח חלון אל {url_path}"
+ },
+ "safe-mode": {
+ "description": "Home Assistant נתקל בבעיות בעת טעינת התצורה שלך וכעת הוא פועל במצב בטוח. עיין ביומן השגיאות כדי לראות מה השתבש.",
+ "header": "מצב בטוח מופעל"
+ },
+ "shopping-list": {
+ "add_item": "הוסף פריט",
+ "checked_items": "פריטים מסומנים",
+ "clear_items": "נקה פריטים מסומנים",
+ "drag_and_drop": "גרור ושחרר",
+ "reorder_items": "סדר מחדש פריטים"
+ },
+ "show_more_info": "הצגת מידע נוסף",
+ "starting": {
+ "description": "Home Assistant מאתחל. נא להמתין…"
+ }
+ },
+ "changed_toast": {
+ "message": "תצורת ממשק המשתמש Lovelace עבור לוח בקרה זה עודכנה. האם לרענן כדי לראות את השינויים?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "יום",
+ "month": "חודש",
+ "next": "הבא",
+ "previous": "הקודם",
+ "today": "היום",
+ "week": "שבוע",
+ "year": "שנה"
+ },
+ "timestamp-display": {
+ "invalid": "תאריך זמן לא חוקי",
+ "invalid_format": "פורמט תצוגה לא חוקי"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "הפעל שירות",
+ "default_action": "פעולת ברירת מחדל",
+ "more-info": "מידע נוסף",
+ "navigate": "נווט",
+ "none": "אין פעולה",
+ "toggle": "החלף מצב",
+ "url": "כתובת אתר"
+ },
+ "navigation_path": "נתיב ניווט",
+ "url_path": "נתיב כתובת URL"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "מצבים זמינים",
+ "description": "כרטיס לוח האזעקה מאפשר לך לחמש ולנטרל את שילובי לוח הבקרה של האזעקה.",
+ "name": "לוח אזעקה"
+ },
+ "area": {
+ "description": "כרטיס האזור מציג באופן אוטומטי ישויות של אזור מסוים.",
+ "name": "איזור",
+ "show_camera": "הצג הזנת מצלמה במקום תמונת אזור"
+ },
+ "button": {
+ "default_action_help": "פעולת ברירת המחדל תלויה ביכולות הישות, היא תוחלף או שתוצג תיבת הדו שיח של מידע נוסף.",
+ "description": "כרטיס 'לחצן' מאפשר לך להוסיף לחצנים לביצוע משימות.",
+ "name": "כפתור"
+ },
+ "calendar": {
+ "calendar_entities": "ישויות לוח שנה",
+ "description": "כרטיס לוח השנה מציג לוח שנה הכולל תצוגות יום, שבוע ורשימה",
+ "inital_view": "תצוגה ראשונית",
+ "name": "לוח שנה",
+ "views": {
+ "dayGridDay": "יום",
+ "dayGridMonth": "חודש",
+ "listWeek": "רשימה"
+ }
+ },
+ "conditional": {
+ "card": "כרטיס",
+ "change_type": "שנה סוג",
+ "condition_explanation": "הכרטיס יוצג כאשר מתקיימים *כל* התנאים להלן.",
+ "conditions": "תנאים",
+ "current_state": "נוכחי",
+ "description": "הכרטיס המותנה מציג כרטיס נוסף המבוסס על מצבי ישויות.",
+ "name": "מותנה",
+ "state_equal": "כאשר המצב (State) שווה ל",
+ "state_not_equal": "כאשר המצב (State) אינו שווה ל"
+ },
+ "config": {
+ "optional": "אופציונלי",
+ "required": "נדרש"
+ },
+ "entities": {
+ "description": "כרטיס היישויות הוא סוג הכרטיס הנפוץ ביותר. הוא מקבץ ישויות יחד לרשימות.",
+ "edit_special_row": "הצג את הפרטים של שורה זו על ידי לחיצה על לחצן העריכה",
+ "entity_row": {
+ "attribute": "שדה",
+ "button": "כפתור",
+ "buttons": "כפתורים",
+ "call-service": "הפעל שירות",
+ "cast": "Cast",
+ "conditional": "מותנה",
+ "divider": "מפריד",
+ "section": "מקטע",
+ "weblink": "קישור"
+ },
+ "entity_row_editor": "עורך שורת ישות",
+ "name": "ישויות",
+ "secondary_info_values": {
+ "brightness": "בהירות",
+ "entity-id": "מזהה ישות",
+ "last-changed": "השתנה לאחרונה",
+ "last-triggered": "הופעל לאחרונה",
+ "last-updated": "עדכון אחרון",
+ "none": "אין מידע משני",
+ "position": "מיקום",
+ "tilt-position": "הטה מיקום"
+ },
+ "show_header_toggle": "הצג שינוי מצב כותרת?",
+ "special_row": "שורה מיוחדת",
+ "toggle": "החלף מצב ישויות."
+ },
+ "entity-filter": {
+ "description": "הכרטיס 'מסנן ישויות' מאפשר לך להגדיר רשימת ישויות שברצונך לעקוב אחריהן רק במצב מסוים.",
+ "name": "מסנן ישויות"
+ },
+ "entity": {
+ "description": "כרטיס היישות מעניק לך סקירה מהירה של מצב היישות שלך.",
+ "name": "ישות"
+ },
+ "gauge": {
+ "description": "כרטיס ה Gauge הוא כרטיס בסיסי המאפשר לראות חזותית נתוני חיישן.",
+ "name": "מד",
+ "needle_gauge": "להציג כמחוון מחט?",
+ "severity": {
+ "define": "הגדר חומרה?",
+ "green": "ירוק",
+ "red": "אדום",
+ "yellow": "צהוב"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "יחס תצוגה",
+ "attribute": "שדה",
+ "camera_image": "ישות מצלמה",
+ "camera_view": "תצוגת מצלמה",
+ "days_to_show": "ימים להצגה",
+ "double_tap_action": "פעולת הקשה כפולה",
+ "entities": "ישויות",
+ "entity": "ישות",
+ "hold_action": "פעולת החזקה",
+ "hours_to_show": "שעות להצגה",
+ "icon": "סמל",
+ "icon_height": "גובה סמליל",
+ "image": "נתיב תמונה",
+ "manual": "ידני",
+ "manual_description": "צריך להוסיף כרטיס מותאם אישית או רק רוצה לכתוב באופן ידני את YAML?",
+ "maximum": "מקסימום",
+ "minimum": "מינימום",
+ "name": "שם",
+ "no_theme": "אין ערכת נושא",
+ "refresh_interval": "מרווח זמן לרענון",
+ "search": "חיפוש",
+ "secondary_info_attribute": "שדה מידע משני",
+ "show_icon": "הצג סמל?",
+ "show_name": "להציג שם?",
+ "show_state": "הצג מצב?",
+ "state": "מצב",
+ "state_color": "צבע סמלילים על סמך מצב?",
+ "tap_action": "פעולת הקשה",
+ "theme": "ערכת נושא",
+ "title": "כותרת",
+ "unit": "יחידה",
+ "url": "כתובת אתר"
+ },
+ "glance": {
+ "columns": "עמודות",
+ "description": "כרטיס ה־Glance שימושי עבור קיבוץ מספר חיישנים לסקירה קומפקטית.",
+ "name": "מבט מהיר"
+ },
+ "grid": {
+ "columns": "עמודות",
+ "description": "כרטיס הרשת מאפשר לך להציג כרטיסים מרובים ברשת.",
+ "name": "רשת",
+ "square": "הצג כרטיסים כריבועים"
+ },
+ "history-graph": {
+ "description": "הכרטיס History Graph מאפשר לך להציג גרף עבור כל אחת מהישויות המפורטות.",
+ "name": "גרף ההיסטוריה"
+ },
+ "horizontal-stack": {
+ "description": "כרטיס הערימה האופקית מאפשר לכם לערום יחד מספר כרטיסים, כך שהם תמיד יושבים אחד ליד השני במרחב של טור אחד.",
+ "name": "עימוד אופקי"
+ },
+ "humidifier": {
+ "description": "כרטיס מכשיר אדים מעניק שליטה על ישות מכשיר האדים שלך ומאפשר לך לשנות את הלחות והמצב של הישות.",
+ "name": "מכשיר אדים"
+ },
+ "iframe": {
+ "description": "כרטיס דף האינטרנט מאפשר לך להטביע את דף האינטרנט המועדף עליך ישירות לתוך Home Assistant.",
+ "name": "דף אינטרנט"
+ },
+ "light": {
+ "description": "כרטיס האור מאפשר לך לשנות את בהירות האור.",
+ "name": "תאורה"
+ },
+ "logbook": {
+ "description": "כרטיס יומן הרישום מציג רשימה של אירועים עבור ישויות.",
+ "name": "יומן רישום"
+ },
+ "map": {
+ "dark_mode": "מצב כהה?",
+ "default_zoom": "זום התחלתי",
+ "description": "כרטיס המפה המאפשר להציג ישויות במפה.",
+ "geo_location_sources": "מקורות מיקום גאוגרפי",
+ "hours_to_show": "שעות להצגה",
+ "name": "מפה",
+ "source": "מקור"
+ },
+ "markdown": {
+ "content": "תוכן",
+ "description": "כרטיס ה- Markdown משמש להצגת ה- Markdown.",
+ "name": "סימון כלפי מטה"
+ },
+ "media-control": {
+ "description": "כרטיס בקרת המדיה משמש להצגת ישויות נגני מדיה בממשק עם פקדים קלים לשימוש.",
+ "name": "שליטה במדיה"
+ },
+ "picture-elements": {
+ "description": "כרטיס Picture Elements הוא אחד מסוגי הכרטיסים המגוונים ביותר. הכרטיסים מאפשרים למקם סמלים או טקסט ואפילו שירותים! על תמונה המבוססת על קואורדינטות.",
+ "name": "רכיבי תמונה"
+ },
+ "picture-entity": {
+ "description": "כרטיס Picture Entity מציג יישות בצורה של תמונה. במקום תמונות מכתובת URL, זה יכול גם להציג את התמונה של ישויות מצלמה.",
+ "name": "ישות תמונה"
+ },
+ "picture-glance": {
+ "description": "הכרטיס מבט מהיר על תמונה מציג תמונה ואת מצבי הישות המתאימים כסמל. הישויות בצד ימין מאפשרות פעולות דו מצביות, אחרות מציגות את תיבת הדו שיח של מידע נוסף.",
+ "name": "מבט מהיר על תמונה",
+ "state_entity": "ישות מצב"
+ },
+ "picture": {
+ "description": "כרטיס התמונה מאפשר לך להגדיר תמונה שתשמש לניווט ליעדים שונים בממשק שלך או לקריאה לשירות.",
+ "name": "תמונה"
+ },
+ "plant-status": {
+ "description": "כרטיס סטטוס הצמח מיועד לכל הבוטנאים המקסימים שיש שם.",
+ "name": "מצב הצמח"
+ },
+ "sensor": {
+ "description": "כרטיס החיישן מעניק לך סקירה מהירה של מצב החיישנים שלך באמצעות גרף אופציונלי להמחשת שינוי לאורך זמן.",
+ "graph_type": "סוג גרף",
+ "name": "חיישן",
+ "show_more_detail": "הצג פרטים נוספים"
+ },
+ "shopping-list": {
+ "description": "כרטיס רשימת הקניות מאפשר לך להוסיף, לערוך, לבצע הוצאה ולנקות פריטים מרשימת הקניות שלך.",
+ "integration_not_loaded": "כרטיס זה דורש את הגדרת השילוב 'shopping_list'.",
+ "name": "רשימת קניות"
+ },
+ "statistics-graph": {
+ "description": "כרטיס גרף סטטיסטיקה מאפשר לך להציג גרף של הסטטיסטיקה עבור כל אחת מהישויות המפורטות.",
+ "name": "גרף סטטיסטיקה",
+ "period": "תקופה",
+ "periods": {
+ "5minute": "5 דקות",
+ "day": "יום",
+ "hour": "שעה",
+ "month": "חודש"
+ }
+ },
+ "thermostat": {
+ "description": "כרטיס וסת החום נותן שליטה על ישות האקלים שלך. מאפשר לך לשנות את הטמפרטורה ואת המצב של הישות.",
+ "name": "וסת חום"
+ },
+ "vertical-stack": {
+ "description": "כרטיס המחסנית האנכית מאפשר לך לקבץ כרטיסים מרובים כך שהם תמיד יושבים באותה עמודה.",
+ "name": "עימוד אנכי"
+ },
+ "weather-forecast": {
+ "description": "כרטיס תחזית מזג האוויר מציג את מזג האוויר. מאוד שימושי לכלול בממשקים שאנשים מציגים על הקיר.",
+ "name": "תחזית מזג האוויר",
+ "show_both": "הצגת מזג אוויר ותחזית נוכחיים",
+ "show_forecast": "הצג תחזית",
+ "show_only_current": "הצגת מזג אוויר נוכחי בלבד",
+ "show_only_forecast": "הצגת תחזית בלבד"
+ }
+ },
+ "cardpicker": {
+ "by_card": "לפי כרטיס",
+ "by_entity": "לפי ישות",
+ "custom_card": "מותאם אישית",
+ "domain": "תחום",
+ "entity": "ישות",
+ "no_description": "אין תיאור זמין"
+ },
+ "common": {
+ "add": "הוסף",
+ "clear": "נקה",
+ "edit": "ערוך",
+ "none": "ללא"
+ },
+ "edit_badges": {
+ "panel_mode": "תגים אלה לא יוצגו מאחר שתצוגה זו נמצאת במצב \"לוח\".",
+ "view_no_badges": "סוג התצוגה הנוכחי אינו תומך בתגים."
+ },
+ "edit_card": {
+ "add": "הוסף כרטיסייה",
+ "clear": "נקה",
+ "confirm_cancel": "האם בוודאות ברצונך לבטל?",
+ "delete": "מחק כרטיס",
+ "duplicate": "שכפל כרטיס",
+ "edit": "ערוך",
+ "header": "תצורת כרטיסייה",
+ "move": "עבור לתצוגה",
+ "move_after": "העבר כרטיס אחרי",
+ "move_before": "העבר כרטיס לפני",
+ "move_down": "הזזת כרטיס למטה",
+ "move_up": "הזזת כרטיס למעלה",
+ "options": "אפשרויות נוספות",
+ "pick_card": "איזה כרטיס ברצונך להוסיף?",
+ "pick_card_view_title": "איזה כרטיס ברצונך להוסיף לתצוגת {name}?",
+ "search_cards": "כרטיסי חיפוש",
+ "show_code_editor": "הצג עורך קוד",
+ "show_visual_editor": "הצג עורך ויזואלי",
+ "toggle_editor": "עורך בורר דו-מצבי",
+ "typed_header": "תצורת כרטיס {type}",
+ "unsaved_changes": "יש לך שינויים שלא נשמרו"
+ },
+ "edit_lovelace": {
+ "edit_title": "ערוך כותרת",
+ "explanation": "כותרת זו מוצגת מעל לכל התצוגות שלך בממשק המשתמש של Lovelace.",
+ "header": "כותרת ממשק המשתמש של Lovelace",
+ "title": "כותרת"
+ },
+ "edit_view": {
+ "add": "הוסף תצוגה",
+ "delete": "מחק תצוגה",
+ "edit": "ערוך תצוגה",
+ "header": "הצג תצורה",
+ "header_name": "הצג את תצורת {name}",
+ "move_left": "הזז את התצוגה שמאלה",
+ "move_right": "הזז את התצוגה ימינה",
+ "tab_badges": "תגים",
+ "tab_settings": "הגדרות",
+ "tab_visibility": "ניראות",
+ "type": "סוג תצוגה",
+ "types": {
+ "masonry": "לבנים",
+ "panel": "לוח (כרטיס אחד)",
+ "sidebar": "סרגל הצד"
+ },
+ "visibility": {
+ "select_users": "בחר אילו משתמשים צריכים לראות תצוגה זו בתפריט"
+ }
+ },
+ "header": "ערוך UI",
+ "header-footer": {
+ "choose_header_footer": "בחר {type}",
+ "footer": "כותרת תחתונה",
+ "header": "כותרת עליונה",
+ "types": {
+ "buttons": {
+ "name": "כפתורים"
+ },
+ "graph": {
+ "name": "גרף"
+ },
+ "picture": {
+ "name": "תמונה"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "נהל לוחות מחוונים",
+ "manage_resources": "נהל משאבים",
+ "open": "פתיחת תפריט ממשק המשתמש Lovelace",
+ "raw_editor": "עורך תצורה גולמית"
+ },
+ "migrate": {
+ "header": "תצורה אינה תואמת",
+ "migrate": "העבר תצורה",
+ "para_migrate": "Home Assistant יכול להוסיף מזהים לכל הכרטיסים והתצוגות שלך באופן אוטומטי עבורך על ידי לחיצה על לחצן 'העבר תצורה'.",
+ "para_no_id": "האלמנט הנוכחי לא מכיל מזהה יחודיי. בבקשה הוסף מזהה יחודי לאלמט זה בקובץ 'ui-lovelace.yaml'."
+ },
+ "move_card": {
+ "header": "בחר תצוגה שאליה להעביר את הכרטיס"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "אנו ניצור אוטומטית את תצוגות ממשק המשתמש של Lovelace עם האזורים וההתקנים שלך אם תסיר את קונפיגורציית ממשק המשתמש שלך ב-Lovelace.",
+ "confirm_remove_config_title": "האם בוודאות ברצונך להסיר את תצורת ממשק המשתמש של Lovelace?",
+ "confirm_unsaved_changes": "יש לך שינויים שלא נשמרו, אתה בטוח שברצונך לצאת?",
+ "confirm_unsaved_comments": "ייתכן שהתצורה שלך מכילה הערות, הערות אלה לא יישמרו. האם ברצונך להמשיך?",
+ "error_invalid_config": "התצורה שלך אינה חוקית: {error}",
+ "error_parse_yaml": "לא ניתן לנתח את ה-YAML: {error}",
+ "error_remove": "לא ניתן להסיר את התצורה: {error}",
+ "error_save_yaml": "אין אפשרות לשמור את ה-YAML: {error}",
+ "header": "עריכת תצורה",
+ "lovelace_changed": "התצורה של Lovelace עודכנה, האם ברצונך לטעון את התצורה המעודכנת בעורך ולאבד את השינויים הנוכחיים שלך?",
+ "reload": "טען מחדש",
+ "resources_moved": "אין להוסיף עוד משאבים לתצורת Lovelace אך ניתן להוסיף אותם בלוח התצורה של Lovelace.",
+ "save": "שמור",
+ "saved": "נשמר",
+ "unsaved_changes": "שינויים שלא נשמרו"
+ },
+ "save_config": {
+ "close": "סגור",
+ "empty_config": "התחל עם לוח בקרה ריק",
+ "header": "קח שליטה על Lovelace ממשק המשתמש שלך",
+ "para": "לוח המחוונים הזה מתוחזק כעת על ידי Home Assistant. זה מתעדכן אוטומטית כאשר ישויות חדשות או רכיבי ממשק משתמש Lovelace זמינים. אם אתה לוקח שליטה, לוח המחוונים הזה כבר לא יעודכן אוטומטית. אתה תמיד יכול ליצור לוח מחוונים חדש בתצורה כדי לשחק איתו.",
+ "para_sure": "האם בוודאות ברצונך לקחת שליטה על ממשק המשתמש?",
+ "save": "קח שליטה",
+ "yaml_config": "כדי לעזור לך להתחיל הנה התצורה הנוכחית של לוח מחוונים זה:",
+ "yaml_control": "כדי להשתלט על מצב YAML, יש ליצור קובץ YAML עם השם שציינת בתצורה שלך עבור לוח המחוונים הזה, או ברירת המחדל 'ui-lovelace.yaml'.",
+ "yaml_mode": "אתה משתמש במצב YAML עבור לוח מחוונים זה ולכן אין באפשרותך לשנות את קונפיגורצית Lovelace מממשק המשתמש. אם ברצונך לנהל לוח מחוונים זה מממשק המשתמש, הסר 'mode: yaml' מתצורת Loverlace ב 'configuration.yaml.'."
+ },
+ "select_view": {
+ "dashboard_label": "לוח בקרה",
+ "header": "בחר תצוגה",
+ "views_label": "תצוגה"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "עורך כותרת תחתונה",
+ "header": "עורך כותרת עליונה",
+ "row": "עורך שורות ישות"
+ }
+ },
+ "suggest_card": {
+ "add": "הוסף לממשק המשתמש של Lovelace",
+ "create_own": "בחר כרטיס אחר",
+ "header": "יצרנו הצעה עבורך"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "תצוגה זו מכילה יותר מכרטיס אחד, אך בתצוגת פאנל ניתן להציג כרטיס אחד בלבד."
+ }
+ }
+ },
+ "menu": {
+ "close": "סגור",
+ "configure_ui": "ערוך לוח בקרה",
+ "exit_edit_mode": "צא ממצב עריכה של ממשק המשתמש",
+ "help": "עזרה",
+ "reload_resources": "רענן משאבים",
+ "start_conversation": "התחל שיחה"
+ },
+ "reload_lovelace": "טען מחדש את ממשק המשתמש",
+ "reload_resources": {
+ "refresh_body": "עליך לרענן את הדף כדי להשלים את הטעינה מחדש. האם ברצונך לרענן כעת?",
+ "refresh_header": "האם ברצונך לרענן?"
+ },
+ "unused_entities": {
+ "available_entities": "אלה הן הישויות הזמינות, אך עדיין אינן בממשק המשתמש של Lovelace.",
+ "domain": "תחום",
+ "entity": "ישות",
+ "entity_id": "מזהה ישות",
+ "last_changed": "השתנה לאחרונה",
+ "no_data": "לא נמצאו ישויות שאינן בשימוש",
+ "search": "חיפוש ישויות",
+ "select_to_add": "בחר את הישויות שברצונך להוסיף לכרטיס ולחץ על כפתור הוסף כרטיס.",
+ "title": "ישויות שאינן בשימוש"
+ },
+ "views": {
+ "confirm_delete": "למחוק תצוגה?",
+ "confirm_delete_existing_cards": "מחיקת תצוגה זו תסיר גם את הכרטיסים",
+ "confirm_delete_existing_cards_text": "האם בוודאות ברצונך למחוק את התצוגה ''{name}'' שלך? התצוגה כוללת {number} כרטיסים שיימחקו. לא ניתן לבטל פעולה זו.",
+ "confirm_delete_text": "האם בוודאות ברצונך למחוק את התצוגה \"{name}\"?"
+ },
+ "warning": {
+ "attribute_not_found": "השדה {attribute} אינו זמין ב־{entity}",
+ "entity_non_numeric": "הישות אינה מספרית: {entity}",
+ "entity_not_found": "הישות אינה זמינה: {entity}",
+ "entity_unavailable": "הישות אינה זמינה כרגע: {entity}",
+ "starting": "Home Assistant באיתחול, ייתכן שלא הכל יהיה זמין עדיין"
+ }
+ },
+ "mailbox": {
+ "delete_button": "מחיקה",
+ "delete_prompt": "למחוק הודעה זו?",
+ "empty": "אין לך הודעות",
+ "playback_title": "הודעת ניגון"
+ },
+ "map": {
+ "edit_zones": "עריכת אזורים"
+ },
+ "my": {
+ "component_not_loaded": "הפניה זו אינה נתמכת על ידי מופע ה-Home Assistant שלך. אתה זקוק לשילוב {integration} כדי להשתמש בהפניה מחדש.",
+ "documentation": "תיעוד",
+ "error": "אירעה שגיאה לא ידועה",
+ "faq_link": "שאלות נפוצות על Home Assistant שלי",
+ "no_supervisor": "הפניה זו אינה נתמכת על ידי התקנת ה-Home Assistant שלך. זה זקוק למערכת ההפעלה Assistant Home או לשיטת ההתקנה בפיקוח Assistant Home. למידע נוסף, עיין ב-{docs_link}.",
+ "not_supported": "הפניה זו אינה נתמכת על ידי מופע ה-Home Assistant שלך. בדוק ב-{link} את ההפניות הנתמכות ואת הגרסה שהוצגה."
+ },
+ "page-authorize": {
+ "abort_intro": "הכניסה בוטלה",
+ "authorizing_client": "אתה עומד לתת גישה ל{clientId} עבור הHome Assistant שלך.",
+ "form": {
+ "error": "שגיאה: {error}",
+ "next": "התחברות",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "פג תוקף ההפעלה, נא להתחבר שוב."
+ },
+ "error": {
+ "invalid_auth": "שם משתמש או סיסמה אינם חוקיים",
+ "invalid_code": "קוד אימות לא חוקי"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "סיסמה",
+ "username": "שם משתמש"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "קוד אימות דו שלבי"
+ },
+ "description": "פתח את **{mfa_module_name}** במכשיר שלך כדי להציג את קוד האימות הדו שלבי ולאמת את הזהות שלך:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "פג תוקף ההפעלה, נא להתחבר שוב."
+ },
+ "error": {
+ "invalid_auth": "שם משתמש או סיסמה אינם חוקיים",
+ "invalid_code": "קוד אימות לא חוקי"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "סיסמה",
+ "username": "שם משתמש"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "קוד אימות דו שלבי"
+ },
+ "description": "פתח את **{mfa_module_name}** במכשיר שלך כדי להציג את קוד האימות הדו שלבי ולאמת את הזהות שלך:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "פג תוקף ההפעלה, נא להתחבר שוב.",
+ "no_api_password_set": "לא הגדרת את סיסמת הAPI."
+ },
+ "error": {
+ "invalid_auth": "סיסמת API לא חוקית",
+ "invalid_code": "קוד אימות לא חוקי"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "סיסמת הAPI."
+ },
+ "description": "אנא הזן את סיסמת ה-API בתצורת ה-HTTP שלך:"
+ },
+ "mfa": {
+ "data": {
+ "code": "קוד אימות דו שלבי"
+ },
+ "description": "פתח את **{mfa_module_name}** במכשיר שלך כדי להציג את קוד האימות הדו שלבי ולאמת את הזהות שלך:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "המחשב שלך אינו מורשה."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "משתמש"
+ },
+ "description": "בחר משתמש שאליו ברצונך להתחבר:"
+ }
+ }
+ }
+ },
+ "start_over": "התחל מחדש",
+ "unknown_error": "משהו השתבש",
+ "working": "אנא המתן"
+ },
+ "initializing": "מאתחל",
+ "logging_in_to_with": "כניסה אל **{locationName}** באמצעות **{authProviderName}**.",
+ "logging_in_with": "מתחבר עם **{authProviderName}**.",
+ "pick_auth_provider": "או התחבר עם",
+ "store_token": "השאר אותי מחובר"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "על ידי {name}",
+ "introduction": "ברוך הבא הביתה! הגעת להדגמת Home Assistant שבה אנו מציגים את ה- UI הטובים ביותר שנוצרו על ידי הקהילה שלנו.",
+ "learn_more": "למידע נוסף על Home Assistant",
+ "next_demo": "ההדגמה הבאה"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "פעילות",
+ "air": "אוויר",
+ "commute_home": "זמן נסיעה הביתה",
+ "entertainment": "בידור",
+ "hdmi_input": "כניסת HDMI",
+ "hdmi_switcher": "מחליף HDMI",
+ "information": "מידע",
+ "lights": "אורות",
+ "morning_commute": "נסיעת בוקר",
+ "total_tv_time": "סך הכל זמן טלוויזיה",
+ "turn_tv_off": "כבה את הטלוויזיה",
+ "volume": "ווליום"
+ },
+ "names": {
+ "family_room": "חדר משפחה",
+ "hallway": "מסדרון",
+ "kitchen": "מטבח",
+ "left": "שמאל",
+ "master_bedroom": "חדר שינה ראשי",
+ "mirror": "מראה",
+ "patio": "פטיו",
+ "right": "ימין",
+ "temperature_study": "לימוד טמפרטורה",
+ "upstairs": "למעלה"
+ },
+ "unit": {
+ "minutes_abbr": "דקות",
+ "watching": "צופה"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "הבא"
+ },
+ "core-config": {
+ "button_detect": "לזהות",
+ "finish": "הבא",
+ "intro": "שלום {name} , ברוך הבא ל- Home Assistant. איך היית רוצה לקרוא לבית שלך?",
+ "intro_location": "אנחנו רוצים לדעת איפה אתה גר. מידע זה יעזור עם הצגת מידע והגדרת אוטומציה מבוססת שמש. נתונים אלה לעולם אינם משותפים מחוץ לרשת שלך.",
+ "intro_location_detect": "אנו יכולים לעזור לך למלא מידע זה על ידי ביצוע בקשה חד פעמית לשירות חיצוני.",
+ "location_name": "שם ההתקנה של Home Assistant שלך",
+ "location_name_default": "בית"
+ },
+ "finish": "סיום",
+ "integration": {
+ "finish": "סיום",
+ "intro": "התקנים ושירותים מיוצגים ב-Home Assistant כשילוסים. באפשרותך להגדיר אותם כעת, או לעשות זאת מאוחר יותר ממסך התצורה.",
+ "more_integrations": "עוד"
+ },
+ "intro": "האם ברצונך להעיר את הבית שלך, לתבוע בחזרה את הפרטיות שלך ולהצטרף לקהילה עולמית של אנשים חושבים?",
+ "next": "הבא",
+ "restore": {
+ "addons": "תוספים",
+ "confirm_password": "אישור סיסמת גיבוי",
+ "description": "לחלופין, באפשרותך לשחזר מגיבוי קודם.",
+ "folders": "תיקיות",
+ "full_backup": "גיבוי מלא",
+ "hide_log": "הסתר יומן מלא",
+ "in_progress": "שחזור מתבצע",
+ "partial_backup": "גיבוי חלקי",
+ "password": "סיסמת גיבוי",
+ "password_protection": "הגנה באמצעות סיסמה",
+ "select_type": "בחר מה לשחזר",
+ "show_log": "הצג יומן מלא",
+ "type": "סוג נקודת גיבוי"
+ },
+ "user": {
+ "create_account": "צור חשבון",
+ "data": {
+ "name": "שם",
+ "password": "סיסמה",
+ "password_confirm": "אשר סיסמה",
+ "username": "שם משתמש"
+ },
+ "error": {
+ "password_not_match": "הסיסמאות אינן תואמות",
+ "required_fields": "יש למלא את כל השדות הדרושים"
+ },
+ "intro": "בואו נתחיל על ידי יצירת חשבון משתמש.",
+ "required_field": "נדרש"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "ביטול נעילה של תכונות מתקדמות.",
+ "link_promo": "למד עוד",
+ "title": "מצב מתקדם"
+ },
+ "change_password": {
+ "confirm_new_password": "אשר סיסמה חדשה",
+ "current_password": "סיסמה נוכחית",
+ "error_new_is_old": "הסיסמה חדשה חייבת להיות שונה מהסיסמה הנוכחית",
+ "error_new_mismatch": "ערכי הסיסמה החדשים שהוזנו אינם תואמים",
+ "error_required": "נדרש",
+ "header": "שינוי סיסמה",
+ "new_password": "סיסמה חדשה",
+ "submit": "שלח",
+ "success": "הסיסמה שונתה בהצלחה"
+ },
+ "current_user": "אתה מחובר כעת כ-{fullName}.",
+ "customize_sidebar": {
+ "button": "ערוך",
+ "description": "באפשרותך גם ללחוץ לחיצה ארוכה על הכותרת של הסרגל הצידי כדי להפעיל מצב עריכה.",
+ "header": "שינוי הסדר והסתרת פריטים מהסרגל הצידי"
+ },
+ "dashboard": {
+ "default_dashboard_label": "ראשי (ברירת מחדל)",
+ "description": "בחר לוח בקרה ברירת מחדל עבור התקן זה.",
+ "dropdown_label": "לוח בקרה",
+ "header": "לוח בקרה"
+ },
+ "enable_shortcuts": {
+ "description": "הפוך קיצורי מקשים לזמינים או ללא זמינים לביצוע פעולות שונות בממשק המשתמש.",
+ "header": "קיצורי מקשים"
+ },
+ "force_narrow": {
+ "description": "פעולה זו תסתיר את הסרגל הצדדי כברירת מחדל, בדומה לחוויה בנייד.",
+ "header": "הסתר תמיד את הסרגל הצידי"
+ },
+ "is_owner": "אתה הבעלים.",
+ "language": {
+ "dropdown_label": "שפה",
+ "header": "שפה",
+ "link_promo": "עזור לתרגם"
+ },
+ "logout": "התנתק",
+ "logout_text": "האם בוודאות ברצונך להתנתק?",
+ "logout_title": "להתנתק?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "האם בוודאות ברצונך למחוק את אסימון הגישה עבור {name}?",
+ "create": "צור אסימון",
+ "create_failed": "יצירת אסימון הגישה נכשלה.",
+ "created": "נוצר {date}",
+ "delete_failed": "מחיקת אסימון הגישה נכשלה.",
+ "description": "יצירת אסימוני גישה ארוכי טווח כדי לאפשר לסקריפטים שלך ליצור אינטראקציה עם מופע ה-Home Assistant שלך. כל אסימון יהיה תקף למשך 10 שנים מיום היצירה. אסימוני הגישה הבאים לאורך זמן פעילים.",
+ "empty_state": "אין לך עדיין אסימוני גישה ארוכים.",
+ "header": "אסימוני גישה ארוכי חיים",
+ "learn_auth_requests": "למד כיצד לבצע בקשות מאומתות.",
+ "name": "שם",
+ "prompt_copy_token": "העתק את אסימון הגישה שלך. הוא לא יוצג שוב.",
+ "prompt_name": "תן שם לאסימון"
+ },
+ "mfa": {
+ "confirm_disable": "האם בוודאות ברצונך להשבית {name}?",
+ "disable": "השבתה",
+ "enable": "הפעל",
+ "header": "מודלי אימות מרובה גורמים"
+ },
+ "mfa_setup": {
+ "close": "סגור",
+ "step_done": "הגדרה בוצעה עבור {step}",
+ "submit": "שלח",
+ "title_aborted": "הופסק",
+ "title_success": "הצליח!"
+ },
+ "number_format": {
+ "description": "בחר כיצד מוצגים מספרים.",
+ "dropdown_label": "פורמט מספר",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "אוטומטי (השתמש בהגדרות השפה)",
+ "none": "לא נבחר",
+ "space_comma": "1 234 567,89",
+ "system": "השתמש ב System Locale"
+ },
+ "header": "פורמט מספר"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "שם התקן",
+ "title": "איך לקרוא להתקן זה?"
+ },
+ "description": "שלח הודעות להתקן זה.",
+ "error_load_platform": "הגדר את notify.html5.",
+ "error_use_https": "נדרש SSL מופעל עבור הממשק.",
+ "header": "הודעות דחיפה",
+ "link_promo": "למד עוד",
+ "push_notifications": "הודעות דחיפה"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "האם בוודאות ברצונך למחוק את אסימון הרענון עבור {name}?",
+ "created_at": "נוצר {date}",
+ "current_token_tooltip": "לא ניתן למחוק את אסימון הרענון הנוכחי",
+ "delete_failed": "מחיקת אסימון הרענון נכשלה.",
+ "description": "כל אסימון רענון מייצג הפעלת התחברות. אסימוני רענון יוסרו באופן אוטומטי כאשר תלחץ על יציאה. אסימוני הרענון הבאים פעילים כעת עבור חשבונך.",
+ "header": "רענן אסימונים",
+ "last_used": "נעשה שימוש לאחרונה בתאריך {date} מהמיקום {location}",
+ "not_used": "לא היה בשימוש",
+ "token_title": "אסימון רענון עבור {clientId}"
+ },
+ "suspend": {
+ "description": "האם עלינו לסגור את החיבור לשרת לאחר שהוסתרנו במשך 5 דקות?",
+ "header": "סגור חיבור באופן אוטומטי"
+ },
+ "themes": {
+ "accent_color": "צבע הדגשה",
+ "dark_mode": {
+ "auto": "אוטומטי",
+ "dark": "כהה",
+ "light": "בהיר"
+ },
+ "dropdown_label": "ערכת נושא",
+ "error_no_theme": "אין ערכות נושא זמינות.",
+ "header": "ערכת נושא",
+ "link_promo": "למד אודות ערכות נושא",
+ "primary_color": "צבע ראשי",
+ "reset": "איפוס"
+ },
+ "time_format": {
+ "description": "בחר כיצד לעצב שעות.",
+ "dropdown_label": "תבנית שעה",
+ "formats": {
+ "12": "12 שעות (AM/PM)",
+ "24": "24 שעות",
+ "language": "אוטומטי (השתמש בהגדרות השפה)",
+ "system": "השתמש באזור המערכת"
+ },
+ "header": "תבנית שעה"
+ },
+ "vibrate": {
+ "description": "הפעלה או ביטול הרטט בהתקן זה בעת שליטה בהתקנים.",
+ "header": "רטט"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "התחל שיחה"
+ }
+ },
+ "sidebar": {
+ "done": "בוצע",
+ "external_app_configuration": "הגדרות היישום",
+ "hide_panel": "הסתרת לוח",
+ "show_panel": "הצגת לוח",
+ "sidebar_toggle": "שנה מצב סרגל צידי"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/hi.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/hi.json
new file mode 100644
index 00000000..a53a4c52
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/hi.json
@@ -0,0 +1,390 @@
+{
+ "panel": {
+ "config": "कॉंफ़िगरेशन",
+ "developer_tools": "डेवलपर उपकरण",
+ "history": "इतिहास",
+ "logbook": "रिपोर्ट",
+ "mailbox": "मेलबॉक्स",
+ "map": "नक्शा",
+ "shopping_list": "खरीदारी की सूची",
+ "states": "स्थिति"
+ },
+ "state": {
+ "default": {
+ "off": "बंद",
+ "on": "चालू",
+ "unavailable": "अनुपलब्ध",
+ "unknown": "अनजान"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "off": "बंद",
+ "on": "चालू"
+ },
+ "hvac_action": {
+ "cooling": "थन्दा",
+ "drying": "सुखाना",
+ "fan": "पंखा",
+ "heating": "गरमाना",
+ "idle": "खाली",
+ "off": "बंद"
+ },
+ "preset_mode": {
+ "away": "बाहर",
+ "comfort": "पर्याप्त",
+ "eco": "किफ़ायत",
+ "home": "घर",
+ "none": "कुच भि नहि",
+ "sleep": "निद्रा"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "normal": "सामान्य"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed_custom_bypass": "सशस्त्र",
+ "pending": "अपूर्ण"
+ },
+ "default": {
+ "entity_not_found": "Entità non trovata",
+ "error": "ग़लती",
+ "unavailable": "अनुपलब्ध",
+ "unknown": "अज्ञात"
+ },
+ "device_tracker": {
+ "home": "घर",
+ "not_home": "बाहर"
+ },
+ "person": {
+ "home": "घर",
+ "not_home": "बाहर"
+ }
+ },
+ "ui": {
+ "card": {
+ "weather": {
+ "attributes": {
+ "precipitation": "वर्षण"
+ },
+ "high": "उच्च",
+ "low": "कम"
+ }
+ },
+ "common": {
+ "and": "और",
+ "previous": "पिछला",
+ "undo": "पूर्ववत करें"
+ },
+ "components": {
+ "history_charts": {
+ "no_history_found": "स्थिति के कोइ भि पहले रिकार्ड नहि मिले"
+ }
+ },
+ "dialogs": {
+ "mqtt_device_debug_info": {
+ "entities": "संस्थाएं",
+ "no_entities": "कोई संस्थाएं नहीं",
+ "no_triggers": "कोई ट्रिगर नहीं",
+ "show_as_yaml": "YAML के रूप में दिखाएं",
+ "triggers": "ट्रिगर"
+ },
+ "zha_device_info": {
+ "services": {
+ "zigbee_information": "डिवाइस के लिए Zigbee जानकारी देखें।"
+ }
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\n one {दिन}\n other {दिन}\n}",
+ "week": "{count} {count, plural,\n one {हफ़्ता}\n other {हफ़्ते}\n}"
+ },
+ "errors": {
+ "supervisor": {
+ "ask": "मदद के लिए पूछें",
+ "observer": "प्रेक्षक (Observer) की जाँच करें",
+ "reboot": "मशीन पुनः आरंभ करने का प्रयास करें",
+ "system_health": "उप्करन के स्वस्थ्य कि जाँच करे"
+ }
+ },
+ "notification_drawer": {
+ "empty": "सूचनाएँ नहीं हैं",
+ "title": "सूचनाएँ"
+ },
+ "panel": {
+ "config": {
+ "areas": {
+ "editor": {
+ "name": "नाम"
+ }
+ },
+ "automation": {
+ "editor": {
+ "conditions": {
+ "type": {
+ "not": {
+ "label": "नहीं"
+ },
+ "sun": {
+ "after": "बाद:",
+ "before": "पहले:",
+ "sunrise": "सूर्योदय",
+ "sunset": "सूर्यास्त"
+ },
+ "time": {
+ "after": "बाद",
+ "before": "पहले",
+ "weekdays": {
+ "mon": "सोमवार"
+ }
+ }
+ }
+ },
+ "triggers": {
+ "type": {
+ "homeassistant": {
+ "shutdown": "शटडाउन",
+ "start": "शुरू"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "topic": "विषय"
+ },
+ "numeric_state": {
+ "above": "ऊपर",
+ "below": "नीचे"
+ },
+ "sun": {
+ "label": "सूरज",
+ "sunrise": "सूर्योदय",
+ "sunset": "सूर्यास्त"
+ }
+ }
+ }
+ },
+ "picker": {
+ "headers": {
+ "name": "नाम"
+ },
+ "no_automations": "हमें कोई AUTOMATION नहीं मिला"
+ }
+ },
+ "cloud": {
+ "account": {
+ "google": {
+ "enable_ha_skill": "Home Assistant Cloud कौशल सक्रिय करे Google Assistant के लिय",
+ "not_configured_title": "Google Assistant सक्रिय नहीं है",
+ "title": "Google Assistant"
+ },
+ "thank_you_note": "होम असिस्टेंट क्लाउड का हिस्सा बनने के लिए धन्यवाद। यह आप जैसे लोगों की वजह से है कि हम हर किसी के लिए एक शानदार होम ऑटोमेशन अनुभव बनाने में सक्षम हैं। धन्यवाद!"
+ },
+ "forgot_password": {
+ "email": "ईमेल",
+ "subtitle": "अपना पासवर्ड भूल गए",
+ "title": "पासवर्ड भूल गए"
+ },
+ "login": {
+ "email": "ईमेल",
+ "email_error_msg": "अवैध ईमेल",
+ "forgot_password": "पासवर्ड भूल गए?",
+ "introduction": "होम असिस्टेंट क्लाउड आपको घर से दूर रहते हुए अपने इंस्टेंस से सुरक्षित रिमोट कनेक्शन प्रदान करता है। यह आपको क्लाउड-ओनली सेवाओं से जुड़ने की भी अनुमति देता है: अमेज़न एलेक्सा और गूगल असिस्टेंट।",
+ "introduction2": "यह सेवा हमारे साथी द्वारा चलाई जाती है",
+ "introduction2a": ", होम असिस्टेंट और हैसियो के संस्थापकों द्वारा स्थापित कंपनी।",
+ "learn_more_link": "होम असिस्टेंट क्लाउड के बारे में अधिक जानें",
+ "password": "पासवर्ड",
+ "start_trial": "अपना मुफ्त 1 महीने का परीक्षण शुरू करें"
+ },
+ "register": {
+ "password": "पासवर्ड"
+ }
+ },
+ "integrations": {
+ "add_integration": "एकीकरण जोड़ें",
+ "config_entry": {
+ "check_the_logs": "अभिलेख जाँच करें",
+ "delete": "हटाएं",
+ "not_loaded": "तैयार नहीं हैं",
+ "provided_by_custom_integration": "विशेष एकीकरण से उप्लब्ध",
+ "rename": "नाम बदलें",
+ "state": {
+ "failed_unload": "खाली करने मे असफल",
+ "loaded": "तैयार",
+ "migration_error": "प्रवसन दोष",
+ "not_loaded": "तैयार नहीं हैं",
+ "setup_error": "एकीकरण करने में विफल",
+ "setup_retry": "एकीकरण के लिय पुन: प्रयास जारी है"
+ },
+ "system_options": "सिस्टम विकल्प"
+ },
+ "integration": "एकीकरण",
+ "no_integrations": "लगता है जैसे आपके पास अभी तक कोई भी पूर्णांक कॉन्फ़िगर नहीं है। अपना पहला एकीकरण जोड़ने के लिए नीचे दिए गए बटन पर क्लिक करें!",
+ "rename_dialog": "इस कॉन्फ़िगरेशन प्रविष्टि का नाम संपादित करें",
+ "rename_input_label": "प्रवेश का नाम"
+ },
+ "introduction": "In questa schermata è possibile configurare Home Assistant e i suoi componenti. Non è ancora possibile configurare tutto tramite l'interfaccia, ma ci stiamo lavorando.",
+ "logs": {
+ "custom_integration": "िशेष एकीकरण",
+ "error_from_custom_integration": "ये दोश िशेष एकीकरण की वजह से है",
+ "level": {
+ "critical": "अभिलेख स्तर CRITICAL",
+ "debug": "अभिलेख स्तर DEBUG",
+ "error": "अभिलेख स्तर ERROR",
+ "info": "अभिलेख स्तर INFO",
+ "warning": "अभिलेख स्तर WARNING"
+ },
+ "no_errors": "कोई त्रुटी नहीं बताई गई है"
+ },
+ "mqtt": {
+ "title": "MQTT"
+ },
+ "ozw": {
+ "network_status": {
+ "unknown": "अनजान"
+ }
+ },
+ "scene": {
+ "picker": {
+ "no_scenes": "हमें कोई SCENE नहीं मिला"
+ }
+ },
+ "script": {
+ "picker": {
+ "headers": {
+ "name": "नाम"
+ },
+ "no_scripts": "हमें कोई SCRIPT नहीं मिला"
+ }
+ },
+ "users": {
+ "editor": {
+ "admin": "प्रशासक",
+ "name": "नाम",
+ "system_generated_users_not_editable": "सिस्टम जनरेट किए गए उपयोगकर्ताओं को अपडेट करने में असमर्थ।",
+ "update_user": "अपडेट"
+ },
+ "picker": {
+ "headers": {
+ "group": "समूह",
+ "name": "नाम",
+ "system": "सिस्टम"
+ }
+ }
+ },
+ "zha": {
+ "add_device_page": {
+ "spinner": "Ricerca di dispositivi ZHA Zigbee …"
+ }
+ },
+ "zwave": {
+ "node_config": {
+ "set_config_parameter": "कॉन्फ़िगरेशन पैरामीटर सेट करें"
+ }
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "सक्रिय श्रोता",
+ "title": "घटनाओं"
+ },
+ "services": {
+ "title": "सेवाएं"
+ },
+ "states": {
+ "filter_states": "स्थिति छन्नी",
+ "set_state": "स्थिति निर्धारित करे",
+ "state": "स्थिति"
+ },
+ "templates": {
+ "title": "टेम्पलेट्स"
+ }
+ }
+ },
+ "lovelace": {
+ "cards": {
+ "empty_state": {
+ "title": "स्वागत है घर मै"
+ },
+ "starting": {
+ "description": "होम असिस्टेंट शुरू हो रहा है, कृपया प्रतीक्षा करें …"
+ }
+ },
+ "changed_toast": {
+ "message": "La configurazione della interfaccia di Lovelaceper questa dashboard è stata aggiornata, vuoi ricaricare la pagina per vedere i cambiamenti?"
+ },
+ "editor": {
+ "card": {
+ "alarm-panel": {
+ "available_states": "उप्लब्दह स्थिति"
+ },
+ "conditional": {
+ "current_state": "वरतमान",
+ "state_equal": "स्थिति इस के बराबर है",
+ "state_not_equal": "स्थिति इस के बराबर नहि है"
+ },
+ "entity": {
+ "description": "स्थिति कार्ड आपको अपनी इकाई की स्थिति का संक्षेप देता है।"
+ },
+ "generic": {
+ "double_tap_action": "डबल टैप एक्शन",
+ "show_state": "स्थिति दिखाएं?",
+ "state": "स्थिति"
+ },
+ "map": {
+ "hours_to_show": "hours to show"
+ }
+ },
+ "cardpicker": {
+ "custom_card": "custom_ card",
+ "no_description": "description"
+ }
+ },
+ "reload_resources": {
+ "refresh_header": "क्या आप रिफ्रेश करना चाहते हैं?"
+ },
+ "warning": {
+ "entity_unavailable": "{entity} वर्तमान में अनुपलब्ध है"
+ }
+ },
+ "page-authorize": {
+ "form": {
+ "next": "अगला",
+ "providers": {
+ "trusted_networks": {
+ "step": {
+ "init": {
+ "description": "कृपया उस उपयोगकर्ता का चयन करें जिसके रूप में आप लॉगिन करना चाहते हैं:"
+ }
+ }
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "user": {
+ "data": {
+ "password_confirm": "Conferma la password"
+ },
+ "error": {
+ "password_not_match": "Password non trovata"
+ }
+ }
+ },
+ "profile": {
+ "dashboard": {
+ "description": "इस उपकरण के लिए एक डिफ़ॉल्ट डैशबोर्ड चुनें।",
+ "dropdown_label": "डैशबोर्ड",
+ "header": "डैशबोर्ड"
+ },
+ "language": {
+ "link_promo": "अनुवाद करने में सहायता करें"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/hr.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/hr.json
new file mode 100644
index 00000000..f7ea1fda
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/hr.json
@@ -0,0 +1,1486 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Stavka konfiguracije",
+ "integration": "Integracija",
+ "user": "Korisnik"
+ }
+ },
+ "groups": {
+ "system-admin": "Administratori",
+ "system-read-only": "Korisnici sa pravima samo za čitanje",
+ "system-users": "Korisnici"
+ },
+ "panel": {
+ "calendar": "Kalendar",
+ "config": "Konfiguracija",
+ "developer_tools": "Razvojni alati",
+ "history": "Povijest",
+ "logbook": "Dnevnik",
+ "mailbox": "Pošta",
+ "map": "Karta",
+ "profile": "Profil",
+ "shopping_list": "Popis za kupovinu",
+ "states": "Pregled"
+ },
+ "state": {
+ "default": {
+ "unavailable": "Nedostupan",
+ "unknown": "Nepoznato"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Auto",
+ "off": "Isključen",
+ "on": "Uključen"
+ },
+ "hvac_action": {
+ "cooling": "Hlađenje",
+ "drying": "Sušenje",
+ "fan": "Ventilator",
+ "heating": "Grijanje",
+ "idle": "Neaktivan",
+ "off": "Isključen"
+ },
+ "preset_mode": {
+ "activity": "Aktivnost",
+ "away": "Odsutan",
+ "boost": "Pojačano",
+ "comfort": "Udobno",
+ "eco": "Eko",
+ "home": "Doma",
+ "none": "Ništa",
+ "sleep": "Spavanje"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Aktivirano",
+ "armed_away": "Aktivirano",
+ "armed_custom_bypass": "Aktivirano",
+ "armed_home": "Aktivirano",
+ "armed_night": "Aktivirano",
+ "arming": "Aktiviranje",
+ "disarmed": "Deaktiviraj",
+ "disarming": "Deaktiviraj",
+ "pending": "U tijeku",
+ "triggered": "Okinut"
+ },
+ "default": {
+ "entity_not_found": "Entitet nije pronađen",
+ "error": "Greška",
+ "unavailable": "Nedostupno",
+ "unknown": "Nepoznato"
+ },
+ "device_tracker": {
+ "home": "Doma",
+ "not_home": "Odsutan"
+ },
+ "person": {
+ "home": "Doma",
+ "not_home": "Odsutan"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Želite li spremiti ovu prijavu?",
+ "confirm": "Spremi prijavu",
+ "decline": "Ne hvala"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Aktiviran odsutno",
+ "arm_custom_bypass": "Prilagođena premosnica",
+ "arm_home": "Aktiviran doma",
+ "arm_night": "Aktiviran nočni",
+ "clear_code": "Vedro",
+ "code": "Kod",
+ "disarm": "Deaktiviraj"
+ },
+ "automation": {
+ "last_triggered": "Zadnje aktivirano",
+ "trigger": "Pokreni"
+ },
+ "camera": {
+ "not_available": "Slika nije dostupna"
+ },
+ "climate": {
+ "aux_heat": "Pomoćno grijanje",
+ "away_mode": "Način rada: Odsutan",
+ "currently": "Trenutno",
+ "fan_mode": "Način rada s ventilatorom",
+ "on_off": "Uključivanje / isključivanje",
+ "operation": "operacija",
+ "preset_mode": "Zadano",
+ "swing_mode": "Swing način rada",
+ "target_humidity": "Ciljana vlažnost",
+ "target_temperature": "Ciljana temperatura"
+ },
+ "cover": {
+ "position": "Pozicija",
+ "tilt_position": "Položaj nagiba"
+ },
+ "fan": {
+ "direction": "Smjer",
+ "forward": "Naprijed",
+ "oscillate": "Oscilirati",
+ "reverse": "Nazad",
+ "speed": "Brzina"
+ },
+ "light": {
+ "brightness": "Svjetlina",
+ "color_temperature": "Temperatura boje",
+ "effect": "Efekt",
+ "white_value": "Bijela vrijednost"
+ },
+ "lock": {
+ "code": "Kod",
+ "lock": "zaključati",
+ "unlock": "Otključati"
+ },
+ "media_player": {
+ "sound_mode": "Način zvuka",
+ "source": "Izvor",
+ "text_to_speak": "Tekst u govor"
+ },
+ "persistent_notification": {
+ "dismiss": "Odbaci"
+ },
+ "scene": {
+ "activate": "Aktivirati"
+ },
+ "service": {
+ "run": "Pokreni"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "otkaži",
+ "finish": "Završiti",
+ "pause": "pauza",
+ "start": "početak"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Nastavi čišćenje",
+ "return_to_base": "Povratak na dok",
+ "start_cleaning": "Započnite čišćenje",
+ "turn_off": "Isključiti",
+ "turn_on": "Uključiti"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Način rada: Odsutan",
+ "currently": "Trenutno",
+ "on_off": "Uključeno/Isključeno",
+ "operation": "Operacija",
+ "target_temperature": "Ciljana temperatura"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Tlak zraka",
+ "humidity": "Vlažnost",
+ "temperature": "Temperatura",
+ "visibility": "Vidljivost",
+ "wind_speed": "Brzina vjetra"
+ },
+ "cardinal_direction": {
+ "e": "I",
+ "ene": "ISI",
+ "ese": "ESE",
+ "n": "N",
+ "ne": "NE",
+ "nne": "NNE",
+ "nnw": "SSZ",
+ "nw": "NW",
+ "s": "J",
+ "se": "JI",
+ "sse": "JJI",
+ "ssw": "JJZ",
+ "sw": "JZ",
+ "w": "Z",
+ "wnw": "ZSZ",
+ "wsw": "ZJZ"
+ },
+ "forecast": "Prognoza"
+ }
+ },
+ "common": {
+ "cancel": "Otkazati",
+ "loading": "Učitavam",
+ "no": "Ne",
+ "save": "Spremi",
+ "successfully_saved": "Uspješno spremljeno",
+ "yes": "Da"
+ },
+ "components": {
+ "area-picker": {
+ "add_dialog": {
+ "add": "Dodaj",
+ "failed_create_area": "Nije uspjelo stvaranje područja.",
+ "name": "Naziv",
+ "text": "Unesite naziv novog područja.",
+ "title": "Dodajte novo područje"
+ },
+ "add_new": "Dodajte novo područje…",
+ "area": "Područje",
+ "clear": "Obriši",
+ "show_areas": "Pokažite područja"
+ },
+ "device-picker": {
+ "clear": "Obriši",
+ "device": "Uređaj",
+ "show_devices": "Prikaži uređaje",
+ "toggle": "Preklopi"
+ },
+ "entity": {
+ "entity-picker": {
+ "entity": "Entitet",
+ "show_entities": "Prikaži entitete"
+ }
+ },
+ "history_charts": {
+ "loading_history": "Učitavanje povijesti stanja …",
+ "no_history_found": "Nije pronađena povijest stanja."
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one {dan}\n other {dana}\n}",
+ "hour": "{count} {count, plural,\n one {sat}\n other {sati}\n}",
+ "minute": "{count} {count, plural,\n one {minuta}\n other {minuta}\n}",
+ "second": "{count} {count, plural,\n one {sekunda}\n other {sekunde}\n}",
+ "week": "{count} {count, plural,\n one {week}\n other {weeks}\n}"
+ },
+ "never": "Nikada"
+ },
+ "service-picker": {
+ "service": "Usluga"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Ako nije aktivno, novootkriveni entiteti neće biti automatski dodani u Home Assistant.",
+ "enable_new_entities_label": "Aktiviraj novododane entitete.",
+ "title": "Mogućnosti sustava"
+ },
+ "entity_registry": {
+ "control": "Kontrola",
+ "dismiss": "Odbaci",
+ "editor": {
+ "advanced": "Napredne postavke",
+ "confirm_delete": "Jeste li sigurni da želite izbrisati ovaj unos?",
+ "delete": "OBRIŠI",
+ "enabled_cause": "Deaktivirano zbog {cause}.",
+ "enabled_description": "Onemogućeni entiteti neće biti dodani u Home Assistant.",
+ "enabled_label": "Aktiviraj entitet",
+ "entity_id": "ID entiteta",
+ "name": "Premosti naziv",
+ "note": "Napomena: to možda neće raditi još sa svim integracijama.",
+ "unavailable": "Ovaj entitet trenutno nije dostupan.",
+ "update": "AŽURIRAJ"
+ },
+ "related": "Vezani",
+ "settings": "Postavke"
+ },
+ "generic": {
+ "cancel": "Otkaži",
+ "default_confirmation_title": "Jeste li sigurni?",
+ "ok": "U redu"
+ },
+ "more_info_control": {
+ "edit": "Uredi entitet",
+ "script": {
+ "last_action": "Posljednja akcija"
+ },
+ "sun": {
+ "elevation": "Nadmorska visina",
+ "rising": "Izlazi",
+ "setting": "Zalazi"
+ },
+ "updater": {
+ "title": "Upute za ažuriranje"
+ }
+ },
+ "options_flow": {
+ "form": {
+ "header": "Opcije"
+ },
+ "success": {
+ "description": "Opcije su uspješno spremljene."
+ }
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant nije ništa čuo",
+ "error": "Ups, došlo je do pogreške",
+ "found": "Pronašao sam za vas sljedeće:",
+ "how_can_i_help": "Kako mogu pomoći?",
+ "label": "Unesite pitanje i pritisnite \"Enter\""
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Dodaj uređaje",
+ "reconfigure": "Ponovno konfiguriraj uređaj",
+ "remove": "Ukloni uređaj"
+ },
+ "confirmations": {
+ "remove": "Jeste li sigurni da želite ukloniti uređaj?"
+ },
+ "last_seen": "Zadnje viđeno",
+ "manuf": "od {manufacturer}",
+ "no_area": "Nema područja",
+ "power_source": "Izvor napajanja",
+ "services": {
+ "reconfigure": "Ponovno konfiguriaj ZHA uređaj (liječenje uređaja). Upotrijebite ovo ako imate problema s uređajem. Ako je uređaj u pitanju uređaj za bateriju, provjerite je li budan i prihvaća naredbe kada koristite ovu uslugu.",
+ "remove": "Uklonite uređaj iz Zigbee mreže.",
+ "updateDeviceName": "Postavite prilagođeni naziv za ovaj uređaj u registru uređaja."
+ },
+ "unknown": "Nepoznato",
+ "zha_device_card": {
+ "device_name_placeholder": "Korisničko ime"
+ }
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\n one {dan}\n other {dani}\n}",
+ "hour": "{count} {count, plural,\n one {sat}\n other {sati}\n }",
+ "minute": "{count} {count, plural,\n one {minuta}\n other {minute}\n }",
+ "second": "{count} {count, plural,\n one {sekunde}\n other {sekunde}\n}",
+ "week": "{count} {count, plural,\n one {tjedan}\n other {tjedni}\n}"
+ },
+ "login-form": {
+ "log_in": "Prijava",
+ "password": "Lozinka",
+ "remember": "Zapamti"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Kliknite gumb za konfiguriranje {entity}",
+ "empty": "Nema obavijesti",
+ "title": "Obavijesti"
+ },
+ "notification_toast": {
+ "connection_lost": "Veza izgubljena. Spajanje…",
+ "service_call_failed": "Pokretanje usluge {service} nijeje uspjelo.",
+ "triggered": "{name} aktiviran"
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Nedostaju opcije konfiguracije? Uključite napredni način rada na",
+ "link_profile_page": "vašoj stranici profila"
+ },
+ "areas": {
+ "caption": "Područja",
+ "description": "Pregled svih područja u vašem domu.",
+ "editor": {
+ "create": "KREIRAJ",
+ "delete": "OBRIŠI",
+ "update": "AŽURIRAJ"
+ },
+ "picker": {
+ "header": "Područja",
+ "integrations_page": "Stranica integracija",
+ "introduction": "Područja se koriste za organiziranje gdje su uređaji. Ove informacije će se koristiti u cijelom Home Assistant da vam pomogne u organizaciji sučelja, dopuštenja i integracija s drugim sustavima.",
+ "introduction2": "Da biste postavili uređaje u neko područje, pomoću donje veze idite na stranicu s integracijama, a zatim kliknite na konfiguriranu integraciju da biste došli do kartica uređaja."
+ }
+ },
+ "automation": {
+ "caption": "Automatizacija",
+ "description": "Stvaranje i uređivanje automatizacija",
+ "editor": {
+ "actions": {
+ "add": "Dodajte radnju",
+ "delete": "Obriši",
+ "delete_confirm": "Sigurno želite pobrisati?",
+ "duplicate": "Dupliciraj",
+ "header": "Akcije",
+ "introduction": "Radnje su ono što će Home Assistant učiniti kada se aktivira automatizacija. \n\n [Saznajte više o radnjama.] (Https://home-assistant.io/docs/automation/action/)",
+ "learn_more": "Saznajte više o akcijama",
+ "name": "Radnja",
+ "type": {
+ "condition": {
+ "label": "Stanje"
+ },
+ "delay": {
+ "delay": "Odgodi",
+ "label": "Odgoditi"
+ },
+ "device_id": {
+ "label": "Uređaj"
+ },
+ "event": {
+ "event": "Event:",
+ "label": "Pokreni događaj",
+ "service_data": "Servisni podaci"
+ },
+ "scene": {
+ "label": "Aktiviraj scenu"
+ },
+ "service": {
+ "label": "Zovi servis"
+ },
+ "wait_template": {
+ "label": "Čekaj",
+ "timeout": "Vremensko ograničenje (opcionalno)",
+ "wait_template": "Čekaj predložak"
+ }
+ },
+ "type_select": "Vrsta akcije",
+ "unsupported_action": "Nepodržana radnja: {action}"
+ },
+ "alias": "Ime",
+ "conditions": {
+ "add": "Dodaj uvjet",
+ "delete": "Obriši",
+ "delete_confirm": "Sigurno želite pobrisati?",
+ "duplicate": "Dupliciran",
+ "header": "Uvjeti",
+ "introduction": "Uvjeti su neobvezni dio automatizacije i mogu se upotrebljavati kako bi se spriječilo izvršavanje automatizacije sve dok svi uvjeti nisu zadovoljeni.",
+ "learn_more": "Saznajte više o uvjetima",
+ "name": "Uvjet",
+ "type": {
+ "and": {
+ "label": "I"
+ },
+ "device": {
+ "extra_fields": {
+ "above": "Iznad",
+ "below": "Ispod",
+ "for": "Trajanje"
+ },
+ "label": "Uređaj"
+ },
+ "numeric_state": {
+ "above": "Iznad",
+ "below": "Ispod",
+ "label": "Numeričko stanje",
+ "value_template": "Predložak vrijednosti (opciono)"
+ },
+ "or": {
+ "label": "Ili"
+ },
+ "state": {
+ "label": "Stanje",
+ "state": "Stanje"
+ },
+ "sun": {
+ "after": "Nakon:",
+ "after_offset": "Nakon pomaka (izborno)",
+ "before": "Prije:",
+ "before_offset": "Prije pomaka (izborno)",
+ "label": "Sunce",
+ "sunrise": "Izlazak sunca",
+ "sunset": "Zalazak sunca"
+ },
+ "template": {
+ "label": "Predložak",
+ "value_template": "Predložak vrijednosti"
+ },
+ "time": {
+ "after": "Nakon",
+ "before": "Prije",
+ "label": "Vrijeme",
+ "weekdays": {
+ "mon": "ponedjeljak"
+ }
+ },
+ "zone": {
+ "entity": "Entitet sa lokacijom",
+ "label": "Zona",
+ "zone": "Zona"
+ }
+ },
+ "type_select": "Vrsta uvjeta",
+ "unsupported_condition": "Nepodržano stanje: {condition}"
+ },
+ "default_name": "Nova automatizacija",
+ "description": {
+ "label": "Opis",
+ "placeholder": "Neobavezni opis"
+ },
+ "introduction": "Upotrijebite automatizaciju kako bi vaš dom oživio",
+ "load_error_not_editable": "Samo automatizacije u automations.yaml se mogu uređivati.",
+ "load_error_unknown": "Pogreška pri učitavanju automatizacije ({err_no}).",
+ "save": "Spremi",
+ "triggers": {
+ "add": "Dodaj okidač",
+ "delete": "Obriši",
+ "delete_confirm": "Jeste li sigurni dai želite izbrisati?",
+ "duplicate": "Udvostruči",
+ "header": "Okidači",
+ "introduction": "Okidači pokreću automatizacije. Moguće je odrediti više okidača za istu automatizaciju. Kada se okidač pokrene, Home Assistant provjerit će uvjete (ako ih ima) i pozvati akciju.",
+ "learn_more": "Saznajte više o okidačima",
+ "name": "Okidač",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Iznad",
+ "below": "Ispod",
+ "for": "Trajanje"
+ },
+ "label": "Uređaj"
+ },
+ "event": {
+ "event_data": "Podaci o događaju",
+ "event_type": "Vrsta događaja",
+ "label": "Događaj:"
+ },
+ "geo_location": {
+ "enter": "Ulaz",
+ "event": "Događaj:",
+ "label": "Geolokacija",
+ "leave": "Izlaz",
+ "source": "Izvor",
+ "zone": "Zona"
+ },
+ "homeassistant": {
+ "event": "Događaj:",
+ "label": "Home Assistant",
+ "shutdown": "Ugasiti",
+ "start": "Početak"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Opterećenje (opcionalno)",
+ "topic": "Tema"
+ },
+ "numeric_state": {
+ "above": "Iznad",
+ "below": "Ispod",
+ "label": "Numeričko stanje",
+ "value_template": "Predložak vrijednosti (nije obavezno)"
+ },
+ "state": {
+ "for": "Za",
+ "from": "Od",
+ "label": "Stanje",
+ "to": "Do"
+ },
+ "sun": {
+ "event": "Event:",
+ "label": "Sunce",
+ "offset": "Offset (nije obavezno)",
+ "sunrise": "Izlazak sunca",
+ "sunset": "Zalazak sunca"
+ },
+ "template": {
+ "label": "Predložak",
+ "value_template": "Predložak vrijednosti"
+ },
+ "time": {
+ "at": "U",
+ "label": "Vrijeme"
+ },
+ "time_pattern": {
+ "hours": "Sati",
+ "label": "Vremenski uzorak",
+ "minutes": "Minuta",
+ "seconds": "Sekundi"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook ID"
+ },
+ "zone": {
+ "enter": "Unesite",
+ "entity": "Entitet s lokacijom",
+ "event": "Event:",
+ "label": "Zona",
+ "leave": "Napustiti",
+ "zone": "Zona"
+ }
+ },
+ "type_select": "Tip okidača",
+ "unsupported_platform": "Nepodržana platforma: {platform}"
+ },
+ "unsaved_confirm": "Imate nespremljene izmjene. Jeste li sigurni da želite napustiti?"
+ },
+ "picker": {
+ "add_automation": "Dodaj automatizaciju",
+ "delete_automation": "Izbriši automatizaciju",
+ "delete_confirm": "Jeste li sigurni da želite izbrisati tu automatizaciju?",
+ "edit_automation": "Uredi automatizaciju",
+ "header": "Urednik Automatizacije",
+ "introduction": "Automatizacijski urednik omogućuje stvaranje i uređivanje automatizacije. Molimo pročitajte [upute] (https://home-assistant.io/docs/automation/editor/) kako biste bili sigurni da ste ispravno konfigurirali Home Assistant.",
+ "learn_more": "Saznajte više o automatizacijama",
+ "no_automations": "Nismo mogli pronaći nikakve automatizirane uređaje",
+ "only_editable": "Samo automatizacije definirane u automations.yaml se mogu uređivati.",
+ "pick_automation": "Odaberite automatizaciju za uređivanje",
+ "show_info_automation": "Prikaži informacije o automatizaciji"
+ }
+ },
+ "cloud": {
+ "alexa": {
+ "title": "Alexa"
+ },
+ "description_features": "Upravljajte kad ste izvan kuće, integrirajte se s Alexa i Google Assistantom.",
+ "description_login": "Prijavljeni ste kao {email}",
+ "description_not_login": "Niste prijavljeni",
+ "forgot_password": {
+ "check_your_email": "Provjerite e-poštu za upute o resetiranju zaporke.",
+ "email": "E-mail",
+ "email_error_msg": "Neispravan e-mail",
+ "instructions": "Unesite svoju e-mail adresu i poslat ćemo vam link za resetiranje lozinke.",
+ "send_reset_email": "Pošalji e-poštu za resetiranje",
+ "subtitle": "Zaboravili ste lozinku",
+ "title": "Zaboravljena lozinka"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Prije prijave morate potvrditi svoj e-mail.",
+ "alert_password_change_required": "Prije prijave morate promijeniti lozinku.",
+ "dismiss": "Odbaci",
+ "email": "E-mail",
+ "email_error_msg": "Neispravan e-mail",
+ "forgot_password": "zaboravljena lozinka?",
+ "introduction": "Home Assistant Cloud vam pruža sigurnu udaljenu vezu s vašom instancom dok ste izvan kuće. Također vam omogućuje povezivanje s uslugama samo u cloudu: Amazon Alexa i Google Assistant.",
+ "introduction2": "Ovu uslugu vodi naš partner ",
+ "introduction2a": ", tvrtka koju su osnovali osnivači Home Assistanta i Hass.ioa.",
+ "introduction3": "Home Assistant Cloud je usluga na pretplatu s besplatnim probnim razdobljem od mjesec dana. Nisu potrebne informacije o plaćanju.",
+ "learn_more_link": "Saznajte više o Home Assistant Cloudu.",
+ "password": "Lozinka",
+ "password_error_msg": "Lozinke imaju najmanje 8 znakova",
+ "sign_in": "Prijava",
+ "start_trial": "Započnite besplatno probno razdoblje od 1 mjeseca",
+ "title": "Prijava putem clouda",
+ "trial_info": "Nisu potrebne informacije o plaćanju"
+ },
+ "register": {
+ "account_created": "Račun kreiran! Provjerite svoju e-poštu za upute o aktiviranju računa.",
+ "create_account": "Stvorite račun",
+ "email_address": "Email adresa",
+ "email_error_msg": "Neispravan e-mail",
+ "headline": "Započnite besplatno probno razdoblje",
+ "link_privacy_policy": "Pravila o privatnosti",
+ "link_terms_conditions": "Uvjeti i odredbe",
+ "password": "Lozinka",
+ "password_error_msg": "Lozinke imaju najmanje 8 znakova",
+ "resend_confirm_email": "Ponovno slanje potvrde e-pošte",
+ "start_trial": "Započnite besplatno probno razdoblje",
+ "title": "Registrirajte račun"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Imate nespremljene izmjene. Jeste li sigurni da želite napustiti?"
+ }
+ },
+ "core": {
+ "caption": "Općenito",
+ "description": "Promijenite Home Assistant općenite postavke",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Valuta",
+ "edit_requires_storage": "Uređivač je onemogućen jer je konfiguracija spremljena u configuration.yaml.",
+ "elevation": "Nadmorska visina",
+ "elevation_meters": "metara",
+ "find_currency_value": "Nađite vašu valutu",
+ "imperial_example": "Fahrenheit, funte",
+ "latitude": "Zemljopisna širina",
+ "location_name": "Naziv Home Assistant instalacije",
+ "longitude": "Zemljopisna dužina",
+ "metric_example": "Celzija, kilograma",
+ "save_button": "Spremi",
+ "time_zone": "Vremenska zona",
+ "unit_system": "Sustav jedinica",
+ "unit_system_imperial": "Imperijalni",
+ "unit_system_metric": "Metrički"
+ },
+ "header": "Konfiguracija i kontrola poslužitelja",
+ "introduction": "Upravljate vašom lokacijom, mrežnim postavkama i analitikom."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Sljedeći su atributi već postavljeni u customize.yaml",
+ "attributes_not_set": "Sljedeći atributi nisu postavljeni. Postavite ih ako želite.",
+ "attributes_outside": "Sljedeći su atributi prilagođeni izvan customize.yaml",
+ "attributes_override": "Možete ih premostiti ako želite.",
+ "attributes_set": "Sljedeći atributi entiteta postavljaju se programski.",
+ "caption": "Prilagodba",
+ "description": "Prilagodite entitete",
+ "pick_attribute": "Odaberite atribut za premošćenje",
+ "picker": {
+ "header": "Prilagodba",
+ "introduction": "Podešavanje atributa po entitetu. Dodane/uređene prilagodbe će odmah stupiti na snagu. Uklonjene prilagodbe stupit će na snagu kada se entitet ažurira."
+ }
+ },
+ "dashboard": {
+ "devices": {
+ "description": "Integracije, uređaji, entiteti i područja",
+ "title": "Uređaji i usluge"
+ },
+ "settings": {
+ "description": "Osnovne postavke, upravljanje poslužiteljem, zapisnici i informacije",
+ "title": "Postavke"
+ }
+ },
+ "devices": {
+ "automation": {
+ "actions": {
+ "caption": "Kada se nešto pokrene…"
+ },
+ "automations": "Automatizacije",
+ "conditions": {
+ "caption": "Učini nešto samo ako…"
+ },
+ "create": "Stvorite automatizaciju s uređajem",
+ "no_automations": "Nema automatizacije",
+ "no_device_automations": "Nema dostupnih automatizacija za ovaj uređaj.",
+ "triggers": {
+ "caption": "Učini nešto kad..."
+ }
+ },
+ "cant_edit": "Možete uređivati samo stavke stvorene u korisničkom sučelju (UI).",
+ "caption": "Uređaji",
+ "confirm_rename_entity_ids": "Želite li također preimenovati ID entiteta svojih entiteta?",
+ "data_table": {
+ "area": "Područje",
+ "battery": "Baterija",
+ "device": "Uređaj",
+ "integration": "Integracija",
+ "manufacturer": "Proizvođač",
+ "model": "Model"
+ },
+ "description": "Upravljanje povezanim uređajima",
+ "device_not_found": "Uređaj nije pronađen.",
+ "name": "Naziv",
+ "scene": {
+ "create": "Stvorite scenu s uređajem",
+ "no_scenes": "Nema scena",
+ "scenes": "Scene"
+ },
+ "scenes": "Scene",
+ "script": {
+ "create": "Stvorite skriptu s uređajem",
+ "no_scripts": "Nema skripte",
+ "scripts": "Skripte"
+ },
+ "scripts": "Skripte",
+ "unknown_error": "Nepoznata pogreška",
+ "unnamed_device": "Neimenovani uređaj",
+ "update": "Ažuriraj"
+ },
+ "entities": {
+ "caption": "Entiteti",
+ "description": "Pregled svih poznatih entiteta.",
+ "picker": {
+ "header": "Entiteti",
+ "introduction": "Home Assistant drži registar svakog entiteta koji je ikada vidio da se može jedinstveno identificirati. Svaki od tih entiteta imat će dodijeljeni ID entiteta koji će biti rezerviran za samo ovaj entitet.",
+ "introduction2": "Koristite registar entiteta da biste nadjačali naziv, promijenili ID entiteta ili uklonili stavku iz Home Assistant. Napomena, uklanjanjem unosa registra entiteta neće se ukloniti entitet. Da biste to učinili, slijedite donju vezu i uklonite je s stranice integracije."
+ }
+ },
+ "header": "Konfigurirajte Home Assistant",
+ "info": {
+ "frontend_version": "Verzija sučelja: {version} - {type}",
+ "home_assistant_logo": "Logotip Home Assistanta",
+ "license": "Objavljeno pod licencom Apache 2.0",
+ "path_configuration": "Put do configuration.yaml: {path}",
+ "source": "Izvorni kod:"
+ },
+ "integrations": {
+ "caption": "Integracije",
+ "config_entry": {
+ "configure": "Konfiguriraj",
+ "delete_confirm": "Jeste li sigurni da želite izbrisati tu integraciju?",
+ "device_unavailable": "uređaj nije dostupan",
+ "entity_unavailable": "entitet nije dostupan",
+ "firmware": "Firmware: {version}",
+ "hub": "Povezan putem",
+ "manuf": "od {manufacturer}",
+ "no_area": "Nema područja",
+ "restart_confirm": "Ponovo pokrenite Home Assistant da biste dovršili uklanjanje ove integracije"
+ },
+ "config_flow": {
+ "aborted": "Prekinut",
+ "close": "Zatvoriti",
+ "created_config": "Stvorena konfiguracija za {name}.",
+ "dismiss": "Odbacite dijaloški okvir",
+ "error_saving_area": "Pogreška pri spremanju područja: {error}",
+ "external_step": {
+ "description": "Ovaj korak zahtijeva da posjetite vanjsku web stranicu.",
+ "open_site": "Otvori web sjedište"
+ },
+ "finish": "Završiti",
+ "not_all_required_fields": "Nisu popunjena sva obavezna polja.",
+ "submit": "Podnijeti"
+ },
+ "configure": "Konfiguriranje",
+ "configured": "Konfiguriran",
+ "description": "Upravljanje povezanim uređajima i uslugama",
+ "discovered": "Otkriven",
+ "integration_not_found": "Integracija nije pronađena.",
+ "new": "Postavite novu integraciju",
+ "none": "Još ništa nije konfigurirano",
+ "search": "Pretraživanje integracija"
+ },
+ "introduction": "Ovdje možete konfigurirati vaše komponente i Home Assistant. Nije moguće baš sve konfigurirati koristeći UI zasada, ali radimo na tome.",
+ "mqtt": {
+ "title": "MQTT"
+ },
+ "ozw": {
+ "network_status": {
+ "unknown": "Nepoznato"
+ }
+ },
+ "person": {
+ "caption": "Osobe",
+ "description": "Upravljajte osobama koje Home Assistant prati.",
+ "detail": {
+ "device_tracker_intro": "Odaberite uređaje koji pripadaju ovoj osobi.",
+ "device_tracker_pick": "Odaberite uređaj za praćenje",
+ "device_tracker_picked": "Uređaj za praćenje",
+ "name": "Ime"
+ }
+ },
+ "scene": {
+ "activated": "Aktivirana scena {name}.",
+ "caption": "Scene",
+ "description": "Stvaranje i uređivanje scena",
+ "editor": {
+ "default_name": "Nova scena",
+ "devices": {
+ "add": "Dodaj uređaj",
+ "delete": "Izbriši uređaj",
+ "header": "Uređaji",
+ "introduction": "Dodajte uređaje koje želite uključiti u svoju scenu. Postavite sve uređaje na stanje koje želite za ovu scenu."
+ },
+ "entities": {
+ "add": "Dodaj entitet",
+ "delete": "Izbriši entitet",
+ "device_entities": "Ako dodate entitet koji pripada uređaju, uređaj će biti dodan.",
+ "header": "Entiteti",
+ "introduction": "Entiteti koji ne pripadaju uređajima mogu se postaviti ovdje.",
+ "without_device": "Entiteti bez uređaja"
+ },
+ "introduction": "Upotrijebite scene kako bi vaš dom oživio",
+ "load_error_not_editable": "Samo scene u scenes.yaml se mogu uređivati.",
+ "load_error_unknown": "Pogreška pri učitavanju scene ({err_no}).",
+ "name": "Ime",
+ "save": "Spremi",
+ "unsaved_confirm": "Imate nespremljene izmjene. Jeste li sigurni da želite napustiti?"
+ },
+ "picker": {
+ "add_scene": "Dodaj scenu",
+ "delete_confirm": "Jeste li sigurni da želite izbrisati tu scenu?",
+ "delete_scene": "Izbriši scenu",
+ "edit_scene": "Uredi scenu",
+ "header": "Urednik scena",
+ "introduction": "Urednik scena omogućuje vam stvaranje i uređivanje scena. Molimo slijedite donju vezu da biste pročitali upute kako biste bili sigurni da ste ispravno konfigurirali Home Assistant.",
+ "learn_more": "Saznajte više o scenama",
+ "no_scenes": "Nismo mogli pronaći nikakve scene koje se mogu uređivati",
+ "only_editable": "Samo scene definirane u scenes.yaml se mogu uređivati.",
+ "pick_scene": "Odaberite scenu za uređivanje",
+ "show_info_scene": "Prikaži informacije o sceni"
+ }
+ },
+ "script": {
+ "caption": "Skripta",
+ "description": "Stvaranje i uređivanje skripti",
+ "editor": {
+ "default_name": "Nova skripta",
+ "delete_confirm": "Jeste li sigurni da želite izbrisati tu skriptu?",
+ "delete_script": "Izbriši skriptu",
+ "header": "Skripta: {name}",
+ "introduction": "Upotrijebite skripte za izvršenje slijeda radnji.",
+ "link_available_actions": "Saznajte više o dostupnim radnjama.",
+ "load_error_not_editable": "Samo skripte u scripts.yaml se mogu uređivati.",
+ "sequence": "Slijed",
+ "sequence_sentence": "Slijed radnji ove skripte."
+ },
+ "picker": {
+ "add_script": "Dodaj skriptu",
+ "edit_script": "Uredi skriptu",
+ "header": "Urednik skripta",
+ "introduction": "Urednik skripta omogućuje vam stvaranje i uređivanje skripta. Molimo slijedite donju vezu da biste pročitali upute kako biste bili sigurni da ste ispravno konfigurirali Home Assistant.",
+ "learn_more": "Saznajte više o skriptama",
+ "no_scripts": "Nismo mogli pronaći nikakve skripte koje se mogu uređivati"
+ }
+ },
+ "server_control": {
+ "caption": "Upravljanje poslužiteljem",
+ "description": "Ponovo pokrenite i zaustavite Home Assistant poslužitelj",
+ "section": {
+ "reloading": {
+ "automation": "Ponovo učitavanje automatizacija",
+ "core": "Ponovno učitavanje jezgre",
+ "group": "Ponovno učitavanje grupa",
+ "heading": "Ponovno učitavanje konfiguracije",
+ "introduction": "Neki dijelovi programa Home Assistant mogu se ponovno učitati bez potrebe za ponovnim pokretanjem. Pritiskom na ponovno učitavanje učitava se nova konfiguracija.",
+ "scene": "Ponovno učitaj scene",
+ "script": "Ponovno učitavanje skripti"
+ },
+ "server_management": {
+ "confirm_restart": "Jeste li sigurni da želite ponovo pokrenuti Home Assistant?",
+ "confirm_stop": "Jeste li sigurni da želite zaustaviti Home Assostant?",
+ "heading": "Upravljanje poslužiteljem",
+ "introduction": "Upravljajte vašim Home Assistantom.",
+ "restart": "Ponovno pokretanje",
+ "stop": "Stop"
+ },
+ "validation": {
+ "check_config": "Provjerite konfiguraciju",
+ "heading": "Provjera konfiguracije",
+ "introduction": "Provjerite svoju konfiguraciju ako ste nedavno napravili neke promjene u konfiguraciji i želite biti sigurni da je sve ispravno",
+ "invalid": "Konfiguracija nije ispravna",
+ "valid": "Konfiguracija je ispravna!"
+ }
+ }
+ },
+ "users": {
+ "add_user": {
+ "caption": "Dodajte korisnika",
+ "create": "Kreiraj",
+ "password": "Lozinka"
+ },
+ "caption": "Korisnici",
+ "description": "Upravljanje korisnicima",
+ "editor": {
+ "activate_user": "Aktivirajte korisnika",
+ "caption": "Pregled korisnika",
+ "change_password": "Promijeni lozinku",
+ "deactivate_user": "Deaktivirajte korisnika",
+ "delete_user": "Izbriši korisnika"
+ }
+ },
+ "zha": {
+ "add_device_page": {
+ "spinner": "Traženje ZHA ZigBee uređaja…"
+ },
+ "clusters": {
+ "header": "klasteri"
+ },
+ "group_binding": {
+ "bind_button_help": "Povežite odabranu skupinu s odabranim skupinama uređaja.",
+ "bind_button_label": "Poveži grupu",
+ "cluster_selection_help": "Odaberite klastere za povezivanje s odabranom skupinom.",
+ "group_picker_help": "Odaberite grupu za izdavanje naredbe za vezanje.",
+ "group_picker_label": "Grupe koje se mogu vezati",
+ "header": "Povezivanje grupe",
+ "unbind_button_help": "Prekini vezu s odabranom skupinom od odabranih skupina uređaja.",
+ "unbind_button_label": "Poništi vezu"
+ },
+ "groups": {
+ "caption": "Grupe"
+ }
+ },
+ "zone": {
+ "add_zone": "Dodajte zonu",
+ "caption": "Zone",
+ "configured_in_yaml": "Zone konfigurirane putem configuration.yaml ne mogu se uređivati putem korisničkog sučelja.",
+ "confirm_delete": "Jeste li sigurni da želite izbrisati ovu zonu?",
+ "create_zone": "Stvori zonu",
+ "description": "Upravljajte zonama u kojima želite pratiti osobe.",
+ "detail": {
+ "create": "Kreiraj",
+ "delete": "Izbriši",
+ "icon": "Ikona",
+ "icon_error_msg": "Ikona treba biti u obliku prefiksa: ime ikone, na primjer: mdi: home",
+ "latitude": "Zemljopisna širina",
+ "longitude": "Zemljopisna dužina",
+ "name": "Naziv",
+ "new_zone": "Nova zona",
+ "passive": "Pasivno",
+ "radius": "Radijus",
+ "required_error_msg": "Ovo polje je obavezno",
+ "update": "Ažuriraj"
+ },
+ "edit_home_zone": "Položaj vašeg doma može se promijeniti u globalnoj konfiguraciji.",
+ "no_zones_created_yet": "Izgleda da još niste stvorili nijednu zonu."
+ },
+ "zwave": {
+ "common": {
+ "index": "Indeks",
+ "instance": "Instanca",
+ "unknown": "nepoznato",
+ "value": "Vrijednost",
+ "wakeup_interval": "Interval buđenja"
+ },
+ "description": "Upravljajte mrežom Z-Wave",
+ "network_management": {
+ "header": "Upravljanje Z-Wave mrežom",
+ "introduction": "Pokrenite naredbe koje utječu na Z-Wave mrežu. Nećete dobiti povratne informacije o tome je li većina naredbi uspjela, ali možete provjeriti OZW dnevnik da biste to pokušali otkriti."
+ },
+ "network_status": {
+ "network_started": "Z-Wave mreža je pokrenuta",
+ "network_started_note_all_queried": "Svi čvorovi su kontaktirani.",
+ "network_started_note_some_queried": "Aktivni čvorovi su kontaktirani. Čvorovi koji spavaju će biti kontaktirani kada se probude.",
+ "network_starting": "Pokretanje Z-Wave mreže…",
+ "network_starting_note": "To može potrajati, ovisno o veličini vaše mreže.",
+ "network_stopped": "Z-val mreža zaustavljena"
+ },
+ "node_config": {
+ "config_parameter": "Parametar",
+ "config_value": "Vrijednost",
+ "false": "Laž",
+ "header": "Opcije konfiguracije čvora",
+ "seconds": "sekundi",
+ "set_config_parameter": "Postavite parametar Config",
+ "set_wakeup": "Podesite Interval buđenja",
+ "true": "Istina"
+ },
+ "services": {
+ "add_node": "Dodaj čvor",
+ "add_node_secure": "Sigurno Dodavanje čvora",
+ "cancel_command": "Otkaži naredbu",
+ "heal_network": "Izlječi mrežu",
+ "remove_node": "Ukloni čvor",
+ "save_config": "Spremi konfiguraciju",
+ "soft_reset": "Resetiranje",
+ "start_network": "Pokreni mrežu",
+ "stop_network": "Zaustavi mrežu",
+ "test_network": "Testna mreža"
+ },
+ "values": {
+ "header": "Vrijednosti čvora"
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Imat će pristup svim podacima u Home Assistantu.",
+ "hide_message": "Provjerite dokumentaciju za komponentu panel_custom kako biste sakrili ovu poruku",
+ "question_trust": "Vjerujete li vanjskom panelu {name} na {link}?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "title": "Događaji"
+ },
+ "services": {
+ "column_parameter": "Parametar",
+ "fill_example_data": "Ispuni primjerne podatke",
+ "title": "Usluge"
+ },
+ "states": {
+ "title": "Status"
+ },
+ "templates": {
+ "template_extensions": "Proširenja predložaka Home Assistanta",
+ "title": "Predlošci",
+ "unknown_error_template": "Nepoznata pogreška pri prikazu predloška"
+ }
+ }
+ },
+ "lovelace": {
+ "cards": {
+ "empty_state": {
+ "go_to_integrations_page": "Idite na stranicu integracija.",
+ "no_devices": "Ova stranica omogućuje upravljanje uređajima, ali izgleda da još niste postavili nikakve uređaje. Idite na stranicu integracije da biste započeli.",
+ "title": "Dobrodošli kući"
+ },
+ "entities": {
+ "never_triggered": "Nikada pokrenuto"
+ },
+ "picture-elements": {
+ "call_service": "Pozovi servis {name}",
+ "hold": "Držite:",
+ "more_info": "Prikaži više informacija: {name}",
+ "navigate_to": "Idite do {location}",
+ "tap": "Dodirnite:",
+ "toggle": "Preklopi {name}",
+ "url": "Otvori prozor za {url_path}"
+ },
+ "shopping-list": {
+ "add_item": "Dodaj stavku",
+ "checked_items": "Označene stavke",
+ "clear_items": "Izbrišite označene stavke"
+ }
+ },
+ "changed_toast": {
+ "message": "Konfiguracija Lovelace je ažurirana, želite li je osvježiti?"
+ },
+ "editor": {
+ "card": {
+ "config": {
+ "optional": "Neobavezno",
+ "required": "Potreban"
+ },
+ "entities": {
+ "show_header_toggle": "Prikaži glavni prekidač?"
+ },
+ "gauge": {
+ "severity": {
+ "define": "Definiraj ozbiljnost?",
+ "green": "Zelena",
+ "red": "Crvena",
+ "yellow": "Žuta"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Omjer",
+ "camera_image": "Entitet kamere",
+ "camera_view": "Prikaz kamere",
+ "entities": "Entiteti",
+ "entity": "Entitet",
+ "hold_action": "Radnja pri držanju",
+ "hours_to_show": "Sati za prikazivanje",
+ "icon": "Ikona",
+ "icon_height": "Visina ikone",
+ "image": "Putanja slike",
+ "maximum": "Maksimum",
+ "minimum": "Minimum",
+ "name": "Ime",
+ "refresh_interval": "Interval ažuriranja",
+ "show_icon": "Prikaži ikonu?",
+ "show_name": "Prikaži ime?",
+ "show_state": "Prikaži stanje?",
+ "tap_action": "Radnja pri dodiru",
+ "theme": "Tema",
+ "title": "Naslov",
+ "unit": "Jedinica",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Stupci"
+ },
+ "map": {
+ "dark_mode": "Tamni način?",
+ "default_zoom": "Zadano zumiranje",
+ "geo_location_sources": "Izvori geolokacije",
+ "source": "Izvor"
+ },
+ "markdown": {
+ "content": "Sadržaj"
+ },
+ "sensor": {
+ "graph_type": "Vrsta grafikona"
+ },
+ "shopping-list": {
+ "integration_not_loaded": "Ova kartica zahtijeva postavljanje integracije `shopping_list`."
+ }
+ },
+ "edit_card": {
+ "add": "Dodaj karticu",
+ "delete": "Izbrisati",
+ "edit": "Uredi",
+ "header": "Konfiguracija Kartice",
+ "move": "Premjesti",
+ "options": "Više mogućnosti",
+ "pick_card": "Odaberite karticu koju želite dodati.",
+ "toggle_editor": "Uključi uređivač"
+ },
+ "edit_lovelace": {
+ "edit_title": "Uredi naslov",
+ "explanation": "Ovaj naslov prikazan je iznad svih vaših prikaza u Lovelace.",
+ "header": "Naslov vašeg Lovelace UI"
+ },
+ "edit_view": {
+ "add": "Dodaj prikaz",
+ "delete": "Izbriši prikaz",
+ "edit": "Uredi prikaz",
+ "header": "Pogledaj konfiguraciju"
+ },
+ "header": "Uredi UI",
+ "menu": {
+ "open": "Otvori Lovelace izbornik",
+ "raw_editor": "Tekstualni urednik"
+ },
+ "migrate": {
+ "header": "Konfiguracija nije kompatibilna",
+ "migrate": "Migriraj konfiguraciju",
+ "para_migrate": "Home Assistant može dodati ID-ove na sve vaše kartice i pogleda automatski za vas pritiskom na gumb 'Migriraj konfiguriranje'.",
+ "para_no_id": "Ovaj element nema ID. Dodajte ID ovom elementu u 'ui-lovelace.yaml'."
+ },
+ "raw_editor": {
+ "confirm_unsaved_changes": "Imate nespremljene izmjene. Jeste li sigurni da želite napustiti?",
+ "confirm_unsaved_comments": "Vaša konfiguracija sadrži komentare, oni neće biti spremljeni. Želite li nastaviti?",
+ "error_invalid_config": "Vaša konfiguracija nije valjana: {error}",
+ "error_parse_yaml": "Nije moguće analizirati YAML: {error}",
+ "error_save_yaml": "Nije moguće spremiti YAML: {error}",
+ "header": "Uredi konfiguraciju",
+ "save": "Spremi",
+ "saved": "Spremljeno",
+ "unsaved_changes": "Nespremljene promjene"
+ },
+ "save_config": {
+ "header": "Preuzmite kontrolu nad Lovelace UI",
+ "para": "Home Assistant će prema zadanim postavkama održavati vaše korisničko sučelje, ažurirati ga kada novi entiteti ili Lovelace komponente postanu dostupni. Ako preuzmete kontrolu, više nećemo automatski vršiti izmjene za vas.",
+ "para_sure": "Jeste li sigurni da želite preuzeti kontrolu nad svojim korisničkim sučeljem?",
+ "save": "Preuzmi kontrolu"
+ }
+ },
+ "menu": {
+ "close": "Zatvoriti",
+ "configure_ui": "Uređivanje sučelja",
+ "help": "Pomoć"
+ },
+ "reload_lovelace": "Ponovo učitajte Lovelace",
+ "unused_entities": {
+ "available_entities": "To su entiteti koji su vam dostupni, ali još nisu u vašem korisničkom sučelju Lovelace.",
+ "domain": "Domena",
+ "entity": "Entitet",
+ "entity_id": "ID entiteta",
+ "last_changed": "Zadnje promijenjeno",
+ "select_to_add": "Odaberite entitete koje želite dodati na karticu, a zatim kliknite gumb \"Dodaj karticu\".",
+ "title": "Neiskorišteni entiteti"
+ },
+ "warning": {
+ "entity_non_numeric": "Entitet nije numerički: {entity}",
+ "entity_not_found": "Entitet nije dostupan: {entity}"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Izbrisati",
+ "delete_prompt": "Izbrisati ovu poruku?",
+ "empty": "Nemate nijednu poruku",
+ "playback_title": "Reprodukcija poruke"
+ },
+ "page-authorize": {
+ "abort_intro": "Prijava je prekinuta",
+ "authorizing_client": "Dati ćete {clientId} pristup svojoj instanci pomoćnika Home Assistant.",
+ "form": {
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Sesija istekla, prijavite se ponovo."
+ },
+ "error": {
+ "invalid_auth": "Neispravno korisničko ime ili lozinka",
+ "invalid_code": "Pogrešan autentifikacijski kod."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Lozinka",
+ "username": "Korisničko ime"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "2-faktor autentifikacijski kod"
+ },
+ "description": "Otvorite ** {mfa_module_name} ** na svojem uređaju da biste vidjeli kôd za autentifikaciju s dva faktora i potvrdili svoj identitet:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Sesija istekla, prijavite se ponovo."
+ },
+ "error": {
+ "invalid_auth": "Neispravno korisničko ime ili lozinka",
+ "invalid_code": "Pogrešan kod za provjeru autentičnosti"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Lozinka",
+ "username": "Korisničko ime"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Kôd autentifikacije s dva faktora"
+ },
+ "description": "Otvorite ** {mfa_module_name} ** na svojem uređaju da biste vidjeli kôd za autentifikaciju s dva faktora i potvrdili svoj identitet:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Sesija istekla, molim vas prijavite se ponovno.",
+ "no_api_password_set": "Nemate konfiguriranu lozinku za API."
+ },
+ "error": {
+ "invalid_auth": "Nevažeća lozinka za API",
+ "invalid_code": "Nevažeći kôd za autentifikaciju"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "API lozinka"
+ },
+ "description": "Unesite API lozinku u svoj http config:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Kôd autentifikacije s dva faktora"
+ },
+ "description": "Otvorite ** {mfa_module_name} ** na svojem uređaju da biste vidjeli kôd za autentifikaciju s dva faktora i potvrdili svoj identitet:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "step": {
+ "init": {
+ "data": {
+ "user": "Korisnik"
+ },
+ "description": "Odaberite korisnika kojim se želite prijaviti:"
+ }
+ }
+ }
+ },
+ "unknown_error": "Nešto je pošlo po zlu",
+ "working": "Molimo pričekajte"
+ },
+ "initializing": "Inicijalizacija",
+ "logging_in_with": "Prijavite se sa **{authProviderName}**.",
+ "pick_auth_provider": "Ili se prijavite sa"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "od {name}",
+ "introduction": "Dobrodošli kući! Stigli ste do Home Assistant demo gdje prikazujemo najbolja korisnička sučelja koje je kreirala naša zajednica.",
+ "learn_more": "Saznajte više o Home Assistant",
+ "next_demo": "Sljedeći demo"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Aktivnost",
+ "air": "Zrak",
+ "commute_home": "Putovanje do kuće",
+ "entertainment": "Zabava",
+ "hdmi_input": "HDMI ulaz",
+ "hdmi_switcher": "HDMI preklopnik",
+ "information": "Informacije",
+ "lights": "Svjetla",
+ "morning_commute": "Jutarnje putovanje",
+ "total_tv_time": "Ukupno vrijeme za TV",
+ "turn_tv_off": "Isključi televiziju",
+ "volume": "Glasnoća"
+ },
+ "names": {
+ "family_room": "Obiteljska soba",
+ "hallway": "Hodnik",
+ "kitchen": "Kuhinja",
+ "left": "Lijevo",
+ "master_bedroom": "Glavna spavaća soba",
+ "mirror": "Ogledalo",
+ "patio": "Vrt",
+ "right": "Desno",
+ "upstairs": "Kat"
+ },
+ "unit": {
+ "minutes_abbr": "min",
+ "watching": "gledanje"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "core-config": {
+ "button_detect": "Otkrij",
+ "finish": "Sljedeći",
+ "intro": "Pozdrav {name}, dobrodošli u Home Assistant. Kako biste željeli nazvati svoj dom?",
+ "intro_location": "Željeli bismo znati gdje živite. Te će informacije pomoći pri prikazivanju informacija i postavljanju automatizacije na temelju sunca. Ti se podaci nikada ne dijele izvan vaše mreže.",
+ "intro_location_detect": "Možemo vam pomoći da ispunite ove informacije tako što ćete napraviti jedan zahtjev na vanjsku uslugu.",
+ "location_name_default": "Dom"
+ },
+ "integration": {
+ "finish": "Završi",
+ "intro": "Uređaji i usluge predstavljeni su u programu Home Assistant kao integracije. Možete ih postaviti sada ili to učiniti kasnije s zaslona konfiguracije.",
+ "more_integrations": "Više"
+ },
+ "intro": "Jeste li spremni probuditi svoj dom, vratiti svoju privatnost i pridružiti se svjetskoj zajednici tinkerera?",
+ "user": {
+ "create_account": "Stvorite račun",
+ "data": {
+ "name": "Ime",
+ "password": "Lozinka",
+ "password_confirm": "Potvrda lozinke",
+ "username": "Korisničko ime"
+ },
+ "error": {
+ "password_not_match": "Lozinke se ne podudaraju",
+ "required_fields": "Ispunite sva potrebna polja"
+ },
+ "intro": "Započnimo stvaranjem korisničkog računa.",
+ "required_field": "Potreban"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "link_promo": "Saznajte više"
+ },
+ "change_password": {
+ "confirm_new_password": "Potvrdite novu lozinku",
+ "current_password": "Trenutna lozinka",
+ "error_required": "Potreban",
+ "header": "Promijeni lozinku",
+ "new_password": "Nova lozinka",
+ "submit": "podnijeti"
+ },
+ "current_user": "Trenutno ste prijavljeni kao {fullName}.",
+ "force_narrow": {
+ "description": "Bočna traka će po zadanom biti sakrivena, slično kao na mobitelu.",
+ "header": "Uvijek sakrij bočnu traku"
+ },
+ "is_owner": "Vi ste vlasnik.",
+ "language": {
+ "dropdown_label": "Jezik",
+ "header": "Jezik",
+ "link_promo": "Pomognite prevođenju"
+ },
+ "logout": "Odjava",
+ "logout_text": "Jeste li sigurni da se želite odjaviti?",
+ "logout_title": "Odjavite se?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Jeste li sigurni da želite izbrisati pristupni token za {name} ?",
+ "create": "Izradite token",
+ "create_failed": "Nije uspjelo stvaranje pristupnog tokena.",
+ "delete_failed": "Nije uspjelo brisanje pristupnog tokena.",
+ "description": "Izradite dugotrajne tokene za pristup kako biste omogućili da vaše skripte stupaju u interakciju sa vašim primjerom Home Assistanta. Svaki token će vrijediti 10 godina od stvaranja. Sljedeći su dugotrajni tokeni trenutno aktivni.",
+ "empty_state": "Još nemate dugovječnih tokena pristupa.",
+ "header": "Dugotrajni tokeni",
+ "learn_auth_requests": "Saznajte kako obaviti provjeru autentičnosti zahtjeva.",
+ "prompt_copy_token": "Kopirajte pristupni token. Neće se više prikazati.",
+ "prompt_name": "Ime?"
+ },
+ "mfa": {
+ "confirm_disable": "Jeste li sigurni da želite onemogućiti {name} ?",
+ "disable": "Onemogući",
+ "enable": "Omogući",
+ "header": "Višefaktorski moduli za provjeru autentičnosti"
+ },
+ "mfa_setup": {
+ "close": "Zatvoriti",
+ "step_done": "Postavka gotova za {step}",
+ "submit": "podnijeti",
+ "title_aborted": "Prekinut",
+ "title_success": "Uspješno!"
+ },
+ "push_notifications": {
+ "description": "Slanje obavijesti na ovaj uređaj.",
+ "error_load_platform": "Konfigurirajte notify.html5.",
+ "error_use_https": "Zahtijeva SSL omogućen za sučelje.",
+ "header": "Push Obavijesti",
+ "link_promo": "Saznajte više",
+ "push_notifications": "Push obavijesti"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Jeste li sigurni da želite izbrisati pristupni token za {name} ?",
+ "created_at": "Izrađeno {date}",
+ "current_token_tooltip": "Nije moguće izbrisati trenutni token za osvježavanje",
+ "delete_failed": "Nije uspjelo brisanje pristupnog tokena.",
+ "description": "Svaki token za osvježavanje predstavlja sesiju za prijavu. Tokeni osvježavanja bit će automatski uklonjeni kada kliknete odjava. Trenutačno su aktivni sljedeći tokeni za osvježavanje vašeg računa.",
+ "header": "Osvježi token",
+ "last_used": "Posljednje upotrijebljeno na {date} od {location}",
+ "not_used": "Nikada nije bio korišten",
+ "token_title": "Osvježi token za {clientId}"
+ },
+ "themes": {
+ "dropdown_label": "Tema",
+ "error_no_theme": "Nema dostupnih tema.",
+ "header": "Tema",
+ "link_promo": "Saznajte o temama"
+ },
+ "vibrate": {
+ "description": "Omogućite ili onemogućite vibracije na ovom uređaju prilikom kontrole uređaja.",
+ "header": "Vibriraj"
+ }
+ }
+ },
+ "sidebar": {
+ "external_app_configuration": "Konfiguracija aplikacije",
+ "sidebar_toggle": "Prekidač bočne trake"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/hu.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/hu.json
new file mode 100644
index 00000000..70ff7f12
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/hu.json
@@ -0,0 +1,4668 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Konfigurációs bejegyzés",
+ "device": "Eszköz",
+ "integration": "Integráció",
+ "user": "Felhasználó"
+ }
+ },
+ "groups": {
+ "owner": "Tulajdonos",
+ "system-admin": "Adminisztrátorok",
+ "system-read-only": "Felhasználók csak olvasási jogosultsággal",
+ "system-users": "Felhasználók"
+ },
+ "panel": {
+ "calendar": "Naptár",
+ "config": "Konfiguráció",
+ "developer_tools": "Fejlesztői eszközök",
+ "energy": "Energia",
+ "history": "Előzmények",
+ "logbook": "Napló",
+ "mailbox": "Postafiók",
+ "map": "Térkép",
+ "media_browser": "Média",
+ "profile": "Profil",
+ "shopping_list": "Bevásárló lista",
+ "states": "Áttekintés"
+ },
+ "state": {
+ "default": {
+ "off": "Ki",
+ "on": "Be",
+ "unavailable": "Nem elérhető",
+ "unknown": "Ismeretlen"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Automatikus",
+ "off": "Ki",
+ "on": "Be"
+ },
+ "hvac_action": {
+ "cooling": "Hűtés",
+ "drying": "Párátlanítás",
+ "fan": "Ventilátor",
+ "heating": "Fűtés",
+ "idle": "Tétlen",
+ "off": "Ki"
+ },
+ "preset_mode": {
+ "activity": "Tevékenység",
+ "away": "Távol",
+ "boost": "Turbó",
+ "comfort": "Komfort",
+ "eco": "Takarékos",
+ "home": "Otthon",
+ "none": "Nincs",
+ "sleep": "Alvás"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Automatikus",
+ "away": "Távol",
+ "baby": "Baba",
+ "boost": "Turbo",
+ "comfort": "Komfort",
+ "eco": "Takarékos",
+ "home": "Otthon",
+ "normal": "Normál",
+ "sleep": "Alvás"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Élesítve",
+ "armed_away": "Élesítve",
+ "armed_custom_bypass": "Élesítve",
+ "armed_home": "Élesítve",
+ "armed_night": "Élesítve",
+ "armed_vacation": "Élesítve",
+ "arming": "Élesítés",
+ "disarmed": "Hatást.",
+ "disarming": "Hatást.",
+ "pending": "Függő",
+ "triggered": "Riaszt"
+ },
+ "default": {
+ "entity_not_found": "Entitás nem található",
+ "error": "Hiba",
+ "unavailable": "N/A",
+ "unknown": "Ism"
+ },
+ "device_tracker": {
+ "home": "Otthon",
+ "not_home": "Távol"
+ },
+ "person": {
+ "home": "Otthon",
+ "not_home": "Távol"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Alapértelmezett",
+ "header": "Hang",
+ "input": "Bemenet",
+ "output": "Kimenet"
+ },
+ "network": {
+ "container": "Konténer",
+ "disabled": "Letiltva",
+ "header": "Hálózat",
+ "host": "Gép"
+ },
+ "no_configuration": "Ez a bővítmény nem tárja fel szabadon a konfigurációját.",
+ "options": {
+ "edit_in_ui": "Szerkesztés a felhasználói felületen",
+ "edit_in_yaml": "Szerkesztés YAML-ként",
+ "header": "További opciók",
+ "invalid_yaml": "Érvénytelen YAML",
+ "show_unused_optional": "Nem használt, opcionális konfigurációs lehetőségek"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Nem sikerült lehívni a bővítmény változásnaplóját",
+ "go_to_config": "Konfiguráció szerkesztése",
+ "install": "A bővítmény telepítése sikertelen",
+ "restart": "A bővítmény újraindítása sikertelen",
+ "start": "A bővítmény indítása sikertelen",
+ "start_invalid_config": "Ugrás a konfigurációra",
+ "stop": "A bővítmény leállítása sikertelen",
+ "uninstall": "A bővítmény törlése sikertelen",
+ "validate_config": "Nem sikerült ellenőrizni a bővítmény konfigurációját"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "Az AppArmor ('Application Armor') egy Linux kernel biztonsági modul, amely korlátozza a bővítmények képességeit, például a hálózati hozzáférést, a közvetlen socket hozzáférést és az engedélyt bizonyos fájlok olvasására, írására vagy végrehajtására. \n\nA bővítmények szerzői megadhatják a biztonsági profiljukat, optimalizálva a bővítményt, vagy kérhetik annak letiltását. Ha az AppArmor le van tiltva, az biztonsági kockázatokat vet fel, és ezért negatív hatással van a bővítmény biztonsági pontszámára.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "Egy bővítmény hitelesítheti a felhasználókat Home Assistantban, lehetővé téve a bővítmények számára, hogy a felhasználóknak lehetőségük legyen bejelentkezni a bennük futó alkalmazásokba, a Home Assistant felhasználónév / jelszó alapján. Ez a jelvény jelzi, ha a bővítmény szerzője kéri ezt a képességet.",
+ "title": "Home Assistant Hitelesítés"
+ },
+ "docker_api": {
+ "description": "A bővítmény szerzője kérte a hozzáférését a rendszeren futó Docker-példányhoz. Ez a mód teljes hozzáférést és vezérlést biztosít a bővítménynek az egész Home Assistant rendszerhez, ami biztonsági kockázatokat jelent, és visszaélés esetén károsíthatja a rendszert. Ezért ez a szolgáltatás negatívan befolyásolja Home assistant biztonságát.\n\nEzt a hozzáférési szintet a program nem kapja meg automatikusan, ezt Önnek kell megerősítenie. Ehhez manuálisan le kell tiltania a bővítmény védelmi módját. Csak akkor tiltsa le a védelmi módot, ha tényleg szükség van erre ÉS megbízik a bővítmény forrásában.",
+ "title": "Teljes Docker hozzáférés"
+ },
+ "full_access": {
+ "description": "Ez a bővítmény teljes hozzáférést biztosít a rendszer hardveréhez, a szerzőjének kérésére. A hozzáférés összehasonlítható a Docker privilegizált módjával. Mivel ez lehetséges biztonsági kockázatokat tár fel, ez a szolgáltatás negatívan befolyásolja Home assistant biztonságát. \n\nEzt a hozzáférési szintet a program nem kapja meg automatikusan, ezt Önnek kell megerősítenie. Ehhez manuálisan le kell tiltania a bővítmény védelmi módját. Csak akkor tiltsa le a védelmi módot, ha tényleg szükség van erre ÉS megbízik a bővítmény forrásában.",
+ "title": "Teljes hozzáférés a hardverhez"
+ },
+ "hassio_api": {
+ "description": "A bővítmény hozzáférést kapott a Supervisor API-hoz, a szerzőjének kérésére. Alapértelmezés szerint a bővítmény hozzáférhet a rendszer általános verzióinformációihoz. Amikor a bővítmény „kezelő” vagy „rendszergazda” szintű hozzáférést kér az API-hoz, hozzáférést kap Home Assistant rendszer több részének vezérléséhez. Ezt az engedélyt ez a jelvény jelzi, és ez negatívan befolyásolja a bővítmény biztonsági pontszámát.",
+ "title": "Supervisor API hozzáférés"
+ },
+ "homeassistant_api": {
+ "description": "Ez a bővítmény hozzáférhet a futó Home Assistant példányhoz közvetlenül a Home Assistant API-n keresztül. Ez az üzemmód kezeli a bővítmény hitelesítését is, amely lehetővé teszi annak hogy további hitelesítési tokenek nélkül kapcsolódhasson Home Assistanthoz.",
+ "title": "Home Assistant API-hozzáférés"
+ },
+ "host_network": {
+ "description": "A bővítmények általában a saját elszigetelt hálózati rétegükben futnak, ami megakadályozza, hogy hozzáférjenek a gép operációs rendszer hálózatához. Bizonyos esetekben ez a hálózati elkülönítés korlátozhatja a bővítményeket a szolgáltatásaik nyújtásában, ezért az elkülönítést a bővítmény szerzője feloldhatja, így a bővítmény teljes hozzáférést biztosít a gazdaszámítógép hálózati képességeihez. Ez több hálózati lehetőséget biztosít a bővítménynek, de csökkenti a biztonságot, ezért a bővítmény biztonsági besorolása csökken, ha ezt a beállítást a bővítmény használja.",
+ "title": "Gazdahálózat"
+ },
+ "host_pid": {
+ "description": "Általában a bővítmény futtatásának folyamatait elkülönítik az összes többi rendszerfolyamattól. A bővítmény szerzője azt kérte, hogy az férjen hozzá a gépen futó rendszerfolyamatokhoz, és engedélyezze a bővítmény számára a folyamatok futtatását a fő rendszeren is. Ez a mód teljes hozzáférést és vezérlést biztosít a bővítménynek az egész Home Assistant rendszerhez, ami biztonsági kockázatokat jelent, és visszaélés esetén károsíthatja a rendszert. Ezért ez a szolgáltatás negatívan befolyásolja Home assistant biztonságát.\n\nEzt a hozzáférési szintet a program nem kapja meg automatikusan, ezt Önnek kell megerősítenie. Ehhez manuálisan le kell tiltania a bővítmény védelmi módját. Csak akkor tiltsa le a védelmi módot, ha tényleg szükség van erre ÉS megbízik a bővítmény forrásában.",
+ "title": "Gazda folyamatok névtere"
+ },
+ "ingress": {
+ "description": "Ez a bővítmény az Ingress használatával biztonságosan beágyazódik a kezelőfelületével Home Assistantba.",
+ "title": "Bemenet"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "auth",
+ "core": "Core",
+ "docker": "docker",
+ "hardware": "hardver",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "gép",
+ "host_pid": "gazda pid",
+ "ingress": "bemenet",
+ "rating": "értékelés",
+ "stage": "szakasz"
+ },
+ "rating": {
+ "description": "Home Assistant minden egyes bővítménynek egy biztonsági besorolást ad, amely jelzi a bővítmény használatával járó kockázatokat. Minél több hozzáférést igényel egy bővítmény a rendszeréhez, annál alacsonyabb a pontszám, ami növeli a lehetséges biztonsági kockázatokat. \n\nA pontszám 1 és 6 közötti skálán van. Itt az 1 a legalacsonyabb pontszám (a legbizonytalanabb és a legmagasabb kockázatnak tekinthető), és a 6 a legmagasabb pontszám (a legbiztonságosabbnak és a legkisebb kockázatnak tekinthető).",
+ "title": "Bővítmény biztonsági besorolása"
+ },
+ "role": {
+ "admin": "admin",
+ "backup": "biztonsági mentés",
+ "default": "alapértelmezett",
+ "homeassistant": "homeassistant",
+ "manager": "menedzser"
+ },
+ "stage": {
+ "description": "A bővítmények három szintű besorolásúak lehetnek:\n\n {icon_stable} ** Stabil **: Ezek a napi üzemi felhasználásra szánt, kész bővítmények. \n\n {icon_experimental} ** Kísérleti **: Ezek még tartalmazhatnak hibákat, befejezetlenek lehetnek. \n\n {icon_deprecated} ** Elavult **: Ezek a bővítmények többé nem kapnak frissítéseket.",
+ "title": "Bvítmény szakasz"
+ },
+ "stages": {
+ "deprecated": "Elavult",
+ "experimental": "Kísérleti"
+ }
+ },
+ "changelog": "Változási napló",
+ "cpu_usage": "Bővítmény CPU-használata",
+ "hostname": "Gépnév",
+ "install": "telepítés",
+ "new_update_available": "{name} {version} elérhető",
+ "not_available_arch": "Ez a bővítmény nem kompatibilis a gép processzor architektúrájával vagy a telepített operációs rendszerrel.",
+ "not_available_version": "A Home Assistant {core_version_installed}. verziója fut. A bővítmény erre a verzióra történő frissítéséhez legalább {core_version_needed}. Home Assistant verzióra van szükség.",
+ "open_web_ui": "Webes kezelőfelület megnyitása",
+ "option": {
+ "auto_update": {
+ "description": "A bővítmény automatikus frissítése ha új verzió érhető el",
+ "title": "Automatikus frissítés"
+ },
+ "boot": {
+ "description": "Bővítmény elindítása a rendszer indításával együtt",
+ "title": "Indítás a rendszerindításkor"
+ },
+ "ingress_panel": {
+ "description": "A bővítmény hozzáadása az oldalsávhoz",
+ "title": "Megjelenítés az oldalsávon"
+ },
+ "protected": {
+ "description": "Blokkolja a bővítmény emelt szintű rendszer-elérését",
+ "title": "Védelmi mód"
+ },
+ "watchdog": {
+ "description": "A bővítmény újraindítása ha az leáll",
+ "title": "Watchdog"
+ }
+ },
+ "protection_mode": {
+ "content": "A bővítmény védelmi módja le van tiltva! Ez a bővítmény számára teljes hozzáférést biztosít a rendszerhez, ami növeli a biztonsági kockázatokat, és helytelen használat esetén károsíthatja a rendszert. Csak akkor tiltsa le a védelmi módot, ha tényleg szükség van erre ÉS megbízik a bővítmény forrásában.",
+ "enable": "Védelmi mód engedélyezése",
+ "title": "Figyelem: A védelmi mód ki van kapcsolva!"
+ },
+ "ram_usage": "Bővítmény RAM-használata",
+ "rebuild": "újraépítés",
+ "restart": "újraindítás",
+ "start": "indítás",
+ "stop": "leállítás",
+ "uninstall": "eltávolítás",
+ "visit_addon_page": "További részletekért látogasson el a {name} oldalra."
+ },
+ "documentation": {
+ "get_documentation": "Nem sikerült lekérni a bővítmény dokumentációját, {error}"
+ },
+ "failed_to_reset": "Nem sikerült visszaállítani a bővítmény konfigurációját, {error}",
+ "failed_to_save": "Nem sikerült elmenteni a bővítmény konfigurációját, {error}",
+ "logs": {
+ "get_logs": "Nem sikerült a bővítménynaplók beszerzése, {error}"
+ },
+ "panel": {
+ "configuration": "Konfiguráció",
+ "documentation": "Dokumentáció",
+ "info": "Infó",
+ "log": "Napló"
+ },
+ "state": {
+ "installed": "A bővítmény telepítve van",
+ "not_available": "A bővítmény nem érhető el a rendszerén",
+ "not_installed": "A bővítmény nincs telepítve"
+ }
+ },
+ "backup": {
+ "addons": "Bővítmények",
+ "confirm_password": "Biztonsági mentés jelszavának megerősítése",
+ "could_not_create": "Nem sikerült biztonsági mentést létrehozni",
+ "create": "Létrehozás",
+ "create_backup": "Biztonsági mentés létrehozása",
+ "create_blocked_not_running": "Jelenleg nem lehet biztonsági mentést létrehozni, mert a rendszer {state} állapotban van.",
+ "created": "Létrehozva",
+ "delete_backup_confirm": "törlés",
+ "delete_backup_text": "Bisztos benne, hogy törölni szeretne {number} {number, plural,\n one {biztonsági mentést}\n other {biztonsági mentést}\n}?",
+ "delete_backup_title": "Biztonsági mentés törlése",
+ "delete_selected": "Kijelölt biztonsági mentések törlése",
+ "enter_password": "Kérem, adja meg a jelszót",
+ "failed_to_delete": "Nem sikerült törölni",
+ "folders": "Mappák",
+ "full_backup": "Teljes biztonsági mentés",
+ "name": "Biztonsági mentés neve",
+ "no_backups": "Még nem készült egyetlen biztonsági mentés sem.",
+ "partial_backup": "Részleges biztonsági mentés",
+ "password": "Biztonsági mentés jelszava",
+ "password_protection": "Jelszóvédelem",
+ "passwords_not_matching": "A jelszavak nem egyeznek",
+ "select_type": "Válassza ki, hogy mit szeretne visszaállítani",
+ "selected": "{number} kiválasztva",
+ "size": "Méret",
+ "type": "Biztonsági mentés típusa",
+ "upload_backup": "Biztonsági mentés feltöltése"
+ },
+ "common": {
+ "cancel": "Mégse",
+ "close": "Bezárás",
+ "description": "Leírás",
+ "error": {
+ "unknown": "Ismeretlen hiba",
+ "update_failed": "Sikertelen frissítés"
+ },
+ "failed_to_restart_name": "Nem sikerült újraindítani a következőt: {name}",
+ "failed_to_update_name": "Nem sikerült frissíteni a következőt: {name}",
+ "learn_more": "Tudjon meg többet",
+ "menu": "Menü",
+ "new_version_available": "Új verzió érhető el",
+ "newest_version": "Legújabb verzió",
+ "no": "Nem",
+ "refresh": "Frissítés",
+ "release_notes": "Kiadási megjegyzések",
+ "reload": "Újratöltés",
+ "reset_defaults": "Visszaállítás az alapértelmezett értékekre",
+ "reset_options": "Visszaállítási lehetõségek",
+ "restart": "Újraindítás",
+ "restart_name": "{name} újraindítása",
+ "review": "áttekintés",
+ "running_version": "Jelenleg a {version}. verzió fut",
+ "save": "Mentés",
+ "show": "megjelenítés",
+ "show_more": "Bővebb információ megjelenítése",
+ "update": "Frissítés",
+ "update_available": "{count, plural,\n one {Frissítés}\n other {{count} frissítés}\n} függőben",
+ "version": "Verzió",
+ "yes": "Igen"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Biztos benne, hogy visszaállítja az összes beállítást?",
+ "title": "Visszaállítási lehetõségek"
+ },
+ "restart": {
+ "text": "Biztosan újra szeretné indítani: {name}?",
+ "title": "{name} újraindítása"
+ },
+ "update": {
+ "text": "Biztos benne, hogy frissíteni szeretné {name}-t {version}. verzióra?",
+ "title": "{name} frissítése"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Új verzió érhető el",
+ "addon_running": "A bővítmény fut",
+ "addon_stopped": "A bővítmény leállt",
+ "addons": "Telepített bővítmények",
+ "no_addons": "Még nincs telepítve egyetlen bővítmény sem. A kezdéshez menjen át a bővítmény boltba!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Mégse",
+ "description": "Jelenleg a ''{current_path}'' meghajtó van használatban az adatok tárolására. Az adatok áthelyezése másik meghajtóra újraindítja az eszközt, és körülbelül {time} percet vesz igénybe. Home Assistant ebben az időszakban nem lesz elérhető. A folyamat közben kérem, ne áramtalanítsa az eszközt!",
+ "loading_devices": "Eszközök betöltése",
+ "move": "Áthelyezés",
+ "moving": "Adatok áthelyezése folyamatban",
+ "moving_desc": "Újraindítás, majd adatok áthelyezése folyamatban. Kérem, várjon.",
+ "no_devices": "Nem található megfelelő eszköz",
+ "select_device": "Válasszon ki egy új meghajtót",
+ "title": "Adatok áthelyezése"
+ },
+ "hardware": {
+ "attributes": "Attribútumok",
+ "device_path": "Eszköz útvonala",
+ "id": "ID",
+ "search": "Hardver keresése",
+ "subsystem": "Alrendszer",
+ "title": "Hardver"
+ },
+ "network": {
+ "connected_to": "Csatlakozva a következőhöz: {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Letiltva",
+ "dns_servers": "DNS Szerverek",
+ "failed_to_change": "Nem sikerült megváltoztatni a hálózati beállításokat",
+ "gateway": "Átjáró címe",
+ "ip_netmask": "IP-cím/Netmaszk",
+ "open": "Nyitva",
+ "scan_ap": "Hozzáférési pontok keresése",
+ "static": "Statikus",
+ "title": "Hálózati beállítások",
+ "unsaved": "Vannak nem mentett módosítások, amik elvesznek ha másik fülre vált. Biztos benne hogy vált most?",
+ "warning": "Ha megváltoztatja a Wi-Fi, IP vagy átjáró címét, akkor elveszítheti a kapcsolatot!",
+ "wep": "WEP",
+ "wpa": "wpa-psk"
+ },
+ "registries": {
+ "add_new_registry": "Hozzáadás új rendszerleíró adatbázishoz",
+ "add_registry": "Hozzáadás a rendszerleíró adatbázishoz",
+ "failed_to_add": "Nem sikerült hozzáadni a rendszerleíró adatbázishoz",
+ "failed_to_remove": "Nem sikerült eltávolítani a rendszerleíró adatbázisból",
+ "no_registries": "Nincsenek konfigurálva regiszterek",
+ "password": "Jelszó",
+ "registry": "Regisztrálás",
+ "remove": "Eltávolítás",
+ "title_add": "Új konténer-regiszter hozzáadása",
+ "title_manage": "Konténer-regiszterek kezelése",
+ "username": "Felhasználónév"
+ },
+ "repositories": {
+ "add": "Hozzáadás",
+ "remove": "Eltávolítás",
+ "title": "Bővítmény repók kezelése",
+ "used": "A repó a telepített bővítmények által van használatban, és nem lehet eltávolítani."
+ },
+ "restart_addon": {
+ "confirm_text": "Add-on újraindítása",
+ "text": "Szeretné újraindítani bővítményt a módosításokkal?"
+ },
+ "update": {
+ "backup": "Biztonsági mentés",
+ "create_backup": "Frissítés előtt készüljön egy új {name} biztonsági mentés",
+ "creating_backup": "{name} biztonsági mentésének létrehozása",
+ "updating": "{name} frissítése {version}. verzióra"
+ }
+ },
+ "my": {
+ "error": "Ismeretlen hiba történt",
+ "error_addon_no_ingress": "A kért bővítmény nem támogatja a bejutást",
+ "error_addon_not_found": "A bővítmény nem található",
+ "error_addon_not_installed": "A kért bővítmény nincs telepítve. Kérjük, először telepítse fel.",
+ "error_addon_not_started": "A kért bővítmény nem fut. Kérjük, először indítsa el",
+ "faq_link": "My Home Assistant GYIK",
+ "not_supported": "Home Assistant ezen példánya nem támogatja ezt az átirányítást. Ellenőrizze a {link} fájlban a támogatott átirányításokat és azok verzióját."
+ },
+ "panel": {
+ "addons": "Bővítmények",
+ "backups": "Biztonsági mentések",
+ "dashboard": "Irányítópult",
+ "store": "Bővítménybolt",
+ "system": "Rendszer"
+ },
+ "store": {
+ "check_updates": "Frissítések keresése",
+ "missing_addons": "Hiányzó add-onok? Kapcsolja be a haladó módot a felhasználói profil oldalon",
+ "no_results_found": "Nincs találat: {repository}.",
+ "registries": "Rendszerleíró adatbázis",
+ "repositories": "Repók"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Core CPU használat",
+ "ram_usage": "Core RAM használat"
+ },
+ "host": {
+ "change": "Módosítás",
+ "change_hostname": "Gépnév megváltoztatása",
+ "confirm_reboot": "Biztos benne, hogy újra szeretné indítani a gépet?",
+ "confirm_shutdown": "Biztos benne, hogy le szeretné állítani a gépet?",
+ "deployment": "Telepítés",
+ "docker_version": "Docker verzió",
+ "emmc_lifetime_used": "Az eMMC élettartama elhasználódott",
+ "failed_to_get_hardware_list": "Nem sikerült lekérni a hardverlistát",
+ "failed_to_import_from_usb": "Nem sikerült importálni az USB-ről",
+ "failed_to_move": "Az adatok áthelyezése nem sikerült",
+ "failed_to_reboot": "A gép újraindítása sikertelen",
+ "failed_to_set_hostname": "Az állomásnév beállítása nem sikerült",
+ "failed_to_shutdown": "A gép leállítása sikertelen",
+ "hardware": "Hardver",
+ "hostname": "Gépnév",
+ "import_from_usb": "Importálás USB-ről",
+ "ip_address": "IP-cím",
+ "move_datadisk": "Adatok áthelyezése",
+ "new_hostname": "Kérem, adja meg az új állomásnevet:",
+ "operating_system": "Operációs rendszer",
+ "reboot_host": "Gép újraindítása",
+ "shutdown_host": "Gép leállítása",
+ "used_space": "Felhasznált terület"
+ },
+ "log": {
+ "get_logs": "Nem sikerült lekérni a naplókat: {provider}, {error}",
+ "log_provider": "Naplószolgáltató"
+ },
+ "supervisor": {
+ "beta_backup": "Aktiválás előtt győződjön meg arról, hogy van biztonsági mentése az adatokról.",
+ "beta_join_confirm": "Szeretne csatlakozni a béta csatornához?",
+ "beta_release_items": "Ez magában foglalja a következő béta verziókat:",
+ "beta_warning": "A bétaverziók tesztelők és korai alkalmazók számára készültek, és instabil programelemeket tartalmazhatnak",
+ "channel": "Csatorna",
+ "cpu_usage": "Supervisor CPU használat",
+ "failed_to_reload": "Nem sikerült újratölteni a Supervisort",
+ "failed_to_set_option": "Nem sikerült beállítani a Supervisor opciót",
+ "failed_to_update": "Nem sikerült frissíteni a Supervisort",
+ "join_beta_action": "Csatlakozás bétához",
+ "join_beta_description": "Béta frissítéseket kaphat Home Assistant (RC), Supervisor és a host szolgáltatásról",
+ "leave_beta_action": "Kilépés bétából",
+ "leave_beta_description": "Stabil frissítések Home Assistanthoz, a Supervisorhoz és a gép rendszeréhez",
+ "ram_usage": "Supervisor RAM használat",
+ "reload_supervisor": "Supervisor újratöltése",
+ "search": "Keresés",
+ "share_diagnostics": "Diagnosztika megosztása",
+ "share_diagnostics_description": "Összeomlási jelentések és diagnosztikai információk megosztása.",
+ "share_diagonstics_description": "Szeretné automatikusan megosztani az összeomlási jelentéseket és a diagnosztikai információkat, amikor a supervisor váratlan hibákkal találkozik? {line_break} Ez lehetővé teszi számunkra a problémák megoldását, az információkat csak a Home Assistant Core csapata érheti el, és nem osztják meg másokkal. {line_break} Az adatok nem tartalmaznak privát / érzékeny információkat, és ezt bármikor letilthatja a beállításokban.",
+ "share_diagonstics_title": "Segítség a Home Assistant fejlesztésében",
+ "unhealthy_description": "Az \"egészségtelen\" telepítés futtatása problémákat okoz. Az alábbiakban felsoroljuk a telepítés során talált problémákat. Kattintson a linkekre, hogy megtudja, hogyan oldhatja meg ezeket.",
+ "unhealthy_reason": {
+ "docker": "A Docker futtatókörnyezet nem működik megfelelően",
+ "privileged": "A supervisor nem privilegizált",
+ "setup": "A Supervisor beállítása sikertelen volt",
+ "supervisor": "A Supervisor nem tudott frissíteni",
+ "untrusted": "Nem megbízható tartalom észlelése"
+ },
+ "unhealthy_title": "A telepítés helytelen",
+ "unsupported_description": "Az alábbiakban felsoroljuk a telepítés során talált problémákat. Kattintson a linkekre, hogy megtudja, hogyan oldhatja meg ezeket.",
+ "unsupported_reason": {
+ "apparmor": "Az AppArmor nincs engedélyezve a gépen",
+ "container": "Konténerek, amelyekről ismert, hogy problémákat okoznak",
+ "content-trust": "A tartalom-megbízhatóság ellenőrzése le van tiltva",
+ "content_trust": "A tartalom-megbízhatóság ellenőrzése le van tiltva",
+ "dbus": "DBUS",
+ "docker_configuration": "Docker konfiguráció",
+ "docker_version": "Docker verzió",
+ "job_conditions": "Figyelmen kívül hagyott körülmények",
+ "lxc": "LCX",
+ "network_manager": "Network Manager",
+ "os": "Operációs rendszer",
+ "os_agent": "Operációs rendszer ügynök",
+ "privileged": "A supervisor nem privilegizált",
+ "software": "Nem támogatott szoftver észlelve",
+ "source_mods": "Forrásváltozások",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Ön egy nem támogatott telepítés módot használ",
+ "update_supervisor": "A Supervisor frissítése",
+ "warning": "FIGYELMEZTETÉS"
+ }
+ },
+ "update_available": {
+ "core_note": "Supervisor visszaáll {verzió}. verzióra, ha a frissítés után a rendszer nem éled fel.",
+ "create_backup": "Biztonsági mentés készítése frissítés előtt",
+ "creating_backup": "{name} biztonsági mentésének készítése",
+ "description": "A telepített verzió: {version}. Kattintson a frissítéshez erre: {newest_version}.",
+ "no_update": "{name} - nincs elérhető frissítés",
+ "open_release_notes": "Kiadási megjegyzések",
+ "update_name": "Frissítés: {name}",
+ "updating": "{name} frissítése {version}. verzióra"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Szeretne bejelentkezve maradni?",
+ "confirm": "Igen",
+ "decline": "Nem"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Élesít (távozás)",
+ "arm_custom_bypass": "Egyéni áthidalás",
+ "arm_home": "Élesít (otthon)",
+ "arm_night": "Élesít (éjszakai)",
+ "arm_vacation": "Élesítés (vakáció)",
+ "clear_code": "Törlés",
+ "code": "Kód",
+ "disarm": "Hatástalanít"
+ },
+ "area": {
+ "area_not_found": "Terület nem található."
+ },
+ "automation": {
+ "last_triggered": "Utoljára aktiválva",
+ "trigger": "Műveletek futtatása"
+ },
+ "button": {
+ "press": "Gombnyomás"
+ },
+ "camera": {
+ "not_available": "Kép nem áll rendelkezésre"
+ },
+ "climate": {
+ "aux_heat": "Külső hőforrás",
+ "away_mode": "Távol mód",
+ "cooling": "{name} hűtés",
+ "current_temperature": "{name} aktuális hőmérséklet",
+ "currently": "Jelenleg",
+ "fan_mode": "Ventilátor",
+ "heating": "{name} fűtés",
+ "high": "magas",
+ "low": "alacsony",
+ "on_off": "Be / ki",
+ "operation": "Működés",
+ "preset_mode": "Üzemmód",
+ "swing_mode": "Legyezés",
+ "target_humidity": "Kívánt páratartalom",
+ "target_temperature": "Kívánt hőmérséklet",
+ "target_temperature_entity": "{name} kívánt hőmérséklet",
+ "target_temperature_mode": "{name} kívánt hőmérséklet {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "csökkentés",
+ "increment": "növelés",
+ "reset": "visszaállítás"
+ }
+ },
+ "cover": {
+ "position": "Pozíció",
+ "tilt_position": "Döntési pozíció"
+ },
+ "fan": {
+ "direction": "Irány",
+ "forward": "Előre",
+ "oscillate": "Oszcilláció",
+ "preset_mode": "Előre beállított üzemmód",
+ "reverse": "Fordított",
+ "speed": "Sebesség"
+ },
+ "humidifier": {
+ "humidity": "Kívánt páratartalom",
+ "mode": "Mód",
+ "on_entity": "{name} be",
+ "target_humidity_entity": "{name} kívánt páratartalom"
+ },
+ "light": {
+ "brightness": "Fényerő",
+ "cold_white_value": "Hideg fehér fényerő",
+ "color_brightness": "Szinek fényereje",
+ "color_temperature": "Színhőmérséklet",
+ "effect": "Hatás",
+ "warm_white_value": "Meleg fehér fényerő",
+ "white_value": "A fehér fényereje"
+ },
+ "lock": {
+ "code": "Kód",
+ "lock": "Bezár",
+ "unlock": "Kinyit"
+ },
+ "media_player": {
+ "browse_media": "Médiaböngészés",
+ "media_next_track": "Következő",
+ "media_pause": "Szünet",
+ "media_play": "Lejátszás",
+ "media_play_pause": "Lejátszás/szünet",
+ "media_previous_track": "Előző",
+ "media_stop": "Stop",
+ "media_volume_down": "Hangerő le",
+ "media_volume_mute": "Némítás",
+ "media_volume_unmute": "Némítás ki",
+ "media_volume_up": "Hangerő fel",
+ "nothing_playing": "Nem játszik le semmit",
+ "sound_mode": "Hangzás",
+ "source": "Forrás",
+ "text_to_speak": "Beszéd szövege",
+ "turn_off": "Kikapcsolás",
+ "turn_on": "Bekapcsolás"
+ },
+ "persistent_notification": {
+ "dismiss": "Elvetés"
+ },
+ "scene": {
+ "activate": "Aktiválás"
+ },
+ "script": {
+ "cancel": "Mégse",
+ "cancel_multiple": "Mégse {number}",
+ "run": "Futtatás"
+ },
+ "service": {
+ "run": "Futtatás"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "mégse",
+ "finish": "befejezés",
+ "pause": "szünet",
+ "start": "indítás"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Takarítás folytatása",
+ "return_to_base": "Dokkolás",
+ "start_cleaning": "Takarítás indítása",
+ "turn_off": "Kikapcsolás",
+ "turn_on": "Bekapcsolás"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Távoli mód",
+ "currently": "Jelenleg",
+ "on_off": "Be / ki",
+ "operation": "Működés",
+ "target_temperature": "Kívánt hőmérséklet"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Légnyomás",
+ "humidity": "Páratartalom",
+ "precipitation": "Csapadék",
+ "temperature": "Hőmérséklet",
+ "visibility": "Látótávolság",
+ "wind_speed": "Szélsebesség"
+ },
+ "cardinal_direction": {
+ "e": "K",
+ "ene": "K-ÉK",
+ "ese": "K-DK",
+ "n": "É",
+ "ne": "ÉK",
+ "nne": "É-ÉK",
+ "nnw": "É-ÉNy",
+ "nw": "ÉNy",
+ "s": "D",
+ "se": "DK",
+ "sse": "D-DK",
+ "ssw": "D-DNy",
+ "sw": "DNy",
+ "w": "Ny",
+ "wnw": "Ny-ÉNy",
+ "wsw": "Ny-DNy"
+ },
+ "day": "Nappal",
+ "forecast": "Előrejelzés",
+ "high": "Magas",
+ "low": "Alacsony",
+ "night": "Éjszaka"
+ }
+ },
+ "common": {
+ "and": "és",
+ "back": "Vissza",
+ "cancel": "Mégse",
+ "clear": "Törlés",
+ "close": "Bezárás",
+ "continue": "Tovább",
+ "copied": "Másolva",
+ "copied_clipboard": "Vágólapra másolva",
+ "delete": "Törlés",
+ "disable": "Letiltás",
+ "enable": "Engedélyezés",
+ "error_required": "Szükséges",
+ "help": "Súgó",
+ "leave": "Elhagy",
+ "loading": "Betöltés",
+ "menu": "Menü",
+ "move": "Áthelyezés",
+ "next": "Tovább",
+ "no": "Nem",
+ "not_now": "Ne most",
+ "overflow_menu": "Lebegő menü",
+ "previous": "Előző",
+ "refresh": "Frissítés",
+ "remove": "Eltávolítás",
+ "rename": "Átnevezés",
+ "save": "Mentés",
+ "skip": "Kihagyás",
+ "stay": "Marad",
+ "submit": "Küldés",
+ "successfully_deleted": "Sikeresen törölve",
+ "successfully_saved": "Sikeresen elmentve",
+ "undo": "Visszavonás",
+ "yes": "Igen"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Bővítmény",
+ "error": {
+ "fetch_addons": {
+ "description": "Hiba történt a bővítmények betöltése közben",
+ "title": "Hiba történt a bővítmények betöltése közben"
+ },
+ "no_supervisor": {
+ "description": "A bővítmények használata nem támogatott.",
+ "title": "Nincs Supervisor"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Hozzáadás",
+ "failed_create_area": "Nem sikerült létrehozni a területet.",
+ "name": "Név",
+ "text": "Adja meg az új terület nevét.",
+ "title": "Új terület hozzáadása"
+ },
+ "add_new": "Új terület hozzáadása…",
+ "area": "Terület",
+ "clear": "Törlés",
+ "no_areas": "Nincsenek beállított területek",
+ "no_match": "Nem található egyező terület",
+ "show_areas": "Területek megjelenítése"
+ },
+ "attributes": {
+ "expansion_header": "Attribútumok"
+ },
+ "blueprint-picker": {
+ "add_user": "Felhasználó hozzáadása",
+ "remove_user": "Felhasználó eltávolítása",
+ "select_blueprint": "Sablon-automatizmus kiválasztása"
+ },
+ "calendar": {
+ "my_calendars": "Saját naptáraim",
+ "today": "Ma"
+ },
+ "data-table": {
+ "clear": "Törlés",
+ "filtering_by": "Szűrés:",
+ "hidden": "{number} rejtve",
+ "no-data": "Nincs adat",
+ "search": "Keresés"
+ },
+ "date-range-picker": {
+ "end_date": "Befejezés dátuma",
+ "ranges": {
+ "last_week": "Múlt hét",
+ "this_week": "Ezen a héten",
+ "today": "Ma",
+ "yesterday": "Tegnap"
+ },
+ "select": "Kiválasztás",
+ "start_date": "Kezdés dátuma"
+ },
+ "device-picker": {
+ "clear": "Törlés",
+ "device": "Eszköz",
+ "no_area": "Nincs terület",
+ "no_devices": "Nincsenek beállított eszközök",
+ "no_match": "Nem található egyező eszköz",
+ "show_devices": "Eszközök megjelenítése",
+ "toggle": "Kapcsolás"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Attribútum",
+ "show_attributes": "Attribútumok megjelenítése"
+ },
+ "entity-picker": {
+ "clear": "Törlés",
+ "edit": "Szerkesztés",
+ "entity": "Entitás",
+ "no_match": "Nem található egyező entitás",
+ "show_entities": "Entitások megjelenítése"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "Előzményintegráció letiltva",
+ "loading_history": "Állapot előzmények betöltése…",
+ "no_history_found": "Nem található állapot előzmény."
+ },
+ "logbook": {
+ "by": "- általa:",
+ "by_service": "- szolgáltatás által:",
+ "entries_not_found": "Nincsenek naplóbejegyzések.",
+ "messages": {
+ "became_unavailable": "elérhetetlenné vált",
+ "changed_to_state": "állapot megváltozott: {state}",
+ "cleared_device_class": "{device_class} észlelés befejeződött",
+ "cleared_tampering": "manipulálás elhárítva",
+ "detected_device_class": "{device_class} észlelve",
+ "detected_tampering": "manipulálás észlelve",
+ "is_closing": "záródik",
+ "is_opening": "nyílik",
+ "rose": "felkelt",
+ "set": "lenyugodott",
+ "turned_off": "ki lett kapcsolva",
+ "turned_on": "be lett kapcsolva",
+ "was_at_home": "hazaért",
+ "was_at_state": "{state} állapotban volt",
+ "was_away": "távol volt",
+ "was_closed": "zárva lett",
+ "was_connected": "csatlakozott",
+ "was_disconnected": "leszakadt",
+ "was_locked": "zárolva lett",
+ "was_low": "alacsony volt",
+ "was_normal": "normális volt",
+ "was_opened": "nyitva lett",
+ "was_plugged_in": "be lett dugva",
+ "was_safe": "biztonságos volt",
+ "was_unlocked": "fel lett oldva",
+ "was_unplugged": "ki lett húzva",
+ "was_unsafe": "nem volt biztonságos"
+ },
+ "retrieval_error": "Hiba a naplóbejegyzés beolvasása során",
+ "show_trace": "Nyomkövetés megjelenítése"
+ },
+ "media-browser": {
+ "audio_not_supported": "A böngésző nem támogatja az audio elemet.",
+ "choose_player": "Lejátszó kiválasztása",
+ "class": {
+ "album": "Album",
+ "app": "App",
+ "artist": "Előadó",
+ "channel": "Csatorna",
+ "composer": "Zeneszerző",
+ "contributing_artist": "Közreműködő előadó",
+ "directory": "Könyvtár",
+ "episode": "Epizód",
+ "game": "Játék",
+ "genre": "Műfaj",
+ "image": "Kép",
+ "movie": "Film",
+ "music": "Zene",
+ "playlist": "Lejátszási lista",
+ "podcast": "Podcast",
+ "season": "Évad",
+ "track": "Szám",
+ "tv_show": "TV-műsor",
+ "url": "URL",
+ "video": "Videó"
+ },
+ "documentation": "dokumentáció",
+ "learn_adding_local_media": "Tudjon meg többet a média hozzáadásról a {documentation}ban.",
+ "local_media_files": "Helyezze el a videó-, hang- és képfájljait a média könyvtárban ahhoz, hogy tallózhassa és lejátszhassa őket a böngészőben vagy a támogatott médialejátszókon.",
+ "media-player-browser": "Média",
+ "media_browsing_error": "Média böngészési hiba",
+ "media_not_supported": "A böngésző médialejátszó nem támogatja az ilyen típusú médiafájlokat",
+ "media_player": "Médialejátszó",
+ "no_items": "Nincsenek elemek",
+ "no_local_media_found": "Nem található helyi média",
+ "no_media_folder": "Úgy tűnik, még nem hozott létre média könyvtárat.",
+ "pick": "Kiválasztás",
+ "pick-media": "Média kiválasztása",
+ "play": "Lejátszás",
+ "play-media": "Média lejátszása",
+ "setup_local_help": "Ellenőrizze a {documentation}t a helyi adathordozó beállításáról.",
+ "video_not_supported": "A böngésző nem támogatja a video elemet.",
+ "web-browser": "Böngésző"
+ },
+ "picture-upload": {
+ "label": "Kép",
+ "unsupported_format": "Nem támogatott formátum. Kérem, válasszon JPEG, PNG vagy GIF képet."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "QR-kód érték megadása",
+ "manual_input": "A QR-kódot beolvashatja egy másik QR-szkennerrel, és beillesztheti a kódot alább",
+ "not_supported": "A böngésző nem támogatja a QR-szkennelést.",
+ "only_https_supported": "QR-kód beolvasás csak kamerával lehetséges, amikor HTTPS-t használ.",
+ "select_camera": "Kamera kiválasztása"
+ },
+ "related-filter-menu": {
+ "filter": "Szűrő",
+ "filter_by_area": "Szűrés terület szerint",
+ "filter_by_device": "Szűrés eszköz szerint",
+ "filter_by_entity": "Szűrés entitás szerint",
+ "filtered_by_area": "terület: {area_name}",
+ "filtered_by_device": "eszköz: {device_name}",
+ "filtered_by_entity": "entitás: {entity_name}"
+ },
+ "related-items": {
+ "area": "Terület",
+ "automation": "A következő automatizmusok része",
+ "device": "Eszköz",
+ "entity": "Kapcsolódó entitások",
+ "group": "A következő csoportok része",
+ "integration": "Integráció",
+ "no_related_found": "Nem található kapcsolódó elem.",
+ "scene": "A következő jelenetek része",
+ "script": "A következő szkriptek része"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one {nappal}\n other {nappal}\n}",
+ "hour": "{count} {count, plural,\none {órával}\nother {órával}\n}",
+ "minute": "{count} {count, plural,\n one {perccel}\n other {perccel}\n}",
+ "second": "{count} {count, plural,\n one {másodperccel}\n other {másodperccel}\n}",
+ "week": "{count} {count, plural,\n one {héttel}\n other {héttel}\n}"
+ },
+ "future_duration": {
+ "day": "{count} {count, plural,\n one {nap}\n other {nap}\n} múlva",
+ "hour": "{count} {count, plural,\n one {óra}\n other {óra}\n} múlva",
+ "minute": "{count} {count, plural,\n one {perc}\n other {perc}\n} múlva",
+ "second": "{count} {count, plural,\n one {másodperc}\n other {másodperc}\n} múlva",
+ "week": "{count} {count, plural,\n one {hét}\n other {hét}\n} múlva"
+ },
+ "just_now": "Éppen most",
+ "never": "Soha",
+ "past_duration": {
+ "day": "{count} {count, plural,\n one {nappal}\n other {nappal}\n} ezelőtt",
+ "hour": "{count} {count, plural,\n one {órával}\n other {órával}\n} ezelőtt",
+ "minute": "{count} {count, plural,\n one {perccel}\n other {perccel}\n} ezelőtt",
+ "second": "{count} {count, plural,\n one {másodperccel}\n other {másodperccel}\n} ezelőtt",
+ "week": "{count} {count, plural,\n one {héttel}\n other {héttel}\n} ezelőtt"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Integrációs dokumentáció",
+ "required": "Ez a mező kötelező",
+ "service_data": "Szolgáltatás adatai",
+ "target": "Célok",
+ "target_description": "Mit használjon ez a szolgáltatás célzott területként, eszközként vagy entitásként."
+ },
+ "service-picker": {
+ "service": "Szolgáltatás"
+ },
+ "statistic-picker": {
+ "learn_more": "További információ a statisztikákról",
+ "missing_entity": "Miért nem szerepel itt az entitás?",
+ "no_match": "Nem található megfelelő statisztika",
+ "no_statistics": "Jelenleg nincs statisztika",
+ "statistic": "Statisztika"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Statisztika betöltése…",
+ "no_statistics_found": "Nem található statisztika.",
+ "statistic_types": {
+ "max": "max",
+ "mean": "átlag",
+ "min": "min",
+ "sum": "összeg"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Terület kiválasztása",
+ "add_device_id": "Eszköz kiválasztása",
+ "add_entity_id": "Entitás kiválasztása",
+ "expand": "Kiterjesztés",
+ "expand_area_id": "A terület szétbontása különálló eszközökre és entitásokra.",
+ "expand_device_id": "Az eszköz szétbontása különálló entitásokra.",
+ "remove": "Eltávolítás",
+ "remove_area_id": "Terület eltávolítása",
+ "remove_device_id": "Eszköz eltávolítása",
+ "remove_entity_id": "Entitás eltávolítása"
+ },
+ "user-picker": {
+ "add_user": "Felhasználó hozzáadása",
+ "no_user": "Nincs felhasználó",
+ "remove_user": "Felhasználó eltávolítása"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Az újonnan felfedezett {integration} entitások legyenek-e automatikusan hozzáadva.",
+ "enable_new_entities_label": "Újonnan hozzáadott entitások engedélyezése.",
+ "enable_polling_description": "{integration} entitásainak frissített állapota legyen-e automatikusan lekérdezve.",
+ "enable_polling_label": "A frissítések lekérdezésének engedélyezése.",
+ "restart_home_assistant": "A módosítások életbe léptetéséhez újra kell indítani Home Assistantot.",
+ "title": "{integration} rendszerbeállításai",
+ "update": "Frissítés"
+ },
+ "domain_toggler": {
+ "reset_entities": "Entitások visszaállítása",
+ "title": "Domainek váltása"
+ },
+ "entity_registry": {
+ "control": "Ellenőrzés",
+ "customize_link": "entitás testreszabása",
+ "dismiss": "Elvetés",
+ "editor": {
+ "advanced": "Haladó beállítások",
+ "area": "Csak az entitás területét állítsa be",
+ "area_note": "Alapértelmezés szerint egy eszköz entitásai ugyanazon a területen vannak, mint az eszköz. Ha megváltoztatja ennek az entitásnak a területét, akkor az a továbbiakban nem fogja követni az eszköz területét.",
+ "change_device_area": "Az eszköz területének módosítása",
+ "confirm_delete": "Biztos benne, hogy törölni szeretné ezt az entitást?",
+ "delete": "Törlés",
+ "device_class": "Megjelenítés mint",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Ajtó",
+ "garage_door": "Garázskapu",
+ "opening": "Egyéb",
+ "window": "Ablak"
+ },
+ "cover": {
+ "door": "Ajtó",
+ "garage": "Garázskapu",
+ "window": "Ablak"
+ }
+ },
+ "device_disabled": "Ennek az entitásnak az eszköze le van tiltva.",
+ "enabled_cause": "Letiltva. (ok: {cause})",
+ "enabled_delay_confirm": "Az engedélyezett entitások {delay} másodpercen belül hozzá lesznek adva Home Assistanthoz",
+ "enabled_description": "A letiltott entitások nem fognak megjelenni a rendszerben.",
+ "enabled_label": "Entitás engedélyezése",
+ "enabled_restart_confirm": "Az entitások engedélyezésének befejezéséhez indítsa újra Home Assistantot",
+ "entity_id": "Entitás ID",
+ "follow_device_area": "Kövesse a készülék területét",
+ "icon": "Ikon",
+ "icon_error": "Az ikonokat a 'prefix:ikonnév' formátumban kell megadni, pl.: 'mdi:home'",
+ "name": "Név",
+ "note": "Megjegyzés: lehet, hogy ez még nem működik minden integrációval.",
+ "open_device_settings": "Eszközbeállítások megnyitása",
+ "unavailable": "Ez az entitás jelenleg nem elérhető.",
+ "update": "Frissítés"
+ },
+ "faq": "dokumentáció",
+ "info_customize": "Néhány attribútumot módosíthat az {customize_link} részben.",
+ "no_unique_id": "Ennek az entitásnak (\"{entity_id}\") nincs egyedi azonosítója, ezért a beállításait nem lehet kezelni a felhasználói felületről. További részletekért tekintse meg a {faq_link} oldalt.",
+ "related": "Kapcsolatok",
+ "settings": "Beállítások"
+ },
+ "generic": {
+ "cancel": "Mégse",
+ "close": "Bezárás",
+ "default_confirmation_title": "Biztos benne?",
+ "ok": "OK"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Kezdeti érték",
+ "maximum": "Maximális érték",
+ "minimum": "Minimális érték",
+ "restore": "Az utolsó ismert érték visszaállítása Home Assistant indításakor",
+ "step": "Lépés mérete"
+ },
+ "generic": {
+ "icon": "Ikon",
+ "name": "Név"
+ },
+ "input_datetime": {
+ "date": "Dátum",
+ "datetime": "Dátum és időpont",
+ "mode": "Mit szeretne megadni?",
+ "time": "Időpont"
+ },
+ "input_number": {
+ "box": "Beviteli mező",
+ "max": "Maximális érték",
+ "min": "Minimális érték",
+ "mode": "Megjelenítési mód",
+ "slider": "Csúszka",
+ "step": "Lépés mérete",
+ "unit_of_measurement": "Mértékegység"
+ },
+ "input_select": {
+ "add": "Hozzáadás",
+ "add_option": "Opció hozzáadása",
+ "no_options": "Még nincsenek opciók.",
+ "options": "Opciók"
+ },
+ "input_text": {
+ "max": "Maximális hossz",
+ "min": "Minimális hossz",
+ "mode": "Megjelenítési mód",
+ "password": "Jelszó",
+ "pattern": "Regex minta az ügyféloldali érvényesítéshez",
+ "text": "Szöveg"
+ },
+ "platform_not_loaded": "{platform} integráció nincs betöltve. Adja hozzá a konfigurációjához: 'default_config:' vagy ''{platform}:''",
+ "required_error_msg": "Ez a mező kötelező",
+ "timer": {
+ "duration": "Időtartam"
+ },
+ "yaml_not_editable": "Ezen entitás beállításai nem szerkeszthetők a felhasználói felületről. Csak a felhasználói felület segítségével létrehozott entitások konfigurálhatók így."
+ },
+ "image_cropper": {
+ "crop": "Kivágás"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Árnyékoló zárása",
+ "close_tile_cover": "Árnyékoló döntésének zárása",
+ "close_tilt_cover": "Árnyékoló döntésének zárása",
+ "open_cover": "Árnyékoló nyitása",
+ "open_tilt_cover": "Árnyékoló döntésének nyitása",
+ "stop_cover": "Árnyékoló mozgásának leállítása"
+ },
+ "details": "Részletek",
+ "dismiss": "Párbeszédpanel elvetése",
+ "edit": "Entitás szerkesztése",
+ "history": "Előzmények",
+ "last_changed": "Utoljára módosult",
+ "last_updated": "Utoljára frissült",
+ "logbook": "Napló",
+ "person": {
+ "create_zone": "Zóna létrehozása az aktuális helyről"
+ },
+ "remote": {
+ "activity": "Jelenlegi tevékenység"
+ },
+ "restored": {
+ "confirm_remove_text": "Biztos benne, hogy el szeretné távolítani ezt az entitást?",
+ "confirm_remove_title": "Biztos benne, hogy eltávolítja az entitást?",
+ "not_provided": "Ez az entitás jelenleg nem érhető el és árva, mert egy olyan integráció vagy eszköz hozta létre, amely el lett távolítva, módosítva lett vagy működésképtelen.",
+ "remove_action": "Entitás eltávolítása",
+ "remove_intro": "Ha az entitás már nincs használatban, akkor nyugodtan eltávolíthatja."
+ },
+ "script": {
+ "last_action": "Utolsó művelet",
+ "last_triggered": "Utolsó aktiválás"
+ },
+ "settings": "Entitás beállítások",
+ "show_more": "Bővebben...",
+ "sun": {
+ "elevation": "Magasság",
+ "rising": "Napkelte",
+ "setting": "Napnyugta"
+ },
+ "updater": {
+ "title": "Frissítési Instrukciók"
+ },
+ "vacuum": {
+ "clean_spot": "Helyi takarítás",
+ "commands": "Porszívó parancsok:",
+ "fan_speed": "Szívóerő",
+ "locate": "Keresés",
+ "pause": "Szünet",
+ "return_home": "Hazatérés",
+ "start": "Indítás",
+ "start_pause": "Indítás/szünet",
+ "status": "Állapot",
+ "stop": "Leállítás"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Kísérlet az MQTT-üzenetek JSON-ként való elemzésére",
+ "entities": "Entitások",
+ "no_entities": "Nincsenek entitások",
+ "no_triggers": "Nincsenek eseményindítók",
+ "payload_display": "Adathalmaz (payload) megjelenítése",
+ "recent_messages": "{n} legfrissebb fogadott üzenet",
+ "show_as_yaml": "Megjelenítés YAML-ként",
+ "title": "{device} debug infók",
+ "triggers": "Eseményindítók"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Opciók"
+ },
+ "loading": {
+ "loading_flow": "Kérem várjon, míg {integration} opciói inicializálódnak",
+ "loading_step": "{integration} következő lépésének betöltése"
+ },
+ "success": {
+ "description": "Beállítások sikeresen mentve."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Területek",
+ "automation": "Automatizmusok",
+ "blueprint": "Sablon-automatizmusok",
+ "core": "Általános",
+ "customize": "Testreszabás",
+ "devices": "Eszközök",
+ "energy": "Energia",
+ "entities": "Entitások",
+ "helpers": "Segítő entitások",
+ "info": "Infó",
+ "integrations": "Integrációk",
+ "logs": "Napló",
+ "lovelace": "Lovelace Irányítópultok",
+ "person": "Személyek",
+ "scene": "Jelenetek",
+ "script": "Szkriptek",
+ "server_control": "Szerver vezérlés",
+ "tag": "Matricák",
+ "users": "Felhasználók",
+ "zone": "Zónák"
+ },
+ "reload": {
+ "automation": "Automatizmusok",
+ "command_line": "Parancssori entitások",
+ "core": "Lokáció és testreszabások",
+ "filesize": "Fájlméret entitások",
+ "filter": "Szűrőentitások",
+ "generic": "Általános IP kamerák",
+ "generic_thermostat": "Általános termosztátok",
+ "group": "Csoportok és értesítési szolgáltatások",
+ "history_stats": "Előzmény statisztika entitások",
+ "homekit": "HomeKit",
+ "input_boolean": "Logikai váltók",
+ "input_datetime": "Dátum/Időpont bemenetek",
+ "input_number": "Szám bemenetek",
+ "input_select": "Választási bemenetek (legördülők)",
+ "input_text": "Szöveg bemenetek",
+ "min_max": "Min/max entitások",
+ "mqtt": "Manuálisan konfigurált MQTT entitások",
+ "person": "Személyek",
+ "ping": "Ping bináris érzékelő entitások",
+ "reload": "{domain}",
+ "rest": "Rest entitások és értesítési szolgáltatások",
+ "rpi_gpio": "Raspberry Pi GPIO entitások",
+ "scene": "Jelenetek",
+ "script": "Szkriptek",
+ "smtp": "SMTP értesítési szolgáltatások",
+ "statistics": "Statisztikai entitások",
+ "telegram": "Telegram értesítési szolgáltatások",
+ "template": "Sablon entitások",
+ "themes": "Témák",
+ "trend": "Trend entitások",
+ "universal": "Univerzális médialejátszó entitások",
+ "zone": "Zónák"
+ },
+ "server_control": {
+ "perform_action": "{action} szerver",
+ "restart": "Újraindítás",
+ "stop": "Leállítás"
+ },
+ "types": {
+ "navigation": "Navigál",
+ "reload": "Újratöltés",
+ "server_control": "Szerver"
+ }
+ },
+ "filter_placeholder": "Entitásszűrő",
+ "key_c_hint": "Nyomja meg a 'c' billentyűt bármelyik oldalon ezen keresősáv megnyitásához",
+ "nothing_found": "Nincs találat!",
+ "title": "Gyors keresés"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant nem hallott semmit",
+ "error": "Hoppá, hiba történt",
+ "found": "A következőt találtuk:",
+ "how_can_i_help": "Miben segíthetek?",
+ "label": "Írja be a kérdést, majd nyomja meg az 'Enter''-t",
+ "label_voice": "Írjon, majd nyomja le az 'Enter'-t vagy kopptintson a mikrofonra a beszédhez"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Eszközök hozzáadása ezen az eszközön keresztül",
+ "clusters": "Klaszterek Kezelése",
+ "device_children": "Aleszközök megtekintése",
+ "reconfigure": "Eszköz újrakonfigurálása",
+ "remove": "Eszköz eltávolítása",
+ "view_in_visualization": "Megtekintés a Vizualizációban",
+ "zigbee_information": "Zigbee eszköz aláírása"
+ },
+ "confirmations": {
+ "remove": "Biztos benne, hogy el szeretné távolítani az eszközt?"
+ },
+ "device_children": "Zigbee aleszköz",
+ "device_signature": "Zigbee eszköz aláírása",
+ "last_seen": "Utolsó jelentés",
+ "manuf": "{manufacturer} által",
+ "no_area": "Nincs Terület",
+ "power_source": "Energia forrás",
+ "quirk": "Quirk",
+ "services": {
+ "reconfigure": "A ZHA készülék újratelepítése (eszköz rendbehozatala). Akkor használja ezt a funkciót, ha problémái vannak a készülékkel. Ha a kérdéses eszköz elemről működik, győződjön meg róla, hogy nincs alvó állapotban és fogadja a parancsokat, amikor ezt a szolgáltatást használja.",
+ "remove": "Távolíts el egy eszközt a Zigbee hálózatból.",
+ "updateDeviceName": "Egyedi név beállítása ehhez az eszközhöz az eszköz nyilvántartásban.",
+ "zigbee_information": "Tekintse meg az eszköz Zigbee információit."
+ },
+ "unknown": "Ismeretlen",
+ "zha_device_card": {
+ "device_name_placeholder": "Eszköznév módosítása"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Attribútum",
+ "battery_device_warning": "Az újrakonfigurációs folyamat megkezdése előtt fel kell ébresztenie az elemmel működő eszközöket. A készülék ébresztésére vonatkozó utasításokat az eszköz kézikönyvében találja.",
+ "bind_header": "Kötés",
+ "button_hide": "Részletek elrejtése",
+ "button_show": "Részletek megjelenítése",
+ "cluster_header": "Klaszter",
+ "configuration_complete": "Az eszköz újrakonfigurálása befejeződött.",
+ "configuration_failed": "Az eszköz újrakonfigurálása nem sikerült. További információk elérhetők a naplókban.",
+ "configuring_alt": "Konfigurálás folyamatban",
+ "heading": "Eszköz újrakonfigurálása",
+ "in_progress": "Az eszköz újrakonfigurálása folyamatban van. Ez eltarthat egy ideig.",
+ "introduction": "Konfigurálja újra az eszközt a Zigbee hálózatán. Használja ezt a funkciót, ha készüléke nem működik megfelelően.",
+ "min_max_change": "min/max/változás",
+ "reporting_header": "Jelentés",
+ "run_in_background": "Bezárhatja ezt a párbeszédpanelt, az újrakonfigurálás a háttérben folytatódik.",
+ "start_reconfiguration": "Újrakonfigurálás indítása"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\none {nap}\nother {nap}\n}",
+ "hour": "{count} {count, plural,\none {óra}\nother {óra}\n}",
+ "minute": "{count} {count, plural,\none {perc}\nother {perc}\n}",
+ "second": "{count} {count, plural,\none {másodperc}\nother {másodperc}\n}",
+ "week": "{count} {count, plural,\none {hét}\nother {hét}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "YAML-ben továbbra is szerkesztheti a konfigurációt.",
+ "editor_not_available": "Nincs elérhető vizuális szerkesztő a(z) \"{type}\" típushoz.",
+ "editor_not_supported": "A vizuális szerkesztő nem támogatott ebben a konfigurációban",
+ "error_detected": "Konfigurációs hibákat észleltünk",
+ "key_missing": "A szükséges \"{key}\" kulcs hiányzik.",
+ "key_not_expected": "\"{key}\" kulcs nem várt, vagy a vizuális szerkesztő nem támogatja.",
+ "key_wrong_type": "A \"{key}\" megadott értékét a vizuális szerkesztő nem támogatja. ({type_wrong}) lett megadva, miközben ({type_correct}) a támogatott.",
+ "no_state_array_support": "Több állapotérték a vizuális szerkesztőben nem támogatott",
+ "no_template_editor_support": "A sablonokat a vizuális szerkesztő nem támogatja",
+ "no_type_provided": "Nincs megadva típus."
+ },
+ "supervisor": {
+ "ask": "Kérjen segítséget",
+ "observer": "Ellenőrizze a Figyelőt",
+ "reboot": "Próbálja újraindítani a gépet",
+ "system_health": "Rendszerállapot ellenőrzése",
+ "title": "Nem sikerült betölteni a Supervisor panelt!",
+ "wait": "Ha most kezdte, győződjön meg arról, hogy elegendő időt adott-e a Supervisornak az elinduláshoz."
+ }
+ },
+ "login-form": {
+ "log_in": "Bejelentkezés",
+ "password": "Jelszó",
+ "remember": "Megjegyzés"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Kattintson a gombra a beállításához: {entity}",
+ "close": "Bezárás",
+ "dismiss_all": "Az összes elvetése",
+ "empty": "Nincsenek értesítések",
+ "title": "Értesítések"
+ },
+ "notification_toast": {
+ "connection_lost": "A kapcsolat megszakadt. Újracsatlakozás…",
+ "dismiss": "Elvetés",
+ "integration_starting": "{integration} indítása folyamatban van, még nem elérhető...",
+ "service_call_failed": "Nem sikerült meghívni {service} szolgáltatást.",
+ "started": "Home Assistant indítása befejeződött!",
+ "starting": "Home Assistant indítása folyamatban van, még nem minden elérhető...",
+ "triggered": "Aktiválva {name}",
+ "wrapping_up_startup": "Az indítás folyamatban. A folyamat befejezéséig nem minden elérhető."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Hiányzó konfigurációs beállítások? Kapcsolja be a haladó módot",
+ "link_profile_page": "a profiloldala"
+ },
+ "areas": {
+ "add_picture": "Kép hozzáadása",
+ "assigned_to_area": "Ehhez a területhez rendelve",
+ "caption": "Területek",
+ "data_table": {
+ "area": "Terület",
+ "devices": "Eszközök",
+ "entities": "Entitások"
+ },
+ "delete": {
+ "confirmation_text": "Minden ebben a területben lévő eszköz hozzárendelés nélküli lesz.",
+ "confirmation_title": "Biztos benne, hogy törölni szeretné ezt a területet?"
+ },
+ "description": "Eszközök és entitások csoportosítása területekre",
+ "edit_settings": "Terület beállításai",
+ "editor": {
+ "area_id": "Terület ID",
+ "create": "Létrehozás",
+ "default_name": "Új Terület",
+ "delete": "Törlés",
+ "linked_entities_caption": "Entitások",
+ "name": "Név",
+ "name_required": "Név szükséges",
+ "no_linked_entities": "Nincsenek ehhez a területhez kapcsolódó entitások.",
+ "unknown_error": "Ismeretlen hiba",
+ "update": "Frissítés"
+ },
+ "picker": {
+ "create_area": "Terület létrehozása",
+ "header": "Területek",
+ "integrations_page": "Integrációk oldal",
+ "introduction": "A területek (area) segítségével az eszközök elhelyezkedés szerint rendszerezhetők. Ezen információk felhasználásával Home Assistant segíteni tud előkészíteni a felületet, a jogosultságokat és az integrációt más rendszerekkel.",
+ "introduction2": "Az eszközök területekbe történő elhelyezéséhez használja az alábbi linket az integrációs oldalra való navigáláshoz, majd kattintson egy konfigurált integrációra az eszközkártyák eléréséhez.",
+ "no_areas": "Úgy tűnik, még nincs egy területe sem!"
+ },
+ "targeting_area": "Ezt a területet megcélozva"
+ },
+ "automation": {
+ "caption": "Automatizmusok",
+ "description": "Saját szabályok létrehozása az okosotthonához",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Sablon-automatizmus használata"
+ },
+ "header": "Új automatizmus létrehozása",
+ "how": "Hogyan szeretné létrehozni az új automatizmust?",
+ "start_empty": "Kezdés üres automatizmussal",
+ "start_empty_description": "Teljesen új automatizmus létrehozása",
+ "thingtalk": {
+ "create": "Létrehozás",
+ "header": "Írja le, milyen automatizmust szeretne készíteni",
+ "input_label": "Mit a feladata ennek az automatizmusnak?",
+ "intro": "És megpróbáljuk létrehozni Önnek. Például: Kapcsold le a lámpákat, amikor távozom."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Művelet hozzáadása",
+ "delete": "Törlés",
+ "delete_confirm": "Biztos, hogy ezt törölni szeretné?",
+ "duplicate": "Duplikálás",
+ "header": "Műveletek",
+ "introduction": "Az alábbi műveletek lesznek végrehajtva, ha egy automatizmus elindul. Kattintson az alábbi linkre, ha többet szeretne megtudni a műveletekről.",
+ "learn_more": "Tudjon meg többet a műveletekről",
+ "name": "Művelet",
+ "type": {
+ "choose": {
+ "add_option": "Opció hozzáadása",
+ "conditions": "Feltételek",
+ "default": "Alapértelmezett műveletek",
+ "label": "Választ",
+ "option": "Opció {number}",
+ "remove_option": "Opció eltávolítása",
+ "sequence": "Műveletek"
+ },
+ "condition": {
+ "label": "Feltétel"
+ },
+ "delay": {
+ "delay": "Időtartam",
+ "label": "Késleltetés"
+ },
+ "device_id": {
+ "action": "Művelet",
+ "extra_fields": {
+ "brightness_pct": "Fényerő",
+ "code": "Kód",
+ "flash": "Villogás",
+ "humidity": "Páratartalom",
+ "message": "Üzenet",
+ "mode": "Üzemmód",
+ "position": "Pozíció",
+ "title": "Cím",
+ "value": "Érték"
+ },
+ "label": "Eszköz"
+ },
+ "event": {
+ "event": "Esemény:",
+ "label": "Esemény meghívása",
+ "service_data": "Szolgáltatás adatai"
+ },
+ "repeat": {
+ "label": "Ismétlés",
+ "sequence": "Műveletek",
+ "type": {
+ "count": {
+ "label": "Számláló"
+ },
+ "until": {
+ "conditions": "Amíg nem teljesülnek a feltételek",
+ "label": "Amíg nem"
+ },
+ "while": {
+ "conditions": "Amíg teljesülnek a feltételek",
+ "label": "Amíg"
+ }
+ },
+ "type_select": "Ismétlés típusa"
+ },
+ "scene": {
+ "label": "Jelenet aktiválása"
+ },
+ "service": {
+ "label": "Szolgáltatás meghívása"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Folytatás időtúllépéskor",
+ "label": "Várakozás eseményindítóra",
+ "timeout": "Időtúllépés (opcionális)"
+ },
+ "wait_template": {
+ "continue_timeout": "Folytatás időtúllépéskor",
+ "label": "Várakozás sablonra",
+ "timeout": "Időtúllépés (opcionális)",
+ "wait_template": "Várakozási sablon"
+ }
+ },
+ "type_select": "Művelet típusa",
+ "unsupported_action": "Nincs vizuális szerkesztő a művelethez: {action}"
+ },
+ "alias": "Név",
+ "blueprint": {
+ "blueprint_to_use": "Használni kívánt sablon-automatizmus",
+ "header": "Sablon-automatizmus",
+ "no_blueprints": "Nincsenek sablon-automatizmusok a rendszerben",
+ "no_inputs": "Ennek a sablon-automatizmusnak nincsenek bemenetei."
+ },
+ "conditions": {
+ "add": "Feltétel hozzáadása",
+ "delete": "Törlés",
+ "delete_confirm": "Biztos, hogy ezt törölni szeretné?",
+ "duplicate": "Duplikálás",
+ "header": "Feltételek",
+ "introduction": "A feltételek opcionálisak és meggátolják a további végrehajtást, kivéve, ha minden feltétel teljesül (ÉS).",
+ "learn_more": "Tudjon meg többet a feltételekről",
+ "name": "Feltétel",
+ "type": {
+ "and": {
+ "label": "És"
+ },
+ "device": {
+ "condition": "Feltétel",
+ "extra_fields": {
+ "above": "Felett",
+ "below": "Alatt",
+ "for": "Időtartam",
+ "hvac_mode": "HVAC működés",
+ "preset_mode": "Előre beállított üzemmód"
+ },
+ "label": "Eszköz"
+ },
+ "not": {
+ "label": "Nem"
+ },
+ "numeric_state": {
+ "above": "Nagyobb, mint",
+ "below": "Kisebb, mint",
+ "label": "Numerikus állapot",
+ "value_template": "Érték sablon (opcionális)"
+ },
+ "or": {
+ "label": "Vagy"
+ },
+ "state": {
+ "label": "Állapot",
+ "state": "Állapot"
+ },
+ "sun": {
+ "after": "Után:",
+ "after_offset": "Eltolás utána (opcionális)",
+ "before": "Előtt:",
+ "before_offset": "Eltolás előtte (opcionális)",
+ "label": "Nap",
+ "sunrise": "Napkelte",
+ "sunset": "Napnyugta"
+ },
+ "template": {
+ "label": "Sablon",
+ "value_template": "Érték sablon"
+ },
+ "time": {
+ "after": "Után",
+ "before": "Előtt",
+ "label": "Időpont",
+ "type_input": "Dátum/idő segítő entitás értéke",
+ "type_value": "Rögzített időpont",
+ "weekdays": {
+ "fri": "Péntek",
+ "mon": "Hétfő",
+ "sat": "Szombat",
+ "sun": "Vasárnap",
+ "thu": "Csütörtök",
+ "tue": "Kedd",
+ "wed": "Szerda"
+ }
+ },
+ "trigger": {
+ "id": "Eseményindító ID",
+ "label": "Eseményindító",
+ "no_triggers": "Nincs elérhető eseményindító"
+ },
+ "zone": {
+ "entity": "Entitás helyszínnel",
+ "label": "Zóna",
+ "zone": "Zóna"
+ }
+ },
+ "type_select": "Feltétel típusa",
+ "unsupported_condition": "Nincs vizuális szerkesztő a feltételhez: {condition}"
+ },
+ "copy_to_clipboard": "Másolás a vágólapra",
+ "default_name": "Új automatizmus",
+ "description": {
+ "label": "Leírás",
+ "placeholder": "Opcionális leírás"
+ },
+ "edit_ui": "Szerkesztés a felhasználói felületen",
+ "edit_yaml": "Szerkesztés YAML-ként",
+ "enable_disable": "Automatizmus engedélyezése/letiltása",
+ "introduction": "Használjon automatizmusokat otthonának életre keltéséhez.",
+ "load_error_not_editable": "Csak az automations.yaml fájlban megadott automatizmusok szerkeszthetők.",
+ "load_error_unknown": "Hiba az automatizmus betöltésekor ({err_no}).",
+ "max": {
+ "parallel": "A párhuzamos futtatások maximális száma",
+ "queued": "Várólista hossza"
+ },
+ "modes": {
+ "description": "A mód határozza meg mi történjen amikor az automatizmus elindul, ha a műveletek még futnak egy korábbi, ugyanennek az automatizmusnak az indításából. További információk a {documentation_link} oldalon.",
+ "documentation": "Automatizmusok dokumentációja",
+ "label": "Mód",
+ "parallel": "Párhuzamos",
+ "queued": "Várólistás",
+ "restart": "Újraindítás",
+ "single": "Egyszeri (alapértelmezett)"
+ },
+ "move_down": "Le",
+ "move_up": "Fel",
+ "save": "Mentés",
+ "show_trace": "Nyomkövetés megjelenítése",
+ "triggers": {
+ "add": "Eseményindító hozzáadása",
+ "delete": "Törlés",
+ "delete_confirm": "Biztos, hogy ezt törölni szeretné?",
+ "duplicate": "Duplikálás",
+ "edit_id": "Eseményindító azonosító szerkesztése",
+ "header": "Eseményindítók",
+ "id": "Eseményindító azonosító",
+ "introduction": "Az eseményindítók indítják el az automatizmus szabályainak feldolgozását. Több eseményindítót is meg lehet adni egy szabályhoz. Ha egy eseményindító elindul, akkor Home Assistant ellenőrzi a feltételeket - ha vannak -, majd meghívja a műveletet.",
+ "learn_more": "Tudjon meg többet az eseményindítókról",
+ "name": "Eseményindító",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Felett",
+ "below": "Alatt",
+ "for": "Időtartam (opcionális)",
+ "zone": "Zóna"
+ },
+ "label": "Eszköz",
+ "trigger": "Eseményindító"
+ },
+ "event": {
+ "context_user_pick": "Felhasználó kiválasztása",
+ "context_user_picked": "Eseményt kiváltó felhasználó",
+ "context_users": "Korlátozás felhasználó(k) által indított eseményekre",
+ "event_data": "Esemény adatai",
+ "event_type": "Esemény típusa",
+ "label": "Esemény"
+ },
+ "geo_location": {
+ "enter": "Érkezés",
+ "event": "Esemény:",
+ "label": "Helylokáció",
+ "leave": "Távozás",
+ "source": "Forrás",
+ "zone": "Zóna"
+ },
+ "homeassistant": {
+ "event": "Esemény:",
+ "label": "Home Assistant",
+ "shutdown": "Leállás",
+ "start": "Indulás"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Adathalmaz (payload) (opcionális)",
+ "topic": "Topik"
+ },
+ "numeric_state": {
+ "above": "Nagyobb, mint",
+ "below": "Kisebb, mint",
+ "label": "Numerikus állapot",
+ "value_template": "Érték sablon (opcionális)"
+ },
+ "state": {
+ "attribute": "Attribútum (opcionális)",
+ "for": "Időtartam (opcionális)",
+ "from": "Eredeti állapot (opcionális)",
+ "label": "Állapot",
+ "to": "Új állapot (opcionális)"
+ },
+ "sun": {
+ "event": "Esemény:",
+ "label": "Nap",
+ "offset": "Eltolás (opcionális)",
+ "sunrise": "Napkelte",
+ "sunset": "Napnyugta"
+ },
+ "tag": {
+ "label": "Matrica"
+ },
+ "template": {
+ "label": "Sablon",
+ "value_template": "Érték sablon"
+ },
+ "time": {
+ "at": "Mikor",
+ "label": "Időpont",
+ "type_input": "Dátum/idő segítő entitás értéke",
+ "type_value": "Rögzített időpont"
+ },
+ "time_pattern": {
+ "hours": "Óra",
+ "label": "Idő sablon",
+ "minutes": "Perc",
+ "seconds": "Másodperc"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook ID"
+ },
+ "zone": {
+ "enter": "Érkezés",
+ "entity": "Entitás helyszínnel",
+ "event": "Esemény:",
+ "label": "Zóna",
+ "leave": "Távozás",
+ "zone": "Zóna"
+ }
+ },
+ "type_select": "Eseményindító fajtája",
+ "unsupported_platform": "Nincs vizuális szerkesztő a platformhoz: {platform}"
+ },
+ "unsaved_confirm": "Vannak nem mentett módosítások. Biztos benne, hogy elhagyja ezt az oldalt?"
+ },
+ "picker": {
+ "add_automation": "Automatizmus hozzáadása",
+ "delete_automation": "Automatizmus törlése",
+ "delete_confirm": "Biztos benne, hogy törölni szeretné ezt az automatizmust?",
+ "dev_automation": "Automatizmus hibakeresése",
+ "dev_only_editable": "Csak azok az automatizmusok hibakereshetők, amelyekhez egyedi azonosítóval rendelkeznek.",
+ "duplicate": "Duplikálás",
+ "duplicate_automation": "Automatizmus duplikálása",
+ "edit_automation": "Automatizmus szerkesztése",
+ "header": "Automatizmus szerkesztő",
+ "headers": {
+ "name": "Név"
+ },
+ "introduction": "Az automatizmus (automation) szerkesztő lehetővé tesz különféle automatikusan végrehajtott szabályok létrehozását és szerkesztését.",
+ "learn_more": "Tudjon meg többet az automatizmusokról",
+ "no_automations": "Nem található szerkeszthető automatizmus",
+ "only_editable": "Csak az automations.yaml fájlban megadott automatizmusok szerkeszthetők.",
+ "pick_automation": "Válasszon ki egy szerkesztendő automatizmust",
+ "show_info_automation": "Információk megjelenítése az automatizmusról"
+ },
+ "thingtalk": {
+ "create": "Automatizmus létrehozása",
+ "link_devices": {
+ "ambiguous_entities": "Egy vagy több eszköznek több hasonló entitása van, válassza ki melyiket szeretné használni.",
+ "header": "Nagyszerű! Most össze kell kapcsolnunk néhány eszközt",
+ "unknown_placeholder": "Ismeretlen helykitöltő"
+ },
+ "task_selection": {
+ "error_empty": "Írj be egy parancsot, vagy koppints a kihagyásra.",
+ "error_unsupported": "Ehhez (még?) nem tudunk magunktól automatizmus létrehozni.",
+ "for_example": "Például:",
+ "header": "Új automatizmus létrehozása",
+ "introduction": "Írja be be alább, hogy mit kellene tennie ennek az automatizmusnak, és megpróbáljuk átalakítani Home Assistant automatizmussá.",
+ "language_note": "Megjegyzés: Egyelőre csak az angol nyelv támogatott."
+ }
+ },
+ "trace": {
+ "download_trace": "Nyomkövetés letöltése",
+ "edit_automation": "Automatizmus szerkesztése",
+ "newer_trace": "Frissebb nyomkövetés",
+ "older_trace": "Régebbi nyomkövetés",
+ "refresh": "Frissítés"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "közösségi fórumok",
+ "error_no_url": "Kérem, adja meg a sablon-automatizmus URL címét.",
+ "file_name": "Sablon-automatizmus elérési útja",
+ "header": "Sablon-automatizmus importálása",
+ "import_btn": "Sablon-automatizmus előnézete",
+ "import_header": "\"{name}\" sablon-automatizmus",
+ "import_introduction_link": "Más felhasználók által közzétett sablon-automatizmusok importálhatók a Githubról és a {community_link} weboldalról. Ehhez szükséges megadni annak URL címét az alábbi mezőben.",
+ "importing": "Sablon-automatizmus betöltése...",
+ "raw_blueprint": "Sablon-automatizmus tartalma",
+ "save_btn": "Sablon-automatizmus importálása",
+ "saving": "Sablon-automatizmus importálása…",
+ "unsupported_blueprint": "Ez a sablon-automatizmus nem támogatott",
+ "url": "A sablon-automatizmus URL-címe"
+ },
+ "caption": "Sablon-automatizmusok",
+ "description": "Sablon-automatizmusok kezelése",
+ "overview": {
+ "add_blueprint": "Sablon-automatizmus importálása",
+ "confirm_delete_header": "Szeretné törölni ezt a sablon-automatizmust?",
+ "confirm_delete_text": "Biztos benne, hogy törölni szeretné ezt a sablon-automatizmust?",
+ "create_automation": "Automatizmus létrehozása",
+ "create_script": "Szkript létrehozása",
+ "delete_blueprint": "Sablon-automatizmus törlése",
+ "discover_more": "További sablon-automatizmusok felfedezése",
+ "header": "Sablon-automatizmus szerkesztő",
+ "headers": {
+ "domain": "Tartomány",
+ "file_name": "Fájlnév",
+ "name": "Név",
+ "type": "Típus"
+ },
+ "introduction": "A sablon-automatizmus (blueprint) szerkesztő lehetővé teszi azok létrehozását és szerkesztését.",
+ "learn_more": "Tudjon meg többet a sablon-automatizmusokról",
+ "share_blueprint": "Sablon-automatizmus megosztása",
+ "share_blueprint_no_url": "Nem lehet megosztani a sablon-automatizmust: nincs forrás url",
+ "types": {
+ "automation": "Automatizmus",
+ "script": "Szkript"
+ },
+ "use_blueprint": "Automatizmus létrehozása"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Konfigurációs dokumentáció",
+ "disable": "letiltani",
+ "enable": "engedélyezni",
+ "enable_ha_skill": "Home Assistant készség aktiválása Alexa részére",
+ "enable_state_reporting": "Állapotjelentés engedélyezése",
+ "info": "Az Alexa integrációval a Home Assistant Felhő lehetőséget nyújt minden Home Assistant eszköz vezérlésére bármely Alexa képes eszközzel.",
+ "info_state_reporting": "Ha engedélyezi az állapotjelentést, akkor Home Assistant minden állapotváltozást el fog küldeni a feltárt entitásokról az Amazon-nak. Ez lehetővé teszi, hogy mindig láthassa a legfrissebb állapotokat az Alexa alkalmazásban, és az állapotváltozásokkal rutinokat hozhasson létre.",
+ "manage_entities": "Entitások kezelése",
+ "state_reporting_error": "Nem lehet {enable_disable} az állapotjelentést.",
+ "sync_entities": "Entitások szinkronizálása az Amazonnal",
+ "sync_entities_error": "Nem sikerült szinkronizálni az entitásokat:",
+ "title": "Alexa"
+ },
+ "connected": "Csatlakoztatva",
+ "connecting": "Csatlakozás…",
+ "connection_status": "Felhő kapcsolat állapota",
+ "fetching_subscription": "Előfizetés lekérése…",
+ "google": {
+ "config_documentation": "Konfigurációs dokumentáció",
+ "devices_pin": "Biztonsági eszközök pin kódja",
+ "enable_ha_skill": "Home Assistant Felhő készség aktiválása a Google Segéd számára",
+ "enable_state_reporting": "Állapotjelentés engedélyezése",
+ "enter_pin_error": "A PIN-kód nem tárolható:",
+ "enter_pin_hint": "Adja meg a PIN-kódot a biztonsági eszközök használatához",
+ "enter_pin_info": "Kérem, adjon meg egy PIN-kódot a biztonsági eszközökkel való interakciókhoz. Biztonsági eszközök lehetnel ajtók, garázskapuk és zárak. Az ilyen eszközök vezérlésekor Google Segéd kérheti ezt a kódot.",
+ "info": "Google Segéd integrációval Home Assistant Felhő lehetőséget nyújt minden Home Assistant eszköz vezérlésére bármely Google Segéd kompatibilis eszközzel.",
+ "info_state_reporting": "Ha engedélyezi az állapotjelentést, akkor Home Assistant minden állapotváltozást el fog küldeni a feltárt entitásokról a Google-nak. Ez lehetővé teszi, hogy mindig láthassa a legfrissebb állapotokat a Google alkalmazáson keresztül is.",
+ "manage_entities": "Entitások kezelése",
+ "not_configured_text": "Google Segéd használata előtt aktiválnod kell Home Assistant Felhő készséget a Google Segéd számára a Google Home alkalmazásban.",
+ "not_configured_title": "Google Segéd nincs aktiválva",
+ "security_devices": "Biztonsági eszközök",
+ "sync_entities": "Entitások szinkronizálása a Google-lal",
+ "sync_entities_404_message": "Nem sikerült szinkronizálni az entitásokat Google-lal. A szinkronizáláshoz kérje meg Google-t a következőre: \"Hey Google, sync my devices\"",
+ "title": "Google Segéd"
+ },
+ "integrations": "Integrációk",
+ "integrations_introduction": "A Home Assistant Felhő integrációi úgy biztosítanak lehetőséget felhő szolgáltatásokhoz való csatlakozáshoz, hogy közben nem kell nyitnia egy publikus internet felöli hozzáférést a Home Assistant rendszeréhez.",
+ "integrations_introduction2": "Nézze meg a weboldalt ",
+ "integrations_link_all_features": "az összes elérhető funkcióért",
+ "manage_account": "Fiók kezelése",
+ "nabu_casa_account": "Nabu Casa fiók",
+ "not_connected": "Nincs csatlakoztatva",
+ "remote": {
+ "access_is_being_prepared": "A távoli hozzáférés előkészítése folyamatban van. Értesíteni fogjuk, amikor készen áll.",
+ "certificate_info": "Tanúsítvány infó",
+ "connected": "Csatlakoztatva",
+ "info": "A Home Assistant Felhő biztonságos távoli kapcsolatot nyújt az Ön példányához, miközben távol van.",
+ "instance_is_available": "Az Ön példánya itt elérhető:",
+ "instance_will_be_available": "Az Ön példánya itt lesz elérhető:",
+ "link_learn_how_it_works": "Tudja meg, hogyan működik",
+ "not_connected": "Nincs csatlakoztatva",
+ "reconnecting": "Nincs csatlakoztatva. Újracsatlakozás…",
+ "remote_enabled": {
+ "caption": "Automatikus csatlakozás",
+ "description": "Engedélyezze ezt a lehetőséget, hogy megbizonyosodjon arról, hogy Home Assistant példánya mindig távolról elérhető."
+ },
+ "title": "Távoli vezérlés"
+ },
+ "sign_out": "Kijelentkezés",
+ "thank_you_note": "Köszönjük, hogy a Home Assistant Felhő részese lett. Az olyan emberek miatt, mint Ön vagyunk képesek mindenki számára nagyszerű otthoni automatizálási élményt nyújtani. Köszönjük!",
+ "tts": {
+ "default_language": "Alapértelmezett nyelv",
+ "dialog": {
+ "create_automation": "Automatizmus létrehozása",
+ "example_message": "Hello {name}, bármilyen szöveget lejátszhat bármely támogatott médialejátszón!",
+ "header": "Próbálja ki a szövegfelolvasást",
+ "play": "Lejátszás",
+ "target": "Cél",
+ "target_browser": "Böngésző"
+ },
+ "female": "Nő",
+ "info": "Varázsoljon egyedi személyiséget az otthonának azzal, hogy a szövegfelolvasó szolgáltatásaink segítségével beszélhet Önnel. Ez használható az automatizmusokban és a szkriptekben {service} szolgáltatás használatával.",
+ "male": "Férfi",
+ "title": "Szövegről beszédre",
+ "try": "Próbálja meg"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Nem sikerült letiltani a webhookot:",
+ "info": "Bármihez, ami úgy van beállítva, hogy egy webhook által elindulhasson, létrehozható egy nyilvánosan elérhető URL, ami lehetővé teszi, hogy adatokat küldhessen vissza Home Assistant számára bárhonnan, anélkül, hogy ki kelljen nyitnia egy saját hozzáférést a publikus internet felől.",
+ "link_learn_more": "Tudjon meg többet a webhook-alapú automatizmusok létrehozásáról.",
+ "loading": "Betöltés…",
+ "manage": "Kezelés",
+ "no_hooks_yet": "Úgy tűnik, még nincs egy webhook sem beállítva. Kezdéshez konfiguráljon egy ",
+ "no_hooks_yet2": "vagy hozzon létre egy",
+ "no_hooks_yet_link_automation": "webhook automatizmust",
+ "no_hooks_yet_link_integration": "webhook-alapú integrációt",
+ "title": "Webhookok"
+ }
+ },
+ "alexa": {
+ "banner": "A feltárt entitások szerkesztése funkció le lett tiltva ezen a felületen, mert entitásszűrők lettek beállítva be a configuration.yaml fájlban.",
+ "dont_expose_entity": "Entitás feltárásának törlése",
+ "expose": "Feltárás Alexának",
+ "expose_entity": "Entitás feltárása",
+ "exposed": "{selected} feltárva",
+ "exposed_entities": "Feltárt entitások",
+ "follow_domain": "Tartomány követése",
+ "manage_domains": "Tartományok kezelése",
+ "not_exposed": "{selected} nincs feltárva",
+ "not_exposed_entities": "Feltáratlan entitások",
+ "title": "Alexa"
+ },
+ "description_features": "Távoli elérés, összekapcsolás Alexával vagy Google Segéddel",
+ "description_login": "Bejelentkezve mint {email}",
+ "description_not_login": "Nincs bejelentkezve",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Tanúsítvány lejárati dátuma:",
+ "certificate_information": "Tanúsítvány-információ",
+ "close": "Bezárás",
+ "fingerprint": "Tanúsítvány ujjlenyomata:",
+ "will_be_auto_renewed": "automatikusan megújitásra kerül"
+ },
+ "dialog_cloudhook": {
+ "available_at": "A webhook a következő URL-címen érhető el:",
+ "close": "Bezárás",
+ "confirm_disable": "Biztos benne, hogy le szeretné tiltani ezt a webhookot?",
+ "copied_to_clipboard": "Vágólapra másolva",
+ "info_disable_webhook": "Ha már nem szeretné ezt a webhookot használni, akkor",
+ "link_disable_webhook": "letilthatja",
+ "managed_by_integration": "Ezt a webhookot egy integráció kezeli, ezért nem lehet letiltani.",
+ "view_documentation": "Dokumentáció megtekintése",
+ "webhook_for": "Webhook: {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "A jelszó visszaállításával kapcsolatos instrukciókért ellenőrizzze az e-mail fiókját.",
+ "email": "Email",
+ "email_error_msg": "Érvénytelen email",
+ "instructions": "Adja meg az email címét, és mi küldünk egy linket a jelszó visszaállításához.",
+ "send_reset_email": "Visszaállítási email küldése",
+ "subtitle": "Elfelejtett jelszó",
+ "title": "Elfelejtett jelszó"
+ },
+ "google": {
+ "banner": "A feltárt entitások szerkesztése funkció le lett tiltva ezen a felületen, mert entitásszűrők lettek beállítva a configuration.yaml fájlban.",
+ "disable_2FA": "Kétfaktoros hitelesítés letiltása",
+ "dont_expose_entity": "Entitás feltárásának törlése",
+ "expose": "Feltárás a Google Segédnek",
+ "expose_entity": "Entitás feltárása",
+ "exposed": "{selected} feltárva",
+ "exposed_entities": "Feltárt entitások",
+ "follow_domain": "Tartomány követése",
+ "manage_domains": "Tartományok kezelése",
+ "not_exposed": "{selected} nincs feltárva",
+ "not_exposed_entities": "Feltáratlan entitások",
+ "sync_to_google": "A változások szinkronizálása a Google-lal.",
+ "title": "Google Segéd"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "A bejelentkezés előtt meg kell erősíteni az email címét.",
+ "alert_password_change_required": "A bejelentkezés előtt szükséges megváltoztatni a jelszavát.",
+ "dismiss": "Elvetés",
+ "email": "Email",
+ "email_error_msg": "Érvénytelen email",
+ "forgot_password": "Elfelejtett jelszó?",
+ "introduction": "Home Assistant Felhő biztonságos távoli kapcsolatot nyújt a az Ön példányához, miközben távol van. Azt is lehetővé teszi, hogy különféle csak felhőn alapuló szolgáltatásokhoz csatlakozzon: pl. Amazon Alexa, Google Segéd.",
+ "introduction2": "Ezt a szolgáltatást partnerünk üzemelteti, a ",
+ "introduction2a": ", amelyet a Home Assistant és a Hass.io alapítói hoztak létre.",
+ "introduction3": "A Home Assistant Felhő egy előfizetéses szolgáltatás egy hónapos ingyenes próbaverzióval. Nincs szükség fizetési információk megadására.",
+ "learn_more_link": "Tudjon meg többet a Home Assistant Felhőről",
+ "password": "Jelszó",
+ "password_error_msg": "A jelszavak legalább 8 karakteresek",
+ "sign_in": "Bejelentkezés",
+ "start_trial": "Indítsa el az ingyenes 1 hónapos próbaidőszakot",
+ "title": "Bejelentkezés a felhőbe",
+ "trial_info": "Nincs szükség fizetési információk megadására"
+ },
+ "register": {
+ "account_created": "Fiók létrehozva! Az aktiválással kapcsolatos instrukciókért ellenőrizze e-mail fiókját.",
+ "create_account": "Fiók Létrehozása",
+ "email_address": "Email cím",
+ "email_error_msg": "Érvénytelen email",
+ "feature_amazon_alexa": "Integráció az Amazon Alexával",
+ "feature_google_home": "Integráció Google Segéddel",
+ "feature_remote_control": "Home Assistant vezérlése távolról",
+ "feature_webhook_apps": "Egyszerű integráció webhook-alapú alkalmazásokkal, mint például az OwnTracks",
+ "headline": "Indítsa el az ingyenes próbaidőszakot",
+ "information": "Hozzon létre egy fiókot ahhoz, hogy elindíthasssa az egy hónapos ingyenes Home Assistant Felhő próbaidőszakot. Nincs szükség fizetési információk megadására.",
+ "information2": "A próbaidőszak hozzáférést biztosít a Home Assistant Felhő minden előnyéhez, beleértve a következőket:",
+ "information3": "Ezt a szolgáltatást partnerünk üzemelteti, a ",
+ "information3a": ", amelyet a Home Assistant és a Hass.io alapítói hoztak létre.",
+ "information4": "Fiók regisztrálásával elfogadja az alábbi feltételeket.",
+ "link_privacy_policy": "Adatvédelmi irányelvek",
+ "link_terms_conditions": "Felhasználási feltételek",
+ "password": "Jelszó",
+ "password_error_msg": "A jelszavak legalább 8 karakteresek",
+ "resend_confirm_email": "Megerősítő e-mail újraküldése",
+ "start_trial": "Próbaidőszak indítása",
+ "title": "Fiók regisztráció"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Vannak nem mentett módosítások. Biztos, hogy elhagyja az oldalt?"
+ },
+ "learn_more": "Tudjon meg többet"
+ },
+ "core": {
+ "caption": "Általános",
+ "description": "Helyszín, hálózat és elemzés",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Pénznem",
+ "edit_requires_storage": "A szerkesztő le van tiltva, mert a vonatkozó konfiguráció YAML-ban van tárolva.",
+ "elevation": "Tengerszint feletti magasság",
+ "elevation_meters": "méter",
+ "external_url": "Külső URL",
+ "find_currency_value": "Szabvány kódok listája",
+ "imperial_example": "Fahrenheit, font",
+ "internal_url": "Belső URL",
+ "latitude": "Szélesség",
+ "location_name": "Home Assistant rendszerének helyi neve",
+ "longitude": "Hosszúság",
+ "metric_example": "Celsius, kilogramm",
+ "save_button": "Mentés",
+ "time_zone": "Időzóna",
+ "unit_system": "Egységrendszer",
+ "unit_system_imperial": "Angolszász",
+ "unit_system_metric": "Metrikus"
+ },
+ "header": "Általános konfiguráció",
+ "introduction": "Helyszín, hálózati paraméterek és elemzések beállítása"
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Az alábbi attribútumok már be vannak állítva a customize.yaml fájlban.",
+ "attributes_not_set": "A következő attribútumok nem lettek beállítva. Állítsa be őket, ha szeretné.",
+ "attributes_outside": "Az alábbi attribútumok a customize.yaml fájlon kívül kerültek testreszabásra.",
+ "attributes_override": "Felülbírálhatja őket, ha szeretné.",
+ "attributes_set": "Az entitás következő attribútumai programozottan kerültek beállításra.",
+ "caption": "Testreszabás",
+ "description": "Entitások módosítása",
+ "different_include": "Lehet domainnel, globbal vagy egy másik include fájllal.",
+ "pick_attribute": "Felülbírálni kívánt attribútum",
+ "picker": {
+ "documentation": "Testreszabási dokumentáció",
+ "header": "Testreszabás",
+ "introduction": "Módosíthatja az entitások tulajdonságait. Az itt hozzáadott, szerkesztett testreszabások azonnal érvényesülnek. Azok eltávolítása akkor lép életbe, amikor az entitás legközelebb frissül."
+ },
+ "warning": {
+ "include_link": "customize.yaml fájllal együtt",
+ "include_sentence": "Úgy tűnik, hogy a configuration.yaml fájl nem megfelelően hivatkozik a",
+ "not_applied": "Az itt elvégzett változások el lesznek mentve, de a konfiguráció újratöltése után nem kerülnek alkalmazásra, amíg a hivatkozás megfelelően be nem lesz állítva."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Okosításhoz kellő automatizmusok, jelenetek, szkriptek, segítők",
+ "title": "Automatizmusok és jelenetek"
+ },
+ "blueprints": {
+ "description": "Automatizmusok egyszerű létrehozása sablonok alapján",
+ "title": "Sablon-automatizmusok"
+ },
+ "companion": {
+ "description": "Helyszín és értesítések",
+ "title": "Mobilalkalmazás"
+ },
+ "dashboards": {
+ "description": "Személyre szabható kezelőfelület kártyafelosztásokkal",
+ "title": "Irányítópultok"
+ },
+ "devices": {
+ "description": "Alapvető elemek: integrációk, eszközök, entitások és területek",
+ "title": "Eszközök és szolgáltatások"
+ },
+ "energy": {
+ "description": "Az energiatermelés, -fogyasztás nyomon követése",
+ "title": "Energia"
+ },
+ "people": {
+ "description": "A rendszer által nyomon követett személyek és zónák",
+ "title": "Személyek és zónák"
+ },
+ "settings": {
+ "description": "Alapbeállítások, szerver vezérlés, naplók és névjegy",
+ "title": "Beállítások"
+ },
+ "supervisor": {
+ "description": "Biztonsági mentés, naplóellenörzés, vagy rendszer újraindítás",
+ "title": "Bővítmények, biztonsági mentések és felügyelet"
+ },
+ "tags": {
+ "description": "Automatizmusok indítása NFC-, QR-kód matricák stb. leolvasásakor",
+ "title": "Matricák"
+ }
+ },
+ "devices": {
+ "add_prompt": "Még nem lettek létrehozva {name} ezzel az eszközzel. Hozzáadhat egyet a fenti + gombra kattintva.",
+ "automation": {
+ "actions": {
+ "caption": "Ha egy esemény elindul, akkor…",
+ "no_actions": "Nincsenek műveletek",
+ "unknown_action": "Ismeretlen művelet"
+ },
+ "automations": "Automatizmusok",
+ "conditions": {
+ "caption": "Csak akkor történjen valami, ha…",
+ "no_conditions": "Nincsenek feltételek",
+ "unknown_condition": "Ismeretlen feltétel"
+ },
+ "create": "Automatizmus létrehozása eszközzel",
+ "create_disable": "Nem lehet automatizmust létrehozni letiltott eszközzel",
+ "no_automations": "Nincsenek automatizmusok",
+ "no_device_automations": "Ehhez az eszközhöz nem állnak rendelkezésre automatizmusok.",
+ "triggers": {
+ "caption": "Történjen valami, amikor...",
+ "no_triggers": "Nincsenek eseményindítók",
+ "unknown_trigger": "Ismeretlen eseményindító"
+ },
+ "unknown_automation": "Ismeretlen automatizmus"
+ },
+ "cant_edit": "Kizárólag a felhasználói felület segítségével létrehozott elemek szerkeszthetők.",
+ "caption": "Eszközök",
+ "confirm_delete": "Biztos benne, hogy törölni szeretné ezt az eszközt?",
+ "confirm_disable_config_entry": "Nincs több eszköz a {entry_name} konfigurációs bejegyzéshez, szeretné inkább letiltani a konfigurációs bejegyzést?",
+ "confirm_rename_entity_ids": "Szeretné átnevezni az entitások ID-ját is?",
+ "confirm_rename_entity_ids_warning": "Ez nem módosítja azokat a konfigurációkat (például automatizmusmusokat, szkripteket, jeleneteket, irányítópultokat), amelyek jelenleg ezeket az entitásokat használják! Az új entitásazonosítók használatához saját kezűleg szükséges frissíteni őket!",
+ "data_table": {
+ "area": "Terület",
+ "battery": "Akkumulátor",
+ "device": "Eszköz",
+ "integration": "Integráció",
+ "manufacturer": "Gyártó",
+ "model": "Modell",
+ "no_devices": "Nincsenek eszközök",
+ "no_integration": "Nincs integráció"
+ },
+ "delete": "Törlés",
+ "description": "Konfigurált eszközök kezelése",
+ "device_info": "Eszköz információ",
+ "device_not_found": "Eszköz nem található.",
+ "disabled": "Letiltva",
+ "disabled_by": {
+ "config_entry": "Konfigurációs bejegyzés",
+ "integration": "Integráció",
+ "user": "Felhasználó"
+ },
+ "download_diagnostics": "Diagnosztikai adatok letöltése",
+ "edit_settings": "Beállítások szerkesztése",
+ "enabled_cause": "Az eszköz le van tiltva. ({cause})",
+ "enabled_description": "A letiltott eszközök nem jelennek meg, az eszközhöz tartozó entitások pedig le lesznek tiltva, és nem lesznek hozzáadva Home Assistanthoz.",
+ "enabled_label": "Eszköz engedélyezése",
+ "entities": {
+ "add_entities_lovelace": "Hozzáadás Lovelace-hez",
+ "config": "Konfiguráció",
+ "control": "Vezérlők",
+ "diagnostic": "Diagnosztika",
+ "disabled_entities": "+{count} {count, plural,\n one {letiltott entitás}\n other {letiltott entitás}\n}",
+ "entities": "Entitások",
+ "hide_disabled": "Letiltottak elrejtése",
+ "none": "Ennek az eszköznek nincsenek entitásai",
+ "sensor": "Érzékelők",
+ "state": "Állapot"
+ },
+ "name": "Név",
+ "no_devices": "Nincsenek eszközök",
+ "open_configuration_url_device": "Eszköz kezelőfelülete",
+ "open_configuration_url_service": "Szolgáltatás kezelőfelülete",
+ "picker": {
+ "filter": {
+ "filter": "Szűrő",
+ "hidden_devices": "{number} rejtett {number, plural,\n one {eszköz}\n other {eszköz}\n}",
+ "show_all": "Az összes megjelenítése",
+ "show_disabled": "Letiltott eszközök megjelenítése"
+ },
+ "search": "Eszközök keresése"
+ },
+ "scene": {
+ "create": "Jelenet létrehozása eszközzel",
+ "create_disable": "Nem lehet létrehozni a jelenetet letiltott eszközzel",
+ "no_scenes": "Nincsenek jelenetek",
+ "scenes": "Jelenetek"
+ },
+ "scenes": "Jelenetek",
+ "script": {
+ "create": "Szkript létrehozása eszközzel",
+ "create_disable": "Nem lehet szkriptet létrehozni letiltott eszközzel",
+ "no_scripts": "Nincsenek szkriptek",
+ "scripts": "Szkriptek"
+ },
+ "scripts": "Szkriptek",
+ "unknown_error": "Ismeretlen hiba",
+ "unnamed_device": "Névtelen eszköz",
+ "update": "Frissítés",
+ "update_device_error": "A készülék frissítése sikertelen"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Akkumulátor rendszer hozzáadása",
+ "battery_systems": "Akkumulátoros rendszerek",
+ "dialog": {
+ "energy_into_battery": "Akkumulátorba bekerülő energia (kWh)",
+ "energy_out_of_battery": "Akkumulátorból kikerülő energia (kWh)",
+ "header": "Akkumulátor rendszer konfigurálása"
+ },
+ "learn_more": "Bővebben a beállítás módjáról.",
+ "sub": "Ha rendelkezik akkumulátoros rendszerrel, beállíthatja, hogy a rendszer figyelje, mennyi energiát tárolt és használt fel vele.",
+ "title": "Akkumulátor"
+ },
+ "caption": "Energia",
+ "delete_integration": "Biztos benne, hogy törölni szeretné ezt az integrációt? El fogja távolítani az általa biztosított entitásokat is.",
+ "delete_source": "Biztos benne, hogy törölni szeretné ezt az erőforrást?",
+ "description": "Az energiatermelés, -fogyasztás nyomon követése",
+ "device_consumption": {
+ "add_device": "Eszköz hozzáadása",
+ "add_stat": "Válassza ki az entitást az energiafogyasztás nyomon követéséhez",
+ "devices": "Eszközök",
+ "dialog": {
+ "device_consumption_energy": "Eszközfogyasztási energia (kWh)",
+ "header": "Eszköz hozzáadása",
+ "selected_stat_intro": "Válassza ki az eszköz energiafelhasználását reprezentáló entitást."
+ },
+ "learn_more": "További információ a kezdésről.",
+ "selected_stat": "Az energia nyomon követése",
+ "sub": "Az egyes eszközök energiafelhasználásának nyomon követése lehetővé teszi, hogy Home Assistant lebontsa az energiafelhasználást külön az eszközökre.",
+ "title": "Egyedi eszközök"
+ },
+ "gas": {
+ "add_gas_source": "Gáz szolgáltatás hozzáadása",
+ "dialog": {
+ "cost_entity": "Aktuális árat mutató entitás használata",
+ "cost_entity_input": "Entitás a jelenlegi árral/{unit}",
+ "cost_number": "Használjon statikus árat",
+ "cost_number_input": "Ár/{unit}",
+ "cost_number_suffix": "{currency}/m³",
+ "cost_para": "Válassza ki, hogy Home Assistant hogyan kövesse nyomon a vételezett energia költségeit.",
+ "cost_stat": "A teljes költségeket nyomon követő entitás használata",
+ "cost_stat_input": "Teljes költség entitás",
+ "energy_stat": "Elfogyasztott gázmennyiség (m³)",
+ "gas_usage": "Gázfelhasználás",
+ "header": "Konfigurálja a gázfogyasztást",
+ "m3_or_kWh": "m³ vagy kWh",
+ "no_cost": "Ne kövesse nyomon a költségeket",
+ "paragraph": "A gázfogyasztás az a gázmennyiség, ami az földgáz hálózatból az otthonába áramlik."
+ },
+ "gas_consumption": "Gázfogyasztás",
+ "learn_more": "Bővebben a beállítás módjáról.",
+ "sub": "Hagyja, hogy Home Assistant figyelje a gázfogyasztást.",
+ "title": "Gázfogyasztás"
+ },
+ "grid": {
+ "add_co2_signal": "CO2 Signal integráció hozzáadása",
+ "add_consumption": "Vételezés hozzáadása",
+ "add_return": "Visszatáplálás hozzáadása",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Használjon egy entitást aktuális árral",
+ "cost_entity_input": "Entitás az aktuális árral",
+ "cost_number": "Használjon fix árat",
+ "cost_number_input": "Ár kWh-ként",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Válassza ki, hogy Home Assistant hogyan kövesse nyomon a vételezett energia költségeit.",
+ "cost_stat": "A teljes költségeket nyomon követő entitás használata",
+ "cost_stat_input": "Entitás a teljes költséggel",
+ "energy_stat": "Vételezett energia (kWh)",
+ "header": "Hálózati vételezés konfigurálása",
+ "no_cost": "Ne kövesse nyomon a költségeket",
+ "paragraph": "A vételezett energia az, amely az energiahálózatból az otthonába áramlik."
+ },
+ "to": {
+ "cost_entity": "Használjon aktuális árat az entitásnál",
+ "cost_entity_input": "Entitás az aktuális árral",
+ "cost_number": "Használjon fix árat",
+ "cost_number_input": "Ár kWh-ként",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Kap Ön visszatérítést, ha energiát táplál vissza a hálózatba?",
+ "cost_stat": "Használjon olyan entitást, amely nyomon követi a visszatérített pénzt",
+ "cost_stat_input": "Teljes kompenzáció entitás",
+ "energy_stat": "A hálózatba visszatáplált energia (kWh)",
+ "header": "Hálózati visszatáplálás konfigurálása",
+ "no_cost": "Nem kapok vissza pénzt",
+ "paragraph": "A visszatáplált energia az, amely a napelemekből a hálózatba áramlik."
+ }
+ },
+ "grid_carbon_footprint": "Vételezett energia szénlábnyoma",
+ "grid_consumption": "Vételezett energia",
+ "learn_more": "Bővebben a beállítás módjáról.",
+ "return_to_grid": "Visszatáplált energia",
+ "sub": "Állítsa be a hálózatból vételezett-, illetve ha termel, a visszatáplált energia mennyiségét. Ez lehetővé teszi Home Assistant számára, hogy nyomon kövesse az otthoni energiafelhasználást.",
+ "title": "Villamosenergia-hálózat"
+ },
+ "new_device_info": "Egy új eszköz beállítása után akár 2 órát is igénybe vehet, amíg az új adatok megjelennek az energia műszerfalán.",
+ "solar": {
+ "add_solar_production": "Energia termelés hozzáadása",
+ "dialog": {
+ "add_forecast": "Becslés hozzáadása",
+ "dont_forecast_production": "Ne készüljön előrejelzés",
+ "forecast_production": "Becsült termelés előrejelzése",
+ "header": "Energia termelés konfigurálása",
+ "solar_production_energy": "Napenergia termelés (kWh)",
+ "solar_production_forecast": "Energiatermelési előrejelzés",
+ "solar_production_forecast_description": "A napenergia-termelésre vonatkozó előrejelzés lehetővé teszi, hogy egy gyors becslést láthasson a mai napon várható energia termelésről."
+ },
+ "learn_more": "További információ a kezdésről.",
+ "solar_production": "Napenergia termelés",
+ "stat_predicted_production": "Napenergia-termelésének előrejelzése",
+ "stat_production": "Az Ön napenergia-termelése",
+ "stat_return_to_grid": "A hálózatba visszatáplált napenergia",
+ "sub": "Hagyja, hogy Home Assistant figyelje a napelemeket, és betekintést nyerjen azok teljesítmény-adataiba.",
+ "title": "Napelemek"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "A következő entitások negatív állapotúak, míg pozitív az elvárt:",
+ "title": "Az entitásnak negatív állapota van"
+ },
+ "entity_not_defined": {
+ "description": "Ellenőrizze az integrációt vagy a konfigurációt, amely a következőt adja:",
+ "title": "Az entitás nincs meghatározva"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "A következő entitások 'measurement' (mértékegység) állapotosztállyal rendelkeznek ugyan, de hiányzik nekik a 'last_reset' (utolsó_nullázás) időpontja:",
+ "title": "Utolsó nullázás időpontja hiányzik"
+ },
+ "entity_state_non_numeric": {
+ "description": "A következő entitások állapota nem értelmezhető számként:",
+ "title": "Az entitás nem numerikus állapotú"
+ },
+ "entity_unavailable": {
+ "description": "Ezen konfigurált entitások állapota jelenleg nem érhető el:",
+ "title": "Entitás nem érhető el"
+ },
+ "entity_unexpected_device_class": {
+ "description": "A következő entitások nem megfelelő eszközosztályban vannak:",
+ "title": "Váratlan eszközosztály"
+ },
+ "entity_unexpected_state_class": {
+ "description": "A következő entitások nem rendelkeznek az elvárt állapotosztállyal (state class):",
+ "title": "Váratlan állapotosztálly (state class)"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "A következő entitások nem rendelkeznek a \"total_increasing\" (összes növekvő) állapotosztállyal",
+ "title": "Váratlan (hibás) állapotosztály (state class)"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "A következő entitások nem rendelkeznek az elvárt mértékegységekkel (kWh vagy Wh):",
+ "title": "Nem várt mértékegység"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "A következő entitások nem rendelkeznek {currency}/kWh vagy {currency}/Wh mértékegységekkel:",
+ "title": "Nem várt mértékegység"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "A következő entitások nem rendelkeznek a várt mértékegységekkel „kWh”, „m³” vagy „ft³”:",
+ "title": "Váratlan mértékegység"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "A következő entitások nem rendelkeznek a várt mértékegységgel: ''{currency}/kWh'', ''{currency}/Wh'', ''{currency}/m³ ''vagy''{currency} /ft³'':",
+ "title": "Váratlan mértékegység"
+ },
+ "recorder_untracked": {
+ "description": "A naplózó (recorder) úgy van konfigurálva, hogy kizárja az alábbi a konfigurált entitásokat:",
+ "title": "Az entitás nincs naplózva"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Entitások",
+ "description": "Ismert entitások kezelése",
+ "picker": {
+ "disable_selected": {
+ "button": "Kiválasztottak letiltása",
+ "confirm_text": "A letiltott entitások nem fognak megjelenni a rendszerben.",
+ "confirm_title": "Szeretne letiltani {number} {number, plural,\n one {entitást}\n other {entitást}\n}?"
+ },
+ "enable_selected": {
+ "button": "Kiválasztottak engedélyezése",
+ "confirm_text": "Ezzel újra elérhetővé válnak Home Assistantban, ha most le vannak tiltva.",
+ "confirm_title": "Szeretne engedélyezni {number} {number, plural,\n one {entitást}\n other {entitást}\n}?"
+ },
+ "filter": {
+ "filter": "Szűrő",
+ "hidden_entities": "{number} rejtett {number, plural,\n one {entitás}\n other {entitás}\n}",
+ "show_all": "Az összes megjelenítése",
+ "show_disabled": "Letiltott entitások megjelenítése",
+ "show_readonly": "Csak olvasható entitások megjelenítése",
+ "show_unavailable": "Nem elérhető entitások megjelenítése"
+ },
+ "header": "Entitások",
+ "headers": {
+ "area": "Terület",
+ "disabled_by": "Letiltva",
+ "entity_id": "Entitás ID",
+ "integration": "Integráció",
+ "name": "Név",
+ "status": "Állapot"
+ },
+ "introduction": "Home Assistant nyilvántartást vezet minden olyan entitásról, melyet valaha látott, és egyedileg azonosítható. Ezen entitások mindegyikéhez létrejön egy entitás ID, amely csak az adott entitáshoz van rendelve.",
+ "introduction2": "Az entitás nyilvántartás használatával átírhatja a nevet, módosíthatja az entitás ID-t vagy akár el is távolíthatja Home Assistantból.",
+ "remove_selected": {
+ "button": "Kiválasztottak eltávolítása",
+ "confirm_partly_text": "A kiválasztott {selected} entitások közül csak {removable} távolíthatók el. Az entitások csak akkor távolíthatók el, ha az integráció már nem biztosítja azokat. Néha újra kell indítani Home Assistantot, mielőtt el tudná távolítani egy már nem létező integráció entitásait. Biztosan el szeretné távolítani az eltávolítható entitásokat?",
+ "confirm_partly_title": "Csak {number} {number, plural,\n one {kiválasztott entitás}\n other {kiválasztott entitás}\n} távolítható el.",
+ "confirm_text": "El kell távolítani őket a Lovelace konfigurációból és az automatizmusokból, ha tartalmazzák ezeket az entitásokat.",
+ "confirm_title": "Szeretne eltávolítani {number} {number, plural,\n one {entitást}\n other {entitást}\n}?"
+ },
+ "search": "Entitások keresése",
+ "selected": "{number} kiválasztva",
+ "status": {
+ "disabled": "Letiltott",
+ "ok": "Ok",
+ "readonly": "Csak olvasható",
+ "restored": "Visszaállítva",
+ "unavailable": "Nem elérhető"
+ }
+ }
+ },
+ "header": "Home Assistant beállítása",
+ "helpers": {
+ "caption": "Segítő entitások",
+ "description": "Automatizmusok létrehozását elősegítő elemek",
+ "dialog": {
+ "add_helper": "Segítő entitás hozzáadása",
+ "add_platform": "{platform} hozzáadása",
+ "create": "Létrehozás"
+ },
+ "picker": {
+ "add_helper": "Segítő entitás hozzáadása",
+ "headers": {
+ "editable": "Szerkeszthető",
+ "entity_id": "Entitás ID",
+ "name": "Név",
+ "type": "Típus"
+ },
+ "no_helpers": "Úgy tűnik, még nincs egy segítője sem!"
+ },
+ "types": {
+ "counter": "Számláló",
+ "input_boolean": "Logikai kapcsoló",
+ "input_button": "Nyomógomb",
+ "input_datetime": "Dátum és/vagy időpont",
+ "input_number": "Szám",
+ "input_select": "Legördülő",
+ "input_text": "Szöveg",
+ "timer": "Időtartam"
+ }
+ },
+ "info": {
+ "built_using": "Buildelve:",
+ "caption": "Infó",
+ "copy_github": "A GitHub számára",
+ "copy_menu": "Másolás menü",
+ "copy_raw": "Nyers szöveg",
+ "custom_uis": "Egyéni felhasználói felületek:",
+ "description": "Verzió, rendszerállapot és dokumentációra mutató linkek",
+ "developed_by": "Egy csomó fantasztikus ember által kifejlesztve.",
+ "documentation": "Dokumentáció",
+ "frontend": "kezelőfelület",
+ "frontend_version": "Kezelőfelület verzió: {version} - {type}",
+ "home_assistant_logo": "Home Assistant logó",
+ "icons_by": "Ikonokat készítette:",
+ "integrations": "Integrációk",
+ "issues": "Problémák",
+ "license": "Megjelent az Apache 2.0 licenc alatt",
+ "path_configuration": "A configuration.yaml fájl elérési útja: {path}",
+ "server": "szerver",
+ "setup_time": "Beállítási idő",
+ "source": "Forrás:",
+ "system_health": {
+ "manage": "Kezelés",
+ "more_info": "bővebben"
+ },
+ "system_health_error": "A rendszerállapot összetevő nincs betöltve. Adja hozzá a 'system_health:' sort a configuration.yaml fájlhoz."
+ },
+ "integrations": {
+ "add_integration": "Integráció hozzáadása",
+ "attention": "Figyelem szükséges",
+ "caption": "Integrációk",
+ "config_entry": {
+ "area": "Terület: {area}",
+ "check_the_logs": "Ellenőrizze a naplókat",
+ "configure": "Konfigurálás",
+ "delete": "Törlés",
+ "delete_confirm": "Biztos benne, hogy törölni szeretné {title} integrációt?",
+ "depends_on_cloud": "A felhőtől függő",
+ "device_unavailable": "Eszköz nem érhető el",
+ "devices": "{count} {count, plural,\n one {eszköz}\n other {eszköz}\n}",
+ "disable": {
+ "disable_confirm": "Biztosan letiltja ezt a konfigurációs bejegyzést? Eszközeit és entitásait letiltjuk.",
+ "disabled": "Letiltva",
+ "disabled_by": {
+ "device": "eszköz",
+ "integration": "integráció",
+ "user": "felhasználó"
+ },
+ "disabled_cause": "Letiltva: {cause}"
+ },
+ "disable_error": "Az integráció engedélyezése vagy letiltása sikertelen volt",
+ "disable_restart_confirm": "Indítsa újra Home Assistantot az integráció letiltásának befejezéséhez",
+ "disabled_polling": "A frissített adatok automatikus lekérdezése le van tiltva",
+ "documentation": "Dokumentáció",
+ "download_diagnostics": "Diagnosztikai adatok letöltése",
+ "enable_restart_confirm": "Indítsa újra Home Assistantot az integráció bekapcsolásának befejezéséhez",
+ "entities": "{count} {count, plural,\n one {entitás}\n other {entitás}\n}",
+ "entity_unavailable": "Entitás nem érhető el",
+ "firmware": "Firmware: {version}",
+ "hardware": "Hardver: {version}.",
+ "hub": "Kapcsolódva",
+ "known_issues": "Ismert hibák",
+ "manuf": "{manufacturer} által",
+ "no_area": "Nincs Terület",
+ "not_loaded": "Nincs betöltve",
+ "open_configuration_url": "Eszköz kezelőfelülete",
+ "provided_by_custom_integration": "Egyéni integráció biztosítja",
+ "reload": "Konfiguráció újratöltése",
+ "reload_confirm": "Az integráció konfigurációjának újratöltése megtörtént.",
+ "reload_restart_confirm": "Indítsa újra Home Assistantot az integráció újratöltésének befejezéséhez",
+ "rename": "Átnevezés",
+ "restart_confirm": "Indítsa újra Home Assistantot az integráció törlésének befejezéséhez",
+ "services": "{count} {count, plural,\n one {szolgáltatás}\n other {szolgáltatás}\n}",
+ "state": {
+ "failed_unload": "Nem sikerült",
+ "loaded": "Betöltve",
+ "migration_error": "Migrációs hiba",
+ "not_loaded": "Nincs betöltve",
+ "setup_error": "Nem sikerült beállítani",
+ "setup_retry": "A beállítás újbóli megkísérlése"
+ },
+ "system_options": "Rendszerbeállítások",
+ "unknown_via_device": "Ismeretlen eszköz",
+ "unnamed_entry": "Névtelen bejegyzés",
+ "via": "Csatlakoztatva:"
+ },
+ "config_flow": {
+ "aborted": "Megszakítva",
+ "close": "Bezárás",
+ "could_not_load": "A konfigurációs folyamat nem tölthető be",
+ "created_config": "Konfiguráció létrehozva: {name}.",
+ "dismiss": "Párbeszédpanel elvetése",
+ "error": "Hiba",
+ "error_saving_area": "Hiba a terület mentésekor: {error}",
+ "external_step": {
+ "description": "Ehhez a lépéshez egy külső weboldal meglátogatása szükséges.",
+ "open_site": "Weboldal megnyitása"
+ },
+ "finish": "Befejezés",
+ "loading": {
+ "fallback_title": "integráció",
+ "loading_flow": "Kérem várjon, míg {integration} beállítása befejeződik",
+ "loading_step": "{integration} következő lépésének betöltése"
+ },
+ "next": "Következő",
+ "not_all_required_fields": "Nincs kitöltve minden szükséges mező.",
+ "not_loaded": "Az integrációt nem sikerült betölteni. Próbálja meg újraindítani a Home Assistant rendszerét.",
+ "pick_flow_step": {
+ "new_flow": "Nem, állítson be egy másik {integration}",
+ "title": "Felfedeztük az alábbiakat, szeretné most beállítani őket?"
+ },
+ "submit": "Küldés"
+ },
+ "configure": "Beállítás",
+ "configured": "Konfigurálva",
+ "confirm_new": "Be szeretné állítani: {integration}?",
+ "description": "Integrációk kezelése (szolgáltatások, eszközök…)",
+ "details": "Integráció részletei",
+ "disable": {
+ "disabled_integrations": "{number} letiltva",
+ "show": "Mutat",
+ "show_disabled": "A letiltott integrációk megjelenítése"
+ },
+ "discovered": "Felfedezve",
+ "home_assistant_website": "Home Assistant weboldal",
+ "ignore": {
+ "confirm_delete_ignore": "Ettől az integráció újra meg fog jelenni a felfedezett integrációk között a felfedezés során. Ehhez szükség lehet egy kis időre, vagy egy újraindításra.",
+ "confirm_delete_ignore_title": "{name} mellőzésének visszavonása?",
+ "confirm_ignore": "Biztos benne, hogy nem szeretné beállítani ezt az integrációt? Visszavonhatja a döntést később is, ha kiválasztja a 'Mellőzött integrációk megjelenítése' opciót a jobb felső sarokban lévő menüben.",
+ "confirm_ignore_title": "{name} felfedezésének mellőzése?",
+ "ignore": "Mellőzés",
+ "ignored": "Mellőzve",
+ "show_ignored": "Mellőzött integrációk megjelenítése",
+ "stop_ignore": "Mellőzés visszavonása"
+ },
+ "integration": "integráció",
+ "integration_not_found": "Integráció nem található.",
+ "new": "Új integráció beállítása",
+ "no_integrations": "Úgy tűnik, még nincs beállítva egyetlen integráció sem. Kattintson az alábbi gombra az első integráció hozzáadásához!",
+ "none": "Még semmi sincs beállítva",
+ "none_found": "Nem található telepített integráció",
+ "none_found_detail": "Keresési feltételek pontosítása.",
+ "note_about_integrations": "Egyetlen integráció sem felelt meg a keresésének, előfordulhat, hogy a beállítani kívánt integráció még nem állítható be a felhasználói felületen keresztül.",
+ "note_about_website_reference": "Továbbiak érhetőek el itt: ",
+ "reconfigure": "Újrakonfigurálás",
+ "rename_dialog": "A konfigurációs bejegyzés nevének szerkesztése",
+ "rename_input_label": "Bejegyzés neve",
+ "search": "Integrációk keresése"
+ },
+ "introduction": "Ebben a nézetben lehetőség van a komponensek és Home Assistant beállítására. Még nem lehet mindent a felületről, de dolgozunk rajta.",
+ "logs": {
+ "caption": "Napló",
+ "clear": "Törlés",
+ "copy": "Naplóbejegyzés másolása",
+ "custom_integration": "egyedi integráció",
+ "description": "A Home Assistant naplófájlok megtekintése",
+ "details": "Naplóbejegyzés részletei ({level})",
+ "error_from_custom_integration": "Ez a hiba egy egyéni integrációból lett származtatva.",
+ "level": {
+ "critical": "KRITIKUS HIBA",
+ "debug": "DEBUG",
+ "error": "HIBA",
+ "info": "INFÓ",
+ "warning": "FIGYELMEZTETÉS"
+ },
+ "load_full_log": "Teljes Home Assistant napló betöltése",
+ "loading_log": "Hibanapló betöltése...",
+ "multiple_messages": "először előfordult: {time}, később {counter} alkalommal újra megjelent",
+ "no_errors": "Nem jelentettek hibát.",
+ "no_issues": "Nincsenek új bejegyzések!",
+ "refresh": "Frissítés"
+ },
+ "lovelace": {
+ "caption": "Lovelace Irányítópultok",
+ "dashboards": {
+ "cant_edit_default": "Az alap Lovelace irányítópult nem szerkeszthető a felhasználói felületről. Elrejtheti, ha egy másik irányítópultot állít be alapértelmezettként.",
+ "cant_edit_yaml": "A YAML-ben definiált irányítópultok nem szerkeszthetők a felhasználói felületről. Változtassa meg őket a configuration.yaml fájlban.",
+ "caption": "Irányítópultok",
+ "conf_mode": {
+ "storage": "Kezelő felületről vezérelt",
+ "yaml": "YAML fájl"
+ },
+ "confirm_delete": "Biztos benne, hogy törölni szeretné ezt az irányítópultot?",
+ "confirm_delete_text": "Az irányítópult véglegesen törölve lesz.",
+ "confirm_delete_title": "Biztos benne, hogy {dashboard_title} törölhető?",
+ "default_dashboard": "Ez az alapértelmezett irányítópult",
+ "detail": {
+ "create": "Létrehozás",
+ "delete": "Törlés",
+ "dismiss": "Bezárás",
+ "edit_dashboard": "Irányítópult szerkesztése",
+ "icon": "Ikon",
+ "new_dashboard": "Új irányítópult hozzáadása",
+ "remove_default": "Alapértelmezett beállítás visszavonása ezen az eszközön",
+ "require_admin": "Csak adminisztrátor",
+ "set_default": "Beállítás alapértelmezettként ezen az eszközön",
+ "show_sidebar": "Megjelenítés az oldalsávon",
+ "title": "Név",
+ "title_required": "Név megadása szükséges",
+ "update": "Frissítés",
+ "url": "URL",
+ "url_error_msg": "Az URL-nek tartalmaznia kell egy kötőjelet, de nem tartalmazhat szóközt vagy speciális karaktereket, kivéve _ és -"
+ },
+ "picker": {
+ "add_dashboard": "Irányítópult hozzáadása",
+ "headers": {
+ "conf_mode": "Konfigurációs módszer",
+ "default": "Alapértelmezett",
+ "filename": "Fájlnév",
+ "require_admin": "Csak adminisztrátor",
+ "sidebar": "Megjelenítés az oldalsávon",
+ "title": "Név"
+ },
+ "open": "Megnyitás"
+ }
+ },
+ "description": "Személyre szabható kezelőfelület kártyafelosztásokkal",
+ "resources": {
+ "cant_edit_yaml": "A Lovelace-t YAML módban használja, ezért az erőforrásokat nem kezelheti a felhasználói felületről. Kezelje őket a configuration.yaml fájlban.",
+ "caption": "Erőforrások",
+ "confirm_delete": "Biztos benne, hogy törölni szeretné ezt az erőforrást?",
+ "detail": {
+ "create": "Létrehozás",
+ "delete": "Törlés",
+ "dismiss": "Bezárás",
+ "new_resource": "Új erőforrás hozzáadása",
+ "type": "Erőforrás típusa",
+ "update": "Frissítés",
+ "url": "URL",
+ "url_error_msg": "Az URL kötelező mező",
+ "warning_header": "Legyen óvatos!",
+ "warning_text": "Az erőforrások hozzáadása veszélyes lehet, győződjön meg róla, hogy ismeri a forrását, és megbízik benne. A rossz erőforrások súlyosan károsíthatják a rendszerét."
+ },
+ "picker": {
+ "add_resource": "Erőforrás hozzáadása",
+ "headers": {
+ "type": "Típus",
+ "url": "URL"
+ },
+ "no_resources": "Nincsenek erőforrások"
+ },
+ "refresh_body": "Frissíteni szükséges az oldalt az eltávolítás befejezéséhez, szeretné ezt most?",
+ "refresh_header": "Szeretne frissíteni?",
+ "types": {
+ "css": "Stíluslap",
+ "html": "HTML (elavult)",
+ "js": "JavaScript fájl (elavult)",
+ "module": "JavaScript modul"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Topik figyelése",
+ "description_publish": "Csomag közzététele",
+ "listening_to": "Figyelés:",
+ "message_received": "{topic} topikban érkezett {id} üzenet {time}-kor:",
+ "payload": "Adathalmaz (payload) (sablon megengedett)",
+ "publish": "Közzététel",
+ "start_listening": "Figyelés indítása",
+ "stop_listening": "Figyelés befejezése",
+ "subscribe_to": "Feliratkozás topikra",
+ "title": "MQTT",
+ "topic": "topik"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Vezérlő",
+ "instance": "Példány",
+ "network": "Hálózat",
+ "node_id": "Csomópont ID",
+ "ozw_instance": "OpenZWave példány",
+ "query_stage": "Lekérdezési fázis",
+ "wakeup_instructions": "Ébresztési utasítások",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Sikertelen csomópont",
+ "stage": "Szakasz",
+ "zwave_info": "Z-Wave infó"
+ },
+ "navigation": {
+ "network": "Hálózat",
+ "node": {
+ "config": "Konfiguráció",
+ "dashboard": "Irányítópult"
+ },
+ "nodes": "Csomópontok",
+ "select_instance": "Példány kiválasztása"
+ },
+ "network": {
+ "header": "Hálózat menedzsment",
+ "introduction": "Az egész hálózatra kiterjedő funkciók kezelése.",
+ "node_count": "{count} csomópont"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "Minden csomópont lekérdezésre került",
+ "driverallnodesqueriedsomedead": "Minden csomópont lekérdezésre került. Néhány csomópont nem ad életjelet.",
+ "driverawakenodesqueries": "Minden éber csomópont lekérdezésre került",
+ "driverfailed": "Nem sikerült csatlakozni a Z-Wave vezérlőhöz",
+ "driverready": "A Z-Wave vezérlő inicializálása",
+ "driverremoved": "Az illesztőprogram el lett távolítva",
+ "driverreset": "Az illesztőprogram vissza lett állítva",
+ "offline": "OZWDaemon offline",
+ "ready": "Csatlakozásra kész",
+ "started": "Csatlakoztatva az MQTT-hez",
+ "starting": "Csatlakozás az MQTT-hez",
+ "stopped": "OpenZWave leállt"
+ },
+ "offline": "Offline",
+ "online": "Online",
+ "starting": "Indulás",
+ "unknown": "Ismeretlen"
+ },
+ "node": {
+ "button": "Csomópont részletei",
+ "not_found": "A csomópont nem található"
+ },
+ "node_config": {
+ "header": "Csomópont konfigurációja",
+ "help_source": "A konfigurációs paraméterek leírását és a súgószöveget az OpenZWave projekt biztosítja.",
+ "introduction": "Z-Wave csomópont különböző konfigurációs paramétereinek kezelése.",
+ "wakeup_help": "Az elemről megtáplált csomópontoknak ébren kell lenniük a konfiguráció módosításához. Ha a csomópont nincs ébren, akkor az OpenZWave megpróbálja frissíteni a csomópont konfigurációját a következő ébredéskor, ami akár órákba (vagy napokba) is beletelhet. Az eszköz felébresztéséhez kövesse az alábbi lépéseket:"
+ },
+ "node_metadata": {
+ "product_manual": "Termék kézikönyve"
+ },
+ "node_query_stages": {
+ "associations": "Társítási csoportok és tagságok frissítése",
+ "cacheload": "Adatok betöltése az OpenZWave gyorsítótárfájlból. Az elemes csomópontok ebben az állapotban maradnak, amíg a csomópont fel nem ébred.",
+ "complete": "Az interjú folyamata befejeződött",
+ "configuration": "Konfigurációs értékek beszerzése a csomóponttól",
+ "dynamic": "Gyakran változó értékek beszerzése a csomóponttól",
+ "instances": "Részletek beszerzése arról, hogy az eszköz milyen példányokat vagy csatornákat támogat",
+ "manufacturerspecific1": "Gyártói és termékazonosító kódok beszerzése a csomóponttól",
+ "manufacturerspecific2": "További gyártói és termék-azonosító kódok beszerzése a csomóponttól",
+ "neighbors": "A csomópont szomszéd listájának beszerzése",
+ "nodeinfo": "Támogatott parancsosztályok megszerzése a csomóponttól",
+ "nodeplusinfo": "Z-Wave+ információk beszerzése a csomóponttól",
+ "probe": "Annak ellenőrzése, hogy a csomópont ébren van / él-e",
+ "protocolinfo": "Ennek a csomópontnak az alapvető Z-Wave képességeinek beszerzése a vezérlőtől",
+ "session": "Ritkán változó értékek beszerzése a csomóponttól",
+ "static": "Statikai értékek beszerzése az eszköztől",
+ "versions": "Információk beszerzése a firmware-ről és a parancsosztály verzióiról",
+ "wakeup": "Ébresztési várólisták és üzenetek támogatásának beállítása"
+ },
+ "nodes_table": {
+ "failed": "Sikertelen",
+ "id": "ID",
+ "manufacturer": "Gyártó",
+ "model": "Modell",
+ "query_stage": "Lekérdezési fázis",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Ha a csomópont elemről működik, a folytatás előtt feltétlenül ébressze fel",
+ "button": "Csomópont frissítése",
+ "complete": "Csomópont frissítés befejeződött",
+ "description": "Ez megmondja az OpenZWave-nek, hogy készítsen újra egy csomópontot, és frissítse a csomópont parancsosztályait, képességeit és értékeit.",
+ "node_status": "Csomópont állapota",
+ "refreshing_description": "Csomópont információk frissítése…",
+ "start_refresh_button": "Frissítés indítása",
+ "step": "Lépés",
+ "title": "Csomópont adatainak frissítése",
+ "wakeup_header": "Ébresztési utasítások:",
+ "wakeup_instructions_source": "Az ébresztési utasítások az OpenZWave közösségi eszköz adatbázisból származnak."
+ },
+ "select_instance": {
+ "header": "OpenZWave példány kiválasztása",
+ "introduction": "Egynél több OpenZWave példány fut. Melyik példányt szeretné kezelni?",
+ "none_found": "Nem található OpenZWave példány. Ha úgy gondolja, hogy ez helytelen, akkor ellenőrizze az OpenZWave és az MQTT beállításait, és győződjön meg arról, hogy Home Assistant képes kommunikálni az MQTT szerverrel."
+ },
+ "services": {
+ "add_node": "Csomópont hozzáadása",
+ "cancel_command": "Parancs visszavonása",
+ "remove_node": "Csomópont eltávolítása"
+ }
+ },
+ "person": {
+ "add_person": "Személy hozzáadása",
+ "caption": "Személyek",
+ "confirm_delete": "Biztos benne, hogy törölni szeretné ezt a személyt?",
+ "confirm_delete2": "Minden ehhez a személyhez tartozó eszköz hozzárendelés nélküli lesz.",
+ "create_person": "Személy létrehozása",
+ "description": "Home Assistant által követett személyek kezelése",
+ "detail": {
+ "admin": "Adminisztrátor",
+ "allow_login": "Személy bejelentkezésének engedélyezése",
+ "confirm_delete_user": "Biztos benne, hogy törölni szeretné {name} felhasználói fiókját? Ön továbbra is képes lesz nyomonkövetni a felhasználót, viszont ő mostantól nem fog tudni ide bejelentkezni.",
+ "create": "Létrehozás",
+ "delete": "Törlés",
+ "device_tracker_intro": "Válassza ki azokat az eszközöket, amelyek ehhez a felhasználóhoz tartoznak.",
+ "device_tracker_pick": "Válasszon egy nyomon követni kívánt eszközt",
+ "device_tracker_picked": "Eszköz nyomon követése",
+ "link_integrations_page": "Integrációk oldal",
+ "link_presence_detection_integrations": "Jelenlét-érzékelő Integrációk",
+ "linked_user": "Csatolt felhasználó",
+ "local_only": "Csak a helyi hálózatról lehet bejelentkezni",
+ "name": "Név",
+ "name_error_msg": "Név szükséges",
+ "new_person": "Új személy",
+ "no_device_tracker_available_intro": "Ha vannak olyan eszközei, amelyek jelzik egy személy jelenlétét, akkor itt hozzá lehet rendelni ezeket egy személyhez. Az első eszköz hozzáadásához válasszon egy jelenlét-érzékelő integrációt az integrációk oldalán.",
+ "update": "Frissítés"
+ },
+ "introduction": "Itt adhatja meg Home Assistant minden érdekelt személyét.",
+ "learn_more": "Tudjon meg többet az emberekről",
+ "no_persons_created_yet": "Úgy tűnik, még nem hozott létre személyeket.",
+ "note_about_persons_configured_in_yaml": "Megjegyzés: a configuration.yaml fájlban konfigurált személyek nem szerkeszthetők a felhasználói felületen.",
+ "person_not_found": "Nem található a személy, akit szerkeszteni próbált.",
+ "person_not_found_title": "A személy nem található"
+ },
+ "scene": {
+ "activated": "Aktivált jelenet: {name}.",
+ "caption": "Jelenetek",
+ "description": "Eszköz állapotok rögzítése, hogy később egyszerűen előhívhassa őket",
+ "editor": {
+ "area": "Terület",
+ "default_name": "Új jelenet",
+ "devices": {
+ "add": "Eszköz hozzáadása",
+ "delete": "Eszköz törlése",
+ "header": "Eszközök",
+ "introduction": "Adja hozzá a kívánt eszközöket a jelenethez, majd állítson minden eszközt olyan állapotba, ahogyan ebben a jelenetben szeretné."
+ },
+ "entities": {
+ "add": "Entitás hozzáadása",
+ "delete": "Entitás törlése",
+ "device_entities": "Ha egy olyan entitást ad hozzá, ami egy eszközhöz tartozik, akkor az eszköz is automatikusan hozzá lesz adva.",
+ "header": "Entitások",
+ "introduction": "Az eszköz nélküli entitások itt állíthatók be.",
+ "without_device": "Eszköz nélküli entitások"
+ },
+ "icon": "Ikon",
+ "introduction": "Használjon jeleneteket otthonának életre keltéséhez.",
+ "load_error_not_editable": "Csak a scenes.yaml fájlban megadott jelenetek szerkeszthetők.",
+ "load_error_unknown": "Hiba a jelenet betöltésekor ({err_no}).",
+ "name": "Név",
+ "save": "Mentés",
+ "unsaved_confirm": "Vannak nem mentett módosítások. Biztos, hogy elhagyja az oldalt?"
+ },
+ "picker": {
+ "add_scene": "Jelenet hozzáadása",
+ "delete_confirm": "Biztos benne, hogy törölni szeretné ezt a jelenetet?",
+ "delete_scene": "Jelenet törlése",
+ "duplicate": "Másolás",
+ "duplicate_scene": "Jelenet duplikálása",
+ "edit_scene": "Jelenet szerkesztése",
+ "header": "Jelenet szerkesztő",
+ "headers": {
+ "name": "Név"
+ },
+ "introduction": "A jelenet (scene) szerkesztő lehetővé teszi jelenetek létrehozását és szerkesztését.",
+ "learn_more": "Tudjon meg többet a jelenetekről",
+ "no_scenes": "Nem található jelenet",
+ "only_editable": "Csak a scenes.yaml fájlban megadott jelenetek szerkeszthetők.",
+ "pick_scene": "Válasszon jelenetet a szerkesztéshez",
+ "show_info_scene": "Információk megjelenítése a jelenetről"
+ }
+ },
+ "script": {
+ "caption": "Szkriptek",
+ "description": "Műveletsorozatok végrehajtása",
+ "editor": {
+ "alias": "Név",
+ "default_name": "Új Szkript",
+ "delete_confirm": "Biztos benne, hogy törölni szeretné ezt a szkriptet?",
+ "delete_script": "Szkript törlése",
+ "header": "Szkript: {name}",
+ "icon": "Ikon",
+ "id": "Entitás ID",
+ "id_already_exists": "Ez az ID már létezik",
+ "id_already_exists_save_error": "Ez a szkript nem menthető el, mert az azonosítója nem egyedi. Kérem, válasszon másik azonosítót, vagy hagyja üresen, hogy automatikusan létrejöjjön egy új.",
+ "introduction": "Használjon szkripteket műveletsorozatok végrehajtásához.",
+ "link_available_actions": "Tudjon meg többet az elérhető műveletekről.",
+ "load_error_not_editable": "Csak a scripts.yaml fájlban megadott szkriptek szerkeszthetők.",
+ "max": {
+ "parallel": "A párhuzamos futtatások maximális száma",
+ "queued": "Várólista hossza"
+ },
+ "modes": {
+ "description": "A mód határozza meg mi történjen amikor a szkriptet meghívják, ha egy vagy több korábbi meghívásból ugyanez a szkript még fut. További információk a {documentation_link} oldalon.",
+ "documentation": "szkript dokumentáció",
+ "label": "Mód",
+ "parallel": "Párhuzamos",
+ "queued": "Várólistás",
+ "restart": "Újraindítás",
+ "single": "Egyszeri (alapértelmezett)"
+ },
+ "save_script": "Szkript mentése",
+ "sequence": "Sorrend",
+ "sequence_sentence": "A szkript műveleti sorrendje.",
+ "show_trace": "Nyomkövetés megjelenítése"
+ },
+ "picker": {
+ "add_script": "Szkript hozzáadása",
+ "dev_script": "Hibakeresési szkript",
+ "duplicate": "Duplikálás",
+ "duplicate_script": "Szkript duplikálása",
+ "edit_script": "Szkript szerkesztése",
+ "header": "Szkript szerkesztő",
+ "headers": {
+ "name": "Név"
+ },
+ "introduction": "A szkript (script) szerkesztő lehetővé tesz parancslisták létrehozását és szerkesztését.",
+ "learn_more": "Tudjon meg többet a szkriptekről",
+ "no_scripts": "Nem találtunk szerkeszthető szkripteket",
+ "run_script": "Szkript futtatása",
+ "show_info": "Információ megjelenítése a szkriptről"
+ }
+ },
+ "server_control": {
+ "caption": "Szerver vezérlés",
+ "description": "Home Assistant szerver ellenőrzése és újraindítása",
+ "section": {
+ "reloading": {
+ "automation": "Automatizmusok",
+ "command_line": "Parancssori entitások",
+ "core": "Lokáció és testreszabások",
+ "filesize": "Fájlméret entitások",
+ "filter": "Szűrőentitások",
+ "generic": "Általános IP kamerák",
+ "generic_thermostat": "Általános termosztátok",
+ "group": "Csoportok és értesítési szolgáltatások",
+ "heading": "YAML konfiguráció újratöltése",
+ "history_stats": "Előzmény statisztika entitások",
+ "homekit": "HomeKit",
+ "input_boolean": "Logikai váltók",
+ "input_button": "Nyomógombok",
+ "input_datetime": "Dátum/Időpont bemenetek",
+ "input_number": "Szám bemenetek",
+ "input_select": "Választási bemenetek (legördülők)",
+ "input_text": "Szöveg bemenetek",
+ "introduction": "Home Assistant bizonyos részei újraindítás nélkül újratölthetők. Újratöltéskor az aktuálisan érvényes YAML konfiguráció helyére betöltődik az új.",
+ "min_max": "Min/max entitások",
+ "mqtt": "Manuálisan konfigurált MQTT entitások",
+ "person": "Személyek",
+ "ping": "Ping bináris érzékelő entitások",
+ "reload": "{domain}",
+ "rest": "Rest entitások és értesítési szolgáltatások",
+ "rpi_gpio": "Raspberry Pi GPIO entitások",
+ "scene": "Jelenetek",
+ "script": "Szkriptek",
+ "smtp": "SMTP értesítési szolgáltatások",
+ "statistics": "Statisztikai entitások",
+ "telegram": "Telegram értesítési szolgáltatások",
+ "template": "Sablon entitások",
+ "themes": "Témák",
+ "timer": "Időzítők",
+ "trend": "Trend entitások",
+ "universal": "Univerzális médialejátszó entitások",
+ "zone": "Zónák"
+ },
+ "server_management": {
+ "confirm_restart": "Biztosan újra szeretné indítani Home Assistantot?",
+ "confirm_stop": "Biztos benne, hogy le szeretné állítani Home Assistantot?",
+ "heading": "Szerver menedzsment",
+ "introduction": "Home Assistant szerver vezérlése.",
+ "restart": "Újraindítás",
+ "stop": "Leállítás"
+ },
+ "validation": {
+ "check_config": "Konfiguráció ellenőrzése",
+ "heading": "Konfiguráció ellenőrzése",
+ "introduction": "A konfiguráció helyességének ellenőrzése. Visszajelzést ad az elírásokról, ha a yaml-konfigurációja kapcsán meg szeretne bizonyosodni róla, hogy minden rendben van.",
+ "invalid": "A konfiguráció érvénytelen",
+ "valid": "A konfiguráció érvényes!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Matrica hozzáadása",
+ "automation_title": "{name} matrica beolvasva",
+ "caption": "Matricák",
+ "confirm_remove": "Biztos benne, hogy el szeretné távolítani {tag} matricát?",
+ "confirm_remove_title": "Biztos benne, hogy eltávolítja a matricát?",
+ "create_automation": "Matricás automatizmus létrehozása",
+ "description": "Automatizmusok indítása NFC-, QR-kód matricák stb. leolvasásakor",
+ "detail": {
+ "companion_apps": "mobilalkalmazást",
+ "create": "Létrehozás",
+ "create_and_write": "Létrehozás és írás",
+ "delete": "Törlés",
+ "description": "Leírás",
+ "name": "Név",
+ "new_tag": "Új matrica hozzáadása",
+ "tag_id": "Matrica azonosítója",
+ "tag_id_placeholder": "Automatikusan generálódik, ha nincs kitöltve",
+ "update": "Frissítés",
+ "usage": "A matrica (tag) beolvasáskor egy automatizmust indíthat el. Használhat matricaként NFC tageket, QR-kódokat vagy bármi más hasonlót. Használja a {companion_link}, hogy ezt a matricát egy programozható NFC chipre íhassa, vagy hozzon létre egy QR-kódot most."
+ },
+ "edit": "Szerkesztés",
+ "headers": {
+ "last_scanned": "Utoljára beolvasva",
+ "name": "Név"
+ },
+ "learn_more": "Tudjon meg többet a matricákról",
+ "never_scanned": "Sosem volt beolvasva",
+ "no_tags": "Nincsenek bekonfigurált matricák",
+ "write": "Írás"
+ },
+ "updates": {
+ "check_unavailable": {
+ "description": "A Home Assistant saját operációs rendszerét kell futtatnia, hogy telepíthesse a frissítéseket a felhasználói felületről.",
+ "title": "Nem sikerült frissítéseket keresni"
+ },
+ "check_updates": "Frissítések keresése",
+ "more_updates": "+ {count} frissítés",
+ "review": "áttekintés",
+ "show": "megjelenítés",
+ "show_all_updates": "Minden frissítés megjelenítése",
+ "title": "{count} {count, plural,\n one {frissítés}\n other {frissítés}\n}",
+ "unable_to_fetch": "Nem sikerült lekérni a frissítéseket",
+ "version_available": "Új verzió elérhető: {version_available}"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Felhasználó hozzáadása",
+ "create": "Létrehozás",
+ "local_only": "Csak helyi",
+ "password": "Jelszó",
+ "password_confirm": "Jelszó megerősítése",
+ "password_not_match": "A jelszavak nem egyeznek"
+ },
+ "caption": "Felhasználók",
+ "description": "Home Assistant felhasználói fiókok kezelése",
+ "editor": {
+ "activate_user": "Felhasználó aktiválása",
+ "active": "Aktív",
+ "active_tooltip": "Szabályozza, hogy a felhasználó be tud-e jelentkezni",
+ "admin": "Adminisztrátor",
+ "caption": "Felhasználó megtekintése",
+ "change_password": "Jelszó módosítása",
+ "confirm_user_deletion": "Biztos benne, hogy törölni szeretné {name}-t?",
+ "deactivate_user": "Felhasználó inaktiválása",
+ "delete_user": "Felhasználó törlése",
+ "group": "Csoport",
+ "id": "ID",
+ "local_only": "Csak a helyi hálózatról lehet bejelentkezni",
+ "name": "Megjelenítendő név",
+ "new_password": "Új Jelszó",
+ "owner": "Tulajdonos",
+ "password_changed": "A jelszó módosítása sikeresen megtörtént",
+ "system_generated": "Rendszerfelhasználó",
+ "system_generated_users_not_editable": "Nem lehet frissíteni a rendszer által létrehozott felhasználókat.",
+ "system_generated_users_not_removable": "Nem lehet eltávolítani a rendszer által létrehozott felhasználókat.",
+ "unnamed_user": "Névtelen felhasználó",
+ "update_user": "Frissítés",
+ "username": "Felhasználónév"
+ },
+ "is_local": "Helyi felhasználó",
+ "is_not_active": "Letiltva",
+ "is_owner": "Tulajdonos",
+ "is_system": "Rendszerfelhasználó",
+ "picker": {
+ "add_user": "Felhasználó hozzáadása",
+ "headers": {
+ "group": "Csoport",
+ "is_active": "Aktív",
+ "is_owner": "Tulajdonos",
+ "local": "Csak helyi",
+ "name": "Megjelenítendő név",
+ "system": "Rendszerfelhasználó",
+ "username": "Felhasználónév"
+ }
+ },
+ "users_privileges_note": "A felhasználói csoport funkció jelenleg is fejlesztés alatt áll. A felhasználó nem tudja kezelni a példányt a felhasználói felületen keresztül. Folyamatosan ellenőrizzük az összes felügyeleti API-végpontot annak érdekében, hogy azok helyesen korlátozzák a hozzáférést az adminisztrátorok részére."
+ },
+ "zha": {
+ "add_device": "Eszköz hozzáadása",
+ "add_device_page": {
+ "discovered_text": "Az eszközök itt fognak megjelenni, ha felfedezésre kerültek.",
+ "no_devices_found": "Nem találhatóak eszközök. Győződjön meg arról, hogy párosítási módban vannak, és tartsa őket ébren, miközben a felfedezés fut.",
+ "pairing_mode": "Győződjön meg arról, hogy az eszközei párosítási módban vannak. Ellenőrizze a készülékek instrukcióit arról, hogy hogyan kell ezt megtenni.",
+ "search_again": "Keresés Újra",
+ "spinner": "ZHA Zigbee eszközök keresése…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "A kiválasztott klaszter attribútumai",
+ "get_zigbee_attribute": "Zigbee attribútum lekérdezése",
+ "header": "Klaszter attribútumok",
+ "help_attribute_dropdown": "Válasszon egy attribútumot a megtekintéshez, vagy az értékének beállításához.",
+ "help_get_zigbee_attribute": "A kiválasztott attribútum értékének lekérdezése.",
+ "help_set_zigbee_attribute": "Attribútumérték beállítása egy klaszterhez a megadott entitáson.",
+ "introduction": "Klaszter attribútumok megtekintése és szerkesztése.",
+ "set_zigbee_attribute": "Zigbee attribútum beállítása"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Kiválasztott klaszter parancsai",
+ "header": "Klaszterparancsok",
+ "help_command_dropdown": "Válassza ki a kommunikációs parancsot.",
+ "introduction": "Klaszterparancsok megtekintése és kiadása.",
+ "issue_zigbee_command": "Zigbee parancs kiadása"
+ },
+ "clusters": {
+ "header": "Klaszterek",
+ "help_cluster_dropdown": "Válasszon egy klasztert az attribútumok és parancsok megtekintéséhez.",
+ "introduction": "A klaszterek a Zigbee funkcionalitásának építőelemei. A funkcionalitást logikai egységekre bontják. Vannak ügyfél- és kiszolgálótípusok, amelyek attribútumokból és parancsokból állnak."
+ },
+ "common": {
+ "clusters": "Klaszterek",
+ "manufacturer_code_override": "Gyártói kód felülbírálása",
+ "value": "Érték"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Parancsikonok",
+ "update_button": "Beállítások frissítése"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "A konfigurálás befejeződött",
+ "CONFIGURED_status_text": "Inicializálás",
+ "INITIALIZED": "Az inicializálás befejeződött",
+ "INITIALIZED_status_text": "A készülék használatra kész",
+ "INTERVIEW_COMPLETE": "Interjú kész",
+ "INTERVIEW_COMPLETE_status_text": "Konfigurálás folyamatban",
+ "PAIRED": "Eszköz megtalálva",
+ "PAIRED_status_text": "Interjú indítása"
+ },
+ "group_binding": {
+ "bind_button_help": "Csatlakoztassa a kiválasztott csoportot a kiválasztott eszközfürtökhöz.",
+ "bind_button_label": "Csoporthoz fűzés",
+ "cluster_selection_help": "Jelölje ki azokat a klasztereket, amelyeket a kiválasztott csoporthoz szeretne kötni.",
+ "group_picker_help": "Jelöljön ki egy csoportot a kötési parancs kiadásához.",
+ "group_picker_label": "Köthető csoportok",
+ "header": "Csoportkötés",
+ "introduction": "Csoportok kötése és lebontása",
+ "unbind_button_help": "A kijelölt csoport lebontása a kijelölt eszközfürtökből.",
+ "unbind_button_label": "Csoport bontás"
+ },
+ "groups": {
+ "add_group": "Csoport hozzáadása",
+ "add_members": "Tagok hozzáadása",
+ "caption": "Csoportok",
+ "create": "Csoport létrehozása",
+ "create_group": "Zigbee Home Automation - Csoport létrehozása",
+ "create_group_details": "Adja meg a szükséges adatokat egy új zigbee csoport létrehozásához",
+ "creating_group": "Csoport létrehozása",
+ "delete": "Csoport törlése",
+ "group_details": "Itt van minden részlet a kiválasztott zigbee csoportról.",
+ "group_id": "Csoport ID",
+ "group_info": "Csoportinformációk",
+ "group_name_placeholder": "Csoport név",
+ "group_not_found": "A csoport nem található!",
+ "groups": "Csoportok",
+ "members": "Tagok",
+ "remove_members": "Tagok eltávolítása",
+ "removing_members": "Tagok eltávolítása"
+ },
+ "network": {
+ "caption": "Hálózat"
+ },
+ "visualization": {
+ "auto_zoom": "Automatikus nagyítás",
+ "caption": "Megjelenítés",
+ "enable_physics": "Physics bekapcsolása",
+ "header": "Hálózati megjelenítés",
+ "highlight_label": "Eszközök kimemelése",
+ "refresh_topology": "Topológia frissítése",
+ "zoom_label": "Ráközelítés az ezközre"
+ }
+ },
+ "zone": {
+ "add_zone": "Zóna hozzáadása",
+ "caption": "Zónák",
+ "configured_in_yaml": "A configuration.yaml fájlban konfigurált zónák nem szerkeszthetők a felhasználói felületen.",
+ "confirm_delete": "Biztos benne, hogy törölni szeretné ezt a zónát?",
+ "create_zone": "Zóna létrehozása",
+ "description": "Azon zónák kezelése, ahol nyomon szeretné követni a személyeket",
+ "detail": {
+ "create": "Létrehozás",
+ "delete": "Törlés",
+ "icon": "Ikon",
+ "icon_error_msg": "Az ikonnak az \"előtag:ikonnév\" formátumban kell lennie, például: \"mdi:home\"",
+ "latitude": "Szélesség",
+ "longitude": "Hosszúság",
+ "name": "Név",
+ "new_zone": "Új zóna",
+ "passive": "Passzív",
+ "passive_note": "A passzív zónák nem láthatók a kezelőfelületen, és nem használják helyként az eszköz nyomkövetők sem. Ez akkor lehet hasznos, ha csak automatizmusokhoz szeretné őket használni.",
+ "radius": "Sugár",
+ "required_error_msg": "Ez a mező kötelező",
+ "update": "Frissítés"
+ },
+ "edit_home_zone": "Az otthoni zóna sugara egyelőre még nem szerkeszthető a kezelőfelületről. A mozgatásához húzza a jelölőt a térképen.",
+ "edit_home_zone_narrow": "Az otthoni zóna sugara egyelőre még nem szerkeszthető a kezelőfelületről. Az elhelyezkedése pedig az általános konfigurációnál módosítható.",
+ "edit_zone": "Zóna szerkesztése",
+ "go_to_core_config": "Ugrás az általános konfigurációra?",
+ "home_zone_core_config": "Az otthoni zóna elhelyezkedése az általános konfigurációnál módosítható. A sugara egyelőre még nem szerkeszthető a kezelőfelületről. Szeretne az általános konfigurációra ugrani?",
+ "introduction": "A zónák lehetővé tesznek bizonyos területek meghatározását a Földön. Ha egy személy egy zónán belül van, az állapota felveszi a zóna nevét. A zónák eseményindítóként vagy feltételként is használhatók automatizmusokban.",
+ "no_zones_created_yet": "Úgy tűnik, még nem hozott létre zónákat."
+ },
+ "zwave": {
+ "common": {
+ "index": "Index",
+ "instance": "Példány",
+ "unknown": "Ismeretlen",
+ "value": "Érték",
+ "wakeup_interval": "Ébresztési időköz"
+ },
+ "description": "Z-Wave hálózat kezelése",
+ "learn_more": "Tudjon meg többet a Z-Wave-ről",
+ "migration": {
+ "ozw": {
+ "header": "Áthelyezés az OpenZWave-re",
+ "introduction": "Ez a varázsló segít áttérni a régi Z-Wave integrációról az OpenZWave integrációra, amely jelenleg béta állapotban van."
+ },
+ "zwave_js": {
+ "header": "Áttérés Z-Wave JS-re",
+ "introduction": "Ezt az integrációt már nem tartjuk fenn, és azt javasoljuk, hogy térjen át az új Z-Wave JS-re. Ez a varázsló segít a régi Z-Wave integrációról az új Z-Wave JS integrációra való átmigrálásban."
+ }
+ },
+ "network_management": {
+ "header": "Z-Wave hálózat menedzsment",
+ "introduction": "Olyan parancsok futtatása, amelyek befolyásolják a Z-Wave hálózatot. Nem fog visszajelzést kapni arról, hogy a legtöbb parancs sikeres volt-e, de az OZW logok alapján megpróbálhatja kideríteni."
+ },
+ "network_status": {
+ "network_started": "Z-Wave hálózat elindult",
+ "network_started_note_all_queried": "Minden csomópont lekérdezésre került.",
+ "network_started_note_some_queried": "Az elérhető csomópontok le lettek kérdezve. Az alvó csomópontok akkor lesznek lekérdezve, ha elérhetővé válnak.",
+ "network_starting": "Z-Wave hálózat indítása…",
+ "network_starting_note": "Ez eltarthat egy ideig a hálózat méretétől függően.",
+ "network_stopped": "Z-Wave hálózat leállt"
+ },
+ "node_config": {
+ "config_parameter": "Konfigurációs paraméter",
+ "config_value": "Konfigurációs érték",
+ "false": "Hamis",
+ "header": "Csomópont konfigurációs beállítások",
+ "seconds": "másodperc",
+ "set_config_parameter": "Konfigurációs paraméter beállítása",
+ "set_wakeup": "Ébresztési időköz beállítása",
+ "true": "Igaz"
+ },
+ "node_management": {
+ "add_to_group": "Hozzáadás a csoporthoz",
+ "entities": "A csomópont entitásai",
+ "entity_info": "Entitás adatai",
+ "exclude_entity": "Entitás kizárása Home Assistantból",
+ "group": "Csoport",
+ "header": "Z-Wave csomópontkezelés",
+ "introduction": "Egyetlen csomópontot érintő Z-Wave parancsok futtatása: válasszon egy csomópontot az elérhető parancsok listájának megtekintéséhez.",
+ "max_associations": "Társítások maximális száma:",
+ "node_group_associations": "Csomópontcsoport-társítások",
+ "node_protection": "Csomópont védelem",
+ "node_to_control": "Vezérelni kívánt csomópont",
+ "nodes": "Csomópontok",
+ "nodes_hint": "Válasszon csomópontot a csomópontonkénti opciók megtekintéséhez",
+ "nodes_in_group": "További csomópontok ebben a csoportban:",
+ "pooling_intensity": "Lekérdezés gyakorisága",
+ "protection": "Védelem",
+ "remove_broadcast": "A Broadcast eltávolítása",
+ "remove_from_group": "Eltávolítás a csoportból",
+ "set_protection": "Védelem beállítása"
+ },
+ "ozw_log": {
+ "header": "OZW napló",
+ "introduction": "Napló megtekintése. 0 a minimum (a teljes naplót betölti) és 1000 a maximum. A betöltés statikus naplót jelenít meg, és a vége automatikusan frissül a napló utolsó meghatározott számú sorával.",
+ "last_log_lines": "Az utolsó naplósorok száma",
+ "load": "Betöltés",
+ "tail": "Vége"
+ },
+ "services": {
+ "add_node": "Csomópont hozzáadása",
+ "add_node_secure": "Biztonságos csomópont hozzáadása",
+ "cancel_command": "Parancs megszakítása",
+ "heal_network": "Hálózati struktúra feltérképezése",
+ "heal_node": "Csomópont élesztése",
+ "node_info": "Csomópont információ",
+ "print_node": "Nyomtatási csomópont",
+ "refresh_entity": "Entitás frissítése",
+ "refresh_node": "Csomópont frissítése",
+ "remove_failed_node": "Sikertelen csomópont eltávolítása",
+ "remove_node": "Csomópont eltávolítása",
+ "replace_failed_node": "Sikertelen csomópont cseréje",
+ "save_config": "Konfiguráció mentése",
+ "soft_reset": "Soft Reset",
+ "start_network": "Hálózat indítása",
+ "stop_network": "Hálózat leállítása",
+ "test_network": "Hálózat tesztelése",
+ "test_node": "Teszt csomópont"
+ },
+ "values": {
+ "header": "Csomópont értékek"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Befogadás megszakítása",
+ "check_logs": "További információkért kérem, ellenőrizze a naplókat.",
+ "choose_inclusion_strategy": "Hogyan szeretné hozzáadni az eszközt",
+ "controller_in_inclusion_mode": "A Z-Wave vezérlője most már befogadási módban van.",
+ "enter_qr_code": "QR-kód érték megadása",
+ "follow_device_instructions": "Kövesse az eszközhöz kapott utasításokat a párosítás elindításához az eszközön.",
+ "inclusion_failed": "A csomópont nem adható hozzá.",
+ "inclusion_finished": "A csomópont hozzá lett adva.",
+ "interview_failed": "Az eszközinterjú nem sikerült. További információk elérhetők a naplókban.",
+ "interview_started": "A készülékkel interjút készítenek. Ez eltarthat egy ideig.",
+ "introduction": "Ez a varázsló végigvezeti Önt egy csomópont hozzáadásán a Z-Wave-hálózathoz.",
+ "provisioning_finished": "Az eszköz hozzá lett adva. Amint bekapcsolja, elérhető lesz.",
+ "qr_code": "QR-kód",
+ "qr_code_paragraph": "Ha az eszköze támogatja a SmartStartot, akkor a QR-kód beolvasásával egyszerűen elvégezheti a párosítást.",
+ "scan_qr_code": "QR-kód beolvasása",
+ "searching_device": "Eszköz keresése",
+ "secure_inclusion_warning": "A biztonságos eszközök további sávszélességet igényelnek; túl sok biztonságos eszköz lelassíthatja a Z-Wave hálózatot. Javasoljuk, hogy csak biztonságos beépítést alkalmazzon olyan eszközökhöz, amelyek ezt igénylik, például zárakhoz vagy garázskapu nyitókhoz.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Például: Klasszikus ajtózárak S2 támogatás nélkül",
+ "title": "Klasszikus S0"
+ },
+ "S2_AccessControl": {
+ "description": "Például: Ajtózárak és garázsajtók",
+ "title": "S2 Hozzáférés kontroll"
+ },
+ "S2_Authenticated": {
+ "description": "Például: Világítás, érzékelők és biztonsági rendszerek",
+ "title": "Hitelesített S2"
+ },
+ "S2_Unauthenticated": {
+ "description": "Mint a hitelesített S2, de a megfelelő eszköz meglétének ellenőrzése nélkül.",
+ "title": "S2 Nem hitelesített"
+ }
+ },
+ "select_camera": "Kamera kiválasztása",
+ "start_inclusion": "Indítsa el a befogadást",
+ "start_secure_inclusion": "Indítsa el a biztonságos befogadást",
+ "title": "Adjon hozzá egy Z-Wave csomópontot",
+ "use_secure_inclusion": "Használja a biztonságos befogadást",
+ "view_device": "Eszköz megtekintése"
+ },
+ "common": {
+ "add_node": "Csomópont hozzáadása",
+ "back": "Vissza",
+ "close": "Bezárás",
+ "heal_network": "Z-Wave gyógyítása",
+ "home_id": "Otthon azonosító",
+ "network": "Hálózat",
+ "node_id": "Csomópont azonosító",
+ "reconfigure_server": "Kiszolgáló újrakonfigurálása",
+ "remove_node": "Csomópont eltávolítása",
+ "source": "Forrás"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n one {eszköz}\n other {eszköz}\n}",
+ "driver_version": "Illesztőprogram verzió",
+ "dump_dead_nodes_text": "Néhány csomópont nem válaszolt, ezért feltételezhetően már nem működnek. Ezek nem lesznek bent teljes mértékben az exportban.",
+ "dump_dead_nodes_title": "Néhány csomópont nem ad életjelet",
+ "dump_debug": "Adatok letöltése",
+ "dump_not_ready_confirm": "Letöltés",
+ "dump_not_ready_text": "Ha exportálást hoz létre, miközben nem minden csomópont áll készen, akkor hiányozhat szükséges adat. Adjon egy kis időt a hálózatának az összes csomópont lekérdezésére. Folytatja az exportálást?",
+ "dump_not_ready_title": "Még nem minden csomópont áll készen",
+ "header": "Kezelje Z-Wave hálózatát",
+ "home_id": "Otthon azonosító",
+ "introduction": "A Z-Wave hálózat és a Z-Wave csomópontok kezelése",
+ "nodes_ready": "Csomópontok készen állnak",
+ "not_ready": "{count} nem áll készen",
+ "provisioned_devices": "Üzembe állított eszközök",
+ "server_url": "Kiszolgáló URL címe",
+ "server_version": "Szerver verzió"
+ },
+ "device_info": {
+ "device_config": "Eszköz beállítása",
+ "heal_node": "Eszköz gyógyítása",
+ "highest_security": "Legmagasabb biztonság",
+ "is_secure": "Biztonságos",
+ "node_ready": "Csomópont készen áll",
+ "node_status": "Csomópont állapota",
+ "reinterview_device": "Újbóli interjú eszközzel",
+ "remove_failed": "Sikertelen az eszköz eltávolítása",
+ "unknown": "Ismeretlen",
+ "zwave_info": "Z-Wave infó",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "{verzió}. verzió"
+ },
+ "heal_network": {
+ "healing_cancelled": "A hálózati gyógyítás megszakadt.",
+ "healing_complete": "A hálózat gyógyulása befejeződött.",
+ "healing_failed": "A gyógyulás nem sikerült. További információk elérhetők a naplókban.",
+ "in_progress": "A hálózat gyógyítása folyamatban van. Ez eltart egy ideig.",
+ "introduction": "Indítson hálózati gyógyítást a Z-Wave hálózatán. A hálózati helyreállítás hatására az összes eszköz újraszámolja az útvonalat a vezérlőhöz, ez akkor ajánlott, ha nemrég elköltöztetett eszközöket vagy vezérlőt.",
+ "run_in_background": "Bezárhatja ezt a párbeszédpanelt, és a hálózati helyreállítás a háttérben folytatódik.",
+ "start_heal": "Kezdje a gyógyítást",
+ "stop_heal": "A gyógyulás leállítása",
+ "title": "Gyógyítsa meg Z-Wave hálózatát",
+ "traffic_warning": "A gyógyulási folyamat nagy mennyiségű forgalmat generál a Z-Wave hálózaton. Ez azt eredményezheti, hogy az eszközök lassan reagálnak (vagy egyáltalán nem reagálnak), amíg a gyógyítás folyamatban van."
+ },
+ "heal_node": {
+ "healing_complete": "{device} meggyógyítva.",
+ "healing_failed": "{device} nem gyógyítható.",
+ "healing_failed_check_logs": "További információ elérhető a naplókban.",
+ "in_progress": "{device} gyógyítása folyamatban van.",
+ "introduction": "Kérje a {device}-t hogy frissítse útvonalait a vezérlőhöz. Ez segíthet a kommunikációs problémák megoldásában, ha nemrégiben áthelyezte az eszközt vagy a vezérlőt.",
+ "network_heal_in_progress": "A Z-Wave hálózat gyógyítása már folyamatban van. Kérem, várja meg, amíg befejeződik, mielőtt meggyógyítaná az egyes eszközöket.",
+ "start_heal": "Eszköz gyógyítása",
+ "title": "Gyógyítson meg egy Z-Wave készüléket",
+ "traffic_warning": "A gyógyulási folyamat nagy mennyiségű forgalmat generál a Z-Wave hálózaton. Ez azt eredményezheti, hogy az eszközök lassan reagálnak (vagy egyáltalán nem reagálnak), amíg a gyógyítás folyamatban van."
+ },
+ "logs": {
+ "download_logs": "Naplók letöltése",
+ "log_level": "Naplószint",
+ "log_level_changed": "A naplószint megváltozott erre: {level}",
+ "subscribed_to_logs": "Feliratkozott a Z-Wave JS naplóüzenetekre …",
+ "title": "Z-Wave JS naplók"
+ },
+ "navigation": {
+ "logs": "Naplók",
+ "network": "Hálózat"
+ },
+ "network_status": {
+ "connected": "Csatlakoztatva",
+ "connecting": "Csatlakozás",
+ "unknown": "Ismeretlen"
+ },
+ "node_config": {
+ "attribution": "Az eszközkonfigurációs paramétereket és leírásokat az {device_database}",
+ "battery_device_notice": "Az elemes eszközöknek ébren kell lenniük a konfigurációjuk frissítéséhez. Kérjük, olvassa el a készülék kézikönyvét az eszköz felébresztésére vonatkozó utasításokért.",
+ "error_device_not_found": "Az eszköz nem található",
+ "header": "Z-Wave eszköz konfigurálása",
+ "introduction": "Az eszköz (csomópont) specifikus konfigurációs paramétereinek kezelése és módosítása a kiválasztott eszközhöz",
+ "parameter": "Paraméter",
+ "parameter_is_read_only": "Ez a paraméter csak olvasható",
+ "set_param_accepted": "A paraméter frissült.",
+ "set_param_error": "Hiba történt.",
+ "set_param_queued": "A paraméterváltás várakozási sorba került, és frissülni fog, amikor az eszköz felébred.",
+ "zwave_js_device_database": "Z-Wave JS eszközadatbázis"
+ },
+ "node_status": {
+ "alive": "Életben",
+ "asleep": "Alvásban",
+ "awake": "Ébren",
+ "dead": "Nem ad életjelet",
+ "unknown": "Ismeretlen"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "Ha üzemen kívülre helyezi az eszközt, akkor az nem kerül a Home Assistant rendszerébe, amikor be lesz kapcsovla. Ha a készülék már hozzá van adva a rendszerhez, akkor a üzembe helyezett eszköz eltávolítása nem fogja eltávolítani a rendszerből.",
+ "confirm_unprovision_title": "Biztos benne, hogy üzemen kívülre helyezi az eszközt?",
+ "dsk": "DSK",
+ "included": "Tartalmazva",
+ "not_included": "Nem tartalmazva",
+ "security_classes": "Biztonsági osztályok",
+ "unprovison": "Üzemen kívülre helyezés"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "Az újratesztelés megkezdése előtt fel kell ébresztenie az elemmel működő eszközöket. A készülék ébresztésére vonatkozó utasításokat az eszköz kézikönyvében találja.",
+ "in_progress": "A készülékkel interjút készítenek. Ez eltarthat egy ideig.",
+ "interview_complete": "Készülék interjú befejezve.",
+ "interview_failed": "Az eszközinterjú nem sikerült. További információk elérhetők a naplókban.",
+ "introduction": "Egy eszköz újrainterjúvolása a Z-Wave hálózaton. Használja ezt a funkciót, ha az eszközének hiányzik vagy hibás funkciója van.",
+ "run_in_background": "Bezárhatja ezt a párbeszédpanelt, az interjú a háttérben folytatódik.",
+ "start_reinterview": "Újbóli interjú megkezdése",
+ "title": "Z-Wave készülék újrainterjúvolása"
+ },
+ "remove_failed_node": {
+ "in_progress": "A készülék eltávolítása folyamatban van.",
+ "introduction": "Távolítsa el a meghibásodott eszközt a Z-Wave hálózatból. Használja ezt, ha nem tudja megfelelően kizárni az eszközt, mert meghibásodott.",
+ "removal_failed": "Az eszközt nem lehetett eltávolítani a Z-Wave hálózatból.",
+ "removal_finished": "{id} csomópont eltávolítva az Ön Z-Wave hálózatából.",
+ "remove_device": "Eszköz eltávolítása",
+ "title": "Távolítsa el a meghibásodott Z-Wave eszközt"
+ },
+ "remove_node": {
+ "cancel_exclusion": "A kizárás megszakítása",
+ "controller_in_exclusion_mode": "A Z-Wave vezérlő most kizárási módban van.",
+ "exclusion_failed": "A csomópont nem távolítható el. Kérjük, ellenőrizze a naplókat további információkért.",
+ "exclusion_finished": "{id} csomópont el lett távolítva a Z-Wave hálózatból.",
+ "follow_device_instructions": "Kövesse az eszközhöz kapott utasításokat, hogy kizárja az eszközt.",
+ "introduction": "Távolítson el egy csomópontot a Z-Wave hálózatból, és távolítsa el a társított eszközt és entitásokat a Home Assistant alkalmazásból.",
+ "start_exclusion": "Kizárás indítása",
+ "title": "Z-Wave csomópont eltávolítása"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Nincs"
+ },
+ "S0_Legacy": {
+ "description": "Például: Klasszikus ajtózárak S2 támogatás nélkül",
+ "title": "Klasszikus S0"
+ },
+ "S2_AccessControl": {
+ "description": "Például: Ajtózárak és garázsajtók",
+ "title": "S2 Hozzáférés kontroll"
+ },
+ "S2_Authenticated": {
+ "description": "Például: Világítás, érzékelők és biztonsági rendszerek",
+ "title": "Hitelesített S2"
+ },
+ "S2_Unauthenticated": {
+ "description": "Mint a hitelesített S2, de a megfelelő eszköz meglétének ellenőrzése nélkül.",
+ "title": "S2 hitelesítés nélkül"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Hozzáférést fog kapni Home Assistant összes adatához.",
+ "hide_message": "Ellenőrizze a panel_custom komponens dokumentációját ennek az üzenetnek az elrejtéséhez",
+ "question_trust": "Megbízik {name} külső panelben a következő linken: {link}?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Aktív hallgatók",
+ "alert_event_type": "Az esemény típusa kötelező mező",
+ "available_events": "Elérhető események",
+ "count_listeners": " ({count} figyelő)",
+ "data": "Esemény adatai (YAML, opcionális)",
+ "description": "Esemény meghívása az esemény buszon.",
+ "documentation": "Események dokumentációja",
+ "event_fired": "{name} esemény meg lett hívva",
+ "fire_event": "Esemény meghívása",
+ "listen_to_events": "Események figyelése",
+ "listening_to": "Figyelés:",
+ "notification_event_fired": "{type} esemény sikeresen meghívva!",
+ "start_listening": "Figyelés indítása",
+ "stop_listening": "Figyelés befejezése",
+ "subscribe_to": "Feliratkozás eseményre",
+ "title": "Események",
+ "type": "Esemény típusa"
+ },
+ "services": {
+ "accepts_target": "Ez a szolgáltatás elfogad egy célt, például: `entity_id: light.haloszoba`",
+ "all_parameters": "Minden rendelkezésre álló paraméter",
+ "call_service": "Szolgáltatás meghívása",
+ "column_description": "Leírás",
+ "column_example": "Példa",
+ "column_parameter": "Paraméter",
+ "description": "A szolgáltatás tesztelő eszköz lehetővé teszi bármely Home Assistantban rendelkezésre álló szolgáltatás kézi meghívását.",
+ "fill_example_data": "Kitöltés példaadatokkal",
+ "no_template_ui_support": "A felhasználói felület nem támogatja a sablonokat, továbbra is használhatja a YAML szerkesztőt.",
+ "title": "Szolgáltatások",
+ "ui_mode": "Ugrás a felhasználói felület módra",
+ "yaml_mode": "Váltás YAML módra",
+ "yaml_parameters": "A paraméterek csak YAML módban érhetők el"
+ },
+ "states": {
+ "alert_entity_field": "Az entitás kötelező mező",
+ "attributes": "Attribútumok",
+ "copy_id": "Azonosító vágólapra másolása",
+ "current_entities": "Jelenlegi entitások",
+ "description1": "Egy entitás állapotának beállítása Home Assistantban.",
+ "description2": "Ha az entitás egy valódi eszközhöz tartozik, tényleges kommunikáció nem fog történni vele.",
+ "entity": "Entitás",
+ "filter_attributes": "Attribútumok szűrése",
+ "filter_entities": "Entitások szűrése",
+ "filter_states": "Állapotok szűrése",
+ "last_changed": "Utoljára módosult",
+ "last_updated": "Utoljára frissült",
+ "more_info": "Bővebben...",
+ "no_entities": "Nincs entitás",
+ "set_state": "Állapot beállítása",
+ "state": "Állapot",
+ "state_attributes": "Aktuális attribútumok (YAML, opcionális)",
+ "title": "Állapotok"
+ },
+ "statistics": {
+ "entity": "Entitás",
+ "fix_issue": {
+ "fix": "Hibajavítás",
+ "units_changed": {
+ "clear": "Az entitás összes régebbi statisztikai adatának törlése",
+ "fix": "Hibajavítás",
+ "title": "Az entitás mértékegysége megváltozott",
+ "update": "A korábbi statisztikai értékek frissítése ''{metadata_unit}''-ról ''{state_unit}''-re."
+ }
+ },
+ "issue": "Hiba",
+ "issues": {
+ "entity_no_longer_recorded": "Ez az entitás nincs többé naplózva.",
+ "entity_not_recorded": "Ez az entitás nincs naplózva.",
+ "no_state": "Ennek az entitásnak nincs elérhető állapota.",
+ "units_changed": "Ezen entitás mértékegysége ''{metadata_unit}'''-ról ''{state_unit}'-ra változott.",
+ "unsupported_state_class": "Ezen entitás ''{state_class}'' állapotosztálya nem támogatott.",
+ "unsupported_unit": "Ezen entitás mértékegysége (\"{state_unit}\") nem egyezik meg a ''{device_class}\" eszközosztály mértékegységével.",
+ "unsupported_unit_metadata": "A naplózott statisztika mértékegysége (''{metadata_unit}'') nem egyezik az eszközosztály ''{device_class}'' támogatott mértékegységével ''{supported_unit}''.",
+ "unsupported_unit_state": "Ezen entitás mértékegysége (''{state_unit}'') nem egyezik az eszközosztály mértékegységével (\"{device_class}\")."
+ },
+ "no_issue": "Nincs hiba",
+ "title": "Statisztikák"
+ },
+ "templates": {
+ "all_listeners": "Ez a sablon az összes állapotváltozási eseményre figyel.",
+ "description": "A sablonok a Jinja2 sablonmotor és néhány Home Assistant specifikus bővítmény segítségével kerülnek kiértékelésre.",
+ "domain": "Tartomány",
+ "editor": "Sablonszerkesztő",
+ "entity": "Entitás",
+ "jinja_documentation": "Jinja2 sablon dokumentáció",
+ "listeners": "Ez a sablon a következő állapotváltozási eseményeket figyeli:",
+ "no_listeners": "Ez a sablon nem figyel semmilyen eseményre, és ezért nem frissül automatikusan.",
+ "reset": "Példa sablon visszaállítása",
+ "result_type": "Eredmény típusa",
+ "template_extensions": "Home Assistant sablon bővítmények",
+ "time": "Ez a sablon minden perc kezdetekor frissül.",
+ "title": "Sablon",
+ "unknown_error_template": "Ismeretlen hiba a sablon kiértékelésekor"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Egyedi eszközök figyelése",
+ "energy_distribution_title": "Energia áramlás",
+ "energy_gas_graph_title": "Gázfogyasztás",
+ "energy_solar_graph_title": "Napenergia-termelés",
+ "energy_sources_table_title": "Források",
+ "energy_usage_graph_title": "Energiafelhasználás"
+ },
+ "charts": {
+ "by_device": "Eszköz szerinti fogyasztás",
+ "solar": "Nap",
+ "stat_house_energy_meter": "Teljes energiafogyasztás"
+ },
+ "setup": {
+ "back": "Vissza",
+ "done": "Mutassa az energia irányítópultot!",
+ "next": "Következő"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Ezt a funkciót csak akkor használhatja, ha átvette a Lovelace felhasználói felület kézi irányítását.",
+ "saving_failed": "A Lovelace felhasználói felület beállításának mentése sikertelen.",
+ "yaml_unsupported": "Ez a funkció nem elérhető, ha a Lovelace felhasználói felületet YAML módban használja."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Biztos benne, hogy futtatni szeretné ezt a műveletet: \"{action}\"?",
+ "no_entity_more_info": "A további információkhoz nincs megadva entitás",
+ "no_entity_toggle": "A kapcsoláshoz nincs megadva entitás",
+ "no_navigation_path": "Nincs megadva navigációs útvonal",
+ "no_service": "Nincs megadva futtatandó szolgáltatás",
+ "no_url": "Nincs megadva megnyitandó URL"
+ },
+ "confirm_delete": "Biztos benne, hogy törölni szeretné ezt a kártyát?",
+ "empty_state": {
+ "go_to_integrations_page": "Ugrás az 'integrációk' oldalra.",
+ "no_devices": "Ez az oldal lehetővé teszi az eszközeinek vezérlését, de úgy tűnik, hogy még nincs beállítva egy sem. A kezdéshez lépjen át az integrációs oldalra.",
+ "title": "Üdv Itthon"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "Ez a kártya jelzi, hogy az otthonában felhasznált energia mekkora részét állították elő nem fosszilis tüzelőanyagokból, például nap-, szél- és nukleáris energiából. Minél magasabb, annál jobb!",
+ "non_fossil_energy_consumed": "Elfogyasztott nem fosszilis energia",
+ "non_fossil_energy_not_calculated": "Az elfogyasztott nem fosszilis energiát nem lehet kiszámítani."
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Energiafelhasználás"
+ },
+ "energy_distribution": {
+ "battery": "Akkumulátor",
+ "gas": "Gáz",
+ "go_to_energy_dashboard": "Tovább az energia műszerfalra",
+ "grid": "Hálózat",
+ "home": "Otthon",
+ "non_fossil": "Nem fosszilis",
+ "solar": "Nap",
+ "title_today": "Energia áramlás - ma"
+ },
+ "energy_solar_graph": {
+ "forecast": "{name} előrejelzés",
+ "production": "{name} termelés"
+ },
+ "energy_sources_table": {
+ "battery_total": "Akkumulátor összesen",
+ "cost": "Költség",
+ "energy": "Energia",
+ "grid_total": "Vételezett összesen",
+ "source": "Forrás",
+ "total_costs": "Összköltség"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Összevetve, hálózatból",
+ "consumed_battery": "Fogyasztva akkumulátorból",
+ "consumed_solar": "Fogyasztott napenergia",
+ "total_consumed": "Össz vételezett {num} kWh",
+ "total_returned": "Össz visszatáplált {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Ha lilában van a mutató, az azt jelenti, hogy több energiát táplált vissza a hálózatba, mint amennyit vételezett onnan. Ha kékben van, az azt jelenti, hogy több energiát vételezett mint amennyit visszatáplált.",
+ "energy_dependency": "Ez a kártya az energiafüggőséget jelzi.",
+ "grid_neutrality_not_calculated": "Az energiafüggőséget nem lehet kiszámítani",
+ "net_consumed_grid": "A hálózatból vételezett nettó",
+ "net_returned_grid": "A hálózatba visszatáplált nettó",
+ "red_green_color_explain": "Ha zöldben van a mutató, az azt jelenti, hogy több energiát termelt, mint amennyit a hálózatból fogyasztott. Ha pirosban van, az azt jelenti, hogy otthona energiafogyasztásának egy részét a hálózatból kellett vételeznie."
+ },
+ "loading": "Betöltés...",
+ "no_data": "Nincs megjeleníthető adat. Akár 2 órát is igénybe vehet, amíg az új adatok megjelennek az energia műszerfalán.",
+ "no_data_period": "Erre az időszakra vonatkozóan nincs adat.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "Ez a kártya azt jelzi, hogy a termelt napenergia mekkora részét használta fel az otthona ahelyett, hogy a hálózatba táplálta volna vissza.",
+ "card_indicates_solar_energy_used_charge_home_bat": "Ha ez a szám jellemzően nagyon alacsony - ami a napenergia többlettermelését jelzi - érdemes megfontolni, hogy a magas napenergia-termelés idején a napelemekről töltsön egy akkumulátor rendszert vagy elektromos autót.",
+ "not_produced_solar_energy": "Semennyi napenergiát nem termelt",
+ "self_consumed_solar_could_not_calc": "A saját fogyasztású napenergiát nem lehet kiszámítani",
+ "self_consumed_solar_energy": "Saját fogyasztású napenergia"
+ }
+ },
+ "entities": {
+ "never_triggered": "Még nem volt triggerelve"
+ },
+ "iframe": {
+ "error_secure_context": "Nem lehet betölteni a {target_protocol} protokollt használó webhelyekre mutató iframe-eket, hogyha Home Assistant kezelőfelülete a {context_protocol} protokollon keresztül van kiszolgálva."
+ },
+ "map": {
+ "reset_focus": "Fókusz visszaállítása"
+ },
+ "picture-elements": {
+ "call_service": "Szolgáltatás meghívása {name}",
+ "hold": "Tartás:",
+ "more_info": "További infók megjelenítése: {name}",
+ "navigate_to": "Ugrás {location}",
+ "tap": "Koppintás:",
+ "toggle": "{name} kapcsolás",
+ "url": "Ablak megnyitása: {url_path}"
+ },
+ "safe-mode": {
+ "description": "Home Assistant konfigurációjának betöltése során problémába ütközött, ezért most csökkentett módban fut. Vessen egy pillantást a hibanaplóra, hogy megtudhassa, mi romlott el.",
+ "header": "Csökkentett mód aktiválva"
+ },
+ "shopping-list": {
+ "add_item": "Tétel hozzáadása",
+ "checked_items": "Bejelölt tételek",
+ "clear_items": "Bejelölt tételek törlése",
+ "drag_and_drop": "Húzás",
+ "reorder_items": "Tételek átrendezése"
+ },
+ "show_more_info": "Bővebb információ megjelenítése",
+ "starting": {
+ "description": "Home Assistant indítása folyamatban van, kérem, várjon..."
+ }
+ },
+ "changed_toast": {
+ "message": "Az ehhez az irányítópulthoz tartozó Lovelace konfiguráció módosítva lett. Frissítsük most az aktualizáláshoz?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Nap",
+ "month": "Hónap",
+ "next": "Következő",
+ "previous": "Előző",
+ "today": "Ma",
+ "week": "Hét",
+ "year": "Év"
+ },
+ "timestamp-display": {
+ "invalid": "Érvénytelen időbélyeg",
+ "invalid_format": "Érvénytelen megjelenítési formátum"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Szolgáltatás meghívása",
+ "default_action": "Alapértelmezett művelet",
+ "more-info": "Bővebb infók panel",
+ "navigate": "Navigál",
+ "none": "Nincs művelet",
+ "toggle": "Kapcsolás",
+ "url": "URL"
+ },
+ "navigation_path": "Navigációs útvonal",
+ "url_path": "URL elérési út"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Rendelkezésre álló állapotok",
+ "description": "A Riasztópanel kártya riasztóközpont integrációk élesítését és hatástalanítását teszi lehetővé.",
+ "name": "Riasztópanel"
+ },
+ "area": {
+ "description": "A Terület kártya automatikusan megjeleníti egy adott terület entitásait.",
+ "name": "Terület",
+ "show_camera": "Kamerakép megjelenítése terület ábra helyett"
+ },
+ "button": {
+ "default_action_help": "Az alapértelmezett művelet az entitás képességeitől függ, az entitás vagy kapcsolni fog vagy több információ fog megjelenni.",
+ "description": "A Gomb kártya gombok hozzáadását teszi lehetővé feladatok végrehajtásához.",
+ "name": "Gomb"
+ },
+ "calendar": {
+ "calendar_entities": "Naptár entitások",
+ "description": "A Naptár kártya egy olyan naptárat jelenít meg, mely a nap-, hét- és listanézetekkel rendelkezik",
+ "inital_view": "Kezdeti nézet",
+ "name": "Naptár",
+ "views": {
+ "dayGridDay": "Nap",
+ "dayGridMonth": "Hónap",
+ "listWeek": "Lista"
+ }
+ },
+ "conditional": {
+ "card": "Kártya",
+ "change_type": "Típus módosítása",
+ "condition_explanation": "A kártya akkor jelenik meg, ha az alábbi feltételek mindegyike teljesül.",
+ "conditions": "Feltételek",
+ "current_state": "jelenlegi",
+ "description": "A Feltételes kártya egy másik kártyát jelenít meg entitások állapotától függően.",
+ "name": "Feltételes",
+ "state_equal": "Az állapot egyenlő",
+ "state_not_equal": "Az állapot nem egyenlő"
+ },
+ "config": {
+ "optional": "opcionális",
+ "required": "Szükséges"
+ },
+ "entities": {
+ "description": "Az Entitások kártya a legalapvetőbb kártya. Az elemeket listákba csoportosítja.",
+ "edit_special_row": "A sor részleteinek megtekintése a Szerkesztés gombra kattintva",
+ "entity_row": {
+ "attribute": "Attribútum",
+ "button": "Gomb",
+ "buttons": "Gombok",
+ "call-service": "Szolgáltatás meghívása",
+ "cast": "Cast",
+ "conditional": "Feltételes",
+ "divider": "Elválasztó",
+ "section": "Szakasz",
+ "weblink": "Webes hivatkozás"
+ },
+ "entity_row_editor": "Entitássor szerkesztő",
+ "name": "Entitások",
+ "secondary_info_values": {
+ "brightness": "Fényerő",
+ "entity-id": "Entitás ID",
+ "last-changed": "Utoljára módosult",
+ "last-triggered": "Utoljára aktiválva",
+ "last-updated": "Utoljára frissült",
+ "none": "Nincs másodlagos információ",
+ "position": "Helyzet",
+ "tilt-position": "Döntési pozíció"
+ },
+ "show_header_toggle": "Fejléc kapcsoló megjelenítése?",
+ "special_row": "speciális sor",
+ "toggle": "Entitások kapcsolása."
+ },
+ "entity-filter": {
+ "description": "Az Entitásszűrő kártya lehetővé teszi azon entitások kilistázását, amelyek éppen egy bizonyos állapotban vannak.",
+ "name": "Entitás szűrő"
+ },
+ "entity": {
+ "description": "Az Entitás kártya gyors áttekintést nyújt az entitás állapotáról.",
+ "name": "Entitás"
+ },
+ "gauge": {
+ "description": "A Mérőműszer kártya egy alapkártya, amely lehetővé teszi az érzékelők adatainak vizuális megtekintését.",
+ "name": "Műszer",
+ "needle_gauge": "Megjelenítés analóg műszerként?",
+ "severity": {
+ "define": "Súlyosság meghatározása?",
+ "green": "Zöld",
+ "red": "Piros",
+ "yellow": "Sárga"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Oldalarány",
+ "attribute": "Attribútum",
+ "camera_image": "Kamera entitás",
+ "camera_view": "Kamera nézet",
+ "days_to_show": "Megjelenítendő napok",
+ "double_tap_action": "Dupla koppintási művelet",
+ "entities": "Entitások",
+ "entity": "Entitás",
+ "hold_action": "Tartási művelet",
+ "hours_to_show": "Megjelenítendő órák",
+ "icon": "Ikon",
+ "icon_height": "Ikon magassága",
+ "image": "Kép elérési útja",
+ "manual": "Manuális",
+ "manual_description": "Egyéni kártyát szeretne hozzáadni, vagy csak manuálisan szeretné megírni a YAML-t?",
+ "maximum": "Maximum",
+ "minimum": "Minimum",
+ "name": "Név",
+ "no_theme": "Nincs téma",
+ "refresh_interval": "Frissítési időköz",
+ "search": "Keresés",
+ "secondary_info_attribute": "Másodlagos információ attribútum",
+ "show_icon": "Ikon megjelenítése?",
+ "show_name": "Név megjelenítése?",
+ "show_state": "Állapot megjelenítése?",
+ "state": "Állapot",
+ "state_color": "Színes ikonok állapot alapján?",
+ "tap_action": "Koppintási művelet",
+ "theme": "Téma",
+ "title": "Név",
+ "unit": "Egység",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Oszlopok",
+ "description": "A Pillantás kártyával több érzékelő csoportosítható egy kompakt áttekintő nézetbe.",
+ "name": "Pillantás"
+ },
+ "grid": {
+ "columns": "Oszlopok",
+ "description": "A Rács kártya lehetővé teszi több kártya megjelenítését egy rácsban.",
+ "name": "Rács",
+ "square": "Kártyák megjelenítése négyzetként"
+ },
+ "history-graph": {
+ "description": "Az Előzmény grafikon kártya lehetővé teszi az entitások múltbeli értékeinek grafikus megjelenítését.",
+ "name": "Előzmény grafikon"
+ },
+ "horizontal-stack": {
+ "description": "A Vízszintes Készlet kártya lehetővé teszi több kártya egymás mellé rendezését egy oszlopon belül.",
+ "name": "Vízszintes Készlet"
+ },
+ "humidifier": {
+ "description": "A Párásító kártyával a párásító berendezés entitások vezérelhetők. Lehetővé teszi a páratartalom, illetve a mód megváltoztatását.",
+ "name": "Párásító"
+ },
+ "iframe": {
+ "description": "A Weblap kártya lehetővé teszi a kedvenc weboldalának beágyazását Home Assistantba.",
+ "name": "Weboldal"
+ },
+ "light": {
+ "description": "A Világítás kártya lehetővé teszi a fényerő megváltoztatását.",
+ "name": "Világítás"
+ },
+ "logbook": {
+ "description": "A Napló kártya az entitások eseményeinek listáját jeleníti meg.",
+ "name": "Napló"
+ },
+ "map": {
+ "dark_mode": "Sötét mód?",
+ "default_zoom": "Alapértelmezett nagyítás",
+ "description": "A Térkép kártya entitások térképen való megjelenítését teszi lehetővé.",
+ "geo_location_sources": "Helylokáció forrásai",
+ "hours_to_show": "Megjelenítendő órák",
+ "name": "Térkép",
+ "source": "Forrás"
+ },
+ "markdown": {
+ "content": "Tartalom",
+ "description": "A Markdown kártya a Markdown szintaxisú szövegek megjelenítésére szolgál.",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "description": "A Média Vezérlő kártya a médialejátszó entitások megjelenítésére szolgál egy könnyen használható vezérlővel rendelkező felületen.",
+ "name": "Médiavezérlés"
+ },
+ "picture-elements": {
+ "description": "A Képelemek kártya az egyik legsokoldalúbb kártya. Lehetővé teszi, hogy ikonokat, szöveget vagy akár szolgáltatásokat helyezzen el egy koordinátákon alapuló képen!",
+ "name": "Kép elemek"
+ },
+ "picture-entity": {
+ "description": "A Képentitás kártya kép formájában jelenít meg egy entitást. Az URL-ből származó képek helyett, akár a kameraentitások képét is meg tudja jeleníteni.",
+ "name": "Kép entitás"
+ },
+ "picture-glance": {
+ "description": "A Kép Pillantás kártya egy képet és meghatározott entitások állapotát ikonként jeleníti meg. A jobb oldali entitások lehetővé teszik a műveletek végrehajtását, a többi pedig a Bővebb infók párbeszédpanelt nyitja meg.",
+ "name": "Kép pillantás",
+ "state_entity": "Állapot entitás"
+ },
+ "picture": {
+ "description": "A Képkártya lehetővé teszi, hogy beállítson egy képet hivatkozásként a felületen való navigáláshoz, vagy hogy meghívjon egy szolgáltatást.",
+ "name": "Kép"
+ },
+ "plant-status": {
+ "description": "A Növényállapot kártya az összes kedves botanikus számára készült.",
+ "name": "Növény állapota"
+ },
+ "sensor": {
+ "description": "Az Érzékelő kártya gyors áttekintést nyújt az érzékelők állapotáról egy opcionális grafikon segítségével, amely az időbeli változásokat szemlélteti.",
+ "graph_type": "Grafikon típusa",
+ "name": "Érzékelő",
+ "show_more_detail": "További részletek megjelenítése"
+ },
+ "shopping-list": {
+ "description": "A Bevásárló lista kártya lehetővé teszi, hogy tételeket vegyen fel, szerkessze, pipálja ki, és törölje a bevásárlólistádról.",
+ "integration_not_loaded": "Ez a kártya megköveteli a `shopping_list` integráció beállítását.",
+ "name": "Bevásárló lista"
+ },
+ "statistics-graph": {
+ "description": "A statisztikai grafikon kártya lehetővé teszi grafikon megjelenítését a felsorolt entitások statisztikáiról.",
+ "name": "Statisztikai grafikon",
+ "period": "Időszak",
+ "periods": {
+ "5minute": "5 perc",
+ "day": "Nap",
+ "hour": "Óra",
+ "month": "Hónap"
+ }
+ },
+ "thermostat": {
+ "description": "A Termosztát kártyával a hűtő/fűtő berendezés entitások vezérelhetők. Lehetővé teszi a hőmérséklet, illetve a mód megváltoztatását.",
+ "name": "Termosztát"
+ },
+ "vertical-stack": {
+ "description": "A Függőleges Készlet kártya lehetővé teszi több kártya csoportosítását, így mindig egy oszlopon belül maradnak.",
+ "name": "Függőleges Készlet"
+ },
+ "weather-forecast": {
+ "description": "Az Időjárás Előrejelzés kártya az időjárást jeleníti meg. Nagyon hasznos hozzáadni a falra felszerelt kezelő interfészek felületéhez.",
+ "name": "Időjárás előrejelzés",
+ "show_both": "Aktuális időjárás és előrejelzés megjelenítése",
+ "show_forecast": "Előrejelzés megjelenítése",
+ "show_only_current": "Csak aktuális időjárás megjelenítése",
+ "show_only_forecast": "Csak előrejelzés megjelenítése"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Kártya szerint",
+ "by_entity": "Entitás szerint",
+ "custom_card": "Egyéni",
+ "domain": "Tartomány",
+ "entity": "Entitás",
+ "no_description": "Nincs leírás."
+ },
+ "common": {
+ "add": "Hozzáadás",
+ "clear": "Törlés",
+ "edit": "Szerkesztés",
+ "none": "Nincs"
+ },
+ "edit_badges": {
+ "panel_mode": "Ezek a jelvények nem lesznek megjelenítve, mert ez a nézet \"Panel módban\" van.",
+ "view_no_badges": "A jelvényeket az aktuális nézettípus nem támogatja."
+ },
+ "edit_card": {
+ "add": "Kártya hozzáadása",
+ "clear": "Törlés",
+ "confirm_cancel": "Biztos benne, hogy meg szeretné szakítani?",
+ "delete": "Kártya törlése",
+ "duplicate": "Kártya duplikálása",
+ "edit": "Szerkesztés",
+ "header": "Kártya Konfiguráció",
+ "move": "Áthelyezés másik nézetbe",
+ "move_after": "Kártya mozgatása mögé",
+ "move_before": "Kártya mozgatása elé",
+ "move_down": "Kártya lefelé mozgatása",
+ "move_up": "Kártya felfelé mozgatása",
+ "options": "További lehetõségek",
+ "pick_card": "Melyik kártyát szeretné hozzáadni?",
+ "pick_card_view_title": "Melyik kártyát szeretné hozzáadni {name} nézethez?",
+ "search_cards": "Kártyák keresése",
+ "show_code_editor": "Kódszerkesztő megjelenítése",
+ "show_visual_editor": "Vizuális szerkesztő megjelenítése",
+ "toggle_editor": "Szerkesztő",
+ "typed_header": "{type} Kártya Konfiguráció",
+ "unsaved_changes": "Vannak nem mentett módosítások"
+ },
+ "edit_lovelace": {
+ "edit_title": "Név szerkesztése",
+ "explanation": "Ez a név jelenik meg minden nézet felett a Lovelace felhasználói felületen.",
+ "header": "Lovelace kezelőfelület neve",
+ "title": "Név"
+ },
+ "edit_view": {
+ "add": "Nézet hozzáadása",
+ "delete": "Nézet törlése",
+ "edit": "Nézet szerkesztése",
+ "header": "Nézet konfigurálása",
+ "header_name": "{name} Konfiguráció megtekintése",
+ "move_left": "Nézet mozgatása balra",
+ "move_right": "Nézet mozgatása jobbra",
+ "tab_badges": "Kitűzők",
+ "tab_settings": "Beállítások",
+ "tab_visibility": "Láthatóság",
+ "type": "Nézet típusa",
+ "types": {
+ "masonry": "Blokkok (alapértelmezett)",
+ "panel": "Panel (1 kártya)",
+ "sidebar": "Oldalsáv"
+ },
+ "visibility": {
+ "select_users": "Válassza ki, hogy mely felhasználók láthatják ezt a nézetet a navigációs sávon"
+ }
+ },
+ "header": "Felhasználói felület szerkesztése",
+ "header-footer": {
+ "choose_header_footer": "Válassz {type}-t",
+ "footer": "Lábléc",
+ "header": "Fejléc",
+ "types": {
+ "buttons": {
+ "name": "Gombok"
+ },
+ "graph": {
+ "name": "Grafikon"
+ },
+ "picture": {
+ "name": "Kép"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Irányítópultok kezelése",
+ "manage_resources": "Források kezelése",
+ "open": "Lovelace menü megnyitása",
+ "raw_editor": "Konfiguráció szerkesztő"
+ },
+ "migrate": {
+ "header": "Inkompatibilis Konfiguráció",
+ "migrate": "Konfiguráció áttelepítése",
+ "para_migrate": "Home Assistant a 'Konfiguráció áttelepítése' gomb megnyomásával az összes kártyához és nézethez automatikusan létre tud hozni ID-kat.",
+ "para_no_id": "Ez az elem nem rendelkezik ID-val. Kérem, adjon hozzá egyet az 'ui-lovelace.yaml' fájlban!"
+ },
+ "move_card": {
+ "header": "Válassza ki azt a nézetet, ahova át szeretné helyezni a kártyát"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Automatikusan létrehozzuk a Lovelace felhasználói felület nézeteit a területekkel és eszközökkel, ha most eltávolítja a Lovelace konfigurációját.",
+ "confirm_remove_config_title": "Biztos benne, hogy el szeretné távolítani a Lovelace felhasználói felület konfigurációját?",
+ "confirm_unsaved_changes": "Vannak nem mentett módosítások, biztosan ki szeretne lépni?",
+ "confirm_unsaved_comments": "A konfiguráció megjegyzéseket tartalmazhat, amik nem kerülnek elmentésre. Biztosan folytatja?",
+ "error_invalid_config": "A konfiguráció érvénytelen: {error}",
+ "error_parse_yaml": "Nem sikerült elemezni a YAML-t: {error}",
+ "error_remove": "Nem lehet eltávolítani a konfigurációt: {error}",
+ "error_save_yaml": "Nem sikerült menteni a YAML-t: {error}",
+ "header": "Konfiguráció szerkesztése",
+ "lovelace_changed": "A Lovelace konfigurációja frissült, be szeretné tölteni a frissített konfigurációt a szerkesztőbe és elveszíteni az aktuális módosításokat?",
+ "reload": "Újratöltés",
+ "resources_moved": "Az erőforrásokat ezentúl nem a Lovelace konfigurációban kell megadni, hanem a Lovelace konfigurációs panelben.",
+ "save": "Mentés",
+ "saved": "Mentve",
+ "unsaved_changes": "Nem mentett változtatások"
+ },
+ "save_config": {
+ "close": "Bezárás",
+ "empty_config": "Kezdjen egy üres irányítópulttal",
+ "header": "Vegye át a kézi irányítást a Lovelace UI felett",
+ "para": "Ezt az irányítópultot jelenleg Home Assistant kezeli. Automatikusan bővül, amikor új entitások vagy Lovelace komponensek válnak elérhetővé. Ha átveszi az irányítást, akkor ez az irányítópult nem fog többé automatikusan bővülni. Bármikor létre tud hozni egy új irányítópultot a konfigurációban a próbálgatáshoz.",
+ "para_sure": "Biztosan át szeretné venni az kézi irányítást a felhasználói felület felett?",
+ "save": "Irányítás átvétele",
+ "yaml_config": "A kezdéshez itt a jelenlegi konfigurációja ennek az irányítópultnak:",
+ "yaml_control": "Ahhoz, hogy átvehesse az irányítást YAML módban, hozzon létre egy YAML fájlt az irányítópult konfigurációjában megadott, vagy az alapértelmezett 'ui-lovelace.yaml' névvel.",
+ "yaml_mode": "YAML módot használ ehhez az irányítópulthoz, ezért nem módosíthatja a Lovelace konfigurációt a felhasználói felületről. Ha mégis onnan szeretné, akkor távolítsa el a 'mode: yaml' bejegyzést a Lovelace konfigurációból a 'configuration.yaml' fájlban."
+ },
+ "select_view": {
+ "dashboard_label": "Irányítópult",
+ "header": "Nézet kiválasztása",
+ "views_label": "Nézet"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Lábléc szerkesztő",
+ "header": "Fejléc szerkesztő",
+ "row": "Entitássor szerkesztő"
+ }
+ },
+ "suggest_card": {
+ "add": "Hozzáadás a Lovelace felhasználói felülethez",
+ "create_own": "Válasszon másik kártyát",
+ "header": "Van egy javaslatunk"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Ez a nézet több kártyát is tartalmaz, de a panelnézet csak egy kártyát tud megjeleníteni."
+ }
+ }
+ },
+ "menu": {
+ "close": "Bezárás",
+ "configure_ui": "Irányítópult szerkesztése",
+ "exit_edit_mode": "Kész",
+ "help": "Súgó",
+ "reload_resources": "Erőforrások újratöltése",
+ "start_conversation": "Beszélgetés indítása"
+ },
+ "reload_lovelace": "Felhasználói felület újratöltése",
+ "reload_resources": {
+ "refresh_body": "Frissíteni szükséges az oldalt az újratöltés befejezéséhez, szeretné ezt most?",
+ "refresh_header": "Szeretne frissíteni?"
+ },
+ "unused_entities": {
+ "available_entities": "Ezek azok az entitások, amelyek elérhetők, de még nincsenek elhelyezve a Lovelace felületen.",
+ "domain": "Domain",
+ "entity": "Entitás",
+ "entity_id": "Entitás ID",
+ "last_changed": "Utoljára változott",
+ "no_data": "Nincsenek nem használt entitások",
+ "search": "Entitások keresése",
+ "select_to_add": "Válassza ki azokat az entitásokat, amelyeket hozzá kíván adni egy kártyához, majd kattintsin a 'kártya hozzáadása' gombra.",
+ "title": "Nem használt entitások"
+ },
+ "views": {
+ "confirm_delete": "Biztos benne, hogy törölni szeretné ezt a nézetet?",
+ "confirm_delete_existing_cards": "A nézet törlésével a kártyák is eltávolításra kerülnek",
+ "confirm_delete_existing_cards_text": "Biztosan törölni szeretné ''{name}'' nézetet? A nézet {number} kártyát tartalmaz, melyek törölve lesznek. Ez a művelet nem vonható vissza.",
+ "confirm_delete_text": "Biztos benne, hogy törölni szeretné \"{name}\" nézetet?"
+ },
+ "warning": {
+ "attribute_not_found": "{attribute} attribútum nem érhető el {entity} entitásban.",
+ "entity_non_numeric": "Entitás nem numerikus: {entity}",
+ "entity_not_found": "Entitás nem elérhető: {entity}",
+ "entity_unavailable": "Az entitás jelenleg nem érhető el: {entity}",
+ "starting": "Home Assistant indítása folyamatban van, még nem minden elérhető..."
+ }
+ },
+ "mailbox": {
+ "delete_button": "Törlés",
+ "delete_prompt": "Törli az üzenetet?",
+ "empty": "Nincsenek üzenetei",
+ "playback_title": "Üzenet lejátszása"
+ },
+ "map": {
+ "edit_zones": "Zónák szerkesztése"
+ },
+ "my": {
+ "component_not_loaded": "Home Assistant ezen példánya nem támogatja ezt az átirányítást. Az átirányítás használatához {integration} van szükség.",
+ "documentation": "dokumentáció",
+ "error": "Ismeretlen hiba történt",
+ "faq_link": "My Home Assistant GYIK",
+ "no_supervisor": "Home Assistant ezen példánya nem támogatja ezt az átirányítást. Vagy a Home Assistant operációs rendszerre, vagy a Home Assistant felügyelt telepítési módszerre van szüksége. További információ: {docs_link} .",
+ "not_supported": "Home Assistant ezen példánya nem támogatja ezt az átirányítást. Ellenőrizze a {link} fájlban a támogatott átirányításokat és azok verzióját."
+ },
+ "page-authorize": {
+ "abort_intro": "Bejelentkezés megszakítva",
+ "authorizing_client": "Ön a {clientId} címen lévő Home Assistanthoz próbál hozzáférni.",
+ "form": {
+ "error": "Hiba: {error}",
+ "next": "Bejelentkezés",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "A munkamenet lejárt, kérem, jelentkezzen be újra."
+ },
+ "error": {
+ "invalid_auth": "Érvénytelen felhasználónév vagy jelszó",
+ "invalid_code": "Érvénytelen hitelesítési kód"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Jelszó",
+ "username": "Felhasználónév"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Kétfaktoros Hitelesítési Kód"
+ },
+ "description": "Nyissa meg a(z) **{mfa_module_name}** applikációt az eszközén, hogy megtekinthesse a kétfaktoros hitelesítési kódot a személyazonosságának ellenőrzéséhez."
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "A munkamenet lejárt, kérem, jelentkezzen be újra."
+ },
+ "error": {
+ "invalid_auth": "Érvénytelen felhasználónév vagy jelszó",
+ "invalid_code": "Érvénytelen hitelesítési kód"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Jelszó",
+ "username": "Felhasználónév"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Kétfaktoros Hitelesítési Kód"
+ },
+ "description": "Nyissa meg a(z) **{mfa_module_name}** applikációt az eszközén, hogy megtekinthesse a kétfaktoros hitelesítési kódot a személyazonosságának ellenőrzéséhez."
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "A munkamenet lejárt, kérem, jelentkezzen be újra.",
+ "no_api_password_set": "Nincs megadva API jelszó a konfigurációban."
+ },
+ "error": {
+ "invalid_auth": "Érvénytelen API jelszó",
+ "invalid_code": "Érvénytelen hitelesítési kód"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "API Jelszó"
+ },
+ "description": "Kérem, adja meg az API jelszót a HTTP konfigurációban:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Kétfaktoros Hitelesítési Kód"
+ },
+ "description": "Nyissa meg a(z) **{mfa_module_name}** applikációt az eszközén, hogy megtekinthesse a kétfaktoros hitelesítési kódot a személyazonosságának ellenőrzéséhez."
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Az Ön gépének automatikus belépése nincs engedélyezve."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Felhasználó"
+ },
+ "description": "Kérem, válasszon egy felhasználót a bejelentkezéshez:"
+ }
+ }
+ }
+ },
+ "start_over": "Újrakezdés",
+ "unknown_error": "Valami hiba történt",
+ "working": "Pillanat..."
+ },
+ "initializing": "Inicializálás",
+ "logging_in_to_with": "Bejelentkezés **{authProviderName}** szolgáltatással ide: **{locationName}**.",
+ "logging_in_with": "Autentikáció **{authProviderName}** használatával.",
+ "pick_auth_provider": "Autentikáció más módon",
+ "store_token": "Bejelentkezve maradok"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "készítette: {name}",
+ "introduction": "Üdv itthon! Megnyitotta a Home Assistant demót, ahol bemutatjuk a közösségünk által létrehozott legjobb felhasználói felületeket.",
+ "learn_more": "Tudjon meg többet Home Assistantról",
+ "next_demo": "Következő demó"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Tevékenység",
+ "air": "Levegő",
+ "commute_home": "Útidő haza",
+ "entertainment": "Szórakozás",
+ "hdmi_input": "HDMI bemenet",
+ "hdmi_switcher": "HDMI váltó",
+ "information": "Információ",
+ "lights": "Világítás",
+ "morning_commute": "Reggeli útidő a munkahelyre",
+ "total_tv_time": "Összes TV nézéssel töltött idő",
+ "turn_tv_off": "Televízió kikapcsolása",
+ "volume": "Hangerő"
+ },
+ "names": {
+ "family_room": "Nappali",
+ "hallway": "Előszoba",
+ "kitchen": "Konyha",
+ "left": "Bal",
+ "master_bedroom": "Hálószoba",
+ "mirror": "Tükör",
+ "patio": "Terasz",
+ "right": "Jobb",
+ "temperature_study": "Tanulószoba hőmérséklet",
+ "upstairs": "Emelet"
+ },
+ "unit": {
+ "minutes_abbr": "perc",
+ "watching": "megtekintő"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Következő"
+ },
+ "core-config": {
+ "button_detect": "Észlelés",
+ "finish": "Tovább",
+ "intro": "Kedves {name}, Home Assistant üdvözli Önt! Hogyan szeretné elnevezni az otthonát?",
+ "intro_location": "A rendszer szeretné tudni, hogy hol helyezkedik el. Ez segít az információk megjelenítéi formájában és a napjárás alapú automatizmusok beállításában. Ez az adat soha nem lesz megosztva az Ön hálózatán kívülre.",
+ "intro_location_detect": "Segíthetünk kitölteni ezt az információt egy külső szolgáltatás egyszeri lekérdezésével.",
+ "location_name": "A Home Assistant rendszerének helyi neve",
+ "location_name_default": "Otthon"
+ },
+ "finish": "Befejezés",
+ "integration": {
+ "finish": "Befejezés",
+ "intro": "Az eszközöket és szolgáltatásokat Home Assistant integrációként kezeli. Beállíthatja őket most, vagy később a konfigurációs képernyőn.",
+ "more_integrations": "Több"
+ },
+ "intro": "Készen áll arra, hogy életet adjon az otthonának, visszaszerezze a magánéletét és csatlakozzon egy világhálós közösséghez?",
+ "next": "Következő",
+ "restore": {
+ "addons": "Bővítmények",
+ "confirm_password": "Biztonsági mentés jelszavának megerősítése",
+ "description": "Alternatív megoldásként visszaállíthat egy korábbi biztonsági mentést.",
+ "folders": "Mappák",
+ "full_backup": "Teljes biztonsági mentés",
+ "hide_log": "Teljes napló elrejtése",
+ "in_progress": "Visszaállítás folyamatban",
+ "partial_backup": "Részleges biztonsági mentés",
+ "password": "Biztonsági mentés jelszava",
+ "password_protection": "Jelszóvédelem",
+ "select_type": "Válassza ki, hogy mit szeretne visszaállítani",
+ "show_log": "Teljes napló megjelenítése",
+ "type": "Biztonsági mentés típusa"
+ },
+ "user": {
+ "create_account": "Fiók létrehozása",
+ "data": {
+ "name": "Név",
+ "password": "Jelszó",
+ "password_confirm": "Jelszó megerősítése",
+ "username": "Felhasználónév"
+ },
+ "error": {
+ "password_not_match": "A jelszavak nem egyeznek",
+ "required_fields": "Töltse ki az összes szükséges mezőt"
+ },
+ "intro": "Kezdjük a felhasználói fiók létrehozásával.",
+ "required_field": "Szükséges"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Haladó funkciók feloldása.",
+ "link_promo": "Tudjon meg többet",
+ "title": "Haladó mód"
+ },
+ "change_password": {
+ "confirm_new_password": "Új jelszó megerősítése",
+ "current_password": "Jelenlegi jelszó",
+ "error_new_is_old": "Az új jelszónak különböznie kell az aktuális jelszótól",
+ "error_new_mismatch": "A megadott új jelszavak nem egyeznek",
+ "error_required": "Szükséges",
+ "header": "Jelszó módosítása",
+ "new_password": "Új jelszó",
+ "submit": "Küldés",
+ "success": "A jelszó sikeresen módosíva lett"
+ },
+ "current_user": "Jelenleg {fullName} felhasználóként van bejelentkezve.",
+ "customize_sidebar": {
+ "button": "Szerkesztés",
+ "description": "Az oldalsáv fejlécét is nyomva tarthatja a szerkesztési mód aktiválásához.",
+ "header": "A sorrend módosítása és elemek elrejtése az oldalsávról"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Áttekintés (alapértelmezett)",
+ "description": "Válasszon egy alapértelmezett irányítópultot ehhez az eszközhöz.",
+ "dropdown_label": "Irányítópult",
+ "header": "Irányítópult"
+ },
+ "enable_shortcuts": {
+ "description": "Engedélyezheti vagy letilthatja a felhasználói felület billentyűparancsait különböző műveletek végrehajtásához.",
+ "header": "Billentyűparancsok"
+ },
+ "force_narrow": {
+ "description": "Ez alapértelmezés szerint elrejti az oldalsávot, hasonlóan a mobil verzióhoz.",
+ "header": "Mindig rejtse el az oldalsávot"
+ },
+ "is_owner": "Ön tulajdonos.",
+ "language": {
+ "dropdown_label": "Nyelv",
+ "header": "Nyelv",
+ "link_promo": "Segítsen a fordításban"
+ },
+ "logout": "Kijelentkezés",
+ "logout_text": "Biztosan ki szeretne jelentkezni?",
+ "logout_title": "Kijelentkezés?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Biztos benne, hogy törölni szeretné {name} hozzáférési tokenjét?",
+ "create": "Token Létrehozása",
+ "create_failed": "Nem sikerült létrehozni a hozzáférési tokent.",
+ "created": "Létrehozva: {date}",
+ "delete_failed": "Nem sikerült törölni a hozzáférési tokent.",
+ "description": "Hosszú életű hozzáférési tokenek létrehozásával engedélyezheti a szkriptek számára, hogy csatlakozzanak Home Assistanthoz. Minden token 10 évig érvényes a létrehozástól számítva. Jelenleg az alábbi hosszú életű hozzáférési tokenek aktívak.",
+ "empty_state": "Még nincsenek hosszú életű hozzáférési tokenjei.",
+ "header": "Hosszú Életű Hozzáférési Tokenek",
+ "learn_auth_requests": "Tudjon meg többet a hitelesített kérelmek létrehozásáról.",
+ "name": "Név",
+ "prompt_copy_token": "Most másolja ki a hozzáférési tokenét! Erre később már nem lesz lehetősége.",
+ "prompt_name": "Adjon nevet a tokennek"
+ },
+ "mfa": {
+ "confirm_disable": "Biztos benne, hogy le szeretné tiltani {name}-t?",
+ "disable": "Letiltás",
+ "enable": "Engedélyezés",
+ "header": "Többfaktoros Hitelesítési Modulok"
+ },
+ "mfa_setup": {
+ "close": "Bezárás",
+ "step_done": "{step} beállítás elvégezve",
+ "submit": "Küldés",
+ "title_aborted": "Megszakítva",
+ "title_success": "Siker!"
+ },
+ "number_format": {
+ "description": "Válassza ki a számok formátumát.",
+ "dropdown_label": "Számformátum",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Automatikus (nyelvi beállítás használata)",
+ "none": "Nincs",
+ "space_comma": "1 234 567,89",
+ "system": "Használja a rendszer területi beállításait"
+ },
+ "header": "Számformátum"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Eszköz neve",
+ "title": "Mi legyen ennek az eszköznek a neve?"
+ },
+ "description": "Értesítések küldése erre az eszközre.",
+ "error_load_platform": "Állítsa be a notify.html5-t.",
+ "error_use_https": "Szükséges az SSL engedélyezése a felülethez.",
+ "header": "Push Értesítések",
+ "link_promo": "Tudjon meg többet",
+ "push_notifications": "Push értesítések"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Biztos benne, hogy törölni szeretné {name} frissítési tokenjét?",
+ "created_at": "Létrehozva: {date}",
+ "current_token_tooltip": "Nem lehet törölni az aktuális frissítési tokent",
+ "delete_failed": "Nem sikerült törölni a frissítési tokent.",
+ "description": "Minden frissítési token egy bejelentkezési munkamenetet jelent. A frissítési tokenek automatikusan eltávolításra kerülnek, amikor a kijelentkezésre kattint. Jelenleg a következő frissítési tokenek aktívak a fiókjában.",
+ "header": "Frissítési Tokenek",
+ "last_used": "Utolsó használat ideje: {date}, helye: {location}",
+ "not_used": "Sosem használt",
+ "token_title": "{clientId} frissítési tokenje"
+ },
+ "suspend": {
+ "description": "Lezárjuk a kapcsolatot a szerverrel, ha 5 percig rejtve van a felület?",
+ "header": "Kapcsolat automatikus bontása"
+ },
+ "themes": {
+ "accent_color": "Kiemelő szín",
+ "dark_mode": {
+ "auto": "Automatikus",
+ "dark": "Sötét",
+ "light": "Világos"
+ },
+ "dropdown_label": "Téma",
+ "error_no_theme": "Nincsenek elérhető témák.",
+ "header": "Téma",
+ "link_promo": "Tudjon meg többet a témákról",
+ "primary_color": "Elsődleges szín",
+ "reset": "Visszaállítás"
+ },
+ "time_format": {
+ "description": "Válassza ki az időformátumot.",
+ "dropdown_label": "Időformátum",
+ "formats": {
+ "12": "12 óra (AM/PM)",
+ "24": "24 óra",
+ "language": "Automatikus (nyelvi beállítás használata)",
+ "system": "Rendszer területi beállításainak használata"
+ },
+ "header": "Időformátum"
+ },
+ "vibrate": {
+ "description": "Rezgés engedélyezése vagy tiltása ezen az eszközön az eszközök vezérlésekor.",
+ "header": "Rezgés"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Beszélgetés indítása"
+ }
+ },
+ "sidebar": {
+ "done": "Kész",
+ "external_app_configuration": "App Konfiguráció",
+ "hide_panel": "Panel elrejtése",
+ "show_panel": "Panel megjelenítése",
+ "sidebar_toggle": "Oldalsáv kapcsoló"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/hy.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/hy.json
new file mode 100644
index 00000000..7ad3fa3f
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/hy.json
@@ -0,0 +1,1090 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Կարգավորման սկզբնական կետ",
+ "integration": "Ինտեգրում",
+ "user": "Օգտագործող"
+ }
+ },
+ "groups": {
+ "system-admin": "Ադմինիստրատորներ",
+ "system-read-only": "Միայն օգտվողները ընթերցեն",
+ "system-users": "Օգտվողներ"
+ },
+ "panel": {
+ "calendar": "Օրացույց",
+ "config": "Կարգավորում",
+ "developer_tools": "Մշակողի գործիքներ",
+ "history": "Պատմություն",
+ "logbook": "Մատյան",
+ "mailbox": "Փոստարկղ",
+ "map": "Քարտեզ",
+ "profile": "Անձնագիր",
+ "shopping_list": "Գնումների ցուցակ",
+ "states": "Ակնարկ"
+ },
+ "state": {
+ "default": {
+ "unavailable": "Անհասանելի",
+ "unknown": "Անհայտ"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Ավտոմատ",
+ "off": "Անջատած",
+ "on": "Միացված"
+ },
+ "hvac_action": {
+ "cooling": "հովացում",
+ "drying": "Չորացում",
+ "fan": "Երկրպագու",
+ "heating": "Տաքացում",
+ "idle": "Պարապ",
+ "off": "Անջատած"
+ },
+ "preset_mode": {
+ "activity": "Գործունեություն",
+ "away": "Հեռու",
+ "boost": "Խթանել",
+ "comfort": "Կոմֆորտ",
+ "eco": "Էկո",
+ "home": "Տուն",
+ "none": "Ոչ ոք",
+ "sleep": "Քնել"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Զինված",
+ "armed_away": "Զինված",
+ "armed_custom_bypass": "Զինված",
+ "armed_home": "Զինված",
+ "armed_night": "Զինված",
+ "arming": "Զինել",
+ "disarmed": "Զինաթափել",
+ "disarming": "Անջատել տագնապը",
+ "pending": "Պենդ",
+ "triggered": "թրիգ"
+ },
+ "default": {
+ "entity_not_found": "Անունը չի գտնվել",
+ "error": "Սխալ",
+ "unavailable": "Անհասանելի",
+ "unknown": "Անհայտ"
+ },
+ "device_tracker": {
+ "home": "Տուն",
+ "not_home": "Հեռու"
+ },
+ "person": {
+ "home": "Տուն",
+ "not_home": "Հեռու"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Դուք ցանկանում եք պահպանել այդ անունը?",
+ "confirm": "Պահպանել մուտք",
+ "decline": "Ոչ, շնորհակալություն"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Ձեռք բերեք",
+ "arm_custom_bypass": "Պատվերով շրջանցիկ",
+ "arm_home": "Arm տուն",
+ "arm_night": "Զինել - Գիշերային ռեժիմ",
+ "clear_code": "Մաքրել",
+ "code": "Կոդ",
+ "disarm": "Զինաթափել"
+ },
+ "automation": {
+ "last_triggered": "Վերջին ակտիվացումը",
+ "trigger": "Զարգացնել"
+ },
+ "camera": {
+ "not_available": "Պատկերը հասանելի չէ"
+ },
+ "climate": {
+ "aux_heat": "Aux ջերմությունը",
+ "away_mode": "հեռու ռեժիմ",
+ "currently": "Ներկայումս",
+ "fan_mode": "Երկրպագուների ռեժիմ",
+ "on_off": "Միացում անջատում",
+ "operation": "Գործողություն",
+ "preset_mode": "Նախադրված",
+ "swing_mode": "Ռիթմ ռեժիմ",
+ "target_humidity": "Թիրախային խոնավություն",
+ "target_temperature": "Նպատակային ջերմաստիճանը"
+ },
+ "cover": {
+ "position": "Դիրք",
+ "tilt_position": "Դիրքի թեքությունը"
+ },
+ "fan": {
+ "direction": "Ուղղությունը",
+ "forward": "Առաջ",
+ "oscillate": "Տատանվել",
+ "reverse": "Հակադարձել",
+ "speed": "Արագություն"
+ },
+ "light": {
+ "brightness": "Պայծառություն",
+ "color_temperature": "Գունային ջերմաստիճան",
+ "effect": "Էֆեկտ",
+ "white_value": "Սպիտակ արժեք"
+ },
+ "lock": {
+ "code": "կոդ",
+ "lock": "Կողպեք",
+ "unlock": "Բացել"
+ },
+ "media_player": {
+ "sound_mode": "Ձայնի ռեժիմ",
+ "source": "Աղբյուր",
+ "text_to_speak": "Խոսելու տեքստ"
+ },
+ "persistent_notification": {
+ "dismiss": "Հեռացնել"
+ },
+ "scene": {
+ "activate": "Ակտիվացնել"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "չեղարկել",
+ "finish": "ավարտել",
+ "pause": "ընդհատել",
+ "start": "սկսել"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Վերսկսել մաքրումը",
+ "return_to_base": "Վերադառնալ նավահանգիստ",
+ "start_cleaning": "Սկսել մաքրում ",
+ "turn_off": "Անջատել",
+ "turn_on": "Միացնել"
+ }
+ },
+ "water_heater": {
+ "away_mode": "հեռու ռեժիմ",
+ "currently": "Ներկայումս",
+ "on_off": "Միացում անջատում",
+ "operation": "Գործողություն",
+ "target_temperature": "Նպատակային ջերմաստիճանը"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Օդի ճնշում",
+ "humidity": "Խոնավություն",
+ "temperature": "Ջերմաստիճանը",
+ "visibility": "Տեսանելիություն",
+ "wind_speed": "Քամու արագություն"
+ },
+ "cardinal_direction": {
+ "e": "Ե",
+ "ene": "ENE",
+ "ese": "ESE",
+ "n": "N",
+ "ne": "NE",
+ "nne": "NNE",
+ "nnw": "NNW",
+ "nw": "NW",
+ "s": "S",
+ "se": "SE",
+ "sse": "SSE",
+ "ssw": "SSW",
+ "sw": "SW",
+ "w": "W",
+ "wnw": "WNW",
+ "wsw": "WSW"
+ },
+ "forecast": "Կանխատեսում"
+ }
+ },
+ "common": {
+ "cancel": "Չեղարկել",
+ "loading": "Բեռնում",
+ "save": "Պահպանել",
+ "successfully_saved": "Պահմանվեց հաջողությամբ"
+ },
+ "components": {
+ "entity": {
+ "entity-picker": {
+ "entity": "օբյեկտ"
+ }
+ },
+ "history_charts": {
+ "loading_history": "Պետական պատմությունը բեռնում",
+ "no_history_found": "Ոչ մի պետական պատմություն չի գտնվել:"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one {day}\n other {days}\n}",
+ "hour": "{count} {count, plural,\n one {hour}\n other {hours}\n}",
+ "minute": "{count} {count, plural,\n one {minute}\n other {minutes}\n}",
+ "second": "{count} {count, plural,\n one {second}\n other {seconds}\n}",
+ "week": "{count} {count, plural,\n one {week}\n other {weeks}\n}"
+ },
+ "never": "Երբեք"
+ },
+ "service-picker": {
+ "service": "Ծառայություն"
+ },
+ "target-picker": {
+ "add_entity_id": "Ընտրեք սուբյեկտ"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Եթե անջատված է, նոր հայտնաբերված օբյեկտները ավտոմատ կերպով չեն ավելացվի Home Assistant-ին:",
+ "enable_new_entities_label": "Միացնել նոր ավելացված օբյեկտները:",
+ "title": "Համակարգի Պարամետրերը"
+ },
+ "entity_registry": {
+ "editor": {
+ "open_device_settings": "Բացել սարքի կարգավորումները"
+ }
+ },
+ "more_info_control": {
+ "script": {
+ "last_action": "Վերջին գործողությունը"
+ },
+ "sun": {
+ "elevation": "Բարձունք",
+ "rising": "Բարձրանում",
+ "setting": "Կարգավորում"
+ },
+ "updater": {
+ "title": "Թարմացնել հրահանգները"
+ }
+ },
+ "options_flow": {
+ "form": {
+ "header": "Տարբերակներ"
+ },
+ "success": {
+ "description": "Տարբերակները պահմանվեցին հաջողությամբ"
+ }
+ },
+ "zha_device_info": {
+ "manuf": "{manufacturer}ի կողմից",
+ "no_area": "Ոչ մի տարածք",
+ "services": {
+ "reconfigure": "Նորից կարգավորեք ZHA սարքը: Օգտագործեք սա, եթե սարքի հետ խնդիրներ ունեք: Եթե տվյալ սարքը մարտկոցով աշխատող սարք է, ապա այս ծառայությունն օգտագործելիս համոզվեք, որ արթուն է և հրամաններ է ընդունում:",
+ "remove": "Հեռացնել սարքը ZigBee ցանցից.",
+ "updateDeviceName": "Անվանել սարքը սարգեքի ռեգիսթրիում"
+ },
+ "zha_device_card": {
+ "device_name_placeholder": "Օգտագործողի կողմից տրված անուն"
+ }
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\n one {day}\n other {days}\n}",
+ "hour": "{count} {count, plural,\n one {ժամ}\n other {ժամ}\n}",
+ "minute": "{count} {count, plural,\n one {minute}\n other {minutes}\n}",
+ "second": "{count} {count, plural,\n one {second}\n other {seconds}\n}",
+ "week": "{count} {count, plural,\n one {week}\n other {weeks}\n}"
+ },
+ "login-form": {
+ "log_in": "Մուտք գործեք",
+ "password": "Գաղտնաբառ",
+ "remember": "Հիշել"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Սեղմեք ստեղծել {entity}",
+ "empty": "Ոչ մի ծանուցում",
+ "title": "Ծանուցումներ"
+ },
+ "notification_toast": {
+ "connection_lost": "Կապը կորցվեց: Վերամիավորվում է…",
+ "service_call_failed": "Չի հաջողվել կապվել սպասարկման {ծառայության}."
+ },
+ "panel": {
+ "config": {
+ "areas": {
+ "caption": "Տարածքի գրանցամատյան",
+ "description": "Ձեր բոլոր տարածքների ակնարկ",
+ "editor": {
+ "create": "ՍՏԵՂԾԵԼ",
+ "default_name": "Նոր տարածք",
+ "delete": "Հեռացնել",
+ "update": "Թարմացրեք"
+ },
+ "picker": {
+ "create_area": "Ստեղծել տարածք",
+ "header": "Տարածքի գրանցամատյան",
+ "integrations_page": "Ինտեգրման էջ",
+ "introduction": "Տարածքները օգտագործվում են կազմակերպելու համար, թե որտեղ են սարքերը: Այս տեղեկատվությունը կօգտագործվի ամբողջ Տնային օգնականի համար `օգնելու ձեզ կազմակերպել ձեր ինտերֆեյսը, թույլտվությունները և այլ համակարգերի հետ ինտեգրումը:",
+ "introduction2": "Սարքերը մի տարածքում տեղադրելու համար օգտագործեք ներքևում նշված հղումը ՝ ինտեգրման էջին անցնելու համար, այնուհետև կտտացրեք կարգավորված ինտեգրմանը ՝ սարքի քարտերին հասնելու համար:",
+ "no_areas": "դեռ տարածքներ չկան"
+ }
+ },
+ "automation": {
+ "caption": "Ավտոմատացում",
+ "description": "Ավտոմատացման ստեղծում և խմբագրում",
+ "editor": {
+ "actions": {
+ "add": "Ավելացնել գործողություն",
+ "delete": "Ջնջել",
+ "delete_confirm": "Ցանկանւմ եք ջնջել?",
+ "duplicate": "Կրկնօրինակել",
+ "header": "Գործողություններ",
+ "introduction": "Գործողությունները Տնային օգնականի տանը պետք է անել, երբ ավտոմատացումը գործարկվի.",
+ "learn_more": "Իմանալ ավելին գործողությունների մասին",
+ "type": {
+ "condition": {
+ "label": "Վիճակը"
+ },
+ "delay": {
+ "delay": "Հետաձգում",
+ "label": "Հետաձգում"
+ },
+ "device_id": {
+ "label": "Սարքը"
+ },
+ "event": {
+ "event": "Իրադարձություն",
+ "label": "Հրդեհային իրադարձություն",
+ "service_data": "Ծառայության տվյալներ"
+ },
+ "service": {
+ "label": "Զանգի ծառայություն"
+ },
+ "wait_template": {
+ "label": "Սպասեք",
+ "timeout": "Վերջնաժամկետ",
+ "wait_template": "Սպասեք ձևանմուշին"
+ }
+ },
+ "type_select": "Գործողության տեսակը",
+ "unsupported_action": "Չաջակցված գործողություն. {action}"
+ },
+ "alias": "Անուն",
+ "conditions": {
+ "add": "Ավելացնել պայման",
+ "delete": "Ջնջել",
+ "delete_confirm": "Ցանկանւմ եք ջնջել?",
+ "duplicate": "Կրկնօրինակել",
+ "header": "Պայմանները",
+ "introduction": "Պայմանները ավտոմատացման կանոնների կամընտիր մասն են և կարող են օգտագործվել կանխելու համար գործողությունը կատարելու համար: Պայմանները շատ նման են հարուցիչների, բայց շատ տարբեր են: Ձգան կանդրադառնա համակարգում տեղի ունեցող իրադարձություններին, մինչդեռ մի պայման միայն նայում է, թե ինչպես է համակարգը հիմա նայում: Ձգան կարող է նկատել, որ անջատիչը միացված է: Մի պայման կարող է տեսնել միայն այն դեպքում, արդյոք անջատիչը ներկայում միացված է կամ անջատված է:",
+ "learn_more": "Իմանալ ավելին պայմանների մասին",
+ "type": {
+ "device": {
+ "label": "Սարք"
+ },
+ "numeric_state": {
+ "above": "Վերևում",
+ "below": "ներքևում",
+ "label": "Թվային վիճակ",
+ "value_template": "Արժեքի պարտադիր ձևանմուշ"
+ },
+ "state": {
+ "label": "Պետություն",
+ "state": "Պետություն"
+ },
+ "sun": {
+ "after": "Հետո:",
+ "after_offset": "Հետո օֆֆսեթ(ոչ պարտադիր)",
+ "before": "Նախքան:",
+ "before_offset": "Փոխարկելուց առաջ (ըստ ցանկության)",
+ "label": "Արև",
+ "sunrise": "Արևածագ",
+ "sunset": "Մայրամուտ"
+ },
+ "template": {
+ "label": "Ձևանմուշ",
+ "value_template": "Արժեքի ձևանմուշ"
+ },
+ "time": {
+ "after": "Հետո",
+ "before": "Նախքան",
+ "label": "ժամանակը",
+ "weekdays": {
+ "mon": "Երկուշաբթի"
+ }
+ },
+ "zone": {
+ "entity": "կազմակերպության գտնվելու վայրը",
+ "label": "Գոտի",
+ "zone": "Գոտի"
+ }
+ },
+ "type_select": "Պայմանի տեսակը",
+ "unsupported_condition": "Չաջակցված պայման. {condition}"
+ },
+ "default_name": "Նոր ավտոմատացում",
+ "introduction": "Տունը կենդանացնելու համար օգտագործեք ավտոմատացումը",
+ "load_error_not_editable": "Միայն հնարավոր է փոփոխել automations.yaml ֆայլում գրված ավտոմատացումներումները",
+ "load_error_unknown": "Ավտոմատացման բեռնման սխալ ({err_no}):",
+ "save": "Պահպանել",
+ "triggers": {
+ "add": "Ավելացնել ձգան",
+ "delete": "Ջնջել",
+ "delete_confirm": "Համոզվա՞ծ եք, որ ուզում եք ջնջել:",
+ "duplicate": "Կրկնօրինակել",
+ "header": "Թողարկիչ",
+ "introduction": "Ձգանները այն են, ինչն սկսում է ավտոմատացման կանոնների մշակումը: Նույն կանոնի համար հնարավոր է նշել մի քանի ձգան: Ձգանման մեկնարկից հետո Տնային օգնականը կվավերացնի պայմանները, եթե այդպիսիք կան, և կանչեն գործողություն:",
+ "learn_more": "Իմացեք ավելին ՝ հարուցիչների մասին",
+ "type": {
+ "device": {
+ "label": "Սարք"
+ },
+ "event": {
+ "event_data": "Իրադարձության տվյալները",
+ "event_type": "Իրադարձության տեսակը",
+ "label": "Իրադարձություն"
+ },
+ "geo_location": {
+ "enter": "Մուտքագրել",
+ "event": "Իրադարձություն.",
+ "label": "Երկրաբաշխում",
+ "leave": "Թողնել",
+ "source": "Աղբյուր",
+ "zone": "Գոտի"
+ },
+ "homeassistant": {
+ "event": "Իրադարձություն։",
+ "label": "Home Assistant",
+ "shutdown": "Անջատել",
+ "start": "Սկսել"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "փոխանցվող տվյալ(ոչ պարտադիր)",
+ "topic": "Թեման"
+ },
+ "numeric_state": {
+ "above": "Վերևում",
+ "below": "Ստորև",
+ "label": "Թվային վիճակ",
+ "value_template": "Արժեքի ձևանմուշ"
+ },
+ "state": {
+ "for": "Համար",
+ "from": "Ինչից",
+ "label": "Վիճակ",
+ "to": "Դեպի"
+ },
+ "sun": {
+ "event": "Իրադարձություն",
+ "label": "Արև",
+ "offset": "Օֆսեթ (պարտադիր)",
+ "sunrise": "Արևածագ",
+ "sunset": "Մայրամուտ"
+ },
+ "template": {
+ "label": "Ձևանմուշ",
+ "value_template": "Արժեքի ձևանմուշ"
+ },
+ "time": {
+ "at": "Ատ",
+ "label": "Ժամանակ"
+ },
+ "time_pattern": {
+ "hours": "Ժամեր",
+ "label": "Ժամային գոտի",
+ "minutes": "Րոպեներ",
+ "seconds": "Վայրկյան"
+ },
+ "webhook": {
+ "label": "համացանցային կայք",
+ "webhook_id": "համացանցային կայքի ID"
+ },
+ "zone": {
+ "enter": "Մուտքագրել",
+ "entity": "Կազմակերպության գտնվելու վայրը",
+ "event": "Իրադարձություն",
+ "label": "Գոտի",
+ "leave": "Թողնել",
+ "zone": "Գոտի"
+ }
+ },
+ "type_select": "Տրիգերի տեսակ",
+ "unsupported_platform": "Չաջակցված հարթակ. {platform}"
+ },
+ "unsaved_confirm": "Դուք ունեք չպահպանված փոփոխություններ:Վստա՞հ եք, որ ուզում եք հեռանալ:"
+ },
+ "picker": {
+ "add_automation": "Ավելացնել ավտոմատացում",
+ "header": "Ավտոմատացման խմբագիր",
+ "introduction": "Ավտոմատացման խմբագրիչը թույլ է տալիս ստեղծել և խմբագրել ավտոմատացումը: Խնդրում ենք հետևել հետևյալ հղմանը ՝ հրահանգները կարդալու համար, որպեսզի համոզվեք, որ ճիշտ կազմաձևել եք Home Assistant-ը",
+ "learn_more": "Իմանալ ավելին ավտոմատացման մասին",
+ "no_automations": "Խմբագրերի ավտոմատացում չի գտնվել",
+ "pick_automation": " խմբագրելու համար ընտրել ավտոմատացում"
+ }
+ },
+ "cloud": {
+ "description_features": "Կառավարեք տնից հեռու, ինտեգրվեք Alexa- ի և Google Assistant- ի հետ:",
+ "description_login": "Մուտք գործեք որպես {email}",
+ "description_not_login": "Մուտք չի գործել"
+ },
+ "core": {
+ "caption": "Գեներալ",
+ "description": "Փոխեք ձեր Home Assistant-ի կարգավորումը",
+ "section": {
+ "core": {
+ "core_config": {
+ "edit_requires_storage": "Խմբագիրն անջատված է, քանի որ կարգավորումները կատարվել են .yaml- ում:",
+ "elevation": "Բարձրություն",
+ "elevation_meters": "մետր",
+ "imperial_example": "Ֆարենհեյթ, ֆունտ",
+ "latitude": "Լայնություն",
+ "location_name": "Ձեր Home Assistant-ի տեղադրման անվանումը",
+ "longitude": "Երկայնություն",
+ "metric_example": "Ցելսիուս, կիլոգրամ",
+ "save_button": "Պահպանել",
+ "time_zone": "Ժամային գոտի",
+ "unit_system": "համակարգի միավորը",
+ "unit_system_imperial": "Իմպերիալ",
+ "unit_system_metric": "Մետրկ"
+ },
+ "header": "Ընդհանուր կարգավորումը",
+ "introduction": "Ձեր կարգավորումների փոխելը կարող է լինել հոգնեցուցիչ ։գործընթաց: Մենք գիտենք. Այս բաժինը կփորձի ձեր կյանքը մի փոքր դյուրին դարձնել:"
+ }
+ }
+ },
+ "customize": {
+ "caption": "Անհատականացում",
+ "description": "Կարգավորել ձեր անձի",
+ "picker": {
+ "header": "հարմարեցում",
+ "introduction": "Կսմթել յուրաքանչյուր անձի հատկանիշները: Անհապաղ գործողության մեջ կավելացվեն / խմբագրված փոփոխությունները: Հեռացված կարգավորումները ուժի մեջ են մտնում սուբյեկտի թարմացման դեպքում:"
+ }
+ },
+ "devices": {
+ "automation": {
+ "create_disable": "Հնարավոր չէ ստեղծել ավտոմատացում անջատված սարքով"
+ },
+ "disabled": "Անջատված",
+ "disabled_by": {
+ "config_entry": "Կարգավորման կետ",
+ "integration": "Ինտեգրում",
+ "user": "Օգտատեր"
+ },
+ "enabled_cause": "Անջատված է {cause}-ի կողմից",
+ "enabled_label": "Միացնել սարքը",
+ "picker": {
+ "filter": {
+ "filter": "Ֆիլտր",
+ "show_all": "Ցույց տալ ամբողջը",
+ "show_disabled": "Ցուցադրել ապաակտիվացված սարքերը"
+ },
+ "search": "Որոնել սարքեր"
+ },
+ "scene": {
+ "create_disable": "Հնարավոր չէ սցենար ստեղծել անջատված սարքով"
+ },
+ "script": {
+ "create_disable": "Անջատված սարքով հնարավոր չէ ստեղծել սկրիպտ"
+ }
+ },
+ "entities": {
+ "caption": "Անշարժ գույքի ռեգիստր",
+ "description": "Բոլոր հայտնի սուբյեկտների ակնարկ:",
+ "picker": {
+ "header": "ռեգիստրի սուբյեկտ",
+ "introduction": "Տնային օգնականը պահում է իր տեսած յուրաքանչյուր սուբյեկտի գրանցամատյան, որը կարող է եզակիորեն նույնականացվել: Այս սուբյեկտներից յուրաքանչյուրը կունենա անձի նույնականացում, որը վերապահված կլինի հենց այս սուբյեկտին:",
+ "introduction2": "Օգտագործեք կազմակերպության ռեգիստրը `անունը շրջանցելու համար, փոխելու անձի նույնականացումը կամ մուտքը Տնային օգնականից հանելու համար: Նշում, կազմակերպության գրանցամատյան մուտքագրումը հանելը չի հեռացնում կազմակերպությանը: Դա անելու համար հետևեք ստորև նշված հղմանը և հեռացրեք այն ինտեգրման էջից:"
+ }
+ },
+ "header": "Կարգավորել Home Assistant-ը",
+ "integrations": {
+ "caption": "Ինտեգրում",
+ "config_entry": {
+ "delete_confirm": "Համոզվա՞ծ եք, որ ցանկանում եք ջնջել այս ինտեգրումը",
+ "device_unavailable": "սարքն անհասանելի է",
+ "entity_unavailable": "անձը անհասանելի է",
+ "firmware": "Firmware: {version}",
+ "hub": "Միացված է ի օգնությամբ",
+ "manuf": "{manufacturer}ի կողմից",
+ "no_area": "Ոչ մի տարածք",
+ "restart_confirm": "Վերագործարկել Home Assistant-ը որպեսզի վերջացնել ինտեգրման հեռացման պրոցեսը"
+ },
+ "config_flow": {
+ "external_step": {
+ "description": "Այս քայլը պահանջում է, որ դուք ավարտին հասցնեք վեբ կայքը:",
+ "open_site": "Բացեք կայք"
+ }
+ },
+ "configure": "Կարգավորել",
+ "configured": "Կարգավորված",
+ "description": "Կառավարեք սարքերը և ծառայությունները",
+ "discovered": "Բացահայտել",
+ "new": "Ստեղծվել է նոր ինտեգրումը",
+ "none": "Ոչինչ տրամադրված չէ"
+ },
+ "introduction": "Այստեղ հնարավոր է կարգավորել ձեր բաղադրիչները և Home Assistant:Դեռ ամեն ինչ հնարավոր չէ կազմաձևել UI- ից, բայց մենք աշխատում ենք այդ ուղղությամբ",
+ "mqtt": {
+ "title": "MQTT"
+ },
+ "ozw": {
+ "network_status": {
+ "unknown": "Անհայտ"
+ }
+ },
+ "person": {
+ "caption": "Անձինք",
+ "description": "Կառավարել այն անձանց, որոնք հետապնդում են Home Assistant-ին:",
+ "detail": {
+ "device_tracker_intro": "Ընտրեք սարքեր, որոնք պատկանում են այդ մարդուն.",
+ "device_tracker_pick": "Ընտրել սարքը հետևելու համար",
+ "device_tracker_picked": "Հետևել սարք",
+ "name": "Անուն"
+ }
+ },
+ "script": {
+ "caption": "Սցենար",
+ "description": "Սցենարների ստեղծում և խմբագրում"
+ },
+ "server_control": {
+ "caption": "Սերվերի վերահսկում",
+ "description": "Վերագործարկեք և դադարեցրեք Home Assistant սերվերը",
+ "section": {
+ "reloading": {
+ "automation": "Վերաբեռնել ավտոմատացումները",
+ "core": "Վերաբեռնել core-ը",
+ "group": "Վերաբեռնել խմբերը",
+ "heading": "Կարգավորման վերաբեռնում",
+ "introduction": "Home Assistant-ի որոշ մասեր կարող են վերբեռնվել առանց վերագործարկման (restart): Սեղմելով վերաբեռնել կոճակը ընթացիկ կարգավորումը կփոխարինվի նորով։",
+ "scene": "Վերբեռնել տեսարանները",
+ "script": "Վերբեռնել սցենարներ"
+ },
+ "server_management": {
+ "confirm_restart": "Համոզվա՞ծ եք, որ ցանկանում եք վերագործարկել Home Assistant-ը?",
+ "confirm_stop": "Համոզվա՞ծ եք, որ ցանկանում եք դադարեցնել Home Assistant-ը?",
+ "heading": "Սերվերի կառավարում",
+ "introduction": "Վերահսկեք ձեր Home Assistant սերվերը… Home Assistant-ից:",
+ "restart": "Վերսկսել",
+ "stop": "Դադարեցնել"
+ },
+ "validation": {
+ "check_config": "Ստուգել կարգավուրումը",
+ "heading": "Կարգավորման վավերացում",
+ "introduction": "Եթե վերջերս որոշ փոփոխություններ եք կատարել ձեր կարգավորման մեջ, համոզվեք, որ այդ ամենը վավեր է։",
+ "invalid": "Կարգավուրումը անվավեր է",
+ "valid": "Կարգավուրումը վավեր է"
+ }
+ }
+ },
+ "users": {
+ "add_user": {
+ "caption": "Ավելացնել օգտվող",
+ "create": "Ստեղծել",
+ "password": "Գաղտնաբառ"
+ },
+ "caption": "Օգտագործողներ",
+ "description": "Կառավարեք օգտվողներին",
+ "editor": {
+ "activate_user": "Ակտիվացրեք օգտագործողին",
+ "active_tooltip": "Վերահսկում է, եթե օգտագործողը կարող է մուտք գործել",
+ "caption": "Տեսնել օգտագործողին",
+ "change_password": "Փոխել գաղտնաբառը",
+ "deactivate_user": "Ապաակտիվացնել օգտագործողին",
+ "delete_user": "հեռացնել օգտագործողին"
+ }
+ },
+ "zha": {
+ "add_device_page": {
+ "spinner": "ZHA Zigbee սարքերի որոնում …"
+ }
+ },
+ "zwave": {
+ "common": {
+ "index": "Ինդեքս",
+ "instance": "Օրինակ",
+ "unknown": "հայտնի չէ",
+ "value": "Արժեք",
+ "wakeup_interval": "Արթնանալու ինտերվալ"
+ },
+ "description": "Կառավարել Z-Wave ցանցը",
+ "network_management": {
+ "header": "Z-Wave ցանցի կառավարում",
+ "introduction": "Գործարկել հրամաններ, որոնք ազդում են Z-Wave ցանցի վրա: Դուք չեք ստանա հետադարձ կապ այն մասին, թե արդյոք հրամանների մեծ մասը հաջողվել է, բայց կարող եք ստուգել OZW տեղեկամատյանները ` պարզելու համար"
+ },
+ "network_status": {
+ "network_started": "Մեկնարկեց Z-Wave ցանցը",
+ "network_started_note_all_queried": "Բոլոր հանգույցներին հարցում ուղարկված են:",
+ "network_started_note_some_queried": "Արթնացնող հանգույցները հարցվել են: Քնած հանգույցները կզգան, երբ նրանք արթնանան:",
+ "network_starting": "Մեկնարկվում է Z-Wave ցանցը …",
+ "network_starting_note": "Սա կարող է որոշ ժամանակ տևել `կախված ձեր ցանցի չափից:",
+ "network_stopped": "Z-wave ցանցը դադարեցված է"
+ },
+ "node_config": {
+ "config_parameter": "կարգավորման պարամետր",
+ "config_value": "Կարգավորման արժեք",
+ "false": "False",
+ "header": "Node-ի կարգավորման տարբերակներ",
+ "seconds": "վայրկյաններ",
+ "set_config_parameter": "Սահմանեք կարգավորման պարամետր",
+ "set_wakeup": "Սահմանել արթնանալու ինտերվալ",
+ "true": "True"
+ },
+ "services": {
+ "add_node": "Ավելացնել հանգույց",
+ "add_node_secure": "Ավելացնել անվտանգ հանգույց",
+ "cancel_command": "Չեղարկել հրամանը",
+ "heal_network": "Բուժել ցանցը",
+ "remove_node": "Ջնգել հանգույցը",
+ "save_config": "Պահպանել կարգավուրումը",
+ "soft_reset": "Թեթև վերագործարկել",
+ "start_network": "Միացնել ցանցը",
+ "stop_network": "Անջատել ցանցը",
+ "test_network": "Փորձարկել ցանը"
+ },
+ "values": {
+ "header": "Հանգույցի արժեքները"
+ }
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "title": "Իրադարձություններ"
+ },
+ "services": {
+ "title": "Սերվիսներ"
+ },
+ "states": {
+ "title": "Իրավիճակներ"
+ },
+ "templates": {
+ "title": "Ձևանմուշ"
+ }
+ }
+ },
+ "lovelace": {
+ "cards": {
+ "empty_state": {
+ "go_to_integrations_page": "Անցնել ինտեգրման էջ",
+ "no_devices": "Այս էջը թույլ է տալիս վերահսկել ձեր սարքերը։ սակայն, կարծես, դեռ տեղադրված չեք: Սկսեք ինտեգրման էջը `սկսելու համար:",
+ "title": "Բարի գալուստ տուն"
+ },
+ "picture-elements": {
+ "call_service": "Զանգի ծառայություն {name}",
+ "hold": "Պահել",
+ "more_info": "Ցույց տալ-ինֆո\": {անուն}",
+ "navigate_to": "Գնալ դեպի {location}",
+ "tap": "սեղմեք",
+ "toggle": "Փոխարկել {name}"
+ },
+ "shopping-list": {
+ "add_item": "Ավելացնել իրը",
+ "checked_items": "Ստուգված իրեր",
+ "clear_items": "Մաքրել ստուգված իրերը"
+ }
+ },
+ "changed_toast": {
+ "message": "Lovelace կարգավորումը թարմացվել է, կցանկանայի՞ք թարմացնել UI-ը:"
+ },
+ "editor": {
+ "edit_card": {
+ "add": "Ավելացնել քարտ",
+ "delete": "Հեռացնել",
+ "edit": "Խմբագրել",
+ "header": "Քարտի կարգավորում",
+ "move": "Տեղափոխել",
+ "pick_card": "Ընտրեք այն քարտը, որը ցանկանում եք ավելացնել:",
+ "toggle_editor": "Միացրեք խմբագրելը"
+ },
+ "edit_lovelace": {
+ "explanation": "Այս վերնագիրը ցույց է տրված Lovelace-ի ձեր բոլոր view-երում",
+ "header": "Ձեր Lovelace UI- ի վերնագիր"
+ },
+ "edit_view": {
+ "add": "Ավելացնել տեսք",
+ "delete": "Հեռացնել դիտումը",
+ "edit": "Խմբագրել տեսքը",
+ "header": "Դիտեք կարգավուրումը"
+ },
+ "header": "Խմբագրել UI",
+ "menu": {
+ "raw_editor": "Հում կազմաձևման խմբագիր"
+ },
+ "migrate": {
+ "header": "Կարգավուրումը անհամատեղելի է",
+ "migrate": "Տեղափոխել կարգավորումը",
+ "para_migrate": "Տնային օգնականը կարող է ինքնուրույն ավելացնել ID- ի բոլոր քարտերը և դիտումները `սեղմելով« Միգրացիայի կազմաձևման »կոճակը:",
+ "para_no_id": "Այս տարրը ID չունի: Խնդրում ենք ID- ին ավելացնել 'ui-lovelace.yaml' մեջ:"
+ },
+ "raw_editor": {
+ "header": "Խմբագրել կարգավորումը",
+ "save": "Պահպանել",
+ "saved": "Պահպանված",
+ "unsaved_changes": "Չփրկված փոփոխություններ"
+ },
+ "save_config": {
+ "header": "Վերցրեք ձեր Lovelace UI- ն",
+ "para": "Տնային օգնականը կպահպանի ձեր ինտերֆեյսը ՝ այն թարմացնելով, երբ հասանելի լինեն նոր սուբյեկտները կամ Lovelace բաղադրիչները: Եթե դուք ստանձնեք վերահսկողություն, մենք այլևս ինքնաբերաբար փոփոխություններ չենք անի ձեզ համար:",
+ "para_sure": "Համոզվա՞ծ եք, որ ցանկանում եք ստանձնել ձեր UI-ի թարմացման պարտավորությունը:",
+ "save": "Վերահսկել"
+ }
+ },
+ "menu": {
+ "configure_ui": "Կարգավորել UI- ն",
+ "help": "Օգնություն"
+ },
+ "reload_lovelace": "Վերաբեռնել Lovelace-ն",
+ "warning": {
+ "entity_non_numeric": "Կազմակերպությունը ոչ թվային է. {entity} Անձ {entity}",
+ "entity_not_found": "Անունը հասանելի չէ. {entity}"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Ջնջել",
+ "delete_prompt": "Ջնջել այս հաղորդագրությունը? ",
+ "empty": "Դուք չունեք որեւէ հաղորդագրությունները",
+ "playback_title": "Հաղորդագրության նվագարկում"
+ },
+ "page-authorize": {
+ "abort_intro": "Մուտք ընդհատվել",
+ "authorizing_client": "Դուք պատրաստվում եք {clientId} մուտք գործել ձեր տան օգնականի օրինակ:",
+ "form": {
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "նիստն ավարտվեց,խնդրում ենք կրկին մուտք գործեք"
+ },
+ "error": {
+ "invalid_auth": "Սխալ մուտքանուն կամ գաղտնաբառ",
+ "invalid_code": "Նույնականացման կոդը սխալ է"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "գաղտնաբառ",
+ "username": "Օգտագործողի անունը"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Երկու գործողությամբ նույնականացման կոդ"
+ },
+ "description": "Ձեր սարքի վրա բացեք{mfa_module_name}** ,․երկու գործողությամբ հաստատեք ձեր կոդը և ինքնությունը"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Նիստն ավարտվեց, խնդրում ենք կրկին մուտք գործեք:"
+ },
+ "error": {
+ "invalid_auth": "Մուտքանունը կամ գաղտնաբառը սխալ է",
+ "invalid_code": "Անվավեր նույնականացման կոդ"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Գաղտնաբառ",
+ "username": "Օգտագործողի անունը"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Երկու գործոնով նույնականացման կոդ"
+ },
+ "description": "Բացեք ** {mfa_module_name} ** սարքը , դիտեք ձեր ծածկագիրը և ինքնությունը, հաստատեք այն."
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Նիստն ավարտվեց,խնդրում ենք նորից մուտք գործել",
+ "no_api_password_set": "Դուք API գաղտնաբառով կարգավորումներ չունեք\n՛"
+ },
+ "error": {
+ "invalid_auth": " API գաղտնաբառը անվավեր է",
+ "invalid_code": "Սխալ նույնականացման կոդ"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "API գաղտնաբառ"
+ },
+ "description": "Խնդրում ենք մուտքագրել API գաղտնաբառը ձեր http կարգաձևում"
+ },
+ "mfa": {
+ "data": {
+ "code": "Երկու գործոնով նույնականացման կոդ"
+ },
+ "description": "Բացել **{mfa_module_name}** ցարքը, երկու գործողությամբ հաստատել նույնականացման կոդը և ինքնությունը"
+ }
+ }
+ },
+ "trusted_networks": {
+ "step": {
+ "init": {
+ "data": {
+ "user": "Օգտագործող"
+ },
+ "description": "Խնդրում ենք ընտրել օգտագործողին, որպես որի ցանկանում եք մուտք գործել"
+ }
+ }
+ }
+ },
+ "unknown_error": "Ինչ որ բան այնպես չգնաց",
+ "working": "Խնդրում ենք սպասել"
+ },
+ "initializing": "Նախաձեռնող",
+ "logging_in_with": "Մուտք {authProviderName} ** {authProviderName} **-ի հետ:",
+ "pick_auth_provider": "Կամ մուտք գործել"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "{name}-ի կողմից",
+ "introduction": "Բարի գալուստ տուն! Դուք տեսնում եք Home Assistant-ի ցուցադրումը, որտեղ մենք ցուցադրում ենք մեր community-ի կողմից ստեղծված լավագույն UI- ները:",
+ "learn_more": "Իմացեք ավելին Home Assistant-ի մասին",
+ "next_demo": "Հաջորդ ցուցադրումը"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Գործունեություն",
+ "air": "Օդ",
+ "commute_home": "Հասնել տուն",
+ "entertainment": "Ժամանց",
+ "hdmi_input": "HDMI մուտք",
+ "hdmi_switcher": "HDMI փոխարկիչ",
+ "information": "Տեղեկատվություն",
+ "lights": "Լույսեր",
+ "morning_commute": "Առավոտյան ուղևորություն",
+ "total_tv_time": "Հեռուստատեսության ընդհանուր ժամանակը",
+ "turn_tv_off": "Անջատել հեռուստացույցը",
+ "volume": "Ծավալ"
+ },
+ "names": {
+ "family_room": "Ընտանեկան սենյակ",
+ "hallway": "Միջանցք",
+ "kitchen": "Խոհանոց",
+ "left": "Ձախ",
+ "master_bedroom": "Գլխավոր ննջասենյակ",
+ "mirror": "Հայելի",
+ "patio": "Բակում",
+ "right": "Ճիշտ",
+ "upstairs": "Վերևում"
+ },
+ "unit": {
+ "minutes_abbr": "րոպե",
+ "watching": "դիտում"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "core-config": {
+ "button_detect": "Հայտնաբերել",
+ "finish": "Հաջորդը",
+ "intro": "Բարեւ {name}, բարի գալուստ տնային օգնականի. Ինչպես եք ցանկանում անվանել ձեր տունը?",
+ "intro_location": "Մենք ցանկանում ենք իմանալ, թե որտեղ եք ապրում. Այս տեղեկատվությունը կօգնի կարգավորել արեւի հիման վրա ավտոմատացումը։. Այս տվյալները երբեք չեն տարածվում ձեր ցանցից դուրս.",
+ "intro_location_detect": "Մենք կարող ենք օգնել ձեզ լրացնել այս տեղեկատվությունը` արտաքին սերվիսով մեկ անգամյա հարցում ուղարկելով:",
+ "location_name_default": "Տուն"
+ },
+ "integration": {
+ "finish": "Ավարտել",
+ "intro": "Սարքերը և սերվիսները ներկայացված են Home Assistant-ում որպես ինտեգրացիաներ: Կարող եք դրանք հիմա կարգավորել կամ դա անել ավելի ուշ ՝ կարգավորման էկրանից:",
+ "more_integrations": "Ավելին"
+ },
+ "intro": "Պատրա՞ստ եք արթնացնել ձեր տունը, վերականգնել ձեր գաղտնիությունը և միանալ մրջազգային հանրությանը?",
+ "user": {
+ "create_account": "Գրանցվել",
+ "data": {
+ "name": "Անուն",
+ "password": "Գաղտնաբառ",
+ "password_confirm": "Հաստատել գաղտնաբառը",
+ "username": "Օգտագործողի անունը"
+ },
+ "error": {
+ "password_not_match": "Գաղտնաբառերը չեն համընկնում",
+ "required_fields": "Լրացրեք բոլոր պահանջվող դաշտերը"
+ },
+ "intro": "Սկսենք ՝ ստեղծելով օգտվողի հաշիվ:",
+ "required_field": "Պահանջվում է"
+ }
+ },
+ "profile": {
+ "change_password": {
+ "confirm_new_password": "Հաստատեք նոր գաղտնաբառ",
+ "current_password": "Ընթացիկ գաղտնաբառ",
+ "error_new_is_old": "Նոր գաղտնաբառը պետք է տարբերվի ներկայիս գաղտնաբառից",
+ "error_new_mismatch": "Գաղտնաբառերը չեն համընկնում",
+ "error_required": "Պահանջվում է",
+ "header": "Փոխել գաղտնաբառը",
+ "new_password": "Նոր գաղտնաբառը",
+ "submit": "Ներկայացնել",
+ "success": "Գաղտնաբառը հաջողությամբ փոխվեց"
+ },
+ "current_user": "Դուք մուտք եք գործել որպես {fullName} :",
+ "force_narrow": {
+ "description": "Սա թաքցնում է sidebar*ը ,ինչպես բջջային հեռախոսներում",
+ "header": "Միշտ թաքցրեք կողային գոտին(sidebar)"
+ },
+ "is_owner": "Դուք սեփականատեր եք:",
+ "language": {
+ "dropdown_label": "Լեզու",
+ "header": "Լեզու",
+ "link_promo": "Օգնեք թարգմանել"
+ },
+ "logout": "Դուրս գալ",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Համոզվա՞ծ եք, որ ցանկանում եք ջնջել մուտքի նշանը {name} :",
+ "create": "Ստեղծել Մարկեր",
+ "create_failed": "Չի հաջողվեց ստեղծել մուտքի թույլտվություն:",
+ "delete_failed": "Չհաջողվեց ջնջել մուտքի նշանը:",
+ "description": "Ստեղծեք երկարատև մուտքի նշաններ, որպեսզի ձեր սցենարները փոխազդեն ձեր Տնային օգնականի օրինակով: Յուրաքանչյուր նշան ուժի մեջ կլինի ստեղծման պահից 10 տարի: Հետևաբար երկարատև մուտքի նշաններն այժմ ակտիվ են:",
+ "empty_state": "չունեք մուտքի նշաններ:",
+ "header": "Երկարատև մուտքի նշաններ",
+ "learn_auth_requests": "Իմացեք, թե ինչպես անել վավերացման հարցում.",
+ "prompt_copy_token": "Պատճենեք ձեր մուտքի նշանը: Այն կրկին չի ցուցադրվի:",
+ "prompt_name": "Անուն?"
+ },
+ "mfa": {
+ "confirm_disable": "Համոզվա՞ծ եք, որ ուզում եք անջատել {name} :",
+ "disable": "Անջատել",
+ "enable": "Միացնել",
+ "header": "Բազմաֆունկցիոնալ նույնականացման մոդուլներ"
+ },
+ "mfa_setup": {
+ "close": "փակել",
+ "step_done": "Կարգավորումը կատարվել է {step}",
+ "submit": "Ներկայացնել",
+ "title_aborted": "Վիժեցված",
+ "title_success": "Հաջողություն:"
+ },
+ "push_notifications": {
+ "description": "Ուղարկեք ծանուցումներ այս սարքին:",
+ "error_load_platform": "Ստեղծել ծանուցման:է HTML5.",
+ "error_use_https": "Պահանջում է SSL- ին միացված լուսադիտակի համար:",
+ "header": "Հրել ծանուցումները",
+ "link_promo": "Իմանալ ավելին",
+ "push_notifications": "Հրել ծանուցումները"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Համոզվա՞ծ եք, որ ցանկանում եք ջնջել թարմացման նշանը {name} :",
+ "created_at": "Ստեղծվել է {ամսաթիվ}",
+ "current_token_tooltip": "Հնարավոր չէ ջնջել ընթացիկ թարմացման նշանը",
+ "delete_failed": "Չհաջողվեց ջնջել թարմացման նշանը:",
+ "description": "Թարմացման յուրաքանչյուր նշանը ներկայացնում է մուտքի նստաշրջան: Թարմացնել նշանները ավտոմատ կերպով կհանվեն, երբ կտտացրեք դուրս գալը: Հետևյալ թարմացման նշանները ներկայումս ակտիվ են ձեր հաշվի համար:",
+ "header": "Թարմացման token",
+ "last_used": "Վերջին անգամ օգտագործվել է {date} ից {location}",
+ "not_used": "Երբեք չի օգտագործվել",
+ "token_title": "Թարմացման token {clientId}-ի համար"
+ },
+ "themes": {
+ "dropdown_label": "Թեմա",
+ "error_no_theme": "Չկան թեմաներ",
+ "header": "Թեմա",
+ "link_promo": "Իմացեք թեմաների մասին"
+ }
+ }
+ },
+ "sidebar": {
+ "external_app_configuration": "Ծրագրի կարգավորում"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/id.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/id.json
new file mode 100644
index 00000000..21640729
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/id.json
@@ -0,0 +1,4628 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Entri konfigurasi",
+ "device": "Perangkat",
+ "integration": "Integrasi",
+ "user": "Pengguna"
+ }
+ },
+ "groups": {
+ "owner": "Pemilik",
+ "system-admin": "Administrator",
+ "system-read-only": "Pengguna Hanya-Baca",
+ "system-users": "Pengguna"
+ },
+ "panel": {
+ "calendar": "Kalender",
+ "config": "Konfigurasi",
+ "developer_tools": "Alat Pengembang",
+ "energy": "Energi",
+ "history": "Riwayat",
+ "logbook": "Catatan Log",
+ "mailbox": "Kotak Pesan",
+ "map": "Peta",
+ "media_browser": "Browser Media",
+ "profile": "Profil",
+ "shopping_list": "Daftar Belanja",
+ "states": "Ikhtisar"
+ },
+ "state": {
+ "default": {
+ "off": "Mati",
+ "on": "Nyala",
+ "unavailable": "Tidak tersedia",
+ "unknown": "Tidak diketahui"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Otomatis",
+ "off": "Mati",
+ "on": "Nyala"
+ },
+ "hvac_action": {
+ "cooling": "Mendinginkan",
+ "drying": "Mengeringkan",
+ "fan": "Kipas",
+ "heating": "Memanaskan",
+ "idle": "Diam",
+ "off": "Mati"
+ },
+ "preset_mode": {
+ "activity": "Aktivitas",
+ "away": "Keluar",
+ "boost": "Kencang",
+ "comfort": "Nyaman",
+ "eco": "Eco",
+ "home": "Rumah",
+ "none": "Tidak ada",
+ "sleep": "Tidur"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Otomatis",
+ "away": "Keluar",
+ "baby": "Bayi",
+ "boost": "Kencang",
+ "comfort": "Nyaman",
+ "eco": "Eco",
+ "home": "Rumah",
+ "normal": "Normal",
+ "sleep": "Tidur"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Diaktifkan",
+ "armed_away": "Diaktifkan",
+ "armed_custom_bypass": "Diaktifkan",
+ "armed_home": "Diaktifkan",
+ "armed_night": "Diaktifkan",
+ "armed_vacation": "Diaktifkan",
+ "arming": "Mengaktifkan",
+ "disarmed": "Nonaktif",
+ "disarming": "Nonaktif",
+ "pending": "Tunda",
+ "triggered": "Picu"
+ },
+ "default": {
+ "entity_not_found": "Entitas tidak ditemukan",
+ "error": "Kesalahan",
+ "unavailable": "Tak Tersedia",
+ "unknown": "Tak Diketahui"
+ },
+ "device_tracker": {
+ "home": "Rumah",
+ "not_home": "Keluar"
+ },
+ "person": {
+ "home": "Rumah",
+ "not_home": "Keluar"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Bawaan",
+ "header": "Audio",
+ "input": "Input",
+ "output": "Output"
+ },
+ "network": {
+ "container": "Kontainer",
+ "disabled": "Dinonaktifkan",
+ "header": "Jaringan",
+ "host": "Host"
+ },
+ "no_configuration": "Add-on ini tidak memaparkan konfigurasi untuk Anda utak-atik…",
+ "options": {
+ "edit_in_ui": "Edit lewat Antarmuka",
+ "edit_in_yaml": "Edit sebagai YAML",
+ "header": "Opsi",
+ "invalid_yaml": "YAML tidak valid",
+ "show_unused_optional": "Tampilkan opsi konfigurasi opsional yang tidak digunakan"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Gagal mendapatkan log perubahan add-on",
+ "go_to_config": "Gagal memulai add-on - validasi konfigurasi gagal!",
+ "install": "Gagal menginstal add-on",
+ "restart": "Gagal memulai ulang add-on",
+ "start": "Gagal memulai add-on",
+ "start_invalid_config": "Buka konfigurasi",
+ "stop": "Gagal menghentikan add-on",
+ "uninstall": "Gagal mencopot add-on",
+ "validate_config": "Gagal memvalidasi konfigurasi add-on"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor ('Application Armor') merupakan modul keamanan kernel Linux yang membatasi kemampuan add-on seperti akses jaringan, akses soket mentah, dan izin untuk membaca, menulis, atau mengeksekusi file tertentu. \n\nPenulis add-on dapat menyediakan profil keamanan mereka, yang dioptimalkan untuk add-on, atau memintanya untuk dinonaktifkan. Jika AppArmor dinonaktifkan, hal ini akan meningkatkan risiko keamanan sehingga berdampak negatif pada skor keamanan add-on.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "Add-on dapat mengautentikasi pengguna lewat Home Assistant, sehingga pengguna dapat masuk ke aplikasi mereka yang berjalan di dalam add-on dengan menggunakan nama pengguna/kata sandi Home Assistant mereka. Lencana ini menunjukkan bahwa pembuat add-on meminta kemampuan ini.",
+ "title": "Autentikasi Home Assistant"
+ },
+ "docker_api": {
+ "description": "Penulis add-on telah meminta add-on untuk memiliki akses manajemen ke instans Docker yang berjalan di sistem Anda. Mode ini memberi add-on akses dan kontrol penuh ke seluruh sistem Home Assistant Anda, yang meningkatkan risiko keamanan dan dapat merusak sistem Anda jika disalahgunakan. Oleh karena itu, fitur ini berdampak negatif pada skor keamanan add-on. \n\nTingkat akses ini tidak diberikan secara otomatis dan harus Anda konfirmasikan terlebih dulu. Untuk melakukannya, Anda perlu menonaktifkan mode perlindungan pada add-on secara manual. Nonaktifkan mode perlindungan hanya jika Anda benar-benar berpengalaman, membutuhkan, DAN mempercayai sumber add-on ini.",
+ "title": "Akses Docker Penuh"
+ },
+ "full_access": {
+ "description": "Add-on ini telah diberikan akses penuh ke perangkat keras sistem Anda atas permintaan penulis add-on. Akses ini sebanding dengan mode istimewa di Docker. Karena hal ini membuka kemungkinan risiko keamanan, fitur ini berdampak negatif pada skor keamanan add-on. \n\nTingkat akses ini tidak diberikan secara otomatis dan harus Anda konfirmasikan terlebih dulu. Untuk melakukannya, Anda perlu menonaktifkan mode perlindungan pada add-on secara manual. Nonaktifkan mode perlindungan hanya jika Anda benar-benar berpengalaman, membutuhkan, DAN mempercayai sumber add-on ini.",
+ "title": "Akses Perangkat Keras Penuh"
+ },
+ "hassio_api": {
+ "description": "Add-on diberi akses ke API Supervisor, atas permintaan penulis add-on. Secara baku, add-on dapat mengakses informasi versi umum sistem Anda. Saat add-on meminta akses level 'manajer' atau 'admin' ke API, add-on tersebut akan mendapatkan akses untuk mengontrol beberapa bagian sistem Home Assistant Anda. Izin ini ditunjukkan oleh lencana ini dan akan berdampak negatif pada skor keamanan add-on.",
+ "title": "Akses API Supervisor"
+ },
+ "homeassistant_api": {
+ "description": "Add-on ini diizinkan untuk mengakses instans Home Assistant Anda yang sedang berjalan secara langsung melalui API Home Assistant. Mode ini juga menangani autentikasi untuk add-on, yang memungkinkan add-on berinteraksi dengan Home Assistant tanpa memerlukan token autentikasi tambahan.",
+ "title": "Akses API Home Assistant"
+ },
+ "host_network": {
+ "description": "Add-on biasanya berjalan di lapisan jaringannya sendiri yang terisolasi, yang mencegahnya mengakses jaringan sistem operasi host. Dalam beberapa kasus, isolasi jaringan ini dapat membatasi add-on dalam menyediakan layanannya dan oleh karena itu, izin isolasi tersebut dapat dicabut oleh pembuat add-on, sehingga memberikan akses penuh add-on ke kemampuan jaringan mesin host. Ini memberi add-on lebih banyak kemampuan jaringan tetapi menurunkan tingkat keamanan. Oleh karena itu, peringkat keamanan add-on akan diturunkan ketika opsi ini digunakan oleh add-on.",
+ "title": "Jaringan Host"
+ },
+ "host_pid": {
+ "description": "Pada umumnya, proses add-on yang berjalan diisolasi dari semua proses sistem lainnya. Penulis add-on telah meminta add-on untuk memiliki akses ke proses sistem yang berjalan pada instans sistem host, dan mengizinkan add-on untuk juga menelurkan proses pada sistem host. Mode ini memberi add-on akses dan kontrol penuh ke seluruh sistem Home Assistant Anda, yang meningkatkan risiko keamanan dan dapat merusak sistem Anda jika disalahgunakan. Oleh karena itu, fitur ini berdampak negatif pada skor keamanan add-on. \n\nTingkat akses ini tidak diberikan secara otomatis dan harus Anda konfirmasikan terlebih dulu. Untuk melakukannya, Anda perlu menonaktifkan mode perlindungan pada add-on secara manual. Nonaktifkan mode perlindungan hanya jika Anda benar-benar berpengalaman, membutuhkan, DAN mempercayai sumber add-on ini.",
+ "title": "Namespace Proses Host"
+ },
+ "ingress": {
+ "description": "Add-on ini menggunakan Ingress untuk menyematkan antarmukanya dengan aman ke Home Assistant.",
+ "title": "Ingress"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "autentikasi",
+ "core": "Core",
+ "docker": "docker",
+ "hardware": "perangkat keras",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "host",
+ "host_pid": "pid host",
+ "ingress": "ingress",
+ "rating": "peringkat",
+ "stage": "tahap"
+ },
+ "rating": {
+ "description": "Home Assistant memberikan peringkat keamanan untuk setiap add-on, yang menunjukkan risiko yang terlibat saat menggunakan add-on ini. Semakin banyak akses yang diperlukan add-on pada sistem Anda, semakin rendah skornya, sehingga meningkatkan kemungkinan risiko keamanan. \n\nSkor diberikan dalam skala dari 1 hingga 6. Skor 1 adalah skor terendah (dianggap paling tidak aman dan berisiko tertinggi) dan skor 6 adalah skor tertinggi (dianggap paling aman dan berisiko terendah).",
+ "title": "Peringkat Keamanan Add-on"
+ },
+ "role": {
+ "admin": "admin",
+ "backup": "cadangan",
+ "default": "bawaan",
+ "homeassistant": "homeassistant",
+ "manager": "manajer"
+ },
+ "stage": {
+ "description": "Add-on dapat memiliki salah satu dari tiga tahap:\n\n{icon_stable} **Stabil**: Ini adalah add-on yang siap digunakan dalam produksi.\n\n{icon_experimental} **Eksperimental**: Ini mungkin mengandung bug, dan mungkin pengembangannya belum selesai.\n\n{icon_deprecated} **Tidak digunakan lagi**: Add-on ini tidak akan lagi menerima pembaruan apa pun.",
+ "title": "Tahap Add-On"
+ },
+ "stages": {
+ "deprecated": "Usang",
+ "experimental": "Eksperimental"
+ }
+ },
+ "changelog": "Log Perubahan",
+ "cpu_usage": "Penggunaan CPU Add-On",
+ "hostname": "Nama Host",
+ "install": "instal",
+ "new_update_available": "{name} {version} tersedia",
+ "not_available_arch": "Add-on ini tidak kompatibel dengan prosesor perangkat Anda atau sistem operasi yang Anda instal di perangkat.",
+ "not_available_version": "Anda menjalanan Home Assistant {core_version_installed}. Untuk memperbarui ke versi add-on ini, Anda memerlukan Home Assistant setidaknya versi {core_version_needed}",
+ "open_web_ui": "Buka antarmuka web",
+ "option": {
+ "auto_update": {
+ "description": "Perbarui add-on secara otomatis jika tersedia versi baru",
+ "title": "Pembaruan otomatis"
+ },
+ "boot": {
+ "description": "Mulai add-on ketika boot sistem",
+ "title": "Mulai saat boot"
+ },
+ "ingress_panel": {
+ "description": "Tambahkan add-on ini ke bilah samping Anda",
+ "title": "Tampilkan di bilah samping"
+ },
+ "protected": {
+ "description": "Memblokir akses sistem yang ditingkatkan dari add-on",
+ "title": "Mode perlindungan"
+ },
+ "watchdog": {
+ "description": "Ini akan memulai add-on jika macet",
+ "title": "Watchdog"
+ }
+ },
+ "protection_mode": {
+ "content": "Mode proteksi pada add-on ini telah dinonaktifkan! Ini memberikan akses penuh add-on ke seluruh sistem, yang meningkatkan risiko keamanan dan dapat merusak sistem Anda jika digunakan dengan tidak benar. Hanya nonaktifkan mode perlindungan jika Anda benar-benar berpengalaman, membutuhkan, DAN mempercayai sumber add-on ini.",
+ "enable": "Aktifkan",
+ "title": "Mode perlindungan dinonaktifkan!"
+ },
+ "ram_usage": "Penggunaan RAM Add-on",
+ "rebuild": "bangun kembali",
+ "restart": "mulai ulang",
+ "start": "mulai",
+ "stop": "hentikan",
+ "uninstall": "copot instalasi",
+ "visit_addon_page": "Kunjungi halaman {name} untuk mendapatkan detail lebih lanjut"
+ },
+ "documentation": {
+ "get_documentation": "Gagal mendapatkan dokumentasi add-on, {error}"
+ },
+ "failed_to_reset": "Gagal menyetel ulang konfigurasi add-on, {error}",
+ "failed_to_save": "Gagal menyimpan konfigurasi add-on, {error}",
+ "logs": {
+ "get_logs": "Gagal mendapatkan log add-on, {error}"
+ },
+ "panel": {
+ "configuration": "Konfigurasi",
+ "documentation": "Dokumentasi",
+ "info": "Info",
+ "log": "Log"
+ },
+ "state": {
+ "installed": "Add-on diinstal",
+ "not_available": "Add-on tidak tersedia di sistem Anda",
+ "not_installed": "Add-on tidak diinstal"
+ }
+ },
+ "backup": {
+ "addons": "Add-on",
+ "confirm_password": "Konfirmasi kata sandi cadangan",
+ "could_not_create": "Tidak dapat membuat cadangan",
+ "create": "Buat",
+ "create_backup": "Buat cadangan",
+ "create_blocked_not_running": "Pembuatan cadangan tidak dapat dilakukan saat ini karena sistem dalam keadaan {state} .",
+ "created": "Dibuat",
+ "delete_backup_confirm": "hapus",
+ "delete_backup_text": "Ingin menghapus {number} {number, plural,\n one {cadangan}\n other {cadangan}\n}?",
+ "delete_backup_title": "Hapus cadangan",
+ "delete_selected": "Hapus cadangan yang dipilih",
+ "enter_password": "Masukkan kata sandi.",
+ "failed_to_delete": "Gagal menghapus",
+ "folders": "Folder",
+ "full_backup": "Cadangan lengkap",
+ "name": "Nama cadangan",
+ "no_backups": "Anda belum memiliki cadangan.",
+ "partial_backup": "Cadangan parsial",
+ "password": "Kata sandi cadangan",
+ "password_protection": "Perlindungan kata sandi",
+ "passwords_not_matching": "Kata sandi tidak cocok",
+ "select_type": "Pilih yang akan dipulihkan",
+ "selected": "{number} dipilih",
+ "type": "Jenis cadangan",
+ "upload_backup": "Unggah cadangan"
+ },
+ "common": {
+ "cancel": "Batalkan",
+ "close": "Tutup",
+ "description": "Deskripsi",
+ "error": {
+ "unknown": "Kesalahan yang tidak diketahui",
+ "update_failed": "Proses pembaruan gagal"
+ },
+ "failed_to_restart_name": "Gagal memulai ulang {name}",
+ "failed_to_update_name": "Gagal memperbarui {name}",
+ "learn_more": "Pelajari lebih lanjut",
+ "menu": "Menu",
+ "new_version_available": "Versi baru tersedia",
+ "newest_version": "Versi Terbaru",
+ "no": "Tidak",
+ "refresh": "Segarkan",
+ "release_notes": "Catatan rilis",
+ "reload": "Muat ulang",
+ "reset_defaults": "Setel ulang ke bawaan",
+ "reset_options": "Atur ulang opsi",
+ "restart": "Mulai ulang",
+ "restart_name": "Mulai ulang {name}",
+ "review": "tinjau",
+ "running_version": "Anda sedang menjalankan versi {version}",
+ "save": "Simpan",
+ "show": "tampilkan",
+ "show_more": "Tampilkan info lebih lanjut tentang ini",
+ "update": "Perbarui",
+ "update_available": "{count, plural,\n one {Pembaruan}\n other {{count} Pembaruan}\n} tertunda",
+ "version": "Versi:",
+ "yes": "Ya"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Yakin ingin mengatur ulang semua opsi Anda?",
+ "title": "Atur ulang opsi"
+ },
+ "restart": {
+ "text": "Yakin ingin memulai ulang {name}?",
+ "title": "Mulai ulang {name}"
+ },
+ "update": {
+ "text": "Yakin ingin memperbarui {name} ke versi {version}?",
+ "title": "Perbarui {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Versi baru tersedia",
+ "addon_running": "Add-on sedang berjalan",
+ "addon_stopped": "Add-on dihentikan",
+ "addons": "Add-on yang diinstal",
+ "no_addons": "Anda belum memasang add-on apa pun. Kunjungi toko add-on untuk memulai!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Batalkan",
+ "description": "Anda sedang menggunakan ''{current_path}'' sebagai datadisk. Memindahkan disk data akan memulai ulang perangkat Anda dan diperkirakan memakan waktu {time} menit. Instalasi Home Assistant Anda tidak akan dapat diakses selama periode ini. Jangan lepaskan daya selama proses pemindahan!",
+ "loading_devices": "Memuat perangkat",
+ "move": "Pindahkan",
+ "moving": "Memindahkan disk data",
+ "moving_desc": "Menghidupkan ulang dan memindahkan datadisk. Mohon tunggu",
+ "no_devices": "Tidak ditemukan perangkat terpasang yang cocok",
+ "select_device": "Pilih disk data baru",
+ "title": "Pindahkan disk data"
+ },
+ "hardware": {
+ "attributes": "Atribut",
+ "device_path": "Jalur perangkat",
+ "id": "ID",
+ "search": "Cari perangkat keras",
+ "subsystem": "Subsistem",
+ "title": "Perangkat keras"
+ },
+ "network": {
+ "connected_to": "Tersambung ke {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Dinonaktifkan",
+ "dns_servers": "Server DNS",
+ "failed_to_change": "Gagal mengubah pengaturan jaringan",
+ "gateway": "Alamat gateway",
+ "ip_netmask": "Alamat IP/Netmask",
+ "open": "Buka",
+ "scan_ap": "Pindai titik akses",
+ "static": "Statis",
+ "title": "Pengaturan jaringan",
+ "unsaved": "Anda memiliki perubahan yang belum disimpan, ini akan hilang jika Anda berpindah tab, yakin ingin melanjutkan?",
+ "warning": "Jika Anda mengubah alamat Wi-Fi, IP, atau gateway, Anda mungkin kehilangan koneksi!",
+ "wep": "WEP",
+ "wpa": "wpa-psk"
+ },
+ "registries": {
+ "add_new_registry": "Tambahkan registri baru",
+ "add_registry": "Tambahkan registri",
+ "failed_to_add": "Gagal menambahkan registri",
+ "failed_to_remove": "Gagal menghapus registri",
+ "no_registries": "Tidak ada registri yang dikonfigurasi",
+ "password": "Kata sandi",
+ "registry": "Registri",
+ "remove": "Hapus",
+ "title_add": "Tambahkan Registri Kontainer Baru",
+ "title_manage": "Kelola Registri Kontainer",
+ "username": "Nama pengguna"
+ },
+ "repositories": {
+ "add": "Tambahkan",
+ "remove": "Hapus",
+ "title": "Kelola repositori add-on",
+ "used": "Repositori sedang digunakan untuk add-on yang diinstal dan tidak dapat dihapus."
+ },
+ "restart_addon": {
+ "confirm_text": "Mulai ulang add-on",
+ "text": "Ingin memulai ulang add-on disertai perubahan Anda?"
+ },
+ "update": {
+ "backup": "Cadangan",
+ "create_backup": "Buat cadangan {name} sebelum memperbarui",
+ "creating_backup": "Membuat cadangan {name}",
+ "updating": "Memperbarui {name} ke versi {version}"
+ }
+ },
+ "my": {
+ "error": "Terjadi kesalahan yang tidak diketahui",
+ "error_addon_no_ingress": "Add-on yang diminta tidak mendukung ingress",
+ "error_addon_not_found": "Add-on tidak ditemukan",
+ "error_addon_not_installed": "Add-on yang diminta belum diinstal. Instal terlebih dahulu",
+ "error_addon_not_started": "Add-on yang diminta tidak berjalan. Jalankan terlebih dulu",
+ "faq_link": "FAQ Home Assistant Saya",
+ "not_supported": "Pengalihan ini tidak didukung oleh instans Home Assistant Anda. Periksa {link} tentang pengalihan yang didukung dan versi mana mulai diperkenalkan."
+ },
+ "panel": {
+ "addons": "Add-on",
+ "backups": "Cadangan",
+ "dashboard": "Dasbor",
+ "store": "Toko Add-on",
+ "system": "Sistem"
+ },
+ "store": {
+ "missing_addons": "Add-on tidak ada? Aktifkan mode tingkat lanjut di halaman profil pengguna Anda",
+ "no_results_found": "Tidak ada hasil yang ditemukan di {repository}.",
+ "registries": "Registri",
+ "repositories": "Repositori"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Penggunaan CPU Core",
+ "ram_usage": "Penggunaan RAM Core"
+ },
+ "host": {
+ "change": "Ubah",
+ "change_hostname": "Ubah Nama Host",
+ "confirm_reboot": "Yakin ingin me-reboot host?",
+ "confirm_shutdown": "Yakin ingin mematikan host?",
+ "deployment": "Penyebaran",
+ "docker_version": "Versi Docker",
+ "emmc_lifetime_used": "Waktu Hidup eMMC yang Digunakan",
+ "failed_to_get_hardware_list": "Gagal mendapatkan daftar perangkat keras",
+ "failed_to_import_from_usb": "Gagal mengimpor dari USB",
+ "failed_to_move": "Gagal memindahkan disk data",
+ "failed_to_reboot": "Gagal me-reboot host",
+ "failed_to_set_hostname": "Gagal menyetel nama host",
+ "failed_to_shutdown": "Gagal mematikan host",
+ "hardware": "Perangkat keras",
+ "hostname": "Nama host",
+ "import_from_usb": "Impor dari USB",
+ "ip_address": "Alamat IP",
+ "move_datadisk": "Pindahkan disk data",
+ "new_hostname": "Masukkan nama host baru:",
+ "operating_system": "Sistem Operasi",
+ "reboot_host": "Nyalakan ulang host",
+ "shutdown_host": "Matikan host",
+ "used_space": "Ruang yang digunakan"
+ },
+ "log": {
+ "get_logs": "Gagal mendapatkan log {provider}, {error}",
+ "log_provider": "Penyedia Log"
+ },
+ "supervisor": {
+ "beta_backup": "Pastikan Anda memiliki cadangan data sebelum mengaktifkan fitur ini.",
+ "beta_join_confirm": "Ingin bergabung dengan kanal beta?",
+ "beta_release_items": "Ini mencakup rilis beta untuk:",
+ "beta_warning": "Rilis beta diperuntukkan bagi penguji dan pengadopsi awal dan dapat berisi perubahan kode program yang tidak stabil",
+ "channel": "Kanal",
+ "cpu_usage": "Penggunaan CPU Supervisor",
+ "failed_to_reload": "Gagal memuat ulang Supervisor",
+ "failed_to_set_option": "Gagal menyetel opsi Supervisor",
+ "failed_to_update": "Gagal memperbarui Supervisor",
+ "join_beta_action": "Gabung dengan kanal beta",
+ "join_beta_description": "Dapatkan pembaruan beta untuk Home Assistant (RC), Supervisor, dan host",
+ "leave_beta_action": "Tinggalkan kanal beta",
+ "leave_beta_description": "Dapatkan pembaruan stabil untuk Home Assistant, Supervisor, dan host",
+ "ram_usage": "Penggunaan RAM Supervisor",
+ "reload_supervisor": "Muat Ulang Supervisor",
+ "search": "Cari",
+ "share_diagnostics": "Bagikan Diagnostik",
+ "share_diagnostics_description": "Bagikan laporan kerusakan dan informasi diagnostik.",
+ "share_diagonstics_description": "Apakah Anda ingin membagikan laporan kerusakan dan informasi diagnostik secara otomatis saat Supervisor menemukan kesalahan yang tidak terduga? {line_break} Ini akan memungkinkan kami memperbaiki masalah. Informasinya hanya dapat diakses oleh tim Home Assistant Core dan tidak akan dibagikan dengan orang lain. {line_break} Data tidak menyertakan informasi pribadi/sensitif dan Anda dapat menonaktifkannya di setelan kapan saja.",
+ "share_diagonstics_title": "Bantu Menyempurnakan Home Assistant",
+ "unhealthy_description": "Menjalankan penginstalan yang tidak sehat akan menyebabkan masalah. Di bawah ini adalah daftar masalah yang ditemukan pada instalasi Anda, klik pada tautan untuk mempelajari cara menyelesaikan masalah tersebut.",
+ "unhealthy_reason": {
+ "docker": "Lingkungan Docker tidak berfungsi dengan benar",
+ "privileged": "Supervisor tidak memiliki hak istimewa",
+ "setup": "Penyiapan Supervisor gagal",
+ "supervisor": "Supervisor tidak dapat memperbarui",
+ "untrusted": "Konten tidak tepercaya telah terdeteksi"
+ },
+ "unhealthy_title": "Instalasi Anda tidak sehat",
+ "unsupported_description": "Di bawah ini adalah daftar masalah yang ditemukan pada instalasi Anda, klik pada tautan untuk mempelajari cara menyelesaikan masalah tersebut.",
+ "unsupported_reason": {
+ "apparmor": "AppArmor tidak diaktifkan di host",
+ "container": "Kontainer diketahui menyebabkan masalah",
+ "content-trust": "Validasi kepercayaan konten dinonaktifkan",
+ "content_trust": "Validasi kepercayaan konten dinonaktifkan",
+ "dbus": "DBUS",
+ "docker_configuration": "Konfigurasi Docker",
+ "docker_version": "Versi Docker",
+ "job_conditions": "Kondisi pekerjaan yang diabaikan",
+ "lxc": "LXC",
+ "network_manager": "Manajer Jaringan",
+ "os": "Sistem Operasi",
+ "os_agent": "Agen OS",
+ "privileged": "Supervisor tidak memiliki hak istimewa",
+ "software": "Perangkat lunak yang tidak didukung terdeteksi",
+ "source_mods": "Modifikasi pada sumber",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Anda menjalankan instalasi yang tidak didukung",
+ "update_supervisor": "Perbarui Supervisor",
+ "warning": "PERINGATAN"
+ }
+ },
+ "update_available": {
+ "core_note": "Supervisor akan melakukan proses pengembalian ke versi {version} jika instans Anda tidak tersedia setelah pembaruan.",
+ "create_backup": "Buat cadangan sebelum memperbarui",
+ "creating_backup": "Membuat cadangan {name}",
+ "description": "Anda telah menginstal {version}. Klik perbarui untuk memperbarui ke versi {newest_version}",
+ "no_update": "Tidak ada pembaruan yang tersedia untuk {name}",
+ "open_release_notes": "Buka catatan rilis",
+ "update_name": "Perbarui {name}",
+ "updating": "Memperbarui {name} ke versi {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Ingin menyimpan login ini?",
+ "confirm": "Ya",
+ "decline": "Tidak"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Aktifkan utk keluar",
+ "arm_custom_bypass": "Diaktifkan khusus",
+ "arm_home": "Aktifkan utk di rumah",
+ "arm_night": "Aktifkan utk malam",
+ "arm_vacation": "Aktifkan utk liburan",
+ "clear_code": "Hapus",
+ "code": "Kode",
+ "disarm": "Nonaktifkan"
+ },
+ "area": {
+ "area_not_found": "Area tidak ditemukan."
+ },
+ "automation": {
+ "last_triggered": "Terakhir terpicu",
+ "trigger": "Jalankan Aksi"
+ },
+ "button": {
+ "press": "Tekan"
+ },
+ "camera": {
+ "not_available": "Gambar tidak tersedia"
+ },
+ "climate": {
+ "aux_heat": "Pemanasan tambahan",
+ "away_mode": "Mode keluar rumah",
+ "cooling": "Pendinginan {name}",
+ "current_temperature": "Suhu {name} saat ini",
+ "currently": "Saat ini",
+ "fan_mode": "Mode kipas",
+ "heating": "Pemanasan {name}",
+ "high": "tinggi",
+ "low": "rendah",
+ "on_off": "Nyala/mati",
+ "operation": "Operasi",
+ "preset_mode": "Prasetel",
+ "swing_mode": "Mode ayunan",
+ "target_humidity": "Target kelembaban",
+ "target_temperature": "Target suhu",
+ "target_temperature_entity": "Target suhu {name}",
+ "target_temperature_mode": "Target suhu {name} {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "turunkan",
+ "increment": "naikkan",
+ "reset": "setel ulang"
+ }
+ },
+ "cover": {
+ "position": "Posisi",
+ "tilt_position": "Posisi kemiringan"
+ },
+ "fan": {
+ "direction": "Arah",
+ "forward": "Depan",
+ "oscillate": "Berayun",
+ "preset_mode": "Mode Prasetel",
+ "reverse": "Berlawanan",
+ "speed": "Kecepatan"
+ },
+ "humidifier": {
+ "humidity": "Target kelembaban",
+ "mode": "Mode",
+ "on_entity": "{name} nyala",
+ "target_humidity_entity": "Target kelembaban {name}"
+ },
+ "light": {
+ "brightness": "Kecerahan",
+ "cold_white_value": "Kecerahan putih dingin",
+ "color_brightness": "Kecerahan warna",
+ "color_temperature": "Temperatur warna",
+ "effect": "Efek",
+ "warm_white_value": "Kecerahan putih hangat",
+ "white_value": "Kecerahan putih"
+ },
+ "lock": {
+ "code": "Kode",
+ "lock": "Kunci",
+ "unlock": "Buka"
+ },
+ "media_player": {
+ "browse_media": "Jelajahi media",
+ "media_next_track": "Trek berikutnya",
+ "media_pause": "Jeda",
+ "media_play": "Putar",
+ "media_play_pause": "Putar/jeda",
+ "media_previous_track": "Trek sebelumnya",
+ "media_stop": "Hentikan",
+ "media_volume_down": "Turunkan volume",
+ "media_volume_mute": "Bisukan volume",
+ "media_volume_unmute": "Suarakan volume",
+ "media_volume_up": "Naikkan volume",
+ "sound_mode": "Mode suara",
+ "source": "Sumber",
+ "text_to_speak": "Teks untuk diucapkan",
+ "turn_off": "Matikan",
+ "turn_on": "Nyalakan"
+ },
+ "persistent_notification": {
+ "dismiss": "Tutup"
+ },
+ "scene": {
+ "activate": "Aktifkan"
+ },
+ "script": {
+ "cancel": "Batalkan",
+ "cancel_multiple": "Batalkan {number}",
+ "run": "Jalankan"
+ },
+ "service": {
+ "run": "Jalankan"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "batalkan",
+ "finish": "selesai",
+ "pause": "jeda",
+ "start": "mulai"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Lanjutkan pembersihan",
+ "return_to_base": "Kembali ke dock",
+ "start_cleaning": "Mulai membersihkan",
+ "turn_off": "Matikan",
+ "turn_on": "Nyalakan"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Mode keluar rumah",
+ "currently": "Saat ini",
+ "on_off": "Nyala/mati",
+ "operation": "Operasi",
+ "target_temperature": "Target suhu"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Tekanan udara",
+ "humidity": "Kelembaban",
+ "precipitation": "Curah hujan",
+ "temperature": "Suhu",
+ "visibility": "Jarak pandang",
+ "wind_speed": "Kecepatan angin"
+ },
+ "cardinal_direction": {
+ "e": "T",
+ "ene": "TTL",
+ "ese": "TTg",
+ "n": "U",
+ "ne": "TL",
+ "nne": "UTL",
+ "nnw": "UBL",
+ "nw": "BL",
+ "s": "S",
+ "se": "Tg",
+ "sse": "STg",
+ "ssw": "SBD",
+ "sw": "BD",
+ "w": "B",
+ "wnw": "BBL",
+ "wsw": "BBD"
+ },
+ "day": "Siang",
+ "forecast": "Prakiraan",
+ "high": "Tinggi",
+ "low": "Rendah",
+ "night": "Malam"
+ }
+ },
+ "common": {
+ "and": "dan",
+ "back": "Kembali",
+ "cancel": "Batalkan",
+ "clear": "Bersihkan",
+ "close": "Tutup",
+ "continue": "Lanjutkan",
+ "copied": "Disalin",
+ "copied_clipboard": "Disalin ke papan klip",
+ "delete": "Hapus",
+ "disable": "Nonaktifkan",
+ "enable": "Aktifkan",
+ "error_required": "Wajib",
+ "help": "Bantuan",
+ "leave": "Keluar",
+ "loading": "Memuat",
+ "menu": "Menu",
+ "move": "Pindahkan",
+ "next": "Berikutnya",
+ "no": "Tidak",
+ "not_now": "Jangan sekarang",
+ "overflow_menu": "Menu luapan",
+ "previous": "Sebelumnya",
+ "refresh": "Segarkan",
+ "remove": "Hapus",
+ "rename": "Ganti Nama",
+ "save": "Simpan",
+ "skip": "Lewatkan",
+ "stay": "Tetap di sini",
+ "submit": "Kirimkan",
+ "successfully_deleted": "Berhasil dihapus",
+ "successfully_saved": "Berhasil disimpan",
+ "undo": "Urungkan",
+ "yes": "Ya"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Add-on",
+ "error": {
+ "fetch_addons": {
+ "description": "Terjadi kesalahan saat memuat add-on.",
+ "title": "Kesalahan saat memuat add-on"
+ },
+ "no_supervisor": {
+ "description": "Add-on tidak didukung.",
+ "title": "Tidak ada Supervisor"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Tambahkan",
+ "failed_create_area": "Gagal membuat area.",
+ "name": "Nama",
+ "text": "Masukkan nama area baru.",
+ "title": "Tambahkan area baru"
+ },
+ "add_new": "Tambahkan area baru…",
+ "area": "Area",
+ "clear": "Bersihkan",
+ "no_areas": "Anda tidak memiliki area apa pun",
+ "no_match": "Tidak ada area yang cocok ditemukan",
+ "show_areas": "Tampilkan area"
+ },
+ "attributes": {
+ "expansion_header": "Atribut"
+ },
+ "blueprint-picker": {
+ "add_user": "Tambahkan pengguna",
+ "remove_user": "Hapus pengguna",
+ "select_blueprint": "Pilih Blueprint"
+ },
+ "calendar": {
+ "my_calendars": "Kalender Saya",
+ "today": "Hari ini"
+ },
+ "data-table": {
+ "clear": "Hapus",
+ "filtering_by": "Filter menurut",
+ "hidden": "{number} disembunyikan",
+ "no-data": "Tidak ada data",
+ "search": "Cari"
+ },
+ "date-range-picker": {
+ "end_date": "Tanggal akhir",
+ "ranges": {
+ "last_week": "Minggu lalu",
+ "this_week": "Minggu ini",
+ "today": "Hari ini",
+ "yesterday": "Kemarin"
+ },
+ "select": "Pilih",
+ "start_date": "Tanggal mulai"
+ },
+ "device-picker": {
+ "clear": "Hapus",
+ "device": "Perangkat",
+ "no_area": "Tidak ada area",
+ "no_devices": "Anda tidak memiliki perangkat apa pun",
+ "no_match": "Tidak ditemukan perangkat yang cocok",
+ "show_devices": "Tampilkan perangkat",
+ "toggle": "Alihkan"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Atribut",
+ "show_attributes": "Tampilkan atribut"
+ },
+ "entity-picker": {
+ "clear": "Hapus",
+ "edit": "Edit",
+ "entity": "Entitas",
+ "no_match": "Tidak ditemukan entitas yang cocok",
+ "show_entities": "Tampilkan entitas"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "Integrasi riwayat dinonaktifkan",
+ "loading_history": "Memuat riwayat status…",
+ "no_history_found": "Tidak ada riwayat status ditemukan."
+ },
+ "logbook": {
+ "by": "oleh",
+ "by_service": "oleh layanan",
+ "entries_not_found": "Tidak ada peristiwa buku log yang ditemukan.",
+ "messages": {
+ "became_unavailable": "menjadi tidak tersedia",
+ "changed_to_state": "berubah menjadi {state}",
+ "cleared_device_class": "tidak ada (tidak ada {device_class} yang terdeteksi)",
+ "cleared_tampering": "bersihkan gangguan",
+ "detected_device_class": "terdeteksi {device_class}",
+ "detected_tampering": "gangguan terdeteksi",
+ "is_closing": "menutup",
+ "is_opening": "membuka",
+ "rose": "terbit",
+ "set": "terbenam",
+ "turned_off": "dimatikan",
+ "turned_on": "dinyalakan",
+ "was_at_home": "terdeteksi di rumah",
+ "was_at_state": "terdeteksi di {state}",
+ "was_away": "terdeteksi keluar",
+ "was_closed": "telah ditutup",
+ "was_connected": "telah terhubung",
+ "was_disconnected": "telah terputus",
+ "was_locked": "telah terkunci",
+ "was_low": "rendah",
+ "was_normal": "normal",
+ "was_opened": "dibuka",
+ "was_plugged_in": "telah dicolokkan",
+ "was_safe": "aman",
+ "was_unlocked": "tidak terkunci",
+ "was_unplugged": "telah dicabut",
+ "was_unsafe": "tidak aman"
+ },
+ "retrieval_error": "Kesalahan saat memuat buku log",
+ "show_trace": "Tampilkan jejak"
+ },
+ "media-browser": {
+ "audio_not_supported": "Browser Anda tidak mendukung elemen audio.",
+ "choose_player": "Pilih Pemutar",
+ "class": {
+ "album": "Album",
+ "app": "App",
+ "artist": "Artis",
+ "channel": "Kanal",
+ "composer": "Komposer",
+ "contributing_artist": "Artis yang Berkontribusi",
+ "directory": "Perpustakaan",
+ "episode": "Episode",
+ "game": "Game",
+ "genre": "Genre",
+ "image": "Gambar",
+ "movie": "Film",
+ "music": "Musik",
+ "playlist": "Daftar Putar",
+ "podcast": "Podcast",
+ "season": "Musim",
+ "track": "Lacak",
+ "tv_show": "Acara TV",
+ "url": "URL",
+ "video": "Video"
+ },
+ "documentation": "dokumentasi",
+ "learn_adding_local_media": "Pelajari lebih lanjut tentang menambahkan media di {documentation}.",
+ "local_media_files": "Tempatkan file video, audio, dan gambar Anda di direktori media untuk dapat menelusuri dan memutarnya di browser atau pada pemutar media yang didukung.",
+ "media-player-browser": "Browser Pemutar Media",
+ "media_browsing_error": "Kesalahan Browser Media",
+ "media_not_supported": "Pemutar Media Browser tidak mendukung jenis media ini",
+ "media_player": "Pemutar Media",
+ "no_items": "Tidak ada item",
+ "no_local_media_found": "Tidak ditemukan media lokal",
+ "no_media_folder": "Sepertinya Anda belum membuat direktori media.",
+ "pick": "Pilih",
+ "pick-media": "Pilih Media",
+ "play": "Putar",
+ "play-media": "Putar Media",
+ "setup_local_help": "Periksa {documentation} tentang cara menyiapkan media lokal.",
+ "video_not_supported": "Browser Anda tidak mendukung elemen video.",
+ "web-browser": "Browser Web"
+ },
+ "picture-upload": {
+ "label": "Gambar",
+ "unsupported_format": "Format tidak didukung, pilih gambar JPEG, PNG, atau GIF."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Masukkan nilai kode QR",
+ "manual_input": "Anda dapat memindai kode QR dengan pemindai QR lain dan menempelkan kode di input di bawah ini",
+ "not_supported": "Browser Anda tidak mendukung pemindaian kode QR.",
+ "only_https_supported": "Anda hanya dapat menggunakan kamera untuk memindai kode QR saat menggunakan HTTPS.",
+ "select_camera": "Pilih kamera"
+ },
+ "related-filter-menu": {
+ "filter": "Filter",
+ "filter_by_area": "Filter menurut area",
+ "filter_by_device": "Filter menurut perangkat",
+ "filter_by_entity": "Filter menurut entitas",
+ "filtered_by_area": "area: {area_name}",
+ "filtered_by_device": "perangkat: {device_name}",
+ "filtered_by_entity": "entitas: {entity_name}"
+ },
+ "related-items": {
+ "area": "Area",
+ "automation": "Bagian dari otomasi berikut",
+ "device": "Perangkat",
+ "entity": "Entitas terkait",
+ "group": "Bagian dari grup berikut",
+ "integration": "Integrasi",
+ "no_related_found": "Tidak ditemukan item terkait.",
+ "scene": "Bagian dari skenario berikut",
+ "script": "Bagian dari skrip berikut"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one { hari }\n other { hari }\n}",
+ "hour": "{count} {count, plural,\n one { jam }\n other { jam }\n}",
+ "minute": "{count} {count, plural,\n one { menit }\n other { menit }\n}",
+ "second": "{count} {count, plural,\n one { detik }\n other { detik }\n}",
+ "week": "{count} {count, plural,\n one { minggu }\n other { minggu }\n}"
+ },
+ "future_duration": {
+ "day": "Dalam {count} {count, plural,\n one {hari}\n other {hari}\n}",
+ "hour": "Dalam {count} {count, plural,\n one {jam}\n other {jam}\n}",
+ "minute": "Dalam {count} {count, plural,\n one {menit}\n other {menit}\n}",
+ "second": "Dalam {count} {count, plural,\n one {detik}\n other {detik}\n}",
+ "week": "Dalam {count} {count, plural,\n one {minggu}\n other {minggu}\n}"
+ },
+ "just_now": "Baru saja",
+ "never": "Tak pernah",
+ "past_duration": {
+ "day": "{count} {count, plural,\n one {hari}\n other {hari}\n} lalu",
+ "hour": "{count} {count, plural,\n one {jam}\n other {jam}\n} lalu",
+ "minute": "{count} {count, plural,\n one {menit}\n other {menit}\n} lalu",
+ "second": "{count} {count, plural,\n one {detik}\n other {detik}\n} lalu",
+ "week": "{count} {count, plural,\n one {minggu}\n other {minggu}\n} lalu"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Dokumentasi integrasi",
+ "required": "Bidang ini wajib diisi",
+ "service_data": "Data layanan",
+ "target": "Target",
+ "target_description": "Yang harus digunakan layanan ini sebagai area, perangkat, atau entitas yang ditargetkan."
+ },
+ "service-picker": {
+ "service": "Layanan"
+ },
+ "statistic-picker": {
+ "learn_more": "Pelajari lebih lanjut tentang statistik",
+ "missing_entity": "Mengapa entitas saya tidak terdaftar?",
+ "no_match": "Tidak ada statistik yang cocok ditemukan",
+ "no_statistics": "Anda tidak memiliki statistik",
+ "statistic": "Statistik"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Memuat statistik…",
+ "no_statistics_found": "Tidak ada statistik yang ditemukan.",
+ "statistic_types": {
+ "max": "maks",
+ "mean": "rata-rata",
+ "min": "min",
+ "sum": "jumlah"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Pilih area",
+ "add_device_id": "Pilih perangkat",
+ "add_entity_id": "Pilih entitas",
+ "expand": "Perluas",
+ "expand_area_id": "Pisahkan area ini menjadi perangkat dan entitas terpisah.",
+ "expand_device_id": "Pisahkan perangkat ini menjadi entitas terpisah.",
+ "remove": "Hapus",
+ "remove_area_id": "Hapus area",
+ "remove_device_id": "Hapus perangkat",
+ "remove_entity_id": "Hapus entitas"
+ },
+ "user-picker": {
+ "add_user": "Tambahkan pengguna",
+ "no_user": "Tidak ada pengguna",
+ "remove_user": "Hapus pengguna"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Apakah perangkat baru yang ditemukan untuk integrasi {integration} akan ditambahkan secara otomatis.",
+ "enable_new_entities_label": "Aktifkan entitas yang baru ditambahkan.",
+ "enable_polling_description": "Apakah Home Assistant harus melakukan polling {integration} secara otomatis untuk pembaruan.",
+ "enable_polling_label": "Aktifkan polling untuk pembaruan.",
+ "restart_home_assistant": "Anda perlu memulai ulang Home Assistant agar perubahan diterapkan.",
+ "title": "Opsi Sistem untuk {integration}",
+ "update": "Perbarui"
+ },
+ "domain_toggler": {
+ "reset_entities": "Atur Ulang Entitas",
+ "title": "Alihkan Domain"
+ },
+ "entity_registry": {
+ "control": "Kontrol",
+ "customize_link": "penyesuaian entitas",
+ "dismiss": "Tutup",
+ "editor": {
+ "advanced": "Setelan tingkat lanjut",
+ "area": "Setel area entitas saja",
+ "area_note": "Secara default, entitas perangkat berada di area yang sama dengan perangkat. Jika Anda mengubah area entitas ini, area entitas tidak akan lagi mengikuti area perangkat.",
+ "change_device_area": "Ubah area perangkat",
+ "confirm_delete": "Yakin ingin menghapus entitas ini?",
+ "delete": "Hapus",
+ "device_class": "Tampilkan sebagai",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Pintu",
+ "garage_door": "Pintu garasi",
+ "opening": "Lainnya",
+ "window": "Jendela"
+ },
+ "cover": {
+ "door": "Pintu",
+ "garage": "Pintu garasi",
+ "window": "Jendela"
+ }
+ },
+ "device_disabled": "Perangkat entitas ini dinonaktifkan.",
+ "enabled_cause": "Dinonaktifkan oleh {cause}.",
+ "enabled_delay_confirm": "Entitas yang diaktifkan akan ditambahkan ke Home Assistant dalam {delay} detik",
+ "enabled_description": "Entitas yang dinonaktifkan tidak akan ditambahkan ke Home Assistant",
+ "enabled_label": "Aktifkan entitas",
+ "enabled_restart_confirm": "Mulai ulang Home Assistant untuk mengaktifkan entitas",
+ "entity_id": "ID Entitas",
+ "follow_device_area": "Ikuti area perangkat",
+ "icon": "Ikon",
+ "icon_error": "Ikon harus dalam format 'prefiks:namaikon', contoh: 'mdi:home'",
+ "name": "Nama",
+ "note": "Catatan: Ini mungkin belum berfungsi dengan semua integrasi.",
+ "open_device_settings": "Buka pengaturan perangkat",
+ "unavailable": "Entitas ini tidak tersedia.",
+ "update": "Perbarui"
+ },
+ "faq": "dokumentasi",
+ "info_customize": "Anda dapat menimpa beberapa atribut di bagian {customize_link}.",
+ "no_unique_id": "Entitas ini (''{entity_id}'') tidak memiliki ID unik, sehingga setelannya tidak dapat dikelola dari antarmuka. Lihat {faq_link} untuk detail lebih lanjut.",
+ "related": "Terkait",
+ "settings": "Setelan"
+ },
+ "generic": {
+ "cancel": "Batalkan",
+ "close": "Tutup",
+ "default_confirmation_title": "Yakin?",
+ "ok": "Oke"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Nilai awal",
+ "maximum": "Nilai maksimum",
+ "minimum": "Nilai minimum",
+ "restore": "Kembalikan nilai terakhir yang diketahui saat Home Assistant dimulai",
+ "step": "Jumlah langkah"
+ },
+ "generic": {
+ "icon": "Ikon",
+ "name": "Nama"
+ },
+ "input_datetime": {
+ "date": "Tanggal",
+ "datetime": "Tanggal dan waktu",
+ "mode": "Apa yang ingin Anda masukan",
+ "time": "Waktu"
+ },
+ "input_number": {
+ "box": "Bidang masukan",
+ "max": "Nilai maksimum",
+ "min": "Nilai minimum",
+ "mode": "Mode tampilan",
+ "slider": "Penggeser",
+ "step": "Jumlah langkah",
+ "unit_of_measurement": "Satuan pengukuran"
+ },
+ "input_select": {
+ "add": "Tambahkan",
+ "add_option": "Tambahkan opsi",
+ "no_options": "Belum ada opsi.",
+ "options": "Opsi"
+ },
+ "input_text": {
+ "max": "Panjang maksimum",
+ "min": "Panjang minimum",
+ "mode": "Mode tampilan",
+ "password": "Kata sandi",
+ "pattern": "Pola ekspresi reguler untuk validasi sisi klien",
+ "text": "Teks"
+ },
+ "platform_not_loaded": "Integrasi {platform} tidak dimuat. Tambahkan ke konfigurasi Anda dengan menambahkan 'default_config:' atau ''{platform}:''.",
+ "required_error_msg": "Bidang ini wajib diisi",
+ "timer": {
+ "duration": "Durasi"
+ },
+ "yaml_not_editable": "Pengaturan entitas ini tidak dapat diedit dari antarmuka. Hanya entitas yang disiapkan lewat antarmuka yang dapat dikonfigurasi dari antarmuka."
+ },
+ "image_cropper": {
+ "crop": "Pangkas"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Tutup penutup",
+ "close_tile_cover": "Tutup penutup",
+ "close_tilt_cover": "Tutup penutup",
+ "open_cover": "Buka penutup",
+ "open_tilt_cover": "Buka penutup",
+ "stop_cover": "Hentikan gerakan penutup"
+ },
+ "details": "Detail",
+ "dismiss": "Tutup dialog",
+ "edit": "Edit entitas",
+ "history": "Riwayat",
+ "last_changed": "Terakhir diubah",
+ "last_updated": "Terakhir diperbarui",
+ "logbook": "Buku Log",
+ "person": {
+ "create_zone": "Buat zona dari lokasi saat ini"
+ },
+ "remote": {
+ "activity": "Aktivitas saat ini"
+ },
+ "restored": {
+ "confirm_remove_text": "Yakin ingin menghapus entitas ini?",
+ "confirm_remove_title": "Hapus entitas?",
+ "not_provided": "Entitas ini tidak tersedia saat ini dan merupakan yatim piatu untuk integrasi atau perangkat yang dihapus, diubah atau disfungsional.",
+ "remove_action": "Hapus entitas",
+ "remove_intro": "Jika entitas tidak lagi digunakan, Anda dapat membersihkannya dengan menghapusnya."
+ },
+ "script": {
+ "last_action": "Aksi terakhir",
+ "last_triggered": "Terpicu terakhir"
+ },
+ "settings": "Pengaturan entitas",
+ "show_more": "Tampilkan lebih banyak",
+ "sun": {
+ "elevation": "Ketinggian",
+ "rising": "Terbit",
+ "setting": "Terbenam"
+ },
+ "updater": {
+ "title": "Petunjuk Pembaruan"
+ },
+ "vacuum": {
+ "clean_spot": "Bersihkan area tertentu",
+ "commands": "Perintah penyedot debu:",
+ "fan_speed": "Kecepatan kipas",
+ "locate": "Temukan",
+ "pause": "Jeda",
+ "return_home": "Kembali ke dok",
+ "start": "Mulai",
+ "start_pause": "Mulai/Jeda",
+ "status": "Status",
+ "stop": "Hentikan"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Mencoba mengurai pesan MQTT sebagai JSON",
+ "entities": "Entitas",
+ "no_entities": "Tidak ada entitas",
+ "no_triggers": "Tidak ada pemicu",
+ "payload_display": "Tampilan muatan",
+ "recent_messages": "{n} pesan yang diterima baru-baru ini",
+ "show_as_yaml": "Tampilkan sebagai YAML",
+ "title": "Informasi debug {device}",
+ "triggers": "Pemicu"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Opsi"
+ },
+ "loading": {
+ "loading_flow": "Mohon tunggu sementara opsi untuk {integration} sedang diinisialisasi",
+ "loading_step": "Memuat langkah berikutnya untuk {integration}"
+ },
+ "success": {
+ "description": "Opsi berhasil disimpan."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Area",
+ "automation": "Otomasi",
+ "blueprint": "Blueprint",
+ "core": "Umum",
+ "customize": "Penyesuaian",
+ "devices": "Perangkat",
+ "energy": "Energi",
+ "entities": "Entitas",
+ "helpers": "Pembantu",
+ "info": "Info",
+ "integrations": "Integrasi",
+ "logs": "Log",
+ "lovelace": "Dasbor Lovelace",
+ "person": "Orang",
+ "scene": "Skenario",
+ "script": "Skrip",
+ "server_control": "Kontrol Server",
+ "tag": "Tag",
+ "users": "Pengguna",
+ "zone": "Zona"
+ },
+ "reload": {
+ "automation": "Otomasi",
+ "command_line": "Entitas baris perintah",
+ "core": "Lokasi & penyesuaian",
+ "filesize": "Entitas ukuran file",
+ "filter": "Filter entitas",
+ "generic": "Entitas kamera IP generik",
+ "generic_thermostat": "Entitas termostat generik",
+ "group": "Grup, entitas grup, dan layanan notifikasi grup",
+ "history_stats": "Entitas statistik riwayat",
+ "homekit": "HomeKit",
+ "input_boolean": "Input boolean",
+ "input_datetime": "Input tanggal dan waktu",
+ "input_number": "Input bilangan",
+ "input_select": "Input pilihan",
+ "input_text": "Input teks",
+ "min_max": "Entitas min/maks",
+ "mqtt": "Entitas MQTT yang dikonfigurasi secara manual",
+ "person": "Orang",
+ "ping": "Entitas sensor biner ping",
+ "reload": "{domain}",
+ "rest": "Entitas REST dan layanan notifikasi REST",
+ "rpi_gpio": "Entitas Raspberry Pi GPIO",
+ "scene": "Skenario",
+ "script": "Skrip",
+ "smtp": "Layanan notifikasi SMTP",
+ "statistics": "Entitas statistik",
+ "telegram": "Layanan notifikasi telegram",
+ "template": "Entitas templat",
+ "trend": "Entitas tren",
+ "universal": "Entitas pemutar media universal",
+ "zone": "Zona"
+ },
+ "server_control": {
+ "perform_action": "Server {action}",
+ "restart": "Mulai ulang",
+ "stop": "Hentikan"
+ },
+ "types": {
+ "navigation": "Buka",
+ "reload": "Muat ulang",
+ "server_control": "Server"
+ }
+ },
+ "filter_placeholder": "Filter Entitas"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant tidak mendengar apa-apa",
+ "error": "Ups, kesalahan terjadi",
+ "found": "Saya menemukan yang berikut untuk Anda:",
+ "how_can_i_help": "Bagaimana saya bisa membantu?",
+ "label": "Ketik pertanyaan dan tekan 'Enter'",
+ "label_voice": "Ketik dan tekan 'Enter' atau ketuk mikrofon untuk berbicara"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Tambahkan Perangkat melalui perangkat ini",
+ "clusters": "Kelola Klaster",
+ "device_children": "Lihat Anakan",
+ "reconfigure": "Konfigurasi Ulang Perangkat",
+ "remove": "Hapus Perangkat",
+ "view_in_visualization": "Tampilkan dalam Visualisasi",
+ "zigbee_information": "Tanda tangan perangkat Zigbee"
+ },
+ "confirmations": {
+ "remove": "Yakin ingin menghapus perangkat?"
+ },
+ "device_children": "Anakan perangkat Zigbee",
+ "device_signature": "Tanda tangan perangkat Zigbee",
+ "last_seen": "Terakhir Terlihat",
+ "manuf": "oleh {manufacturer}",
+ "no_area": "Tidak Ada Area",
+ "power_source": "Sumber Daya",
+ "quirk": "Kebiasaan",
+ "services": {
+ "reconfigure": "Konfigurasi ulang perangkat ZHA (pulihkan perangkat). Gunakan jika Anda mengalami masalah dengan perangkat. Jika perangkat yang dimaksud adalah perangkat bertenaga baterai, pastikan perangkat tersebut aktif dan menerima perintah saat Anda menggunakan layanan ini.",
+ "remove": "Hapus perangkat dari jaringan Zigbee.",
+ "updateDeviceName": "Tetapkan nama khusus untuk perangkat ini di registri perangkat.",
+ "zigbee_information": "Lihat informasi Zigbee perangkat."
+ },
+ "unknown": "Tidak diketahui",
+ "zha_device_card": {
+ "device_name_placeholder": "Ubah nama perangkat"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Atribut",
+ "battery_device_warning": "Anda perlu membangunkan perangkat bertenaga baterai sebelum memulai konfigurasi ulang. Lihat manual perangkat Anda untuk instruksi tentang cara membangunkan perangkat.",
+ "bind_header": "Pengaitan",
+ "button_hide": "Sembunyikan Detail",
+ "button_show": "Tampilkan Detail",
+ "cluster_header": "Klaster",
+ "configuration_complete": "Konfigurasi ulang perangkat selesai.",
+ "configuration_failed": "Konfigurasi ulang perangkat gagal. Informasi tambahan mungkin tersedia di log.",
+ "configuring_alt": "Mengonfigurasi",
+ "heading": "Mengonfigurasi ulang perangkat",
+ "in_progress": "Perangkat sedang dikonfigurasi ulang. Proses ini mungkin membutuhkan beberapa saat.",
+ "introduction": "Konfigurasi ulang sebuah perangkat di jaringan Zigbee Anda. Gunakan fitur ini jika perangkat tersebut tidak berfungsi dengan benar.",
+ "min_max_change": "min/maks/perubahan",
+ "reporting_header": "Pelaporan",
+ "run_in_background": "Anda dapat menutup dialog ini dan konfigurasi ulang akan dilanjutkan di latar belakang.",
+ "start_reconfiguration": "Mulai Konfigurasi Ulang"
+ }
+ },
+ "duration": {
+ "day": "{count}{count, plural,\n one { hari }\n other { hari }\n}",
+ "hour": "{count} {count, plural,\n one { jam }\n other { jam }\n}",
+ "minute": "{count} {count, plural,\n one { menit }\n other { menit }\n}",
+ "second": "{count}{count, plural,\n one { detik }\n other { detik }\n}",
+ "week": "{count}{count, plural,\n one { minggu }\n other { minggu }\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Anda masih dapat mengedit konfigurasi Anda di YAML.",
+ "editor_not_available": "Tidak ada editor visual yang tersedia untuk tipe ''{type}''.",
+ "editor_not_supported": "Editor visual tidak didukung untuk konfigurasi ini",
+ "error_detected": "Kesalahan konfigurasi terdeteksi",
+ "key_missing": "Kunci yang diperlukan ''{key}'' tidak ada.",
+ "key_not_expected": "Kunci ''{key}'' tidak diharapkan atau tidak didukung oleh editor visual.",
+ "key_wrong_type": "Nilai yang disediakan untuk ''{key}'' tidak didukung oleh editor visual. Kami mendukung ({type_correct}) tetapi diterima ({type_wrong}).",
+ "no_state_array_support": "Nilai multistatus tidak didukung di editor visual",
+ "no_template_editor_support": "Templat tidak didukung di editor visual",
+ "no_type_provided": "Tidak ada tipe yang tersedia."
+ },
+ "supervisor": {
+ "ask": "Dapatkan bantuan",
+ "observer": "Periksa Observer",
+ "reboot": "Coba me-reboot host",
+ "system_health": "Periksa Kesehatan Sistem",
+ "title": "Tidak dapat memuat panel Supervisor!",
+ "wait": "Jika Anda baru saja memulai, pastikan Anda telah memberikan cukup waktu kepada Supervisor untuk memulai."
+ }
+ },
+ "login-form": {
+ "log_in": "Masuk",
+ "password": "Kata Sandi",
+ "remember": "Ingat"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Klik tombol untuk mengonfigurasi {entity}",
+ "close": "Tutup",
+ "dismiss_all": "Tutup semua",
+ "empty": "Tidak Ada Notifikasi",
+ "title": "Notifikasi"
+ },
+ "notification_toast": {
+ "connection_lost": "Koneksi terputus. Menghubungkan kembali…",
+ "dismiss": "Tutup",
+ "integration_starting": "Memulai {integration}, tidak semuanya akan tersedia hingga prosesnya selesai.",
+ "service_call_failed": "Gagal memanggil layanan {service}.",
+ "started": "Home Assistant telah dimulai!",
+ "starting": "Home Assistant sedang dimulai, belum semuanya akan tersedia hingga selesai.",
+ "triggered": "Dipicu {name}",
+ "wrapping_up_startup": "Menyelesaikan proses mulai, tidak semuanya akan tersedia hingga prosesnya selesai."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Opsi konfigurasi tidak tersedia? Aktifkan mode tingkat lanjut",
+ "link_profile_page": "halaman profil Anda"
+ },
+ "areas": {
+ "add_picture": "Tambahkan gambar",
+ "caption": "Area",
+ "data_table": {
+ "area": "Area",
+ "devices": "Perangkat",
+ "entities": "Entitas"
+ },
+ "delete": {
+ "confirmation_text": "Semua perangkat di area ini akan dibatalkan penetapan areanya.",
+ "confirmation_title": "Yakin ingin menghapus area ini?"
+ },
+ "description": "Kelompokkan perangkat dan entitas ke dalam area",
+ "edit_settings": "Pengaturan area",
+ "editor": {
+ "area_id": "ID Area",
+ "create": "Buat",
+ "default_name": "Area Baru",
+ "delete": "Hapus",
+ "linked_entities_caption": "Entitas",
+ "name": "Nama",
+ "name_required": "Nama wajib diisi",
+ "no_linked_entities": "Tidak ada entitas yang terkait dengan area ini.",
+ "unknown_error": "Kesalahan yang tidak diketahui",
+ "update": "Perbarui"
+ },
+ "picker": {
+ "create_area": "Buat Area",
+ "header": "Area",
+ "integrations_page": "Halaman integrasi",
+ "introduction": "Area digunakan untuk mengatur lokasi perangkat. Informasi ini akan digunakan dalam Home Assistant untuk membantu Anda mengatur antarmuka, izin, dan integrasi Anda dengan sistem lain.",
+ "introduction2": "Untuk menempatkan perangkat di suatu area, gunakan tautan di bawah untuk membuka halaman integrasi, lalu klik integrasi yang dikonfigurasi untuk mendapatkan kartu perangkat.",
+ "no_areas": "Sepertinya Anda belum memiliki area!"
+ }
+ },
+ "automation": {
+ "caption": "Otomasi",
+ "description": "Buat aturan perilaku khusus untuk rumah Anda",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Gunakan blueprint"
+ },
+ "header": "Buat otomasi baru",
+ "how": "Bagaimana Anda ingin membuat otomasi baru Anda?",
+ "start_empty": "Mulai dengan otomasi kosong",
+ "start_empty_description": "Buat otomasi baru dari awal",
+ "thingtalk": {
+ "create": "Buat",
+ "header": "Deskripsikan otomasi yang ingin dibuat",
+ "input_label": "Apa yang akan dikerjakan dalam otomasi ini?",
+ "intro": "Dan kami akan mencoba membuatnya untuk Anda. Misalnya: Matikan lampu ketika saya keluar."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Tambah aksi",
+ "delete": "Hapus",
+ "delete_confirm": "Yakin ingin menghapus?",
+ "duplicate": "Gandakan",
+ "header": "Aksi",
+ "introduction": "Aksi adalah hal yang dilakukan Home Assistant ketika otomasi terpicu.",
+ "learn_more": "Pelajari lebih lanjut tentang aksi",
+ "name": "Aksi",
+ "type": {
+ "choose": {
+ "add_option": "Tambahkan opsi",
+ "conditions": "Kondisi",
+ "default": "Aksi default",
+ "label": "Pilih",
+ "option": "Opsi {number}",
+ "remove_option": "Hapus opsi",
+ "sequence": "Aksi"
+ },
+ "condition": {
+ "label": "Kondisi"
+ },
+ "delay": {
+ "delay": "Durasi",
+ "label": "Tunggu waktu selesai (tunda)"
+ },
+ "device_id": {
+ "action": "Aksi",
+ "extra_fields": {
+ "brightness_pct": "Kecerahan",
+ "code": "Kode",
+ "flash": "Flash",
+ "humidity": "Kelembaban",
+ "message": "Pesan",
+ "mode": "Mode",
+ "position": "Posisi",
+ "title": "Judul",
+ "value": "Nilai"
+ },
+ "label": "Perangkat"
+ },
+ "event": {
+ "event": "Peristiwa",
+ "label": "Jalankan peristiwa",
+ "service_data": "Data layanan"
+ },
+ "repeat": {
+ "label": "Ulangi",
+ "sequence": "Aksi",
+ "type": {
+ "count": {
+ "label": "Jumlah perulangan"
+ },
+ "until": {
+ "conditions": "Kondisi hingga",
+ "label": "Hingga"
+ },
+ "while": {
+ "conditions": "Kondisi selagi",
+ "label": "Selagi"
+ }
+ },
+ "type_select": "Jenis perulangan"
+ },
+ "scene": {
+ "label": "Aktifkan skenario"
+ },
+ "service": {
+ "label": "Panggil layanan"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Lanjutkan setelah tenggang habis",
+ "label": "Tunggu pemicu",
+ "timeout": "Tenggang waktu (opsional)"
+ },
+ "wait_template": {
+ "continue_timeout": "Lanjutkan setelah tenggang habis",
+ "label": "Tunggu templat",
+ "timeout": "Tenggang waktu (opsional)",
+ "wait_template": "Templat Tunggu"
+ }
+ },
+ "type_select": "Jenis aksi",
+ "unsupported_action": "Tidak ada editor visual untuk aksi: {action}"
+ },
+ "alias": "Nama",
+ "blueprint": {
+ "blueprint_to_use": "Blueprint untuk digunakan",
+ "header": "Blueprint",
+ "no_blueprints": "Anda tidak memiliki blueprint",
+ "no_inputs": "Blueprint ini tidak memiliki input."
+ },
+ "conditions": {
+ "add": "Tambah kondisi",
+ "delete": "Hapus",
+ "delete_confirm": "Yakin ingin menghapus?",
+ "duplicate": "Gandakan",
+ "header": "Kondisi",
+ "introduction": "Kondisi bersifat opsional dan akan mencegah eksekusi lebih lanjut kecuali semua kondisi terpenuhi.",
+ "learn_more": "Pelajari lebih lanjut tentang kondisi",
+ "name": "Kondisi",
+ "type": {
+ "and": {
+ "label": "Dan"
+ },
+ "device": {
+ "condition": "Kondisi",
+ "extra_fields": {
+ "above": "Lebih dari",
+ "below": "Kurang dari",
+ "for": "Durasi",
+ "hvac_mode": "Mode HVAC",
+ "preset_mode": "Mode Prasetel"
+ },
+ "label": "Perangkat"
+ },
+ "not": {
+ "label": "Bukan"
+ },
+ "numeric_state": {
+ "above": "Lebih dari",
+ "below": "Kurang dari",
+ "label": "Status numerik",
+ "value_template": "Nilai templat (opsional)"
+ },
+ "or": {
+ "label": "Atau"
+ },
+ "state": {
+ "label": "Status",
+ "state": "Status"
+ },
+ "sun": {
+ "after": "Sesudah:",
+ "after_offset": "Offset setelah (opsional)",
+ "before": "Sebelum:",
+ "before_offset": "Offset sebelum (opsional)",
+ "label": "Matahari",
+ "sunrise": "Matahari terbit",
+ "sunset": "Matahari terbenam"
+ },
+ "template": {
+ "label": "Templat",
+ "value_template": "Nilai templat"
+ },
+ "time": {
+ "after": "Sesudah",
+ "before": "Sebelum",
+ "label": "Waktu",
+ "type_input": "Nilai pembantu tanggal/waktu",
+ "type_value": "Waktu tertentu",
+ "weekdays": {
+ "fri": "Jumat",
+ "mon": "Senin",
+ "sat": "Sabtu",
+ "sun": "Minggu",
+ "thu": "Kamis",
+ "tue": "Selasa",
+ "wed": "Rabu"
+ }
+ },
+ "trigger": {
+ "id": "ID Pemicu",
+ "label": "Pemicu",
+ "no_triggers": "Tidak ada pemicu yang tersedia"
+ },
+ "zone": {
+ "entity": "Entitas dengan lokasi",
+ "label": "Zona",
+ "zone": "Zona"
+ }
+ },
+ "type_select": "Jenis kondisi",
+ "unsupported_condition": "Tidak ada editor visual untuk kondisi: {condition}"
+ },
+ "copy_to_clipboard": "Salin ke Papan Klip",
+ "default_name": "Otomasi Baru",
+ "description": {
+ "label": "Deskripsi",
+ "placeholder": "Deskripsi opsional"
+ },
+ "edit_ui": "Edit lewat editor visual",
+ "edit_yaml": "Edit sebagai YAML",
+ "enable_disable": "Aktifkan/Nonaktifkan otomasi",
+ "introduction": "Gunakan otomasi untuk menghidupkan rumah Anda",
+ "load_error_not_editable": "Hanya otomasi yang ada di automations.yaml yang bisa diedit.",
+ "load_error_unknown": "Kesalahan saat memuat otomasi ({err_no}).",
+ "max": {
+ "parallel": "Jumlah maksimum yang berjalan secara paralel",
+ "queued": "Panjang antrean"
+ },
+ "modes": {
+ "description": "Mode ini mengontrol apa yang terjadi saat otomasi dipicu ketika aksi dari pemicu sebelumnya masih berjalan. Lihat {documentation_link} untuk info lebih lanjut.",
+ "documentation": "dokumentasi otomasi",
+ "label": "Mode",
+ "parallel": "Paralel",
+ "queued": "Diantrekan",
+ "restart": "Mulai ulang",
+ "single": "Tunggal (default)"
+ },
+ "move_down": "Pindahkan ke bawah",
+ "move_up": "Pindahkan ke atas",
+ "save": "Simpan",
+ "show_trace": "Tampilkan jejak",
+ "triggers": {
+ "add": "Tambah pemicu",
+ "delete": "Hapus",
+ "delete_confirm": "Yakin ingin menghapus?",
+ "duplicate": "Gandakan",
+ "header": "Pemicu",
+ "id": "ID pemicu (digunakan oleh kondisi pemicu)",
+ "introduction": "Pemicu adalah hal yang memulai pemrosesan aturan otomasi. Beberapa pemicu bisa ditentukan untuk aturan yang sama. Setelah pemicu dimulai, Home Assistant akan memvalidasi kondisi, dan jika memenuhi, akan memanggil aksi.",
+ "learn_more": "Pelajari lebih lanjut tentang pemicu",
+ "name": "Pemicu",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Lebih dari",
+ "below": "Kurang dari",
+ "for": "Durasi (opsional)",
+ "zone": "Zona"
+ },
+ "label": "Perangkat",
+ "trigger": "Pemicu"
+ },
+ "event": {
+ "context_user_pick": "Pilih pengguna",
+ "context_user_picked": "Peristiwa yang dipicu pengguna",
+ "context_users": "Batasi untuk peristiwa yang dipicu oleh",
+ "event_data": "Data peristiwa",
+ "event_type": "Jenis peristiwa",
+ "label": "Peristiwa"
+ },
+ "geo_location": {
+ "enter": "Masuk",
+ "event": "Peristiwa:",
+ "label": "Geolokasi",
+ "leave": "Keluar",
+ "source": "Sumber",
+ "zone": "Zona"
+ },
+ "homeassistant": {
+ "event": "Peristiwa:",
+ "label": "Home Assistant",
+ "shutdown": "Matikan",
+ "start": "Mulai"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Muatan (opsional)",
+ "topic": "Topik"
+ },
+ "numeric_state": {
+ "above": "Lebih dari",
+ "below": "Kurang dari",
+ "label": "Status numerik",
+ "value_template": "Nilai templat (opsional)"
+ },
+ "state": {
+ "attribute": "Atribut (opsional)",
+ "for": "Selama (opsional)",
+ "from": "Dari (opsional)",
+ "label": "Status",
+ "to": "Menjadi (opsional)"
+ },
+ "sun": {
+ "event": "Peristiwa:",
+ "label": "Matahari",
+ "offset": "Offset (opsional)",
+ "sunrise": "Matahari terbit",
+ "sunset": "Matahari terbenam"
+ },
+ "tag": {
+ "label": "Tag"
+ },
+ "template": {
+ "label": "Templat",
+ "value_template": "Nilai templat"
+ },
+ "time": {
+ "at": "Jam",
+ "label": "Waktu",
+ "type_input": "Nilai pembantu tanggal/waktu",
+ "type_value": "Waktu tertentu"
+ },
+ "time_pattern": {
+ "hours": "Jam",
+ "label": "Pola Waktu",
+ "minutes": "Menit",
+ "seconds": "Detik"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "ID Webhook"
+ },
+ "zone": {
+ "enter": "Masuk",
+ "entity": "Entitas dengan lokasi",
+ "event": "Peristiwa:",
+ "label": "Zona",
+ "leave": "Keluar",
+ "zone": "Zona"
+ }
+ },
+ "type_select": "Jenis pemicu",
+ "unsupported_platform": "Tidak ada dukungan editor visual untuk platform: {platform}"
+ },
+ "unsaved_confirm": "Anda memiliki perubahan yang belum disimpan. Yakin ingin meninggalkan?"
+ },
+ "picker": {
+ "add_automation": "Tambah otomasi",
+ "delete_automation": "Hapus otomasi",
+ "delete_confirm": "Yakin ingin menghapus otomasi ini?",
+ "dev_automation": "Otomatisasi debug",
+ "dev_only_editable": "Hanya otomasi yang memiliki ID unik yang ditetapkan yang bisa didebug.",
+ "duplicate": "Salinan",
+ "duplicate_automation": "Gandakan otomasi",
+ "edit_automation": "Edit otomasi",
+ "header": "Editor Otomasi",
+ "headers": {
+ "name": "Nama"
+ },
+ "introduction": "Editor otomasi memungkinkan Anda membuat dan mengedit otomasi. Ikuti tautan di bawah ini untuk membaca instruksi untuk memastikan bahwa Anda telah mengonfigurasi Home Assistant dengan benar.",
+ "learn_more": "Pelajari lebih lanjut tentang otomasi",
+ "no_automations": "Kami tidak dapat menemukan otomasi",
+ "only_editable": "Hanya otomasi yang didefinisikan di automations.yaml yang bisa diedit.",
+ "pick_automation": "Pilih otomasi untuk diedit",
+ "show_info_automation": "Tampilkan info tentang otomasi"
+ },
+ "thingtalk": {
+ "create": "Buat otomasi",
+ "link_devices": {
+ "ambiguous_entities": "Satu atau beberapa perangkat memiliki lebih dari satu entitas yang cocok, pilih perangkat yang ingin digunakan.",
+ "header": "Bagus! Sekarang kita perlu menghubungkan beberapa perangkat",
+ "unknown_placeholder": "Penampung yang tidak diketahui"
+ },
+ "task_selection": {
+ "error_empty": "Masukkan perintah atau ketuk lewati.",
+ "error_unsupported": "Kami (masih?) belum dapat membuat otomasi untuk itu.",
+ "for_example": "Misalnya:",
+ "header": "Buat otomasi baru",
+ "introduction": "Ketik di bawah ini apa yang harus dilakukan oleh otomasi ini, dan kami akan mencoba mengubahnya menjadi otomasi Home Assistant.",
+ "language_note": "Catatan: Saat ini hanya bahasa Inggris yang didukung."
+ }
+ },
+ "trace": {
+ "download_trace": "Unduh jejak",
+ "edit_automation": "Edit otomasi",
+ "newer_trace": "Jejak yang lebih baru",
+ "older_trace": "Jejak yang lebih lama",
+ "refresh": "Segarkan"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "forum komunitas",
+ "error_no_url": "Masukkan URL blueprint",
+ "file_name": "Path Blueprint",
+ "header": "Impor blueprint",
+ "import_btn": "Pratinjau blueprint",
+ "import_header": "Blueprint ''{name}''",
+ "import_introduction_link": "Anda dapat mengimpor blueprint pengguna lain dari Github dan {community_link}. Masukkan URL blueprint di bawah ini.",
+ "importing": "Memuat blueprint…",
+ "raw_blueprint": "Isi blueprint",
+ "save_btn": "Impor blueprint",
+ "saving": "Mengimpor blueprint…",
+ "unsupported_blueprint": "Blueprint ini tidak didukung",
+ "url": "URL blueprint"
+ },
+ "caption": "Blueprint",
+ "description": "Kelola blueprint",
+ "overview": {
+ "add_blueprint": "Impor blueprint",
+ "confirm_delete_header": "Hapus blueprint ini?",
+ "confirm_delete_text": "Yakin ingin menghapus blueprint ini?",
+ "create_automation": "Buat otomasi",
+ "create_script": "Buat skrip",
+ "delete_blueprint": "Hapus blueprint",
+ "discover_more": "Temukan blueprint lainnya",
+ "header": "Editor Blueprint",
+ "headers": {
+ "domain": "Domain",
+ "file_name": "Nama file",
+ "name": "Nama",
+ "type": "Jenis"
+ },
+ "introduction": "Konfigurasi blueprint memungkinkan Anda untuk mengimpor dan mengelola blueprint.",
+ "learn_more": "Pelajari lebih lanjut tentang blueprint",
+ "share_blueprint": "Bagikan blueprint",
+ "share_blueprint_no_url": "Gagal membagikan blueprint: tidak ada sumber URL",
+ "types": {
+ "automation": "Otomasi",
+ "script": "Skrip"
+ },
+ "use_blueprint": "Buat otomasi"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Dokumentasi konfigurasi",
+ "disable": "menonaktifkan",
+ "enable": "mengaktifkan",
+ "enable_ha_skill": "Aktifkan keterampilan Home Assistant untuk Alexa",
+ "enable_state_reporting": "Aktifkan Pelaporan Status",
+ "info": "Dengan integrasi Alexa untuk Home Assistant Cloud, Anda akan dapat mengontrol semua perangkat Home Assistant melalui perangkat yang mendukung Alexa.",
+ "info_state_reporting": "Jika Anda mengaktifkan pelaporan status, Home Assistant akan mengirim semua perubahan status entitas yang terpapar ke Amazon. Ini memungkinkan Anda untuk selalu melihat status terbaru di aplikasi Alexa dan menggunakan perubahan status untuk membuat rutinitas.",
+ "manage_entities": "Kelola Entitas",
+ "state_reporting_error": "Tidak dapat {enable_disable} status laporan.",
+ "sync_entities": "Sinkronkan Entitas ke Amazon",
+ "sync_entities_error": "Gagal menyinkronkan entitas:",
+ "title": "Alexa"
+ },
+ "connected": "Terhubung",
+ "connecting": "Menghubungkan…",
+ "connection_status": "Status koneksi cloud",
+ "fetching_subscription": "Mengambil langganan…",
+ "google": {
+ "config_documentation": "Dokumentasi konfigurasi",
+ "devices_pin": "PIN Perangkat Keamanan",
+ "enable_ha_skill": "Aktifkan keterampilan Home Assistant untuk Google Assistant",
+ "enable_state_reporting": "Aktifkan Pelaporan Status",
+ "enter_pin_error": "Tidak dapat menyimpan PIN:",
+ "enter_pin_hint": "Masukkan PIN untuk menggunakan perangkat keamanan",
+ "enter_pin_info": "Masukkan PIN untuk berinteraksi dengan perangkat keamanan. Contoh perangkat keamanan adalah pintu, pintu garasi, dan kunci. Anda akan diminta untuk mengucapkan/memasukkan PIN ini saat berinteraksi dengan perangkat tersebut melalui Google Assistant.",
+ "info": "Dengan integrasi Google Assistant untuk Home Assistant Cloud, Anda akan dapat mengontrol semua perangkat Home Assistant melalui perangkat yang mendukung Home Assistant.",
+ "info_state_reporting": "Jika Anda mengaktifkan pelaporan status, Home Assistant akan mengirim semua perubahan status entitas yang terpapar ke Google. Ini memungkinkan Anda untuk selalu melihat status terbaru di aplikasi Google.",
+ "manage_entities": "Kelola Entitas",
+ "not_configured_text": "Sebelum dapat menggunakan Asisten Google, Anda harus mengaktifkan keterampilan Home Assistant Cloud untuk Asisten Google di aplikasi Google Home.",
+ "not_configured_title": "Asisten Google tidak diaktifkan",
+ "security_devices": "Perangkat Keamanan",
+ "sync_entities": "Sinkronkan Entitas ke Google",
+ "sync_entities_404_message": "Gagal menyinkronkan entitas Anda ke Google, minta Google 'Ok Google, sinkronkan perangkat saya' untuk menyinkronkan entitas Anda.",
+ "title": "Google Assistant"
+ },
+ "integrations": "Integrasi",
+ "integrations_introduction": "Integrasi untuk Home Assistant Cloud memungkinkan Anda terhubung dengan layanan di cloud tanpa harus memaparkan instans Home Assistant Anda secara publik di internet.",
+ "integrations_introduction2": "Buka situs web ",
+ "integrations_link_all_features": " semua fitur yang tersedia",
+ "manage_account": "Kelola Akun",
+ "nabu_casa_account": "Akun Nabu Casa",
+ "not_connected": "Tidak Terhubung",
+ "remote": {
+ "access_is_being_prepared": "Akses jarak jauh sedang disiapkan. Kami akan memberi tahu Anda jika sudah siap.",
+ "certificate_info": "Info Sertifikat",
+ "connected": "Terhubung",
+ "info": "Home Assistant Cloud menyediakan koneksi jarak jauh yang aman ke instans Anda saat jauh dari rumah.",
+ "instance_is_available": "Instans Anda tersedia di",
+ "instance_will_be_available": "Instans Anda akan tersedia di",
+ "link_learn_how_it_works": "Pelajari cara kerjanya",
+ "not_connected": "Tidak Terhubung",
+ "reconnecting": "Tidak terhubung. Mencoba menghubungkan kembali.",
+ "remote_enabled": {
+ "caption": "Terhubung secara otomatis",
+ "description": "Aktifkan opsi ini untuk memastikan instans Home Assistant Anda selalu dapat diakses dari jarak jauh."
+ },
+ "title": "Kontrol Jarak Jauh"
+ },
+ "sign_out": "Keluar",
+ "thank_you_note": "Terima kasih telah menjadi bagian dari Home Assistant Cloud. Berkat orang-orang seperti Anda, kami dapat membuat pengalaman otomasi rumah yang hebat untuk semua orang. Terima kasih!",
+ "tts": {
+ "default_language": "Bahasa baku untuk digunakan",
+ "dialog": {
+ "example_message": "Halo {name}, Anda dapat memainkan teks apa pun pada pemutar media yang didukung!",
+ "header": "Coba Teks ke Ucapan",
+ "play": "Putar",
+ "target": "Target",
+ "target_browser": "Browser"
+ },
+ "female": "Perempuan",
+ "info": "Bawa kepribadian ke rumah Anda dengan memintanya berbicara kepada Anda dengan menggunakan layanan Teks ke Ucapan kami. Anda dapat menggunakan ini dalam otomasi dan skrip dengan menggunakan layanan {service}.",
+ "male": "Pria",
+ "title": "Teks ke Ucapan",
+ "try": "Coba"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Gagal menonaktifkan webhook:",
+ "info": "Semua yang dikonfigurasi untuk dipicu oleh webhook dapat ditetapkan URL-nya, yang dapat diakses publik untuk memungkinkan Anda mengirim data kembali ke Home Assistant dari mana saja, tanpa mengekspos instans Anda ke internet.",
+ "link_learn_more": "Pelajari lebih lanjut tentang membuat otomasi yang didukung webhook.",
+ "loading": "Memuat…",
+ "manage": "Kelola",
+ "no_hooks_yet": "Sepertinya Anda belum memiliki webhook. Mulailah dengan mengonfigurasi",
+ "no_hooks_yet2": " atau dengan membuat ",
+ "no_hooks_yet_link_automation": "otomasi webhook",
+ "no_hooks_yet_link_integration": "integrasi berbasis webhook",
+ "title": "Webhook"
+ }
+ },
+ "alexa": {
+ "banner": "Pengeditan entitas yang diekspos melalui antarmuka ini dinonaktifkan karena Anda telah mengonfigurasi filter entitas di configuration.yaml.",
+ "dont_expose_entity": "Jangan paparkan entitas",
+ "expose": "Paparkan ke Alexa",
+ "expose_entity": "Paparkan entitas",
+ "exposed": "{selected} terpapar",
+ "exposed_entities": "Entitas yang terpapar",
+ "follow_domain": "Ikuti domain",
+ "manage_domains": "Kelola domain",
+ "not_exposed": "{selected} tidak terpapar",
+ "not_exposed_entities": "Entitas tidak terekspos",
+ "title": "Alexa"
+ },
+ "description_features": "Kontrol rumah saat pergi dan integrasikan dengan Alexa dan Asisten Google",
+ "description_login": "Masuk sebagai {email}",
+ "description_not_login": "Belum masuk",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Tanggal kedaluwarsa sertifikat:",
+ "certificate_information": "Informasi Sertifikat",
+ "close": "Tutup",
+ "fingerprint": "Sidik jari sertifikat:",
+ "will_be_auto_renewed": "akan diperpanjang secara otomatis"
+ },
+ "dialog_cloudhook": {
+ "available_at": "Webhook tersedia di URL berikut:",
+ "close": "Tutup",
+ "confirm_disable": "Yakin ingin menghapus webhook ini?",
+ "copied_to_clipboard": "Disalin ke papan klip",
+ "info_disable_webhook": "Jika Anda tidak ingin lagi menggunakan webhook ini, Anda bisa",
+ "link_disable_webhook": "menonaktifkannya",
+ "managed_by_integration": "Webhook ini dikelola dengan integrasi dan tidak dapat dinonaktifkan.",
+ "view_documentation": "Lihat dokumentasi",
+ "webhook_for": "Webhook untuk {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "Periksa email Anda untuk mendapatkan petunjuk tentang cara mengatur ulang kata sandi Anda.",
+ "email": "Email",
+ "email_error_msg": "Email tidak valid",
+ "instructions": "Masukkan alamat email Anda dan kami akan mengirimkan tautan untuk mengatur ulang kata sandi Anda.",
+ "send_reset_email": "Kirim email pengaturan ulang",
+ "subtitle": "Lupa kata sandi Anda",
+ "title": "Lupa kata sandi"
+ },
+ "google": {
+ "banner": "Pengeditan entitas mana yang terpapar melalui antarmuka ini dinonaktifkan karena Anda telah mengonfigurasi filter entitas di configuration.yaml.",
+ "disable_2FA": "Nonaktifkan autentikasi dua faktor",
+ "dont_expose_entity": "Jangan paparkan entitas",
+ "expose": "Paparkan ke Google Assistant",
+ "expose_entity": "Paparkan entitas",
+ "exposed": "{selected} terpapar",
+ "exposed_entities": "Entitas yang terpapar",
+ "follow_domain": "Ikuti domain",
+ "manage_domains": "Kelola domain",
+ "not_exposed": "{selected} tidak terpapar",
+ "not_exposed_entities": "Entitas tidak terekspos",
+ "sync_to_google": "Menyinkronkan perubahan ke Google.",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Anda perlu mengkonfirmasi email Anda sebelum masuk.",
+ "alert_password_change_required": "Anda perlu mengubah kata sandi sebelum masuk.",
+ "dismiss": "Tutup",
+ "email": "Email",
+ "email_error_msg": "Email tidak valid",
+ "forgot_password": "Lupa kata sandi?",
+ "introduction": "Home Assistant Cloud memberi Anda koneksi jarak jauh yang aman ke instans Anda saat jauh dari rumah. Ini juga memungkinkan Anda untuk terhubung dengan layanan khusus cloud: Amazon Alexa dan Google Assistant.",
+ "introduction2": "Layanan ini dijalankan oleh mitra kami",
+ "introduction2a": ", sebuah perusahaan yang didirikan oleh pendiri Home Assistant.",
+ "introduction3": "Home Assistant Cloud adalah layanan berlangganan dengan uji coba gratis selama satu bulan. Tidak ada informasi pembayaran yang diperlukan.",
+ "learn_more_link": "Pelajari lebih lanjut tentang Home Assistant Cloud",
+ "password": "Kata sandi",
+ "password_error_msg": "Panjang minimal kata sandi adalah 8 karakter",
+ "sign_in": "Masuk",
+ "start_trial": "Mulai uji coba gratis 1 bulan Anda",
+ "title": "Cloud Login",
+ "trial_info": "Tidak ada informasi pembayaran yang diperlukan"
+ },
+ "register": {
+ "account_created": "Akun dibuat! Periksa email untuk mendapatkan petunjuk tentang cara mengaktifkan akun Anda.",
+ "create_account": "Buat Akun",
+ "email_address": "Alamat email",
+ "email_error_msg": "Email tidak valid",
+ "feature_amazon_alexa": "Integrasi dengan Amazon Alexa",
+ "feature_google_home": "Integrasi dengan Google Assistant",
+ "feature_remote_control": "Kontrol jarak jauh Home Assistant",
+ "feature_webhook_apps": "Integrasi yang mudah dengan aplikasi berbasis webhook seperti OwnTracks",
+ "headline": "Mulai uji coba gratis Anda",
+ "information": "Buat akun untuk memulai uji coba gratis selama satu bulan dengan Home Assistant Cloud. Tidak ada informasi pembayaran yang diperlukan.",
+ "information2": "Uji coba ini akan memberi Anda akses ke semua manfaat Home Assistant Cloud, termasuk:",
+ "information3": "Layanan ini dijalankan oleh mitra kami",
+ "information3a": ", sebuah perusahaan yang didirikan oleh pendiri Home Assistant.",
+ "information4": "Dengan mendaftarkan akun, Anda menyetujui syarat dan ketentuan berikut.",
+ "link_privacy_policy": "Kebijakan Privasi",
+ "link_terms_conditions": "Syarat dan Ketentuan",
+ "password": "Kata Sandi",
+ "password_error_msg": "Panjang minimal kata sandi adalah 8 karakter",
+ "resend_confirm_email": "Kirim ulang email konfirmasi",
+ "start_trial": "Mulai Uji Coba",
+ "title": "Daftar Akun"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Anda memiliki perubahan yang belum disimpan. Yakin ingin meninggalkan?"
+ },
+ "learn_more": "Pelajari lebih lanjut"
+ },
+ "core": {
+ "caption": "Umum",
+ "description": "Lokasi, jaringan, dan analitik",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Mata uang",
+ "edit_requires_storage": "Editor dinonaktifkan karena konfigurasi disimpan dalam configuration.yaml.",
+ "elevation": "Ketinggian",
+ "elevation_meters": "meter",
+ "external_url": "URL Eksternal",
+ "find_currency_value": "Temukan nilai Anda",
+ "imperial_example": "Fahrenheit, pound",
+ "internal_url": "URL internal",
+ "latitude": "Lintang",
+ "location_name": "Beri nama instalasi Home Assistant Anda",
+ "longitude": "Bujur",
+ "metric_example": "Celcius, kilogram",
+ "save_button": "Simpan",
+ "time_zone": "Zona Waktu",
+ "unit_system": "Sistem Unit",
+ "unit_system_imperial": "Imperial",
+ "unit_system_metric": "Metrik"
+ },
+ "header": "Konfigurasi Umum",
+ "introduction": "Kelola lokasi, jaringan, dan analitik Anda."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Atribut berikut sudah diatur dalam customize.yaml",
+ "attributes_not_set": "Atribut berikut belum disetel. Setel jika diinginkan.",
+ "attributes_outside": "Atribut berikut disesuaikan dari luar customize.yaml",
+ "attributes_override": "Anda dapat menimpanya jika diinginkan.",
+ "attributes_set": "Atribut entitas berikut ditetapkan secara terprogram.",
+ "caption": "Penyesuaian",
+ "description": "Sesuaikan entitas anda",
+ "different_include": "Mungkin melalui domain, glob, atau penyertaan lain.",
+ "pick_attribute": "Pilih atribut untuk ditimpa",
+ "picker": {
+ "documentation": "Dokumentasi penyesuaian",
+ "header": "Penyesuaian",
+ "introduction": "Sesuaikan atribut per entitas. Penyesuaian yang ditambahkan/diedit akan segera berlaku. Penyesuaian yang dihapus akan berlaku saat entitas diperbarui."
+ },
+ "warning": {
+ "include_link": "menyertakan customize.yaml dengan benar",
+ "include_sentence": "Tampaknya configuration.yaml Anda tidak",
+ "not_applied": "Perubahan yang dilakukan di sini ditulis di dalamnya, tetapi tidak akan diterapkan setelah memuat ulang konfigurasi kecuali jika penyertaan ditetapkan dengan benar."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Kelola otomasi, skenario, skrip, dan pembantu",
+ "title": "Otomasi & Skenario"
+ },
+ "blueprints": {
+ "description": "Otomasi dan skrip yang disiapkan sebelumnya oleh komunitas",
+ "title": "Blueprint"
+ },
+ "companion": {
+ "description": "Lokasi dan notifikasi",
+ "title": "Aplikasi Pendamping"
+ },
+ "dashboards": {
+ "description": "Buat sekelompok kartu yang disesuaikan untuk mengontrol rumah Anda",
+ "title": "Dasbor"
+ },
+ "devices": {
+ "description": "Integrasi, perangkat, entitas, dan area",
+ "title": "Perangkat & Layanan"
+ },
+ "energy": {
+ "description": "Pantau produksi dan konsumsi energi Anda",
+ "title": "Energi"
+ },
+ "people": {
+ "description": "Kelola orang dan zona yang dilacak oleh Home Assistant",
+ "title": "Orang & Zona"
+ },
+ "settings": {
+ "description": "Pengaturan dasar, kontrol server, log, dan info",
+ "title": "Setelan"
+ },
+ "supervisor": {
+ "description": "Buat cadangan, periksa log, atau reboot sistem Anda",
+ "title": "Add-on, Cadangan & Supervisor"
+ },
+ "tags": {
+ "description": "Picu otomasi ketika tag NFC, kode QR, dll dipindai",
+ "title": "Tag"
+ }
+ },
+ "devices": {
+ "add_prompt": "Belum ada {name} yang ditambahkan menggunakan perangkat ini. Anda dapat menambahkannya dengan mengklik tombol + di atas.",
+ "automation": {
+ "actions": {
+ "caption": "Ketika sesuatu dipicu…",
+ "no_actions": "Tidak ada aksi",
+ "unknown_action": "Aksi tidak diketahui"
+ },
+ "automations": "Otomasi",
+ "conditions": {
+ "caption": "Lakukan sesuatu hanya jika…",
+ "no_conditions": "Tidak ada kondisi",
+ "unknown_condition": "Kondisi tidak diketahui"
+ },
+ "create": "Buat otomasi dengan perangkat",
+ "create_disable": "Tidak dapat membuat otomasi dengan perangkat yang dinonaktifkan",
+ "no_automations": "Tidak ada otomasi",
+ "no_device_automations": "Tidak ada otomasi yang tersedia untuk perangkat ini.",
+ "triggers": {
+ "caption": "Lakukan sesuatu jika…",
+ "no_triggers": "Tidak ada pemicu",
+ "unknown_trigger": "Pemicu tidak diketahui"
+ },
+ "unknown_automation": "Otomasi tidak diketahui"
+ },
+ "cant_edit": "Anda hanya dapat mengedit item yang dibuat di antarmuka.",
+ "caption": "Perangkat",
+ "confirm_delete": "Yakin ingin menghapus perangkat ini?",
+ "confirm_disable_config_entry": "Tidak ada lagi perangkat untuk entri konfigurasi {entry_name}, ingin menonaktifkan entri konfigurasi?",
+ "confirm_rename_entity_ids": "Ingin juga mengganti nama ID entitas Anda?",
+ "confirm_rename_entity_ids_warning": "Ini tidak akan mengubah konfigurasi apa pun (seperti otomasi, skrip, skenario, dasbor) yang sedang menggunakan entitas ini! Anda harus memperbaruinya sendiri untuk menggunakan ID entitas baru!",
+ "data_table": {
+ "area": "Area",
+ "battery": "Baterai",
+ "device": "Perangkat",
+ "integration": "Integrasi",
+ "manufacturer": "Pabrikan",
+ "model": "Model",
+ "no_devices": "Tidak ada perangkat"
+ },
+ "delete": "Hapus",
+ "description": "Kelola perangkat yang dikonfigurasi",
+ "device_info": "Info perangkat",
+ "device_not_found": "Perangkat tidak ditemukan.",
+ "disabled": "Dinonaktifkan",
+ "disabled_by": {
+ "config_entry": "Entri konfigurasi",
+ "integration": "Integrasi",
+ "user": "Pengguna"
+ },
+ "edit_settings": "Edit pengaturan",
+ "enabled_cause": "Perangkat dinonaktifkan oleh {cause} .",
+ "enabled_description": "Perangkat yang dinonaktifkan tidak akan ditampilkan dan entitas milik perangkat akan dinonaktifkan dan tidak ditambahkan ke Home Assistant.",
+ "enabled_label": "Aktifkan perangkat",
+ "entities": {
+ "add_entities_lovelace": "Tambahkan ke Lovelace",
+ "config": "Konfigurasi",
+ "control": "Kontrol",
+ "diagnostic": "Diagnostik",
+ "disabled_entities": "+{count} {count, plural,\n one {entitas dinonaktifkan}\n other {entitas dinonaktifkan}\n}",
+ "entities": "Entitas",
+ "hide_disabled": "Sembunyikan yang dinonaktifkan",
+ "none": "Perangkat ini tidak memiliki entitas",
+ "sensor": "Sensor",
+ "state": "Status"
+ },
+ "name": "Nama",
+ "no_devices": "Tidak ada perangkat",
+ "open_configuration_url_device": "Kunjungi perangkat",
+ "open_configuration_url_service": "Kunjungi layanan",
+ "picker": {
+ "filter": {
+ "filter": "Filter",
+ "hidden_devices": "{number} {number, plural,\n one {perangkat}\n other {perangkat}\n} tersembunyi",
+ "show_all": "Tampilkan semua",
+ "show_disabled": "Tampilkan perangkat yang dinonaktifkan"
+ },
+ "search": "Cari perangkat"
+ },
+ "scene": {
+ "create": "Buat skenario dengan perangkat",
+ "create_disable": "Tidak dapat membuat skenario dengan perangkat yang dinonaktifkan",
+ "no_scenes": "Tidak ada skenario",
+ "scenes": "Skenario"
+ },
+ "scenes": "Skenario",
+ "script": {
+ "create": "Buat skrip dengan perangkat",
+ "create_disable": "Tidak dapat membuat skrip dengan perangkat yang dinonaktifkan",
+ "no_scripts": "Tidak ada skrip",
+ "scripts": "Skrip"
+ },
+ "scripts": "Skrip",
+ "unknown_error": "Kesalahan yang tidak diketahui",
+ "unnamed_device": "Perangkat tanpa nama",
+ "update": "Perbarui",
+ "update_device_error": "Gagal memperbarui perangkat"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Tambahkan sistem baterai",
+ "battery_systems": "Sistem baterai",
+ "dialog": {
+ "energy_into_battery": "Energi masuk ke baterai (kWh)",
+ "energy_out_of_battery": "Energi keluar dari baterai (kWh)",
+ "header": "Konfigurasikan sistem baterai"
+ },
+ "learn_more": "Informasi lebih lanjut tentang cara memulai.",
+ "sub": "Jika Anda memiliki sistem dengan baterai, Anda dapat mengonfigurasinya untuk memantau berapa banyak energi yang disimpan dan digunakan dari baterai Anda.",
+ "title": "Penyimpanan Baterai Rumah"
+ },
+ "caption": "Energi",
+ "delete_integration": "Yakin ingin menghapus integrasi ini? Ini akan menghapus entitas yang disediakannya",
+ "delete_source": "Yakin ingin menghapus sumber ini?",
+ "description": "Pantau produksi dan konsumsi energi Anda",
+ "device_consumption": {
+ "add_device": "Tambahkan perangkat",
+ "add_stat": "Pilih entitas untuk melacak energi",
+ "devices": "Perangkat",
+ "dialog": {
+ "device_consumption_energy": "Energi konsumsi perangkat (kWh)",
+ "header": "Tambahkan perangkat",
+ "selected_stat_intro": "Pilih entitas yang mewakili penggunaan energi perangkat."
+ },
+ "learn_more": "Informasi lebih lanjut tentang cara memulai.",
+ "selected_stat": "Melacak energi untuk",
+ "sub": "Melacak penggunaan energi masing-masing perangkat memungkinkan Home Assistant untuk memecah penggunaan energi Anda berdasarkan perangkat.",
+ "title": "Perangkat individual"
+ },
+ "gas": {
+ "add_gas_source": "Tambahkan sumber gas",
+ "dialog": {
+ "cost_entity": "Gunakan entitas dengan harga saat ini",
+ "cost_entity_input": "Entitas dengan harga saat ini per {unit}",
+ "cost_number": "Gunakan harga statis",
+ "cost_number_input": "Harga per {unit}",
+ "cost_number_suffix": "{currency}/m³",
+ "cost_para": "Pilih cara Asisten Rumah dalam melacak biaya energi yang dikonsumsi.",
+ "cost_stat": "Gunakan entitas yang melacak total biaya",
+ "cost_stat_input": "Entitas Total Biaya",
+ "energy_stat": "Energi yang Dikonsumsi (m³)",
+ "gas_usage": "Penggunaan gas",
+ "header": "Konfigurasi konsumsi gas",
+ "m3_or_kWh": "ft³, m³, Wh, kWh, atau MWh",
+ "no_cost": "Jangan lacak biaya",
+ "paragraph": "Konsumsi gas adalah volume gas yang mengalir ke rumah Anda."
+ },
+ "gas_consumption": "Konsumsi gas",
+ "learn_more": "Informasi lebih lanjut tentang cara memulai.",
+ "sub": "Biarkan Home Assistant memantau penggunaan gas Anda.",
+ "title": "Konsumsi Gas"
+ },
+ "grid": {
+ "add_co2_signal": "Tambahkan integrasi sinyal CO2",
+ "add_consumption": "Tambahkan konsumsi",
+ "add_return": "Tambahkan pengembalian",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Gunakan entitas dengan harga saat ini",
+ "cost_entity_input": "Entitas dengan harga saat ini",
+ "cost_number": "Gunakan harga statis",
+ "cost_number_input": "Harga per kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Pilih cara Asisten Rumah dalam melacak biaya energi yang dikonsumsi.",
+ "cost_stat": "Gunakan entitas yang melacak total biaya",
+ "cost_stat_input": "Entitas Total Biaya",
+ "energy_stat": "Energi yang Dikonsumsi (kWh)",
+ "header": "Konfigurasikan konsumsi jaringan",
+ "no_cost": "Jangan lacak biaya",
+ "paragraph": "Konsumsi jaringan adalah energi yang mengalir dari jaringan energi ke rumah Anda."
+ },
+ "to": {
+ "cost_entity": "Gunakan entitas dengan tarif saat ini",
+ "cost_entity_input": "Entitas dengan tarif saat ini",
+ "cost_number": "Gunakan tarif statis",
+ "cost_number_input": "Tarif per kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Apakah Anda mendapatkan uang kembali ketika Anda mengembalikan energi ke jaringan?",
+ "cost_stat": "Gunakan entitas yang melacak total uang yang diterima",
+ "cost_stat_input": "Entitas Kompensasi Total",
+ "energy_stat": "Energi kembali ke jaringan (kWh)",
+ "header": "Konfigurasikan produksi jaringan",
+ "no_cost": "Saya tidak mendapatkan uang kembali",
+ "paragraph": "Produksi jaringan adalah energi yang mengalir dari panel surya Anda ke jaringan."
+ }
+ },
+ "grid_carbon_footprint": "Jejak karbon jaringan",
+ "grid_consumption": "Konsumsi jaringan",
+ "learn_more": "Informasi lebih lanjut tentang cara memulai.",
+ "return_to_grid": "Kembali ke jaringan",
+ "sub": "Konfigurasikan jumlah energi yang Anda konsumsi dari jaringan dan jika Anda menghasilkan energi, berikan kembali ke jaringan. Ini memungkinkan Home Assistant untuk melacak seluruh penggunaan energi rumah Anda.",
+ "title": "Jaringan listrik"
+ },
+ "new_device_info": "Setelah menyiapkan perangkat baru, diperlukan waktu hingga 2 jam agar data baru tiba di dasbor energi Anda.",
+ "solar": {
+ "add_solar_production": "Tambahkan produksi surya",
+ "dialog": {
+ "add_forecast": "Tambahkan perkiraan",
+ "dont_forecast_production": "Jangan memperkirakan produksi",
+ "forecast_production": "Perkiraan Produksi",
+ "header": "Konfigurasikan panel surya",
+ "solar_production_energy": "Energi produksi surya (kWh)",
+ "solar_production_forecast": "Prakiraan produksi surya",
+ "solar_production_forecast_description": "Menambahkan informasi perkiraan produksi surya memungkinkan Anda melihat produksi yang diharapkan untuk hari ini dengan cepat."
+ },
+ "learn_more": "Informasi lebih lanjut tentang cara memulai.",
+ "solar_production": "Produksi surya",
+ "stat_predicted_production": "Prediksi produksi energi surya Anda",
+ "stat_production": "Produksi energi surya Anda",
+ "stat_return_to_grid": "Energi surya kembali ke jaringan",
+ "sub": "Biarkan Home Assistant memantau panel surya Anda dan menyediakan wawasan tentang kinerjanya.",
+ "title": "Panel Surya"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "Entitas berikut memiliki status negatif sementara status positif diharapkan:",
+ "title": "Entitas memiliki status negatif"
+ },
+ "entity_not_defined": {
+ "description": "Periksa integrasi atau konfigurasi Anda yang menyediakan:",
+ "title": "Entitas tidak didefinisikan"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "Entitas berikut memiliki kelas status 'measurement' tetapi 'last_reset' tidak ada:",
+ "title": "Pengaturan ulang terakhir tidak ada"
+ },
+ "entity_state_non_numeric": {
+ "description": "Entitas berikut memiliki status yang tidak dapat diuraikan sebagai angka:",
+ "title": "Entitas memiliki status nonnumerik"
+ },
+ "entity_unavailable": {
+ "description": "Status entitas yang dikonfigurasi ini saat ini tidak tersedia:",
+ "title": "Entitas tidak tersedia"
+ },
+ "entity_unexpected_device_class": {
+ "description": "Entitas berikut tidak memiliki kelas perangkat yang diharapkan:",
+ "title": "Kelas perangkat yang tidak diharapkan"
+ },
+ "entity_unexpected_state_class": {
+ "description": "Entitas berikut tidak memiliki kelas status yang diharapkan:",
+ "title": "Kelas status yang tidak diharapkan"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "Entitas berikut tidak memiliki kelas status 'total_increasing' yang diharapkan",
+ "title": "Kelas status yang tidak diharapkan"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "Entitas berikut tidak memiliki unit pengukuran yang diharapkan 'Wh', 'kWh', atau 'MWh':",
+ "title": "Unit pengukuran yang tidak diharapkan"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "Entitas berikut tidak memiliki unit pengukuran yang diharapkan ''{currency}/Wh'', ''{currency}/kWh'', atau ''{currency}/MWh'':",
+ "title": "Unit pengukuran yang tidak diharapkan"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "Entitas berikut tidak memiliki unit pengukuran yang diharapkan 'Wh', 'kWh', atau 'MWh' untuk sensor energi atau 'm³' atau 'ft³' untuk sensor gas:",
+ "title": "Unit pengukuran yang tidak diharapkan"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "Entitas berikut tidak memiliki unit pengukuran yang diharapkan ''{currency}/Wh'', ''{currency}/kWh'', ''{currency}/MWh'', ''{currency}/m³'', atau ''{currency}/ft³'':",
+ "title": "Unit pengukuran yang tidak diharapkan"
+ },
+ "recorder_untracked": {
+ "description": "Perekam telah dikonfigurasi untuk mengecualikan entitas yang dikonfigurasi ini:",
+ "title": "Entitas tidak dilacak"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Entitas",
+ "description": "Kelola entitas yang diketahui",
+ "picker": {
+ "disable_selected": {
+ "button": "Nonaktifkan yang dipilih",
+ "confirm_text": "Entitas yang dinonaktifkan tidak akan ditambahkan ke Home Assistant",
+ "confirm_title": "Ingin menonaktifkan {number} {number, plural,\n one {entitas}\n other {entitas}\n}?"
+ },
+ "enable_selected": {
+ "button": "Aktifkan yang dipilih",
+ "confirm_text": "Ini akan membuatnya tersedia lagi di Home Assistant jika saat ini sedang nonaktif.",
+ "confirm_title": "Ingin mengaktifkan {number} {number, plural,\n one {entitas}\n other {entitas}\n}?"
+ },
+ "filter": {
+ "filter": "Filter",
+ "hidden_entities": "{number} {number, plural,\n one {entitas}\n other {entitas}\n} tersembunyi",
+ "show_all": "Tampilkan semua",
+ "show_disabled": "Tampilkan entitas yang dinonaktifkan",
+ "show_readonly": "Tampilkan entitas hanya baca",
+ "show_unavailable": "Tampilkan entitas yang tidak tersedia"
+ },
+ "header": "Entitas",
+ "headers": {
+ "area": "Area",
+ "disabled_by": "Dinonaktifkan oleh",
+ "entity_id": "ID Entitas",
+ "integration": "Integrasi",
+ "name": "Nama",
+ "status": "Status"
+ },
+ "introduction": "Home Assistant menyimpan registri dari setiap entitas yang pernah dilihatnya, yang dapat diidentifikasi secara unik. Masing-masing entitas ini akan memiliki ID entitas yang ditetapkan yang hanya akan digunakan untuk entitas ini.",
+ "introduction2": "Gunakan registri entitas untuk mengganti nama, mengubah ID entitas, atau menghapus entri dari Home Assistant.",
+ "remove_selected": {
+ "button": "Hapus yang dipilih",
+ "confirm_partly_text": "Anda hanya dapat menghapus {removable} dari {selected} entitas yang dipilih. Entitas hanya dapat dihapus ketika integrasi tidak lagi menyediakan entitas. Terkadang Anda harus memulai ulang Home Assistant sebelum dapat menghapus entitas integrasi yang dihapus. Yakin ingin menghapus entitas yang bisa dilepas?",
+ "confirm_partly_title": "Hanya {number} {number, plural,\n one {entitas terpilih}\n other {entitas terpilih}\n} yang bisa dihapus.",
+ "confirm_text": "Anda harus menghapusnya dari konfigurasi dan otomasi Lovelace yang mengandung entitas ini.",
+ "confirm_title": "Ingin menghapus {number} {number, plural,\n one {entitas}\n other {entitas}\n}?"
+ },
+ "search": "Cari entitas",
+ "selected": "{number} dipilih",
+ "status": {
+ "disabled": "Dinonaktifkan",
+ "ok": "Oke",
+ "readonly": "Hanya baca",
+ "restored": "Dipulihkan",
+ "unavailable": "Tidak tersedia"
+ }
+ }
+ },
+ "header": "Mengonfigurasi Home Assistant",
+ "helpers": {
+ "caption": "Pembantu",
+ "description": "Elemen yang membantu membangun otomasi",
+ "dialog": {
+ "add_helper": "Tambahkan pembantu",
+ "add_platform": "Tambahkan {platform}",
+ "create": "Buat"
+ },
+ "picker": {
+ "add_helper": "Tambahkan pembantu",
+ "headers": {
+ "editable": "Dapat diedit",
+ "entity_id": "ID Entitas",
+ "name": "Nama",
+ "type": "Jenis"
+ },
+ "no_helpers": "Sepertinya Anda belum memiliki pembantu!"
+ },
+ "types": {
+ "counter": "Pencacah",
+ "input_boolean": "Pengalihan",
+ "input_datetime": "Tanggal dan/atau waktu",
+ "input_number": "Bilangan",
+ "input_select": "Tarik-turun",
+ "input_text": "Teks",
+ "timer": "Timer"
+ }
+ },
+ "info": {
+ "built_using": "Dibangun menggunakan",
+ "caption": "Info",
+ "copy_github": "Untuk GitHub",
+ "copy_menu": "Salin menu",
+ "copy_raw": "Teks Mentah",
+ "custom_uis": "Antarmuka Khusus:",
+ "description": "Versi, kesehatan sistem, dan tautan ke dokumentasi",
+ "developed_by": "Dikembangkan oleh sekelompok orang hebat.",
+ "documentation": "Dokumentasi",
+ "frontend": "frontend-ui",
+ "frontend_version": "Versi antarmuka: {version} - {type}",
+ "home_assistant_logo": "Logo Home Assistant",
+ "icons_by": "Ikon oleh",
+ "integrations": "Integrasi",
+ "issues": "Masalah",
+ "license": "Diterbitkan di bawah lisensi Apache 2.0",
+ "path_configuration": "Jalur ke configuration.yaml: {path}",
+ "server": "server",
+ "setup_time": "Waktu penyiapan",
+ "source": "Sumber:",
+ "system_health": {
+ "manage": "Kelola",
+ "more_info": "info lebih lanjut"
+ },
+ "system_health_error": "Komponen Kesehatan Sistem tidak dimuat. Tambahkan 'system_health:' ke configuration.yaml"
+ },
+ "integrations": {
+ "add_integration": "Tambahkan integrasi",
+ "attention": "Perlu perhatian",
+ "caption": "Integrasi",
+ "config_entry": {
+ "area": "Di {area}",
+ "check_the_logs": "Periksa log",
+ "configure": "Konfigurasikan",
+ "delete": "Hapus",
+ "delete_confirm": "Yakin ingin menghapus integrasi {title}?",
+ "depends_on_cloud": "Tergantung pada cloud",
+ "device_unavailable": "Perangkat tidak tersedia",
+ "devices": "{count} {count, plural,\n one {perangkat}\n other {perangkat}\n}",
+ "disable": {
+ "disable_confirm": "Yakin ingin menonaktifkan entri konfigurasi ini? Perangkat dan entitasnya akan dinonaktifkan.",
+ "disabled": "Dinonaktifkan",
+ "disabled_by": {
+ "device": "perangkat",
+ "integration": "integrasi",
+ "user": "pengguna"
+ },
+ "disabled_cause": "Dinonaktifkan oleh {cause}"
+ },
+ "disable_error": "Gagal mengaktifkan atau menonaktifkan integrasi",
+ "disable_restart_confirm": "Mulai ulang Home Assistant untuk menyelesaikan penonaktifan integrasi ini",
+ "disabled_polling": "Polling otomatis untuk data yang diperbarui dinonaktifkan",
+ "documentation": "Dokumentasi",
+ "enable_restart_confirm": "Mulai ulang Home Assistant untuk menyelesaikan pengaktifan integrasi ini",
+ "entities": "{count} {count, plural,\n one {entitas}\n other {entitas}\n}",
+ "entity_unavailable": "Entitas tidak tersedia",
+ "firmware": "Firmware: {version}",
+ "hardware": "Perangkat keras: {version}",
+ "hub": "Terhubung via",
+ "manuf": "oleh {manufacturer}",
+ "no_area": "Tidak Ada Area",
+ "not_loaded": "Tidak dimuat",
+ "provided_by_custom_integration": "Disediakan oleh integrasi khusus",
+ "reload": "Muat Ulang",
+ "reload_confirm": "Integrasi telah dimuat ulang",
+ "reload_restart_confirm": "Mulai ulang Home Assistant untuk menyelesaikan pemuatan ulang integrasi ini",
+ "rename": "Ganti Nama",
+ "restart_confirm": "Mulai ulang Home Assistant untuk menyelesaikan penghapusan integrasi ini",
+ "services": "{count} {count, plural,\n one {layanan}\n other {layanan}\n}",
+ "state": {
+ "failed_unload": "Gagal membongkar",
+ "loaded": "Dimuat",
+ "migration_error": "Kesalahan migrasi",
+ "not_loaded": "Tidak dimuat",
+ "setup_error": "Gagal menyiapkan",
+ "setup_retry": "Mencoba kembali penyiapan"
+ },
+ "system_options": "Opsi Sistem",
+ "unknown_via_device": "Perangkat tidak diketahui",
+ "unnamed_entry": "Entri tanpa nama",
+ "via": "Terhubung via"
+ },
+ "config_flow": {
+ "aborted": "Dibatalkan",
+ "close": "Tutup",
+ "could_not_load": "Alur konfigurasi tidak dapat dimuat",
+ "created_config": "Konfigurasi untuk {name} dibuat.",
+ "dismiss": "Tutup dialog",
+ "error": "Kesalahan",
+ "error_saving_area": "Kesalahan menyimpan area: {error}",
+ "external_step": {
+ "description": "Langkah ini mengharuskan Anda mengunjungi situs web eksternal untuk menyelesaikan.",
+ "open_site": "Buka situs web"
+ },
+ "finish": "Selesai",
+ "loading": {
+ "fallback_title": "integrasi",
+ "loading_flow": "Mohon tunggu sementara {integration} sedang disiapkan",
+ "loading_step": "Memuat langkah berikutnya untuk {integration}"
+ },
+ "next": "Berikutnya",
+ "not_all_required_fields": "Belum semua bidang wajib telah terisi.",
+ "not_loaded": "Integrasi tidak dapat dimuat, coba mulai ulang Home Assistant.",
+ "pick_flow_step": {
+ "new_flow": "Tidak, siapkan instans {integration} lainnya",
+ "title": "Kami menemukan yang berikut, ingin menyiapkannya?"
+ },
+ "submit": "Kirimkan"
+ },
+ "configure": "Konfigurasi",
+ "configured": "Terkonfigurasi",
+ "confirm_new": "Ingin menyiapkan {integration}?",
+ "description": "Kelola integrasi dengan layanan atau perangkat",
+ "details": "Detail integrasi",
+ "disable": {
+ "disabled_integrations": "{number} dinonaktifkan",
+ "show": "Tampilkan",
+ "show_disabled": "Tampilkan integrasi yang dinonaktifkan"
+ },
+ "discovered": "Ditemukan",
+ "home_assistant_website": "Situs web Home Assistant",
+ "ignore": {
+ "confirm_delete_ignore": "Ini akan membuat integrasi tampil kembali dalam integrasi yang ditemukan ketika nanti ditemukan kembali. Ini mungkin memerlukan mulai ulang atau membutuhkan beberapa saat.",
+ "confirm_delete_ignore_title": "Berhenti mengabaikan {name}?",
+ "confirm_ignore": "Yakin tidak ingin menyiapkan integrasi ini? Anda dapat membatalkan ini dengan mengeklik 'Tampilkan integrasi yang diabaikan' di menu tambahan di kanan atas.",
+ "confirm_ignore_title": "Abaikan penemuan {name}?",
+ "ignore": "Abaikan",
+ "ignored": "Diabaikan",
+ "show_ignored": "Tampilkan integrasi yang diabaikan",
+ "stop_ignore": "Berhenti mengabaikan"
+ },
+ "integration": "integrasi",
+ "integration_not_found": "Integrasi tidak ditemukan.",
+ "new": "Siapkan integrasi baru",
+ "no_integrations": "Sepertinya Anda belum memiliki integrasi apa pun yang dikonfigurasi. Klik tombol di bawah untuk menambahkan integrasi pertama Anda!",
+ "none": "Belum ada yang dikonfigurasi",
+ "none_found": "Tidak ada integrasi yang ditemukan",
+ "none_found_detail": "Sesuaikan kriteria pencarian Anda.",
+ "note_about_integrations": "Belum semua integrasi dapat dikonfigurasi melalui antarmuka.",
+ "note_about_website_reference": "Yang lain banyak tersedia di ",
+ "reconfigure": "Konfigurasi ulang",
+ "rename_dialog": "Edit nama entri konfigurasi ini",
+ "rename_input_label": "Nama entri",
+ "search": "Cari integrasi"
+ },
+ "introduction": "Di layar ini, Anda dapat mengonfigurasi komponen dan Home Assistant. Tidak semuanya bisa dikonfigurasi dari antarmuka, tetapi kami terus mengembangkannya.",
+ "logs": {
+ "caption": "Log",
+ "clear": "Bersihkan",
+ "copy": "Salin entri log",
+ "custom_integration": "integrasi khusus",
+ "description": "Lihat log Home Assistant",
+ "details": "Detail Log ({level})",
+ "error_from_custom_integration": "Kesalahan ini berasal dari integrasi khusus.",
+ "level": {
+ "critical": "CRITICAL",
+ "debug": "DEBUG",
+ "error": "ERROR",
+ "info": "INFO",
+ "warning": "WARNING"
+ },
+ "load_full_log": "Muat Log Lengkap Home Assistant",
+ "loading_log": "Memuat log kesalahan…",
+ "multiple_messages": "pesan pertama kali muncul pada {time} dan muncul {counter} kali",
+ "no_errors": "Tidak ada kesalahan yang dilaporkan.",
+ "no_issues": "Tidak ada masalah baru!",
+ "refresh": "Segarkan"
+ },
+ "lovelace": {
+ "caption": "Dasbor Lovelace",
+ "dashboards": {
+ "cant_edit_default": "Dasbor Lovelace standar tidak dapat diedit dari antarmuka. Anda dapat menyembunyikannya dengan menetapkan dasbor lain sebagai default.",
+ "cant_edit_yaml": "Dasbor yang ditentukan di YAML tidak dapat diedit dari UI. Ubah dasbor di configuration.yaml.",
+ "caption": "Dasbor",
+ "conf_mode": {
+ "storage": "Dikendalikan antarmuka",
+ "yaml": "File YAML"
+ },
+ "confirm_delete": "Yakin ingin menghapus dasbor ini?",
+ "confirm_delete_text": "Dasbor Anda akan dihapus secara permanen.",
+ "confirm_delete_title": "Hapus {dashboard_title}?",
+ "default_dashboard": "Ini adalah dasbor baku",
+ "detail": {
+ "create": "Buat",
+ "delete": "Hapus",
+ "dismiss": "Tutup",
+ "edit_dashboard": "Edit dasbor",
+ "icon": "Ikon",
+ "new_dashboard": "Tambahkan dasbor baru",
+ "remove_default": "Hapus sebagai yang baku di perangkat ini",
+ "require_admin": "Admin saja",
+ "set_default": "Setel sebagai yang baku di perangkat ini",
+ "show_sidebar": "Tampilkan di bilah samping",
+ "title": "Judul",
+ "title_required": "Judul wajib diisi",
+ "update": "Perbarui",
+ "url": "URL",
+ "url_error_msg": "URL harus mengandung karakter \"-\" dan tidak boleh mengandung spasi atau karakter khusus, kecuali \"_\" dan \"-\""
+ },
+ "picker": {
+ "add_dashboard": "Tambahkan dasbor",
+ "headers": {
+ "conf_mode": "Metode konfigurasi",
+ "default": "Baku",
+ "filename": "Nama file",
+ "require_admin": "Admin saja",
+ "sidebar": "Tampilkan di bilah samping",
+ "title": "Judul"
+ },
+ "open": "Buka"
+ }
+ },
+ "description": "Buat sekelompok kartu yang disesuaikan untuk mengontrol rumah Anda",
+ "resources": {
+ "cant_edit_yaml": "Anda menggunakan Lovelace dalam mode YAML, oleh karena itu Anda tidak dapat mengelola sumber daya Anda melalui antarmuka. Kelola di configuration.yaml.",
+ "caption": "Sumber Daya",
+ "confirm_delete": "Yakin ingin menghapus sumberdaya ini?",
+ "detail": {
+ "create": "Buat",
+ "delete": "Hapus",
+ "dismiss": "Tutup",
+ "new_resource": "Tambahkan sumber daya baru",
+ "type": "Jenis sumber daya",
+ "update": "Perbarui",
+ "url": "URL",
+ "url_error_msg": "URL wajib diisi",
+ "warning_header": "Berhati-hatilah!",
+ "warning_text": "Menambahkan sumber daya bisa berbahaya, pastikan Anda mengetahui sumber daya dan mempercayainya. Sumber daya yang buruk dapat secara serius membahayakan sistem Anda."
+ },
+ "picker": {
+ "add_resource": "Tambahkan sumber daya",
+ "headers": {
+ "type": "Jenis",
+ "url": "URL"
+ },
+ "no_resources": "Tidak ada sumber daya"
+ },
+ "refresh_body": "Anda harus menyegarkan halaman untuk menyelesaikan penghapusan. Ingin menyegarkan sekarang?",
+ "refresh_header": "Ingin menyegarkan?",
+ "types": {
+ "css": "Stylesheet",
+ "html": "HTML (tidak digunakan lagi)",
+ "js": "File JavaScript (tidak digunakan lagi)",
+ "module": "Modul JavaScript"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Dengarkan topik",
+ "description_publish": "Publikasikan paket",
+ "listening_to": "Mendengarkan",
+ "message_received": "Pesan {id} diterima tentang {topic} pada {time}:",
+ "payload": "Payload (templat diperbolehkan)",
+ "publish": "Publikasikan",
+ "start_listening": "Mulai mendengarkan",
+ "stop_listening": "Berhenti mendengarkan",
+ "subscribe_to": "Topik berlangganan",
+ "title": "MQTT",
+ "topic": "topik"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Pengendali",
+ "instance": "Instans",
+ "network": "Jaringan",
+ "node_id": "ID Node",
+ "ozw_instance": "Instans OpenZWave",
+ "query_stage": "Tahap Kueri",
+ "wakeup_instructions": "Instruksi Bangun",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Node Gagal",
+ "stage": "Tahap",
+ "zwave_info": "Info Z-Wave"
+ },
+ "navigation": {
+ "network": "Jaringan",
+ "node": {
+ "config": "Konfigurasi",
+ "dashboard": "Dasbor"
+ },
+ "nodes": "Node",
+ "select_instance": "Pilih Instans"
+ },
+ "network": {
+ "header": "Manajemen Jaringan",
+ "introduction": "Kelola fungsi seluruh jaringan.",
+ "node_count": "{count} node"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "Semua node telah dikueri",
+ "driverallnodesqueriedsomedead": "Semua node telah dikueri. Beberapa node yang ditemukan telah mati",
+ "driverawakenodesqueries": "Semua node yang bangun telah dikueri",
+ "driverfailed": "Gagal menyambungkan ke pengontrol Z-Wave",
+ "driverready": "Menginisialisasi pengontrol Z-Wave",
+ "driverremoved": "Driver telah dihapus",
+ "driverreset": "Driver telah diatur ulang",
+ "offline": "OZWDaemon sedang luring",
+ "ready": "Siap untuk terhubung",
+ "started": "Tersambung ke MQTT",
+ "starting": "Menghubungkan ke MQTT",
+ "stopped": "OpenZWave berhenti"
+ },
+ "offline": "Luring",
+ "online": "Daring",
+ "starting": "Memulai",
+ "unknown": "Tidak diketahui"
+ },
+ "node": {
+ "button": "Detail Node",
+ "not_found": "Node tidak ditemukan"
+ },
+ "node_config": {
+ "header": "Konfigurasi Node",
+ "help_source": "Deskripsi parameter konfigurasi dan teks bantuan disediakan oleh proyek OpenZWave.",
+ "introduction": "Kelola parameter konfigurasi yang berbeda untuk node Z-Wave.",
+ "wakeup_help": "Node bertenaga baterai harus terjaga untuk mengubah konfigurasinya. Jika node tidak terjaga, OpenZWave akan mencoba memperbarui konfigurasi node ketika node tersebut bangun, yang bisa memakan waktu beberapa jam (atau hari) kemudian. Ikuti langkah-langkah berikut untuk membangunkan perangkat Anda:"
+ },
+ "node_metadata": {
+ "product_manual": "Petunjuk Produk"
+ },
+ "node_query_stages": {
+ "associations": "Menyegarkan grup dan keanggotaan asosiasi",
+ "cacheload": "Memuat informasi dari file tembolok OpenZWave. Node baterai akan tetap pada tahap ini hingga node bangun.",
+ "complete": "Proses wawancara selesai",
+ "configuration": "Mendapatkan nilai konfigurasi dari node",
+ "dynamic": "Mendapatkan nilai yang sering berubah dari node",
+ "instances": "Mendapatkan detail tentang instans atau kanal mana yang didukung perangkat",
+ "manufacturerspecific1": "Mendapatkan kode ID produsen dan produk dari node",
+ "manufacturerspecific2": "Mendapatkan kode ID produk dan produsen dan produk tambahan dari node",
+ "neighbors": "Mendapatkan daftar tetangga node",
+ "nodeinfo": "Mendapatkan kelas perintah yang didukung dari node",
+ "nodeplusinfo": "Mendapatkan informasi Z-Wave+ dari node",
+ "probe": "Memeriksa apakah node sudah bangun/hidup",
+ "protocolinfo": "Mendapatkan kemampuan dasar Z-Wave dari node ini dari pengendali",
+ "session": "Mendapatkan nilai yang jarang berubah dari node",
+ "static": "Mendapatkan nilai statis dari perangkat",
+ "versions": "Mendapatkan informasi tentang firmware dan versi kelas perintah",
+ "wakeup": "Menyiapkan dukungan untuk antrean dan pesan bangun"
+ },
+ "nodes_table": {
+ "failed": "Gagal",
+ "id": "ID",
+ "manufacturer": "Pabrikan",
+ "model": "Model",
+ "query_stage": "Tahap Kueri",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Jika node bertenaga baterai, pastikan untuk membangunkannya sebelum melanjutkan",
+ "button": "Segarkan Node",
+ "complete": "Penyegaran Node Selesai",
+ "description": "Ini akan memberi tahu OpenZWave untuk mewawancarai kembali node dan memperbarui kelas, kapabilitas, dan nilai perintah node.",
+ "node_status": "Status Node",
+ "refreshing_description": "Menyegarkan informasi node…",
+ "start_refresh_button": "Mulai Segarkan",
+ "step": "Langkah",
+ "title": "Segarkan Informasi Node",
+ "wakeup_header": "Instruksi Bangun untuk",
+ "wakeup_instructions_source": "Instruksi bangun bersumber dari basis data perangkat komunitas OpenZWave."
+ },
+ "select_instance": {
+ "header": "Pilih Instans OpenZWave",
+ "introduction": "Anda memiliki lebih dari satu instans OpenZWave yang berjalan. Instans mana yang ingin dikelola?",
+ "none_found": "Kami tidak dapat menemukan instans OpenZWave. Jika ini salah, periksa pengaturan OpenZWave dan MQTT Anda dan pastikan Home Assistant dapat berkomunikasi dengan broker MQTT Anda."
+ },
+ "services": {
+ "add_node": "Tambahkan Node",
+ "cancel_command": "Batalkan Perintah",
+ "remove_node": "Hapus Node"
+ }
+ },
+ "person": {
+ "add_person": "Tambahkan Orang",
+ "caption": "Orang",
+ "confirm_delete": "Yakin ingin menghapus orang ini?",
+ "confirm_delete2": "Semua perangkat milik orang ini akan dibatalkan penetapan kepemilikannnya.",
+ "create_person": "Buat Orang",
+ "description": "Kelola orang yang Home Assistant lacak",
+ "detail": {
+ "admin": "Administrator",
+ "allow_login": "Izinkan orang untuk masuk",
+ "confirm_delete_user": "Yakin ingin menghapus akun pengguna untuk {name}? Anda masih dapat melacak pengguna, tetapi orang tersebut tidak akan bisa masuk lagi.",
+ "create": "Buat",
+ "delete": "Hapus",
+ "device_tracker_intro": "Pilih perangkat milik orang ini.",
+ "device_tracker_pick": "Pilih perangkat untuk dilacak",
+ "device_tracker_picked": "Lacak Perangkat",
+ "link_integrations_page": "Halaman integrasi",
+ "link_presence_detection_integrations": "Integrasi Deteksi Kehadiran",
+ "linked_user": "Pengguna Tertaut",
+ "local_only": "Hanya bisa masuk dari jaringan lokal",
+ "name": "Nama",
+ "name_error_msg": "Nama wajib diisi",
+ "new_person": "Orang Baru",
+ "no_device_tracker_available_intro": "Ketika Anda memiliki perangkat yang menunjukkan kehadiran seseorang, Anda akan dapat menetapkannya kepada seseorang di sini. Anda dapat menambahkan perangkat pertama Anda dengan menambahkan integrasi deteksi kehadiran dari halaman integrasi.",
+ "update": "Perbarui"
+ },
+ "introduction": "Di sini Anda dapat menentukan setiap orang yang diminati di Home Assistant.",
+ "learn_more": "Pelajari lebih lanjut tentang orang",
+ "no_persons_created_yet": "Sepertinya Anda belum membuat konfigurasi orang.",
+ "note_about_persons_configured_in_yaml": "Catatan: orang yang dikonfigurasi melalui configuration.yaml tidak dapat diedit melalui antarmuka.",
+ "person_not_found": "Kami tidak dapat menemukan orang yang akan diedit.",
+ "person_not_found_title": "Orang Tidak Ditemukan"
+ },
+ "scene": {
+ "activated": "Skenario {name} diaktifkan.",
+ "caption": "Skenario",
+ "description": "Tangkap status perangkat dan panggil kembali dengan mudah nanti",
+ "editor": {
+ "area": "Area",
+ "default_name": "Skenario Baru",
+ "devices": {
+ "add": "Tambahkan perangkat",
+ "delete": "Hapus perangkat",
+ "header": "Perangkat",
+ "introduction": "Tambahkan perangkat yang ingin Anda sertakan dalam skenario Anda. Atur semua perangkat ke status yang Anda inginkan untuk skenario ini."
+ },
+ "entities": {
+ "add": "Tambahkan entitas",
+ "delete": "Hapus entitas",
+ "device_entities": "Jika Anda menambahkan entitas milik perangkat, perangkat akan ditambahkan.",
+ "header": "Entitas",
+ "introduction": "Entitas yang bukan milik perangkat dapat diatur di sini.",
+ "without_device": "Entitas tanpa perangkat"
+ },
+ "icon": "Ikon",
+ "introduction": "Gunakan skenario untuk menghidupkan rumah Anda",
+ "load_error_not_editable": "Hanya skenario di dalam scenes.yaml yang dapat diedit.",
+ "load_error_unknown": "Kesalahan saat memuat skenario ({err_no}).",
+ "name": "Nama",
+ "save": "Simpan",
+ "unsaved_confirm": "Anda memiliki perubahan yang belum disimpan. Yakin ingin meninggalkan?"
+ },
+ "picker": {
+ "add_scene": "Tambahkan skenario",
+ "delete_confirm": "Yakin ingin menghapus skenario ini?",
+ "delete_scene": "Hapus skenario",
+ "duplicate": "Gandakan",
+ "duplicate_scene": "Gandakan skenario",
+ "edit_scene": "Edit skenario",
+ "header": "Editor Skenario",
+ "headers": {
+ "name": "Nama"
+ },
+ "introduction": "Editor skenario memungkinkan Anda membuat dan mengedit skenario. Ikuti tautan di bawah ini untuk membaca petunjuk untuk memastikan bahwa Anda telah mengonfigurasi Home Assistant dengan benar.",
+ "learn_more": "Pelajari lebih lanjut tentang skenario",
+ "no_scenes": "Kami tidak dapat menemukan skenario yang dapat diedit",
+ "only_editable": "Hanya skenario yang ditentukan dalam scenes.yaml yang dapat diedit.",
+ "pick_scene": "Pilih skenario untuk diedit",
+ "show_info_scene": "Tampilkan info tentang skenario"
+ }
+ },
+ "script": {
+ "caption": "Skrip",
+ "description": "Jalankan aksi secara berurutan",
+ "editor": {
+ "alias": "Nama",
+ "default_name": "Skrip Baru",
+ "delete_confirm": "Yakin ingin menghapus skrip ini?",
+ "delete_script": "Hapus skrip",
+ "header": "Skrip: {name}",
+ "icon": "Ikon",
+ "id": "ID Entitas",
+ "id_already_exists": "ID ini sudah ada",
+ "id_already_exists_save_error": "Anda tidak dapat menyimpan skrip ini karena ID tidak unik, pilih ID lain atau biarkan kosong untuk membuat ID secara otomatis.",
+ "introduction": "Gunakan skrip untuk menjalankan serangkaian aksi berurutan.",
+ "link_available_actions": "Pelajari lebih lanjut tentang tindakan yang tersedia.",
+ "load_error_not_editable": "Hanya skrip di dalam scripts.yaml yang dapat diedit.",
+ "max": {
+ "parallel": "Jumlah maksimum yang berjalan secara paralel",
+ "queued": "Panjang antrean"
+ },
+ "modes": {
+ "description": "Mode ini mengontrol apa yang terjadi saat skrip dipanggil saat masih berjalan dari satu atau beberapa pemanggilan sebelumnya. Lihat {documentation_link} untuk info lebih lanjut.",
+ "documentation": "dokumentasi skrip",
+ "label": "Mode",
+ "parallel": "Paralel",
+ "queued": "Diantrekan",
+ "restart": "Mulai ulang",
+ "single": "Tunggal (default)"
+ },
+ "save_script": "Simpan skrip",
+ "sequence": "Urutan",
+ "sequence_sentence": "Urutan tindakan skrip ini.",
+ "show_trace": "Tampilkan jejak"
+ },
+ "picker": {
+ "add_script": "Tambahkan skrip",
+ "dev_script": "Debug skrip",
+ "duplicate": "Salinan",
+ "duplicate_script": "Gandakan skrip",
+ "edit_script": "Edit skrip",
+ "header": "Editor Skrip",
+ "headers": {
+ "name": "Nama"
+ },
+ "introduction": "Editor skrip memungkinkan Anda membuat dan mengedit skrip. Ikuti tautan di bawah untuk membaca petunjuk guna memastikan bahwa Anda telah mengonfigurasi Home Assistant dengan benar.",
+ "learn_more": "Pelajari lebih lanjut tentang skrip",
+ "no_scripts": "Kami tidak dapat menemukan skrip yang dapat diedit",
+ "run_script": "Jalankan skrip",
+ "show_info": "Tampilkan info tentang skrip"
+ }
+ },
+ "server_control": {
+ "caption": "Kontrol Server",
+ "description": "Validasi dan mulai ulang server Home Assistant",
+ "section": {
+ "reloading": {
+ "automation": "Otomasi",
+ "command_line": "Entitas baris perintah",
+ "core": "Lokasi & penyesuaian",
+ "filesize": "Entitas ukuran file",
+ "filter": "Filter entitas",
+ "generic": "Entitas kamera IP generik",
+ "generic_thermostat": "Entitas termostat generik",
+ "group": "Grup, entitas grup, dan layanan notifikasi grup",
+ "heading": "Pemuatan ulang konfigurasi YAML",
+ "history_stats": "Entitas statistik riwayat",
+ "homekit": "HomeKit",
+ "input_boolean": "Input boolean",
+ "input_datetime": "Input tanggal dan waktu",
+ "input_number": "Input bilangan",
+ "input_select": "Input pilihan",
+ "input_text": "Input teks",
+ "introduction": "Beberapa bagian Home Assistant dapat dimuat ulang tanpa memerlukan memulai ulang. Pengklikan salah satu opsi di bawah akan membatalkan konfigurasi YAML yang sedang dijalankan dan memuat konfigurasi yang baru.",
+ "min_max": "Entitas min/maks",
+ "mqtt": "Entitas MQTT yang dikonfigurasi secara manual",
+ "person": "Orang",
+ "ping": "Entitas sensor biner ping",
+ "reload": "{domain}",
+ "rest": "Entitas REST dan layanan notifikasi REST",
+ "rpi_gpio": "Entitas Raspberry Pi GPIO",
+ "scene": "Skenario",
+ "script": "Skrip",
+ "smtp": "Layanan notifikasi SMTP",
+ "statistics": "Entitas statistik",
+ "telegram": "Layanan notifikasi telegram",
+ "template": "Entitas templat",
+ "timer": "Timer",
+ "trend": "Entitas tren",
+ "universal": "Entitas pemutar media universal",
+ "zone": "Zona"
+ },
+ "server_management": {
+ "confirm_restart": "Yakin ingin memulai ulang Home Assistant?",
+ "confirm_stop": "Yakin ingin menghentikan Home Assistant?",
+ "heading": "Manajemen server",
+ "introduction": "Kontrol server Home Assistant Anda.",
+ "restart": "Mulai ulang",
+ "stop": "Hentikan"
+ },
+ "validation": {
+ "check_config": "Periksa konfigurasi",
+ "heading": "Validasi konfigurasi",
+ "introduction": "Validasikan konfigurasi jika Anda baru saja membuat perubahan pada konfigurasi Anda dan ingin memastikan semuanya valid",
+ "invalid": "Konfigurasi tidak valid",
+ "valid": "Konfigurasi valid!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Tambahkan tag",
+ "automation_title": "Tag {name} dipindai",
+ "caption": "Tag",
+ "confirm_remove": "Yakin ingin menghapus tag {tag}?",
+ "confirm_remove_title": "Hapus tag?",
+ "create_automation": "Buat otomasi dengan tag",
+ "description": "Picu otomasi ketika tag NFC, kode QR, dll dipindai",
+ "detail": {
+ "companion_apps": "aplikasi pendamping",
+ "create": "Buat",
+ "create_and_write": "Buat dan Tulis",
+ "delete": "Hapus",
+ "description": "Deskripsi",
+ "name": "Nama",
+ "new_tag": "Tag baru",
+ "tag_id": "ID Tag",
+ "tag_id_placeholder": "Dibuat otomatis saat dibiarkan kosong",
+ "update": "Perbarui",
+ "usage": "Tag dapat memicu otomasi saat dipindai, Anda dapat menggunakan tag NFC, kode QR, atau jenis tag lainnya. Gunakan {companion_link} untuk menulis tag ini ke tag NFC yang dapat diprogram atau buat kode QR di bawah ini."
+ },
+ "edit": "Edit",
+ "headers": {
+ "last_scanned": "Terakhir dipindai",
+ "name": "Nama"
+ },
+ "learn_more": "Pelajari lebih lanjut tentang tag",
+ "never_scanned": "Tidak pernah dipindai",
+ "no_tags": "Tidak ada tag",
+ "write": "Tulis"
+ },
+ "updates": {
+ "more_updates": "+{count} Pembaruan",
+ "review": "tinjau",
+ "show": "tampilkan",
+ "show_all_updates": "Tampilkan semua pembaruan",
+ "title": "{count} {count, plural,\n one {pembaruan}\n other {pembaruan}\n}",
+ "unable_to_fetch": "Tidak dapat memuat pembaruan",
+ "version_available": "Versi {version_available} tersedia"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Tambahkan pengguna",
+ "create": "Buat",
+ "local_only": "Hanya lokal",
+ "password": "Kata Sandi",
+ "password_confirm": "Konfirmasi Kata Sandi",
+ "password_not_match": "Kata sandi tidak cocok"
+ },
+ "caption": "Pengguna",
+ "description": "Kelola akun pengguna Home Assistant",
+ "editor": {
+ "activate_user": "Aktifkan pengguna",
+ "active": "Aktif",
+ "active_tooltip": "Kontrol apakah pengguna dapat masuk",
+ "admin": "Administrator",
+ "caption": "Lihat pengguna",
+ "change_password": "Ganti kata sandi",
+ "confirm_user_deletion": "Yakin ingin menghapus {name}?",
+ "deactivate_user": "Nonaktifkan pengguna",
+ "delete_user": "Hapus pengguna",
+ "group": "Grup",
+ "id": "ID",
+ "local_only": "Hanya bisa masuk dari jaringan lokal",
+ "name": "Nama tampilan",
+ "new_password": "Kata Sandi Baru",
+ "owner": "Pemilik",
+ "password_changed": "Kata sandi berhasil diubah",
+ "system_generated": "Dihasilkan oleh sistem",
+ "system_generated_users_not_editable": "Tidak dapat memperbarui pengguna yang dibuat sistem.",
+ "system_generated_users_not_removable": "Tidak dapat menghapus pengguna yang dibuat sistem.",
+ "unnamed_user": "Pengguna Tanpa Nama",
+ "update_user": "Perbarui",
+ "username": "Nama Pengguna"
+ },
+ "picker": {
+ "add_user": "Tambahkan pengguna",
+ "headers": {
+ "group": "Grup",
+ "is_active": "Aktif",
+ "is_owner": "Pemilik",
+ "local": "Hanya lokal",
+ "name": "Nama tampilan",
+ "system": "Dihasilkan oleh sistem",
+ "username": "Nama Pengguna"
+ }
+ },
+ "users_privileges_note": "Fitur grup pengguna sedang dalam pengembangan. Pengguna tidak akan dapat mengelola instans melalui antarmuka. Kami masih mengaudit semua titik akhir API manajemen untuk memastikan bahwa titik akhir tersebut membatasi akses administrator dengan benar."
+ },
+ "zha": {
+ "add_device": "Tambahkan Perangkat",
+ "add_device_page": {
+ "discovered_text": "Perangkat akan muncul di sini setelah ditemukan.",
+ "no_devices_found": "Tidak ada perangkat yang ditemukan, pastikan perangkat dalam mode pairing dan tetap aktifkan saat pencarian sedang berjalan.",
+ "pairing_mode": "Pastikan perangkat Anda dalam mode pairing. Periksa petunjuk perangkat Anda tentang cara melakukannya.",
+ "search_again": "Cari Lagi",
+ "spinner": "Mencari perangkat ZHA Zigbee…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Atribut klaster yang dipilih",
+ "get_zigbee_attribute": "Dapatkan Atribut Zigbee",
+ "header": "Atribut Klaster",
+ "help_attribute_dropdown": "Pilih atribut untuk melihat atau menyetel nilainya.",
+ "help_get_zigbee_attribute": "Dapatkan nilai untuk atribut yang dipilih.",
+ "help_set_zigbee_attribute": "Tetapkan nilai atribut untuk klaster tertentu pada entitas yang ditentukan.",
+ "introduction": "Lihat dan edit atribut klaster.",
+ "set_zigbee_attribute": "Setel Atribut Zigbee"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Perintah dari klaster terpilih",
+ "header": "Perintah Klaster",
+ "help_command_dropdown": "Pilih perintah untuk berinteraksi.",
+ "introduction": "Lihat dan kirimkan perintah klaster.",
+ "issue_zigbee_command": "Kirimkan Perintah Zigbee"
+ },
+ "clusters": {
+ "header": "Klaster",
+ "help_cluster_dropdown": "Pilih klaster untuk melihat atribut dan perintah.",
+ "introduction": "Klaster adalah blok pembangun untuk fungsionalitas Zigbee. Klaster memisahkan fungsionalitas menjadi unit logis. Ada jenis klien dan server klaster dan terdiri dari atribut dan perintah."
+ },
+ "common": {
+ "clusters": "Klaster",
+ "manufacturer_code_override": "Penimpaan Kode Produsen",
+ "value": "Nilai"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Pintasan",
+ "update_button": "Perbarui Konfigurasi"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Konfigurasi Selesai",
+ "CONFIGURED_status_text": "Inisialisasi",
+ "INITIALIZED": "Inisialisasi Selesai",
+ "INITIALIZED_status_text": "Perangkat siap digunakan",
+ "INTERVIEW_COMPLETE": "Wawancara Selesai",
+ "INTERVIEW_COMPLETE_status_text": "Mengonfigurasi",
+ "PAIRED": "Perangkat Ditemukan",
+ "PAIRED_status_text": "Memulai Wawancara"
+ },
+ "group_binding": {
+ "bind_button_help": "Kaitkan grup terpilih ke klaster perangkat terpilih.",
+ "bind_button_label": "Kaitkan Grup",
+ "cluster_selection_help": "Pilih klaster untuk dikaitkan ke grup yang dipilih.",
+ "group_picker_help": "Pilih grup untuk menerbitkan perintah pengaitan.",
+ "group_picker_label": "Grup yang Dapat Dikaitkan",
+ "header": "Pengaitan Grup",
+ "introduction": "Kait dan lepas grup.",
+ "unbind_button_help": "Lepaskan grup yang dipilih dari klaster perangkat yang dipilih.",
+ "unbind_button_label": "Lepaskan Grup"
+ },
+ "groups": {
+ "add_group": "Tambahkan Grup",
+ "add_members": "Tambahkan Anggota",
+ "caption": "Grup",
+ "create": "Buat Grup",
+ "create_group": "Zigbee Home Automation - Buat Grup",
+ "create_group_details": "Masukkan detail yang diperlukan untuk membuat grup zigbee baru",
+ "creating_group": "Membuat Grup",
+ "delete": "Hapus Grup",
+ "group_details": "Berikut adalah semua detail untuk grup Zigbee yang dipilih.",
+ "group_id": "ID Grup",
+ "group_info": "Informasi Grup",
+ "group_name_placeholder": "Nama Grup",
+ "group_not_found": "Grup tidak ditemukan!",
+ "groups": "Grup",
+ "members": "Anggota",
+ "remove_members": "Hapus Anggota",
+ "removing_members": "Menghapus Anggota"
+ },
+ "network": {
+ "caption": "Jaringan"
+ },
+ "visualization": {
+ "auto_zoom": "Perbesaran Otomatis",
+ "caption": "Visualisasi",
+ "header": "Visualisasi Jaringan",
+ "highlight_label": "Sorot Perangkat",
+ "refresh_topology": "Segarkan Topologi",
+ "zoom_label": "Perbesar Ke Perangkat"
+ }
+ },
+ "zone": {
+ "add_zone": "Tambahkan Zona",
+ "caption": "Zona",
+ "configured_in_yaml": "Zona yang dikonfigurasi melalui configuration.yaml tidak dapat diedit melalui antarmuka.",
+ "confirm_delete": "Yakin ingin menghapus zona ini?",
+ "create_zone": "Buat Zona",
+ "description": "Kelola zona tempat Anda ingin melacak orang",
+ "detail": {
+ "create": "Buat",
+ "delete": "Hapus",
+ "icon": "Ikon",
+ "icon_error_msg": "Ikon harus dalam format \"prefiks:namaikon\", contoh: \"mdi:home\"",
+ "latitude": "Lintang",
+ "longitude": "Bujur",
+ "name": "Nama",
+ "new_zone": "Zona Baru",
+ "passive": "Pasif",
+ "passive_note": "Zona pasif disembunyikan di antarmuka dan tidak digunakan sebagai lokasi untuk pelacak perangkat. Ini berguna jika Anda hanya ingin menggunakannya untuk otomasi.",
+ "radius": "Radius",
+ "required_error_msg": "Bidang ini wajib diisi",
+ "update": "Perbarui"
+ },
+ "edit_home_zone": "Radius zona Rumah belum dapat diedit dari antarmuka. Seret penanda di peta untuk memindahkan zona Rumah.",
+ "edit_home_zone_narrow": "Radius zona Rumah belum dapat diedit dari antarmuka. Lokasi dapat diubah dari konfigurasi umum.",
+ "edit_zone": "Edit Zona",
+ "go_to_core_config": "Buka konfigurasi umum?",
+ "home_zone_core_config": "Lokasi zona rumah Anda dapat diedit dari halaman konfigurasi umum. Radius zona Rumah belum dapat diedit dari antarmuka. Apakah Anda ingin membuka konfigurasi umum?",
+ "introduction": "Zona memungkinkan Anda untuk menentukan wilayah tertentu di bumi. Ketika seseorang berada dalam zona, status akan mengambil nama dari zona tersebut. Zona juga dapat digunakan sebagai pemicu atau kondisi di dalam pengaturan otomasi.",
+ "no_zones_created_yet": "Sepertinya Anda belum membuat zona."
+ },
+ "zwave": {
+ "common": {
+ "index": "Indeks",
+ "instance": "Instans",
+ "unknown": "tidak diketahui",
+ "value": "Nilai",
+ "wakeup_interval": "Interval Bangun"
+ },
+ "description": "Kelola jaringan Z-Wave Anda",
+ "learn_more": "Pelajari lebih lanjut tentang Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "Migrasi ke OpenZWave",
+ "introduction": "Wizard ini akan membantu Anda bermigrasi dari integrasi Z-Wave lawas ke integrasi OpenZWave yang saat ini dalam versi beta."
+ },
+ "zwave_js": {
+ "header": "Migrasi ke Z-Wave JS",
+ "introduction": "Integrasi ini tidak lagi dipertahankan, dan kami menyarankan Anda untuk pindah ke integrasi Z-Wave JS yang baru. Wizard ini akan membantu Anda bermigrasi dari integrasi Z-Wave lawas ke integrasi Z-Wave JS yang baru."
+ }
+ },
+ "network_management": {
+ "header": "Manajemen Jaringan Z-Wave",
+ "introduction": "Jalankan perintah yang memengaruhi jaringan Z-Wave. Anda tidak akan mendapatkan umpan balik apakah sebagian besar perintah berhasil, tetapi Anda dapat memeriksa OZW Log untuk mencoba mencari tahu."
+ },
+ "network_status": {
+ "network_started": "Jaringan Z-Wave Dimulai",
+ "network_started_note_all_queried": "Semua node telah dikueri.",
+ "network_started_note_some_queried": "Semua node yang bangun telah dikueri. Node yang tidur akan dikueri ketika nodenya bangun.",
+ "network_starting": "Memulai Jaringan Z-Wave…",
+ "network_starting_note": "Ini mungkin memakan waktu cukup lama tergantung pada ukuran jaringan Anda.",
+ "network_stopped": "Jaringan Z-Wave Berhenti"
+ },
+ "node_config": {
+ "config_parameter": "Parameter Konfigurasi",
+ "config_value": "Nilai Konfigurasi",
+ "false": "False",
+ "header": "Opsi Konfigurasi Node",
+ "seconds": "detik",
+ "set_config_parameter": "Setel Parameter Konfigurasi",
+ "set_wakeup": "Setel Interval Bangun",
+ "true": "True"
+ },
+ "node_management": {
+ "add_to_group": "Tambahkan ke Grup",
+ "entities": "Entitas node ini",
+ "entity_info": "Informasi Entitas",
+ "exclude_entity": "Kecualikan entitas ini dari Home Assistant",
+ "group": "Grup",
+ "header": "Manajemen Node Z-Wave",
+ "introduction": "Jalankan perintah Z-Wave yang mempengaruhi satu node. Pilih node untuk melihat daftar perintah yang tersedia.",
+ "max_associations": "Asosiasi Maks:",
+ "node_group_associations": "Asosiasi grup node",
+ "node_protection": "Perlindungan node",
+ "node_to_control": "Node untuk dikontrol",
+ "nodes": "Node",
+ "nodes_hint": "Pilih node untuk melihat opsi per node",
+ "nodes_in_group": "Node lain dalam grup ini:",
+ "pooling_intensity": "Intensitas polling",
+ "protection": "Perlindungan",
+ "remove_broadcast": "Hapus Siaran",
+ "remove_from_group": "Hapus dari Grup",
+ "set_protection": "Atur Perlindungan"
+ },
+ "ozw_log": {
+ "header": "OZW Log",
+ "introduction": "Tampilkan log. Nilai 0 adalah nilai minimum (memuat keselurukan log) dan 1000 adalah nilai maksimum. Tombol Muat akan menampilkan log secara statis dan tombol Lihat Terakhir akan memperbarui secara otomatis dengan jumlah baris terlihat sesuai dengan yang Anda pilih.",
+ "last_log_lines": "Jumlah baris log terakhir",
+ "load": "Muat",
+ "tail": "Lihat Terakhir"
+ },
+ "services": {
+ "add_node": "Tambahkan Node",
+ "add_node_secure": "Tambahkan Node Aman",
+ "cancel_command": "Batalkan Perintah",
+ "heal_network": "Sembuhkan Jaringan",
+ "heal_node": "Sembuhkan Node",
+ "node_info": "Informasi Node",
+ "print_node": "Cetak Node",
+ "refresh_entity": "Segarkan Entitas",
+ "refresh_node": "Segarkan Node",
+ "remove_failed_node": "Hapus Node yang Gagal",
+ "remove_node": "Hapus Node",
+ "replace_failed_node": "Ganti Node yang Gagal",
+ "save_config": "Simpan Konfigurasi",
+ "soft_reset": "Setel Ulang Soft",
+ "start_network": "Mulai Jaringan",
+ "stop_network": "Hentikan Jaringan",
+ "test_network": "Uji Jaringan",
+ "test_node": "Uji Node"
+ },
+ "values": {
+ "header": "Nilai Node"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Batalkan Penyertaan",
+ "check_logs": "Periksa log untuk informasi lebih lanjut.",
+ "choose_inclusion_strategy": "Bagaimana Anda ingin menambahkan perangkat",
+ "controller_in_inclusion_mode": "Pengontrol Z-Wave Anda sekarang dalam mode penyertaan.",
+ "enter_qr_code": "Masukkan nilai kode QR",
+ "follow_device_instructions": "Ikuti petunjuk yang disertakan dengan perangkat Anda untuk memicu pairing pada perangkat.",
+ "inclusion_failed": "Perangkat tidak dapat ditambahkan.",
+ "inclusion_finished": "Perangkat telah ditambahkan.",
+ "interview_failed": "Wawancara perangkat gagal. Informasi tambahan mungkin tersedia di log.",
+ "interview_started": "Perangkat sedang diwawancarai. Proses ini mungkin membutuhkan beberapa saat.",
+ "introduction": "Wisaya ini akan memandu Anda menambahkan node ke jaringan Z-Wave.",
+ "provisioning_finished": "Perangkat telah ditambahkan. Setelah Anda menyalakannya, perangkat tersebut akan tersedia.",
+ "qr_code": "Kode QR",
+ "qr_code_paragraph": "Jika perangkat mendukung SmartStart, Anda dapat memindai kode QR agar mudah dipasangkan.",
+ "scan_qr_code": "Pindai kode QR",
+ "searching_device": "Mencari perangkat",
+ "secure_inclusion_warning": "Perangkat aman memerlukan bandwidth tambahan; terlalu banyak perangkat aman yang dapat memperlambat jaringan Z-Wave Anda. Sebaiknya hanya menggunakan inklusi aman untuk perangkat yang memerlukannya, seperti kunci atau pembuka pintu garasi.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Contoh: Kunci Pintu Lawas tanpa dukungan S2",
+ "title": "S0 Lawas"
+ },
+ "S2_AccessControl": {
+ "description": "Contoh: Kunci Pintu dan Pintu Garasi",
+ "title": "Kontrol Akses S2"
+ },
+ "S2_Authenticated": {
+ "description": "Contoh: Pencahayaan, Sensor dan Sistem Keamanan",
+ "title": "S2 Diautentikasi"
+ },
+ "S2_Unauthenticated": {
+ "description": "Seperti S2 Diautentikasi, tetapi tanpa verifikasi bahwa perangkat yang benar telah disertakan",
+ "title": "S2 Tidak Diautentikasi"
+ }
+ },
+ "select_camera": "Pilih kamera",
+ "start_inclusion": "Mulai Penyertaan",
+ "start_secure_inclusion": "Mulai Penyertaan Aman",
+ "title": "Tambahkan Perangkat Z-Wave",
+ "use_secure_inclusion": "Gunakan penyertaan yang aman",
+ "view_device": "Lihat Perangkat"
+ },
+ "common": {
+ "add_node": "Tambahkan perangkat",
+ "back": "Kembali",
+ "close": "Tutup",
+ "heal_network": "Sembuhkan Jaringan",
+ "home_id": "ID Rumah",
+ "network": "Jaringan",
+ "node_id": "ID Perangkat",
+ "reconfigure_server": "Konfigurasikan Ulang Server",
+ "remove_node": "Hapus perangkat",
+ "source": "Sumber"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n one {perangkat}\n other {perangkat}\n}",
+ "driver_version": "Versi Driver",
+ "dump_dead_nodes_text": "Beberapa perangkat Anda tidak merespons dan dianggap mati. Ini tidak akan diekspor sepenuhnya.",
+ "dump_dead_nodes_title": "Beberapa perangkat Anda mati",
+ "dump_debug": "Unduh data",
+ "dump_not_ready_confirm": "Unduh",
+ "dump_not_ready_text": "Jika Anda membuat ekspor sementara tidak semua perangkat siap, Anda bisa kehilangan data yang dibutuhkan. Berikan waktu pada jaringan Anda untuk menanyakan semua perangkat. Ingin melanjutkan proses dump?",
+ "dump_not_ready_title": "Belum semua perangkat siap",
+ "header": "Kelola Jaringan Z-Wave Anda",
+ "home_id": "ID Rumah",
+ "introduction": "Kelola jaringan Z-Wave dan perangkat Z-Wave Anda",
+ "nodes_ready": "Perangkat siap",
+ "not_ready": "{count} belum siap",
+ "server_url": "URL server",
+ "server_version": "Versi Server"
+ },
+ "device_info": {
+ "device_config": "Konfigurasikan Perangkat",
+ "heal_node": "Sembuhkan Perangkat",
+ "highest_security": "Keamanan Tertinggi",
+ "is_secure": "Aman",
+ "node_ready": "Perangkat Siap",
+ "node_status": "Status Perangkat",
+ "reinterview_device": "Wawancara Ulang Perangkat",
+ "remove_failed": "Hapus Perangkat yang Gagal",
+ "unknown": "Tidak Dikenal",
+ "zwave_info": "Info Z-Wave",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Versi {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "Penyembuhan jaringan telah dibatalkan.",
+ "healing_complete": "Penyembuhan jaringan selesai.",
+ "healing_failed": "Penyembuhan gagal. Informasi tambahan mungkin tersedia di log.",
+ "in_progress": "Proses penyambuhan sedang berjalan. Proses ini membutuhkan beberapa saat.",
+ "introduction": "Mulai penyembuhan jaringan di jaringan Z-Wave Anda. Pemulihan jaringan akan menyebabkan semua perangkat mengonfigurasi ulang rute mereka kembali ke pengontrol dan direkomendasikan jika Anda baru saja memindahkan perangkat atau pengontrol Anda.",
+ "run_in_background": "Anda dapat menutup dialog ini dan penyembuhan jaringan akan dilanjutkan di latar belakang.",
+ "start_heal": "Mulai Penyembuhan",
+ "stop_heal": "Hentikan Penyembuhan",
+ "title": "Sembuhkan Jaringan Z-Wave Anda",
+ "traffic_warning": "Proses penyembuhan menghasilkan sejumlah besar lalu lintas di jaringan Z-Wave. Ini dapat menyebabkan perangkat merespons dengan lambat (atau tidak sama sekali) saat penyembuhan sedang berlangsung."
+ },
+ "heal_node": {
+ "healing_complete": "{device} telah disembuhkan.",
+ "healing_failed": "{device} tidak dapat disembuhkan.",
+ "healing_failed_check_logs": "Informasi tambahan mungkin tersedia di log.",
+ "in_progress": "Penyembuhan {device} sedang berlangsung.",
+ "introduction": "Beri tahu {device} untuk memperbarui rutenya kembali ke pengontrol. Ini dapat membantu masalah komunikasi jika Anda baru saja memindahkan perangkat atau pengontrol Anda.",
+ "network_heal_in_progress": "Penyembuhan jaringan Z-Wave sedang berlangsung. Harap tunggu hingga selesai sebelum memulihkan SEBUAH perangkat.",
+ "start_heal": "Sembuhkan Perangkat",
+ "title": "Sembuhkan Perangkat Z-Wave",
+ "traffic_warning": "Proses penyembuhan menghasilkan sejumlah besar lalu lintas pada jaringan Z-Wave. Hal ini dapat menyebabkan perangkat merespons secara perlahan (atau tidak sama sekali) saat penyembuhan sedang berlangsung."
+ },
+ "logs": {
+ "download_logs": "Unduh log",
+ "log_level": "Tingkat Log",
+ "log_level_changed": "Tingkat Log diubah menjadi: {level}",
+ "subscribed_to_logs": "Berlangganan Pesan Log Z-Wave JS…",
+ "title": "Log Z-Wave JS"
+ },
+ "navigation": {
+ "logs": "Log",
+ "network": "Jaringan"
+ },
+ "network_status": {
+ "connected": "Terhubung",
+ "connecting": "Menghubungkan",
+ "unknown": "Tidak diketahui"
+ },
+ "node_config": {
+ "attribution": "Parameter konfigurasi dan deskripsi perangkat disediakan oleh proyek {device_database}.",
+ "battery_device_notice": "Perangkat dengan baterai harus dalam keadaan aktif untuk memperbarui konfigurasinya. Rujuk manual perangkat Anda untuk mendapatkan instruksi tentang cara membangunkan perangkat.",
+ "error_device_not_found": "Perangkat tidak ditemukan",
+ "header": "Konfigurasi Perangkat Z-Wave",
+ "introduction": "Kelola dan seseuaikan parameter konfigurasi perangkat tertentu untuk perangkat yang dipilih.",
+ "parameter": "Parameter",
+ "parameter_is_read_only": "Parameter ini bersifat hanya baca",
+ "set_param_accepted": "Parameter telah diperbarui.",
+ "set_param_error": "Terjadi kesalahan.",
+ "set_param_queued": "Perubahan parameter telah diantrekan, dan akan diperbarui saat perangkat bangun.",
+ "zwave_js_device_database": "Basis Data Perangkat Z-Wave JS"
+ },
+ "node_status": {
+ "alive": "Hidup",
+ "asleep": "Tertidur",
+ "awake": "Bangun",
+ "dead": "Mati",
+ "unknown": "Tidak diketahui"
+ },
+ "provisioned": {
+ "dsk": "DSK",
+ "included": "Disertakan",
+ "not_included": "Tidak disertakan",
+ "security_classes": "Kelas keamanan"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "Anda perlu membangunkan perangkat bertenaga baterai sebelum memulai wawancara ulang. Lihat manual perangkat Anda untuk instruksi tentang cara membangunkan perangkat.",
+ "in_progress": "Perangkat sedang diwawancarai. Proses ini mungkin membutuhkan beberapa saat.",
+ "interview_complete": "Wawancara perangkat selesai.",
+ "interview_failed": "Wawancara perangkat gagal. Informasi tambahan mungkin tersedia di log.",
+ "introduction": "Wawancara ulang sebuah perangkat di jaringan Z-Wave Anda. Gunakan fitur ini jika perangkat tersebut tidak berfungsi dengan benar atau fiturnya tidak tersedia.",
+ "run_in_background": "Anda dapat menutup dialog ini dan wawancara akan dilanjutkan di latar belakang.",
+ "start_reinterview": "Mulai Wawancara Ulang",
+ "title": "Wawancara ulang perangkat Z-Wave"
+ },
+ "remove_failed_node": {
+ "in_progress": "Penghapusan perangkat sedang berlangsung.",
+ "introduction": "Hapus perangkat yang gagal dari jaringan Z-Wave Anda. Gunakan pilihan ini jika Anda tidak dapat mengecualikan perangkat secara normal karena perangkat tersebut rusak.",
+ "removal_failed": "Perangkat tidak dapat dihapus dari jaringan Z-Wave Anda.",
+ "removal_finished": "Perangkat {id} telah dihapus dari jaringan Z-Wave Anda.",
+ "remove_device": "Hapus Perangkat",
+ "title": "Hapus Perangkat Z-Wave yang Gagal"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Batalkan Pengeluaran",
+ "controller_in_exclusion_mode": "Pengontrol Z-Wave Anda sekarang dalam mode pengeluaran.",
+ "exclusion_failed": "Perangkat tidak dapat dihapus. Periksa log untuk informasi lebih lanjut.",
+ "exclusion_finished": "Perangkat {id} telah dihapus dari jaringan Z-Wave Anda.",
+ "follow_device_instructions": "Ikuti petunjuk yang disertakan dengan perangkat Anda untuk memicu pengeluaran pada perangkat.",
+ "introduction": "Hapus sebuah perangkat dari jaringan Z-Wave Anda, dan hapus perangkat dan entitas terkait dari Home Assistant",
+ "start_exclusion": "Mulai Pengeluaran",
+ "title": "Hapus Perangkat Z-Wave"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Tidak Ada"
+ },
+ "S0_Legacy": {
+ "description": "Contoh: Kunci Pintu Lawas tanpa dukungan S2",
+ "title": "S0 Lawas"
+ },
+ "S2_AccessControl": {
+ "description": "Contoh: Kunci Pintu dan Pintu Garasi",
+ "title": "Kontrol Akses S2"
+ },
+ "S2_Authenticated": {
+ "description": "Contoh: Pencahayaan, Sensor dan Sistem Keamanan",
+ "title": "S2 Diautentikasi"
+ },
+ "S2_Unauthenticated": {
+ "description": "Seperti S2 Diautentikasi, tetapi tanpa verifikasi bahwa perangkat yang benar telah disertakan",
+ "title": "S2 Tidak Diautentikasi"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Ini akan memiliki akses ke semua data di Home Assistant.",
+ "hide_message": "Periksa dokumentasi komponen panel_custom untuk menyembunyikan pesan ini",
+ "question_trust": "Apakah Anda mempercayai panel eksternal {name} di {link}?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Pendengar aktif",
+ "alert_event_type": "Jenis peristiwa adalah bidang wajib diisi",
+ "available_events": "Peristiwa yang Tersedia",
+ "count_listeners": " ({count} listener)",
+ "data": "Data Peristiwa (YAML, opsional)",
+ "description": "Jalankan p di bus acara.",
+ "documentation": "Dokumentasi peristiwa",
+ "event_fired": "Peristiwa {name} dijalankan",
+ "fire_event": "Jalankan Peristiwa",
+ "listen_to_events": "Dengarkan peristiwa",
+ "listening_to": "Mendengarkan ke",
+ "notification_event_fired": "Peristiwa {type} berhasil dijalankan!",
+ "start_listening": "Mulai mendengarkan",
+ "stop_listening": "Berhenti mendengarkan",
+ "subscribe_to": "Peristiwa untuk dilanggan",
+ "title": "Peristiwa",
+ "type": "Jenis Peristiwa"
+ },
+ "services": {
+ "accepts_target": "Layanan ini menerima target, misalnya: 'entity_id: light.bed_light'",
+ "all_parameters": "Semua parameter yang tersedia",
+ "call_service": "Panggil Layanan",
+ "column_description": "Deskripsi",
+ "column_example": "Contoh",
+ "column_parameter": "Parameter",
+ "description": "Alat pengembang untuk layanan memungkinkan Anda memanggil layanan apa pun yang tersedia di Home Assistant.",
+ "fill_example_data": "Isi dengan Data Contoh",
+ "no_template_ui_support": "Antarmuka tidak mendukung templat, Anda masih dapat menggunakan editor YAML.",
+ "title": "Layanan",
+ "ui_mode": "Masuk ke mode antarmuka",
+ "yaml_mode": "Masuk ke mode YAML",
+ "yaml_parameters": "Parameter hanya tersedia dalam mode YAML"
+ },
+ "states": {
+ "alert_entity_field": "Entitas adalah bidang wajib",
+ "attributes": "Atribut",
+ "copy_id": "Salin ID ke papan klip",
+ "current_entities": "Entitas saat ini",
+ "description1": "Setel representasi status entitas saat ini dari dalam Home Assistant.",
+ "description2": "Jika entitas adalah milik perangkat, tidak akan ada komunikasi dengan perangkat yang sebenarnya.",
+ "entity": "Entitas",
+ "filter_attributes": "Filter atribut",
+ "filter_entities": "Filter entitas",
+ "filter_states": "Filter status",
+ "last_changed": "Terakhir diubah",
+ "last_updated": "Terakhir diperbarui",
+ "more_info": "Info Lebih Lanjut",
+ "no_entities": "Tidak ada entitas",
+ "set_state": "Setel Status",
+ "state": "Status",
+ "state_attributes": "Atribut status (YAML, opsional)",
+ "title": "Status"
+ },
+ "statistics": {
+ "entity": "Entitas",
+ "fix_issue": {
+ "fix": "Atasi masalah",
+ "units_changed": {
+ "clear": "Hapus semua data statistik lama untuk entitas ini",
+ "fix": "Atasi masalah",
+ "title": "Unit entitas ini berubah",
+ "update": "Perbarui nilai statistik historis dari ''{metadata_unit}'' menjadi ''{state_unit}''"
+ }
+ },
+ "issue": "Masalah",
+ "issues": {
+ "entity_no_longer_recorded": "Entitas ini tidak lagi direkam.",
+ "entity_not_recorded": "Entitas ini dikecualikan dari perekaman.",
+ "no_state": "Tidak ada status yang tersedia untuk entitas ini.",
+ "units_changed": "Unit entitas ini berubah dari ''{metadata_unit}'' menjadi ''{state_unit}''.",
+ "unsupported_state_class": "Kelas status ''{state_class}'' dari entitas ini tidak didukung.",
+ "unsupported_unit": "Unit (''{state_unit}'') dari entitas ini tidak cocok dengan unit kelas perangkat ''{device_class}''.",
+ "unsupported_unit_metadata": "Unit (''{metadata_unit}'') dari statistik yang direkam tidak cocok dengan unit yang didukung ''{supported_unit}'' dari kelas perangkat ''{device_class}''.",
+ "unsupported_unit_state": "Unit (''{state_unit}'') dari entitas ini tidak cocok dengan unit kelas perangkat ''{device_class}''."
+ },
+ "no_issue": "Tidak ada masalah",
+ "title": "Statistik"
+ },
+ "templates": {
+ "all_listeners": "Template ini mendengarkan semua peristiwa yang diubah statusnya.",
+ "description": "Template dirender menggunakan mesin templat Jinja2 dengan beberapa ekstensi khusus Home Assistant.",
+ "domain": "Domain",
+ "editor": "Editor templat",
+ "entity": "Entitas",
+ "jinja_documentation": "Dokumentasi templat Jinja2",
+ "listeners": "Templat ini mendengarkan peristiwa perubahan status berikut:",
+ "no_listeners": "Templat ini tidak mendengarkan peristiwa apa pun dan tidak akan diperbarui secara otomatis.",
+ "reset": "Setel ulang ke template demo",
+ "result_type": "Jenis hasil",
+ "template_extensions": "Ekstensi templat Home Assistant",
+ "time": "Templat ini diperbarui pada awal setiap menit.",
+ "title": "Templat",
+ "unknown_error_template": "Kesalahan tidak diketahui saat merender templat"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Pantau perangkat individual",
+ "energy_distribution_title": "Distribusi energi",
+ "energy_gas_graph_title": "Konsumsi gas",
+ "energy_solar_graph_title": "Produksi surya",
+ "energy_sources_table_title": "Sumber",
+ "energy_usage_graph_title": "Penggunaan energi"
+ },
+ "charts": {
+ "by_device": "Konsumsi berdasarkan perangkat",
+ "solar": "Surya",
+ "stat_house_energy_meter": "Total konsumsi energi"
+ },
+ "setup": {
+ "back": "Kembali",
+ "done": "Tunjukkan dasbor energi saya!",
+ "next": "Berikutnya"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Anda hanya dapat menggunakan fungsi ini jika Anda telah mengontrol antarmuka Lovelace.",
+ "saving_failed": "Gagal menyimpan konfigurasi antarmuka Lovelace.",
+ "yaml_unsupported": "Anda tidak dapat menggunakan fungsi ini saat menggunakan antarmuka Lovelace dalam mode YAML."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Yakin ingin menjalankan aksi ''{action}''?",
+ "no_entity_more_info": "Tidak ada entitas yang disediakan untuk dialog info lebih lanjut",
+ "no_entity_toggle": "Tidak ada entitas yang disediakan untuk dialihkan",
+ "no_navigation_path": "Tidak ada jalur navigasi yang ditentukan",
+ "no_service": "Tidak ada layanan untuk eksekusi yang ditentukan",
+ "no_url": "Tidak ada URL untuk membuka yang ditentukan"
+ },
+ "confirm_delete": "Yakin ingin menghapus kartu ini?",
+ "empty_state": {
+ "go_to_integrations_page": "Buka halaman integrasi.",
+ "no_devices": "Halaman ini memungkinkan Anda untuk mengontrol perangkat Anda, namun sepertinya Anda belum menyiapkan perangkat. Buka halaman integrasi untuk memulai.",
+ "title": "Selamat Datang"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "Kartu ini menunjukkan berapa banyak energi yang dikonsumsi oleh rumah Anda yang dihasilkan menggunakan bahan bakar non-fosil seperti surya, angin, dan nuklir. Semakin tinggi, semakin baik!",
+ "non_fossil_energy_consumed": "Energi non-fosil yang dikonsumsi",
+ "non_fossil_energy_not_calculated": "Energi non-fosil yang dikonsumsi tidak dapat dihitung"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Penggunaan energi"
+ },
+ "energy_distribution": {
+ "battery": "Baterai",
+ "gas": "Gas",
+ "go_to_energy_dashboard": "Buka dasbor energi",
+ "grid": "Jaringan",
+ "home": "Rumah",
+ "non_fossil": "Non-fosil",
+ "solar": "Surya",
+ "title_today": "Distribusi energi hari ini"
+ },
+ "energy_solar_graph": {
+ "forecast": "Prakiraan {name}",
+ "production": "Produksi {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Total baterai",
+ "cost": "Biaya",
+ "energy": "Energi",
+ "grid_total": "Total jaringan",
+ "source": "Sumber",
+ "total_costs": "Biaya total"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Gabungan dari jaringan",
+ "consumed_battery": "Baterai yang dikonsumsi",
+ "consumed_solar": "Surya yang dikonsumsi",
+ "total_consumed": "Total dikonsumsi {num} kWh",
+ "total_returned": "Total dikembalikan {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Jika jarumnya berwarna ungu, Anda mengembalikan lebih banyak energi ke jaringan dibandingkan dengan yang dikonsumsi darinya. Jika berwarna biru, Anda mengonsumsi lebih banyak energi dari jaringan dibandingkan dengan yang dikembalikan kepadanya.",
+ "energy_dependency": "Kartu ini menunjukkan penggunaan bersih energi Anda.",
+ "grid_neutrality_not_calculated": "Netralitas jaringan tidak dapat dihitung",
+ "net_consumed_grid": "Konsumsi bersih dari jaringan",
+ "net_returned_grid": "Pengembalian bersih ke jaringan",
+ "red_green_color_explain": "Jika hijau, berarti Anda menghasilkan lebih banyak energi dibandingkan dengan yang dikonsumsi dari grid. Jika merah, berarti Anda mengandalkan grid untuk sebagian konsumsi energi rumah Anda."
+ },
+ "loading": "Memuat...",
+ "no_data": "Tidak ada data untuk ditampilkan. Diperlukan waktu hingga 2 jam agar data baru tiba setelah Anda mengonfigurasi dasbor energi.",
+ "no_data_period": "Tidak ada data untuk periode ini.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "Kartu ini menunjukkan berapa banyak energi surya yang Anda hasilkan digunakan oleh rumah Anda alih-alih dikembalikan ke jaringan listrik.",
+ "card_indicates_solar_energy_used_charge_home_bat": "Jika angka ini biasanya sangat rendah, yang menunjukkan produksi surya berlebih, Anda mungkin ingin mempertimbangkan untuk mengisi baterai rumah atau mobil listrik dari panel surya Anda pada saat produksi surya tinggi.",
+ "not_produced_solar_energy": "Anda belum menghasilkan energi surya",
+ "self_consumed_solar_could_not_calc": "Energi matahari yang dikonsumsi sendiri tidak dapat dihitung",
+ "self_consumed_solar_energy": "Energi surya yang dikonsumsi sendiri"
+ }
+ },
+ "entities": {
+ "never_triggered": "Tidak pernah terpicu"
+ },
+ "iframe": {
+ "error_secure_context": "Tidak dapat memuat iframe yang mengarah ke situs web menggunakan {target_protocol} jika Home Assistant disediakan melalui {context_protocol} ."
+ },
+ "map": {
+ "reset_focus": "Atur ulang fokus"
+ },
+ "picture-elements": {
+ "call_service": "Panggil layanan {name}",
+ "hold": "Tekan dan Tahan:",
+ "more_info": "Tampilkan info lebih lanjut: {name}",
+ "navigate_to": "Buka {location}",
+ "tap": "Ketuk:",
+ "toggle": "Alihkan {name}",
+ "url": "Buka jendela untuk {url_path}"
+ },
+ "safe-mode": {
+ "description": "Home Assistant mengalami masalah saat memuat konfigurasi Anda dan sekarang berjalan dalam mode aman. Lihat catatan kesalahan untuk melihat kesalahannya.",
+ "header": "Mode Aman Diaktifkan"
+ },
+ "shopping-list": {
+ "add_item": "Tambahkan item",
+ "checked_items": "Item dicentang",
+ "clear_items": "Hapus centang item yang dicentang",
+ "drag_and_drop": "Seret dan lepas",
+ "reorder_items": "Susun ulang item"
+ },
+ "show_more_info": "Tampilkan informasi lebih lanjut",
+ "starting": {
+ "description": "Home Assistant sedang memulai, harap tunggu…"
+ }
+ },
+ "changed_toast": {
+ "message": "Konfigurasi antarmuka Lovelace untuk dasbor ini telah diperbarui. Segarkan untuk melihat perubahan?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Hari",
+ "month": "Bulan",
+ "next": "Berikutnya",
+ "previous": "Sebelumnya",
+ "today": "Hari ini",
+ "week": "Pekan",
+ "year": "Tahun"
+ },
+ "timestamp-display": {
+ "invalid": "Stempel waktu tidak valid",
+ "invalid_format": "Format tampilan tidak valid"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Panggil Layanan",
+ "default_action": "Aksi Default",
+ "more-info": "Info Lebih Lanjut",
+ "navigate": "Buka",
+ "none": "Tidak Ada Aksi",
+ "toggle": "Alihkan",
+ "url": "URL"
+ },
+ "navigation_path": "Jalur Navigasi",
+ "url_path": "Jalur URL"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Status yang Tersedia",
+ "description": "Kartu Panel Alarm memungkinkan Anda untuk mengaktifkan dan menonaktifkan integrasi panel kontrol alarm Anda.",
+ "name": "Panel Alarm"
+ },
+ "area": {
+ "description": "Kartu Area menampilkan entitas dari area tertentu secara otomatis.",
+ "name": "Area",
+ "show_camera": "Tampilkan gambar langsung dari kamera alih-alih gambar area"
+ },
+ "button": {
+ "default_action_help": "Aksi baku tergantung pada kemampuan entitas, aksinya beruba tombol alih atau dialog info selengkapnya akan ditampilkan.",
+ "description": "Kartu Tombol memungkinkan Anda menambahkan tombol untuk melakukan tugas.",
+ "name": "Tombol"
+ },
+ "calendar": {
+ "calendar_entities": "Entitas Kalender",
+ "description": "Kartu Kalender menampilkan kalender termasuk tampilan hari, pekan, dan daftar",
+ "inital_view": "Tampilan Awal",
+ "name": "Kalender",
+ "views": {
+ "dayGridDay": "Hari",
+ "dayGridMonth": "Bulan",
+ "listWeek": "Daftar"
+ }
+ },
+ "conditional": {
+ "card": "Kartu",
+ "change_type": "Ubah tipe",
+ "condition_explanation": "Kartu akan ditampilkan ketika semua kondisi di bawah ini terpenuhi.",
+ "conditions": "Kondisi",
+ "current_state": "saat ini",
+ "description": "Kartu Bersyarat akan menampilkan kartu lain berdasarkan status entitas.",
+ "name": "Bersyarat",
+ "state_equal": "Status sama dengan",
+ "state_not_equal": "Status tidak sama dengan"
+ },
+ "config": {
+ "optional": "opsional",
+ "required": "wajib"
+ },
+ "entities": {
+ "description": "Kartu Entitas adalah jenis kartu yang paling umum. Ini mengelompokkan item bersama ke dalam daftar.",
+ "edit_special_row": "Lihat detail baris ini dengan mengklik tombol edit",
+ "entity_row": {
+ "attribute": "Atribut",
+ "button": "Tombol",
+ "buttons": "Tombol",
+ "call-service": "Panggil Layanan",
+ "cast": "Siarkan",
+ "conditional": "Bersyarat",
+ "divider": "Pemisah",
+ "section": "Bagian",
+ "weblink": "Tautan Web"
+ },
+ "entity_row_editor": "Editor Baris Entitas",
+ "name": "Entitas",
+ "secondary_info_values": {
+ "brightness": "Kecerahan",
+ "entity-id": "ID Entitas",
+ "last-changed": "Terakhir Diubah",
+ "last-triggered": "Terpicu Terakhir",
+ "last-updated": "Terakhir Diperbarui",
+ "none": "Tidak Ada Info Sekunder",
+ "position": "Posisi",
+ "tilt-position": "Posisi Kemiringan"
+ },
+ "show_header_toggle": "Tampilkan Tajuk Alihkan?",
+ "special_row": "baris khusus",
+ "toggle": "Alihkan entitas."
+ },
+ "entity-filter": {
+ "description": "Kartu Filter Entitas memungkinkan Anda untuk menentukan daftar entitas yang ingin dilacak hanya untuk keadaan tertentu.",
+ "name": "Filter Entitas"
+ },
+ "entity": {
+ "description": "Kartu entitas memberi Anda gambaran umum singkat tentang status entitas Anda.",
+ "name": "Entitas"
+ },
+ "gauge": {
+ "description": "Kartu Gauge adalah kartu dasar yang memungkinkan untuk melihat data sensor secara visual.",
+ "name": "Gauge",
+ "needle_gauge": "Tampilkan sebagai pengukur jarum?",
+ "severity": {
+ "define": "Tentukan Tingkat?",
+ "green": "Hijau",
+ "red": "Merah",
+ "yellow": "Kuning"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Rasio Aspek",
+ "attribute": "Atribut",
+ "camera_image": "Entitas Kamera",
+ "camera_view": "Tampilan Kamera",
+ "days_to_show": "Hari untuk Ditampilkan",
+ "double_tap_action": "Aksi Ketuk Ganda",
+ "entities": "Entitas",
+ "entity": "Entitas",
+ "hold_action": "Aksi Tekan dan Tahan",
+ "hours_to_show": "Jam untuk Ditampilkan",
+ "icon": "Ikon",
+ "icon_height": "Tinggi Ikon",
+ "image": "Jalur Gambar",
+ "manual": "Manual",
+ "manual_description": "Perlu menambahkan kartu khusus atau hanya ingin menulis YAML secara manual?",
+ "maximum": "Maksimum",
+ "minimum": "Minimum",
+ "name": "Nama",
+ "no_theme": "Tidak ada tema",
+ "refresh_interval": "Interval Penyegaran",
+ "search": "Cari",
+ "secondary_info_attribute": "Atribut Info Sekunder",
+ "show_icon": "Tampilkan Ikon?",
+ "show_name": "Tampilkan Nama?",
+ "show_state": "Tampilkan Status?",
+ "state": "Status",
+ "state_color": "Ikon warna berdasarkan status?",
+ "tap_action": "Aksi Ketuk",
+ "theme": "Tema",
+ "title": "Judul",
+ "unit": "Satuan",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Kolom",
+ "description": "Kartu Kilasan berguna untuk mengelompokkan beberapa sensor dalam ikhtisar yang ringkas.",
+ "name": "Kilasan"
+ },
+ "grid": {
+ "columns": "Kolom",
+ "description": "Kartu Kisi memungkinkan Anda menampilkan beberapa kartu dalam satu grid.",
+ "name": "Kisi",
+ "square": "Tampilkan kartu sebagai kotak"
+ },
+ "history-graph": {
+ "description": "Kartu Grafik Riwayat memungkinkan Anda menampilkan grafik untuk masing-masing entitas yang terdaftar.",
+ "name": "Grafik Riwayat"
+ },
+ "horizontal-stack": {
+ "description": "Kartu Tumpukan Horizontal memungkinkan Anda mengelompokkan beberapa kartu, sehingga kartu tersebut selalu tersedia bersebelahan dalam ruang satu kolom.",
+ "name": "Tumpukan Horizontal"
+ },
+ "humidifier": {
+ "description": "Kartu Kelembapan memberikan kontrol atas entitas kelembapan Anda. Kartu ini memungkinkan Anda mengubah kelembapan dan mode entitas.",
+ "name": "Kelembapan"
+ },
+ "iframe": {
+ "description": "Kartu Halaman Web memungkinkan Anda menyematkan halaman web favorit Anda langsung ke Home Assistant.",
+ "name": "Halaman Web"
+ },
+ "light": {
+ "description": "Kartu Lampu memungkinkan Anda untuk mengubah kecerahan lampu.",
+ "name": "Lampu"
+ },
+ "logbook": {
+ "description": "Kartu Buku Log menampilkan daftar peristiwa untuk entitas.",
+ "name": "Buku Log"
+ },
+ "map": {
+ "dark_mode": "Mode Gelap?",
+ "default_zoom": "Perbesaran Baku",
+ "description": "Kartu Peta memungkinkan Anda menampilkan entitas pada peta.",
+ "geo_location_sources": "Sumber Geolokasi",
+ "hours_to_show": "Jam untuk Ditampilkan",
+ "name": "Peta",
+ "source": "Sumber"
+ },
+ "markdown": {
+ "content": "Isi",
+ "description": "Kartu Markdown digunakan untuk merender Markdown.",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "description": "Kartu Kontrol Media digunakan untuk menampilkan entitas pemutar media dalam antarmuka dengan kontrol yang mudah digunakan.",
+ "name": "Pemutar Media"
+ },
+ "picture-elements": {
+ "description": "Kartu Elemen Gambar adalah salah satu dari kartu yang paling serbaguna. Kartu ini memungkinkan Anda untuk menempatkan ikon, teks, atau bahkan layanan, pada gambar berdasarkan koordinat.",
+ "name": "Elemen Gambar"
+ },
+ "picture-entity": {
+ "description": "Kartu Entitas Gambar menampilkan sebuah entitas dalam bentuk gambar. Alih-alih gambar dari URL, kartu ini juga bisa menampilkan gambar entitas kamera.",
+ "name": "Entitas Gambar"
+ },
+ "picture-glance": {
+ "description": "Kartu Kilasan Gambar menampilkan gambar dan status entitas terkait sebagai ikon. Entitas di sisi kanan memungkinkan tindakan pengalihan atau menampilkan dialog info lebih lanjut.",
+ "name": "Kilasan Gambar",
+ "state_entity": "Status Entitas"
+ },
+ "picture": {
+ "description": "Kartu Gambar memungkinkan Anda menyetel gambar yang akan digunakan untuk navigasi ke berbagai jalur di antarmuka Anda atau untuk memanggil layanan.",
+ "name": "Gambar"
+ },
+ "plant-status": {
+ "description": "Kartu Status Tanaman diperuntukkan bagi semua penggemar botani nan indah di seluruh penjuru dunia.",
+ "name": "Status Tanaman"
+ },
+ "sensor": {
+ "description": "Kartu Sensor memberikan gambaran umum singkat tentang status sensor, disertai grafik opsional untuk memvisualisasikan perubahan dari waktu ke waktu.",
+ "graph_type": "Jenis Grafik",
+ "name": "Sensor",
+ "show_more_detail": "Tampilkan detail lainnya"
+ },
+ "shopping-list": {
+ "description": "Kartu Daftar Belanja memungkinkan Anda untuk menambah, mengedit, menyelesaikan, dan menghapus item dari daftar belanja.",
+ "integration_not_loaded": "Kartu ini memerlukan penyiapan integrasi `shopping_list`.",
+ "name": "Daftar Belanja"
+ },
+ "statistics-graph": {
+ "description": "Kartu Grafik Statistik memungkinkan Anda menampilkan grafik statistik untuk masing-masing entitas yang terdaftar.",
+ "name": "Grafik Statistik"
+ },
+ "thermostat": {
+ "description": "Kartu Termostat memberikan kendali atas entitas iklim Anda. Kartu ini memungkinkan Anda untuk mengubah suhu dan mode entitas.",
+ "name": "Termostat"
+ },
+ "vertical-stack": {
+ "description": "Kartu Tumpukan Vertikal memungkinkan Anda mengelompokkan beberapa kartu sehingga selalu tersedia di kolom yang sama.",
+ "name": "Tumpukan Vertikal"
+ },
+ "weather-forecast": {
+ "description": "Kartu Prakiraan Cuaca menampilkan cuaca. Sangat berguna untuk disertakan pada antarmuka yang ditampilkan di dinding.",
+ "name": "Prakiraan Cuaca",
+ "show_both": "Tampilkan Cuaca dan Prakiraan saat ini",
+ "show_forecast": "Tampilkan Prakiraan",
+ "show_only_current": "Hanya tampilkan Cuaca saat ini",
+ "show_only_forecast": "Hanya tampilkan Prakiraan"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Berdasarkan Kartu",
+ "by_entity": "Berdasarkan Entitas",
+ "custom_card": "Khusus",
+ "domain": "Domain",
+ "entity": "Entitas",
+ "no_description": "Deskripsi tidak tersedia."
+ },
+ "common": {
+ "add": "Tambahkan",
+ "clear": "Hapus",
+ "edit": "Edit",
+ "none": "Tidak ada"
+ },
+ "edit_badges": {
+ "panel_mode": "Lencana ini tidak akan ditampilkan karena tampilan ini dalam \"Mode Panel\".",
+ "view_no_badges": "Lencana tidak didukung oleh jenis tampilan saat ini."
+ },
+ "edit_card": {
+ "add": "Tambahkan Kartu",
+ "clear": "Hapus",
+ "confirm_cancel": "Yakin ingin membatalkan?",
+ "delete": "Hapus kartu",
+ "duplicate": "Gandakan kartu",
+ "edit": "Edit",
+ "header": "Konfigurasi Kartu",
+ "move": "Pindah ke tampilan",
+ "move_after": "Pindahkan kartu setelah",
+ "move_before": "Pindahkan kartu sebelum",
+ "move_down": "Pindahkan kartu ke bawah",
+ "move_up": "Pindahkan kartu ke atas",
+ "options": "Opsi lainnya",
+ "pick_card": "Kartu mana yang ingin Anda tambahkan?",
+ "pick_card_view_title": "Kartu mana yang ingin Anda tambahkan ke tampilan {name} Anda?",
+ "search_cards": "Cari kartu",
+ "show_code_editor": "Tampilkan Editor Kode",
+ "show_visual_editor": "Tampilkan Editor Visual",
+ "toggle_editor": "Alihkan Editor",
+ "typed_header": "Konfigurasi Kartu {type}",
+ "unsaved_changes": "Anda memiliki perubahan yang belum disimpan"
+ },
+ "edit_lovelace": {
+ "edit_title": "Edit judul",
+ "explanation": "Judul ini ditampilkan di atas semua tampilan Anda di antarmuka Lovelace.",
+ "header": "Judul antarmuka Lovelace Anda",
+ "title": "Judul"
+ },
+ "edit_view": {
+ "add": "Tambahkan tampilan",
+ "delete": "Hapus tampilan",
+ "edit": "Edit tampilan",
+ "header": "Konfigurasi Tampilan",
+ "header_name": "Konfigurasi Tampilan {name}",
+ "move_left": "Pindahkan tampilan ke kiri",
+ "move_right": "Pindahkan tampilan ke kanan",
+ "tab_badges": "Lencana",
+ "tab_settings": "Setelan",
+ "tab_visibility": "Visibilitas",
+ "type": "Jenis tampilan",
+ "types": {
+ "masonry": "Masonry (bawaan)",
+ "panel": "Panel (1 kartu)",
+ "sidebar": "Bilah Samping"
+ },
+ "visibility": {
+ "select_users": "Pilih pengguna mana yang akan melihat tampilan ini di navigasi"
+ }
+ },
+ "header": "Edit Antarmuka",
+ "header-footer": {
+ "choose_header_footer": "Pilih {type}",
+ "footer": "Footer",
+ "header": "Header",
+ "types": {
+ "buttons": {
+ "name": "Tombol"
+ },
+ "graph": {
+ "name": "Grafik"
+ },
+ "picture": {
+ "name": "Gambar"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Kelola dasbor",
+ "manage_resources": "Kelola sumber daya",
+ "open": "Buka menu antarmuka Lovelace",
+ "raw_editor": "Editor konfigurasi mentah"
+ },
+ "migrate": {
+ "header": "Konfigurasi Tidak Kompatibel",
+ "migrate": "Migrasikan konfigurasi",
+ "para_migrate": "Home Assistant dapat menambahkan ID ke semua kartu dan tampilan Anda secara otomatis untuk Anda dengan menekan tombol 'Migrasikan konfigurasi'.",
+ "para_no_id": "Elemen ini tidak memiliki ID. Tambahkan ID ke elemen ini di 'ui-lovelace.yaml'."
+ },
+ "move_card": {
+ "header": "Pilih tampilan tujuan pemindahan kartu"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Kami akan secara otomatis menghasilkan tampilan antarmuka Lovelace dengan area dan perangkat Anda jika konfigurasi antarmuka Lovelace dihapus.",
+ "confirm_remove_config_title": "Yakin ingin menghapus konfigurasi antarmuka Lovelace?",
+ "confirm_unsaved_changes": "Anda memiliki perubahan yang belum disimpan. Yakin ingin keluar?",
+ "confirm_unsaved_comments": "Konfigurasi Anda mungkin berisi komentar, ini tidak akan disimpan. Lanjutkan?",
+ "error_invalid_config": "Konfigurasi Anda tidak valid: {error}",
+ "error_parse_yaml": "Tidak dapat mengurai YAML: {error}",
+ "error_remove": "Tidak dapat menghapus konfigurasi: {error}",
+ "error_save_yaml": "Tidak dapat menyimpan YAML: {error}",
+ "header": "Edit Konfigurasi",
+ "lovelace_changed": "Konfigurasi Lovelace telah diperbarui. Ingin memuat konfigurasi yang diperbarui di editor dan kehilangan perubahan Anda saat ini?",
+ "reload": "Muat Ulang",
+ "resources_moved": "Sumber daya seharusnya tidak lagi ditambahkan ke konfigurasi Lovelace tetapi dapat ditambahkan di panel konfigurasi Lovelace.",
+ "save": "Simpan",
+ "saved": "Disimpan",
+ "unsaved_changes": "Perubahan yang belum disimpan"
+ },
+ "save_config": {
+ "close": "Tutup",
+ "empty_config": "Mulai dengan dasbor kosong",
+ "header": "Kendalikan antarmuka Lovelace Anda",
+ "para": "Dasbor ini sedang dikelola oleh Home Assistant. Dasbor ini diperbarui secara otomatis ketika entitas baru atau komponen antarmuka Lovelace baru tersedia. Jika Anda mengambil alih kendali, dasbor ini tidak akan lagi diperbarui secara otomatis. Anda selalu dapat membuat dasbor baru dalam konfigurasi untuk diutak-atik.",
+ "para_sure": "Yakin ingin mengendalikan antarmuka pengguna Anda?",
+ "save": "Ambil kendali",
+ "yaml_config": "Untuk membantu Anda memulai, berikut adalah konfigurasi saat ini dari dasbor ini:",
+ "yaml_control": "Untuk mengambil kendali dalam mode YAML, buat file YAML dengan nama yang Anda tentukan di konfigurasi untuk dasbor ini, atau nama baku 'ui-lovelace.yaml'.",
+ "yaml_mode": "Anda menggunakan mode YAML untuk dasbor ini, yang berarti Anda tidak dapat mengubah konfigurasi Lovelace dari antarmuka. Jika Anda ingin mengelola dasbor ini dari antarmuka, hapus 'mode: yaml' dari konfigurasi Lovelace 'configuration.yaml.'."
+ },
+ "select_view": {
+ "dashboard_label": "Dasbor",
+ "header": "Pilih tampilan",
+ "views_label": "Tampilan"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Editor Footer",
+ "header": "Editor Header",
+ "row": "Editor Baris Entitas"
+ }
+ },
+ "suggest_card": {
+ "add": "Tambahkan ke antarmuka Lovelace",
+ "create_own": "Pilih kartu lain",
+ "header": "Kami membuat saran untuk Anda"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Tampilan ini berisi lebih dari satu kartu, tetapi tampilan panel hanya dapat menampilkan 1 kartu."
+ }
+ }
+ },
+ "menu": {
+ "close": "Tutup",
+ "configure_ui": "Edit Dasbor",
+ "exit_edit_mode": "Keluar dari mode edit antarmuka",
+ "help": "Bantuan",
+ "reload_resources": "Muat ulang sumber daya",
+ "start_conversation": "Mulai percakapan"
+ },
+ "reload_lovelace": "Muat Ulang UI",
+ "reload_resources": {
+ "refresh_body": "Anda harus menyegarkan halaman untuk menyelesaikan pemuatan ulang. Ingin menyegarkan sekarang?",
+ "refresh_header": "Ingin menyegarkan?"
+ },
+ "unused_entities": {
+ "available_entities": "Ini adalah entitas yang Anda miliki, tetapi belum adalah di antarmuka Lovelace Anda.",
+ "domain": "Domain",
+ "entity": "Entitas",
+ "entity_id": "ID Entitas",
+ "last_changed": "Terakhir Diubah",
+ "no_data": "Tidak ditemukan entitas yang tidak digunakan",
+ "search": "Cari entitas",
+ "select_to_add": "Pilih entitas yang ingin ditambahkan ke kartu lalu klik tombol tambahkan kartu.",
+ "title": "Entitas yang tidak digunakan"
+ },
+ "views": {
+ "confirm_delete": "Hapus tampilan?",
+ "confirm_delete_existing_cards": "Menghapus tampilan ini juga akan menghapus kartu",
+ "confirm_delete_existing_cards_text": "Yakin ingin menghapus tampilan ''{name}'' Anda? Tampilan berisi {number} kartu yang akan dihapus. Aksi ini tidak bisa diurungkan.",
+ "confirm_delete_text": "Yakin ingin menghapus tampilan ''{name}'' Anda?"
+ },
+ "warning": {
+ "attribute_not_found": "Atribut {attribute} tidak tersedia di: {entity}",
+ "entity_non_numeric": "Entitas non-numerik: {entity}",
+ "entity_not_found": "Entitas tidak tersedia: {entity}",
+ "entity_unavailable": "Entitas saat ini tidak tersedia: {entity}",
+ "starting": "Home Assistant sedang dimulai, mungkin belum semuanya tersedia"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Hapus",
+ "delete_prompt": "Hapus pesan ini?",
+ "empty": "Anda tidak memiliki pesan apa pun",
+ "playback_title": "Pemutaran pesan"
+ },
+ "map": {
+ "edit_zones": "Edit Zona"
+ },
+ "my": {
+ "component_not_loaded": "Pengalihan ini tidak didukung oleh instans Home Assistant Anda. Anda memerlukan integrasi {integration} untuk menggunakan pengalihan ini.",
+ "documentation": "dokumentasi",
+ "error": "Terjadi kesalahan yang tidak diketahui",
+ "faq_link": "FAQ Home Assistant Saya",
+ "no_supervisor": "Pengalihan ini tidak didukung oleh instalasi Home Assistant Anda. Pengalihan ini memerlukan metode instalasi Home Assistant Operating System atau Home Assistant Supervised. Untuk informasi selengkapnya, lihat {docs_link}.",
+ "not_supported": "Pengalihan ini tidak didukung oleh instans Home Assistant Anda. Periksa {link} tentang pengalihan yang didukung dan versi mana mulai diperkenalkan."
+ },
+ "page-authorize": {
+ "abort_intro": "Proses masuk dibatalkan",
+ "authorizing_client": "Anda akan memberi akses {clientId} ke instans Home Assistant Anda.",
+ "form": {
+ "error": "Kesalahan: {error}",
+ "next": "Masuk",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Sesi kedaluwarsa, harap masuk lagi."
+ },
+ "error": {
+ "invalid_auth": "Nama pengguna atau sandi tidak valid",
+ "invalid_code": "Kode autentikasi tidak valid"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Kata Sandi",
+ "username": "Nama Pengguna"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Kode Autentikasi Dua Faktor"
+ },
+ "description": "Buka ** {mfa_module_name} ** pada perangkat Anda untuk melihat kode autentikasi dua faktor Anda dan memverifikasi identitas Anda:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Sesi kedaluwarsa, harap masuk lagi."
+ },
+ "error": {
+ "invalid_auth": "Nama pengguna atau sandi tidak valid",
+ "invalid_code": "Kode autentikasi tidak valid"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Kata Sandi",
+ "username": "Nama Pengguna"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Kode Autentikasi Dua Faktor"
+ },
+ "description": "Buka ** {mfa_module_name} ** pada perangkat Anda untuk melihat kode autentikasi dua faktor Anda dan memverifikasi identitas Anda:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Sesi kedaluwarsa, harap masuk lagi.",
+ "no_api_password_set": "Anda tidak memiliki kata sandi API yang dikonfigurasi."
+ },
+ "error": {
+ "invalid_auth": "Kata sandi API tidak valid",
+ "invalid_code": "Kode autentikasi tidak valid"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Kata Sandi API"
+ },
+ "description": "Masukkan kata sandi API di konfigurasi HTTP Anda:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Kode Autentikasi Dua Faktor"
+ },
+ "description": "Buka ** {mfa_module_name} ** pada perangkat Anda untuk melihat kode autentikasi dua faktor Anda dan memverifikasi identitas Anda:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Komputer Anda tidak diperbolehkan."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Pengguna"
+ },
+ "description": "Pilih pengguna yang diinginkan untuk masuk:"
+ }
+ }
+ }
+ },
+ "start_over": "Mulai dari awal",
+ "unknown_error": "Ada yang salah",
+ "working": "Mohon tunggu"
+ },
+ "initializing": "Inisialisasi",
+ "logging_in_to_with": "Masuk ke **{locationName}** dengan **{authProviderName}**.",
+ "logging_in_with": "Masuk dengan **{authProviderName}**.",
+ "pick_auth_provider": "Atau masuk dengan",
+ "store_token": "Buat saya tetap masuk"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "oleh {name}",
+ "introduction": "Selamat datang di rumah! Anda berhasil membuka demo Home Assistant, tempat kami menampilkan antarmuka terbaik yang dibuat oleh komunitas kami.",
+ "learn_more": "Pelajari lebih lanjut tentang Home Assistant",
+ "next_demo": "Demo berikutnya"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Aktivitas",
+ "air": "Udara",
+ "commute_home": "Perjalanan ke Rumah",
+ "entertainment": "Hiburan",
+ "hdmi_input": "Input HDMI",
+ "hdmi_switcher": "Pengalih HDMI",
+ "information": "Informasi",
+ "lights": "Lampu",
+ "morning_commute": "Perjalanan Pagi",
+ "total_tv_time": "Total Waktu TV",
+ "turn_tv_off": "Matikan Televisi",
+ "volume": "Volume"
+ },
+ "names": {
+ "family_room": "Ruang Keluarga",
+ "hallway": "Lorong",
+ "kitchen": "Dapur",
+ "left": "Kiri",
+ "master_bedroom": "Kamar Tidur Utama",
+ "mirror": "Cermin",
+ "patio": "Teras",
+ "right": "Kanan",
+ "temperature_study": "Studi Suhu",
+ "upstairs": "Atas"
+ },
+ "unit": {
+ "minutes_abbr": "min",
+ "watching": "menonton"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Berikutnya"
+ },
+ "core-config": {
+ "button_detect": "Deteksi",
+ "finish": "Berikutnya",
+ "intro": "Halo {name}, selamat datang di Home Assistant. Nama apa yang ingin diberikan untuk rumah Anda?",
+ "intro_location": "Kami ingin mengetahui tempat tinggal Anda. Informasi ini akan membantu menampilkan informasi dan menyiapkan otomasi berbasis matahari. Data ini tidak pernah dibagikan di luar jaringan Anda.",
+ "intro_location_detect": "Kami dapat membantu Anda mengisi informasi ini dengan membuat permintaan satu kali ke layanan eksternal.",
+ "location_name": "Beri nama instalasi Home Assistant Anda",
+ "location_name_default": "Rumah"
+ },
+ "finish": "Selesai",
+ "integration": {
+ "finish": "Selesai",
+ "intro": "Perangkat dan layanan diwakili di Home Assistant sebagai integrasi. Anda dapat mengaturnya sekarang, atau melakukannya nanti dari layar konfigurasi.",
+ "more_integrations": "Lebih Lanjut"
+ },
+ "intro": "Siap untuk membuat rumah Anda lebih hidup, merebut kembali privasi Anda, dan bergabung dengan komunitas pemikir di seluruh dunia?",
+ "next": "Berikutnya",
+ "restore": {
+ "addons": "Add-on",
+ "confirm_password": "Konfirmasi kata sandi cadangan",
+ "description": "Atau, Anda dapat memulihkan dari cadangan sebelumnya.",
+ "folders": "Folder",
+ "full_backup": "Cadangan lengkap",
+ "hide_log": "Sembunyikan log lengkap",
+ "in_progress": "Pemulihan sedang berlangsung",
+ "partial_backup": "Cadangan parsial",
+ "password": "Kata sandi cadangan",
+ "password_protection": "Perlindungan kata sandi",
+ "select_type": "Pilih yang akan dipulihkan",
+ "show_log": "Tampilkan log lengkap",
+ "type": "Jenis cadangan"
+ },
+ "user": {
+ "create_account": "Buat Akun",
+ "data": {
+ "name": "Nama",
+ "password": "Kata Sandi",
+ "password_confirm": "Konfirmasi Kata Sandi",
+ "username": "Nama Pengguna"
+ },
+ "error": {
+ "password_not_match": "Kata sandi tidak cocok",
+ "required_fields": "Isi semua bidang yang wajib diisi"
+ },
+ "intro": "Mari kita mulai dengan membuat akun pengguna.",
+ "required_field": "Wajib"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Temukan fitur lanjutan.",
+ "link_promo": "Pelajari lebih lanjut",
+ "title": "Mode Tingkat Lanjut"
+ },
+ "change_password": {
+ "confirm_new_password": "Konfirmasi Kata Sandi Baru",
+ "current_password": "Kata Sandi Saat Ini",
+ "error_new_is_old": "Kata sandi baru harus berbeda dari kata sandi saat ini",
+ "error_new_mismatch": "Kata sandi baru yang dimasukkan tidak sama",
+ "error_required": "Wajib",
+ "header": "Ubah Kata Sandi",
+ "new_password": "Kata Sandi Baru",
+ "submit": "Kirimkan",
+ "success": "Kata sandi berhasil diubah"
+ },
+ "current_user": "Anda saat ini masuk sebagai {fullName} .",
+ "customize_sidebar": {
+ "button": "Edit",
+ "description": "Anda juga dapat menekan dan menahan header bilah samping untuk mengaktifkan mode edit.",
+ "header": "Ubah urutan dan sembunyikan item dari bilah samping"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Ikhtisar (bawaan)",
+ "description": "Pilih dasbor baku untuk perangkat ini.",
+ "dropdown_label": "Dasbor",
+ "header": "Dasbor"
+ },
+ "enable_shortcuts": {
+ "description": "Aktifkan atau nonaktifkan pintasan keyboard untuk melakukan berbagai tindakan di antarmuka.",
+ "header": "Pintasan Keyboard"
+ },
+ "force_narrow": {
+ "description": "Ini akan menyembunyikan bilah samping secara baku, mirip dengan pengalaman seluler.",
+ "header": "Selalu sembunyikan bilah samping"
+ },
+ "is_owner": "Anda adalah pemilik.",
+ "language": {
+ "dropdown_label": "Bahasa",
+ "header": "Bahasa",
+ "link_promo": "Bantu menerjemahkan"
+ },
+ "logout": "Keluar",
+ "logout_text": "Yakin ingin keluar?",
+ "logout_title": "Keluar?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Yakin ingin menghapus token akses untuk {name}?",
+ "create": "Buat Token",
+ "create_failed": "Gagal membuat token akses.",
+ "created": "Dibuat pada {date}",
+ "delete_failed": "Gagal menghapus token akses.",
+ "description": "Buat token akses yang berumur panjang untuk memungkinkan skrip Anda berinteraksi dengan Home Assistant. Setiap token akan berlaku selama 10 tahun sejak pembuatan. Berikut adalah token akses yang berumur panjang yang saat ini aktif.",
+ "empty_state": "Anda belum memiliki token akses yang berumur panjang.",
+ "header": "Token Akses yang Berumur Panjang",
+ "learn_auth_requests": "Pelajari cara membuat permintaan yang diautentikasi.",
+ "name": "Nama",
+ "prompt_copy_token": "Salin token akses Anda. Ini tidak akan ditampilkan lagi.",
+ "prompt_name": "Beri nama token"
+ },
+ "mfa": {
+ "confirm_disable": "Yakin ingin menonaktifkan {name}?",
+ "disable": "Nonaktifkan",
+ "enable": "Aktifkan",
+ "header": "Modul Autentikasi Multifaktor"
+ },
+ "mfa_setup": {
+ "close": "Tutup",
+ "step_done": "Penyiapan selesai untuk {step}",
+ "submit": "Kirimkan",
+ "title_aborted": "Dibatalkan",
+ "title_success": "Sukses!"
+ },
+ "number_format": {
+ "description": "Pilih cara pemformatan bilangan",
+ "dropdown_label": "Format bilangan",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Otomatis (gunakan pengaturan bahasa)",
+ "none": "Tidak ada",
+ "space_comma": "1 234 567,89",
+ "system": "Gunakan pelokalan sistem"
+ },
+ "header": "Format Bilangan"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Nama perangkat",
+ "title": "Apa nama perangkat ini?"
+ },
+ "description": "Kirim notifikasi ke perangkat ini.",
+ "error_load_platform": "Konfigurasi notify.html5.",
+ "error_use_https": "SSL harus diaktifkan untuk antarmuka.",
+ "header": "Notifikasi Push",
+ "link_promo": "Pelajari lebih lanjut",
+ "push_notifications": "Notifikasi push"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Yakin ingin menghapus token penyegaran untuk {name} ?",
+ "created_at": "Dibuat pada {date}",
+ "current_token_tooltip": "Tidak dapat menghapus token penyegaran saat ini",
+ "delete_failed": "Gagal menghapus token penyegaran.",
+ "description": "Setiap token penyegaran mewakili sesi login. Token penyegaran akan dihapus secara otomatis saat Anda mengeklik keluar. Saat ini token penyegaran berikut aktif untuk akun Anda.",
+ "header": "Token Baru",
+ "last_used": "Terakhir digunakan pada {date} di {location}",
+ "not_used": "Belum pernah digunakan",
+ "token_title": "Token penyegaran baru untuk {clientId}"
+ },
+ "suspend": {
+ "description": "Haruskah koneksi ke server ditutup setelah disembunyikan selama 5 menit?",
+ "header": "Tutup koneksi secara otomatis"
+ },
+ "themes": {
+ "accent_color": "Warna aksen",
+ "dark_mode": {
+ "auto": "Otomatis",
+ "dark": "Gelap",
+ "light": "Terang"
+ },
+ "dropdown_label": "Tema",
+ "error_no_theme": "Tidak ada tema yang tersedia.",
+ "header": "Tema",
+ "link_promo": "Pelajari tentang tema",
+ "primary_color": "Warna primer",
+ "reset": "Setel ulang"
+ },
+ "time_format": {
+ "description": "Pilih pemformatan waktu",
+ "dropdown_label": "Format waktu",
+ "formats": {
+ "12": "12 jam (AM/PM)",
+ "24": "24 jam",
+ "language": "Otomatis (gunakan pengaturan bahasa)",
+ "system": "Gunakan pelokalan sistem"
+ },
+ "header": "Format Waktu"
+ },
+ "vibrate": {
+ "description": "Aktifkan atau nonaktifkan getaran pada perangkat ini saat mengontrol perangkat.",
+ "header": "Bergetar"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Mulai percakapan"
+ }
+ },
+ "sidebar": {
+ "done": "Selesai",
+ "external_app_configuration": "Konfigurasi Aplikasi",
+ "hide_panel": "Sembunyikan panel",
+ "show_panel": "Tampilkan panel",
+ "sidebar_toggle": "Alihkan Bilah Samping"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/is.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/is.json
new file mode 100644
index 00000000..f2a4b7f0
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/is.json
@@ -0,0 +1,3239 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "device": "Tæki",
+ "integration": "Samþætting",
+ "user": "Notandi"
+ }
+ },
+ "groups": {
+ "owner": "Eigandi",
+ "system-admin": "Stjórnendur",
+ "system-read-only": "Notendur með lesaðgang",
+ "system-users": "Notendur"
+ },
+ "panel": {
+ "calendar": "Dagatal",
+ "config": "Stillingar",
+ "developer_tools": "Þróunarverkfæri",
+ "energy": "Orka",
+ "history": "Saga",
+ "logbook": "Breytingarsaga",
+ "mailbox": "Pósthólf",
+ "map": "Kort",
+ "profile": "Prófíll",
+ "shopping_list": "Innkaupalisti",
+ "states": "Yfirlit"
+ },
+ "state": {
+ "default": {
+ "off": "Slökkt",
+ "on": "Á",
+ "unavailable": "Ekki tiltækt",
+ "unknown": "Óþekkt"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Sjálfvirkt",
+ "off": "Af",
+ "on": "Á"
+ },
+ "hvac_action": {
+ "cooling": "Kæling",
+ "drying": "Þurrkun",
+ "fan": "Vifta",
+ "heating": "Kynding",
+ "idle": "Aðgerðalaus",
+ "off": "Slökkt"
+ },
+ "preset_mode": {
+ "activity": "Virkni",
+ "away": "Fjarverandi",
+ "boost": "Uppörvun",
+ "comfort": "Þægindi",
+ "eco": "Sparnaður",
+ "home": "Heima",
+ "none": "Ekkert",
+ "sleep": "Svefn"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Sjálfvirkt",
+ "away": "Fjarverandi",
+ "baby": "Barn",
+ "boost": "Uppörvun",
+ "comfort": "Þægindi",
+ "eco": "Sparnaður",
+ "home": "Heima",
+ "normal": "Venjulegt",
+ "sleep": "Svefn"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Ekki á verði",
+ "armed_away": "Á verði",
+ "armed_custom_bypass": "Á verði",
+ "armed_home": "Á verði",
+ "armed_night": "Á verði",
+ "armed_vacation": "Á verði",
+ "arming": "set á vörð",
+ "disarmed": "Ekki á verði",
+ "disarming": "tek af verði",
+ "pending": "Í bið",
+ "triggered": "Kveik"
+ },
+ "default": {
+ "entity_not_found": "Eining fannst ekki",
+ "error": "Villa",
+ "unknown": "Óþ."
+ },
+ "device_tracker": {
+ "home": "Heima",
+ "not_home": "Fjarverandi"
+ },
+ "person": {
+ "home": "Heima",
+ "not_home": "Fjarverandi"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Sjálfgefið",
+ "header": "Hljóð"
+ },
+ "network": {
+ "header": "Net"
+ },
+ "options": {
+ "edit_in_ui": "Breyta í viðmóti",
+ "edit_in_yaml": "Breyta í YAML",
+ "header": "Valkostir"
+ }
+ },
+ "dashboard": {
+ "capability": {
+ "apparmor": {
+ "title": "AppArmor"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "core": "Kjarni",
+ "docker": "docker",
+ "hardware": "vélbúnaður",
+ "hass": "hass",
+ "hassio": "hassio",
+ "rating": "einkunn"
+ },
+ "role": {
+ "backup": "öryggisafrit",
+ "default": "sjálfgefið",
+ "homeassistant": "homeassistant"
+ },
+ "stages": {
+ "deprecated": "Úrelt",
+ "experimental": "Tilraunakennt"
+ }
+ },
+ "changelog": "Breytingaskrá",
+ "hostname": "Vélarheiti",
+ "install": "setja upp",
+ "new_update_available": "{name} {version} er í boði",
+ "open_web_ui": "Opna vefviðmót",
+ "option": {
+ "auto_update": {
+ "title": "Sjálfvirk uppfærsla"
+ },
+ "ingress_panel": {
+ "title": "Sýna í hliðarstiku"
+ },
+ "watchdog": {
+ "title": "Varðhundur"
+ }
+ },
+ "protection_mode": {
+ "enable": "Virkja"
+ },
+ "rebuild": "endurbyggja",
+ "restart": "endurræsa",
+ "start": "byrja",
+ "stop": "Stöðva",
+ "uninstall": "fjarlægja"
+ },
+ "panel": {
+ "documentation": "Skjölun",
+ "info": "Upplýsingar"
+ },
+ "state": {
+ "installed": "Viðbót er uppsett"
+ }
+ },
+ "backup": {
+ "addons": "Viðbætur",
+ "could_not_create": "Ekki tókst að búa til skyndimynd",
+ "create": "Búa til",
+ "create_backup": "Búa til öryggisafrit",
+ "create_blocked_not_running": "Ekki er hægt að búa til skyndimynd núna þar sem kerfið er í {state} stöðu.",
+ "created": "Búið til",
+ "delete_backup_confirm": "eyða",
+ "delete_backup_title": "Eyða öryggisafriti",
+ "delete_selected": "Eyða völdum afritum",
+ "enter_password": "Færðu inn lykilorð.",
+ "failed_to_delete": "Ekki tókst að eyða",
+ "folders": "Möppur",
+ "full_backup": "Fullt afrit",
+ "name": "Heiti",
+ "no_backups": "Þú ert ekki kominn með nein afrit ennþá.",
+ "partial_backup": "Afritun að hluta",
+ "password": "Lykilorð",
+ "password_protection": "Vörn með lykilorði",
+ "select_type": "Veldu hvað á að endurheimta",
+ "selected": "{number} valin",
+ "size": "Stærð",
+ "type": "Gerð",
+ "upload_backup": "Hlaða upp öryggisafriti"
+ },
+ "common": {
+ "cancel": "Hætta við",
+ "close": "Loka",
+ "description": "Lýsing",
+ "error": {
+ "unknown": "Óþekkt villa"
+ },
+ "learn_more": "Læra meira",
+ "menu": "Valmynd",
+ "new_version_available": "Ný útgáfa í boði",
+ "newest_version": "Nýjasta útgáfan",
+ "no": "Nei",
+ "refresh": "Endurnýja",
+ "release_notes": "Útgáfuskýrslur",
+ "reload": "Endurhlaða",
+ "restart": "Endurræsa",
+ "restart_name": "Endurræsa {name}",
+ "review": "Endurskoða",
+ "save": "Vista",
+ "show": "sýna",
+ "update": "Uppfæra",
+ "version": "Útgáfa",
+ "yes": "Já"
+ },
+ "confirm": {
+ "restart": {
+ "text": "Ertu viss um að þú viljir endurræsa {name}?",
+ "title": "Endurræsa {name}"
+ },
+ "update": {
+ "title": "Uppfæra {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Ný útgáfa í boði",
+ "addon_running": "Viðbót er í gangi",
+ "addon_stopped": "Viðbót er stöðvuð",
+ "addons": "Uppsettar viðbætur"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Hætta við",
+ "loading_devices": "Hleð inn tæki",
+ "move": "Færa",
+ "moving": "Flyt gagnadisk",
+ "select_device": "Veldu nýjan gagnadisk",
+ "title": "Færa gagnadisk"
+ },
+ "hardware": {
+ "attributes": "Eiginleikar",
+ "id": "Auðkenni",
+ "search": "Leitaðu að vélbúnaði",
+ "title": "Vélbúnaður"
+ },
+ "network": {
+ "connected_to": "Tengt við {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Óvirkt",
+ "dns_servers": "DNS þjónar",
+ "failed_to_change": "Ekki tókst að breyta netstillingum",
+ "gateway": "Vistfang gáttar",
+ "ip_netmask": "IP vistfang/Netmöskvi",
+ "open": "Opið",
+ "scan_ap": "Leita að aðgangsstöðum",
+ "static": "Föst",
+ "title": "Netstillingar",
+ "unsaved": "Þú ert með óvistaðar breytingar, þær týnast ef þú skiptir um flipa, viltu halda áfram?",
+ "warning": "Ef þú ert að breyta Wi-Fi, IP eða gáttarvistföngum gætirðu misst tenginguna!",
+ "wep": "WEP",
+ "wpa": "WPA-PSK"
+ },
+ "registries": {
+ "password": "Lykilorð",
+ "remove": "Fjarlægja",
+ "username": "Username"
+ },
+ "repositories": {
+ "add": "Bæta við",
+ "remove": "Fjarlægja",
+ "title": "Stjórna viðbótargeymslum"
+ },
+ "restart_addon": {
+ "confirm_text": "Endurræsa viðbót",
+ "text": "Á að endurræsa viðbótina með breytingum þínum?"
+ },
+ "update": {
+ "backup": "Afritun",
+ "updating": "Uppfæri {name} í útgáfu {version}"
+ }
+ },
+ "my": {
+ "error_addon_not_found": "Viðbót fannst ekki"
+ },
+ "panel": {
+ "addons": "Viðbætur",
+ "backups": "Öryggisafrit",
+ "dashboard": "Mælaborð",
+ "store": "Viðbótarverslun",
+ "system": "Kerfi"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Kjarni: Notkun örgjörva",
+ "ram_usage": "Kjarni: Notkun vinnsluminnis"
+ },
+ "host": {
+ "change": "Breyta",
+ "change_hostname": "Breyta vélarheiti",
+ "confirm_reboot": "Á örugglega að endurræsa vélina?",
+ "confirm_shutdown": "Ertu viss um að þú viljir ganga frá vélinni?",
+ "deployment": "Dreifing",
+ "docker_version": "Docker útgáfa",
+ "emmc_lifetime_used": "eMMC líftími notaður",
+ "failed_to_get_hardware_list": "Ekki tókst að sækja vélbúnaðarlista",
+ "failed_to_import_from_usb": "Ekki tókst að flytja inn úr USB",
+ "failed_to_move": "Ekki tókst að flytja gagnadisk",
+ "failed_to_reboot": "Ekki tókst að endurræsa vélina",
+ "failed_to_set_hostname": "Ekki tókst að breyta vélarheiti",
+ "failed_to_shutdown": "Ekki tókst að ganga frá vélinni",
+ "hardware": "Vélbúnaður",
+ "hostname": "Vélarheiti",
+ "import_from_usb": "Flytja inn frá USB",
+ "ip_address": "IP vistfang",
+ "move_datadisk": "Flytja gagnadisk",
+ "new_hostname": "Vinsamlega sláðu inn nýtt vélarheiti:",
+ "operating_system": "Stýrikerfi",
+ "reboot_host": "Endurræsa vél",
+ "shutdown_host": "Ganga frá vél",
+ "used_space": "Notað pláss"
+ },
+ "supervisor": {
+ "channel": "Rás",
+ "reload_supervisor": "Endurhlaða Supervisor",
+ "search": "Leita",
+ "share_diagonstics_title": "Hjálpa til við að bæta Home Assistant",
+ "unhealthy_reason": {
+ "docker": "Docker umhverfið virkar ekki rétt",
+ "privileged": "Umsjónarkerfi hefur ekki áskilin réttindi",
+ "setup": "Uppsetning umsjónarkerfis mistókst",
+ "supervisor": "Umsjónarkerfi tókst ekki að uppfæra"
+ },
+ "unsupported_reason": {
+ "dbus": "DBUS",
+ "docker_configuration": "Stillingar Docker",
+ "docker_version": "Docker útgáfa",
+ "job_conditions": "Hunsuð skilyrði verka",
+ "lxc": "LXC",
+ "network_manager": "Netstjóri",
+ "os": "Stýrikerfis",
+ "privileged": "Umsjónarkerfi hefur ekki áskilin réttindi",
+ "source_mods": "Upprunabreytingar",
+ "systemd": "Systemd"
+ },
+ "warning": "VIÐVÖRUN"
+ }
+ },
+ "update_available": {
+ "core_note": "supervisor mun fara aftur í útgáfu {version} ef tilvikið kemur ekki aftur upp eftir uppfærsluna.",
+ "create_backup": "Búa til öryggisafrit fyrir uppfærslu",
+ "creating_backup": "Geri öryggisafrit af {name}",
+ "description": "Þú ert með {version} uppsett. Smelltu á uppfæra til að uppfæra í útgáfu {newest_version}",
+ "no_update": "Uppfærsla ekki í boði fyrir {name}",
+ "open_release_notes": "Opna útgáfuskýrslur",
+ "update_name": "Uppfæra {name}",
+ "updating": "Uppfæri {name} í útgáfu {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Viltu vista þessa innskráningu?",
+ "confirm": "Vista innskráningu",
+ "decline": "Nei takk"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Vörður úti",
+ "arm_custom_bypass": "Sérsniðin hjáleið",
+ "arm_home": "Vörður heima",
+ "arm_night": "Vörður nótt",
+ "arm_vacation": "Vörður frí",
+ "clear_code": "Hreinsa",
+ "code": "Kóði",
+ "disarm": "Taka af verði"
+ },
+ "area": {
+ "area_not_found": "Svæði ekki fundið"
+ },
+ "automation": {
+ "last_triggered": "Síðast kveikt",
+ "trigger": "Kveikja"
+ },
+ "button": {
+ "press": "Ýttu á"
+ },
+ "camera": {
+ "not_available": "Mynd ekki tiltæk"
+ },
+ "climate": {
+ "away_mode": "Fjarverandi hamur",
+ "cooling": "{name} kæling",
+ "current_temperature": "{name} núverandi hitastig",
+ "currently": "Er núna",
+ "fan_mode": "Viftuhamur",
+ "heating": "{name} hitun",
+ "high": "hátt",
+ "low": "lágt",
+ "on_off": "Kveikt / slökkt",
+ "operation": "Aðgerð",
+ "preset_mode": "Forstilling",
+ "swing_mode": "Sveifluhamur",
+ "target_humidity": "Viðmiðunar rakastig",
+ "target_temperature": "Viðmiðunar hitastig",
+ "target_temperature_entity": "Viðmiðunarhitastig {name}",
+ "target_temperature_mode": "Viðmiðunarhitastig {name} {mode}"
+ },
+ "counter": {
+ "actions": {
+ "reset": "endurstilla"
+ }
+ },
+ "cover": {
+ "position": "Staðsetning",
+ "tilt_position": "Hallastaða"
+ },
+ "fan": {
+ "direction": "Snúningsátt",
+ "forward": "Áfram",
+ "oscillate": "Sveiflast",
+ "reverse": "Afturábak",
+ "speed": "Hraði"
+ },
+ "humidifier": {
+ "humidity": "Viðmiðunar rakastig",
+ "mode": "Hamur",
+ "on_entity": "{name} í gangi"
+ },
+ "light": {
+ "brightness": "Birtustig",
+ "color_temperature": "Litastig",
+ "effect": "Áhrif",
+ "warm_white_value": "Hlýtt hvítt birtustig",
+ "white_value": "Hvítt gildi"
+ },
+ "lock": {
+ "code": "Kóði",
+ "lock": "Læsa",
+ "unlock": "Aflæsa"
+ },
+ "media_player": {
+ "media_next_track": "Næsta lag",
+ "media_pause": "Hlé",
+ "media_play": "Spila",
+ "media_previous_track": "Fyrra lag",
+ "media_stop": "Stöðva",
+ "media_volume_down": "Lækka",
+ "media_volume_mute": "Slökkt á hljóðstyrk",
+ "media_volume_up": "Hækka",
+ "sound_mode": "Hljóðhamur",
+ "source": "Uppruni",
+ "text_to_speak": "Texti yfir í tal",
+ "turn_off": "Slökkva á",
+ "turn_on": "Kveikja á"
+ },
+ "persistent_notification": {
+ "dismiss": "Vísa frá"
+ },
+ "scene": {
+ "activate": "Virkja"
+ },
+ "script": {
+ "cancel": "Hætta við",
+ "cancel_multiple": "Hætta við {number}",
+ "run": "Keyra"
+ },
+ "service": {
+ "run": "Keyra"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "hætta við",
+ "finish": "lokið",
+ "pause": "hlé",
+ "start": "byrja"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Halda áfram að þrífa",
+ "return_to_base": "Fara aftur í bryggju",
+ "start_cleaning": "Byrja að þrífa",
+ "turn_off": "Slökkva á",
+ "turn_on": "Kveikja á"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Fjarverandi hamur",
+ "currently": "Er núna",
+ "on_off": "Kveikt / slökkt",
+ "operation": "Aðgerð",
+ "target_temperature": "Viðmiðunarhitastig"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Loftþrýstingur",
+ "humidity": "Rakastig",
+ "precipitation": "Úrkoma",
+ "temperature": "Hitastig",
+ "visibility": "Skyggni",
+ "wind_speed": "Vindhraði"
+ },
+ "cardinal_direction": {
+ "e": "A",
+ "ene": "ANA",
+ "ese": "ASA",
+ "n": "N",
+ "ne": "NA",
+ "nne": "NNA",
+ "nnw": "NNV",
+ "nw": "NV",
+ "s": "S",
+ "se": "SA",
+ "sse": "SSA",
+ "ssw": "SSV",
+ "sw": "SV",
+ "w": "V",
+ "wnw": "VNV",
+ "wsw": "VSV"
+ },
+ "day": "Dagur",
+ "forecast": "Spá",
+ "night": "Nótt"
+ }
+ },
+ "common": {
+ "and": "og",
+ "back": "Til baka",
+ "cancel": "Hætta við",
+ "clear": "Hreinsa",
+ "close": "Loka",
+ "continue": "Halda áfram",
+ "copied_clipboard": "Afritað á klemmuspjald",
+ "delete": "Eyða",
+ "disable": "Afvirkja",
+ "enable": "Virkja",
+ "error_required": "Skilyrt",
+ "help": "Hjálp",
+ "leave": "Brottför",
+ "loading": "Hleð",
+ "menu": "Valmynd",
+ "move": "Færa",
+ "next": "Næsta",
+ "no": "Nei",
+ "not_now": "Ekki núna",
+ "previous": "Fyrri",
+ "refresh": "Endurnýja",
+ "remove": "Fjarlægja",
+ "rename": "Endurnefna",
+ "save": "Vista",
+ "skip": "Sleppa",
+ "submit": "Senda",
+ "undo": "Afturkalla",
+ "yes": "Já"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Viðbót"
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Bæta við",
+ "failed_create_area": "Ekki tókst að stofna svæði.",
+ "name": "Nafn",
+ "title": "Bæta við nýju svæði"
+ },
+ "add_new": "Bæta við nýju svæði...",
+ "area": "Svæði",
+ "clear": "Hreinsa",
+ "show_areas": "Birta svæði"
+ },
+ "attributes": {
+ "expansion_header": "Eiginleikar"
+ },
+ "blueprint-picker": {
+ "add_user": "Bæta við notanda",
+ "remove_user": "Fjarlægja notanda",
+ "select_blueprint": "Velja uppdrátt"
+ },
+ "calendar": {
+ "my_calendars": "Dagatölin mín",
+ "today": "Í dag"
+ },
+ "data-table": {
+ "clear": "Hreinsa",
+ "filtering_by": "Sía eftir",
+ "hidden": "{number} falið",
+ "search": "Leita"
+ },
+ "date-range-picker": {
+ "end_date": "Loka dagsetning",
+ "ranges": {
+ "last_week": "Í síðustu viku",
+ "this_week": "Í þessari viku",
+ "today": "Í dag",
+ "yesterday": "Í gær"
+ },
+ "select": "Velja",
+ "start_date": "Upphafs dagsetning"
+ },
+ "device-picker": {
+ "clear": "Hreinsa",
+ "device": "Tæki",
+ "no_area": "Ekkert svæði",
+ "no_devices": "Þú ert ekki með nein tæki",
+ "no_match": "Engin samsvarandi tæki fundust",
+ "show_devices": "Sýna tæki"
+ },
+ "entity": {
+ "entity-picker": {
+ "clear": "Hreinsa",
+ "edit": "Breyta",
+ "entity": "Eining",
+ "no_match": "Engar samsvarandi einingar fundust",
+ "show_entities": "Sýna einingar"
+ }
+ },
+ "history_charts": {
+ "loading_history": "Hleð stöðusögu…",
+ "no_history_found": "Engin stöðusaga fannst."
+ },
+ "logbook": {
+ "by": "eftir",
+ "by_service": "eftir þjónustu",
+ "entries_not_found": "Engar atburðaskráningar fundust.",
+ "messages": {
+ "became_unavailable": "varð ekki lengur tiltækt",
+ "changed_to_state": "breytt í {state}",
+ "detected_device_class": "uppgötvaði {device_class}",
+ "is_closing": "er að loka",
+ "is_opening": "er að opna",
+ "rose": "reis",
+ "set": "sett",
+ "turned_off": "slökkt á",
+ "turned_on": "kveikt á",
+ "was_at_home": "uppgötvaðist heima",
+ "was_at_state": "uppgötvaðist {state}",
+ "was_away": "uppgötvaðist í burtu",
+ "was_closed": "var lokað",
+ "was_connected": "tengdist",
+ "was_disconnected": "aftengdist",
+ "was_locked": "var læst",
+ "was_low": "var lágt",
+ "was_normal": "var venjulegt",
+ "was_opened": "var opnað",
+ "was_plugged_in": "var sett í samband",
+ "was_safe": "var öruggt",
+ "was_unlocked": "var aflæst",
+ "was_unplugged": "var aftengt",
+ "was_unsafe": "var óöruggt"
+ },
+ "retrieval_error": "Ekki tókst að hlaða inn atburðaskrá"
+ },
+ "media-browser": {
+ "choose_player": "Veldu spilara",
+ "class": {
+ "episode": "Þáttur",
+ "music": "Tónlist",
+ "podcast": "Hlaðvarp",
+ "tv_show": "Sjónvarpsþáttur",
+ "url": "Slóð"
+ },
+ "documentation": "skjölun",
+ "media_player": "Margmiðlunarspilari",
+ "web-browser": "Vafri"
+ },
+ "picture-upload": {
+ "label": "Mynd"
+ },
+ "qr-scanner": {
+ "not_supported": "Vafrinn þinn styður ekki QR skönnun.",
+ "only_https_supported": "Aðeins er hægt að nota myndavélina til að skanna QR-kóða þegar HTTPS er notað.",
+ "select_camera": "Veldu myndavél"
+ },
+ "related-filter-menu": {
+ "filter": "Sía",
+ "filter_by_area": "Sía eftir svæði",
+ "filter_by_device": "Sía eftir tæki",
+ "filter_by_entity": "Sía eftir einingu",
+ "filtered_by_area": "svæði: {area_name}",
+ "filtered_by_device": "tæki: {device_name}",
+ "filtered_by_entity": "eining: {entity_name}"
+ },
+ "related-items": {
+ "area": "Svæði",
+ "device": "Tæki",
+ "integration": "Samþætting"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one {dagur}\n other {dagar}\n}",
+ "hour": "{count} {count, plural,\n one {klukkutími}\n other {klukkutímar}\n}",
+ "minute": "{count} {count, plural,\n one {mínúta}\n other {mínútur}\n}",
+ "second": "{count} {count, plural,\n one {sekúnda}\n other {sekúndur}\n}",
+ "week": "{count} {count, plural,\n one {vika}\n other {vikur}\n}"
+ },
+ "future_duration": {
+ "day": "Eftir {count} {count, plural,\n one {dag}\n other {daga}\n}",
+ "hour": "Eftir {count} {count, plural,\n one {klukkutíma}\n other {klukkutíma}\n}",
+ "minute": "Eftir {count} {count, plural,\n one {mínútu}\n other {mínútur}\n}",
+ "second": "Eftir {count} {count, plural,\n one {sekúndu}\n other {sekúndur}\n}",
+ "week": "Eftir {count} {count, plural,\n one {viku}\n other {vikur}\n}"
+ },
+ "just_now": "Rétt í þessu",
+ "never": "Aldrei",
+ "past_duration": {
+ "day": "{count} {count, plural,\n one {dagur}\n other {dagar}\n} síðan",
+ "hour": "{count} {count, plural,\n one {klukkutími}\n other {klukkutímar}\n} síðan",
+ "minute": "{count} {count, plural,\n one {mínúta}\n other {mínútur}\n} síðan",
+ "second": "{count} {count, plural,\n one {sekúnda}\n other {sekúndur}\n} síðan",
+ "week": "{count} {count, plural,\n one {vika}\n other {vikur}\n} síðan"
+ }
+ },
+ "service-control": {
+ "required": "þetta er skilyrtur reitur",
+ "service_data": "Þjónustugögn"
+ },
+ "service-picker": {
+ "service": "Þjónusta"
+ },
+ "statistic-picker": {
+ "learn_more": "Læra meira um tölfræði",
+ "missing_entity": "Af hverju er einingin ekki á listanum?",
+ "statistic": "Tölfræði"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Hleð tölfræði…",
+ "no_statistics_found": "Engin tölfræði fannst.",
+ "statistic_types": {
+ "max": "hámark",
+ "mean": "meðalgildi",
+ "min": "lágmark",
+ "sum": "summa"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Velja svæði",
+ "add_device_id": "Velja tæki",
+ "add_entity_id": "Velja einingu",
+ "expand": "Stækka",
+ "expand_area_id": "Skipta þessu svæði upp í aðskilin tæki og einingar.",
+ "expand_device_id": "Skipta þessu tæki upp í aðskildar einingar.",
+ "remove": "Fjarlægja",
+ "remove_area_id": "Fjarlægja svæði",
+ "remove_device_id": "Fjarlægja tæki",
+ "remove_entity_id": "Fjarlægja einingu"
+ },
+ "user-picker": {
+ "add_user": "Bæta við notanda",
+ "no_user": "Enginn notandi",
+ "remove_user": "Fjarlægja notanda"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_label": "Virkja einingar sem nýlega var bætt við",
+ "restart_home_assistant": "Þú þarft að endurræsa Home Assistant til að breytingarnar taki gildi.",
+ "title": "Kerfisvalkostir",
+ "update": "Uppfæra"
+ },
+ "entity_registry": {
+ "dismiss": "Vísa frá",
+ "editor": {
+ "advanced": "Ítarlegar stillingar",
+ "confirm_delete": "Ertu viss um að þú viljir eyða þessari einingu?",
+ "delete": "Eyða",
+ "device_class": "Birta sem",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Hurð",
+ "garage_door": "Bílskúrshurð",
+ "opening": "Annað",
+ "window": "Gluggi"
+ },
+ "cover": {
+ "door": "Hurð",
+ "garage": "Bílskúrshurð",
+ "window": "Gluggi"
+ }
+ },
+ "device_disabled": "Tæki þessarar einingar er óvirkt.",
+ "enabled_cause": "Afvirkjað vegna {cause}.",
+ "enabled_label": "Virkja einingu",
+ "entity_id": "Kenni eingar",
+ "icon": "Yfirskrifa táknmynd",
+ "name": "Yfirskrifa nafn",
+ "open_device_settings": "Opna stillingar tækis",
+ "unavailable": "þessi eining er ekki tiltæk.",
+ "update": "Uppfæra"
+ },
+ "faq": "skjölun",
+ "related": "Tengt",
+ "settings": "Stillingar"
+ },
+ "generic": {
+ "cancel": "Hætta við",
+ "close": "loka",
+ "default_confirmation_title": "Ertu viss?",
+ "ok": "Í lagi"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Upphafsgildi",
+ "maximum": "Hámarksgildi",
+ "minimum": "Lágmarksgildi"
+ },
+ "generic": {
+ "icon": "Táknmynd",
+ "name": "Nafn"
+ },
+ "input_datetime": {
+ "date": "Dagsetning",
+ "datetime": "Dagsetning og tími",
+ "time": "Tími"
+ },
+ "input_number": {
+ "box": "Innsláttarreitur",
+ "max": "Hámarksgildi",
+ "min": "Lágmarksgildi",
+ "mode": "Birtingarmáti",
+ "unit_of_measurement": "Mælieining"
+ },
+ "input_select": {
+ "add": "Bæta við",
+ "add_option": "Bæta við valkosti",
+ "options": "Valkostir"
+ },
+ "input_text": {
+ "max": "Hámarkslengd",
+ "min": "Lágmarkslengd",
+ "mode": "Birtingarmáti",
+ "password": "Lykilorð",
+ "text": "Texti"
+ },
+ "required_error_msg": "þetta er skilyrtur reitur"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Loka kápu",
+ "open_cover": "Opna kápu"
+ },
+ "details": "Upplýsingar",
+ "edit": "Breyta einingu",
+ "history": "Saga",
+ "last_changed": "Síðast breytt",
+ "logbook": "Færslubók",
+ "remote": {
+ "activity": "Núverandi verkþáttur"
+ },
+ "restored": {
+ "confirm_remove_title": "Fjarlægja einingu?",
+ "remove_action": "Fjarlægja einingu"
+ },
+ "script": {
+ "last_action": "Síðasta aðgerð",
+ "last_triggered": "Síðast kveikt"
+ },
+ "settings": "Stillingar fyrir einingu",
+ "show_more": "Sýna meira",
+ "sun": {
+ "elevation": "Hækkun",
+ "rising": "Upprisa",
+ "setting": "Stillingar"
+ },
+ "updater": {
+ "title": "Uppfærslu leiðbeiningar"
+ },
+ "vacuum": {
+ "locate": "Staðsetja",
+ "pause": "Hlé",
+ "start": "Byrja",
+ "status": "Staða",
+ "stop": "Stöðva"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Reyni að flokka MQTT skilaboð sem JSON",
+ "entities": "Einingar",
+ "no_entities": "Engar einingar",
+ "no_triggers": "Engar kveikjur",
+ "show_as_yaml": "Birta sem YAML",
+ "triggers": "Kveikjur"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Valkostir"
+ },
+ "loading": {
+ "loading_flow": "Vinsamlegast hinkrið meðan möguleikar fyrir {integration} eru frumstilltir."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Svæði",
+ "automation": "Sjálfvirkni",
+ "blueprint": "Uppdrættir",
+ "core": "Almennt",
+ "devices": "Tæki",
+ "energy": "Orka",
+ "entities": "Einingar",
+ "helpers": "Hjálp",
+ "info": "Upplýsingar",
+ "integrations": "Samþættingar",
+ "logs": "Atburðaskrá",
+ "lovelace": "Skjáborð",
+ "person": "Persónur",
+ "scene": "Senur",
+ "script": "Skriftur",
+ "users": "Notendur",
+ "zone": "Svæði"
+ },
+ "reload": {
+ "homekit": "Endurhlaða HomeKit",
+ "zone": "Svæði"
+ },
+ "server_control": {
+ "perform_action": "{action} þjónn",
+ "restart": "Endurræsa",
+ "stop": "Stöðva"
+ },
+ "types": {
+ "reload": "Endurhlaða",
+ "server_control": "Netþjónn"
+ }
+ }
+ },
+ "voice_command": {
+ "error": "Úbbs, villa kom upp",
+ "found": "Ég fann eftirfarandi fyrir þig:",
+ "how_can_i_help": "Hvernig get ég aðstoðað?"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Bæta við tækjum",
+ "reconfigure": "Endurstilla tæki",
+ "remove": "Fjarlægja tæki"
+ },
+ "last_seen": "Síðast séð",
+ "manuf": "eftir {manufacturer}",
+ "no_area": "Ekkert svæði",
+ "power_source": "Orkugjafi",
+ "services": {
+ "remove": "Fjarlægja tæki af ZigBee neti."
+ },
+ "unknown": "Óþekkt",
+ "zha_device_card": {
+ "device_name_placeholder": "Breyta nafni á tæki"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Eigindi",
+ "cluster_header": "Klasi",
+ "configuring_alt": "Stillir",
+ "start_reconfiguration": "Byrja endurstillingu"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\n one {dagur}\n other {dagar}\n}",
+ "hour": "{count} {count, plural,\n one {klukkutími}\n other {klukkutímar}\n}",
+ "minute": "{count} {count, plural,\n one {mínúta}\n other {mínútur}\n}",
+ "second": "{count} {count, plural,\n one {sekúnda}\n other {sekúndur}\n}",
+ "week": "{count} {count, plural,\n one {vika}\n other {vikur}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Þú getur samt breytt stillingum þínum í YAML.",
+ "editor_not_available": "Enginn ritill er tiltækur fyrir gerð \"{type}\".",
+ "editor_not_supported": "Ritill er ekki studdur fyrir þessar stillingar",
+ "error_detected": "Villur fundust í stillingum",
+ "key_missing": "Nauðsynlegan lykil \"{key}\" vantar.",
+ "key_not_expected": "Ekki er búist við lyklinum \"{key}\" eða hann er ekki studdur af ritlinum.",
+ "key_wrong_type": "Uppgefið gildi fyrir \"{key}\" er ekki stutt af ritlinum. Við styðjum ({type_correct}) en fengum ({type_wrong})."
+ },
+ "supervisor": {
+ "ask": "Biðja um hjálp",
+ "system_health": "Kanna kerfisheilbrigði"
+ }
+ },
+ "login-form": {
+ "log_in": "Skrá inn",
+ "password": "Lykilorð",
+ "remember": "Muna"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Smelltu á hnappinn til að stilla {entity}",
+ "close": "Loka",
+ "dismiss_all": "Sleppa öllu",
+ "empty": "Engar tilkynningar",
+ "title": "Tilkynningar"
+ },
+ "notification_toast": {
+ "connection_lost": "Tenging tapaðist. Tengist aftur…",
+ "dismiss": "Vísa frá",
+ "service_call_failed": "Ekki tókst að kalla á þjónustu {service}."
+ },
+ "panel": {
+ "config": {
+ "areas": {
+ "add_picture": "Bæta við mynd",
+ "assigned_to_area": "Úthlutað þessu svæði",
+ "caption": "Svæðaskrá",
+ "data_table": {
+ "area": "Svæði",
+ "devices": "Tæki",
+ "entities": "Einingar"
+ },
+ "description": "Yfirlit yfir öll svæði á heimilinu þínu.",
+ "edit_settings": "Svæðisstillingar",
+ "editor": {
+ "create": "STOFNA",
+ "default_name": "Nýtt svæði",
+ "delete": "EYÐA",
+ "linked_entities_caption": "Einingar",
+ "name": "Nafn",
+ "name_required": "Nafn er skilyrt",
+ "unknown_error": "Óþekkt villa",
+ "update": "UPPFÆRA"
+ },
+ "picker": {
+ "create_area": "Stofna svæði",
+ "header": "Svæðaskrá",
+ "integrations_page": "Samþættingar síða",
+ "introduction": "Svæði eru notuð til að skipuleggja hvar tæki eru staðsett. Þessar upplýsingar verða notaðar innan Home Assistant til að hjálpa þér að skipuleggja viðmótið, réttindi og samþættingar við önnur kerfi.",
+ "introduction2": "Til að staðsetja tæki inn á tilteknu svæði þá skal notast við hlekkinn hér fyrir neðan til að vafra yfir á samþættingarsíðu og þar smella á stillta samþættingu til að fá upp spjaldið fyrir tækið.",
+ "no_areas": "Það lýtur út fyrir að þú sért ekki með nein svæði ennþá!"
+ }
+ },
+ "automation": {
+ "caption": "Sjálfvirkni",
+ "description": "Stofna og breyta sjálfvirkni",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Nota uppdrátt"
+ },
+ "header": "Búa til nýja sjálfvirkni",
+ "how": "Hvernig viltu búa til nýju sjálfvirknina?",
+ "start_empty": "Byrja með tóma sjálfvirkni",
+ "start_empty_description": "Búa til nýja sjálfvirkni frá grunni",
+ "thingtalk": {
+ "create": "Stofna",
+ "header": "Lýstu sjálfvirkninni sem þú vilt búa til",
+ "input_label": "Hvað ætti þessi sjálfvirkni að gera?",
+ "intro": "Og við munum reyna að búa það til fyrir þig. Til dæmis: Slökktu ljósin þegar ég fer."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Bæta við aðgerð",
+ "delete": "Eyða",
+ "delete_confirm": "Ertu viss um að þú viljir eyða?",
+ "duplicate": "Fjölfalda",
+ "header": "Aðgerðir",
+ "introduction": "Aðgerðir er það sem Home Assistant mun gera þegar sjálfvirkni er ræst.",
+ "learn_more": "Læra meira um aðgerðir",
+ "name": "Aðgerð",
+ "type": {
+ "choose": {
+ "label": "Veldu",
+ "sequence": "Aðgerðir"
+ },
+ "condition": {
+ "label": "Skilyrði"
+ },
+ "delay": {
+ "delay": "Töf",
+ "label": "Töf"
+ },
+ "device_id": {
+ "action": "Aðgerð",
+ "extra_fields": {
+ "brightness_pct": "Birtustig",
+ "code": "Kóði",
+ "humidity": "Rakastig",
+ "message": "Skilaboð",
+ "mode": "Hamur",
+ "position": "Staðsetning",
+ "title": "Titill",
+ "value": "Gildi"
+ },
+ "label": "Tæki"
+ },
+ "event": {
+ "event": "Viðburður:",
+ "label": "Skjóta viðburði",
+ "service_data": "Þjónustu gögn"
+ },
+ "scene": {
+ "label": "Virkja senu"
+ },
+ "service": {
+ "label": "Kalla í þjónustu"
+ },
+ "wait_template": {
+ "label": "Bið",
+ "timeout": "Tímamörk (valfrjálst)",
+ "wait_template": "Bið sniðmát"
+ }
+ },
+ "type_select": "Gerð aðgerðar",
+ "unsupported_action": "Óstudd aðgerð: {action}"
+ },
+ "alias": "Nafn",
+ "blueprint": {
+ "blueprint_to_use": "Uppdráttur sem skal nota",
+ "header": "Uppdráttur",
+ "no_blueprints": "Þú ert ekki með neina uppdrætti",
+ "no_inputs": "Þessi uppdráttur er ekki með neinum inntökum."
+ },
+ "conditions": {
+ "add": "Bæta við skilyrði",
+ "delete": "Eyða",
+ "delete_confirm": "Ertu viss um að þú viljir eyða?",
+ "duplicate": "Fjölfalda",
+ "header": "Skilyrði",
+ "learn_more": "Læra meira um skilyrði",
+ "name": "Skilyrði",
+ "type": {
+ "and": {
+ "label": "Og"
+ },
+ "device": {
+ "condition": "Skilyrði",
+ "extra_fields": {
+ "above": "Yfir",
+ "below": "Undir",
+ "for": "Tímalengd",
+ "hvac_mode": "Loftræstistilling"
+ },
+ "label": "Tæki"
+ },
+ "not": {
+ "label": "Ekki"
+ },
+ "numeric_state": {
+ "above": "Yfir",
+ "below": "Undir",
+ "value_template": "Gildissniðmát (valfrjálst)"
+ },
+ "or": {
+ "label": "Eða"
+ },
+ "state": {
+ "label": "Staða",
+ "state": "Staða"
+ },
+ "sun": {
+ "after": "Eftir:",
+ "after_offset": "Eftir hliðrun (valfrjálst)",
+ "before": "Fyrir:",
+ "before_offset": "Fyrir hliðrun (valfrjálst)",
+ "label": "Sól",
+ "sunrise": "Sólarupprás",
+ "sunset": "Sólsetur"
+ },
+ "template": {
+ "label": "Sniðmát",
+ "value_template": "Gildissniðmát"
+ },
+ "time": {
+ "after": "Eftir",
+ "before": "Fyrir",
+ "label": "Tími",
+ "weekdays": {
+ "fri": "Föstudagur",
+ "mon": "Mánudagur",
+ "sat": "Laugardag",
+ "sun": "Sunnudagur",
+ "thu": "Fimmtudagur",
+ "tue": "Þriðjudagur",
+ "wed": "Miðvikudagur"
+ }
+ },
+ "zone": {
+ "entity": "Eining með staðsetningu",
+ "label": "Öryggissvæði",
+ "zone": "Öryggissvæði"
+ }
+ },
+ "type_select": "Gerð skilyrðis",
+ "unsupported_condition": "Skilyrði ekki stutt: {condition}"
+ },
+ "copy_to_clipboard": "Afrita á klemmuspjald",
+ "default_name": "Ný sjálfvirkni",
+ "description": {
+ "label": "Lýsing",
+ "placeholder": "Valfrjáls lýsing"
+ },
+ "edit_ui": "Breyta í viðmóti",
+ "edit_yaml": "Breyta sem YAML",
+ "enable_disable": "Virkja/slökkva á sjálfvirkni",
+ "introduction": "Notaðu sjálfvirkni til að glæða húsið þitt lífi",
+ "load_error_not_editable": "Eingöngu er hægt að breyta sjálfvirkni í automations.yaml",
+ "load_error_unknown": "Villa kom upp við að hlaða inn sjálfvirkni ({err_no}).",
+ "modes": {
+ "label": "Hamur",
+ "restart": "Endurræsa"
+ },
+ "move_down": "Færa niður",
+ "move_up": "Færa upp",
+ "save": "Vista",
+ "triggers": {
+ "add": "Bæta við kveikju",
+ "delete": "Eyða",
+ "delete_confirm": "Ert þú viss um að þú viljir eyða?",
+ "duplicate": "Fjölfalda",
+ "header": "Kveikjur",
+ "introduction": "Kveikjur sjá um að ræsa sjálfvirkni reglur. Það er mögulegt að tilgreina margar kveikjur fyrir sömu regluna. Þegar kveikja er ræst þá mun Home Assistant sannreyna skilyrðin ef einhver og kalla á aðgerðina.",
+ "learn_more": "Læra meira um kveikjur",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Yfir",
+ "below": "Undir",
+ "for": "Tímalengd",
+ "zone": "Svæði"
+ },
+ "label": "Tæki",
+ "trigger": "Kveikja"
+ },
+ "event": {
+ "context_user_pick": "Veldu notanda",
+ "event_data": "Viðburðargögn",
+ "event_type": "Gerð viðburðar",
+ "label": "Viðburður"
+ },
+ "geo_location": {
+ "enter": "Koma",
+ "event": "Viðburður:",
+ "label": "Staðsetning",
+ "leave": "Brottför",
+ "source": "Uppruni",
+ "zone": "Öryggissvæði"
+ },
+ "homeassistant": {
+ "event": "Viðburður:",
+ "label": "Home Assistant",
+ "shutdown": "Lokun",
+ "start": "Ræsing"
+ },
+ "mqtt": {
+ "label": "MQTT"
+ },
+ "numeric_state": {
+ "above": "Yfir",
+ "below": "Undir",
+ "value_template": "Gildissniðmát (valfrjálst)"
+ },
+ "state": {
+ "for": "Fyrir",
+ "from": "Frá",
+ "label": "Staða",
+ "to": "Til"
+ },
+ "sun": {
+ "event": "Viðburður:",
+ "label": "Sól",
+ "offset": "Hliðrun (valfrjálst)",
+ "sunrise": "Sólarupprás",
+ "sunset": "Sólsetur"
+ },
+ "template": {
+ "label": "Sniðmát",
+ "value_template": "Gildissniðmát"
+ },
+ "time": {
+ "at": "Þann",
+ "label": "Tími"
+ },
+ "time_pattern": {
+ "hours": "Klukkustundir",
+ "label": "Tímamynstur",
+ "minutes": "Mínútur",
+ "seconds": "Sekúndur"
+ },
+ "webhook": {
+ "label": "Vefkrókur",
+ "webhook_id": "Vefkrókur ID"
+ },
+ "zone": {
+ "enter": "Koma",
+ "entity": "Eining með staðsetningu",
+ "event": "Viðburður:",
+ "label": "Öryggissvæði",
+ "leave": "Brottför",
+ "zone": "Svæði"
+ }
+ },
+ "type_select": "Gerð kveikju",
+ "unsupported_platform": "Vettvangur ekki studdur: {platform}"
+ },
+ "unsaved_confirm": "Þú ert með óvistaðar breytingar. Ertu viss um að þú viljir fara?"
+ },
+ "picker": {
+ "add_automation": "Bæta við sjálfvirkni",
+ "delete_automation": "Eyða sjálfvirkni",
+ "duplicate": "Fjölfalda",
+ "duplicate_automation": "Fjölfalda sjálfvirkni",
+ "edit_automation": "Breyta sjálfvirkni",
+ "header": "Sjálfvirkniritill",
+ "headers": {
+ "name": "Nafn"
+ },
+ "learn_more": "Læra meira um sjálfvirkni",
+ "no_automations": "Við fundum ekki neinar sjálfvirkni-skilgreiningar sem hægt er að breyta",
+ "only_editable": "Eingöngu er hægt að breyta sjálfvirkni sem skilgreind er í automations.yaml",
+ "pick_automation": "Veldu sjálfvirkni sem á að breyta",
+ "show_info_automation": "Sýna upplýsingar um sjálfvirkni"
+ },
+ "thingtalk": {
+ "create": "Búa til sjálfvirkni",
+ "task_selection": {
+ "for_example": "Til dæmis:",
+ "header": "Búa til nýja sjálfvirkni",
+ "language_note": "Athugið: Aðeins enska er studd í bili."
+ }
+ },
+ "trace": {
+ "download_trace": "Sækja rakningu",
+ "edit_automation": "Breyta sjálfvirkni",
+ "newer_trace": "Nýrri rakning",
+ "older_trace": "Eldri rakning",
+ "refresh": "Endurnýja"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "error_no_url": "Færðu inn vefslóð uppdráttarins",
+ "file_name": "Slóð uppdráttar",
+ "header": "Flytja inn uppdrátt",
+ "import_btn": "Forskoða uppdrátt",
+ "import_header": "Uppdráttur \"{name}\"",
+ "importing": "Hleð inn uppdrátt...",
+ "raw_blueprint": "Innihald uppdráttar",
+ "save_btn": "Flytja inn uppdrátt",
+ "saving": "Flyt inn uppdrátt…",
+ "unsupported_blueprint": "Þessi uppdráttur er ekki studdur",
+ "url": "Vefslóð uppdráttarins"
+ },
+ "caption": "Uppdrættir",
+ "description": "Stjórna uppdráttum",
+ "overview": {
+ "add_blueprint": "Flytja inn uppdrátt",
+ "confirm_delete_header": "Eyða þessum uppdrætti?",
+ "confirm_delete_text": "Á örugglega að eyða þessum uppdrætti?",
+ "create_automation": "Búa til sjálfvirkni",
+ "create_script": "Búa til skriftu",
+ "delete_blueprint": "Eyða uppdrætti",
+ "discover_more": "Uppgötva fleiri uppdrætti",
+ "header": "Uppdráttarritill",
+ "headers": {
+ "domain": "Lén",
+ "file_name": "Skráarnafn",
+ "name": "Nafn",
+ "type": "Gerð"
+ },
+ "introduction": "Stjórnun uppdrátta gerir þér kleift að flytja inn og stjórna uppdráttunum þínum.",
+ "learn_more": "Læra meira um hvernig nota á uppdrætti",
+ "share_blueprint": "Deila uppdrátt",
+ "types": {
+ "automation": "Sjálfvirkni",
+ "script": "Skrifta"
+ },
+ "use_blueprint": "Búa til sjálfvirkni"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "disable": "afvirkja",
+ "enable": "virkja",
+ "title": "Alexa"
+ },
+ "connected": "Tengdur",
+ "connecting": "Tengist…",
+ "connection_status": "Staða tengingar við skýið",
+ "fetching_subscription": "Sæki áskrift…",
+ "google": {
+ "devices_pin": "PIN kóði öryggistækja",
+ "enter_pin_error": "Ekki tókst að vista pin kóða:",
+ "enter_pin_hint": "Sláðu in PIN kóða til að nota öryggistæki",
+ "not_configured_title": "Google Assistant hefur ekki verið virkjaður",
+ "security_devices": "Öryggistæki",
+ "sync_entities": "Samstilla einingar við Google",
+ "title": "Google Assistant"
+ },
+ "integrations": "Samþættingar",
+ "nabu_casa_account": "Nabu Casa aðgangur",
+ "not_connected": "Ekki tengdur",
+ "remote": {
+ "certificate_info": "Upplýsingar skilríkis",
+ "connected": "Tengt",
+ "link_learn_how_it_works": "Læra hvernig þetta virkar",
+ "not_connected": "Ekki tengdur",
+ "reconnecting": "Engin tenging. Reyni að tengjast á ný.",
+ "remote_enabled": {
+ "caption": "Tengjast sjálfkrafa"
+ },
+ "title": "Fjarstýring"
+ },
+ "sign_out": "Skrá út",
+ "tts": {
+ "default_language": "Sjálfgefið tungumál",
+ "dialog": {
+ "header": "Reyna texta í tal",
+ "play": "Spila",
+ "target_browser": "Vafri"
+ },
+ "female": "Kvenkyns",
+ "male": "Karlkyns",
+ "title": "Texti yfir í tal",
+ "try": "Reyna"
+ },
+ "webhooks": {
+ "loading": "Hleð …",
+ "no_hooks_yet2": " eða með því að stofna ",
+ "title": "Webhooks"
+ }
+ },
+ "alexa": {
+ "title": "Alexa"
+ },
+ "description_features": "Stjórna heimili að heiman með Alexa og Google Assistant.",
+ "description_login": "Innskráð(ur) sem {email}",
+ "description_not_login": "Ekki skráð(ur) inn",
+ "dialog_certificate": {
+ "certificate_information": "Upplýsingar um skilríki",
+ "close": "Loka",
+ "fingerprint": "Fingrafar skilríkis:"
+ },
+ "dialog_cloudhook": {
+ "close": "Loka",
+ "confirm_disable": "Ertu viss um að þú viljir afvirkja þennan vefkrók?",
+ "copied_to_clipboard": "Afritað á klemmuspjald",
+ "view_documentation": "Skoða skjölun",
+ "webhook_for": "Vefkrókur fyrir {name}"
+ },
+ "forgot_password": {
+ "email": "Netfang",
+ "email_error_msg": "Ógilt netfang",
+ "subtitle": "Gleymdirðu lykilorðinu þínu",
+ "title": "Gleymt lykilorð"
+ },
+ "google": {
+ "disable_2FA": "Afvirkja tvíþátta auðkenningu",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Þú þarft að staðfesta tölvupóstinn þinn áður en þú skráir þig inn.",
+ "alert_password_change_required": "Þú verður að breyta lykilorðinu þínu áður en þú skráir þig inn.",
+ "dismiss": "Vísa frá",
+ "email": "Netfang",
+ "email_error_msg": "Ógilt netfang",
+ "forgot_password": "gleymt lykilorð?",
+ "introduction2": "Þessi þjónusta er rekin af samstarfsaðila okkar",
+ "introduction3": "Home Assistant skýið er áskriftarþjónusta með mánaðar prufuáskrift. Engar greiðsluupplýsingar nauðsynlegar.",
+ "learn_more_link": "Læra meira um Home Assistant skýið",
+ "password": "Lykilorð",
+ "password_error_msg": "Lykilorð eru að minnsta kosti 8 stafir",
+ "sign_in": "Skrá inn",
+ "title": "Skýja innskráning"
+ },
+ "register": {
+ "create_account": "Stofna aðgang",
+ "email_address": "Netfang",
+ "email_error_msg": "Ógilt netfang",
+ "feature_amazon_alexa": "Samþætting við Amazon Alexa",
+ "feature_google_home": "Samþætting við Google Assistant",
+ "link_privacy_policy": "Friðhelgisstefna",
+ "link_terms_conditions": "Skilmálar og skilyrði",
+ "password": "Lykilorð",
+ "password_error_msg": "Lykilorð eru að minnsta kosti 8 stafir",
+ "resend_confirm_email": "Endursenda staðfestingarpóst",
+ "start_trial": "Hefja prufu"
+ }
+ },
+ "common": {
+ "learn_more": "Læra meira"
+ },
+ "core": {
+ "caption": "Almennt",
+ "description": "Staðfesta að stillingarskráin þín sé rétt og stjórnun á miðlara",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Gjaldmiðill",
+ "edit_requires_storage": "Ritill er óvirkur af því að stillingar eru vistaðar í configuration.yaml.",
+ "elevation": "Hækkun",
+ "elevation_meters": "metrar",
+ "external_url": "Ytri vefslóð",
+ "find_currency_value": "Finndu þitt gildi",
+ "imperial_example": "Fahrenheit, pund",
+ "internal_url": "Innri vefslóð",
+ "latitude": "Breiddargráða",
+ "location_name": "Nafnið á Home Assistant uppsetningunni",
+ "longitude": "Lengdargráða",
+ "metric_example": "Celsíus, kílógrömm",
+ "save_button": "Vista",
+ "time_zone": "Tímabelti",
+ "unit_system": "Einingarkerfi",
+ "unit_system_imperial": "Imperial",
+ "unit_system_metric": "Metra"
+ },
+ "header": "Stillingar og stjórnun þjóns",
+ "introduction": "Að breyta stillingum getur verið þreytandi ferli og við vitum það. Þetta svæði mun reyna að létta þér lífið hvað það varðar."
+ }
+ }
+ },
+ "customize": {
+ "caption": "Séraðlögun",
+ "description": "Séraðlögun fyrir einingarnar þínar",
+ "picker": {
+ "documentation": "Skjölun um sérvirkni",
+ "header": "Séraðlögun"
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Stjórna sjálfvirkni, senum, skriftum og hjálpara",
+ "title": "Sjálfvirkni og senur"
+ },
+ "blueprints": {
+ "description": "Fyrirframgerð sjálfvirkni og skriftur frá samfélaginu",
+ "title": "Uppdrættir"
+ },
+ "companion": {
+ "description": "Staðsetning og tilkynningar"
+ },
+ "dashboards": {
+ "description": "Búðu til sérsniðin spjöld til að stjórna heimilinu þínu",
+ "title": "Mælaborð"
+ },
+ "devices": {
+ "description": "Samþættingar, tæki, einingar og svæði",
+ "title": "Tæki og þjónustur"
+ },
+ "energy": {
+ "description": "Fylgstu með orkuframleiðslu og notkun",
+ "title": "Orka"
+ },
+ "people": {
+ "description": "Stjórna persónum og svæðum sem Home assistant er að rekja.",
+ "title": "Fólk og svæði"
+ },
+ "settings": {
+ "description": "Grunnstillingar, þjónsstýringar, kladdar og upplýsingar",
+ "title": "Stillingar"
+ },
+ "supervisor": {
+ "description": "Búa til öryggisafrit, athuga kladda eða endurræsa kerfið",
+ "title": "Viðbætur, öryggisafrit & supervisor"
+ },
+ "tags": {
+ "description": "Kveikja á sjálfvirkni þegar NFC merki, QR kóða osfrv. er skannað",
+ "title": "Merki"
+ }
+ },
+ "devices": {
+ "automation": {
+ "actions": {
+ "caption": "Þegar eitthvað er ræst af kveikju…",
+ "no_actions": "Engar aðgerðir",
+ "unknown_action": "Óþekkt aðgerð"
+ },
+ "automations": "Sjálfvirkni",
+ "conditions": {
+ "caption": "Bara framkvæma eitthvað ef…",
+ "no_conditions": "Engin skilyrði",
+ "unknown_condition": "Óþekkt skilyrði"
+ },
+ "create_disable": "Ekki er hægt að búa til sjálfvirkni með óvirku tæki",
+ "no_automations": "Engin sjálfvirkni",
+ "triggers": {
+ "caption": "Framkvæma eitthvað þegar..."
+ },
+ "unknown_automation": "Óþekkt sjálfvirkni"
+ },
+ "caption": "Tæki",
+ "confirm_delete": "Ertu viss um að þú viljir eyða þessu tæki?",
+ "data_table": {
+ "area": "Svæði",
+ "battery": "Rafhlaða",
+ "device": "Tæki",
+ "integration": "Samþætting",
+ "manufacturer": "Framleiðandi",
+ "model": "Gerð",
+ "no_devices": "Engin tæki",
+ "no_integration": "Engin samþætting"
+ },
+ "delete": "Eyða",
+ "description": "Stjórna tengdum tækjum",
+ "device_info": "Upplýsingar um tæki",
+ "device_not_found": "Tæki fannst ekki.",
+ "disabled": "Óvirkt",
+ "disabled_by": {
+ "integration": "Samþætting",
+ "user": "Notandi"
+ },
+ "edit_settings": "Breyta stillingum",
+ "enabled_cause": "Tækið er óvirkt vegna {cause}.",
+ "enabled_description": "Óvirk tæki verða ekki sýnd, einingar sem tilheyra tækinu verða gerðar óvirkar og þeim ekki bætt við Home Assistant.",
+ "enabled_label": "Virkja einingu",
+ "entities": {
+ "add_entities_lovelace": "Bæta við í Lovelace",
+ "config": "Stillingar",
+ "control": "Stjórntæki",
+ "disabled_entities": "+{count} {count, plural,\n one {óvirk eining}\n other {óvirkar einingar}\n}",
+ "entities": "Einingar",
+ "sensor": "Skynjarar",
+ "state": "Staða"
+ },
+ "name": "Nafn",
+ "no_devices": "Engin tæki",
+ "open_configuration_url_device": "Heimsækja tæki",
+ "open_configuration_url_service": "Heimsækja þjónustu",
+ "picker": {
+ "filter": {
+ "filter": "Sía",
+ "hidden_devices": "{number} hidden {number, plural,\n one {device}\n other {devices}\n}",
+ "show_all": "Sýna allt",
+ "show_disabled": "Sýna óvirk tæki"
+ },
+ "search": "Leita að tækjum"
+ },
+ "scene": {
+ "create_disable": "Ekki er hægt að búa til vettvang með óvirku tæki",
+ "no_scenes": "Engar senur",
+ "scenes": "Senur"
+ },
+ "scenes": "Senur",
+ "script": {
+ "create_disable": "Ekki er hægt að búa til forskrift með óvirku tæki",
+ "no_scripts": "Engar skriftur",
+ "scripts": "Skriftur"
+ },
+ "scripts": "Skriftur",
+ "unknown_error": "Óþekkt villa",
+ "unnamed_device": "Ónefnt tæki",
+ "update": "Uppfæra",
+ "update_device_error": "Uppfærsla tækisins mistókst"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Bæta við rafhlöðukerfi",
+ "battery_systems": "Rafhlöðukerfi",
+ "dialog": {
+ "energy_out_of_battery": "Orka að koma út úr rafhlöðunni (kwh)",
+ "header": "Stilla rafhlöðukerfi"
+ },
+ "learn_more": "Nánari upplýsingar um hvernig á að byrja."
+ },
+ "caption": "Orka",
+ "description": "Fylgstu með orkuframleiðslu og notkun",
+ "device_consumption": {
+ "add_device": "Bæta við tæki",
+ "devices": "Tæki",
+ "dialog": {
+ "header": "Bæta við tæki"
+ },
+ "selected_stat": "Rekja orkunotkun fyrir",
+ "sub": "Það að fylgjast með orkunotkun á einstökum tækjum gerir Home Assistant kleyft að fylgjast með orkunotkun á hverju tæki fyrir sig.",
+ "title": "Einstök tæki"
+ },
+ "gas": {
+ "add_gas_source": "Bæta við gasgjafa",
+ "dialog": {
+ "cost_entity_input": "Eining með núverandi verð á {unit}",
+ "cost_number": "Nota fast verð",
+ "cost_number_input": "Verð á {unit}",
+ "cost_number_suffix": "{currency} /m³",
+ "cost_stat_input": "Heildarkostnaðar eining",
+ "energy_stat": "Orkunotkun (m³)",
+ "gas_usage": "Gasnotkun",
+ "header": "Stilla gas notkun",
+ "m3_or_kWh": "ft³, m³, Wh, kWh eða MWh",
+ "no_cost": "Ekki fylgjast með kostnaði"
+ },
+ "gas_consumption": "Gas notkun",
+ "learn_more": "Nánari upplýsingar um hvernig á að byrja.",
+ "sub": "Leyfðu Home Assistant að fylgjast með gasnotkun þinni.",
+ "title": "Gas notkun"
+ },
+ "grid": {
+ "add_consumption": "Bæta við neyslu",
+ "flow_dialog": {
+ "from": {
+ "cost_entity_input": "Eining með núverandi verð",
+ "cost_number": "Nota fast verð",
+ "cost_number_input": "verð á kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "energy_stat": "Orkuneysla (kWh)",
+ "header": "Stilla notkun af raforkukerfinu",
+ "no_cost": "Ekki fylgjast með kostnaði"
+ },
+ "to": {
+ "cost_entity_input": "Eining með núverandi verð",
+ "cost_number_suffix": "{currency}/kWh",
+ "no_cost": "Ég fæ ekki peninga til baka"
+ }
+ },
+ "learn_more": "Nánari upplýsingar um hvernig á að byrja.",
+ "title": "Raforkukerfi"
+ },
+ "solar": {
+ "add_solar_production": "Bættu við sólarframleiðslu",
+ "dialog": {
+ "add_forecast": "Bæta við spá",
+ "header": "Stilla sólarsellur"
+ },
+ "solar_production": "Sólarframleiðsla",
+ "title": "Sólarsellur"
+ },
+ "validation": {
+ "issues": {
+ "entity_not_defined": {
+ "description": "Athugaðu samþættingu eða stillingar sem veita:",
+ "title": "Eining er ekki skilgreind"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "title": "Síðustu endurstillingu vantar"
+ },
+ "entity_unavailable": {
+ "title": "Eining ekki tiltæk"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "Eftirfarandi einingar innihalda ekki réttar mælieiningar sem gert er ráð fyrir ''{currency}/kWh'', ''{currency}/Wh'' eða ''{currency}/MWh'':",
+ "title": "Óvænt mælieining"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "Eftirfarandi einingar innihalda ekki réttar mælieiningar sem gert er ráð fyrir ''{currency}/kWh'', ''{currency}/Wh'', ''{currency}/MWh'', ''{currency}/m³'' eða ''{currency}/ft³'':",
+ "title": "Óvænt mælieining"
+ },
+ "recorder_untracked": {
+ "title": "Eining er ekki í rakningu"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Einingarskrá",
+ "description": "Yfirlit yfir allar þekktar einingar.",
+ "picker": {
+ "disable_selected": {
+ "button": "Afvirkja val",
+ "confirm_title": "Viltu afvirkja {number} {number, plural,\n one {einingu}\n other {einingar}\n}?"
+ },
+ "enable_selected": {
+ "button": "Virkja val",
+ "confirm_title": "Viltu virkja {number} {number, plural,\n one {einingu}\n other {einingar}\n}?"
+ },
+ "filter": {
+ "filter": "Sía",
+ "show_all": "Sýna allt"
+ },
+ "header": "Einingarskrá",
+ "headers": {
+ "area": "Svæði",
+ "disabled_by": "Afvirkjað af",
+ "integration": "Samþætting",
+ "name": "Nafn",
+ "status": "Staða"
+ },
+ "introduction": "Home Assistant heldur bókhald utanum allar einingar sem verið greindar. Hver þessara eininga hafa einingar-auðkenni (ID) sem er frátekið bara fyrir þessa tilteknu einingu.",
+ "remove_selected": {
+ "button": "Fjarlægja val",
+ "confirm_partly_title": "Einungis er hægt að fjarlægja {number} {number, plural,\n one {valda einingu}\n other {valdar einingar}\n}.",
+ "confirm_title": "Viltu fjarlægja {number} einingar?"
+ },
+ "search": "Leita í einingum",
+ "selected": "{number} valin",
+ "status": {
+ "disabled": "Afvirkjað",
+ "ok": "í lagi",
+ "readonly": "Ritvarið",
+ "restored": "Endurheimt",
+ "unavailable": "Ekki tiltækt"
+ }
+ }
+ },
+ "header": "Stilla af Home Assistant",
+ "helpers": {
+ "caption": "Hjálparar",
+ "dialog": {
+ "add_platform": "Bæta við {platform}",
+ "create": "Stofna"
+ },
+ "picker": {
+ "add_helper": "Bæta við hjálpara",
+ "headers": {
+ "editable": "Breytanlegt",
+ "name": "Nafn",
+ "type": "Gerð"
+ }
+ },
+ "types": {
+ "counter": "Teljari",
+ "input_boolean": "Víxla",
+ "input_button": "Hnappur",
+ "input_datetime": "Dagsetning og/eða tími",
+ "input_number": "Númer",
+ "input_select": "Fellivalmynd",
+ "input_text": "Texti",
+ "timer": "Tímamælir"
+ }
+ },
+ "info": {
+ "built_using": "Byggt með",
+ "caption": "Upplýsingar",
+ "copy_github": "Fyrir GitHub",
+ "copy_menu": "Afrita valmynd",
+ "copy_raw": "Hrár texti",
+ "developed_by": "Þróað af fullt af frábæru fólki.",
+ "documentation": "Skjölun",
+ "icons_by": "Smátákn eftir",
+ "integrations": "Samþættingar",
+ "setup_time": "Uppsetningartími",
+ "source": "Uppruni",
+ "system_health": {
+ "more_info": "frekari upplýsingar"
+ }
+ },
+ "integrations": {
+ "add_integration": "Bæta við samþættingu",
+ "caption": "Samþættingar",
+ "config_entry": {
+ "area": "Í {area}",
+ "configure": "Stilla",
+ "delete": "Eyða",
+ "delete_confirm": "Ertu viss um að þú viljir eyða þessari samþættingu?",
+ "device_unavailable": "Tæki ekki tiltækt",
+ "devices": "{count} {count, plural,\n one {tæki}\n other {tæki}\n}",
+ "disable": {
+ "disabled_by": {
+ "device": "tæki",
+ "integration": "samþætting",
+ "user": "notandi"
+ }
+ },
+ "documentation": "Skjölun",
+ "entities": "{count} {count, plural,\n one {eining}\n other {einingar}\n}",
+ "entity_unavailable": "Eining ekki tiltæk",
+ "firmware": "Fastbúnaðarútgáfa: {version}",
+ "hardware": "Vélbúnaður: {version}",
+ "hub": "Tengt gegnum",
+ "known_issues": "Þekkt vandamál",
+ "manuf": "eftir {manufacturer}",
+ "no_area": "Ekkert svæði",
+ "open_configuration_url": "Heimsækja tæki",
+ "reload": "Endurhlaða",
+ "rename": "Endurnefna",
+ "restart_confirm": "Endurræsa Home Assitant til að klára að fjarlægja þessa samþættingu",
+ "services": "{count} {count, plural,\n one {þjónusta}\n other {þjónustur}\n}",
+ "system_options": "Kerfisvalkostir",
+ "unknown_via_device": "Óþekkt tæki",
+ "via": "Tengt gegnum"
+ },
+ "config_flow": {
+ "aborted": "Hætt var við",
+ "close": "Loka",
+ "error": "Villa",
+ "external_step": {
+ "description": "Þetta skref krefst þess að þú heimsækir ytri vefsíðu svo hægt sé að ljúka þessu skrefi.",
+ "open_site": "Opna vefsíðu"
+ },
+ "finish": "Ljúka",
+ "loading": {
+ "fallback_title": "samþættingin",
+ "loading_flow": "Vinsamlegast hinkrið meðan {integration} er í uppsetningu.",
+ "loading_step": "Hleð inn næsta skrefi fyrir {integration}"
+ },
+ "next": "Næsta",
+ "pick_flow_step": {
+ "title": "Við uppgötvuðum þessi, viltu setja þau upp?"
+ },
+ "submit": "Senda"
+ },
+ "configure": "Stilla",
+ "configured": "Uppsett",
+ "description": "Stjórna tengdum tækjum og þjónustum",
+ "disable": {
+ "show": "Sýna"
+ },
+ "discovered": "Uppgötvað",
+ "home_assistant_website": "Vefsíða Home Assistant",
+ "ignore": {
+ "ignore": "Hunsa",
+ "ignored": "Hunsað",
+ "show_ignored": "Sýna hunsaðar samþættingar"
+ },
+ "integration": "samþætting",
+ "integration_not_found": "Samþætting fannst ekki.",
+ "new": "Setja upp nýja samþættingu",
+ "none": "Ekkert skilgreint sem stendur",
+ "none_found": "Engar samþættingar fundust",
+ "note_about_integrations": "Það er ekki er hægt að stilla allar samþættingar í gegnum viðmótið ennþá.",
+ "search": "Leita í samþættingum"
+ },
+ "introduction": "Hér er mögulegt að stilla af íhluti og Home Assistant. Því miður er ekki hægt að breyta öllu í gegnum viðmótið ennþá, en við erum að vinna í því.",
+ "logs": {
+ "clear": "Hreinsa",
+ "copy": "Afrita færslu",
+ "level": {
+ "critical": "AÐKALLANDI",
+ "debug": "AFLÚSUN",
+ "error": "VILLA",
+ "info": "UPPLÝSINGAR",
+ "warning": "VIÐVÖRUN"
+ },
+ "refresh": "Endurnýja"
+ },
+ "lovelace": {
+ "caption": "Lovelace mælaborð",
+ "dashboards": {
+ "caption": "Mælaborð",
+ "conf_mode": {
+ "yaml": "YAML skrá"
+ },
+ "confirm_delete_title": "Eyða {dashboard_title}?",
+ "default_dashboard": "Þetta er sjálfgefið mælaborð",
+ "detail": {
+ "create": "Stofna",
+ "delete": "Eyða",
+ "dismiss": "Loka",
+ "edit_dashboard": "Breyta mælaborði",
+ "icon": "Táknmynd",
+ "new_dashboard": "bæta við nýju mælaborði",
+ "require_admin": "Aðeins stjórnandi",
+ "show_sidebar": "Sýna í hliðarstiku",
+ "title": "Titill",
+ "title_required": "Titill er skilyrtur.",
+ "update": "Uppfæra",
+ "url": "Slóð"
+ },
+ "picker": {
+ "add_dashboard": "Bættu við mælaborði",
+ "headers": {
+ "conf_mode": "Stillingaraðferð",
+ "default": "Sjálfgefið",
+ "filename": "Skráarnafn",
+ "require_admin": "Aðeins stjórnandi",
+ "sidebar": "Sýna í hliðarstiku",
+ "title": "Titill"
+ },
+ "open": "Opna"
+ }
+ },
+ "description": "Búðu til sérsniðin spjöld til að stjórna heimilinu þínu",
+ "resources": {
+ "caption": "Auðlindir",
+ "detail": {
+ "create": "Stofna",
+ "delete": "Eyða",
+ "dismiss": "Loka",
+ "update": "Uppfæra",
+ "url": "Slóð",
+ "url_error_msg": "Slóð er skilyrt svæði",
+ "warning_header": "Farðu varlega!"
+ },
+ "picker": {
+ "add_resource": "Bæta við tæki",
+ "headers": {
+ "type": "Gerð",
+ "url": "Slóð"
+ }
+ },
+ "refresh_header": "Viltu hressa?",
+ "types": {
+ "css": "Stílsnið",
+ "html": "HTML (úrelt)",
+ "js": "JavaScript skrá (úrelt)",
+ "module": "JavaScript eining"
+ }
+ }
+ },
+ "mqtt": {
+ "listening_to": "Hlusta á",
+ "start_listening": "Hefja hlustun",
+ "stop_listening": "Stöðva hlustun",
+ "title": "MQTT"
+ },
+ "ozw": {
+ "common": {
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "zwave_info": "Z-Wave upplýsingar"
+ },
+ "navigation": {
+ "node": {
+ "dashboard": "Mælaborð"
+ }
+ },
+ "network_status": {
+ "unknown": "Óþekktur"
+ },
+ "nodes_table": {
+ "manufacturer": "Framleiðandi",
+ "model": "Gerð",
+ "zwave_plus": "Z-Wave Plus"
+ }
+ },
+ "person": {
+ "add_person": "Bæta við persónu",
+ "caption": "Persónur",
+ "confirm_delete": "Ertu viss um að þú viljir eyða þessari persónu?",
+ "confirm_delete2": "Öll tæki sem tilheyra þessari persónu munu verða óúthlutuð.",
+ "create_person": "Stofna persónu",
+ "description": "Stjórna persónum sem Home assistant er að rekja.",
+ "detail": {
+ "admin": "Kerfisstjóri",
+ "allow_login": "Leyfa persónu að skrá sig inn",
+ "create": "Stofna",
+ "delete": "Eyða",
+ "device_tracker_intro": "Veldu tæki sem tilheyrir þessari persónu.",
+ "device_tracker_pick": "Velja tæki til að rekja",
+ "device_tracker_picked": "Rekja tæki",
+ "link_integrations_page": "Samþættingar síða",
+ "linked_user": "Tengdur notandi",
+ "local_only": "Getur eingöngu skráð sig inn á staðarneti",
+ "name": "Nafn",
+ "name_error_msg": "Nafn er skilyrt",
+ "new_person": "Ný persóna",
+ "update": "Uppfæra"
+ },
+ "introduction": "Hér getur þú skilgreint þær persónur sem eiga að vera í Home Assistant.",
+ "learn_more": "Frekari upplýsingar um fólk",
+ "no_persons_created_yet": "Það lítur út fyrir að þú hafir ekki búið til neina einstaklinga ennþá.",
+ "person_not_found_title": "Persóna fannst ekki"
+ },
+ "scene": {
+ "activated": "Virkjuð sena {name}.",
+ "caption": "Senur",
+ "description": "Búa til og breyta senum",
+ "editor": {
+ "area": "Svæði",
+ "default_name": "Ný sena",
+ "devices": {
+ "add": "Bæta við tæki",
+ "delete": "Eyða tæki",
+ "header": "Tæki"
+ },
+ "entities": {
+ "add": "Bæta við einingu",
+ "delete": "Eyða einingu",
+ "header": "Einingar",
+ "without_device": "Einingar án tækja"
+ },
+ "icon": "Táknmynd",
+ "load_error_not_editable": "Það er eingöngu hægt að breyta senum í scenes.yaml.",
+ "name": "Nafn",
+ "save": "Vista"
+ },
+ "picker": {
+ "add_scene": "Bæta við senu",
+ "delete_confirm": "Ertu viss um að þú viljir eyða þessari senu?",
+ "delete_scene": "Eyða senu",
+ "duplicate": "Fjölfalda",
+ "edit_scene": "Breyta senu",
+ "header": "Senuritill",
+ "headers": {
+ "name": "Nafn"
+ },
+ "learn_more": "Læra meira um senur",
+ "only_editable": "Það er eingöngu hægt að breyta senum skilgreindum í scenes.yaml.",
+ "pick_scene": "Veldu senu til að breyta",
+ "show_info_scene": "Birta upplýsingar um senu"
+ }
+ },
+ "script": {
+ "caption": "Skrifta",
+ "description": "Búa til og breyta skriftum",
+ "editor": {
+ "alias": "Nafn",
+ "default_name": "Ný skrifta",
+ "icon": "Táknmynd",
+ "link_available_actions": "Læra meira um tiltækar aðgerðir.",
+ "modes": {
+ "label": "Hamur",
+ "restart": "Endurræsa"
+ },
+ "sequence": "Röð"
+ },
+ "picker": {
+ "add_script": "Bæta við skriftu",
+ "duplicate": "Tvífalda",
+ "duplicate_script": "Tvífalda forskrift",
+ "headers": {
+ "name": "Nafn"
+ },
+ "learn_more": "Læra meira um skriftur"
+ }
+ },
+ "server_control": {
+ "caption": "Stjórnun þjóns",
+ "description": "Endurræsa og stöðva Home Assistant þjóni",
+ "section": {
+ "reloading": {
+ "automation": "Endurhlaða sjálfvirkni",
+ "core": "Endurhlaða kjarna",
+ "filter": "Sía einingar",
+ "group": "Endurhlaða hópa",
+ "heading": "Endurhleðsla stillinga",
+ "homekit": "Endurhlaða HomeKit",
+ "introduction": "Sumir hlutar af Home Assistant er hægt að hlaða inn að nýju án þess að það krefjist endurræsingar. Með því að velja að endurhlaða þá mun sú aðgerð hlaða inn nýjum stillingum.",
+ "person": "Fólk",
+ "reload": "{domain}",
+ "scene": "Endurhlaða senum",
+ "script": "Endurhlaða skriftum",
+ "zone": "Svæði"
+ },
+ "server_management": {
+ "confirm_restart": "Ertu viss um að þú viljir endurræsa Home Assistant?",
+ "confirm_stop": "Ertu viss um að þú viljir stöðva Home Assistant?",
+ "heading": "Stjórnun miðlara",
+ "introduction": "Stjórna Home Assistant miðlara... frá Home Assistant.",
+ "restart": "Endurræsa",
+ "stop": "Stöðva"
+ },
+ "validation": {
+ "check_config": "Athuga stillingar",
+ "heading": "Staðfesta stillingar",
+ "introduction": "Staðfestu stillingarnar þínar ef þú hefur gert breytingar á stillingum og vilt ganga úr skugga um að þær séu í lagi",
+ "invalid": "Stillingar ógildar",
+ "valid": "Stillingar í lagi!"
+ }
+ }
+ },
+ "tag": {
+ "description": "Kveikja á sjálfvirkni þegar NFC merki, QR kóða osfrv. er skannað",
+ "detail": {
+ "companion_apps": "Fylgi forrit",
+ "create": "Stofna",
+ "delete": "Eyða",
+ "description": "Lýsing",
+ "name": "Nafn",
+ "update": "Uppfæra"
+ },
+ "edit": "Breyta",
+ "headers": {
+ "name": "Nafn"
+ },
+ "learn_more": "Læra meira um tög"
+ },
+ "updates": {
+ "more_updates": "+ {count} uppfærslur",
+ "review": "endurskoða",
+ "show": "sýna",
+ "show_all_updates": "Sýna allar uppfærslur",
+ "title": "{count} {count, plural,\n one {uppfærsla}\n other {uppfærslur}\n}",
+ "version_available": "Útgáfa {version_available} er í boði"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Bæta við notanda",
+ "create": "Stofna",
+ "local_only": "Aðeins staðbundið",
+ "password": "Lykilorð",
+ "password_confirm": "Staðfesta lykilorð",
+ "password_not_match": "Lykilorð passa ekki saman"
+ },
+ "caption": "Notendur",
+ "description": "Stjórna notendum",
+ "editor": {
+ "activate_user": "Virkja notanda",
+ "active": "Virkur",
+ "active_tooltip": "Stýrir því hvort notandi getur skráð sig inn",
+ "admin": "Stjórnandi",
+ "caption": "Skoða notanda",
+ "change_password": "Breyta lykilorði",
+ "deactivate_user": "Gera notanda óvirkan",
+ "delete_user": "Eyða notanda",
+ "group": "Hópur",
+ "id": "ID",
+ "local_only": "Getur eingöngu skráð sig inn á staðarneti",
+ "name": "Nafn",
+ "new_password": "Nýtt lykilorð",
+ "owner": "Eigandi",
+ "system_generated": "Kerfisnotandi",
+ "unnamed_user": "Ónefndur notandi",
+ "update_user": "Uppfæra",
+ "username": "Notandanafn"
+ },
+ "is_not_active": "Óvirkt",
+ "is_owner": "Eigandi",
+ "picker": {
+ "add_user": "Bæta við notanda",
+ "headers": {
+ "group": "Hópur",
+ "is_active": "Virkur",
+ "is_owner": "Eigandi",
+ "local": "Aðeins staðbundið",
+ "name": "Nafn",
+ "system": "Kerfi",
+ "username": "Notandanafn"
+ }
+ }
+ },
+ "zha": {
+ "add_device": "Bæta við tæki",
+ "add_device_page": {
+ "search_again": "Leita aftur",
+ "spinner": "Leitað að ZHA Zigbee tækjum…"
+ },
+ "cluster_commands": {
+ "header": "Klasa skipanir"
+ },
+ "clusters": {
+ "header": "Klasar"
+ },
+ "common": {
+ "clusters": "Klasar",
+ "value": "Gildi"
+ },
+ "configuration_page": {
+ "update_button": "Uppfæra stillingar"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Uppsetningu lokið",
+ "CONFIGURED_status_text": "Frumstilli",
+ "INITIALIZED": "Frumstillingu lokið",
+ "INITIALIZED_status_text": "Tækið er tilbúið til notkunar",
+ "INTERVIEW_COMPLETE_status_text": "Set upp",
+ "PAIRED": "Tæki fannst"
+ },
+ "groups": {
+ "add_group": "Bæta við hópi",
+ "add_members": "Bæta við meðlim",
+ "caption": "Hópar",
+ "create": "Stofna hóp",
+ "create_group": "Zigbee Home Automation - Búa til hóp",
+ "creating_group": "Stofna hóp",
+ "delete": "Eyða hóp",
+ "group_info": "Upplýsingar um hóp",
+ "group_name_placeholder": "Nafn hóps",
+ "group_not_found": "Hópur fannst ekki!",
+ "groups": "Hópar",
+ "members": "Meðlimir",
+ "remove_members": "Fjarlægja meðlim",
+ "removing_members": "Fjarlægji meðlimi"
+ },
+ "network": {
+ "caption": "Net"
+ },
+ "visualization": {
+ "header": "Netbirting",
+ "zoom_label": "Þysja inn að tæki"
+ }
+ },
+ "zone": {
+ "add_zone": "Bæta við svæði",
+ "caption": "Svæði",
+ "create_zone": "Búa til svæði",
+ "detail": {
+ "create": "Stofna",
+ "delete": "Eyða",
+ "icon": "Táknmynd",
+ "icon_error_msg": "Táknmyndin ætti að vera á forminu forskeyti:nafn_a_taknmynd, til dæmis: mdi:home",
+ "latitude": "Breiddargráða",
+ "longitude": "Lengdargráða",
+ "name": "Nafn",
+ "new_zone": "Nýtt svæði",
+ "radius": "Radíus",
+ "required_error_msg": "þetta er skilyrtur reitur",
+ "update": "Uppfæra"
+ },
+ "edit_zone": "Breyta svæði"
+ },
+ "zwave": {
+ "common": {
+ "unknown": "óþekkt",
+ "value": "Gildi"
+ },
+ "description": "Stjórnaðu Z-Wave netinu þínu",
+ "learn_more": "Læra meira um Z-Wave",
+ "migration": {
+ "zwave_js": {
+ "header": "Flytja yfir í Z-Wave JS"
+ }
+ },
+ "network_management": {
+ "header": "Z-Wave netumsýsla"
+ },
+ "network_status": {
+ "network_started": "Z-Wave net ræst",
+ "network_starting": "Ræsi Z-Wave net…",
+ "network_starting_note": "Þetta gæti tekið smá stund, veltur á stærð netsins.",
+ "network_stopped": "Z-Wave net stöðvað"
+ },
+ "node_config": {
+ "config_value": "Stillingargildi",
+ "seconds": "sekúndur",
+ "set_config_parameter": "Stilltu Config Parameter"
+ },
+ "node_management": {
+ "add_to_group": "Bæta í hóp",
+ "entity_info": "Upplýsingar um einingu",
+ "group": "Hópur",
+ "nodes": "Hnútar",
+ "remove_from_group": "Fjarlægja úr hóp"
+ },
+ "ozw_log": {
+ "header": "OZW annáll",
+ "load": "Hlaða"
+ },
+ "services": {
+ "cancel_command": "Hætta við skipun",
+ "heal_network": "Lækna net",
+ "save_config": "Vista stillingar",
+ "soft_reset": "Mjúk endurstilling",
+ "start_network": "Ræsa net",
+ "stop_network": "Stöðva net",
+ "test_network": "Prófa net"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "check_logs": "Skoðið kladda fyrir nánari upplýsingar",
+ "choose_inclusion_strategy": "Hvernig viltu bæta við tækinu",
+ "qr_code": "QR kóði",
+ "scan_qr_code": "Skanna QR-kóða",
+ "searching_device": "Leitar að tæki",
+ "security_classes": {
+ "S0_Legacy": {
+ "title": "S0 Eldri útfærsla"
+ },
+ "S2_AccessControl": {
+ "description": "Dæmi: Hurðarlásar og bílskúrshurðir",
+ "title": "S2 Aðgangsstýring"
+ },
+ "S2_Authenticated": {
+ "description": "Dæmi: Lýsing, skynjarar og öryggiskerfi",
+ "title": "S2 Auðkennt"
+ }
+ },
+ "select_camera": "Veldu myndavél",
+ "title": "Bæta við Z-Wave hnúti",
+ "view_device": "Skoða tæki"
+ },
+ "common": {
+ "add_node": "Bæta við hnúti",
+ "back": "Til baka",
+ "close": "Loka",
+ "network": "Net",
+ "node_id": "Hnútauðkenni",
+ "remove_node": "Fjarlægja hnút",
+ "source": "Uppruni"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n eitt {device}\n önnur {devices}\n}",
+ "driver_version": "Útgáfa rekils",
+ "dump_dead_nodes_text": "Sumir hnútanna svöruðu ekki og er gert ráð fyrir að þeir séu dauðir. Þessir hnútar verða ekki fluttir út að fullu.",
+ "dump_dead_nodes_title": "Sumir hnútanna eru dauðir",
+ "dump_debug": "Sækja gögn",
+ "dump_not_ready_confirm": "Sækja",
+ "dump_not_ready_title": "Ekki eru allir hnútar tilbúnir ennþá",
+ "nodes_ready": "Hnútar tilbúnir",
+ "not_ready": "{count} ekki tilbúnir",
+ "server_url": "Vefslóð þjóns",
+ "server_version": "Útgáfa miðlara"
+ },
+ "device_info": {
+ "device_config": "Stilla tæki",
+ "highest_security": "Hæsta öryggi",
+ "is_secure": "Öruggt",
+ "node_ready": "Hnútur tilbúinn",
+ "node_status": "Staða hnúts",
+ "unknown": "Óþekkt",
+ "zwave_info": "Z-Wave upplýsingar",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Útgáfa {version}"
+ },
+ "navigation": {
+ "network": "Net"
+ },
+ "network_status": {
+ "connected": "Tengt",
+ "connecting": "Tengist",
+ "unknown": "Óþekkt"
+ },
+ "node_config": {
+ "error_device_not_found": "Tæki fannst ekki",
+ "set_param_error": "Villa kom upp."
+ },
+ "node_status": {
+ "alive": "Á lífi",
+ "asleep": "Sofandi",
+ "awake": "Vakandi",
+ "dead": "Dauður",
+ "unknown": "Óþekkt"
+ },
+ "provisioned": {
+ "dsk": "DSK",
+ "included": "Innifalið",
+ "not_included": "Ekki innifalið"
+ },
+ "remove_failed_node": {
+ "remove_device": "Fjarlægja tæki"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Hætta við útilokun",
+ "controller_in_exclusion_mode": "Z-Wave stjórinn þinn er nú í útilokunarham.",
+ "exclusion_failed": "Ekki tókst að fjarlægja hnútinn. Vinsamlegast athugaðu atburðaskrár fyrir frekari upplýsingar.",
+ "exclusion_finished": "Hnúturinn {id} hefur verið fjarlægður af Z-Wave netinu.",
+ "follow_device_instructions": "Fylgdu leiðbeiningunum sem fylgdu tækinu þínu til að kveikja á útilokun í tækinu.",
+ "introduction": "Fjarlægðu hnút af Z-Wave netinu þínu og fjarlægðu tengd tæki og einingar úr Home Assistant.",
+ "start_exclusion": "Hefja útilokun",
+ "title": "Fjarlægja Z-Wave hnút"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Ekkert"
+ },
+ "S2_AccessControl": {
+ "description": "Dæmi: Hurðarlásar og bílskúrshurðir",
+ "title": "S2 Aðgangsstýring"
+ },
+ "S2_Authenticated": {
+ "description": "Dæmi: Lýsing, skynjarar og öryggiskerfi",
+ "title": "S2 Auðkennt"
+ },
+ "S2_Unauthenticated": {
+ "title": "S2 Óstaðfest"
+ }
+ }
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Virkir hlustendur",
+ "alert_event_type": "Gerð viðburðar er skilyrtur reitur",
+ "count_listeners": " ({count} hlustendur)",
+ "fire_event": "Skjóta viðburði",
+ "listen_to_events": "Hlusta eftir viðburðum",
+ "start_listening": "Hefja hlustun",
+ "stop_listening": "Stöðva hlustun",
+ "title": "Viðburðir",
+ "type": "Gerð viðburðar"
+ },
+ "services": {
+ "call_service": "Kalla í þjónustu",
+ "column_description": "Lýsing",
+ "column_example": "Dæmi",
+ "description": "Þjónustu þróunartólið leyfir þér að kalla í allar þjónustur sem eru tiltækar innan Home Assistant",
+ "title": "Þjónustur"
+ },
+ "states": {
+ "current_entities": "Tiltækar einingar",
+ "entity": "Eining",
+ "last_changed": "Síðast breytt",
+ "last_updated": "Síðast uppfært",
+ "more_info": "Frekari upplýsingar",
+ "no_entities": "Engar einingar",
+ "set_state": "Setja stöðu",
+ "state": "Staða",
+ "title": "Stöður"
+ },
+ "statistics": {
+ "entity": "Eining",
+ "fix_issue": {
+ "fix": "Laga vandamál",
+ "units_changed": {
+ "fix": "Laga vandamál"
+ }
+ },
+ "issue": "Vandamál",
+ "issues": {
+ "entity_not_recorded": "Þessi eining er útilokuð frá því að vera skráð.",
+ "no_state": "Engin staða er til fyrir þessa einingu."
+ },
+ "no_issue": "Engin vandamál",
+ "title": "Tölfræði"
+ },
+ "templates": {
+ "domain": "Lén",
+ "title": "Skapalón"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Vakta einstök tæki",
+ "energy_distribution_title": "Orkudreifing",
+ "energy_gas_graph_title": "Gas notkun",
+ "energy_solar_graph_title": "Sólarframleiðsla",
+ "energy_usage_graph_title": "Orkunotkun"
+ },
+ "charts": {
+ "by_device": "Orkunotkun eftir tæki",
+ "solar": "Sólarorka",
+ "stat_house_energy_meter": "Heildarorkunotkun"
+ },
+ "setup": {
+ "back": "Til baka",
+ "next": "Næsta"
+ }
+ },
+ "lovelace": {
+ "cards": {
+ "actions": {
+ "action_confirmation": "Á örugglega að framkvæma aðgerð \"{action}\"?",
+ "no_url": "Engin vefslóð til að opna tilgreint"
+ },
+ "empty_state": {
+ "go_to_integrations_page": "Fara á samþættingar síðu.",
+ "no_devices": "Þessi síða leyfir þér að stjórna tækjunum þínum, hinsvegar lýtur út fyrir að þú sért ekki með nein tæki uppsett sem stendur. Farðu yfir á samþættingarsíðu til að byrja.",
+ "title": "Velkomin(n) heim"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "Þetta spjald gefur til kynna hversu mikið af orkunni sem heimili þitt notaði var framleitt með eldsneyti sem ekki er jarðefnaeldsneyti eins og sól, vindur og kjarnorka. Því hærra, því betra!",
+ "non_fossil_energy_consumed": "Neysla á endurnýjanlegum orkugjöfum",
+ "non_fossil_energy_not_calculated": "Ekki var hægt að reikna út eydda orku sem ekki er jarðefnaeldsneyti."
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Orkunotkun"
+ },
+ "energy_distribution": {
+ "battery": "Rafhlaða",
+ "gas": "Gas",
+ "go_to_energy_dashboard": "Opna mælaborð fyrir orkunotkun",
+ "grid": "Dreifikerfi",
+ "home": "Heima",
+ "non_fossil": "Endurnýjanlegir",
+ "solar": "Sólarorka",
+ "title_today": "Orkudreifing í dag"
+ },
+ "energy_solar_graph": {
+ "production": "Framleiðsla {name}"
+ },
+ "energy_sources_table": {
+ "cost": "Kostnaður",
+ "energy": "Orka",
+ "grid_total": "Dreifikerfi samtals",
+ "source": "Uppruni",
+ "total_costs": "Heildarkostnaður"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Samtals frá dreifikerfi",
+ "consumed_battery": "Neysla af rafhlöðu",
+ "consumed_solar": "Neysla sólarorku",
+ "total_consumed": "Samtals notað {num} kWh",
+ "total_returned": "Samtals skilað {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Ef nálin er í fjólubláu, skilaðir þú meiri orku í kerfið en þú neyttir af því. Ef það er í bláu, þá nýttir þú meiri orku frá kerfinu en þú skilaðir.",
+ "energy_dependency": "Þetta kort gefur til kynna nettó orkunotkun þína.",
+ "net_consumed_grid": "Nettó notkun af dreifikerfinu",
+ "net_returned_grid": "Nettó skilað til dreifikerfis"
+ },
+ "loading": "Hleð...",
+ "no_data": "Það eru engin gögn til að sýna. Það geta tekið allt að 2 klukkustundir fyrir ný gögn að berast eftir að þú stillir orkumælaborðið þitt.",
+ "no_data_period": "Það eru engin gögn fyrir þetta tímabil.",
+ "solar_consumed_gauge": {
+ "not_produced_solar_energy": "Þú hefur ekki framleitt neina sólarorku",
+ "self_consumed_solar_energy": "Neysla af eigin sólarorku framleiðslu"
+ }
+ },
+ "picture-elements": {
+ "call_service": "Kalla í þjónustu {name}",
+ "hold": "Halda inni:",
+ "more_info": "Sýna frekari upplýsingar: {name}",
+ "navigate_to": "Fara yfir á {location}",
+ "tap": "Ýta á:",
+ "toggle": "Víxla {name}",
+ "url": "Opna glugga á {url_path}"
+ },
+ "shopping-list": {
+ "add_item": "Bæta við hlut",
+ "checked_items": "Valdir hlutir",
+ "clear_items": "Hreinsa valda hluti"
+ },
+ "show_more_info": "Sýna meiri upplýsingar"
+ },
+ "changed_toast": {
+ "message": "Lovelace stillingum hefur verið breytt, viltu endurnýja?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Dagur",
+ "month": "Mánuður",
+ "next": "Næsta",
+ "previous": "Fyrri",
+ "today": "Í dag",
+ "week": "Vika",
+ "year": "Ár"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Kalla í þjónustu",
+ "more-info": "Frekari upplýsingar",
+ "none": "Engin Aðgerð",
+ "url": "Slóð"
+ }
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Tiltækar stöður",
+ "name": "Stjórnborð öryggiskerfis"
+ },
+ "area": {
+ "description": "Svæðisspjaldið birtir sjálfkrafa einingar á tilteknu svæði.",
+ "name": "Svæði",
+ "show_camera": "Sýna myndavélarstraum í stað svæðismyndar"
+ },
+ "button": {
+ "name": "Hnappur"
+ },
+ "calendar": {
+ "name": "Dagatal",
+ "views": {
+ "dayGridDay": "Dagur",
+ "dayGridMonth": "Mánuður"
+ }
+ },
+ "conditional": {
+ "card": "Spjald",
+ "change_type": "Breyta gerð",
+ "conditions": "Skilyrði",
+ "current_state": "núverandi"
+ },
+ "config": {
+ "optional": "Valfrjálst",
+ "required": "Skilyrt"
+ },
+ "entities": {
+ "entity_row": {
+ "button": "Hnappur",
+ "call-service": "Kalla í þjónustu",
+ "weblink": "Veftengill"
+ },
+ "name": "Einingar",
+ "secondary_info_values": {
+ "brightness": "Birtustig",
+ "last-changed": "Síðast breytt",
+ "last-updated": "Síðast uppfært",
+ "position": "Staðsetning"
+ }
+ },
+ "entity-filter": {
+ "name": "Eininga sía"
+ },
+ "entity": {
+ "name": "Eining"
+ },
+ "gauge": {
+ "name": "Mælir",
+ "needle_gauge": "Sýna sem nálamæli?",
+ "severity": {
+ "define": "Skilgreina alvarleika?",
+ "green": "Grænt",
+ "red": "Rautt",
+ "yellow": "Gult"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Hlutfall",
+ "attribute": "Eigindi",
+ "camera_image": "Myndavélaeining",
+ "camera_view": "Sjónarhorn myndavélar",
+ "days_to_show": "Fjöldi daga til að sýna",
+ "entities": "Einingar",
+ "entity": "Eining",
+ "hours_to_show": "Klukkutímar sem á að birta",
+ "icon": "Táknmynd",
+ "icon_height": "Hæð tákmyndar",
+ "image": "Myndaslóð",
+ "manual": "Handvirkt",
+ "maximum": "Hámark",
+ "minimum": "Lágmark",
+ "name": "Nafn",
+ "no_theme": "Ekkert þema",
+ "search": "Leita",
+ "show_icon": "Birta táknmynd?",
+ "show_name": "Birta nafn?",
+ "show_state": "Birta stöðu?",
+ "state": "Staða",
+ "theme": "Þema",
+ "title": "Titill",
+ "unit": "Eining",
+ "url": "Slóð"
+ },
+ "glance": {
+ "columns": "Dálkar"
+ },
+ "grid": {
+ "columns": "Dálkar"
+ },
+ "history-graph": {
+ "name": "Sögulínurit"
+ },
+ "horizontal-stack": {
+ "name": "Láréttur stafli"
+ },
+ "humidifier": {
+ "name": "Rakatæki"
+ },
+ "iframe": {
+ "name": "iFrame"
+ },
+ "light": {
+ "name": "Ljós"
+ },
+ "logbook": {
+ "description": "Skráningarsöguspjaldið sýnir lista yfir atburði eininga.",
+ "name": "Skráningarsaga"
+ },
+ "map": {
+ "dark_mode": "Dökkur hamur?",
+ "default_zoom": "Sjálfgefinn aðdráttur",
+ "hours_to_show": "Klukkutímar sem á að birta",
+ "name": "Kort",
+ "source": "Uppruni"
+ },
+ "markdown": {
+ "content": "Innihald",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "name": "Margmiðlunarspilari"
+ },
+ "picture-elements": {
+ "name": "Myndaeiningar"
+ },
+ "picture-entity": {
+ "name": "Myndaeining"
+ },
+ "picture-glance": {
+ "state_entity": "Stöðueining"
+ },
+ "picture": {
+ "name": "Mynd"
+ },
+ "plant-status": {
+ "description": "Staða plöntu kortið er fyrir alla grasafræðingana þarna úti.",
+ "name": "Staða plöntu"
+ },
+ "sensor": {
+ "graph_type": "Gerð línurits",
+ "name": "Skynjari",
+ "show_more_detail": "Sýna nánari upplýsingar"
+ },
+ "shopping-list": {
+ "name": "Innkaupalisti"
+ },
+ "statistics-graph": {
+ "name": "Tölfræðilínurit",
+ "period": "Tímabil",
+ "periods": {
+ "5minute": "5 mínútur",
+ "day": "Dagur",
+ "hour": "Klukkutími",
+ "month": "Mánuður"
+ }
+ },
+ "thermostat": {
+ "description": "Hitastillikortið gefur þér möguleika á að stjórna loftslagseiningu. Leyfir þér að breyta hitastigi og ham einingar.",
+ "name": "Hitastillir"
+ },
+ "vertical-stack": {
+ "name": "Lóðréttur stafli"
+ },
+ "weather-forecast": {
+ "name": "Veðurspá",
+ "show_both": "Sýna núverandi veður og veðurspá",
+ "show_forecast": "Sýna veðurspá",
+ "show_only_current": "Sýna aðeins núverandi veður",
+ "show_only_forecast": "Sýna aðeins veðurspá"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Eftir spjaldi",
+ "by_entity": "Eftir einingu",
+ "custom_card": "Sérsniðið",
+ "domain": "Lén",
+ "entity": "Eining",
+ "no_description": "Engin lýsing tiltæk."
+ },
+ "common": {
+ "add": "Bæta við",
+ "clear": "Hreinsa",
+ "edit": "Breyta",
+ "none": "Ekkert"
+ },
+ "edit_card": {
+ "add": "Bæta við spjaldi",
+ "clear": "Tæma",
+ "confirm_cancel": "Ertu viss um að þú viljir hætta við?",
+ "delete": "Eyða",
+ "duplicate": "Afrita spjald",
+ "edit": "Breyta",
+ "header": "Stillingar spjalds",
+ "move": "Færa",
+ "move_down": "Færa kort niður",
+ "move_up": "Færa kort upp",
+ "options": "Fleir valkostir",
+ "pick_card": "Veldu spjald sem þú vilt bæta við.",
+ "show_code_editor": "Birta kóða ritil",
+ "show_visual_editor": "Birta sjónrænan ritil",
+ "toggle_editor": "Víxla ritli",
+ "unsaved_changes": "Þú ert með óvistaðar breytingar"
+ },
+ "edit_lovelace": {
+ "edit_title": "Breyta titli",
+ "title": "Titill"
+ },
+ "edit_view": {
+ "add": "Bæta við sýn",
+ "delete": "Eyða sýn",
+ "edit": "Breyta sýn",
+ "header": "Skoða stillingar",
+ "tab_badges": "Merki",
+ "tab_settings": "Stillingar",
+ "tab_visibility": "Sýnileiki",
+ "type": "Skoða gerð",
+ "types": {
+ "panel": "Spjald (1 kort)",
+ "sidebar": "Hliðarstika"
+ }
+ },
+ "header": "Breyta notendaviðmóti",
+ "header-footer": {
+ "footer": "Fótur",
+ "header": "Haus",
+ "types": {
+ "buttons": {
+ "name": "Hnappar"
+ },
+ "graph": {
+ "name": "Graf"
+ },
+ "picture": {
+ "name": "Mynd"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Stjórna mælaborðum",
+ "raw_editor": "Ritill fyrir hráar stillingar"
+ },
+ "migrate": {
+ "header": "Ósamhæfðar stillingar",
+ "migrate": "Uppfæra stillingar"
+ },
+ "raw_editor": {
+ "error_save_yaml": "Ekki tókst að vista YAML: {error}",
+ "header": "Breyta stillingum",
+ "reload": "Endurhlaða",
+ "save": "Vista",
+ "saved": "Vistað",
+ "unsaved_changes": "Óvistaðar breytingar"
+ },
+ "save_config": {
+ "close": "Loka",
+ "header": "Taka yfir stjórn á Lovelace viðmótinu",
+ "para": "Home Assistant mun sjálfgefið halda utan um notendaviðmótið og uppfæra það þegar nýjar einingar eða Lovlace íhlutir verða aðgengilegir. Ef þú tekur yfir stjórn á viðmótinu þá mun þetta ekki gerast sjálfkrafa fyrir þig.",
+ "para_sure": "Ertu viss um að þú viljir taka yfir stjórn á notendaviðmótinu þínu?",
+ "save": "Taka stjórnina"
+ },
+ "select_view": {
+ "dashboard_label": "Mælaborð",
+ "views_label": "Sýn"
+ },
+ "suggest_card": {
+ "add": "Bæta við í Lovelace viðmót",
+ "create_own": "Velja annað spjald",
+ "header": "Hér er tillaga fyrir þig"
+ }
+ },
+ "menu": {
+ "close": "Loka",
+ "configure_ui": "Stilla notendaviðmót",
+ "help": "Hjálp"
+ },
+ "reload_lovelace": "Endurhlaða Lovelace",
+ "reload_resources": {
+ "refresh_header": "Viltu hressa?"
+ },
+ "unused_entities": {
+ "domain": "Lén",
+ "entity": "Eining",
+ "last_changed": "Síðast breytt"
+ },
+ "views": {
+ "confirm_delete": "Eyða sýn?"
+ },
+ "warning": {
+ "entity_not_found": "Eining ekki tiltæk: {entity}",
+ "entity_unavailable": "{entity} er ekki tiltæk eins og er"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Eyða",
+ "delete_prompt": "Eyða þessum skilaboðum?",
+ "empty": "Þú hefur engin skilaboð",
+ "playback_title": "Afspilun skilaboða"
+ },
+ "map": {
+ "edit_zones": "Breyta svæðum"
+ },
+ "my": {
+ "documentation": "skjölun"
+ },
+ "page-authorize": {
+ "abort_intro": "Hætt var við innskráningu",
+ "authorizing_client": "Þú ert að fara að veita {clientId} aðgang að Home Assistant uppsetningunni.",
+ "form": {
+ "error": "Villa: {error}",
+ "next": "Næsta",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Útrunnin lota, vinsamlegast skráðu þig inn á ný."
+ },
+ "error": {
+ "invalid_auth": "Ógilt notandanafn eða lykilorð",
+ "invalid_code": "Ógildur auðkenningarkóði"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Lykilorð",
+ "username": "Notandanafn"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Tví-þátta auðkenning"
+ }
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Lota er útrunninn, vinsamlegast skráðu þig inn aftur."
+ },
+ "error": {
+ "invalid_auth": "Ógilt notandanafn eða lykilorð",
+ "invalid_code": "Ógildur auðkenningarkóði"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Lykilorð",
+ "username": "Notandanafn"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Tvíþættur auðkenningarkóði"
+ },
+ "description": "Opnaðu **{mfa_module_name}** á tækinu þínu til að skoða tvíþátta auðkenningarkóðann þinn upp á að staðfesta auðkenni þitt:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Seta útrunnin, vinsamlegast skráðu þig inn að nýju."
+ },
+ "error": {
+ "invalid_auth": "Ógilt API lykilorð",
+ "invalid_code": "Ógildur auðkenningarkóði"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "API lykilorð"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Tví-þátta auðkenningarkóði"
+ }
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Tölvan þín er ekki leyfð."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Notandi"
+ },
+ "description": "Vinsamlegast veldu notanda sem þú vilt skrá þig inn með:"
+ }
+ }
+ }
+ },
+ "start_over": "Byrja upp á nýtt",
+ "unknown_error": "Eitthvað fór úrskeiðis",
+ "working": "Vinsamlegast bíðið"
+ },
+ "initializing": "Frumstilli",
+ "logging_in_to_with": "Skrái þig inn á **{locationName}** með **{authProviderName}**.",
+ "logging_in_with": "Skrái inn með ** {authProviderName} **.",
+ "pick_auth_provider": "Eða skráðu þig inn með",
+ "store_token": "Halda mér innskráðum"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "eftir {name}",
+ "learn_more": "Læra meira um Home Assistant",
+ "next_demo": "Næsta sýnidæmi"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Virkni",
+ "commute_home": "Á leiðinni heim",
+ "entertainment": "Skemmtun",
+ "hdmi_input": "HDMI inntak",
+ "hdmi_switcher": "HDMI rofi",
+ "information": "Upplýsingar",
+ "lights": "Ljós",
+ "morning_commute": "Morgunferðalag",
+ "total_tv_time": "Heildar sjónvarpstími",
+ "turn_tv_off": "Slökkva á sjónvarpi",
+ "volume": "Hljóðstyrkur"
+ },
+ "names": {
+ "family_room": "Fjölskyldurými",
+ "hallway": "Gangur",
+ "kitchen": "Eldhús",
+ "left": "Vinstri",
+ "master_bedroom": "Hjónaherbergi",
+ "mirror": "Spegill",
+ "patio": "Verönd",
+ "right": "Hægri",
+ "upstairs": "Uppi"
+ },
+ "unit": {
+ "minutes_abbr": "mín",
+ "watching": "Horfi á"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Næsta"
+ },
+ "core-config": {
+ "button_detect": "Uppgötva",
+ "finish": "Næsta",
+ "intro": "Hæ {name}, velkomin(n) í Home Assistant. Hvað á heimilið þitt að heita?",
+ "intro_location": "Okkur langar að vita hvar þú býrð. Þessar upplýsingar munu hjálpa varðandi upplýsingar og uppsetningu á sólar-tengdri sjálfvirkni. Þessum upplýsingum er aldrei deilt út fyrir þitt net.",
+ "intro_location_detect": "Við getum aðstoðað þig við að fylla út þessar upplýsingar með því að kalla einu sinni á utanaðkomandi þjónustu til að sækja þær.",
+ "location_name": "Nafnið á Home Assistant uppsetningunni",
+ "location_name_default": "Heima"
+ },
+ "finish": "Ljúka",
+ "integration": {
+ "finish": "Ljúka",
+ "intro": "Tæki og þjónustur koma fram í Home Assistant sem samþættingar. Þú getur farið í uppsetningu á þeim núna eða síðar í gegnum stillingar skjáinn.",
+ "more_integrations": "Meira"
+ },
+ "intro": "Ertu tilbúinn að vekja heimilið þitt, endurheimta friðhelgi þína og gerast þáttakandi í samfélagi grúskara á heimsvísu?",
+ "next": "Næsta",
+ "restore": {
+ "addons": "Viðbætur",
+ "folders": "Möppur",
+ "full_backup": "Fullt afrit",
+ "in_progress": "Endurheimt í gangi",
+ "partial_backup": "Afritun að hluta",
+ "password": "Lykilorð",
+ "password_protection": "Vörn með lykilorði",
+ "select_type": "Veldu hvað á að endurheimta",
+ "type": "Gerð"
+ },
+ "user": {
+ "create_account": "Stofna aðgang",
+ "data": {
+ "name": "Nafn",
+ "password": "Lykilorð",
+ "password_confirm": "Staðfesta lykilorð",
+ "username": "Notandanafn"
+ },
+ "error": {
+ "password_not_match": "Lykilorð passa ekki saman",
+ "required_fields": "Fylltu út í alla nauðsynlega reiti"
+ },
+ "intro": "Hefjumst handa með því að byrja á að stofna notanda aðgang.",
+ "required_field": "Skilyrt"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "link_promo": "Læra meira"
+ },
+ "change_password": {
+ "confirm_new_password": "Staðfesta nýtt lykilorð",
+ "current_password": "Núverandi lykilorð",
+ "error_new_is_old": "Nýja lykilorðið verður að vera annað en núverandi lykilorð",
+ "error_new_mismatch": "Innslegin lykilorð eru ekki eins",
+ "error_required": "Skilyrt",
+ "header": "Breyta lykilorði",
+ "new_password": "Nýtt lykilorð",
+ "submit": "Senda",
+ "success": "Lykilorði breytt"
+ },
+ "current_user": "Þú ert skráð(ur) inn sem {fullName}.",
+ "customize_sidebar": {
+ "button": "Breyta",
+ "header": "Breyttu röðinni og feldu hluti á hliðarstikunni"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Yfirlit (sjálfgefið)",
+ "dropdown_label": "Mælaborð",
+ "header": "Mælaborð"
+ },
+ "enable_shortcuts": {
+ "header": "Flýtilyklar"
+ },
+ "force_narrow": {
+ "description": "Þetta mun fela hliðarstikuna með sambærilegum hætti og á snjalltækum.",
+ "header": "Alltaf fela hliðarstikuna"
+ },
+ "is_owner": "Þú ert eigandi.",
+ "language": {
+ "dropdown_label": "Tungumál",
+ "header": "Tungumál",
+ "link_promo": "Hjálpa við að þýða"
+ },
+ "logout": "Skrá út",
+ "logout_title": "Skrá út?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Ertu viss um að þú viljir eyða aðgangstóka fyrir {name}?",
+ "create": "Búa til tóka",
+ "create_failed": "Ekki tókst að stofna aðganstóka.",
+ "delete_failed": "Ekki tókst að eyða aðgangstókanum.",
+ "description": "Stofna langlífa aðgangstóka sem leyfa skriftum að eiga samskipti við Home Assitant uppsetninguna. Hver tóki er gildur í 10 ár frá stofnun. Eftirfarandi langlífu tókar eru virkir.",
+ "empty_state": "Þú ert ekki með neina langlífa aðgangstóka sem stendur.",
+ "header": "Langlífir aðgangstókar",
+ "learn_auth_requests": "Lærðu hvernig á að útbúa auðkenndar beiðnir.",
+ "name": "Nafn",
+ "prompt_copy_token": "Afritaðu aðgangstókann þinn en hann verður ekki birtur aftur.",
+ "prompt_name": "Nafn?"
+ },
+ "mfa": {
+ "confirm_disable": "Ertu viss um að þú viljir afvirkja {name} ?",
+ "disable": "Afvirkja",
+ "enable": "Virkja",
+ "header": "Fjölþátta auðkenningareiningar"
+ },
+ "mfa_setup": {
+ "close": "Loka",
+ "step_done": "Uppsetningu lokið fyrir {step}",
+ "submit": "Senda",
+ "title_aborted": "Hætt var við",
+ "title_success": "Tókst!"
+ },
+ "number_format": {
+ "description": "Velja hvernig tölur eru forsniðnar.",
+ "dropdown_label": "Númerasnið",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Sjálfvirkt (nota tungumálastillingu)",
+ "space_comma": "1 234 567,89"
+ },
+ "header": "Númerasnið"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Nafn tækis"
+ },
+ "description": "Senda tilkynningar í þetta tæki.",
+ "error_load_platform": "Stilla notify.html5.",
+ "error_use_https": "Krefst þess að SSL sé virkt á vef.",
+ "header": "Ýta út tilkynningum",
+ "link_promo": "Læra meira",
+ "push_notifications": "Ýta út tilkynningum"
+ },
+ "refresh_tokens": {
+ "created_at": "Búið til þann {date}",
+ "delete_failed": "Ekki tókst að eyða endurnýjunartókanum.",
+ "header": "Uppfæra tóka",
+ "last_used": "Síðast notaður þann {date} frá {location}",
+ "not_used": "Hefur aldrei verið notaður",
+ "token_title": "Uppfæra tóka fyrir {clientId}"
+ },
+ "suspend": {
+ "description": "Ættum við að loka tengingunni við þjóninn eftir að hafa verið falin í 5 mínútur?",
+ "header": "Loka tengingu sjálfkrafa"
+ },
+ "themes": {
+ "dark_mode": {
+ "auto": "Sjálfvirkt",
+ "dark": "Dökkur",
+ "light": "Ljós"
+ },
+ "dropdown_label": "Þema",
+ "error_no_theme": "Engar þemu í boði.",
+ "header": "Þema",
+ "link_promo": "Lærðu um þemu",
+ "reset": "Endurstilla"
+ },
+ "time_format": {
+ "description": "Veldu hvernig tímar eru forsniðnir.",
+ "dropdown_label": "Tímasnið",
+ "formats": {
+ "12": "12 klukkustundir (AM/PM)",
+ "24": "24 klukkustundir",
+ "language": "Sjálfvirkt (nota tungumálastillingu)",
+ "system": "Nota landsstaðall kerfis"
+ },
+ "header": "Tímasnið"
+ },
+ "vibrate": {
+ "description": "Kveikja eða slökkva á titringi í þessu tæki þegar þú stjórnar tækjum.",
+ "header": "Titra"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Hefja samtal"
+ }
+ },
+ "sidebar": {
+ "external_app_configuration": "Stillingar forrits",
+ "hide_panel": "Fela töflu",
+ "show_panel": "Sýna töflu"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/it.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/it.json
new file mode 100644
index 00000000..b6f74097
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/it.json
@@ -0,0 +1,4662 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Configurazione",
+ "device": "Dispositivo",
+ "integration": "Integrazione",
+ "user": "Utente"
+ }
+ },
+ "groups": {
+ "owner": "Proprietario",
+ "system-admin": "Amministratori",
+ "system-read-only": "Utenti di sola lettura",
+ "system-users": "Utenti"
+ },
+ "panel": {
+ "calendar": "Calendario",
+ "config": "Configurazioni",
+ "developer_tools": "Strumenti per sviluppatori",
+ "energy": "Energia",
+ "history": "Storico",
+ "logbook": "Registro",
+ "mailbox": "Posta",
+ "map": "Mappa",
+ "media_browser": "Browser multimediale",
+ "profile": "Profilo",
+ "shopping_list": "Lista della spesa",
+ "states": "Panoramica"
+ },
+ "state": {
+ "default": {
+ "off": "Spento",
+ "on": "Acceso",
+ "unavailable": "Non disponibile",
+ "unknown": "Sconosciuto"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Automatico",
+ "off": "Spento",
+ "on": "Acceso"
+ },
+ "hvac_action": {
+ "cooling": "Raffreddamento",
+ "drying": "Deumidificazione",
+ "fan": "Ventilatore",
+ "heating": "Riscaldamento",
+ "idle": "Inattivo",
+ "off": "Spento"
+ },
+ "preset_mode": {
+ "activity": "Attività",
+ "away": "Fuori casa",
+ "boost": "Boost",
+ "comfort": "Comfort",
+ "eco": "Eco",
+ "home": "Casa",
+ "none": "Nessuna",
+ "sleep": "Notte"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Automatico",
+ "away": "Fuori casa",
+ "baby": "Bambino",
+ "boost": "Boost",
+ "comfort": "Comfort",
+ "eco": "Eco",
+ "home": "In casa",
+ "normal": "Normale",
+ "sleep": "Sonno"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Attivo",
+ "armed_away": "Attivo",
+ "armed_custom_bypass": "Attivo",
+ "armed_home": "Attivo",
+ "armed_night": "Attivo",
+ "armed_vacation": "Attivo",
+ "arming": "In att.",
+ "disarmed": "Disatt.",
+ "disarming": "In disat.",
+ "pending": "Sosp.",
+ "triggered": "Attiv."
+ },
+ "default": {
+ "entity_not_found": "Entità non trovata",
+ "error": "Errore",
+ "unavailable": "Non disp.",
+ "unknown": "Scon."
+ },
+ "device_tracker": {
+ "home": "A casa",
+ "not_home": "Fuori casa"
+ },
+ "person": {
+ "home": "A casa",
+ "not_home": "Fuori casa"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Predefinito",
+ "header": "Audio",
+ "input": "Ingresso",
+ "output": "Uscita"
+ },
+ "network": {
+ "container": "Container",
+ "disabled": "Disabilitato",
+ "header": "Rete",
+ "host": "Host"
+ },
+ "no_configuration": "Questo componente aggiuntivo non espone la sua configurazione per evitare di comprometterla…",
+ "options": {
+ "edit_in_ui": "Modifica nell'interfaccia utente",
+ "edit_in_yaml": "Modifica in YAML",
+ "header": "Opzioni",
+ "invalid_yaml": "YAML non valido",
+ "show_unused_optional": "Mostra opzioni di configurazione facoltative inutilizzate"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Impossibile ottenere il registro delle modifiche del componente aggiuntivo",
+ "go_to_config": "Modifica configurazione",
+ "install": "Impossibile installare il componente aggiuntivo",
+ "restart": "Impossibile riavviare il componente aggiuntivo",
+ "start": "Impossibile avviare il componente aggiuntivo",
+ "start_invalid_config": "Vai alla configurazione",
+ "stop": "Impossibile arrestare il componente aggiuntivo",
+ "uninstall": "Impossibile disinstallare il componente aggiuntivo",
+ "validate_config": "Impossibile convalidare la configurazione del componente aggiuntivo"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor (\"Application Armor\") è un modulo di sicurezza del kernel Linux che limita le funzionalità dei componenti aggiuntivi come l'accesso alla rete, l'accesso raw socket e l'autorizzazione a leggere, scrivere o eseguire file specifici. \n\nGli autori di componenti aggiuntivi possono fornire i propri profili di sicurezza, ottimizzati per il componente aggiuntivo o richiederne la disabilitazione. Se AppArmor è disabilitato, aumenterà i rischi per la sicurezza e, di conseguenza, avrà un impatto negativo sul punteggio di sicurezza del componente aggiuntivo.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "Un componente aggiuntivo può autenticare gli utenti rispetto a Home Assistant, consentendo ai componenti aggiuntivi la possibilità di offrire agli utenti l'accesso alle applicazioni in esecuzione all'interno dei componenti aggiuntivi stessi, utilizzando il proprio nome utente/password di Home Assistant. Questo distintivo indica se l'autore del componente aggiuntivo richiede questa funzionalità.",
+ "title": "Autenticazione di Home Assistant"
+ },
+ "docker_api": {
+ "description": "L'autore del componente aggiuntivo ha richiesto al componente aggiuntivo di avere accesso alla gestione dell'istanza Docker in esecuzione nel sistema. Questa modalità offre al componente aggiuntivo l'accesso completo e il controllo all'intero sistema Home Assistant, il che aggiunge rischi per la sicurezza e potrebbe danneggiare il sistema in caso di uso improprio. Pertanto, questa funzionalità influisce negativamente sul punteggio di sicurezza del componente aggiuntivo.\n\nQuesto livello di accesso non viene concesso automaticamente e deve essere confermato dall'utente. Per fare ciò, devi disabilitare manualmente la modalità di protezione sul componente aggiuntivo. Disabilita la modalità di protezione solo se conosci, hai bisogno e consideri attendibile l'origine di questo componente aggiuntivo.",
+ "title": "Accesso completo a Docker"
+ },
+ "full_access": {
+ "description": "Questo componente aggiuntivo ha pieno accesso all'hardware del sistema, su richiesta dell'autore del componente aggiuntivo. L'accesso è paragonabile alla modalità privilegiata in Docker. Poiché ciò apre possibili rischi per la sicurezza, questa funzionalità influisce negativamente sul punteggio di sicurezza aggiuntivo.\n\nQuesto livello di accesso non viene concesso automaticamente e deve essere confermato dall'utente. Per fare ciò, devi disabilitare manualmente la modalità di protezione sul componente aggiuntivo. Disabilita la modalità di protezione solo se conosci, hai bisogno e consideri attendibile l'origine di questo componente aggiuntivo.",
+ "title": "Accesso completo all'hardware"
+ },
+ "hassio_api": {
+ "description": "Al componente aggiuntivo è stato concesso l'accesso all'API del Supervisor, su richiesta dell'autore del componente aggiuntivo. Per impostazione predefinita, il componente aggiuntivo può accedere alle informazioni generali sulla versione del sistema. Quando il componente aggiuntivo richiede l'accesso all'API a livello di \"manager\" o \"admin\", avrà accesso per controllare più parti del sistema Home Assistant. Questa autorizzazione è indicata da questo distintivo e avrà un impatto negativo sul punteggio di sicurezza del componente aggiuntivo.",
+ "title": "Accesso API Supervisor"
+ },
+ "homeassistant_api": {
+ "description": "Questo componente aggiuntivo può accedere all'istanza di Home Assistant in esecuzione direttamente tramite l'API di Home Assistant. Questa modalità gestisce anche l'autenticazione per il componente aggiuntivo, che consente a un componente aggiuntivo di interagire con Home Assistant senza la necessità di token di autenticazione aggiuntivi.",
+ "title": "Accesso all'API di Home Assistant"
+ },
+ "host_network": {
+ "description": "I componenti aggiuntivi vengono in genere eseguiti nel proprio livello di rete isolato, impedendo loro di accedere alla rete del sistema operativo host. In alcuni casi, questo isolamento della rete può limitare i componenti aggiuntivi nella fornitura dei propri servizi e, pertanto, l'isolamento può essere revocato dall'autore del componente aggiuntivo, offrendo al componente aggiuntivo l'accesso completo alle funzionalità di rete del computer host. In questo modo il componente aggiuntivo offre più funzionalità di rete, ma riduce la sicurezza, pertanto la classificazione di sicurezza del componente aggiuntivo verrà abbassata quando questa opzione viene utilizzata dal componente aggiuntivo.",
+ "title": "Rete host"
+ },
+ "host_pid": {
+ "description": "In genere, i processi che il componente aggiuntivo esegue, sono isolati da tutti gli altri processi di sistema. L'autore del componente aggiuntivo ha richiesto al componente aggiuntivo di avere accesso ai processi di sistema in esecuzione nell'istanza del sistema host e di consentire al componente aggiuntivo di generare processi anche nel sistema host. Questa modalità offre al componente aggiuntivo l'accesso completo e il controllo all'intero sistema Home Assistant, il che aggiunge rischi per la sicurezza e potrebbe danneggiare il sistema in caso di uso improprio. Pertanto, questa funzionalità influisce negativamente sul punteggio di sicurezza del componente aggiuntivo.\n\nQuesto livello di accesso non viene concesso automaticamente e deve essere confermato dall'utente. Per fare ciò, devi disabilitare manualmente la modalità di protezione sul componente aggiuntivo. Disabilita la modalità di protezione solo se conosci, hai bisogno e consideri attendibile l'origine di questo componente aggiuntivo.",
+ "title": "Spazio dei nomi dei processi host"
+ },
+ "ingress": {
+ "description": "Questo componente aggiuntivo utilizza Ingress per incorporare la sua interfaccia in modo sicuro in Home Assistant.",
+ "title": "Ingress"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "auth",
+ "core": "Core",
+ "docker": "docker",
+ "hardware": "hardware",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "host",
+ "host_pid": "pid host",
+ "ingress": "ingress",
+ "rating": "valutazione",
+ "stage": "fase"
+ },
+ "rating": {
+ "description": "Home Assistant fornisce una classificazione di sicurezza a ciascuno dei componenti aggiuntivi, che indica i rischi connessi all'utilizzo di questo componente aggiuntivo. Maggiore è l'accesso necessario a un componente aggiuntivo sul sistema, minore è il punteggio, aumentando così i possibili rischi per la sicurezza.\n\nIl punteggio è su una scala da 1 a 6. Dove 1 è il punteggio più basso (considerato il più insicuro ed a rischio più alto) e un punteggio di 6 è il punteggio più alto (considerato il più sicuro e a rischio più basso).",
+ "title": "Classificazione di sicurezza del componente aggiuntivo"
+ },
+ "role": {
+ "admin": "admin",
+ "backup": "backup",
+ "default": "predefinito",
+ "homeassistant": "homeassistant",
+ "manager": "manager"
+ },
+ "stage": {
+ "description": "I componenti aggiuntivi possono avere una delle tre fasi seguenti:\n\n{icon_stable} **Stabile**: si tratta di componenti aggiuntivi pronti per l'uso in produzione.\n\n{icon_experimental} **Sperimentale**: questi possono contenere bug e potrebbero non essere completati.\n\n{icon_deprecated} **Deprecato**: questi componenti aggiuntivi non riceveranno più aggiornamenti.",
+ "title": "Fase del componente aggiuntivo"
+ },
+ "stages": {
+ "deprecated": "Deprecato",
+ "experimental": "Sperimentale"
+ }
+ },
+ "changelog": "Registro delle modifiche",
+ "cpu_usage": "Componente aggiuntivo - Utilizzo CPU",
+ "hostname": "Nome host",
+ "install": "installa",
+ "new_update_available": "{name} {version} è disponibile",
+ "not_available_arch": "Questo componente aggiuntivo non è compatibile con il processore del dispositivo o con il sistema operativo installato nel dispositivo.",
+ "not_available_version": "Stai eseguendo Home Assistant {core_version_installed}, per aggiornare a questa versione del componente aggiuntivo è necessaria almeno la versione {core_version_needed} di Home Assistant",
+ "open_web_ui": "Apri l'interfaccia web",
+ "option": {
+ "auto_update": {
+ "description": "Aggiorna automaticamente il componente aggiuntivo quando è disponibile una nuova versione",
+ "title": "Aggiornamento automatico"
+ },
+ "boot": {
+ "description": "Il componente aggiuntivo sarà eseguito durante l'avvio del sistema",
+ "title": "Esegui dall'avvio"
+ },
+ "ingress_panel": {
+ "description": "Aggiungi questo componente aggiuntivo alla barra laterale",
+ "title": "Mostra nella barra laterale"
+ },
+ "protected": {
+ "description": "Blocca l'accesso al sistema con privilegi elevati dal componente aggiuntivo",
+ "title": "Modalità di protezione"
+ },
+ "watchdog": {
+ "description": "Questo riavvierà automaticamente il componente aggiuntivo in caso di arresti anomali",
+ "title": "Watchdog"
+ }
+ },
+ "protection_mode": {
+ "content": "La modalità di protezione su questo componente aggiuntivo è disabilitata! Questo dà al componente aggiuntivo pieno accesso all'intero sistema, il che aggiunge rischi per la sicurezza e potrebbe danneggiare il tuo sistema se usato in modo scorretto. Disabilita la modalità di protezione solo se conosci, hai bisogno e consideri attendibile l'origine di questo componente aggiuntivo.",
+ "enable": "Abilita",
+ "title": "La modalità di protezione è disabilitata!"
+ },
+ "ram_usage": "Componente aggiuntivo - Utilizzo RAM",
+ "rebuild": "ricostruisci",
+ "restart": "riavvia",
+ "start": "avvia",
+ "stop": "arresta",
+ "uninstall": "disinstalla",
+ "visit_addon_page": "Visita la pagina di {name} per maggiori dettagli"
+ },
+ "documentation": {
+ "get_documentation": "Impossibile ottenere la documentazione del componente aggiuntivo, {error}"
+ },
+ "failed_to_reset": "Impossibile reimpostare la configurazione del componente aggiuntivo, {error}",
+ "failed_to_save": "Impossibile salvare la configurazione del componente aggiuntivo, {error}",
+ "logs": {
+ "get_logs": "Impossibile ottenere i registri del componente aggiuntivo, {error}"
+ },
+ "panel": {
+ "configuration": "Configurazione",
+ "documentation": "Documentazione",
+ "info": "Informazioni",
+ "log": "Registro"
+ },
+ "state": {
+ "installed": "Il componente aggiuntivo è installato",
+ "not_available": "Il componente aggiuntivo non è disponibile sul tuo sistema",
+ "not_installed": "Il componente aggiuntivo non è installato"
+ }
+ },
+ "backup": {
+ "addons": "Componenti aggiuntivi",
+ "confirm_password": "Conferma password di backup",
+ "could_not_create": "Impossibile creare il backup",
+ "create": "Crea",
+ "create_backup": "Crea backup",
+ "create_blocked_not_running": "Al momento non è possibile creare un backup perché il sistema è nello stato {state}.",
+ "created": "Creato",
+ "delete_backup_confirm": "Elimina",
+ "delete_backup_text": "Vuoi eliminare {number} {number, plural,\n one {backup}\n other {backup}\n}?",
+ "delete_backup_title": "Elimina backup",
+ "delete_selected": "Elimina i backup selezionati",
+ "enter_password": "Digita una password.",
+ "failed_to_delete": "Impossibile eliminare",
+ "folders": "Cartelle",
+ "full_backup": "Backup completo",
+ "name": "Nome di backup",
+ "no_backups": "Non hai ancora nessun backup",
+ "partial_backup": "Backup parziale",
+ "password": "Password di backup",
+ "password_protection": "Protezione con password",
+ "passwords_not_matching": "Le password non corrispondono",
+ "select_type": "Seleziona cosa ripristinare",
+ "selected": "{number} selezionato/i",
+ "size": "Dimensione",
+ "type": "Tipo di backup",
+ "upload_backup": "Carica backup"
+ },
+ "common": {
+ "cancel": "Annulla",
+ "close": "Chiudi",
+ "description": "Descrizione",
+ "error": {
+ "unknown": "Errore sconosciuto",
+ "update_failed": "Aggiornamento non riuscito"
+ },
+ "failed_to_restart_name": "Impossibile riavviare {name}",
+ "failed_to_update_name": "Impossibile aggiornare {name}",
+ "learn_more": "Ulteriori informazioni",
+ "menu": "Menù",
+ "new_version_available": "Nuova versione disponibile",
+ "newest_version": "Ultima versione",
+ "no": "No",
+ "refresh": "Aggiorna",
+ "release_notes": "Note sulla versione",
+ "reload": "Ricarica",
+ "reset_defaults": "Ripristina le impostazioni predefinite",
+ "reset_options": "Ripristina le opzioni",
+ "restart": "Riavvia",
+ "restart_name": "Riavvia {name}",
+ "review": "recensione",
+ "running_version": "È attualmente in esecuzione la versione {version}",
+ "save": "Salva",
+ "show": "mostra",
+ "show_more": "Ulteriori informazioni al riguardo",
+ "update": "Aggiorna",
+ "update_available": "{count, plural,\n one {aggiornamento}\n other {{count} aggiornamenti}\n} in sospeso",
+ "version": "Versione",
+ "yes": "Sì"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Vuoi reimpostare tutte le opzioni?",
+ "title": "Ripristina le opzioni"
+ },
+ "restart": {
+ "text": "Vuoi riavviare {name}?",
+ "title": "Riavvia {name}"
+ },
+ "update": {
+ "text": "Vuoi aggiornare {name} alla versione {version}?",
+ "title": "Aggiorna {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Nuova versione disponibile",
+ "addon_running": "Il componente aggiuntivo è in esecuzione",
+ "addon_stopped": "Il componente aggiuntivo viene arrestato",
+ "addons": "Componenti aggiuntivi installati",
+ "no_addons": "Non hai ancora installato alcun componente aggiuntivo. Vai al negozio di componenti aggiuntivi per iniziare!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Annulla",
+ "description": "Attualmente stai usando ''{current_path}'' come disco dati. Lo spostamento dei dischi dati riavvierà il tuo dispositivo e si stima che ci vorranno {time} minuti. L'installazione di Home Assistant non sarà accessibile durante questo periodo. Non scollegare l'alimentazione durante lo spostamento!",
+ "loading_devices": "Caricamento dei dispositivi",
+ "move": "Sposta",
+ "moving": "Spostamento del disco dati",
+ "moving_desc": "Riavvio e spostamento del disco dati. Attendi.",
+ "no_devices": "Nessun dispositivo collegato adatto trovato",
+ "select_device": "Seleziona un nuovo disco dati",
+ "title": "Sposta il disco dati"
+ },
+ "hardware": {
+ "attributes": "Attributi",
+ "device_path": "Percorso del dispositivo",
+ "id": "ID",
+ "search": "Cerca hardware",
+ "subsystem": "Sottosistema",
+ "title": "Hardware"
+ },
+ "network": {
+ "connected_to": "Connesso a {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Disabilitato",
+ "dns_servers": "Server DNS",
+ "failed_to_change": "Impossibile modificare le impostazioni di rete",
+ "gateway": "Indirizzo del gateway",
+ "ip_netmask": "Indirizzo IP/Maschera di rete",
+ "open": "Aperto",
+ "scan_ap": "Scansione dei punti di accesso",
+ "static": "Statico",
+ "title": "Impostazioni di rete",
+ "unsaved": "Hai modifiche non salvate, queste andranno perse se cambi scheda, vuoi continuare?",
+ "warning": "Se stai modificando gli indirizzi Wi-Fi, IP o gateway, potresti perdere la connessione!",
+ "wep": "WEP",
+ "wpa": "WPA-PSK"
+ },
+ "registries": {
+ "add_new_registry": "Aggiungi nuovo registro",
+ "add_registry": "Aggiungi registro",
+ "failed_to_add": "Impossibile aggiungere il registro",
+ "failed_to_remove": "Impossibile rimuovere il registro",
+ "no_registries": "Nessun registro configurato",
+ "password": "Password",
+ "registry": "Registro",
+ "remove": "Rimuovi",
+ "title_add": "Aggiungi nuovo registro container",
+ "title_manage": "Gestisci i registri dei container",
+ "username": "Nome utente"
+ },
+ "repositories": {
+ "add": "Aggiungi",
+ "remove": "Rimuovi",
+ "title": "Gestisci i repository dei componenti aggiuntivi",
+ "used": "Il repository è in uso per i componenti aggiuntivi installati e non può essere rimosso."
+ },
+ "restart_addon": {
+ "confirm_text": "Riavvia il componente aggiuntivo",
+ "text": "Vuoi riavviare il componente aggiuntivo con le modifiche?"
+ },
+ "update": {
+ "backup": "Backup",
+ "create_backup": "Crea un backup di {name} prima dell'aggiornamento",
+ "creating_backup": "Creazione del backup di {name}",
+ "updating": "Aggiornamento di {name} alla versione {version}"
+ }
+ },
+ "my": {
+ "error": "Si è verificato un errore sconosciuto",
+ "error_addon_no_ingress": "Il componente aggiuntivo richiesto non supporta l'ingresso",
+ "error_addon_not_found": "Componente aggiuntivo non trovato",
+ "error_addon_not_installed": "Il componente aggiuntivo richiesto non è installato. Installalo prima di proseguire",
+ "error_addon_not_started": "Il componente aggiuntivo richiesto non è in esecuzione. Avvialo prima",
+ "faq_link": "Domande frequenti di Home Assistant",
+ "not_supported": "Questo reindirizzamento non è supportato dall'istanza di Home Assistant. Controlla il {link} per i reindirizzamenti supportati e la versione in cui sono stati introdotti."
+ },
+ "panel": {
+ "addons": "Componenti aggiuntivi",
+ "backups": "Backup",
+ "dashboard": "Pannello di controllo",
+ "store": "Raccolta di componenti aggiuntivi",
+ "system": "Sistema"
+ },
+ "store": {
+ "check_updates": "Controlla gli aggiornamenti",
+ "missing_addons": "Componenti aggiuntivi mancanti? Abilita la modalità avanzata nella pagina del tuo profilo utente",
+ "no_results_found": "Nessun risultato trovato in {repository}.",
+ "registries": "Registri",
+ "repositories": "Repository"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Core - Utilizzo CPU",
+ "ram_usage": "Core - Utilizzo RAM"
+ },
+ "host": {
+ "change": "Cambia",
+ "change_hostname": "Cambia nome host",
+ "confirm_reboot": "Vuoi riavviare l'host?",
+ "confirm_shutdown": "Sei sicuro di voler spegnere l'host?",
+ "deployment": "Distribuzione",
+ "docker_version": "Versione Docker",
+ "emmc_lifetime_used": "Durata eMMC usata",
+ "failed_to_get_hardware_list": "Impossibile ottenere l'elenco hardware",
+ "failed_to_import_from_usb": "Importazione da USB non riuscita",
+ "failed_to_move": "Impossibile spostare il disco dati",
+ "failed_to_reboot": "Impossibile riavviare l'host",
+ "failed_to_set_hostname": "Impostazione del nome host non riuscita",
+ "failed_to_shutdown": "Impossibile arrestare l'host",
+ "hardware": "Hardware",
+ "hostname": "Nome host",
+ "import_from_usb": "Importa da USB",
+ "ip_address": "Indirizzo IP",
+ "move_datadisk": "Sposta il disco dati",
+ "new_hostname": "Inserisci un nuovo nome host:",
+ "operating_system": "Sistema operativo",
+ "reboot_host": "Riavvia host",
+ "shutdown_host": "Arresta host",
+ "used_space": "Spazio utilizzato"
+ },
+ "log": {
+ "get_logs": "Impossibile ottenere i registri di {provider}, {error}",
+ "log_provider": "Fornitore del registro"
+ },
+ "supervisor": {
+ "beta_backup": "Assicurati di disporre di backup dei tuoi dati prima di attivare questa funzione.",
+ "beta_join_confirm": "Vuoi entrare a far parte del canale beta?",
+ "beta_release_items": "Questo include le versioni beta per:",
+ "beta_warning": "Le versioni beta sono per \"tester\" e \"early adopter\" e possono contenere modifiche al codice instabili",
+ "channel": "Canale",
+ "cpu_usage": "Utilizzo CPU Supervisor",
+ "failed_to_reload": "Impossibile ricaricare il Supervisor",
+ "failed_to_set_option": "Impossibile impostare l'opzione Supervisor",
+ "failed_to_update": "Impossibile aggiornare il Supervisor",
+ "join_beta_action": "Partecipa al canale beta",
+ "join_beta_description": "Ricevi gli aggiornamenti beta per Home Assistant (RC), Supervisor e host",
+ "leave_beta_action": "Lascia il canale beta",
+ "leave_beta_description": "Ricevi aggiornamenti stabili per Home Assistant, Supervisor e host",
+ "ram_usage": "Utilizzo RAM Supervisor",
+ "reload_supervisor": "Ricarica Supervisor",
+ "search": "Ricerca",
+ "share_diagnostics": "Condividi diagnostica",
+ "share_diagnostics_description": "Condividi i rapporti sugli arresti anomali e le informazioni diagnostiche.",
+ "share_diagonstics_description": "Vorresti condividere automaticamente i rapporti sugli arresti anomali e le informazioni diagnostiche quando il Supervisor rileva errori imprevisti? {line_break} Questo ci consentirà di risolvere i problemi, le informazioni sono accessibili solo al team di Home Assistant Core e non saranno condivise con altri. {line_break} I dati non includono alcuna informazione privata/sensibile e puoi disabilitarla nelle impostazioni in qualsiasi momento lo desideri.",
+ "share_diagonstics_title": "Aiutaci a migliorare Home Assistant",
+ "unhealthy_description": "L'esecuzione di un'installazione non funzionante causerà problemi. Di seguito è riportato un elenco dei problemi riscontrati con l'installazione, fai clic sui collegamenti per scoprire come risolvere i problemi.",
+ "unhealthy_reason": {
+ "docker": "L'ambiente Docker non funziona correttamente",
+ "privileged": "Il Supervisor non è privilegiato",
+ "setup": "Configurazione del Supervisor non riuscita",
+ "supervisor": "Il Supervisor non è stato in grado di aggiornare",
+ "untrusted": "Rilevato contenuto non attendibile"
+ },
+ "unhealthy_title": "L'installazione non è integra",
+ "unsupported_description": "Di seguito è riportato un elenco dei problemi riscontrati con l'installazione, fai clic sui collegamenti per scoprire come risolvere i problemi.",
+ "unsupported_reason": {
+ "apparmor": "AppArmor non è abilitato sull'host",
+ "container": "Container noti per causare problemi",
+ "content-trust": "La convalida dell'attendibilità del contenuto è disabilitata",
+ "content_trust": "La convalida dell'attendibilità del contenuto è disabilitata",
+ "dbus": "DBUS",
+ "docker_configuration": "Configurazione Docker",
+ "docker_version": "Versione Docker",
+ "job_conditions": "Condizioni di lavoro ignorate",
+ "lxc": "LXC",
+ "network_manager": "Gestione della rete",
+ "os": "Sistema operativo",
+ "os_agent": "Agente OS",
+ "privileged": "Il Supervisor non è privilegiato",
+ "software": "Rilevato software non supportato",
+ "source_mods": "Modifiche al codice sorgente",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Stai eseguendo un'installazione non supportata",
+ "update_supervisor": "Aggiorna il Supervisor",
+ "warning": "ATTENZIONE"
+ }
+ },
+ "update_available": {
+ "core_note": "Il Supervisor tornerà alla versione {version} se l'istanza non viene visualizzata dopo l'aggiornamento.",
+ "create_backup": "Crea un backup prima dell'aggiornamento",
+ "creating_backup": "Creazione del backup di {name}",
+ "description": "La versione installata è la {version}. Fai clic su Aggiorna per eseguire l'aggiornamento alla versione {newest_version}",
+ "no_update": "Nessun aggiornamento disponibile per {name}",
+ "open_release_notes": "Apri note di rilascio",
+ "update_name": "Aggiorna {name}",
+ "updating": "Aggiornamento di {name} alla versione {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Vuoi rimanere connesso?",
+ "confirm": "Sì",
+ "decline": "No"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Attiva fuori casa",
+ "arm_custom_bypass": "Bypass personalizzato",
+ "arm_home": "Attiva in casa",
+ "arm_night": "Attiva notte",
+ "arm_vacation": "Attiva in vacanza",
+ "clear_code": "Canc",
+ "code": "Codice",
+ "disarm": "Disattiva"
+ },
+ "area": {
+ "area_not_found": "Area non trovata."
+ },
+ "automation": {
+ "last_triggered": "Ultima attivazione",
+ "trigger": "Esegui azioni"
+ },
+ "button": {
+ "press": "Premi"
+ },
+ "camera": {
+ "not_available": "Immagine non disponibile"
+ },
+ "climate": {
+ "aux_heat": "Riscaldamento ausiliario",
+ "away_mode": "Modalità assente",
+ "cooling": "{name} raffreddamento",
+ "current_temperature": "{name} temperatura attuale",
+ "currently": "Attualmente",
+ "fan_mode": "Ventilazione",
+ "heating": "{name} riscaldamento",
+ "high": "alto",
+ "low": "basso",
+ "on_off": "Acceso / spento",
+ "operation": "Operazione",
+ "preset_mode": "Pre-impostazione",
+ "swing_mode": "Modo oscillazione",
+ "target_humidity": "Umidità desiderata",
+ "target_temperature": "Temperatura desiderata",
+ "target_temperature_entity": "{name} temperatura desiderata",
+ "target_temperature_mode": "{name} temperatura desiderata {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "diminuisci",
+ "increment": "aumenta",
+ "reset": "ripristina"
+ }
+ },
+ "cover": {
+ "position": "Apertura",
+ "tilt_position": "Inclinazione"
+ },
+ "fan": {
+ "direction": "Direzione",
+ "forward": "Avanti",
+ "oscillate": "Oscillazione",
+ "preset_mode": "Modalità predefinita",
+ "reverse": "Indietro",
+ "speed": "Velocità"
+ },
+ "humidifier": {
+ "humidity": "Umidità desiderata",
+ "mode": "Modalità",
+ "on_entity": "{name} acceso",
+ "target_humidity_entity": "{name} umidità desiderata"
+ },
+ "light": {
+ "brightness": "Luminosità",
+ "cold_white_value": "Luminosità bianca fredda",
+ "color_brightness": "Luminosità del colore",
+ "color_temperature": "Temperatura colore",
+ "effect": "Effetto",
+ "warm_white_value": "Luminosità bianca calda",
+ "white_value": "Luminosità del bianco"
+ },
+ "lock": {
+ "code": "Codice",
+ "lock": "Blocca",
+ "unlock": "Sblocca"
+ },
+ "media_player": {
+ "browse_media": "Sfoglia i file multimediali",
+ "media_next_track": "Traccia successiva",
+ "media_pause": "Pausa",
+ "media_play": "Riproduci",
+ "media_play_pause": "Riproduci/pausa",
+ "media_previous_track": "Traccia precedente",
+ "media_stop": "Ferma",
+ "media_volume_down": "Abbassa il volume",
+ "media_volume_mute": "Volume muto",
+ "media_volume_unmute": "Attivazione volume",
+ "media_volume_up": "Alza il volume",
+ "nothing_playing": "Niente in riproduzione",
+ "sound_mode": "Modalità audio",
+ "source": "Fonte",
+ "text_to_speak": "Testo da leggere",
+ "turn_off": "Spegni",
+ "turn_on": "Accendi"
+ },
+ "persistent_notification": {
+ "dismiss": "Rimuovi"
+ },
+ "scene": {
+ "activate": "Attiva"
+ },
+ "script": {
+ "cancel": "Annulla",
+ "cancel_multiple": "Annulla {number}",
+ "run": "Esegui"
+ },
+ "service": {
+ "run": "Esegui"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "annulla",
+ "finish": "termina",
+ "pause": "pausa",
+ "start": "avvia"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Riprendi pulizia",
+ "return_to_base": "Ritorna alla base",
+ "start_cleaning": "Inizia pulizia",
+ "turn_off": "Spegni",
+ "turn_on": "Accendi"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Modalità fuori casa",
+ "currently": "Attualmente",
+ "on_off": "Acceso / spento",
+ "operation": "Operazione",
+ "target_temperature": "Temperatura desiderata"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Pressione atmosferica",
+ "humidity": "Umidità",
+ "precipitation": "Precipitazioni",
+ "temperature": "Temperatura",
+ "visibility": "Visibilità",
+ "wind_speed": "Velocità del vento"
+ },
+ "cardinal_direction": {
+ "e": "E",
+ "ene": "ENE",
+ "ese": "ESE",
+ "n": "N",
+ "ne": "NE",
+ "nne": "NNE",
+ "nnw": "NNO",
+ "nw": "NO",
+ "s": "S",
+ "se": "SE",
+ "sse": "SSE",
+ "ssw": "SSO",
+ "sw": "SO",
+ "w": "O",
+ "wnw": "ONO",
+ "wsw": "OSO"
+ },
+ "day": "Giorno",
+ "forecast": "Previsioni",
+ "high": "Alto",
+ "low": "Basso",
+ "night": "Notte"
+ }
+ },
+ "common": {
+ "and": "e",
+ "back": "Indietro",
+ "cancel": "Annulla",
+ "clear": "Cancella",
+ "close": "Chiudi",
+ "continue": "Continua",
+ "copied": "Copiato",
+ "copied_clipboard": "Copiato negli appunti",
+ "delete": "Elimina",
+ "disable": "Disabilita",
+ "enable": "Abilita",
+ "error_required": "Necessario",
+ "help": "Aiuto",
+ "leave": "Esci",
+ "loading": "Caricamento",
+ "menu": "Menù",
+ "move": "Sposta",
+ "next": "Avanti",
+ "no": "No",
+ "not_now": "Non ora",
+ "overflow_menu": "Menù di Overflow",
+ "previous": "Indietro",
+ "refresh": "Aggiorna",
+ "remove": "Rimuovi",
+ "rename": "Rinomina",
+ "save": "Salva",
+ "skip": "Salta",
+ "stay": "Rimani",
+ "submit": "Invia",
+ "successfully_deleted": "Eliminato con successo",
+ "successfully_saved": "Salvataggio riuscito",
+ "undo": "Annulla",
+ "yes": "Sì"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Componente aggiuntivo",
+ "error": {
+ "fetch_addons": {
+ "description": "Si è verificato un errore durante il caricamento dei componenti aggiuntivi.",
+ "title": "Errore durante il caricamento dei componenti aggiuntivi"
+ },
+ "no_supervisor": {
+ "description": "I componenti aggiuntivi non sono supportati.",
+ "title": "Nessun Supervisor"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Aggiungi",
+ "failed_create_area": "Impossibile creare l'area.",
+ "name": "Nome",
+ "text": "Inserisci il nome della nuova area.",
+ "title": "Aggiungi nuova area"
+ },
+ "add_new": "Aggiungi nuova area…",
+ "area": "Area",
+ "clear": "Cancella",
+ "no_areas": "Non hai aree",
+ "no_match": "Non sono state trovate aree corrispondenti",
+ "show_areas": "Mostra le aree"
+ },
+ "attributes": {
+ "expansion_header": "Attributi"
+ },
+ "blueprint-picker": {
+ "add_user": "Aggiungi utente",
+ "remove_user": "Rimuovi utente",
+ "select_blueprint": "Seleziona un progetto"
+ },
+ "calendar": {
+ "my_calendars": "Calendari personali",
+ "today": "Oggi"
+ },
+ "data-table": {
+ "clear": "Cancella",
+ "filtering_by": "Filtraggio per",
+ "hidden": "{number} nascosto",
+ "no-data": "Nessun dato",
+ "search": "Ricerca"
+ },
+ "date-range-picker": {
+ "end_date": "Data di fine",
+ "ranges": {
+ "last_week": "Settimana scorsa",
+ "this_week": "Questa settimana",
+ "today": "Oggi",
+ "yesterday": "Ieri"
+ },
+ "select": "Seleziona",
+ "start_date": "Data di inizio"
+ },
+ "device-picker": {
+ "clear": "Cancella",
+ "device": "Dispositivo",
+ "no_area": "Nessuna area",
+ "no_devices": "Non hai alcun dispositivo",
+ "no_match": "Non sono stati trovati dispositivi corrispondenti",
+ "show_devices": "Mostra dispositivi",
+ "toggle": "Azionare"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Attributo",
+ "show_attributes": "Mostra attributi"
+ },
+ "entity-picker": {
+ "clear": "Cancella",
+ "edit": "Modifica",
+ "entity": "Entità",
+ "no_match": "Non sono state trovate entità corrispondenti",
+ "show_entities": "Mostra entità"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "Integrazione della cronologia disabilitata",
+ "loading_history": "Caricamento storico…",
+ "no_history_found": "Nessuno storico trovato."
+ },
+ "logbook": {
+ "by": "da",
+ "by_service": "dal servizio",
+ "entries_not_found": "Non sono stati trovati eventi nel registro.",
+ "messages": {
+ "became_unavailable": "è diventato non disponibile",
+ "changed_to_state": "cambiato in {state}",
+ "cleared_device_class": "sgombro (nessun {device_class} rilevato)",
+ "cleared_tampering": "manomissione risolta",
+ "detected_device_class": "rilevato {device_class}",
+ "detected_tampering": "rilevata manomissione",
+ "is_closing": "in chiusura",
+ "is_opening": "in apertura",
+ "rose": "sorto",
+ "set": "tramontato",
+ "turned_off": "spento",
+ "turned_on": "acceso",
+ "was_at_home": "è stato rilevato a casa",
+ "was_at_state": "è stato rilevato in {state}",
+ "was_away": "è stato rilevato fuori casa",
+ "was_closed": "è stato chiuso",
+ "was_connected": "era connesso",
+ "was_disconnected": "era disconnesso",
+ "was_locked": "è stato bloccato",
+ "was_low": "era basso",
+ "was_normal": "era normale",
+ "was_opened": "era aperto",
+ "was_plugged_in": "è stato collegato",
+ "was_safe": "era sicuro",
+ "was_unlocked": "è stato sbloccato",
+ "was_unplugged": "è stato scollegato",
+ "was_unsafe": "non era sicuro"
+ },
+ "retrieval_error": "Impossibile caricare il registro",
+ "show_trace": "Mostra traccia"
+ },
+ "media-browser": {
+ "audio_not_supported": "Il tuo browser non supporta l'elemento audio.",
+ "choose_player": "Scegli lettore",
+ "class": {
+ "album": "Album",
+ "app": "App",
+ "artist": "Artista",
+ "channel": "Canale",
+ "composer": "Compositore",
+ "contributing_artist": "Artista collaboratore",
+ "directory": "Raccolta",
+ "episode": "Episodio",
+ "game": "Gioco",
+ "genre": "Genere",
+ "image": "Immagine",
+ "movie": "Film",
+ "music": "Musica",
+ "playlist": "Elenco di riproduzione",
+ "podcast": "Podcast",
+ "season": "Stagione",
+ "track": "Traccia dispositivo",
+ "tv_show": "Programma televisivo",
+ "url": "URL",
+ "video": "Video"
+ },
+ "documentation": "documentazione",
+ "learn_adding_local_media": "Ulteriori informazioni sull'aggiunta di file multimediali nella {documentation}.",
+ "local_media_files": "Posiziona i file video, audio e immagine nella cartella multimediale per poterli sfogliare e riprodurli nel browser o sui lettori multimediali supportati.",
+ "media-player-browser": "Lettore multimediale",
+ "media_browsing_error": "Errore di navigazione multimediale",
+ "media_not_supported": "Il Browser Media Player non supporta questo tipo di file multimediali",
+ "media_player": "Lettore multimediale",
+ "no_items": "Nessun elemento",
+ "no_local_media_found": "Nessun media locale trovato",
+ "no_media_folder": "Sembra che ancora non sia stata creata una cartella multimediale.",
+ "pick": "Scegli",
+ "pick-media": "Seleziona file multimediali",
+ "play": "Riproduci",
+ "play-media": "Riproduci file multimediali",
+ "setup_local_help": "Controlla la {documentation} su come configurare i media locali.",
+ "video_not_supported": "Il tuo browser non supporta l'elemento video.",
+ "web-browser": "Browser web"
+ },
+ "picture-upload": {
+ "label": "Immagine",
+ "unsupported_format": "Formato non supportato, scegli un'immagine JPEG, PNG o GIF."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Inserisci il valore del codice QR",
+ "manual_input": "Puoi scansionare il codice QR con un altro scanner QR e incollare il codice nell'input sottostante",
+ "not_supported": "Il tuo browser non supporta la scansione QR.",
+ "only_https_supported": "Puoi utilizzare la fotocamera solo per scansionare un codice QR quando utilizzi HTTPS.",
+ "select_camera": "Seleziona la videocamera"
+ },
+ "related-filter-menu": {
+ "filter": "Filtro",
+ "filter_by_area": "Filtra per area",
+ "filter_by_device": "Filtra per dispositivo",
+ "filter_by_entity": "Filtra per entità",
+ "filtered_by_area": "area: {area_name}",
+ "filtered_by_device": "dispositivo: {device_name}",
+ "filtered_by_entity": "entità: {entity_name}"
+ },
+ "related-items": {
+ "area": "Area",
+ "automation": "Parte delle seguenti automazioni",
+ "device": "Dispositivo",
+ "entity": "Entità correlate",
+ "group": "Parte dei seguenti gruppi",
+ "integration": "Integrazione",
+ "no_related_found": "Non sono stati trovati oggetti correlati.",
+ "scene": "Parte delle seguenti scene",
+ "script": "Parte dei seguenti script"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\none {giorno}\nother {giorni}\n}",
+ "hour": "{count} {count, plural,\none {ora}\nother {ore}\n}",
+ "minute": "{count} {count, plural,\none {minuto}\nother {minuti}\n}",
+ "second": "{count} {count, plural,\none {secondo}\nother {secondi}\n}",
+ "week": "{count} {count, plural,\none {settimana}\nother {settimane}\n}"
+ },
+ "future_duration": {
+ "day": "tra {count} {count, plural,\n one {giorno}\n other {giorni}\n}",
+ "hour": "tra {count} {count, plural,\n one {ora}\n other {ore}\n}",
+ "minute": "tra {count} {count, plural,\n one {minuto}\n other {minuti}\n}",
+ "second": "tra {count} {count, plural,\n one {secondo}\n other {secondi}\n}",
+ "week": "tra {count} {count, plural,\n one {settimana}\n other {settimane}\n}"
+ },
+ "just_now": "Proprio ora",
+ "never": "Mai",
+ "past_duration": {
+ "day": "{count} {count, plural,\n one {giorno}\n other {giorni}\n} fa",
+ "hour": "{count} {count, plural,\n one {ora}\n other {ore}\n} fa",
+ "minute": "{count} {count, plural,\n one {minuto}\n other {minuti}\n} fa",
+ "second": "{count} {count, plural,\n one {secondo}\n other {secondi}\n} fa",
+ "week": "{count} {count, plural,\n one {settimana}\n other {settimane}\n} fa"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Documentazione dell'integrazione",
+ "required": "Questo campo è obbligatorio",
+ "service_data": "Dati del servizio",
+ "target": "Destinazioni",
+ "target_description": "Cosa deve essere utilizzato da questo servizio come aree, dispositivi o entità di destinazione."
+ },
+ "service-picker": {
+ "service": "Servizio"
+ },
+ "statistic-picker": {
+ "learn_more": "Ulteriori informazioni sulle statistiche",
+ "missing_entity": "Perché la mia entità non è elencata?",
+ "no_match": "Nessuna statistica corrispondente trovata",
+ "no_statistics": "Non hai nessuna statistica",
+ "statistic": "Statistica"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Caricamento delle statistiche…",
+ "no_statistics_found": "Nessuna statistica trovata.",
+ "statistic_types": {
+ "max": "max",
+ "mean": "media",
+ "min": "min",
+ "sum": "somma"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Scegli area",
+ "add_device_id": "Scegli dispositivo",
+ "add_entity_id": "Scegli entità",
+ "expand": "Espandi",
+ "expand_area_id": "Dividi quest'area in dispositivi ed entità separati.",
+ "expand_device_id": "Dividi questo dispositivo in entità separate.",
+ "remove": "Rimuovi",
+ "remove_area_id": "Rimuovi area",
+ "remove_device_id": "Rimuovi dispositivo",
+ "remove_entity_id": "Rimuovi entità"
+ },
+ "user-picker": {
+ "add_user": "Aggiungi utente",
+ "no_user": "Nessun utente",
+ "remove_user": "Rimuovi utente"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Se disabilitato, le entità appena rilevate per {integration} non saranno automaticamente aggiunte a Home Assistant.",
+ "enable_new_entities_label": "Abilita nuove entità aggiunte.",
+ "enable_polling_description": "Se disabilitato, Home Assistant non richiederà più in automatico aggiornamenti alle entità dell'integrazione {integration}.",
+ "enable_polling_label": "Abilita il polling per gli aggiornamenti.",
+ "restart_home_assistant": "È necessario riavviare Home Assistant affinché le modifiche abbiano effetto.",
+ "title": "Opzioni di sistema per {integration}",
+ "update": "Aggiorna"
+ },
+ "domain_toggler": {
+ "reset_entities": "Reimpostare le Entità",
+ "title": "Attiva/disattiva domini"
+ },
+ "entity_registry": {
+ "control": "Controllo",
+ "customize_link": "personalizzazioni delle entità",
+ "dismiss": "Annullare",
+ "editor": {
+ "advanced": "Impostazioni avanzate",
+ "area": "Imposta solo l'area dell'entità",
+ "area_note": "Per impostazione predefinita, le entità di un dispositivo si trovano nella stessa area del dispositivo. Se si modifica l'area di questa entità, essa non seguirà più l'area del dispositivo.",
+ "change_device_area": "Cambia l'area del dispositivo",
+ "confirm_delete": "Sei sicuro di voler eliminare questa entità?",
+ "delete": "Elimina",
+ "device_class": "Mostra come",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Porta",
+ "garage_door": "Porta del garage",
+ "opening": "Altro",
+ "window": "Finestra"
+ },
+ "cover": {
+ "door": "Porta",
+ "garage": "Porta del garage",
+ "window": "Finestra"
+ }
+ },
+ "device_disabled": "Il dispositivo di questa entità è disabilitato.",
+ "enabled_cause": "Disabilitato da {cause}.",
+ "enabled_delay_confirm": "Le entità abilitate saranno aggiunte a Home Assistant in {delay} secondi",
+ "enabled_description": "Le entità disabilitate non saranno aggiunte a Home Assistant",
+ "enabled_label": "Abilita entità",
+ "enabled_restart_confirm": "Riavvia Home Assistant per completare l'abilitazione delle entità",
+ "entity_id": "ID entità",
+ "follow_device_area": "Segui l'area del dispositivo",
+ "icon": "Icona",
+ "icon_error": "Le icone dovrebbero essere nel formato 'prefisso:nome_icona', ad esempio 'mdi:home'.",
+ "name": "Nome",
+ "note": "Nota: questo potrebbe non funzionare ancora con tutte le integrazioni.",
+ "open_device_settings": "Apri le impostazioni del dispositivo",
+ "unavailable": "Questa entità non è disponibile.",
+ "update": "Aggiorna"
+ },
+ "faq": "documentazione",
+ "info_customize": "Puoi sovrascrivere alcuni attributi nella sezione {customize_link}.",
+ "no_unique_id": "Questa entità (\"{entity_id}\") non ha un ID univoco, pertanto le sue impostazioni non possono essere gestite dall'interfaccia utente. Vedi {faq_link} per maggiori dettagli.",
+ "related": "Correlato",
+ "settings": "Impostazioni"
+ },
+ "generic": {
+ "cancel": "Annulla",
+ "close": "Chiudi",
+ "default_confirmation_title": "Sei sicuro?",
+ "ok": "OK"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Valore iniziale",
+ "maximum": "Valore massimo",
+ "minimum": "Valore minimo",
+ "restore": "Ripristina l'ultimo valore noto all'avvio di Home Assistant",
+ "step": "Dimensione del passo"
+ },
+ "generic": {
+ "icon": "Icona",
+ "name": "Nome"
+ },
+ "input_datetime": {
+ "date": "Data",
+ "datetime": "Data e ora",
+ "mode": "Cosa vuoi inserire",
+ "time": "Ora"
+ },
+ "input_number": {
+ "box": "Campo di immissione",
+ "max": "Valore massimo",
+ "min": "Valore minimo",
+ "mode": "Modalità di visualizzazione",
+ "slider": "Cursore",
+ "step": "Dimensione del passo",
+ "unit_of_measurement": "Unità di misura"
+ },
+ "input_select": {
+ "add": "Aggiungi",
+ "add_option": "Aggiungi opzione",
+ "no_options": "Non ci sono ancora opzioni.",
+ "options": "Opzioni"
+ },
+ "input_text": {
+ "max": "Lunghezza massima",
+ "min": "Lunghezza minima",
+ "mode": "Modalità di visualizzazione",
+ "password": "Password",
+ "pattern": "Schema espressione regolare per la validazione lato cliente",
+ "text": "Testo"
+ },
+ "platform_not_loaded": "L'integrazione {platform} non è stata caricata. Si prega di aggiungerla alla propria configurazione, aggiungendo 'default_config:' o ''{platform}:''.",
+ "required_error_msg": "Questo campo è obbligatorio",
+ "timer": {
+ "duration": "Durata"
+ },
+ "yaml_not_editable": "Le impostazioni di questa entità non possono essere modificate dall'interfaccia utente. Solo le entità impostate dall'interfaccia utente sono configurabili dall'interfaccia utente."
+ },
+ "image_cropper": {
+ "crop": "Ritaglia"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Chiudi la serranda",
+ "close_tile_cover": "Chiudi l'inclinazione della serranda",
+ "close_tilt_cover": "Chiudi l'inclinazione della serranda",
+ "open_cover": "Apri la serranda",
+ "open_tilt_cover": "Apri l'inclinazione della serranda",
+ "stop_cover": "Ferma il movimento della serranda"
+ },
+ "details": "Dettagli",
+ "dismiss": "Chiudi finestra di dialogo",
+ "edit": "Modifica entità",
+ "history": "Storico",
+ "last_changed": "Ultima modifica",
+ "last_updated": "Ultimo aggiornamento",
+ "logbook": "Registro",
+ "person": {
+ "create_zone": "Crea zona dalla posizione attuale"
+ },
+ "remote": {
+ "activity": "Attività attuale"
+ },
+ "restored": {
+ "confirm_remove_text": "Sei sicuro di voler rimuovere questa entità?",
+ "confirm_remove_title": "Vuoi rimuovere l'entità?",
+ "not_provided": "Questa entità non è al momento disponibile ed è orfana di un'integrazione o di un dispositivo rimosso, modificato o disfunzionale.",
+ "remove_action": "Rimuovi l'entità",
+ "remove_intro": "Se l'entità non è più in uso, è possibile ripulirla rimuovendola."
+ },
+ "script": {
+ "last_action": "Ultima azione",
+ "last_triggered": "Ultima attivazione"
+ },
+ "settings": "Impostazioni dell'entità",
+ "show_more": "Mostra di più",
+ "sun": {
+ "elevation": "Elevazione",
+ "rising": "Alba",
+ "setting": "Tramonto"
+ },
+ "updater": {
+ "title": "Istruzioni per l'aggiornamento"
+ },
+ "vacuum": {
+ "clean_spot": "Posto pulito",
+ "commands": "Comandi dell'aspirapolvere:",
+ "fan_speed": "Velocità della ventola",
+ "locate": "Individua",
+ "pause": "Pausa",
+ "return_home": "Ritorna alla base",
+ "start": "Avvia",
+ "start_pause": "Avvio/Pausa",
+ "status": "Stato",
+ "stop": "Ferma"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Tentativo di interpretare i messaggi MQTT come JSON",
+ "entities": "Entità",
+ "no_entities": "Nessuna entità",
+ "no_triggers": "Nessuna attivazione",
+ "payload_display": "Visualizzazione del payload",
+ "recent_messages": "{n} messaggi ricevuti più di recente",
+ "show_as_yaml": "Mostra come YAML",
+ "title": "Informazioni di debug per {device}",
+ "triggers": "Attivazioni"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Opzioni"
+ },
+ "loading": {
+ "loading_flow": "Attendi mentre le opzioni per {integration} vengono inizializzate",
+ "loading_step": "Caricamento del passaggio successivo per {integration}"
+ },
+ "success": {
+ "description": "Opzioni salvate correttamente."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Aree",
+ "automation": "Automazioni",
+ "blueprint": "Progetti",
+ "core": "Generale",
+ "customize": "Personalizzazioni",
+ "devices": "Dispositivi",
+ "energy": "Configurazione energetica",
+ "entities": "Entità",
+ "helpers": "Aiutanti",
+ "info": "Informazioni",
+ "integrations": "Integrazioni",
+ "logs": "Registri",
+ "lovelace": "Plance di Lovelace",
+ "person": "Persone",
+ "scene": "Scene",
+ "script": "Script",
+ "server_control": "Controlli del server",
+ "tag": "Etichette",
+ "users": "Utenti",
+ "zone": "Zone"
+ },
+ "reload": {
+ "automation": "Automazioni",
+ "command_line": "Entità di riga di comando",
+ "core": "Posizione e personalizzazioni",
+ "filesize": "Entità di dimensione del file",
+ "filter": "Entità filtro",
+ "generic": "Entità delle telecamere IP generiche",
+ "generic_thermostat": "Entità dei termostati generici",
+ "group": "Gruppi, entità di gruppo e servizi di notifica",
+ "history_stats": "Entità delle statistiche storiche",
+ "homekit": "HomeKit",
+ "input_boolean": "Input booleani",
+ "input_datetime": "Input data e/o orari",
+ "input_number": "Input numerici",
+ "input_select": "Input di selezione",
+ "input_text": "Input testuali",
+ "min_max": "Entità min/max",
+ "mqtt": "Entità MQTT configurate manualmente",
+ "person": "Persone",
+ "ping": "Entità del sensore binario Ping",
+ "reload": "{domain}",
+ "rest": "Entità REST e servizi di notifica REST",
+ "rpi_gpio": "Entità GPIO di Raspberry Pi",
+ "scene": "Scene",
+ "script": "Script",
+ "smtp": "Servizi di notifica SMTP",
+ "statistics": "Entità statistiche",
+ "telegram": "Servizi di notifica di Telegram",
+ "template": "Entità modello",
+ "themes": "Temi",
+ "trend": "Entità di tendenza",
+ "universal": "Entità del lettore multimediale universale",
+ "zone": "Zone"
+ },
+ "server_control": {
+ "perform_action": "{action} server",
+ "restart": "Riavvia",
+ "stop": "Ferma"
+ },
+ "types": {
+ "navigation": "Vai a",
+ "reload": "Ricarica",
+ "server_control": "Server"
+ }
+ },
+ "filter_placeholder": "Filtro entità",
+ "key_c_hint": "Premi 'c' su qualsiasi pagina per aprire questa barra di ricerca",
+ "title": "Ricerca rapida"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant non ha sentito nulla",
+ "error": "Spiacenti, si è verificato un errore",
+ "found": "Ho trovato quanto segue per te:",
+ "how_can_i_help": "Come posso essere d'aiuto?",
+ "label": "Digita una domanda e premi 'Invio'.",
+ "label_voice": "Digitare e premere 'Invio' o toccare il microfono per parlare."
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Aggiungi dispositivi tramite questo dispositivo",
+ "clusters": "Gestisci i cluster",
+ "device_children": "Visualizza dispositivo figlio",
+ "reconfigure": "Riconfigura dispositivo",
+ "remove": "Rimuovi dispositivo",
+ "view_in_visualization": "Visualizza in visualizzazione",
+ "zigbee_information": "Firma del dispositivo Zigbee"
+ },
+ "confirmations": {
+ "remove": "Sei sicuro di voler rimuovere il dispositivo?"
+ },
+ "device_children": "Dispositivo figlio Zigbee",
+ "device_signature": "Firma del dispositivo Zigbee",
+ "last_seen": "Ultima visualizzazione",
+ "manuf": "da {manufacturer}",
+ "no_area": "Nessuna area",
+ "power_source": "Sorgente di alimentazione",
+ "quirk": "Quirk",
+ "services": {
+ "reconfigure": "Riconfigura il dispositivo ZHA (dispositivo di cura). Utilizza questa opzione se riscontri problemi con il dispositivo. Se il dispositivo in questione è un dispositivo alimentato a batteria, assicurati che sia attivo e che accetti i comandi quando utilizzi questo servizio.",
+ "remove": "Rimuovi un dispositivo dalla rete Zigbee.",
+ "updateDeviceName": "Imposta un nome personalizzato per questo dispositivo nel registro dispositivi.",
+ "zigbee_information": "Visualizza le informazioni Zigbee per il dispositivo."
+ },
+ "unknown": "Sconosciuto",
+ "zha_device_card": {
+ "device_name_placeholder": "Cambia il nome del dispositivo"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Attributo",
+ "battery_device_warning": "Dovrai riattivare i dispositivi alimentati a batteria prima di avviare il processo di riconfigurazione. Fai riferimento al manuale del dispositivo per istruzioni su come riattivare il dispositivo.",
+ "bind_header": "Collegamento",
+ "button_hide": "Nascondi dettagli",
+ "button_show": "Mostra dettagli",
+ "cluster_header": "Grappolo",
+ "configuration_complete": "Riconfigurazione del dispositivo completata.",
+ "configuration_failed": "La riconfigurazione del dispositivo non è riuscita. Ulteriori informazioni potrebbero essere disponibili nei registri.",
+ "configuring_alt": "Configurazione",
+ "heading": "Riconfigurazione del dispositivo",
+ "in_progress": "Il dispositivo è in fase di riconfigurazione. Potrebbe volerci un po' di tempo.",
+ "introduction": "Riconfigura un dispositivo sulla tua rete Zigbee. Usa questa funzione se il tuo dispositivo non funziona correttamente.",
+ "min_max_change": "min/max/cambio",
+ "reporting_header": "Segnalazione",
+ "run_in_background": "Puoi chiudere questa finestra di dialogo e la riconfigurazione continuerà sullo sfondo.",
+ "start_reconfiguration": "Avvia la riconfigurazione"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\none {giorno}\nother {giorni}\n}",
+ "hour": "{count} {count, plural,\none {ora}\nother {ore}\n}",
+ "minute": "{count} {count, plural,\none {minuto}\nother {minuti}\n}",
+ "second": "{count} {count, plural,\none {secondo}\nother {secondi}\n}",
+ "week": "{count} {count, plural,\none {settimana}\nother {settimane}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Puoi ancora modificare la tua configurazione in YAML.",
+ "editor_not_available": "Nessun editor visivo disponibile per il tipo \"{type}\".",
+ "editor_not_supported": "L'editor visuale non è supportato per questa configurazione",
+ "error_detected": "Rilevati errori di configurazione",
+ "key_missing": "Chiave obbligatoria \"{key}\" mancante.",
+ "key_not_expected": "La chiave \"{key}\" non è prevista o non è supportata dall'editor visuale.",
+ "key_wrong_type": "Il valore fornito per \"{key}\" non è supportato dall'editor visuale. Supportiamo ({type_correct}), ma ricevuto ({type_wrong}).",
+ "no_state_array_support": "Più valori di stato non sono supportati nell'editor visuale",
+ "no_template_editor_support": "Modelli non supportati nell'editor visuale",
+ "no_type_provided": "Nessun tipo fornito."
+ },
+ "supervisor": {
+ "ask": "Chiedi aiuto",
+ "observer": "Controlla l'Observer",
+ "reboot": "Prova a riavviare l'host",
+ "system_health": "Controlla l'integrità del sistema",
+ "title": "Impossibile caricare il pannello Supervisor!",
+ "wait": "Se hai appena avviato, assicurati di aver dato al Supervisor abbastanza tempo per partire."
+ }
+ },
+ "login-form": {
+ "log_in": "Accedi",
+ "password": "Password",
+ "remember": "Ricordami"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Fai clic sul pulsante per configurare {entity}",
+ "close": "Chiudi",
+ "dismiss_all": "Rimuovi tutto",
+ "empty": "Nessuna notifica",
+ "title": "Notifiche"
+ },
+ "notification_toast": {
+ "connection_lost": "Connessione persa. Riconnessione in corso…",
+ "dismiss": "Rimuovi",
+ "integration_starting": "{integration} si sta avviando, non tutto sarà disponibile fino ad avvio completo.",
+ "service_call_failed": "Invocazione del servizio {service} non riuscita.",
+ "started": "Home Assistant si è avviato!",
+ "starting": "Home Assistant si sta avviando, non tutto sarà disponibile fino ad avvio completo.",
+ "triggered": "Attivato {name}",
+ "wrapping_up_startup": "Conclusione dell'avvio, non tutto sarà disponibile fino al termine."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Opzioni di configurazione mancanti? Abilita la modalità avanzata",
+ "link_profile_page": "la pagina del tuo profilo"
+ },
+ "areas": {
+ "add_picture": "Aggiungi un'immagine",
+ "assigned_to_area": "Assegnato a quest'area",
+ "caption": "Aree",
+ "data_table": {
+ "area": "Area",
+ "devices": "Dispositivi",
+ "entities": "Entità"
+ },
+ "delete": {
+ "confirmation_text": "Tutti i dispositivi in quest'area non saranno assegnati.",
+ "confirmation_title": "Sei sicuro di voler eliminare quest'area?"
+ },
+ "description": "Raggruppa dispositivi ed entità in aree",
+ "edit_settings": "Impostazioni area",
+ "editor": {
+ "area_id": "ID area",
+ "create": "Crea",
+ "default_name": "Nuova area",
+ "delete": "Elimina",
+ "linked_entities_caption": "Entità",
+ "name": "Nome",
+ "name_required": "Il nome è obbligatorio",
+ "no_linked_entities": "Non ci sono entità collegate a quest'area.",
+ "unknown_error": "Errore sconosciuto",
+ "update": "Aggiorna"
+ },
+ "picker": {
+ "create_area": "Crea area",
+ "header": "Aree",
+ "integrations_page": "Integrazioni",
+ "introduction": "Le aree sono utilizzate per organizzare dove sono i dispositivi. Queste informazioni saranno utilizzate in Home Assistant per aiutarti ad organizzare la tua interfaccia, permessi e integrazioni con altri sistemi.",
+ "introduction2": "Per posizionare i dispositivi in un'area, utilizzare il seguente collegamento per accedere alla pagina delle integrazioni e quindi fare clic su un'integrazione configurata per accedere alle schede del dispositivo.",
+ "no_areas": "Sembra che non ci siano ancora Aree!"
+ },
+ "targeting_area": "Puntare su quest'area"
+ },
+ "automation": {
+ "caption": "Automazioni",
+ "description": "Crea regole di comportamento personalizzate per la tua casa",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Usa un progetto"
+ },
+ "header": "Crea una nuova automazione",
+ "how": "Come vuoi creare la tua nuova automazione?",
+ "start_empty": "Inizia con un'automazione vuota",
+ "start_empty_description": "Crea una nuova automazione da zero",
+ "thingtalk": {
+ "create": "Crea",
+ "header": "Descrivi l'automazione che vuoi creare",
+ "input_label": "Cosa dovrebbe fare questa automazione?",
+ "intro": "E proveremo a crearlo per te. Ad esempio: spegni le luci quando esco."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Aggiungi azione",
+ "delete": "Elimina",
+ "delete_confirm": "Sei sicuro di volerlo eliminare?",
+ "duplicate": "Duplica",
+ "header": "Azioni",
+ "introduction": "Le azioni sono ciò che Home Assistant eseguirà quando un'attivazione (o trigger) avvia un'automazione.",
+ "learn_more": "Per saperne di più sulle azioni",
+ "name": "Azione",
+ "type": {
+ "choose": {
+ "add_option": "Aggiungi opzione",
+ "conditions": "Condizioni",
+ "default": "Azioni predefinite",
+ "label": "Scegli",
+ "option": "Opzione {number}",
+ "remove_option": "Rimuovi opzione",
+ "sequence": "Azioni"
+ },
+ "condition": {
+ "label": "Condizione"
+ },
+ "delay": {
+ "delay": "Durata",
+ "label": "Attesa per un tempo da trascorrere (ritardo)"
+ },
+ "device_id": {
+ "action": "Azione",
+ "extra_fields": {
+ "brightness_pct": "Luminosità",
+ "code": "Codice",
+ "flash": "Flash",
+ "humidity": "Umidità",
+ "message": "Messaggio",
+ "mode": "Modalità",
+ "position": "Apertura",
+ "title": "Titolo",
+ "value": "Valore"
+ },
+ "label": "Dispositivo"
+ },
+ "event": {
+ "event": "Evento:",
+ "label": "Attiva evento",
+ "service_data": "Dati del servizio"
+ },
+ "repeat": {
+ "label": "Ripeti",
+ "sequence": "Azioni",
+ "type": {
+ "count": {
+ "label": "Conteggio"
+ },
+ "until": {
+ "conditions": "Condizioni \"fino a\"",
+ "label": "Fino a"
+ },
+ "while": {
+ "conditions": "Condizioni \"mentre\"",
+ "label": "Mentre"
+ }
+ },
+ "type_select": "Tipo \"ripetizione\""
+ },
+ "scene": {
+ "label": "Attiva la scena"
+ },
+ "service": {
+ "label": "Chiama servizio"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Continua al timeout",
+ "label": "Attesa per un'attivazione",
+ "timeout": "Timeout (opzionale)"
+ },
+ "wait_template": {
+ "continue_timeout": "Continua al timeout",
+ "label": "Attesa per un modello",
+ "timeout": "Timeout (opzionale)",
+ "wait_template": "Modello di attesa"
+ }
+ },
+ "type_select": "Tipo di azione",
+ "unsupported_action": "Nessun supporto dell'interfaccia utente per l'azione: {action}"
+ },
+ "alias": "Nome",
+ "blueprint": {
+ "blueprint_to_use": "Progetto da utilizzare",
+ "header": "Progetto",
+ "no_blueprints": "Non hai progetti",
+ "no_inputs": "Questo progetto non ha ingressi."
+ },
+ "conditions": {
+ "add": "Aggiungi condizione",
+ "delete": "Elimina",
+ "delete_confirm": "Sei sicuro di volerlo eliminare?",
+ "duplicate": "Duplica",
+ "header": "Condizioni",
+ "introduction": "Le condizioni sono facoltative e impediranno l'esecuzione dell'automazione a meno che non siano soddisfatte tutte.",
+ "learn_more": "Per saperne di più sulle condizioni",
+ "name": "Condizione",
+ "type": {
+ "and": {
+ "label": "E"
+ },
+ "device": {
+ "condition": "Condizione",
+ "extra_fields": {
+ "above": "Maggiore di",
+ "below": "Minore di",
+ "for": "Durata",
+ "hvac_mode": "Modalità HVAC",
+ "preset_mode": "Modalità predefinita"
+ },
+ "label": "Dispositivo"
+ },
+ "not": {
+ "label": "Non"
+ },
+ "numeric_state": {
+ "above": "Maggiore di",
+ "below": "Minore di",
+ "label": "Valore numerico",
+ "value_template": "Valore modello (opzionale)"
+ },
+ "or": {
+ "label": "Oppure"
+ },
+ "state": {
+ "label": "Stato",
+ "state": "Stato"
+ },
+ "sun": {
+ "after": "Dopo:",
+ "after_offset": "Scostamento per dopo (opzionale)",
+ "before": "Prima:",
+ "before_offset": "Scostamento per prima (opzionale)",
+ "label": "Sole",
+ "sunrise": "Alba",
+ "sunset": "Tramonto"
+ },
+ "template": {
+ "label": "Modello",
+ "value_template": "Valore modello"
+ },
+ "time": {
+ "after": "Dopo",
+ "before": "Prima",
+ "label": "Ora",
+ "type_input": "Valore di un aiutante data/ora",
+ "type_value": "Tempo fisso",
+ "weekdays": {
+ "fri": "Venerdì",
+ "mon": "Lunedì",
+ "sat": "Sabato",
+ "sun": "Domenica",
+ "thu": "Giovedì",
+ "tue": "Martedì",
+ "wed": "Mercoledì"
+ }
+ },
+ "trigger": {
+ "id": "ID attivazione",
+ "label": "Attivazione",
+ "no_triggers": "Nessuna attivazione disponibile"
+ },
+ "zone": {
+ "entity": "Entità con posizione",
+ "label": "Zona",
+ "zone": "Zona"
+ }
+ },
+ "type_select": "Tipo di condizione",
+ "unsupported_condition": "Nessun supporto dell'interfaccia utente per la condizione: {condition}"
+ },
+ "copy_to_clipboard": "Copia negli appunti",
+ "default_name": "Nuova automazione",
+ "description": {
+ "label": "Descrizione",
+ "placeholder": "Descrizione facoltativa"
+ },
+ "edit_ui": "Modifica con l'editor visuale",
+ "edit_yaml": "Modifica in YAML",
+ "enable_disable": "Abilitare/Disabilitare l'automazione",
+ "introduction": "Usa le automazioni per dare vita alla tua casa.",
+ "load_error_not_editable": "Solo le automazioni in automations.yaml sono modificabili.",
+ "load_error_unknown": "Errore durante il caricamento dell'automazione ({err_no}).",
+ "max": {
+ "parallel": "Numero massimo di esecuzioni parallele",
+ "queued": "Lunghezza della coda"
+ },
+ "modes": {
+ "description": "La modalità controlla cosa succede quando l'automazione viene attivata mentre le azioni sono ancora in esecuzione da un'attivazione precedente. Controlla la {documentation_link} per maggiori informazioni.",
+ "documentation": "documentazione sull'automazione",
+ "label": "Modalità",
+ "parallel": "Parallelo",
+ "queued": "In coda",
+ "restart": "Riavvia",
+ "single": "Singolo (predefinito)"
+ },
+ "move_down": "Sposta sotto",
+ "move_up": "Sposta sopra",
+ "save": "Salva",
+ "show_trace": "Mostra traccia",
+ "triggers": {
+ "add": "Aggiungi attivazione",
+ "delete": "Elimina",
+ "delete_confirm": "Sei sicuro di volerlo eliminare?",
+ "duplicate": "Duplica",
+ "edit_id": "Modifica ID attivazione",
+ "header": "Attivazioni (o trigger)",
+ "id": "ID attivazione",
+ "introduction": "L'attivazione (o trigger) avvia l'elaborazione di una regola di automazione. È possibile specificare più attivazioni per una stessa regola di automazione. Una volta avviata un'attivazione, Home Assistant convaliderà le condizioni, se presenti, ed eseguirà l'azione.",
+ "learn_more": "Per saperne di più sulle attivazioni (o trigger)",
+ "name": "Attivazione",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Maggiore di",
+ "below": "Minore di",
+ "for": "Durata (facoltativo)",
+ "zone": "Zona"
+ },
+ "label": "Dispositivo",
+ "trigger": "Attivazione"
+ },
+ "event": {
+ "context_user_pick": "Seleziona utente",
+ "context_user_picked": "Evento di attivazione dell'utente",
+ "context_users": "Limita agli eventi attivati da",
+ "event_data": "Dati evento",
+ "event_type": "Tipo di evento",
+ "label": "Evento"
+ },
+ "geo_location": {
+ "enter": "Ingresso",
+ "event": "Evento:",
+ "label": "Geolocalizzazione",
+ "leave": "Uscita",
+ "source": "Fonte",
+ "zone": "Zona"
+ },
+ "homeassistant": {
+ "event": "Evento:",
+ "label": "Home Assistant",
+ "shutdown": "Spegnimento",
+ "start": "Avvio"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Payload (opzionale)",
+ "topic": "Argomento"
+ },
+ "numeric_state": {
+ "above": "Maggiore di",
+ "below": "Minore di",
+ "label": "Valore numerico",
+ "value_template": "Valore modello (opzionale)"
+ },
+ "state": {
+ "attribute": "Attributo (opzionale)",
+ "for": "Per (facoltativo)",
+ "from": "Da (facoltativo)",
+ "label": "Stato",
+ "to": "A (facoltativo)"
+ },
+ "sun": {
+ "event": "Evento:",
+ "label": "Sole",
+ "offset": "Scostamento (opzionale)",
+ "sunrise": "Alba",
+ "sunset": "Tramonto"
+ },
+ "tag": {
+ "label": "Etichetta"
+ },
+ "template": {
+ "label": "Modello",
+ "value_template": "Valore modello"
+ },
+ "time": {
+ "at": "Al momento",
+ "label": "Ora",
+ "type_input": "Valore di un aiutante data/ora",
+ "type_value": "Tempo fisso"
+ },
+ "time_pattern": {
+ "hours": "Ore",
+ "label": "Ricorrenza temporale",
+ "minutes": "Minuti",
+ "seconds": "Secondi"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook ID"
+ },
+ "zone": {
+ "enter": "Entrata",
+ "entity": "Entità con posizione",
+ "event": "Evento:",
+ "label": "Zona",
+ "leave": "Uscita",
+ "zone": "Zona"
+ }
+ },
+ "type_select": "Tipo di attivazione",
+ "unsupported_platform": "Nessun supporto dell'interfaccia utente per la piattaforma: {platform}"
+ },
+ "unsaved_confirm": "Hai delle modifiche non salvate. Sei sicuro di voler uscire?"
+ },
+ "picker": {
+ "add_automation": "Aggiungi Automazione",
+ "delete_automation": "Elimina automazione",
+ "delete_confirm": "Sei sicuro di voler eliminare questa automazione?",
+ "dev_automation": "Debug dell'automazione",
+ "dev_only_editable": "Solo le automazioni che hanno assegnato un ID univoco sono debuggabili.",
+ "duplicate": "Duplica",
+ "duplicate_automation": "Duplica automazione",
+ "edit_automation": "Modifica automazione",
+ "header": "Editor di Automazione",
+ "headers": {
+ "name": "Nome"
+ },
+ "introduction": "L'Editor di automazione consente di creare e modificare le automazioni. Segui il collegamento seguente per leggere le istruzioni e assicurarti di aver configurato correttamente Home Assistant.",
+ "learn_more": "Per saperne di più sulle Automazioni",
+ "no_automations": "Non abbiamo trovato nessuna automazione",
+ "only_editable": "Solo le automazioni definite in automations.yaml sono modificabili.",
+ "pick_automation": "Scegli l'Automazione da modificare",
+ "show_info_automation": "Mostra informazioni sull'automazione"
+ },
+ "thingtalk": {
+ "create": "Crea automazione",
+ "link_devices": {
+ "ambiguous_entities": "Uno o più dispositivi hanno più di un'entità corrispondente, scegli quello che desideri utilizzare.",
+ "header": "Fantastico! Ora dobbiamo collegare alcuni dispositivi",
+ "unknown_placeholder": "Segnaposto sconosciuto"
+ },
+ "task_selection": {
+ "error_empty": "Immettere un comando o toccare Salta.",
+ "error_unsupported": "Non siamo riusciti a creare un'automazione per questo (ancora?).",
+ "for_example": "Per esempio:",
+ "header": "Crea una nuova automazione",
+ "introduction": "Scrivi qui sotto cosa dovrebbe fare questa automazione, e noi cercheremo di convertirla in un'automazione di Home Assistant.",
+ "language_note": "Nota: per il momento è supportato solo l'inglese."
+ }
+ },
+ "trace": {
+ "download_trace": "Scarica traccia",
+ "edit_automation": "Modifica automazione",
+ "newer_trace": "Traccia più recente",
+ "older_trace": "Traccia più vecchia",
+ "refresh": "Aggiorna"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "forum della comunità",
+ "error_no_url": "Inserisci l'URL del progetto.",
+ "file_name": "Percorso del progetto",
+ "header": "Importa un progetto",
+ "import_btn": "Anteprima del progetto",
+ "import_header": "Progetto \"{name}\"",
+ "import_introduction_link": "Puoi importare progetti di altri utenti da Github e {community_link} . Immettere l'URL del progetto di seguito.",
+ "importing": "Caricamento progetto…",
+ "raw_blueprint": "Contenuto del progetto",
+ "save_btn": "Importa progetto",
+ "saving": "Importazione del progetto…",
+ "unsupported_blueprint": "Questo progetto non è supportato",
+ "url": "URL del progetto"
+ },
+ "caption": "Progetti",
+ "description": "Gestisci i progetti",
+ "overview": {
+ "add_blueprint": "Importa progetto",
+ "confirm_delete_header": "Vuoi eliminare questo progetto?",
+ "confirm_delete_text": "Sei sicuro di voler eliminare questo progetto?",
+ "create_automation": "Crea automazione",
+ "create_script": "Crea script",
+ "delete_blueprint": "Elimina progetto",
+ "discover_more": "Scopri altri progetti",
+ "header": "Editor del progetto",
+ "headers": {
+ "domain": "Dominio",
+ "file_name": "Nome file",
+ "name": "Nome",
+ "type": "Tipo"
+ },
+ "introduction": "La configurazione del progetto ti consente di importare e gestire i tuoi progetti.",
+ "learn_more": "Ulteriori informazioni sull'utilizzo dei progetti",
+ "share_blueprint": "Condividi progetto",
+ "share_blueprint_no_url": "Impossibile condividere il progetto: url di origine assente",
+ "types": {
+ "automation": "Automazione",
+ "script": "Script"
+ },
+ "use_blueprint": "Crea automazione"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Documentazione di configurazione",
+ "disable": "disabilita",
+ "enable": "abilita",
+ "enable_ha_skill": "Abilita la skill Home Assistant per Alexa",
+ "enable_state_reporting": "Attivare la segnalazione dello stato",
+ "info": "Con l'integrazione Alexa per Home Assistant Cloud sarete in grado di controllare tutti i vostri dispositivi Home Assistant tramite qualsiasi dispositivo abilitato Alexa.",
+ "info_state_reporting": "Se si abilita la segnalazione dello stato, Home Assistant invierà ad Amazon tutte le modifiche di stato delle entità esposte. Questo permette di vedere sempre gli ultimi stati nell'app Alexa e di utilizzare i cambiamenti di stato per creare routine.",
+ "manage_entities": "Gestisci le entità",
+ "state_reporting_error": "Impossibile {enable_disable} lo stato di segnalazione.",
+ "sync_entities": "Sincronizza entità con Amazon",
+ "sync_entities_error": "Impossibile sincronizzare le entità:",
+ "title": "Alexa"
+ },
+ "connected": "Connesso",
+ "connecting": "In collegamento…",
+ "connection_status": "Stato della connessione cloud",
+ "fetching_subscription": "Recupero iscrizione in corso…",
+ "google": {
+ "config_documentation": "Documentazione di configurazione",
+ "devices_pin": "PIN dei dispositivi di sicurezza",
+ "enable_ha_skill": "Abilita la skill Home Assistant Cloud per Google Assistant",
+ "enable_state_reporting": "Abilita la segnalazione dello stato",
+ "enter_pin_error": "Impossibile memorizzare il pin:",
+ "enter_pin_hint": "Digita un PIN per utilizzare i dispositivi di sicurezza",
+ "enter_pin_info": "Inserisci un PIN per interagire con i dispositivi di sicurezza. I dispositivi di sicurezza sono porte, porte da garage e serrature. Ti sarà chiesto di dire/inserire questo PIN quando interagisci con tali dispositivi tramite Google Assistant.",
+ "info": "Con l'integrazione di Google Assistant per Home Assistant Cloud sarai in grado di controllare tutti i tuoi dispositivi Home Assistant tramite qualsiasi dispositivo abilitato per Google Assistant.",
+ "info_state_reporting": "Se si abilita la segnalazione dello stato, Home Assistant invierà a Google tutte le modifiche di stato delle entità esposte. Questo ti permette di vedere sempre gli ultimi stati nell'app di Google.",
+ "manage_entities": "Gestisci le entità",
+ "not_configured_text": "Prima di poter utilizzare Google Assistant, è necessario attivare la skill Home Assistant Cloud per Google Assistant nell'app Google Home.",
+ "not_configured_title": "Google Assistant non è attivato",
+ "security_devices": "Dispositivi di sicurezza",
+ "sync_entities": "Sincronizzare le entità con Google",
+ "sync_entities_404_message": "Impossibile sincronizzare le entità con Google, chiedere a Google \"Ehi Google, sincronizza i miei dispositivi\" per sincronizzare le entità.",
+ "title": "Google Assistant"
+ },
+ "integrations": "Integrazioni",
+ "integrations_introduction": "Le integrazioni per Home Assistant Cloud ti permettono di connetterti con i servizi nel cloud senza dover esporre pubblicamente la tua istanza di Home Assistant su Internet.",
+ "integrations_introduction2": "Controlla il sito web per ",
+ "integrations_link_all_features": " tutte le funzioni disponibili",
+ "manage_account": "Gestisci account",
+ "nabu_casa_account": "Account Nabu Casa",
+ "not_connected": "Non connesso",
+ "remote": {
+ "access_is_being_prepared": "Il controllo remoto è in fase di preparazione. Ti avviseremo quando sarà pronto.",
+ "certificate_info": "Informazioni sul certificato",
+ "connected": "Connesso",
+ "info": "Home Assistant Cloud fornisce una connessione remota sicura alla tua istanza mentre sei fuori casa.",
+ "instance_is_available": "La tua istanza è disponibile su",
+ "instance_will_be_available": "La tua istanza sarà disponibile su",
+ "link_learn_how_it_works": "Scopri come funziona",
+ "not_connected": "Non connesso",
+ "reconnecting": "Non connesso. Tentativo di riconnessione.",
+ "remote_enabled": {
+ "caption": "Collegati automaticamente",
+ "description": "Abilita questa opzione per assicurarti che la tua istanza di Home Assistant sia sempre accessibile da remoto."
+ },
+ "title": "Telecomando"
+ },
+ "sign_out": "Esci",
+ "thank_you_note": "Grazie per far parte di Home Assistant Cloud. È grazie a persone come te che siamo in grado di creare un'ottima esperienza domotica per tutti. Grazie!",
+ "tts": {
+ "default_language": "Lingua predefinita da utilizzare",
+ "dialog": {
+ "create_automation": "Crea automazione",
+ "example_message": "Ciao {name}, puoi riprodurre qualsiasi testo su qualsiasi lettore multimediale supportato!",
+ "header": "Prova la sintesi vocale",
+ "play": "Riproduci",
+ "target": "Destinazione",
+ "target_browser": "Browser"
+ },
+ "female": "Donna",
+ "info": "Porta un po' di personalità a casa tua facendola parlare con te utilizzando i nostri servizi di sintesi vocale. Puoi usarlo nelle automazioni e negli script usando il servizio {service}.",
+ "male": "Uomo",
+ "title": "Sintesi vocale",
+ "try": "Prova"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Impossibile disabilitare webhook:",
+ "info": "Tutto ciò che è configurato per essere attivato da un webhook può essere dotato di un URL accessibile pubblicamente per consentire d'inviare i dati ad Home Assistant da qualsiasi luogo, senza esporre la tua istanza a Internet.",
+ "link_learn_more": "Ulteriori informazioni sulla creazione di automazioni basate su webhook.",
+ "loading": "Caricamento in corso…",
+ "manage": "Gestisci",
+ "no_hooks_yet": "Sembra che tu non abbia ancora dei webhook. Per iniziare, configurare un ",
+ "no_hooks_yet2": " o creando un ",
+ "no_hooks_yet_link_automation": "automazione webhook",
+ "no_hooks_yet_link_integration": "Integrazione basata su webhook",
+ "title": "Webhook"
+ }
+ },
+ "alexa": {
+ "banner": "La modifica delle entità esposte tramite questa interfaccia utente è disabilitata perché sono stati configurati filtri di entità in configuration.yaml.",
+ "dont_expose_entity": "Non esporre l'entità",
+ "expose": "Esponi ad Alexa",
+ "expose_entity": "Esporre l'entità",
+ "exposed": "{selected} esposto",
+ "exposed_entities": "Entità esposte",
+ "follow_domain": "Segui il dominio",
+ "manage_domains": "Gestisci i domini",
+ "not_exposed": "{selected} non esposto",
+ "not_exposed_entities": "Entità non esposte",
+ "title": "Alexa"
+ },
+ "description_features": "Controlla la casa quando sei via e integra con Alexa e Google Assistant",
+ "description_login": "Connesso come {email}",
+ "description_not_login": "Accesso non effettuato",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Data di scadenza del certificato:",
+ "certificate_information": "Informazioni sul certificato",
+ "close": "Chiudi",
+ "fingerprint": "Impronta digitale del certificato:",
+ "will_be_auto_renewed": "sarà rinnovato automaticamente"
+ },
+ "dialog_cloudhook": {
+ "available_at": "Il webhook è disponibile al seguente URL:",
+ "close": "Chiudi",
+ "confirm_disable": "Sei sicuro di voler disabilitare questo webhook?",
+ "copied_to_clipboard": "Copiato negli appunti",
+ "info_disable_webhook": "Se non desideri più utilizzare questo webhook, puoi",
+ "link_disable_webhook": "disabilitarlo",
+ "managed_by_integration": "Questo webhook è gestito da un'integrazione e non può essere disabilitato.",
+ "view_documentation": "Visualizza la documentazione",
+ "webhook_for": "Webhook per {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "Controlla la tua email per le istruzioni su come reimpostare la tua password.",
+ "email": "Email",
+ "email_error_msg": "Email non valida",
+ "instructions": "Inserisci il tuo indirizzo email e ti invieremo un collegamento per reimpostare la password.",
+ "send_reset_email": "Invia email di ripristino",
+ "subtitle": "Hai dimenticato la password",
+ "title": "Password dimenticata"
+ },
+ "google": {
+ "banner": "La modifica delle entità esposte tramite questa interfaccia utente è disabilitata perché sono stati configurati filtri di entità in configuration.yaml.",
+ "disable_2FA": "Disattiva l'autenticazione a due fattori",
+ "dont_expose_entity": "Non esporre l'entità",
+ "expose": "Esponi a Google Assistant",
+ "expose_entity": "Esporre l'entità",
+ "exposed": "{selected} esposto",
+ "exposed_entities": "Entità esposte",
+ "follow_domain": "Segui il dominio",
+ "manage_domains": "Gestisci i domini",
+ "not_exposed": "{selected} non esposto",
+ "not_exposed_entities": "Entità non esposte",
+ "sync_to_google": "Sincronizzazione delle modifiche a Google.",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Devi confermare l'email prima di effettuare l'accesso.",
+ "alert_password_change_required": "È necessario modificare la password prima di effettuare l'accesso.",
+ "dismiss": "Rimuovi",
+ "email": "Email",
+ "email_error_msg": "Email non valida",
+ "forgot_password": "Password dimenticata?",
+ "introduction": "Home Assistant Cloud fornisce una connessione remota sicura alla tua istanza quando sei lontano da casa. Consente inoltre di connettersi con i servizi solo su cloud: Amazon Alexa e Google Assistant.",
+ "introduction2": "Questo servizio è gestito dal nostro partner",
+ "introduction2a": ", una società fondata dai fondatori di Home Assistant.",
+ "introduction3": "Home Assistant Cloud è un servizio in abbonamento con un mese di prova gratuita. Non sono necessarie informazioni di pagamento.",
+ "learn_more_link": "Ulteriori informazioni su Home Assistant Cloud",
+ "password": "Password",
+ "password_error_msg": "Le password sono di almeno 8 caratteri",
+ "sign_in": "Accedi",
+ "start_trial": "Inizia la tua prova gratuita di 1 mese",
+ "title": "Accesso al cloud",
+ "trial_info": "Nessuna informazione di pagamento necessaria"
+ },
+ "register": {
+ "account_created": "Account creato! Controlla la tua email per le istruzioni su come attivare il tuo account.",
+ "create_account": "Crea un account",
+ "email_address": "Indirizzo email",
+ "email_error_msg": "Email non valida",
+ "feature_amazon_alexa": "Integrazione con Amazon Alexa",
+ "feature_google_home": "Integrazione con Google Assistant",
+ "feature_remote_control": "Controllo di Home Assistant lontano da casa",
+ "feature_webhook_apps": "Facile integrazione con applicazioni basate su webhook come OwnTracks",
+ "headline": "Inizia la tua prova gratuita",
+ "information": "Crea un account per iniziare la tua prova gratuita di un mese con Home Assistant Cloud. Non sono necessarie informazioni di pagamento.",
+ "information2": "La versione di prova ti darà accesso a tutti i vantaggi di Home Assistant Cloud, tra cui:",
+ "information3": "Questo servizio è gestito dal nostro partner ",
+ "information3a": ", una società fondata dai fondatori di Home Assistant.",
+ "information4": "Registrando un account accetti i seguenti termini e condizioni.",
+ "link_privacy_policy": "Informativa sulla privacy",
+ "link_terms_conditions": "Termini e condizioni",
+ "password": "Password",
+ "password_error_msg": "Le password sono di almeno 8 caratteri",
+ "resend_confirm_email": "Invia di nuovo l'email di conferma",
+ "start_trial": "Inizia la prova",
+ "title": "Registra account"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Hai dei cambiamenti non salvati. Sei sicuro di voler uscire?"
+ },
+ "learn_more": "Ulteriori informazioni"
+ },
+ "core": {
+ "caption": "Generale",
+ "description": "Posizione, rete e statistiche",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Valuta",
+ "edit_requires_storage": "Editor disabilitato perché la configurazione è memorizzata in configuration.yaml.",
+ "elevation": "Altitudine",
+ "elevation_meters": "metri",
+ "external_url": "URL esterno",
+ "find_currency_value": "Trova il tuo valore",
+ "imperial_example": "Fahrenheit, libbre",
+ "internal_url": "URL interno",
+ "latitude": "Latitudine",
+ "location_name": "Nome della tua installazione di Home Assistant",
+ "longitude": "Longitudine",
+ "metric_example": "Celsius, chilogrammi",
+ "save_button": "Salva",
+ "time_zone": "Fuso orario",
+ "unit_system": "Unità di misura",
+ "unit_system_imperial": "Imperiale",
+ "unit_system_metric": "Metrico"
+ },
+ "header": "Configurazione e controllo del server",
+ "introduction": "Gestisci la tua posizione, la tua rete e le tue statistiche."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "I seguenti attributi sono già impostati in customize.yaml",
+ "attributes_not_set": "I seguenti attributi non sono stati impostati. Impostali se vuoi.",
+ "attributes_outside": "I seguenti attributi sono personalizzati dall'esterno di customize.yaml",
+ "attributes_override": "Puoi sovrascriverli, se vuoi.",
+ "attributes_set": "I seguenti attributi dell'entità sono impostati programmaticamente.",
+ "caption": "Personalizzazioni",
+ "description": "Personalizza le tue entità",
+ "different_include": "Possibilmente tramite un dominio, un glob o un diverso include.",
+ "pick_attribute": "Scegli un attributo da sovrascrivere",
+ "picker": {
+ "documentation": "Documentazione di personalizzazione",
+ "header": "Personalizzazioni",
+ "introduction": "Modifica gli attributi per entità. \nLe personalizzazioni aggiunte/modificate avranno effetto immediato. \nLe personalizzazioni rimosse avranno effetto quando l'entità sarà aggiornata."
+ },
+ "warning": {
+ "include_link": "includere customize.yaml",
+ "include_sentence": "Sembra che il file configuration.yaml non sia stato configurato correttamente",
+ "not_applied": "Le modifiche apportate qui sono scritte in esso, ma non saranno applicate dopo un nuovo caricamento della configurazione, a meno che l'inclusione non sia a posto."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Gestisci automazioni, scene, script e aiutanti",
+ "title": "Automazioni e scene"
+ },
+ "blueprints": {
+ "description": "Automazioni e script predefiniti dalla comunità",
+ "title": "Progetti"
+ },
+ "companion": {
+ "description": "Posizione e notifiche",
+ "title": "App complementare"
+ },
+ "dashboards": {
+ "description": "Crea insiemi di schede personalizzate per controllare la tua casa",
+ "title": "Plance"
+ },
+ "devices": {
+ "description": "Integrazioni, dispositivi, entità e aree",
+ "title": "Dispositivi e servizi"
+ },
+ "energy": {
+ "description": "Monitora la produzione e il consumo di energia",
+ "title": "Energia"
+ },
+ "people": {
+ "description": "Gestisci le persone e le zone tracciate da Home Assistant",
+ "title": "Dispositivi e zone"
+ },
+ "settings": {
+ "description": "Impostazioni di base, controlli del server, registri e informazioni",
+ "title": "Impostazioni"
+ },
+ "supervisor": {
+ "description": "Crea backup, controlla i registri o riavvia il sistema",
+ "title": "Componenti aggiuntivi, backup e Supervisor"
+ },
+ "tags": {
+ "description": "Attiva le automazioni alla scansione di un'etichetta NFC, un codice QR, ecc.",
+ "title": "Etichette"
+ }
+ },
+ "devices": {
+ "add_prompt": "Nessun {name} è stato ancora aggiunto utilizzando questo dispositivo. Puoi aggiungerne uno facendo clic sul pulsante + sopra.",
+ "automation": {
+ "actions": {
+ "caption": "Quando qualcosa si attiva…",
+ "no_actions": "Nessuna azione",
+ "unknown_action": "Azione sconosciuta"
+ },
+ "automations": "Automazioni",
+ "conditions": {
+ "caption": "Fai qualcosa solo se…",
+ "no_conditions": "Nessuna condizione",
+ "unknown_condition": "Condizione sconosciuta"
+ },
+ "create": "Crea l'automazione con il dispositivo",
+ "create_disable": "Non è possibile creare un'automazione con un dispositivo disabilitato",
+ "no_automations": "Nessuna automazione",
+ "no_device_automations": "Non ci sono automazioni disponibili per questo dispositivo.",
+ "triggers": {
+ "caption": "Fai qualcosa quando…",
+ "no_triggers": "Nessuna attivazione",
+ "unknown_trigger": "Attivazione sconosciuta"
+ },
+ "unknown_automation": "Automazione sconosciuta"
+ },
+ "cant_edit": "Puoi modificare solo gli elementi creati nell'interfaccia utente.",
+ "caption": "Dispositivi",
+ "confirm_delete": "Sei sicuro di voler eliminare questo dispositivo?",
+ "confirm_disable_config_entry": "Non ci sono più dispositivi per la voce di configurazione {entry_name}, vuoi disabilitare invece la voce di configurazione?",
+ "confirm_rename_entity_ids": "Vuoi rinominare anche gli ID entità delle tue entità?",
+ "confirm_rename_entity_ids_warning": "Questo non cambierà alcuna configurazione (come automazioni, script, scene, plance) che sta attualmente utilizzando queste entità, dovrai aggiornarle tu stesso per utilizzare i nuovi ID entità!",
+ "data_table": {
+ "area": "Area",
+ "battery": "Batteria",
+ "device": "Dispositivo",
+ "integration": "Integrazione",
+ "manufacturer": "Produttore",
+ "model": "Modello",
+ "no_devices": "Nessun dispositivo",
+ "no_integration": "Nessuna integrazione"
+ },
+ "delete": "Elimina",
+ "description": "Gestisci i dispositivi configurati",
+ "device_info": "Informazioni sul dispositivo",
+ "device_not_found": "Dispositivo non trovato.",
+ "disabled": "Disabilitato",
+ "disabled_by": {
+ "config_entry": "Voce di configurazione",
+ "integration": "Integrazione",
+ "user": "Utente"
+ },
+ "download_diagnostics": "Scarica la diagnostica",
+ "edit_settings": "Modifica impostazioni",
+ "enabled_cause": "Il dispositivo è stato disabilitato da {cause}.",
+ "enabled_description": "I dispositivi disabilitati non verranno mostrati e le entità appartenenti al dispositivo verranno disabilitate e non aggiunte a Home Assistant.",
+ "enabled_label": "Abilita dispositivo",
+ "entities": {
+ "add_entities_lovelace": "Aggiungi a Lovelace",
+ "config": "Configurazione",
+ "control": "Controlli",
+ "diagnostic": "Diagnostica",
+ "disabled_entities": "+{count} {count, plural,\n one {entità disabilitata}\n other {entità disabilitate}\n}",
+ "entities": "Entità",
+ "hide_disabled": "Nascondi disabilitato",
+ "none": "Questo dispositivo non ha entità",
+ "sensor": "Sensori",
+ "state": "Stato"
+ },
+ "name": "Nome",
+ "no_devices": "Nessun dispositivo",
+ "open_configuration_url_device": "Visita il dispositivo",
+ "open_configuration_url_service": "Visita il servizio",
+ "picker": {
+ "filter": {
+ "filter": "Filtro",
+ "hidden_devices": "nascosto/i {number} {number, plural,\n one {dispositivo}\n other {dispositivi}\n}",
+ "show_all": "Mostra tutto",
+ "show_disabled": "Mostra i dispositivi disabilitati"
+ },
+ "search": "Cerca i dispositivi"
+ },
+ "scene": {
+ "create": "Crea una Scena con il dispositivo",
+ "create_disable": "Non è possibile creare scene con un dispositivo disabilitato",
+ "no_scenes": "Nessuna scena",
+ "scenes": "Scene"
+ },
+ "scenes": "Scene",
+ "script": {
+ "create": "Crea uno script con il dispositivo",
+ "create_disable": "Non è possibile creare script con un dispositivo disabilitato",
+ "no_scripts": "Nessuno script",
+ "scripts": "Script"
+ },
+ "scripts": "Script",
+ "unknown_error": "Errore sconosciuto",
+ "unnamed_device": "Dispositivo senza nome",
+ "update": "Aggiorna",
+ "update_device_error": "Aggiornamento del dispositivo non riuscito"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Aggiungi sistema a batteria",
+ "battery_systems": "Sistemi a batterie",
+ "dialog": {
+ "energy_into_battery": "Energia in entrata nella batteria (kWh)",
+ "energy_out_of_battery": "Energia in uscita dalla batteria (kWh)",
+ "header": "Configura il sistema a batteria"
+ },
+ "learn_more": "Maggiori informazioni su come iniziare.",
+ "sub": "Se disponi di un sistema a batteria, puoi configurarlo per monitorare quanta energia è stata immagazzinata e utilizzata dalla batteria.",
+ "title": "Accumulatore domestico"
+ },
+ "caption": "Energia",
+ "delete_integration": "Sei sicuro di voler eliminare questa integrazione? Rimuoverai le entità che fornisce",
+ "delete_source": "Sei sicuro di voler eliminare questa fonte?",
+ "description": "Monitora la produzione e il consumo di energia",
+ "device_consumption": {
+ "add_device": "Aggiungi dispositivo",
+ "add_stat": "Scegli l'entità di cui tenere traccia dell'energia",
+ "devices": "Dispositivi",
+ "dialog": {
+ "device_consumption_energy": "Consumo energetico del dispositivo (kWh)",
+ "header": "Aggiungi un dispositivo",
+ "selected_stat_intro": "Seleziona l'entità che rappresenta il consumo energetico del dispositivo."
+ },
+ "learn_more": "Maggiori informazioni su come iniziare.",
+ "selected_stat": "Monitoraggio dell'energia per",
+ "sub": "Monitora il consumo energetico dei singoli dispositivi consentendo ad Home Assistant di suddividere il tuo consumo energetico per dispositivo.",
+ "title": "Dispositivi individuali"
+ },
+ "gas": {
+ "add_gas_source": "Aggiungi fonte di gas",
+ "dialog": {
+ "cost_entity": "Utilizza un'entità con il prezzo attuale",
+ "cost_entity_input": "Entità con il prezzo attuale al {unit}",
+ "cost_number": "Utilizza un prezzo statico",
+ "cost_number_input": "Prezzo al {unit}",
+ "cost_number_suffix": "{currency} /m³",
+ "cost_para": "Seleziona come Home Assistant deve tenere traccia dei costi dell'energia consumata.",
+ "cost_stat": "Utilizza un'entità che tiene traccia dei costi totali",
+ "cost_stat_input": "Entità dei costi totali",
+ "energy_stat": "Energia consumata (m³)",
+ "gas_usage": "Consumo di gas",
+ "header": "Configura il consumo di gas",
+ "m3_or_kWh": "ft³, m³, Wh, kWh o MWh",
+ "no_cost": "Non tenere traccia dei costi",
+ "paragraph": "Il consumo di gas è il volume di gas che arriva a casa tua."
+ },
+ "gas_consumption": "Consumo di gas",
+ "learn_more": "Maggiori informazioni su come iniziare.",
+ "sub": "Consenti a Home Assistant di monitorare il tuo consumo di gas.",
+ "title": "Consumo di gas"
+ },
+ "grid": {
+ "add_co2_signal": "Aggiungi l'integrazione CO2 Signal",
+ "add_consumption": "Aggiungi consumo",
+ "add_return": "Aggiungi reso",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Utilizzare un'entità con prezzo attuale",
+ "cost_entity_input": "Entità con il prezzo attuale",
+ "cost_number": "Utilizza un prezzo statico",
+ "cost_number_input": "Prezzo al kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Seleziona come Home Assistant deve tenere traccia dei costi dell'energia consumata.",
+ "cost_stat": "Utilizzare un'entità che tiene traccia dei costi totali",
+ "cost_stat_input": "Entità costi totali",
+ "energy_stat": "Energia consumata (kWh)",
+ "header": "Configura il consumo di rete",
+ "no_cost": "Non tenere traccia dei costi",
+ "paragraph": "Il consumo di rete è l'energia che passa dalla rete energetica alla tua casa."
+ },
+ "to": {
+ "cost_entity": "Utilizzare un'entità con tariffa attuale",
+ "cost_entity_input": "Entità con la tariffa attuale",
+ "cost_number": "Utilizzare una tariffa statica",
+ "cost_number_input": "Tariffa per kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Ricevi denaro quando restituisci energia alla rete?",
+ "cost_stat": "Utilizza un'entità che tiene traccia del denaro totale ricevuto",
+ "cost_stat_input": "Entità di compensazione totale",
+ "energy_stat": "Energia restituita alla rete (kWh)",
+ "header": "Configura la produzione di rete",
+ "no_cost": "Non ricevo soldi indietro",
+ "paragraph": "La produzione di rete è l'energia che passa dai tuoi pannelli solari alla rete."
+ }
+ },
+ "grid_carbon_footprint": "Impronta di carbonio della rete",
+ "grid_consumption": "Consumo di rete",
+ "learn_more": "Maggiori informazioni su come iniziare.",
+ "return_to_grid": "Ritorno alla rete",
+ "sub": "Configura la quantità di energia che consumi dalla rete e, se produci energia, restituisci alla rete. Ciò consente a Home Assistant di tenere completamente traccia del consumo energetico della tua casa.",
+ "title": "Rete elettrica"
+ },
+ "new_device_info": "Dopo aver configurato un nuovo dispositivo, possono essere necessarie fino a 2 ore prima che i nuovi dati arrivino nella tua plancia energetica.",
+ "solar": {
+ "add_solar_production": "Aggiungi a produzione solare",
+ "dialog": {
+ "add_forecast": "Aggiungi previsione",
+ "dont_forecast_production": "Non prevedere la produzione",
+ "forecast_production": "Produzione prevista",
+ "header": "Configura i pannelli solari",
+ "solar_production_energy": "Energia di produzione solare (kWh)",
+ "solar_production_forecast": "Previsione della produzione solare",
+ "solar_production_forecast_description": "L'aggiunta di informazioni sulle previsioni di produzione solare ti consentirà di vedere rapidamente la tua produzione prevista per oggi."
+ },
+ "learn_more": "Maggiori informazioni su come iniziare.",
+ "solar_production": "Produzione solare",
+ "stat_predicted_production": "Previsione della tua produzione di energia solare",
+ "stat_production": "La tua produzione di energia solare",
+ "stat_return_to_grid": "Energia solare restituita alla rete",
+ "sub": "Consenti a Home Assistant di monitorare i tuoi pannelli solari e di fornirti informazioni sulle loro prestazioni.",
+ "title": "Pannelli solari"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "Le seguenti entità hanno uno stato negativo mentre è previsto uno stato positivo:",
+ "title": "L'entità ha uno stato negativo"
+ },
+ "entity_not_defined": {
+ "description": "Verifica l'integrazione o la tua configurazione che fornisce:",
+ "title": "Entità non definita"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "Le seguenti entità hanno la classe di stato 'measurement', ma manca 'last_reset':",
+ "title": "Ultimo ripristino mancante"
+ },
+ "entity_state_non_numeric": {
+ "description": "Le seguenti entità hanno uno stato che non può essere interpretato come numero:",
+ "title": "L'entità ha uno stato non numerico"
+ },
+ "entity_unavailable": {
+ "description": "Lo stato di queste entità configurate non è attualmente disponibile:",
+ "title": "Entità non disponibile"
+ },
+ "entity_unexpected_device_class": {
+ "description": "Le seguenti entità non hanno la classe di dispositivi prevista:",
+ "title": "Classe del dispositivo inaspettata"
+ },
+ "entity_unexpected_state_class": {
+ "description": "Le seguenti entità non dispongono della classe di stato prevista:",
+ "title": "Classe di stato inattesa"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "Le seguenti entità non hanno la classe di stato prevista \"total_increasing\"",
+ "title": "Classe di stato inattesa"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "Le seguenti entità non hanno le unità di misura previste \"Wh\", \"kWh\" o \"MWh\":",
+ "title": "Unità di misura inattesa"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "Le seguenti entità non hanno le unità di misura previste ''{currency}/kWh'', ''{currency}/Wh'' o ''{currency}/MWh'':",
+ "title": "Unità di misura inattesa"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "Le seguenti entità non hanno le unità di misura previste \"Wh\", \"kWh\" o \"MWh\" per un sensore di energia o \"m³\" o \"ft³\" per un sensore di gas:",
+ "title": "Unità di misura inaspettata"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "Le seguenti entità non hanno le unità di misura previste ''{currency}/kWh'', ''{currency}/Wh'', ''{currency}/MWh'', ''{currency}/m³'' o ''{currency}/ft³'':",
+ "title": "Unità di misura inattesa"
+ },
+ "recorder_untracked": {
+ "description": "Il registratore è stato configurato per escludere queste entità configurate:",
+ "title": "Entità non tracciata"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Entità",
+ "description": "Gestisci le entità conosciute",
+ "picker": {
+ "disable_selected": {
+ "button": "Disabilita selezionati",
+ "confirm_text": "Le entità disabilitate non saranno aggiunte a Home Assistant",
+ "confirm_title": "Vuoi disattivare {number} {number, plural,\n one {entità}\n other {entità}\n}?"
+ },
+ "enable_selected": {
+ "button": "Abilita selezionato",
+ "confirm_text": "Questo li renderà nuovamente disponibili in Home Assistant se ora sono disabilitati.",
+ "confirm_title": "Vuoi attivare {number} {number, plural,\n one {entità}\n other {entità}\n}?"
+ },
+ "filter": {
+ "filter": "Filtro",
+ "hidden_entities": "{number} {number, plural,\n one {entità}\n other {entità} \n} nascoste",
+ "show_all": "Mostra tutto",
+ "show_disabled": "Mostra entità disabilitate",
+ "show_readonly": "Mostra entità di sola lettura",
+ "show_unavailable": "Mostra entità non disponibili"
+ },
+ "header": "Entità",
+ "headers": {
+ "area": "Area",
+ "disabled_by": "Disabilitato da",
+ "entity_id": "ID entità",
+ "integration": "Integrazione",
+ "name": "Nome",
+ "status": "Stato"
+ },
+ "introduction": "Home Assistant mantiene un registro di tutte le entità che ha mai localizzato e possono essere identificate in modo univoco. A ciascuna di queste entità sarà assegnato un ID che sarà riservato solo a questa entità.",
+ "introduction2": "Utilizza il registro dell'entità per sovrascrivere il nome, modificare l'ID entità o rimuovere la voce da Home Assistant.",
+ "remove_selected": {
+ "button": "Rimuovi selezionati",
+ "confirm_partly_text": "Puoi rimuovere solo {removable} delle {selected} entità selezionate. Le entità possono essere rimosse solo quando l'integrazione non le fornisce più. A volte è necessario riavviare Home Assistant prima di poter rimuovere le entità di un'integrazione rimossa. Sei sicuro di voler rimuovere le entità rimovibili?",
+ "confirm_partly_title": "Soltanto {number} {number, plural,\n one {entità selezionata può}\n other {entità selezionate possono}\n} essere rimossa/e.",
+ "confirm_text": "Dovresti rimuoverli dalla configurazione di Lovelace e dalle automazioni se contengono queste entità.",
+ "confirm_title": "Vuoi rimuovere {number} {number, plural,\n one {entità}\n other {entità}\n}?"
+ },
+ "search": "Cerca entità",
+ "selected": "{number} selezionato",
+ "status": {
+ "disabled": "Disabilitato",
+ "ok": "Ok",
+ "readonly": "Sola lettura",
+ "restored": "Ripristinato",
+ "unavailable": "Non disponibile"
+ }
+ }
+ },
+ "header": "Configura Home Assistant",
+ "helpers": {
+ "caption": "Aiutanti",
+ "description": "Elementi che aiutano a costruire le automazioni",
+ "dialog": {
+ "add_helper": "Aggiungi aiutante",
+ "add_platform": "Aggiungi {platform}",
+ "create": "Crea"
+ },
+ "picker": {
+ "add_helper": "Aggiungi aiutante",
+ "headers": {
+ "editable": "Modificabile",
+ "entity_id": "ID Entità",
+ "name": "Nome",
+ "type": "Tipo"
+ },
+ "no_helpers": "Sembra che tu non abbia ancora nessun aiutante!"
+ },
+ "types": {
+ "counter": "Contatore",
+ "input_boolean": "Commutatore",
+ "input_button": "Pulsante",
+ "input_datetime": "Data e/o ora",
+ "input_number": "Numero",
+ "input_select": "A discesa",
+ "input_text": "Testo",
+ "timer": "Timer"
+ }
+ },
+ "info": {
+ "built_using": "Compilato usando",
+ "caption": "Informazioni",
+ "copy_github": "Per GitHub",
+ "copy_menu": "Copia menu",
+ "copy_raw": "Testo non elaborato",
+ "custom_uis": "Interfacce utente personalizzate:",
+ "description": "Versione, integrità del sistema e collegamenti alla documentazione",
+ "developed_by": "Sviluppato da un gruppo di persone fantastiche.",
+ "documentation": "Documentazione",
+ "frontend": "frontend-ui",
+ "frontend_version": "Versione interfaccia: {version} - {type}",
+ "home_assistant_logo": "Logo Home Assistant",
+ "icons_by": "Icone di",
+ "integrations": "Integrazioni",
+ "issues": "Problemi",
+ "license": "Pubblicato sotto la licenza Apache 2.0",
+ "path_configuration": "Percorso del file configuration.yaml: {path}",
+ "server": "server",
+ "setup_time": "Tempo di preparazione",
+ "source": "Sorgenti:",
+ "system_health": {
+ "manage": "Gestisci",
+ "more_info": "maggiori informazioni"
+ },
+ "system_health_error": "Il componente System Health non è caricato. Aggiungere 'system_health:' a configuration.yaml"
+ },
+ "integrations": {
+ "add_integration": "Aggiungi integrazione",
+ "attention": "Attenzione richiesta",
+ "caption": "Integrazioni",
+ "config_entry": {
+ "area": "In {area}",
+ "check_the_logs": "Controlla i registri",
+ "configure": "Configura",
+ "delete": "Elimina",
+ "delete_confirm": "Sei sicuro di voler eliminare l'integrazione {title}?",
+ "depends_on_cloud": "Dipende dal cloud",
+ "device_unavailable": "Dispositivo non disponibile",
+ "devices": "{count} {count, plural, \none {dispositivo}\nother {dispositivi}\n}",
+ "disable": {
+ "disable_confirm": "Sei sicuro di voler disabilitare questa voce di configurazione? I suoi dispositivi ed entità saranno disabilitati.",
+ "disabled": "Disabilitato",
+ "disabled_by": {
+ "device": "dispositivo",
+ "integration": "Integrazione",
+ "user": "utente"
+ },
+ "disabled_cause": "Disabilitato da {cause}"
+ },
+ "disable_error": "Abilitazione o disabilitazione dell'integrazione non riuscita",
+ "disable_restart_confirm": "Riavvia Home Assistant per terminare la disabilitazione di questa integrazione",
+ "disabled_polling": "Polling automatico per i dati aggiornati disabilitato",
+ "documentation": "Documentazione",
+ "download_diagnostics": "Scarica la diagnostica",
+ "enable_restart_confirm": "Riavvia Home Assistant per completare l'attivazione di questa integrazione",
+ "entities": "{count} {count, plural, \none {entità}\nother {entità}\n}",
+ "entity_unavailable": "Entità non disponibile",
+ "firmware": "Firmware: {version}",
+ "hardware": "Hardware: {version}",
+ "hub": "Connesso tramite",
+ "known_issues": "Problemi noti",
+ "manuf": "da {manufacturer}",
+ "no_area": "Nessuna area",
+ "not_loaded": "Non caricata",
+ "open_configuration_url": "Visita il dispositivo",
+ "provided_by_custom_integration": "Fornito da un'integrazione personalizzata",
+ "reload": "Ricarica",
+ "reload_confirm": "L'integrazione è stata ricaricata",
+ "reload_restart_confirm": "Riavvia Home Assistant per completare il ricaricamento di questa integrazione",
+ "rename": "Rinomina",
+ "restart_confirm": "Riavvia Home Assistant per completare la rimozione di questa integrazione",
+ "services": "{count} {count, plural,\n one {servizio}\n other {servizi}\n}",
+ "state": {
+ "failed_unload": "Impossibile scaricare",
+ "loaded": "Caricato",
+ "migration_error": "Errore di migrazione",
+ "not_loaded": "Non caricato",
+ "setup_error": "Configurazione non riuscita",
+ "setup_retry": "Nuovo tentativo di configurazione"
+ },
+ "system_options": "Opzioni di sistema",
+ "unknown_via_device": "Dispositivo sconosciuto",
+ "unnamed_entry": "Voce senza nome",
+ "via": "Connesso tramite"
+ },
+ "config_flow": {
+ "aborted": "Interrotto",
+ "close": "Chiudi",
+ "could_not_load": "Impossibile caricare il flusso di configurazione",
+ "created_config": "Configurazione creata per {name}.",
+ "dismiss": "Chiudi finestra di dialogo",
+ "error": "Errore",
+ "error_saving_area": "Errore durante il salvataggio dell'area: {error}",
+ "external_step": {
+ "description": "Questo passaggio richiede di visitare un sito web esterno per essere completato.",
+ "open_site": "Apri sito web"
+ },
+ "finish": "Finito",
+ "loading": {
+ "fallback_title": "l'integrazione",
+ "loading_flow": "Attendi mentre {integration} viene configurato",
+ "loading_step": "Caricamento del passaggio successivo per {integration}"
+ },
+ "next": "Prossimo",
+ "not_all_required_fields": "Non tutti i campi obbligatori sono compilati.",
+ "not_loaded": "L'integrazione non può essere caricata, prova a riavviare Home Assistant.",
+ "pick_flow_step": {
+ "new_flow": "No, configura un'altra istanza di {integration}",
+ "title": "Rilevati questi, li vuoi configurare?"
+ },
+ "submit": "Invia"
+ },
+ "configure": "Configura",
+ "configured": "Configurata",
+ "confirm_new": "Vuoi configurare {integration}?",
+ "description": "Gestisci le integrazioni con servizi o dispositivi",
+ "details": "Dettagli dell'integrazione",
+ "disable": {
+ "disabled_integrations": "{number} disabilitate",
+ "show": "Mostra",
+ "show_disabled": "Mostra integrazioni disabilitate"
+ },
+ "discovered": "Rilevato",
+ "home_assistant_website": "Sito Web di Home Assistant",
+ "ignore": {
+ "confirm_delete_ignore": "Questo farà apparire di nuovo l'integrazione tra quelle rilevate quando verrà individuata. Questo potrebbe richiedere un riavvio o impiegare del tempo.",
+ "confirm_delete_ignore_title": "Vuoi smettere di ignorare {name}?",
+ "confirm_ignore": "Sei sicuro di non voler configurare questa integrazione? È possibile annullare questa operazione facendo clic su 'Mostra integrazioni ignorate' nel menu di overflow in alto a destra.",
+ "confirm_ignore_title": "Ignorare a rilevazione di {name}?",
+ "ignore": "Ignora",
+ "ignored": "Ignorato",
+ "show_ignored": "Mostra integrazioni ignorate",
+ "stop_ignore": "Smetti di ignorare"
+ },
+ "integration": "Integrazione",
+ "integration_not_found": "Integrazione non trovata.",
+ "new": "Configura una nuova integrazione",
+ "no_integrations": "Sembra che tu non abbia ancora nessuna integrazione configurata. Fai clic sul pulsante in basso per aggiungere la tua prima integrazione!",
+ "none": "Non hai ancora configurato niente",
+ "none_found": "Non sono state trovate integrazioni",
+ "none_found_detail": "Modifica i criteri di ricerca.",
+ "note_about_integrations": "Nessuna integrazione corrisponde alla ricerca, l'integrazione che si desidera configurare potrebbe non essere ancora disponibile per la configurazione tramite l'interfaccia utente.",
+ "note_about_website_reference": "Ulteriori informazioni sono disponibili su ",
+ "reconfigure": "Riconfigurare",
+ "rename_dialog": "Modifica il nome di questa voce di configurazione",
+ "rename_input_label": "Nome della voce",
+ "search": "Cerca integrazioni"
+ },
+ "introduction": "In questa vista è possibile configurare i componenti e l'Home Assistant. Non tutto è ancora configurabile dall'interfaccia utente, ma ci stiamo lavorando.",
+ "logs": {
+ "caption": "Registri",
+ "clear": "Pulisci",
+ "copy": "Copia voce di registro",
+ "custom_integration": "integrazione personalizzata",
+ "description": "Vedi i registri di Home Assistant",
+ "details": "Dettagli registro ({level})",
+ "error_from_custom_integration": "Questo errore ha avuto origine da un'integrazione personalizzata.",
+ "level": {
+ "critical": "CRITICO",
+ "debug": "DEBUG",
+ "error": "ERRORE",
+ "info": "INFORMAZIONE",
+ "warning": "AVVERTIMENTO"
+ },
+ "load_full_log": "Carica il registro completo di Home Assistant",
+ "loading_log": "Caricamento del registro errori…",
+ "multiple_messages": "il messaggio si è verificato per la prima volta alle {time} e compare {counter} volte",
+ "no_errors": "Non sono stati segnalati errori.",
+ "no_issues": "Non ci sono nuovi problemi!",
+ "refresh": "Aggiorna"
+ },
+ "lovelace": {
+ "caption": "Plance di Lovelace",
+ "dashboards": {
+ "cant_edit_default": "La plancia predefinita di Lovelace, Panoramica, non può essere modificata dall'interfaccia utente. Puoi nasconderla impostando un'altra plancia come predefinita.",
+ "cant_edit_yaml": "Le plance definite in YAML non possono essere modificate dall'interfaccia utente. Modificale in configuration.yaml.",
+ "caption": "Plance",
+ "conf_mode": {
+ "storage": "Controllata dell'interfaccia utente",
+ "yaml": "File YAML"
+ },
+ "confirm_delete": "Sei sicuro di voler eliminare questa plancia?",
+ "confirm_delete_text": "La tua plancia sarà eliminata definitivamente.",
+ "confirm_delete_title": "Vuoi eliminare {dashboard_title}?",
+ "default_dashboard": "Questa è la plancia predefinita",
+ "detail": {
+ "create": "Crea",
+ "delete": "Elimina",
+ "dismiss": "Chiudi",
+ "edit_dashboard": "Modifica plancia",
+ "icon": "Icona",
+ "new_dashboard": "Aggiungi nuova plancia",
+ "remove_default": "Rimuovi come predefinita su questo dispositivo",
+ "require_admin": "Solo per l'amministratore",
+ "set_default": "Imposta come predefinita su questo dispositivo",
+ "show_sidebar": "Mostra nella barra laterale",
+ "title": "Titolo",
+ "title_required": "È richiesto il titolo.",
+ "update": "Aggiorna",
+ "url": "URL",
+ "url_error_msg": "L'URL dovrebbe contenere un - e non può contenere spazi o caratteri speciali, ad eccezione di _ e -"
+ },
+ "picker": {
+ "add_dashboard": "Aggiungi plancia",
+ "headers": {
+ "conf_mode": "Metodo di configurazione",
+ "default": "Predefinita",
+ "filename": "Nome del file",
+ "require_admin": "Solo per l'amministratore",
+ "sidebar": "Mostra nella barra laterale",
+ "title": "Titolo"
+ },
+ "open": "Apri"
+ }
+ },
+ "description": "Crea insiemi di schede personalizzate per controllare la tua casa",
+ "resources": {
+ "cant_edit_yaml": "Stai utilizzando Lovelace in modalità YAML, pertanto non è possibile gestire le risorse tramite l'interfaccia utente. Gestiscili in configuration.yaml.",
+ "caption": "Risorse",
+ "confirm_delete": "Sei sicuro di voler eliminare questa risorsa?",
+ "detail": {
+ "create": "Crea",
+ "delete": "Elimina",
+ "dismiss": "Chiudi",
+ "new_resource": "Aggiungi nuova risorsa",
+ "type": "Tipo di risorsa",
+ "update": "Aggiorna",
+ "url": "URL",
+ "url_error_msg": "URL è un campo obbligatorio",
+ "warning_header": "Fai attenzione!",
+ "warning_text": "L'aggiunta di risorse può essere pericolosa, assicurati di conoscere l'origine delle risorse e di considerarle attendibili. Risorse maligne potrebbero danneggiare seriamente il tuo sistema."
+ },
+ "picker": {
+ "add_resource": "Aggiungi risorsa",
+ "headers": {
+ "type": "Tipo",
+ "url": "URL"
+ },
+ "no_resources": "Nessuna risorsa"
+ },
+ "refresh_body": "Devi aggiornare la pagina per completare la rimozione. Vuoi aggiornare ora?",
+ "refresh_header": "Vuoi aggiornare?",
+ "types": {
+ "css": "Foglio di stile",
+ "html": "HTML (obsoleto)",
+ "js": "File JavaScript (obsoleto)",
+ "module": "Modulo JavaScript"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Ascolta un argomento",
+ "description_publish": "Pubblica un pacchetto",
+ "listening_to": "In ascolto di",
+ "message_received": "Messaggio {id} ricevuto su {topic} alle {time}:",
+ "payload": "Payload (modello consentito)",
+ "publish": "Pubblica",
+ "start_listening": "Inizia ad ascoltare",
+ "stop_listening": "Interrompere l'ascolto",
+ "subscribe_to": "Argomento a cui iscriversi",
+ "title": "MQTT",
+ "topic": "argomento"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Controllore",
+ "instance": "Istanza",
+ "network": "Rete",
+ "node_id": "ID del nodo",
+ "ozw_instance": "Istanza OpenZWave",
+ "query_stage": "Fase di richiesta",
+ "wakeup_instructions": "Istruzioni di riattivazione",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Nodo non riuscito",
+ "stage": "Fase",
+ "zwave_info": "Informazioni Z-Wave"
+ },
+ "navigation": {
+ "network": "Rete",
+ "node": {
+ "config": "Configurazione",
+ "dashboard": "Plancia"
+ },
+ "nodes": "Nodi",
+ "select_instance": "Seleziona istanza"
+ },
+ "network": {
+ "header": "Gestione della rete",
+ "introduction": "Gestisci le funzioni a livello di rete.",
+ "node_count": "{count} nodi"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "Tutti i nodi sono stati interrogati.",
+ "driverallnodesqueriedsomedead": "Tutti i nodi sono stati interrogati. Alcuni nodi sono stati trovati disattivi",
+ "driverawakenodesqueries": "Tutti i nodi svegli sono stati interrogati",
+ "driverfailed": "Impossibile connettersi al controller Z-Wave",
+ "driverready": "Inizializzazione del controller Z-Wave",
+ "driverremoved": "Il driver è stato rimosso",
+ "driverreset": "Il driver è stato reimpostato",
+ "offline": "OZWDaemon non in linea",
+ "ready": "Pronto per la connessione",
+ "started": "Collegato a MQTT",
+ "starting": "In collegamento a MQTT",
+ "stopped": "OpenZWave si è fermato"
+ },
+ "offline": "Disconnesso",
+ "online": "In linea",
+ "starting": "In avvio",
+ "unknown": "Sconosciuto"
+ },
+ "node": {
+ "button": "Dettagli del nodo",
+ "not_found": "Nodo non trovato"
+ },
+ "node_config": {
+ "header": "Configurazione del nodo",
+ "help_source": "Le descrizioni dei parametri di configurazione e il testo della guida sono forniti dal progetto OpenZWave.",
+ "introduction": "Gestisci i diversi parametri di configurazione per un nodo Z-Wave.",
+ "wakeup_help": "I nodi alimentati a batteria devono essere attivi per modificare la loro configurazione. Se il nodo non è attivo, OpenZWave tenterà di aggiornare la configurazione del nodo la prossima volta che si riattiva, il che potrebbe essere più ore (o giorni) dopo. Segui questi passaggi per riattivare il tuo dispositivo:"
+ },
+ "node_metadata": {
+ "product_manual": "Manuale del prodotto"
+ },
+ "node_query_stages": {
+ "associations": "Aggiornamento dell'associazione gruppi e appartenenze",
+ "cacheload": "Caricamento delle informazioni dal file di cache di OpenZWave. I nodi a batteria rimarranno in questa fase fino a quando il nodo non si riattiva.",
+ "complete": "Il processo di interrogazione è completo",
+ "configuration": "Recupero dei valori di configurazione dal nodo",
+ "dynamic": "Recupero di valori che cambiano di frequente dal nodo",
+ "instances": "Recupero dei dettagli sulle istanze o sui canali supportati da un dispositivo",
+ "manufacturerspecific1": "Recupero dei codici ID produttore e prodotto dal nodo",
+ "manufacturerspecific2": "Recupero di ulteriori codici ID prodotto e produttore dal nodo",
+ "neighbors": "Ottenere un elenco dei vicini del nodo",
+ "nodeinfo": "Recupero delle classi di comando supportate dal nodo",
+ "nodeplusinfo": "Recupero delle informazioni Z-Wave+ dal nodo",
+ "probe": "Controllo se il nodo è sveglio/attivo",
+ "protocolinfo": "Recupero delle funzionalità di base Z-Wave di questo nodo dal controller",
+ "session": "Recupero di valori che cambiano di rado dal nodo",
+ "static": "Recupero di valori statici dal dispositivo",
+ "versions": "Recupero di informazioni sulle versioni del firmware e della classe di comando",
+ "wakeup": "Configurazione del supporto per code di riattivazione e messaggi"
+ },
+ "nodes_table": {
+ "failed": "Non riuscito",
+ "id": "ID",
+ "manufacturer": "Produttore",
+ "model": "Modello",
+ "query_stage": "Fase di richiesta",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Se il nodo è alimentato a batteria, assicurati di riattivarlo prima di procedere",
+ "button": "Aggiorna nodo",
+ "complete": "Aggiornamento del nodo completato",
+ "description": "In questo modo si dirà a OpenZWave di interrogare nuovamente un nodo e aggiornare le classi di comando, le funzionalità e i valori del nodo.",
+ "node_status": "Stato del nodo",
+ "refreshing_description": "Aggiornamento delle informazioni sul nodo in corso…",
+ "start_refresh_button": "Avvia aggiornamento",
+ "step": "Passo",
+ "title": "Aggiorna le informazioni sul nodo",
+ "wakeup_header": "Istruzioni di riattivazione per",
+ "wakeup_instructions_source": "Le istruzioni di riattivazione provengono dal database dei dispositivi della comunità di OpenZWave."
+ },
+ "select_instance": {
+ "header": "Seleziona un'istanza OpenZWave",
+ "introduction": "Hai più di un'istanza OpenZWave in esecuzione. Quale istanza vorresti gestire?",
+ "none_found": "Non è stato possibile trovare un'istanza di OpenZWave. Se ritieni che ciò non sia corretto, controlla le tue impostazioni di OpenZWave e MQTT e assicurati che Home Assistant possa comunicare con il tuo broker MQTT."
+ },
+ "services": {
+ "add_node": "Aggiungi nodo",
+ "cancel_command": "Annulla comando",
+ "remove_node": "Rimuovi nodo"
+ }
+ },
+ "person": {
+ "add_person": "Aggiungi persona",
+ "caption": "Persone",
+ "confirm_delete": "Sei sicuro di voler eliminare questa persona?",
+ "confirm_delete2": "Tutti i dispositivi appartenenti a questa persona non saranno assegnati.",
+ "create_person": "Crea persona",
+ "description": "Gestisci le persone tracciate da Home Assistant",
+ "detail": {
+ "admin": "Amministratore",
+ "allow_login": "Consenti alla persona di accedere",
+ "confirm_delete_user": "Sei sicuro di voler eliminare l'account utente per {name}? Puoi ancora tenere traccia dell'utente, ma la persona non sarà più in grado di accedere.",
+ "create": "Crea",
+ "delete": "Elimina",
+ "device_tracker_intro": "Seleziona i dispositivi che appartengono a questa persona.",
+ "device_tracker_pick": "Scegli il dispositivo da tracciare",
+ "device_tracker_picked": "Traccia dispositivo",
+ "link_integrations_page": "Integrazioni",
+ "link_presence_detection_integrations": "Integrazioni di rilevamento presenza",
+ "linked_user": "Utente collegato",
+ "local_only": "Può accedere solo dalla rete locale",
+ "name": "Nome",
+ "name_error_msg": "Il nome è obbligatorio",
+ "new_person": "Nuova persona",
+ "no_device_tracker_available_intro": "Quando disponi di dispositivi che indicano la presenza di una persona, sarai in grado di assegnarli a essa qui. Puoi aggiungere il tuo primo dispositivo aggiungendo un'integrazione di rilevamento presenza dalla pagina delle integrazioni.",
+ "update": "Aggiorna"
+ },
+ "introduction": "Qui puoi definire ogni persona di interesse in Home Assistant.",
+ "learn_more": "Ulteriori informazioni sulle persone",
+ "no_persons_created_yet": "Sembra che tu non abbia ancora creato nessuna persona.",
+ "note_about_persons_configured_in_yaml": "Nota: le persone configurate tramite configuration.yaml non possono essere modificate tramite l'interfaccia utente.",
+ "person_not_found": "Non è stato possibile trovare la persona che si stava tentando di modificare.",
+ "person_not_found_title": "Persona non trovata"
+ },
+ "scene": {
+ "activated": "Scena attivata {name}.",
+ "caption": "Scene",
+ "description": "Cattura gli stati del dispositivo e richiamali facilmente in futuro",
+ "editor": {
+ "area": "Area",
+ "default_name": "Nuova scena",
+ "devices": {
+ "add": "Aggiungi un dispositivo",
+ "delete": "Elimina dispositivo",
+ "header": "Dispositivi",
+ "introduction": "Aggiungi i dispositivi che desideri includere nella scena. Imposta tutti i dispositivi sullo stato desiderato per questa scena."
+ },
+ "entities": {
+ "add": "Aggiungi un'entità",
+ "delete": "Elimina entità",
+ "device_entities": "Se aggiungi un'entità che appartiene a un dispositivo, il dispositivo sarà aggiunto.",
+ "header": "Entità",
+ "introduction": "Le entità che non appartengono a un dispositivo possono essere impostate qui.",
+ "without_device": "Entità senza dispositivo"
+ },
+ "icon": "Icona",
+ "introduction": "Usa le scene per far vivere la tua casa.",
+ "load_error_not_editable": "Solo le scene in scene.yaml sono modificabili.",
+ "load_error_unknown": "Errore durante il caricamento della scena ({err_no}).",
+ "name": "Nome",
+ "save": "Salva",
+ "unsaved_confirm": "Hai delle modifiche non salvate. Sei sicuro di voler uscire?"
+ },
+ "picker": {
+ "add_scene": "Aggiungi scena",
+ "delete_confirm": "Sei sicuro di voler eliminare questa scena?",
+ "delete_scene": "Elimina scena",
+ "duplicate": "Duplica",
+ "duplicate_scene": "Scena duplicata",
+ "edit_scene": "Modifica scena",
+ "header": "Editor di scene",
+ "headers": {
+ "name": "Nome"
+ },
+ "introduction": "L'Editor di scene ti consente di creare e modificare le scene. Segui il collegamento seguente per leggere le istruzioni e assicurarti di aver configurato correttamente Home Assistant.",
+ "learn_more": "Ulteriori informazioni sulle scene",
+ "no_scenes": "Non abbiamo trovato nessuna scena",
+ "only_editable": "Solo le scene definite in scenes.yaml sono modificabili.",
+ "pick_scene": "Scegli la scena da modificare",
+ "show_info_scene": "Mostra informazioni sulla scena"
+ }
+ },
+ "script": {
+ "caption": "Script",
+ "description": "Esegui una sequenza di azioni",
+ "editor": {
+ "alias": "Nome",
+ "default_name": "Nuovo script",
+ "delete_confirm": "Sei sicuro di voler eliminare questo script?",
+ "delete_script": "Elimina script",
+ "header": "Script: {name}",
+ "icon": "Icona",
+ "id": "ID Entità",
+ "id_already_exists": "Questo ID esiste già",
+ "id_already_exists_save_error": "Non puoi salvare questo script perché l'ID non è univoco, scegli un altro ID o lasciarlo vuoto per generarne automaticamente uno.",
+ "introduction": "Usa gli script per eseguire una sequenza di azioni.",
+ "link_available_actions": "Ulteriori informazioni sulle azioni disponibili.",
+ "load_error_not_editable": "Solo gli script all'interno di scripts.yaml sono modificabili.",
+ "max": {
+ "parallel": "Numero massimo di esecuzioni parallele",
+ "queued": "Lunghezza della coda"
+ },
+ "modes": {
+ "description": "La modalità controlla cosa succede quando lo script viene invocato mentre è ancora in esecuzione una o più invocazioni precedenti. Controlla la {documentation_link} per maggiori informazioni.",
+ "documentation": "documentazione degli script",
+ "label": "Modalità",
+ "parallel": "Parallelo",
+ "queued": "In coda",
+ "restart": "Riavvia",
+ "single": "Singolo (predefinito)"
+ },
+ "save_script": "Salva script",
+ "sequence": "Sequenza",
+ "sequence_sentence": "Sequenza delle azioni di questo script.",
+ "show_trace": "Mostra traccia"
+ },
+ "picker": {
+ "add_script": "Aggiungi script",
+ "dev_script": "Script di debug",
+ "duplicate": "Duplica",
+ "duplicate_script": "Duplica script",
+ "edit_script": "Modifica script",
+ "header": "Editor script",
+ "headers": {
+ "name": "Nome"
+ },
+ "introduction": "L'Editor di script consente di creare e modificare gli script. Segui il collegamento seguente per leggere le istruzioni e assicurarti di aver configurato correttamente Home Assistant.",
+ "learn_more": "Ulteriori informazioni sugli script",
+ "no_scripts": "Non abbiamo trovato nessuno script",
+ "run_script": "Esegui script",
+ "show_info": "Mostra informazioni sullo script"
+ }
+ },
+ "server_control": {
+ "caption": "Controlli del server",
+ "description": "Convalida e riavvia il server Home Assistant",
+ "section": {
+ "reloading": {
+ "automation": "Automazioni",
+ "command_line": "Entità di riga di comando",
+ "core": "Posizione e personalizzazioni",
+ "filesize": "Entità di dimensione del file",
+ "filter": "Entità filtro",
+ "generic": "Entità delle telecamere IP generiche",
+ "generic_thermostat": "Entità dei termostati generici",
+ "group": "Gruppi, entità di gruppo e servizi di notifica",
+ "heading": "Ricarica configurazione YAML",
+ "history_stats": "Entità delle statistiche storiche",
+ "homekit": "HomeKit",
+ "input_boolean": "Input booleani",
+ "input_button": "Pulsanti di immissione",
+ "input_datetime": "Input data e/o orari",
+ "input_number": "Input numerici",
+ "input_select": "Input di selezione",
+ "input_text": "Input testuali",
+ "introduction": "Alcune parti di Home Assistant possono essere ricaricate senza richiedere un riavvio. Premendo una delle opzioni seguenti si rimuoverà la loro attuale configurazione YAML e si caricherà quella nuova.",
+ "min_max": "Entità min/max",
+ "mqtt": "Entità MQTT configurate manualmente",
+ "person": "Persone",
+ "ping": "Entità del sensore binario Ping",
+ "reload": "{domain}",
+ "rest": "Entità REST e servizi di notifica REST",
+ "rpi_gpio": "Entità GPIO di Raspberry Pi",
+ "scene": "Scene",
+ "script": "Script",
+ "smtp": "Servizi di notifica SMTP",
+ "statistics": "Entità statistiche",
+ "telegram": "Servizi di notifica di Telegram",
+ "template": "Entità modello",
+ "themes": "Temi",
+ "timer": "Timer",
+ "trend": "Entità di tendenza",
+ "universal": "Entità del lettore multimediale universale",
+ "zone": "Zone"
+ },
+ "server_management": {
+ "confirm_restart": "Sei sicuro di voler riavviare Home Assistant?",
+ "confirm_stop": "Sei sicuro di voler arrestare Home Assistant?",
+ "heading": "Gestione del server",
+ "introduction": "Controlla il tuo Home Assistant.",
+ "restart": "Riavvia",
+ "stop": "Arresta"
+ },
+ "validation": {
+ "check_config": "Verifica Configurazione",
+ "heading": "Convalida della configurazione",
+ "introduction": "Controlla la configurazione se hai apportato modifiche di recente e vuoi assicurarti che sia tutto valido.",
+ "invalid": "Configurazione non valida",
+ "valid": "Configurazione valida!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Aggiungi etichetta",
+ "automation_title": "L'etichetta {name} è scansionata",
+ "caption": "Etichette",
+ "confirm_remove": "Sei sicuro di voler rimuovere l'etichetta {tag}?",
+ "confirm_remove_title": "Vuoi rimuovere l'etichetta?",
+ "create_automation": "Crea un'automazione con l'etichetta",
+ "description": "Attiva le automazioni alla scansione di un'etichetta NFC, un codice QR, ecc.",
+ "detail": {
+ "companion_apps": "app complementari",
+ "create": "Crea",
+ "create_and_write": "Crea e scrivi",
+ "delete": "Elimina",
+ "description": "Descrizione",
+ "name": "Nome",
+ "new_tag": "Nuova etichetta",
+ "tag_id": "ID etichetta",
+ "tag_id_placeholder": "Generato automaticamente quando lasciato vuoto",
+ "update": "Aggiorna",
+ "usage": "Un'etichetta può attivare un'automazione quando viene scansionata, puoi utilizzare etichette NFC, codici QR o qualsiasi altro tipo di etichetta. Utilizza il nostro {companion_link} per scrivere questa etichetta su un'etichetta NFC programmabile o crea un codice QR di seguito."
+ },
+ "edit": "Modifica",
+ "headers": {
+ "last_scanned": "Ultima scansione",
+ "name": "Nome"
+ },
+ "learn_more": "Ulteriori informazioni sulle etichette",
+ "never_scanned": "Mai scansionata",
+ "no_tags": "Nessuna etichetta",
+ "write": "Scrivi"
+ },
+ "updates": {
+ "more_updates": "+ {count} aggiornamenti",
+ "review": "recensione",
+ "show": "mostra",
+ "show_all_updates": "Mostra tutti gli aggiornamenti",
+ "title": "{count} {count, plural,\n one {aggiornamento}\n other {aggiornamenti}\n}",
+ "unable_to_fetch": "Impossibile caricare gli aggiornamenti",
+ "version_available": "La versione {version_available} è disponibile"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Aggiungi utente",
+ "create": "Crea",
+ "local_only": "Solo locale",
+ "password": "Password",
+ "password_confirm": "Conferma la password",
+ "password_not_match": "Le password non corrispondono"
+ },
+ "caption": "Utenti",
+ "description": "Gestisci gli account utente di Home Assistant",
+ "editor": {
+ "activate_user": "Attiva utente",
+ "active": "Attivo",
+ "active_tooltip": "Controlla se l'utente può effettuare l'accesso",
+ "admin": "Amministratore",
+ "caption": "Visualizza utente",
+ "change_password": "Cambia password",
+ "confirm_user_deletion": "Sei sicuro di voler eliminare {name} ?",
+ "deactivate_user": "Disattiva utente",
+ "delete_user": "Elimina utente",
+ "group": "Gruppo",
+ "id": "ID",
+ "local_only": "Può accedere solo dalla rete locale",
+ "name": "Nome da visualizzare",
+ "new_password": "Nuova password",
+ "owner": "Proprietario",
+ "password_changed": "La password è stata modificata con successo",
+ "system_generated": "Utente di sistema",
+ "system_generated_users_not_editable": "Impossibile aggiornare gli utenti di sistema.",
+ "system_generated_users_not_removable": "Impossibile rimuovere gli utenti di sistema.",
+ "unnamed_user": "Utente senza nome",
+ "update_user": "Aggiorna",
+ "username": "Nome utente"
+ },
+ "is_local": "Utente locale",
+ "is_not_active": "Disabilitato",
+ "is_owner": "Proprietario",
+ "is_system": "Utente di sistema",
+ "picker": {
+ "add_user": "Aggiungi utente",
+ "headers": {
+ "group": "Gruppo",
+ "is_active": "Attivo",
+ "is_owner": "Proprietario",
+ "local": "Locale",
+ "name": "Nome da visualizzare",
+ "system": "Sistema",
+ "username": "Nome utente"
+ }
+ },
+ "users_privileges_note": "La funzionalità del gruppo di utenti è in fase di elaborazione. L'utente non sarà in grado di amministrare l'istanza tramite l'interfaccia utente. Stiamo ancora verificando tutti gli endpoint dell'API di gestione per garantire che limitino correttamente l'accesso solo agli amministratori."
+ },
+ "zha": {
+ "add_device": "Aggiungi dispositivo",
+ "add_device_page": {
+ "discovered_text": "I dispositivi saranno visualizzati qui una volta rilevati.",
+ "no_devices_found": "Nessun dispositivo trovato, assicurati che siano in modalità di associazione e tienili attivi mentre la scansione è in esecuzione.",
+ "pairing_mode": "Assicurati che i tuoi dispositivi siano in modalità di associazione. Controlla le istruzioni del tuo dispositivo su come eseguire questa operazione.",
+ "search_again": "Cerca di nuovo",
+ "spinner": "Ricerca di dispositivi ZHA Zigbee…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Attributi del cluster selezionato",
+ "get_zigbee_attribute": "Ottieni l'attributo Zigbee",
+ "header": "Attributi del cluster",
+ "help_attribute_dropdown": "Seleziona un attributo da visualizzare o impostare il suo valore.",
+ "help_get_zigbee_attribute": "Ottieni il valore per l'attributo selezionato.",
+ "help_set_zigbee_attribute": "Imposta il valore dell'attributo per il cluster specificato nell'entità specificata.",
+ "introduction": "Visualizza e modifica gli attributi del cluster.",
+ "set_zigbee_attribute": "Imposta l'attributo Zigbee"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Comandi del cluster selezionato",
+ "header": "Comandi cluster",
+ "help_command_dropdown": "Seleziona un comando con cui interagire.",
+ "introduction": "Visualizza ed esegui comandi cluster.",
+ "issue_zigbee_command": "Inviare un comando Zigbee"
+ },
+ "clusters": {
+ "header": "Cluster",
+ "help_cluster_dropdown": "Seleziona un cluster per visualizzare attributi e comandi.",
+ "introduction": "I cluster sono gli elementi costitutivi della funzionalità Zigbee. Essi separano la funzionalità in unità logiche. Esistono tipi di client e di server che sono costituiti da attributi e comandi."
+ },
+ "common": {
+ "clusters": "Cluster",
+ "manufacturer_code_override": "Sostituzione codice produttore",
+ "value": "Valore"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Collegamenti",
+ "update_button": "Aggiorna configurazione"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Configurazione completata",
+ "CONFIGURED_status_text": "Inizializzazione",
+ "INITIALIZED": "Inizializzazione completata",
+ "INITIALIZED_status_text": "Il dispositivo è pronto per l'uso",
+ "INTERVIEW_COMPLETE": "Interrogazione completata",
+ "INTERVIEW_COMPLETE_status_text": "Configurazione",
+ "PAIRED": "Dispositivo trovato",
+ "PAIRED_status_text": "Inizio interrogazione"
+ },
+ "group_binding": {
+ "bind_button_help": "Collega il gruppo selezionato all'insieme dei dispositivi selezionati.",
+ "bind_button_label": "Collega gruppo",
+ "cluster_selection_help": "Seleziona i cluster da associare al gruppo selezionato.",
+ "group_picker_help": "Seleziona un gruppo per emettere un comando.",
+ "group_picker_label": "Gruppi collegabili",
+ "header": "Collegamento gruppo",
+ "introduction": "Collega e scollega gruppi",
+ "unbind_button_help": "Scollega il gruppo selezionato dall'insieme dei dispositivi selezionati.",
+ "unbind_button_label": "Scollega gruppo"
+ },
+ "groups": {
+ "add_group": "Aggiungi gruppo",
+ "add_members": "Aggiungi membri",
+ "caption": "Gruppi",
+ "create": "Crea gruppo",
+ "create_group": "Zigbee Home Automation - Crea gruppo",
+ "create_group_details": "Immettere i dettagli richiesti per creare un nuovo gruppo Zigbee",
+ "creating_group": "Creazione di un gruppo",
+ "delete": "Elimina gruppo",
+ "group_details": "Qui ci sono tutti i dettagli per il gruppo Zigbee selezionato.",
+ "group_id": "ID gruppo",
+ "group_info": "Informazioni sul gruppo",
+ "group_name_placeholder": "Nome del gruppo",
+ "group_not_found": "Gruppo non trovato!",
+ "groups": "Gruppi",
+ "members": "Membri",
+ "remove_members": "Rimuovi membri",
+ "removing_members": "Rimozione membri"
+ },
+ "network": {
+ "caption": "Rete"
+ },
+ "visualization": {
+ "auto_zoom": "Zoom automatico",
+ "caption": "Visualizzazione",
+ "enable_physics": "Abilita fisica",
+ "header": "Visualizzazione di rete",
+ "highlight_label": "Evidenzia dispositivi",
+ "refresh_topology": "Aggiorna la topologia",
+ "zoom_label": "Ingrandisci al dispositivo"
+ }
+ },
+ "zone": {
+ "add_zone": "Aggiungi zona",
+ "caption": "Zone",
+ "configured_in_yaml": "Le zone configurate tramite configuration.yaml non possono essere modificate tramite l'interfaccia utente.",
+ "confirm_delete": "Sei sicuro di voler eliminare questa zona?",
+ "create_zone": "Crea zona",
+ "description": "Gestisci le zone in cui si desidera tenere traccia delle persone",
+ "detail": {
+ "create": "Crea",
+ "delete": "Elimina",
+ "icon": "Icona",
+ "icon_error_msg": "L'icona deve essere nel formato \"prefisso:nome_icona\", ad esempio: \"mdi:home\"",
+ "latitude": "Latitudine",
+ "longitude": "Longitudine",
+ "name": "Nome",
+ "new_zone": "Nuova zona",
+ "passive": "Passivo",
+ "passive_note": "Le zone passive sono nascoste nell'interfaccia e non vengono utilizzate come posizione per i tracker dei dispositivi. Ciò è utile solamente se si desidera utilizzarle per le automazioni.",
+ "radius": "Raggio",
+ "required_error_msg": "Questo campo è obbligatorio",
+ "update": "Aggiorna"
+ },
+ "edit_home_zone": "Il raggio della zona di casa non può ancora essere modificato dall'interfaccia. Trascina l'indicatore sulla mappa per spostare la zona di casa.",
+ "edit_home_zone_narrow": "Il raggio della zona Casa non può ancora essere modificato dall'interfaccia. La posizione può essere modificata dalla configurazione generale.",
+ "edit_zone": "Modifica zona",
+ "go_to_core_config": "Vuoi passare alla configurazione generale?",
+ "home_zone_core_config": "La posizione della zona Casa è modificabile dalla pagina di configurazione generale. Il raggio della zona iniziale non può ancora essere modificato dall'interfaccia. Vuoi andare alla configurazione generale?",
+ "introduction": "Le zone consentono di specificare determinate regioni sulla Terra. Quando una persona si trova all'interno di una zona, nel suo stato apparirà il nome dalla zona. Le zone possono anche essere utilizzate come attivazioni (o trigger) o condizioni all'interno delle impostazioni di un'automazione.",
+ "no_zones_created_yet": "Sembra che tu non abbia ancora creato nessuna zona."
+ },
+ "zwave": {
+ "common": {
+ "index": "Indice",
+ "instance": "Esempio",
+ "unknown": "sconosciuto",
+ "value": "Valore",
+ "wakeup_interval": "Intervallo di riattivazione"
+ },
+ "description": "Gestisci la tua rete Z-Wave",
+ "learn_more": "Ulteriori informazioni su Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "Migrare a OpenZWave",
+ "introduction": "Questa procedura guidata consente di eseguire la migrazione dalla vecchia integrazione Z-Wave all'integrazione OpenZWave attualmente in versione beta."
+ },
+ "zwave_js": {
+ "header": "Migrazione a Z-Wave JS",
+ "introduction": "Questa integrazione non è più mantenuta e ti consigliamo di passare alla nuova integrazione Z-Wave JS. Questa procedura guidata ti aiuterà a migrare dalla vecchia integrazione Z-Wave alla nuova integrazione Z-Wave JS."
+ }
+ },
+ "network_management": {
+ "header": "Gestione della rete Z-Wave",
+ "introduction": "Esegui i comandi che interessano la rete Z-Wave. Non otterrai un riscontro sul successo della maggior parte dei comandi, ma puoi controllare il Log OZW per cercare di scoprirlo."
+ },
+ "network_status": {
+ "network_started": "Rete Z-Wave inizializzata",
+ "network_started_note_all_queried": "Tutti i nodi sono stati interrogati.",
+ "network_started_note_some_queried": "Sono stati interrogati i nodi attivi. I nodi dormienti verranno interrogati quando si attiveranno.",
+ "network_starting": "Inizializzazione della rete Z-Wave…",
+ "network_starting_note": "Questo potrebbe richiedere del tempo a seconda delle dimensioni della tua rete.",
+ "network_stopped": "Rete Z-Wave arrestata"
+ },
+ "node_config": {
+ "config_parameter": "Parametro di configurazione",
+ "config_value": "Valore di configurazione",
+ "false": "Falso",
+ "header": "Opzioni configurazione nodo",
+ "seconds": "secondi",
+ "set_config_parameter": "Imposta parametro di configurazione",
+ "set_wakeup": "Imposta intervallo di riattivazione",
+ "true": "Vero"
+ },
+ "node_management": {
+ "add_to_group": "Aggiungi al gruppo",
+ "entities": "Entità di questo nodo",
+ "entity_info": "Informazioni sull'entità",
+ "exclude_entity": "Escludi questa entità da Home Assistant",
+ "group": "Gruppo",
+ "header": "Gestione dei nodi Z-Wave",
+ "introduction": "Esegui i comandi Z-Wave che riguardano un singolo nodo. Scegli un nodo per visualizzare un elenco di comandi disponibili.",
+ "max_associations": "Num. massimo associazioni:",
+ "node_group_associations": "Associazioni ai gruppi di nodi",
+ "node_protection": "Protezione del nodo",
+ "node_to_control": "Nodo da controllare",
+ "nodes": "Nodi",
+ "nodes_hint": "Seleziona il nodo per visualizzare le opzioni per nodo",
+ "nodes_in_group": "Altri nodi di questo gruppo:",
+ "pooling_intensity": "Intensità di interrogazione ciclica",
+ "protection": "Protezione",
+ "remove_broadcast": "Rimuovi trasmissione",
+ "remove_from_group": "Rimuovi dal gruppo",
+ "set_protection": "Imposta protezione"
+ },
+ "ozw_log": {
+ "header": "Registro OZW",
+ "introduction": "Guarda il registro. 0 è il minimo (carica l'intero registro) e 1000 è il massimo. Load mostrerà un registro statico e la coda si aggiornerà automaticamente con l'ultimo numero di righe specificato del registro.",
+ "last_log_lines": "Numero delle ultime righe del registro",
+ "load": "Carica",
+ "tail": "Coda"
+ },
+ "services": {
+ "add_node": "Aggiungi nodo",
+ "add_node_secure": "Aggiungi nodo sicuro",
+ "cancel_command": "Annulla comando",
+ "heal_network": "Risana la rete",
+ "heal_node": "Risana nodo",
+ "node_info": "Informazioni sul nodo",
+ "print_node": "Stampa nodo",
+ "refresh_entity": "Aggiorna entità",
+ "refresh_node": "Aggiorna nodo",
+ "remove_failed_node": "Rimuovi nodo difettoso",
+ "remove_node": "Rimuovi nodo",
+ "replace_failed_node": "Sostituisci nodo difettoso",
+ "save_config": "Salva configurazione",
+ "soft_reset": "Soft Reset",
+ "start_network": "Avvia la rete",
+ "stop_network": "Ferma la rete",
+ "test_network": "Test della rete",
+ "test_node": "Test nodo"
+ },
+ "values": {
+ "header": "Valori del nodo"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Annulla inclusione",
+ "check_logs": "Controlla i registri per ulteriori informazioni.",
+ "choose_inclusion_strategy": "Come vuoi aggiungere il tuo dispositivo",
+ "controller_in_inclusion_mode": "Il tuo controller Z-Wave è ora in modalità inclusione.",
+ "enter_qr_code": "Inserisci il valore del codice QR",
+ "follow_device_instructions": "Segui le indicazioni fornite con il tuo dispositivo per attivare l'associazione sul dispositivo.",
+ "inclusion_failed": "Impossibile aggiungere il dispositivo.",
+ "inclusion_finished": "Il nodo è stato aggiunto.",
+ "interview_failed": "L'interrogazione al dispositivo non è riuscita. Ulteriori informazioni potrebbero essere disponibili nei registri.",
+ "interview_started": "Il dispositivo viene interrogato. Potrebbe volerci del tempo.",
+ "introduction": "Questa procedura ti guiderà nell'aggiunta di un nodo alla tua rete Z-Wave.",
+ "provisioning_finished": "Il dispositivo è stato aggiunto. Una volta acceso, diventerà disponibile.",
+ "qr_code": "Codice QR",
+ "qr_code_paragraph": "Se il tuo dispositivo supporta SmartStart, puoi scansionare il codice QR per un facile abbinamento.",
+ "scan_qr_code": "Scansiona codice QR",
+ "searching_device": "Ricerca del dispositivo",
+ "secure_inclusion_warning": "I dispositivi protetti richiedono una larghezza di banda aggiuntiva; troppi dispositivi sicuri possono rallentare la tua rete Z-Wave. Si consiglia di utilizzare l'inclusione sicura solo per i dispositivi che lo richiedono, come serrature o apri porta da garage.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Esempio: serrature per porte obsolete senza supporto S2",
+ "title": "S0 obsoleto"
+ },
+ "S2_AccessControl": {
+ "description": "Esempio: serrature e porte da garage",
+ "title": "S2 Controllo accessi"
+ },
+ "S2_Authenticated": {
+ "description": "Esempio: illuminazione, sensori e sistemi di sicurezza",
+ "title": "S2 Autenticato"
+ },
+ "S2_Unauthenticated": {
+ "description": "Come S2 Autenticato, ma senza la verifica che il dispositivo corretto sia incluso",
+ "title": "S2 Non autenticato"
+ }
+ },
+ "select_camera": "Seleziona la videocamera",
+ "start_inclusion": "Avvia inclusione",
+ "start_secure_inclusion": "Avvia inclusione sicura",
+ "title": "Aggiungi un nodo Z-Wave",
+ "use_secure_inclusion": "Usa l'inclusione sicura",
+ "view_device": "Visualizza dispositivo"
+ },
+ "common": {
+ "add_node": "Aggiungi nodo",
+ "back": "Indietro",
+ "close": "Chiudi",
+ "heal_network": "Ripara la rete",
+ "home_id": "ID Home",
+ "network": "Rete",
+ "node_id": "ID nodo",
+ "reconfigure_server": "Riconfigura il server",
+ "remove_node": "Rimuovi nodo",
+ "source": "Fonte"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural, \none {dispositivo}\nother {dispositivi}\n}",
+ "driver_version": "Versione del driver",
+ "dump_dead_nodes_text": "Alcuni dei tuoi nodi non hanno risposto e si presume che siano disattivi. Questi non verranno esportati completamente.",
+ "dump_dead_nodes_title": "Alcuni dei tuoi nodi sono disattivi",
+ "dump_debug": "Scarica i dati",
+ "dump_not_ready_confirm": "Scarica",
+ "dump_not_ready_text": "Se crei un'esportazione mentre i nodi non sono tutti pronti, potresti perdere dati necessari. Dai alla tua rete un po' di tempo per interrogare tutti i nodi. Vuoi continuare con l'esportazione?",
+ "dump_not_ready_title": "Non tutti i nodi sono ancora pronti",
+ "header": "Gestisci la tua rete Z-Wave",
+ "home_id": "ID Home",
+ "introduction": "Gestisci la tua rete Z-Wave e i nodi Z-Wave",
+ "nodes_ready": "Nodi pronti",
+ "not_ready": "{count} non pronto",
+ "provisioned_devices": "Dispositivi registrati",
+ "server_url": "URL del server",
+ "server_version": "Versione del server"
+ },
+ "device_info": {
+ "device_config": "Configura il dispositivo",
+ "heal_node": "Ripristina dispositivo",
+ "highest_security": "Massima sicurezza",
+ "is_secure": "Sicuro",
+ "node_ready": "Nodo pronto",
+ "node_status": "Stato del nodo",
+ "reinterview_device": "Interroga di nuovo il dispositivo",
+ "remove_failed": "Rimuovi dispositivo guasto",
+ "unknown": "Sconosciuto",
+ "zwave_info": "Informazioni Z-Wave",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Versione {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "La riparazione della rete è stata annullata.",
+ "healing_complete": "La riparazione della rete è completa.",
+ "healing_failed": "Riparazione non riuscita. Ulteriori informazioni potrebbero essere disponibili nei registri.",
+ "in_progress": "La riparazione della rete è in corso. Questo richiederà del tempo.",
+ "introduction": "Avvia una riparazione di rete sulla tua rete Z-Wave. Una riparazione della rete farà sì che tutti i dispositivi ricalcolino i loro percorsi verso il controller ed è consigliata se hai spostato di recente i dispositivi o il controller.",
+ "run_in_background": "Puoi chiudere questa finestra di dialogo e la riparazione della rete continuerà in sottofondo.",
+ "start_heal": "Inizia la riparazione",
+ "stop_heal": "Ferma la riparazione",
+ "title": "Ripara la tua rete Z-Wave",
+ "traffic_warning": "Il processo di riparazione genera una grande quantità di traffico sulla rete Z-Wave. Ciò potrebbe far sì che i dispositivi rispondano lentamente (o non rispondano affatto) mentre è in corso la riparazione."
+ },
+ "heal_node": {
+ "healing_complete": "{device} è stato ripristinato.",
+ "healing_failed": "Impossibile ripristinare {device}.",
+ "healing_failed_check_logs": "Ulteriori informazioni potrebbero essere disponibili nei registri.",
+ "in_progress": "Il ripristino di {device} è in corso.",
+ "introduction": "Indica a {device} di aggiornare i suoi percorsi al controller. Questo può aiutare con problemi di comunicazione se hai spostato di recente il dispositivo o il controller.",
+ "network_heal_in_progress": "È già in corso un ripristino della rete Z-Wave. Attendi che finisca prima di ripristinare un singolo dispositivo.",
+ "start_heal": "Ripristina il dispositivo",
+ "title": "Ripristina un dispositivo Z-Wave",
+ "traffic_warning": "Il processo di riparazione genera una grande quantità di traffico sulla rete Z-Wave. Ciò potrebbe far sì che i dispositivi rispondano lentamente (o non rispondano affatto) mentre è in corso la riparazione."
+ },
+ "logs": {
+ "download_logs": "Scarica i registri",
+ "log_level": "Livello di registro",
+ "log_level_changed": "Livello di registro modificato in: {level}",
+ "subscribed_to_logs": "Sottoscritto ai messaggi del registro di Z-Wave JS…",
+ "title": "Registri Z-Wave JS"
+ },
+ "navigation": {
+ "logs": "Registri",
+ "network": "Rete"
+ },
+ "network_status": {
+ "connected": "Connesso",
+ "connecting": "In collegamento",
+ "unknown": "Sconosciuto"
+ },
+ "node_config": {
+ "attribution": "I parametri e le descrizioni di configurazione del dispositivo sono forniti da {device_database}",
+ "battery_device_notice": "I dispositivi batteria devono essere attivi per aggiornare la loro configurazione. Fai riferimento al manuale del dispositivo per istruzioni su come riattivare il dispositivo.",
+ "error_device_not_found": "Dispositivo non trovato",
+ "header": "Configurazione del dispositivo Z-Wave",
+ "introduction": "Gestisci e regola i parametri di configurazione specifici del dispositivo (nodo) per il dispositivo selezionato",
+ "parameter": "Parametro",
+ "parameter_is_read_only": "Questo parametro è di sola lettura.",
+ "set_param_accepted": "Il parametro è stato aggiornato.",
+ "set_param_error": "Si è verificato un errore.",
+ "set_param_queued": "La modifica del parametro è stata messa in coda e verrà aggiornata quando il dispositivo si riattiva.",
+ "zwave_js_device_database": "Database dei dispositivi Z-Wave JS"
+ },
+ "node_status": {
+ "alive": "Attivo",
+ "asleep": "Addormentato",
+ "awake": "Sveglio",
+ "dead": "Disattivo",
+ "unknown": "Sconosciuto"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "Se annulli la registrazione del dispositivo, questo non sarà aggiunto a Home Assistant quando è acceso. Se è già stato aggiunto a Home Assistant, la rimozione del dispositivo di cui è stato eseguita la registrazione non lo rimuoverà da Home Assistant.",
+ "confirm_unprovision_title": "Sei sicuro di voler annullare la registrazione del dispositivo?",
+ "dsk": "DSK",
+ "included": "Incluso",
+ "not_included": "Non incluso",
+ "security_classes": "Classi di sicurezza",
+ "unprovison": "Deregistra"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "Sarà necessario riattivare i dispositivi alimentati a batteria prima di iniziare la nuova interrogazione. Fai riferimento al manuale del dispositivo per istruzioni su come riattivare il dispositivo.",
+ "in_progress": "Il dispositivo viene interrogato. Potrebbe volerci un po' di tempo.",
+ "interview_complete": "Interrogazione del dispositivo completata.",
+ "interview_failed": "L'interrogazione al dispositivo non è riuscita. Ulteriori informazioni potrebbero essere disponibili nei registri.",
+ "introduction": "Interroga nuovamente un dispositivo sulla tua rete Z-Wave. Usa questa funzione se il tuo dispositivo ha funzionalità mancanti o errate.",
+ "run_in_background": "Puoi chiudere questa finestra di dialogo e l'interrogazione continuerà in background.",
+ "start_reinterview": "Inizia una nuova interrogazione",
+ "title": "Interroga di nuovo un dispositivo Z-Wave"
+ },
+ "remove_failed_node": {
+ "in_progress": "La rimozione del dispositivo è in corso.",
+ "introduction": "Rimuovi un dispositivo guasto dalla tua rete Z-Wave. Usa questa opzione se non sei in grado di escludere normalmente un dispositivo perché guasto.",
+ "removal_failed": "Non è stato possibile rimuovere il dispositivo dalla rete Z-Wave.",
+ "removal_finished": "Il nodo {id} è stato rimosso dalla tua rete Z-Wave.",
+ "remove_device": "Rimuovi dispositivo",
+ "title": "Rimuovere un dispositivo Z-Wave guasto"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Annulla esclusione",
+ "controller_in_exclusion_mode": "Il tuo controller Z-Wave è ora in modalità di esclusione.",
+ "exclusion_failed": "Impossibile rimuovere il nodo. Si prega di controllare i registri per ulteriori informazioni.",
+ "exclusion_finished": "Il nodo {id} è stato rimosso dalla tua rete Z-Wave.",
+ "follow_device_instructions": "Segui le indicazioni fornite con il tuo dispositivo per attivare l'esclusione sul dispositivo.",
+ "introduction": "Rimuovi un nodo dalla tua rete Z-Wave e rimuovi il dispositivo e le entità associati da Home Assistant.",
+ "start_exclusion": "Avvia esclusione",
+ "title": "Rimuovi un nodo Z-Wave"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Nessuno"
+ },
+ "S0_Legacy": {
+ "description": "Esempio: serrature per porte obsolete senza supporto S2",
+ "title": "S0 obsoleto"
+ },
+ "S2_AccessControl": {
+ "description": "Esempio: serrature e porte da garage",
+ "title": "S2 Controllo accessi"
+ },
+ "S2_Authenticated": {
+ "description": "Esempio: illuminazione, sensori e sistemi di sicurezza",
+ "title": "S2 Autenticato"
+ },
+ "S2_Unauthenticated": {
+ "description": "Come S2 Autenticato, ma senza la verifica che il dispositivo corretto sia incluso",
+ "title": "S2 Non autenticato"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Avrà accesso a tutti i dati in Home Assistant.",
+ "hide_message": "Controlla la documentazione per il componente panel_custom per nascondere questo messaggio",
+ "question_trust": "Ti fidi del pannello esterno {name} su {link} ?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Ascoltatori attivi",
+ "alert_event_type": "Il tipo di evento è un campo obbligatorio",
+ "available_events": "Eventi disponibili",
+ "count_listeners": " ({count} ascoltatori)",
+ "data": "Dati evento (YAML, opzionale)",
+ "description": "Attiva un evento sul bus eventi.",
+ "documentation": "Documentazione degli eventi",
+ "event_fired": "Evento {name} generato",
+ "fire_event": "Scatena evento",
+ "listen_to_events": "Ascolta gli eventi",
+ "listening_to": "In ascolto di",
+ "notification_event_fired": "Evento {type} eseguito correttamente!",
+ "start_listening": "Iniziare ad ascoltare",
+ "stop_listening": "Interrompi l'ascolto",
+ "subscribe_to": "Evento a cui iscriversi",
+ "title": "Eventi",
+ "type": "Tipo di evento"
+ },
+ "services": {
+ "accepts_target": "Questo servizio accetta una destinazione, per esempio: `entity_id: light.bed_light`.",
+ "all_parameters": "Tutti i parametri disponibili",
+ "call_service": "Invoca il servizio",
+ "column_description": "Descrizione",
+ "column_example": "Esempio",
+ "column_parameter": "Parametro",
+ "description": "Lo strumento di sviluppo del servizio consente di chiamare qualsiasi servizio disponibile in Home Assistant.",
+ "fill_example_data": "Inserisci dati di esempio",
+ "no_template_ui_support": "L'interfaccia utente non supporta i modelli, puoi comunque utilizzare l'editor YAML.",
+ "title": "Servizi",
+ "ui_mode": "Vai in modalità interfaccia utente",
+ "yaml_mode": "Vai in modalità YAML",
+ "yaml_parameters": "Parametri disponibili solo in modalità YAML"
+ },
+ "states": {
+ "alert_entity_field": "Entità è un campo obbligatorio",
+ "attributes": "Attributi",
+ "copy_id": "Copia ID negli appunti",
+ "current_entities": "Entità attuali",
+ "description1": "Imposta lo stato attuale di un'entità all'interno di Home Assistant.",
+ "description2": "Se l'entità appartiene a un dispositivo, non si potrà attuare nessuna comunicazione con esso.",
+ "entity": "Entità",
+ "filter_attributes": "Filtra attributi",
+ "filter_entities": "Filtra entità",
+ "filter_states": "Filtra stati",
+ "last_changed": "Ultima modifica",
+ "last_updated": "Ultimo aggiornamento",
+ "more_info": "Ulteriori informazioni",
+ "no_entities": "Nessuna entità",
+ "set_state": "Imposta stato",
+ "state": "Stato",
+ "state_attributes": "Attributi di stato (YAML, facoltativo)",
+ "title": "Stati"
+ },
+ "statistics": {
+ "entity": "Entità",
+ "fix_issue": {
+ "fix": "Risolvi il problema",
+ "units_changed": {
+ "clear": "Elimina tutti i vecchi dati statistici per questa entità",
+ "fix": "Risolvi il problema",
+ "title": "L'unità di misura di questa entità è cambiata",
+ "update": "Aggiornare i valori statistici storici da ''{metadata_unit}'' a ''{state_unit}''"
+ }
+ },
+ "issue": "Problema",
+ "issues": {
+ "entity_no_longer_recorded": "Questa entità non viene più registrata.",
+ "entity_not_recorded": "Questa entità è esclusa dalla registrazione.",
+ "no_state": "Nessuno stato disponibile per questa entità.",
+ "units_changed": "L'unità di misura di questa entità è cambiata da ''{metadata_unit}'' a ''{state_unit}''.",
+ "unsupported_state_class": "La classe di stato ''{state_class}'' di questa entità non è supportata.",
+ "unsupported_unit": "L'unità di misura (''{state_unit}'') di questa entità non corrisponde a un'unità di misura della classe dispositivo ''{device_class}''.",
+ "unsupported_unit_metadata": "L'unità (''{metadata_unit}'') delle statistiche registrate non corrisponde all'unità supportata ''{supported_unit}'' della classe di dispositivo ''{device_class}''.",
+ "unsupported_unit_state": "L'unità (''{state_unit}'') di questa entità non corrisponde a un'unità della classe di dispositivo ''{device_class}''."
+ },
+ "no_issue": "Nessun problema",
+ "title": "Statistiche"
+ },
+ "templates": {
+ "all_listeners": "Questo modello ascolta tutti gli eventi di stato modificati.",
+ "description": "Il rendering dei modelli viene eseguito utilizzando il motore di modelli Jinja2 con alcune estensioni specifiche di Home Assistant.",
+ "domain": "Dominio",
+ "editor": "Editor di modelli",
+ "entity": "Entità",
+ "jinja_documentation": "Documentazione del modello Jinja2",
+ "listeners": "Questo modello ascolta i seguenti eventi di cambiamento di stato:",
+ "no_listeners": "Questo modello non ascolta alcun evento e non si aggiornerà automaticamente.",
+ "reset": "Ripristina il modello di esempio",
+ "result_type": "Tipo di risultato",
+ "template_extensions": "Estensioni del modello Home Assistant",
+ "time": "Questo modello si aggiorna all'inizio di ogni minuto.",
+ "title": "Modelli",
+ "unknown_error_template": "Errore sconosciuto nel rendering del modello"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Monitora i singoli dispositivi",
+ "energy_distribution_title": "Distribuzione dell'energia",
+ "energy_gas_graph_title": "Consumo di gas",
+ "energy_solar_graph_title": "Produzione solare",
+ "energy_sources_table_title": "Fonti",
+ "energy_usage_graph_title": "Consumo energetico"
+ },
+ "charts": {
+ "by_device": "Consumo per dispositivo",
+ "solar": "Solare",
+ "stat_house_energy_meter": "Consumo totale di energia"
+ },
+ "setup": {
+ "back": "Indietro",
+ "done": "Mostrami la mia plancia energetica!",
+ "next": "Avanti"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Questa funzione può essere utilizzata solo dopo aver preso il controllo dell'interfaccia utente di Lovelace.",
+ "saving_failed": "Salvataggio della configurazione dell'interfaccia utente di Lovelace non riuscito.",
+ "yaml_unsupported": "Non puoi utilizzare questa funzione quando utilizzi l'interfaccia utente di Lovelace in modalità YAML."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Sei sicuro di voler eseguire l'azione \"{action}\"?",
+ "no_entity_more_info": "Nessuna entità fornita per la finestra di dialogo con ulteriori informazioni",
+ "no_entity_toggle": "Nessuna entità fornita per attivare/disattivare",
+ "no_navigation_path": "Nessun percorso di navigazione specificato",
+ "no_service": "Nessun servizio da eseguire specificato",
+ "no_url": "Nessun URL da aprire specificato"
+ },
+ "confirm_delete": "Sei sicuro di voler eliminare questa scheda?",
+ "empty_state": {
+ "go_to_integrations_page": "Vai alla pagina delle integrazioni.",
+ "no_devices": "Questa pagina ti consente di controllare i tuoi dispositivi, tuttavia sembra che tu non abbia ancora configurato uno. Vai alla pagina delle integrazioni per iniziare.",
+ "title": "Benvenuto a casa"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "Questa scheda indica quanta dell'energia consumata dalla tua casa è stata generata utilizzando combustibili non fossili come il solare, l'eolico e il nucleare. Più alto è, meglio è!",
+ "non_fossil_energy_consumed": "Energia non fossile consumata",
+ "non_fossil_energy_not_calculated": "Non è stato possibile calcolare l'energia non fossile consumata"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Consumo energetico"
+ },
+ "energy_distribution": {
+ "battery": "Batteria",
+ "gas": "Gas",
+ "go_to_energy_dashboard": "Vai alla plancia energia",
+ "grid": "Rete",
+ "home": "Home",
+ "non_fossil": "Non fossile",
+ "solar": "Solare",
+ "title_today": "Distribuzione dell'energia oggi"
+ },
+ "energy_solar_graph": {
+ "forecast": "Previsione {name}",
+ "production": "Produzione {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Batteria totale",
+ "cost": "Costo",
+ "energy": "Energia",
+ "grid_total": "Totale rete",
+ "source": "Fonte",
+ "total_costs": "Costi totali"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Combinato dalla rete",
+ "consumed_battery": "Batteria consumata",
+ "consumed_solar": "Solare consumato",
+ "total_consumed": "Totale consumato {num} kWh",
+ "total_returned": "Totale restituito {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Se l'ago è nel viola, hai restituito più energia alla rete di quanta ne hai consumata. Se è nel blu, hai consumato più energia dalla rete di quanta ne hai restituita.",
+ "energy_dependency": "Questa scheda indica il tuo utilizzo netto di energia.",
+ "grid_neutrality_not_calculated": "Impossibile calcolare la neutralità della rete",
+ "net_consumed_grid": "Netto consumato dalla rete",
+ "net_returned_grid": "Netto restituito alla rete",
+ "red_green_color_explain": "Se è verde, significa che hai prodotto più energia di quella che hai consumato dalla rete. Se è in rosso, significa che hai fatto affidamento sulla rete per parte del consumo energetico della tua casa."
+ },
+ "loading": "Caricamento...",
+ "no_data": "Non ci sono dati da mostrare. Possono essere necessarie fino a 2 ore prima che i nuovi dati arrivino dopo aver configurato la plancia energetica.",
+ "no_data_period": "Non ci sono dati per questo periodo.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "Questa scheda indica quanta dell'energia solare che hai prodotto è stata utilizzata dalla tua casa invece di essere restituita alla rete.",
+ "card_indicates_solar_energy_used_charge_home_bat": "Se questo numero è in genere molto basso, indicando una produzione solare in eccesso, potresti prendere in considerazione la possibilità di caricare una batteria domestica o un'auto elettrica dai tuoi pannelli solari in periodi di elevata produzione solare.",
+ "not_produced_solar_energy": "Non hai prodotto energia solare",
+ "self_consumed_solar_could_not_calc": "L'energia solare autoconsumata non può essere calcolata",
+ "self_consumed_solar_energy": "Energia solare autoconsumata"
+ }
+ },
+ "entities": {
+ "never_triggered": "Mai attivato"
+ },
+ "iframe": {
+ "error_secure_context": "Impossibile caricare iframe che puntano a siti web utilizzando {target_protocol} se Home Assistant è servito su {context_protocol}."
+ },
+ "map": {
+ "reset_focus": "Ripristina messa a fuoco"
+ },
+ "picture-elements": {
+ "call_service": "Invoca il servizio {name}",
+ "hold": "Tieni premuto:",
+ "more_info": "Mostra ulteriori informazioni: {name}",
+ "navigate_to": "Vai a {location}",
+ "tap": "Tocca:",
+ "toggle": "Commuta {name}",
+ "url": "Apri la finestra per {url_path}"
+ },
+ "safe-mode": {
+ "description": "Home Assistant ha riscontrato problemi durante il caricamento della configurazione ed è ora in esecuzione in modalità provvisoria. Dai un'occhiata al registro degli errori per vedere cosa è andato storto.",
+ "header": "Modalità provvisoria attivata"
+ },
+ "shopping-list": {
+ "add_item": "Aggiungi elemento",
+ "checked_items": "Elementi selezionati",
+ "clear_items": "Cancella gli elementi selezionati",
+ "drag_and_drop": "Trascina e rilascia",
+ "reorder_items": "Riordina elementi"
+ },
+ "show_more_info": "Mostra maggiori informazioni",
+ "starting": {
+ "description": "Home Assistant sta per avviarsi, attendi…"
+ }
+ },
+ "changed_toast": {
+ "message": "La configurazione dell'interfaccia utente di Lovelace per questa plancia è stata aggiornata. Vuoi ricaricare per vedere le modifiche?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Giorno",
+ "month": "Mese",
+ "next": "Prossimo",
+ "previous": "Precedente",
+ "today": "Oggi",
+ "week": "Settimana",
+ "year": "Anno"
+ },
+ "timestamp-display": {
+ "invalid": "Marca temporale non valida",
+ "invalid_format": "Formato di visualizzazione non valido"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Invoca il servizio",
+ "default_action": "Azione predefinita",
+ "more-info": "Ulteriori informazioni",
+ "navigate": "Vai a",
+ "none": "Nessuna azione",
+ "toggle": "Commuta",
+ "url": "URL"
+ },
+ "navigation_path": "Percorso di navigazione",
+ "url_path": "Percorso URL"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Stati disponibili",
+ "description": "La scheda del Pannello di Allarme consente di attivare e disattivare le tue integrazioni del pannello di controllo allarme.",
+ "name": "Pannello degli avvisi"
+ },
+ "area": {
+ "description": "La scheda Area visualizza automaticamente le entità di un'area specifica.",
+ "name": "Area",
+ "show_camera": "Mostra il segnale della videocamera invece dell'immagine dell'area"
+ },
+ "button": {
+ "default_action_help": "L'azione predefinita dipende dalle capacità dell'entità, verrà attivata o disattivata o verrà visualizzata la finestra di dialogo con ulteriori informazioni.",
+ "description": "La scheda Pulsante consente di aggiungere pulsanti per eseguire attività.",
+ "name": "Pulsante"
+ },
+ "calendar": {
+ "calendar_entities": "Entità calendario",
+ "description": "La scheda Calendario mostra un calendario che include le visualizzazioni per giorno, settimana ed elenco",
+ "inital_view": "Vista iniziale",
+ "name": "Calendario",
+ "views": {
+ "dayGridDay": "Giorno",
+ "dayGridMonth": "Mese",
+ "listWeek": "Elenco"
+ }
+ },
+ "conditional": {
+ "card": "Scheda",
+ "change_type": "Cambia tipo",
+ "condition_explanation": "La scheda sarà mostrata quando TUTTE le seguenti condizioni saranno soddisfatte.",
+ "conditions": "Condizioni",
+ "current_state": "attuale",
+ "description": "La scheda Condizionale visualizza un'altra scheda in base agli stati dell'entità.",
+ "name": "Condizionale",
+ "state_equal": "Lo stato è uguale a",
+ "state_not_equal": "Stato non è uguale a"
+ },
+ "config": {
+ "optional": "facoltativo",
+ "required": "richiesto"
+ },
+ "entities": {
+ "description": "La scheda Entità è il tipo di scheda più comune. Raggruppa gli elementi in elenchi.",
+ "edit_special_row": "Visualizza i dettagli di questa riga facendo clic sul pulsante di modifica",
+ "entity_row": {
+ "attribute": "Attributo",
+ "button": "Pulsante",
+ "buttons": "Pulsanti",
+ "call-service": "Invoca il servizio",
+ "cast": "Cast",
+ "conditional": "Condizionale",
+ "divider": "Divisore",
+ "section": "Sezione",
+ "weblink": "Collegamento Web"
+ },
+ "entity_row_editor": "Editor di riga dell'entità",
+ "name": "Entità",
+ "secondary_info_values": {
+ "brightness": "Luminosità",
+ "entity-id": "ID Entità",
+ "last-changed": "Ultima modifica",
+ "last-triggered": "Ultima attivazione",
+ "last-updated": "Ultimo aggiornamento",
+ "none": "Nessuna informazione secondaria",
+ "position": "Posizione",
+ "tilt-position": "Posizione di inclinazione"
+ },
+ "show_header_toggle": "Mostrare l'interruttore dell'intestazione?",
+ "special_row": "riga speciale",
+ "toggle": "Attiva/disattiva entità."
+ },
+ "entity-filter": {
+ "description": "La scheda Filtro entità consente di definire un elenco di entità che si desidera monitorare quando sono solamente in un determinato stato.",
+ "name": "Filtro entità"
+ },
+ "entity": {
+ "description": "La scheda Entità offre una rapida panoramica dello stato dell'entità.",
+ "name": "Entità"
+ },
+ "gauge": {
+ "description": "La scheda Indicatore è una scheda di base che consente di visualizzare i dati di un sensore.",
+ "name": "Indicatore",
+ "needle_gauge": "Visualizza come indicatore a lancetta?",
+ "severity": {
+ "define": "Vuoi definire l'intensità?",
+ "green": "Verde",
+ "red": "Rosso",
+ "yellow": "Giallo"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Proporzioni",
+ "attribute": "Attributo",
+ "camera_image": "Entità fotocamera",
+ "camera_view": "Vista fotocamera",
+ "days_to_show": "Giorni da mostrare",
+ "double_tap_action": "Azione doppio tocco",
+ "entities": "Entità",
+ "entity": "Entità",
+ "hold_action": "Azione tocco prolungato",
+ "hours_to_show": "Ore da mostrare",
+ "icon": "Icona",
+ "icon_height": "Altezza icona",
+ "image": "Percorso immagine",
+ "manual": "Manuale",
+ "manual_description": "Devi aggiungere una scheda personalizzata o vuoi semplicemente scrivere manualmente il file in YAML?",
+ "maximum": "Massimo",
+ "minimum": "Minimo",
+ "name": "Nome",
+ "no_theme": "Nessun tema",
+ "refresh_interval": "Intervallo di aggiornamento",
+ "search": "Ricerca",
+ "secondary_info_attribute": "Attributo informazioni secondarie",
+ "show_icon": "Vuoi mostrare l'icona?",
+ "show_name": "Mostrare il nome?",
+ "show_state": "Vuoi mostrare lo stato?",
+ "state": "Stato",
+ "state_color": "Vuoi colorare le icone in base allo stato?",
+ "tap_action": "Azione tocco",
+ "theme": "Tema",
+ "title": "Titolo",
+ "unit": "Unità",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Colonne",
+ "description": "La scheda Occhiata è utile per raggruppare più sensori in una panoramica compatta.",
+ "name": "Vista"
+ },
+ "grid": {
+ "columns": "Colonne",
+ "description": "La scheda Griglia consente di mostrare più schede in una griglia.",
+ "name": "Griglia",
+ "square": "Visualizza le schede come riquadri"
+ },
+ "history-graph": {
+ "description": "La scheda Grafico storico consente di visualizzare un grafico per ciascuna delle entità elencate.",
+ "name": "Grafico storico"
+ },
+ "horizontal-stack": {
+ "description": "La scheda Pila orizzontale consente di raggruppare insieme più schede, in modo che siano sempre l'una accanto all'altra nello spazio di una colonna.",
+ "name": "Pila orizzontale"
+ },
+ "humidifier": {
+ "description": "La scheda Umidificatore fornisce il controllo della tua entità umidificatore. Ti consente di modificare l'umidità e la modalità di funzionamento dell'entità.",
+ "name": "Umidificatore"
+ },
+ "iframe": {
+ "description": "La scheda Pagina web consente di incorporare la tua pagina web preferita direttamente in Home Assistant.",
+ "name": "Pagina web"
+ },
+ "light": {
+ "description": "La scheda Luce consente di modificare la luminosità della luce.",
+ "name": "Luce"
+ },
+ "logbook": {
+ "description": "La scheda Registro mostra un elenco di eventi per le entità.",
+ "name": "Registro"
+ },
+ "map": {
+ "dark_mode": "Modalità scura?",
+ "default_zoom": "Ingrandimento predefinito",
+ "description": "La scheda Mappa che permette di visualizzare le entità su una mappa.",
+ "geo_location_sources": "Fonti di geolocalizzazione",
+ "hours_to_show": "Ore da mostrare",
+ "name": "Mappa",
+ "source": "Fonte"
+ },
+ "markdown": {
+ "content": "Contenuto",
+ "description": "La scheda Markdown viene utilizzata per eseguire il rendering di testo scritto in linguaggio Markdown per una gradevole formattazione della visualizzazione.",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "description": "La scheda Controllo Multimediale viene utilizzata per visualizzare le entità del lettore multimediale su un'interfaccia con controlli di facile utilizzo.",
+ "name": "Controllo dei media"
+ },
+ "picture-elements": {
+ "description": "La scheda Elementi Immagine è uno dei tipi di schede più versatili. Le schede consentono di posizionare icone o testo (e anche servizi!) su un'immagine basata su coordinate.",
+ "name": "Elementi immagine"
+ },
+ "picture-entity": {
+ "description": "La scheda Entità Immagine visualizza un'entità sotto forma di immagine. Oltre ad immagini da URL, può anche mostrare l'immagine delle entità fotocamera.",
+ "name": "Entità immagine"
+ },
+ "picture-glance": {
+ "description": "La scheda Sguardo d'Immagine mostra un'immagine e gli stati di entità corrispondenti come icona. Le entità sul lato destro consentono di attivare o disattivare le azioni, altre mostrano la finestra di dialogo con più informazioni.",
+ "name": "Colpo d'occhio",
+ "state_entity": "Stato entità"
+ },
+ "picture": {
+ "description": "La scheda Immagine consente di impostare un'immagine da utilizzare per la navigazione su vari percorsi nell'interfaccia o per chiamare un servizio.",
+ "name": "Immagine"
+ },
+ "plant-status": {
+ "description": "La scheda dello Stato della Pianta è per tutti gli adorabili botanici là fuori.",
+ "name": "Stato della pianta"
+ },
+ "sensor": {
+ "description": "La scheda Sensore offre una rapida panoramica dello stato dei sensori con un grafico opzionale per visualizzare il cambiamento nel tempo.",
+ "graph_type": "Tipo di grafico",
+ "name": "Sensore",
+ "show_more_detail": "Mostra ulteriori dettagli"
+ },
+ "shopping-list": {
+ "description": "La scheda Lista della spesa consente di aggiungere, modificare, selezionare e cancellare gli articoli dalla tua lista della spesa.",
+ "integration_not_loaded": "Questa carta richiede l'integrazione \"shopping_list\" per essere configurata.",
+ "name": "Lista della spesa"
+ },
+ "statistics-graph": {
+ "description": "La scheda Grafico statistiche consente di visualizzare un grafico delle statistiche per ciascuna delle entità elencate.",
+ "name": "Grafico statistiche",
+ "period": "Periodo",
+ "periods": {
+ "5minute": "5 minuti",
+ "day": "Giorno",
+ "hour": "Ora",
+ "month": "Mese"
+ }
+ },
+ "thermostat": {
+ "description": "La scheda Termostato fornisce il controllo della tua entità climatica, consentendo di modificare la temperatura e la modalità dell'entità.",
+ "name": "Termostato"
+ },
+ "vertical-stack": {
+ "description": "La scheda Pila verticale consente di raggruppare più schede in modo che si trovino sempre nella stessa colonna.",
+ "name": "Pila verticale"
+ },
+ "weather-forecast": {
+ "description": "La scheda Previsioni meteo mostra le condizioni meteorologiche. Molto utili da includere nelle interfacce che le persone visualizzano sulla parete.",
+ "name": "Previsioni del tempo",
+ "show_both": "Mostra meteo e previsioni attuali",
+ "show_forecast": "Mostra previsioni",
+ "show_only_current": "Mostra solo il meteo attuale",
+ "show_only_forecast": "Mostra solo le previsioni"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Per scheda",
+ "by_entity": "Per entità",
+ "custom_card": "Personalizzato",
+ "domain": "Dominio",
+ "entity": "Entità",
+ "no_description": "Nessuna descrizione disponibile."
+ },
+ "common": {
+ "add": "Aggiungi",
+ "clear": "Cancella",
+ "edit": "Modifica",
+ "none": "Nessuno"
+ },
+ "edit_badges": {
+ "panel_mode": "Questi distintivi non saranno visualizzati perché questa vista è in \"Modalità pannello\".",
+ "view_no_badges": "I distintivi non sono supportati dal tipo di visualizzazione attuale."
+ },
+ "edit_card": {
+ "add": "Aggiungi scheda",
+ "clear": "Cancella",
+ "confirm_cancel": "Sei sicuro di voler annullare?",
+ "delete": "Elimina scheda",
+ "duplicate": "Duplica scheda",
+ "edit": "Modifica",
+ "header": "Configurazione della scheda",
+ "move": "Sposta nella vista",
+ "move_after": "Sposta la scheda dopo",
+ "move_before": "Sposta la scheda prima",
+ "move_down": "Sposta la scheda in basso",
+ "move_up": "Sposta la scheda in alto",
+ "options": "Altre opzioni",
+ "pick_card": "Quale scheda vorresti aggiungere?",
+ "pick_card_view_title": "Quale scheda vorresti aggiungere alla tua vista {name}?",
+ "search_cards": "Cerca schede",
+ "show_code_editor": "Mostra editor del codice",
+ "show_visual_editor": "Mostra Editor Visivo",
+ "toggle_editor": "Attiva / disattiva l'editor",
+ "typed_header": "{type} Configurazione Scheda",
+ "unsaved_changes": "Sono state apportate modifiche non salvate"
+ },
+ "edit_lovelace": {
+ "edit_title": "Modifica titolo",
+ "explanation": "Questo titolo è mostrato sopra tutte le tue viste nell'interfaccia utente di Lovelace.",
+ "header": "Titolo della tua interfaccia utente di Lovelace",
+ "title": "Titolo"
+ },
+ "edit_view": {
+ "add": "Aggiungi vista",
+ "delete": "Elimina vista",
+ "edit": "Modifica vista",
+ "header": "Visualizza configurazione",
+ "header_name": "{name} Visualizza configurazione",
+ "move_left": "Sposta la vista a sinistra",
+ "move_right": "Sposta la vista a destra",
+ "tab_badges": "Distintivi",
+ "tab_settings": "Impostazioni",
+ "tab_visibility": "Visibilità",
+ "type": "Tipo di visualizzazione",
+ "types": {
+ "masonry": "Muratura (predefinito)",
+ "panel": "Pannello (1 scheda)",
+ "sidebar": "Barra laterale"
+ },
+ "visibility": {
+ "select_users": "Seleziona quali utenti dovrebbero vedere questa vista nella navigazione"
+ }
+ },
+ "header": "Modifica dell'interfaccia utente",
+ "header-footer": {
+ "choose_header_footer": "Scegli un {type}",
+ "footer": "Piè di pagina",
+ "header": "Intestazione",
+ "types": {
+ "buttons": {
+ "name": "Pulsanti"
+ },
+ "graph": {
+ "name": "Grafico"
+ },
+ "picture": {
+ "name": "Immagine"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Gestisci le plance",
+ "manage_resources": "Gestisci le risorse",
+ "open": "Apri il menu dell'interfaccia utente di Lovelace",
+ "raw_editor": "Editor di configurazione testuale"
+ },
+ "migrate": {
+ "header": "Configurazione incompatibile",
+ "migrate": "Esporta configurazione",
+ "para_migrate": "Home Assistant può aggiungere automaticamente gli ID a tutte le tue schede e viste in maniera automatica premendo il pulsante \"Migra configurazione\".",
+ "para_no_id": "Questo elemento non ha un ID. Aggiungi un ID a questo elemento in 'ui-lovelace.yaml'."
+ },
+ "move_card": {
+ "header": "Scegli una vista in cui spostare la scheda"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Genereremo automaticamente le tue viste dell'interfaccia utente di Lovelace con le tue aree e dispositivi se rimuovi la tua configurazione dell'interfaccia utente di Lovelace.",
+ "confirm_remove_config_title": "Sei sicuro di voler rimuovere la tua configurazione dell'interfaccia utente di Lovelace?",
+ "confirm_unsaved_changes": "Hai delle modifiche non salvate, sei sicuro di voler uscire?",
+ "confirm_unsaved_comments": "La tua configurazione potrebbe contenere dei commenti, questi non saranno salvati. Vuoi continuare?",
+ "error_invalid_config": "La tua configurazione non è valida: {error}",
+ "error_parse_yaml": "Impossibile analizzare YAML: {error}",
+ "error_remove": "Impossibile rimuovere la configurazione: {error}",
+ "error_save_yaml": "Impossibile salvare YAML: {error}",
+ "header": "Modifica configurazione",
+ "lovelace_changed": "La configurazione di Lovelace è stata aggiornata, vuoi caricare la configurazione aggiornata nell'editor e perdere le modifiche attuali?",
+ "reload": "Ricarica",
+ "resources_moved": "Le risorse non dovrebbero più essere aggiunte alla configurazione di Lovelace ma possono essere aggiunte nel pannello di configurazione di Lovelace.",
+ "save": "Salva",
+ "saved": "Salvato",
+ "unsaved_changes": "Modifiche non salvate"
+ },
+ "save_config": {
+ "close": "Chiudi",
+ "empty_config": "Iniziare con una plancia vuota",
+ "header": "Prendi il controllo della tua interfaccia utente di Lovelace",
+ "para": "Questa plancia è attualmente gestita da Home Assistant. È aggiornata automaticamente quando nuove entità o componenti dell'interfaccia utente Lovelace diventano disponibili. Se assumi il controllo, questa plancia non sarà più aggiornata automaticamente. Puoi sempre creare una nuova plancia in configurazione con cui esperimentare.",
+ "para_sure": "Sei sicuro di voler prendere il controllo della tua interfaccia utente?",
+ "save": "Prendi il controllo",
+ "yaml_config": "Per aiutarti a iniziare qui c'è la configurazione attuale di questa plancia:",
+ "yaml_control": "Per assumere il controllo in modalità YAML, crea un file YAML con il nome specificato nella tua configurazione per questa plancia, o il predefinito 'ui-lovelace.yaml'.",
+ "yaml_mode": "Questa plancia sta utilizzando la modalità YAML, il che significa che non puoi modificare la configurazione di Lovelace dall'interfaccia utente. Se vuoi gestire questa plancia dall'interfaccia utente, rimuovi 'mode: yaml' dalla configurazione di Lovelace in 'configuration.yaml'."
+ },
+ "select_view": {
+ "dashboard_label": "Plancia",
+ "header": "Scegli una vista",
+ "views_label": "Vista"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Editor piè di pagina",
+ "header": "Editor intestazione",
+ "row": "Editor di riga dell'entità"
+ }
+ },
+ "suggest_card": {
+ "add": "Aggiungi all'interfaccia utente di Lovelace",
+ "create_own": "Scegli una scheda diversa",
+ "header": "Abbiamo creato un suggerimento per te"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Questa vista contiene più di una scheda, ma una vista a pannello può mostrare solo una scheda."
+ }
+ }
+ },
+ "menu": {
+ "close": "Chiudi",
+ "configure_ui": "Modifica plancia",
+ "exit_edit_mode": "Esci dalla modalità di modifica dell'interfaccia utente",
+ "help": "Aiuto",
+ "reload_resources": "Ricarica le risorse",
+ "start_conversation": "Inizia la conversazione"
+ },
+ "reload_lovelace": "Ricarica l'interfaccia utente",
+ "reload_resources": {
+ "refresh_body": "Devi aggiornare la pagina per completare il ricaricamento. Vuoi aggiornare ora?",
+ "refresh_header": "Vuoi aggiornare?"
+ },
+ "unused_entities": {
+ "available_entities": "Queste sono le entità che hai a disposizione, ma non sono ancora nella tua interfaccia utente di Lovelace.",
+ "domain": "Dominio",
+ "entity": "Entità",
+ "entity_id": "ID entità",
+ "last_changed": "Ultima modifica",
+ "no_data": "Trovate entità non utilizzate",
+ "search": "Cerca entità",
+ "select_to_add": "Seleziona le entità che desideri aggiungere a una vista, quindi fai clic sul pulsante Aggiungi scheda.",
+ "title": "Entità non utilizzate"
+ },
+ "views": {
+ "confirm_delete": "Vuoi eliminare la vista?",
+ "confirm_delete_existing_cards": "L'eliminazione di questa vista rimuoverà anche le schede",
+ "confirm_delete_existing_cards_text": "Sei sicuro di voler eliminare la tua vista ''{name}''? La vista contiene {number} schede che saranno eliminate. Questa azione non può essere annullata.",
+ "confirm_delete_text": "Sei sicuro di voler eliminare la tua vista ''{name}''?"
+ },
+ "warning": {
+ "attribute_not_found": "Attributo {attribute} non disponibile in: {entity}",
+ "entity_non_numeric": "L'entità non è numerica: {entity}",
+ "entity_not_found": "Entità non disponibile: {entity}",
+ "entity_unavailable": "L'entità non è attualmente disponibile: {entity}",
+ "starting": "Home Assistant si sta avviando, non tutto potrebbe essere subito disponibile"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Elimina",
+ "delete_prompt": "Vuoi eliminare questo messaggio?",
+ "empty": "Non hai nessun messaggio",
+ "playback_title": "Riproduzione messaggio"
+ },
+ "map": {
+ "edit_zones": "Modifica zone"
+ },
+ "my": {
+ "component_not_loaded": "Questo reindirizzamento non è supportato dalla tua istanza di Home Assistant. È necessaria l'integrazione {integration} per utilizzare questo reindirizzamento.",
+ "documentation": "documentazione",
+ "error": "Si è verificato un errore sconosciuto",
+ "faq_link": "Domande frequenti di Home Assistant",
+ "no_supervisor": "Questo reindirizzamento non è supportato dalla tua installazione di Home Assistant. È necessario il metodo di installazione Home Assistant Operating System oppure Home Assistant Supervised. Per maggiori informazioni, vedi {docs_link}.",
+ "not_supported": "Questo reindirizzamento non è supportato dall'istanza di Home Assistant. Controlla il {link} per i reindirizzamenti supportati e la versione in cui sono stati introdotti."
+ },
+ "page-authorize": {
+ "abort_intro": "Accesso interrotto",
+ "authorizing_client": "Stai per dare a {clientId} accesso alla tua istanza di Home Assistant.",
+ "form": {
+ "error": "Errore: {error}",
+ "next": "Accedi",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Sessione scaduta, esegui nuovamente l'accesso."
+ },
+ "error": {
+ "invalid_auth": "Nome utente o password errati",
+ "invalid_code": "Codice di autenticazione non valido"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Password",
+ "username": "Nome utente"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Codice di autenticazione a due fattori"
+ },
+ "description": "Apri il **{mfa_module_name}** sul tuo dispositivo per visualizzare il codice di autenticazione a due fattori e verificare la tua identità:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Sessione scaduta, esegui nuovamente l'accesso."
+ },
+ "error": {
+ "invalid_auth": "Nome utente o password errati",
+ "invalid_code": "Codice di autenticazione non valido"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Password",
+ "username": "Nome utente"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Codice di autenticazione a due fattori"
+ },
+ "description": "Apri il **{mfa_module_name}** sul tuo dispositivo per visualizzare il codice di autenticazione a due fattori e verificare la tua identità:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Sessione scaduta, esegui nuovamente l'accesso.",
+ "no_api_password_set": "Non hai una password API configurata."
+ },
+ "error": {
+ "invalid_auth": "Password API non valida",
+ "invalid_code": "Codice di autenticazione non valido"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Password API"
+ },
+ "description": "Inserisci la password API nella configurazione HTTP:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Codice di autenticazione a due fattori"
+ },
+ "description": "Apri il **{mfa_module_name}** sul tuo dispositivo per visualizzare il codice di autenticazione a due fattori e verificare la tua identità:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Il tuo computer non è consentito."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Utente"
+ },
+ "description": "Scegli l'utente con cui vuoi effettuare l'accesso:"
+ }
+ }
+ }
+ },
+ "start_over": "Ricomincia",
+ "unknown_error": "Qualcosa non ha funzionato",
+ "working": "Attendere"
+ },
+ "initializing": "Inizializzazione",
+ "logging_in_to_with": "Accesso a **{locationName}** con **{authProviderName}**.",
+ "logging_in_with": "Accesso con **{authProviderName}**.",
+ "pick_auth_provider": "Oppure accedi con",
+ "store_token": "Resta collegato"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "di {name}",
+ "introduction": "Benvenuto a casa! Questa è la versione dimostrativa di Home Assistant, qui pubblichiamo le migliori interfacce utente create dalla nostra comunità.",
+ "learn_more": "Scopri di più su Home Assistant",
+ "next_demo": "Prossima versione dimostrativa"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Attività",
+ "air": "Aria",
+ "commute_home": "Tragitto per casa",
+ "entertainment": "Intrattenimento",
+ "hdmi_input": "Ingresso HDMI",
+ "hdmi_switcher": "Commutatore HDMI",
+ "information": "Informazioni",
+ "lights": "Luci",
+ "morning_commute": "Tragitto mattutino",
+ "total_tv_time": "Tempo totale TV",
+ "turn_tv_off": "Spegni la televisione",
+ "volume": "Volume"
+ },
+ "names": {
+ "family_room": "Soggiorno",
+ "hallway": "Corridoio",
+ "kitchen": "Cucina",
+ "left": "Sinistra",
+ "master_bedroom": "Camera principale",
+ "mirror": "Specchio",
+ "patio": "Patio",
+ "right": "Destra",
+ "temperature_study": "Studio della temperatura",
+ "upstairs": "Piano superiore"
+ },
+ "unit": {
+ "minutes_abbr": "min",
+ "watching": "Stai guardando"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Avanti"
+ },
+ "core-config": {
+ "button_detect": "Rileva",
+ "finish": "Prossimo",
+ "intro": "Salve {name}, benvenuto su Home Assistant. Come vorresti nominare la tua casa?",
+ "intro_location": "Vorremmo sapere dove vivete. Queste informazioni aiuteranno a visualizzare informazioni e automazioni basate sul sole. Questi dati non vengono mai condivisi al di fuori della vostra rete.",
+ "intro_location_detect": "Possiamo aiutarti a compilare queste informazioni effettuando una richiesta una volta a un servizio esterno.",
+ "location_name": "Nome della tua installazione di Home Assistant",
+ "location_name_default": "Casa"
+ },
+ "finish": "Finito",
+ "integration": {
+ "finish": "Finito",
+ "intro": "Dispositivi e servizi sono rappresentati in Home Assistant come integrazioni. Puoi impostarli ora, o farlo in seguito dalla schermata di configurazione.",
+ "more_integrations": "Altro"
+ },
+ "intro": "Sei pronto per risvegliare la tua casa, reclamare la tua privacy e far parte di una comunità mondiale di smanettoni?",
+ "next": "Avanti",
+ "restore": {
+ "addons": "Componenti aggiuntivi",
+ "confirm_password": "Conferma password di backup",
+ "description": "In alternativa puoi ripristinare da un backup precedente.",
+ "folders": "Cartelle",
+ "full_backup": "Backup completo",
+ "hide_log": "Nascondi il registro completo",
+ "in_progress": "Ripristino in corso",
+ "partial_backup": "Backup parziale",
+ "password": "Password di backup",
+ "password_protection": "Protezione con password",
+ "select_type": "Seleziona cosa ripristinare",
+ "show_log": "Mostra il registro completo",
+ "type": "Tipo di backup"
+ },
+ "user": {
+ "create_account": "Crea un account",
+ "data": {
+ "name": "Nome",
+ "password": "Password",
+ "password_confirm": "Conferma la nuova password",
+ "username": "Nome utente"
+ },
+ "error": {
+ "password_not_match": "Le password non corrispondono",
+ "required_fields": "Compila tutti i campi richiesti"
+ },
+ "intro": "Cominciamo con la creazione di un account utente.",
+ "required_field": "Necessario"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Sblocca funzionalità avanzate.",
+ "link_promo": "Per saperne di più",
+ "title": "Modalità avanzata"
+ },
+ "change_password": {
+ "confirm_new_password": "Conferma la nuova password",
+ "current_password": "Password attuale",
+ "error_new_is_old": "La nuova password deve essere diversa dalla password attuale",
+ "error_new_mismatch": "I valori della nuova password immessi non corrispondono",
+ "error_required": "Richiesto",
+ "header": "Cambia password",
+ "new_password": "Nuova password",
+ "submit": "Invia",
+ "success": "Password modificata correttamente"
+ },
+ "current_user": "Sei attualmente connesso come {fullName}.",
+ "customize_sidebar": {
+ "button": "Modifica",
+ "description": "Puoi anche tenere premuta l'intestazione della barra laterale per attivare la modalità di modifica.",
+ "header": "Modifica l'ordine e nascondi gli elementi dalla barra laterale"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Panoramica (predefinito)",
+ "description": "Scegli una plancia predefinita per questo dispositivo.",
+ "dropdown_label": "Plancia",
+ "header": "Plancia"
+ },
+ "enable_shortcuts": {
+ "description": "Abilita o disabilita le scorciatoie da tastiera per eseguire varie azioni nell'interfaccia utente.",
+ "header": "Scorciatoie da tastiera"
+ },
+ "force_narrow": {
+ "description": "Questo nasconderà la barra laterale per impostazione predefinita, in modo simile all'esperienza mobile",
+ "header": "Nascondi sempre la barra laterale"
+ },
+ "is_owner": "Sei un proprietario.",
+ "language": {
+ "dropdown_label": "Lingua",
+ "header": "Lingua",
+ "link_promo": "Aiuta a tradurre"
+ },
+ "logout": "Disconnetti",
+ "logout_text": "Sei sicuro di voler chiudere la sessione?",
+ "logout_title": "Vuoi disconnetterti?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Sei sicuro di voler eliminare il token di accesso per {name} ?",
+ "create": "Crea token",
+ "create_failed": "Impossibile creare il token di accesso.",
+ "created": "Creato {date}",
+ "delete_failed": "Impossibile eliminare il token di accesso.",
+ "description": "Crea token di accesso di lunga durata per consentire agli script di interagire con l'istanza di Home Assistant. Ogni token sarà valido per 10 anni dalla creazione. I seguenti token di accesso a vita lunga sono attualmente attivi.",
+ "empty_state": "Non hai ancora un token di accesso di lunga durata.",
+ "header": "Token di accesso di lunga durata",
+ "learn_auth_requests": "Scopri come effettuare richieste autenticate.",
+ "name": "Nome",
+ "prompt_copy_token": "Copia il tuo token di accesso. Non sarà più mostrato.",
+ "prompt_name": "Assegnare un nome al token"
+ },
+ "mfa": {
+ "confirm_disable": "Sei sicuro di voler disabilitare {name} ?",
+ "disable": "Disattivare",
+ "enable": "Abilita",
+ "header": "Moduli di autenticazione a più fattori"
+ },
+ "mfa_setup": {
+ "close": "Chiudi",
+ "step_done": "Installazione completata per {step}",
+ "submit": "Invia",
+ "title_aborted": "Interrotto",
+ "title_success": "Completata correttamente"
+ },
+ "number_format": {
+ "description": "Scegli come vengono formattati i numeri.",
+ "dropdown_label": "Formato numero",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Auto (usa l'impostazione della lingua)",
+ "none": "Nessuno",
+ "space_comma": "1 234 567,89",
+ "system": "Usa le impostazioni locali del sistema"
+ },
+ "header": "Formato numerico"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Nome del dispositivo",
+ "title": "Come dovrebbe essere chiamato questo dispositivo?"
+ },
+ "description": "Invia notifiche a questo dispositivo.",
+ "error_load_platform": "Configura notify.html5.",
+ "error_use_https": "Richiede che SSL sia abilitato per il frontend.",
+ "header": "Notifiche push",
+ "link_promo": "Per saperne di più",
+ "push_notifications": "Notifiche push"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Sei sicuro di voler eliminare il token di aggiornamento per {name} ?",
+ "created_at": "Creato {date}",
+ "current_token_tooltip": "Impossibile eliminare il token di aggiornamento attuale",
+ "delete_failed": "Impossibile eliminare il token di aggiornamento.",
+ "description": "Ogni token di aggiornamento rappresenta una sessione di accesso. I token di aggiornamento verranno rimossi automaticamente quando si fa clic su Disconnetti. I seguenti token di aggiornamento sono attualmente attivi per il tuo account.",
+ "header": "Token di aggiornamento",
+ "last_used": "Ultimo utilizzo {date} da {location}",
+ "not_used": "Non è mai stato usato",
+ "token_title": "Token di aggiornamento per {clientId}"
+ },
+ "suspend": {
+ "description": "Verrà chiusa la connessione al server dopo essere scomparsa per 5 minuti?",
+ "header": "Chiudi automaticamente la connessione"
+ },
+ "themes": {
+ "accent_color": "Colore accento",
+ "dark_mode": {
+ "auto": "Auto",
+ "dark": "Scuro",
+ "light": "Chiaro"
+ },
+ "dropdown_label": "Tema",
+ "error_no_theme": "Nessun tema disponibile.",
+ "header": "Tema",
+ "link_promo": "Per saperne di più sui temi",
+ "primary_color": "Colore principale",
+ "reset": "Ripristina"
+ },
+ "time_format": {
+ "description": "Scegli come vengono formattate le ore.",
+ "dropdown_label": "Formato orario",
+ "formats": {
+ "12": "12 ore (AM/PM)",
+ "24": "24 ore",
+ "language": "Automatico (usa l'impostazione della lingua)",
+ "system": "Usa le impostazioni locali del sistema"
+ },
+ "header": "Formato orario"
+ },
+ "vibrate": {
+ "description": "Abilita o disabilita la vibrazione su questo dispositivo durante il controllo dei dispositivi.",
+ "header": "Vibrazione"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Avvia conversazione"
+ }
+ },
+ "sidebar": {
+ "done": "Fatto",
+ "external_app_configuration": "Configurazione app",
+ "hide_panel": "Nascondi pannello",
+ "show_panel": "Mostra pannello",
+ "sidebar_toggle": "Attiva/disattiva la barra laterale"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/ja.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/ja.json
new file mode 100644
index 00000000..867b7e74
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/ja.json
@@ -0,0 +1,4668 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "設定エントリ",
+ "device": "デバイス",
+ "integration": "インテグレーション",
+ "user": "ユーザー"
+ }
+ },
+ "groups": {
+ "owner": "オーナー",
+ "system-admin": "管理者",
+ "system-read-only": "読み取り専用ユーザー",
+ "system-users": "ユーザー"
+ },
+ "panel": {
+ "calendar": "カレンダー",
+ "config": "設定",
+ "developer_tools": "開発者ツール",
+ "energy": "エネルギー",
+ "history": "履歴",
+ "logbook": "ログブック",
+ "mailbox": "メールボックス",
+ "map": "地図",
+ "media_browser": "メディアブラウザ",
+ "profile": "プロファイル",
+ "shopping_list": "買い物リスト",
+ "states": "オーバービュー"
+ },
+ "state": {
+ "default": {
+ "off": "オフ",
+ "on": "オン",
+ "unavailable": "利用不可",
+ "unknown": "不明"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "オート",
+ "off": "オフ",
+ "on": "オン"
+ },
+ "hvac_action": {
+ "cooling": "冷房",
+ "drying": "乾燥",
+ "fan": "ファン",
+ "heating": "暖房",
+ "idle": "アイドル",
+ "off": "オフ"
+ },
+ "preset_mode": {
+ "activity": "アクティビティ",
+ "away": "外出",
+ "boost": "ブースト",
+ "comfort": "快適さ",
+ "eco": "エコ",
+ "home": "在宅",
+ "none": "なし",
+ "sleep": "スリープ"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "自動",
+ "away": "外出",
+ "baby": "赤ちゃん",
+ "boost": "ブースト",
+ "comfort": "快適さ",
+ "eco": "エコ",
+ "home": "ホーム",
+ "normal": "通常",
+ "sleep": "睡眠"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "警戒",
+ "armed_away": "警戒",
+ "armed_custom_bypass": "警戒",
+ "armed_home": "警戒",
+ "armed_night": "警戒",
+ "armed_vacation": "警戒",
+ "arming": "警戒中",
+ "disarmed": "解除",
+ "disarming": "解除",
+ "pending": "保留",
+ "triggered": "トリガー"
+ },
+ "default": {
+ "entity_not_found": "エンティティが見つかりません",
+ "error": "エラー",
+ "unavailable": "利用不可",
+ "unknown": "不明"
+ },
+ "device_tracker": {
+ "home": "在宅",
+ "not_home": "外出"
+ },
+ "person": {
+ "home": "在宅",
+ "not_home": "外出"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "デフォルト",
+ "header": "オーディオ",
+ "input": "入力",
+ "output": "出力"
+ },
+ "network": {
+ "container": "コンテナ",
+ "disabled": "無効",
+ "header": "ネットワーク",
+ "host": "ホスト"
+ },
+ "no_configuration": "このアドオンは、設定を公開していません…",
+ "options": {
+ "edit_in_ui": "UIで編集",
+ "edit_in_yaml": "YAMLで編集",
+ "header": "オプション",
+ "invalid_yaml": "無効なYAML",
+ "show_unused_optional": "未使用の設定オプションを表示する"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "アドオンの変更ログを取得できませんでした",
+ "go_to_config": "アドオンの起動に失敗しました - 設定検証に失敗しました!",
+ "install": "アドオンのインストールに失敗しました",
+ "restart": "アドオンの再起動に失敗しました",
+ "start": "アドオンの開始に失敗しました",
+ "start_invalid_config": "設定に移動",
+ "stop": "アドオンの停止に失敗しました",
+ "uninstall": "アドオンのアンインストールに失敗しました",
+ "validate_config": "アドオン設定の検証に失敗しました"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor('Application Armor')は、Linuxカーネルのセキュリティモジュールで、ネットワークアクセス、生(raw)のソケットアクセス、特定のファイルの読み取り、書き込み、実行の許可などのアドオン機能を制限します。\n\nアドオンの作成者は、アドオン用に最適化されたセキュリティプロファイルを提供するか、無効化を要求することができます。AppArmorを無効にすると、セキュリティリスクが高まるため、アドオンのセキュリティスコアに悪影響を及ぼします。",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "アドオンはHome Assistantに対してユーザーを認証することができ、ユーザーはHome Assistantのユーザー名/パスワードを使用して、アドオン内で実行されているアプリケーションにログインすることができます。このバッジは、アドオンの作成者がこの機能を要求しているかどうかを示します。",
+ "title": "Home Assistant認証"
+ },
+ "docker_api": {
+ "description": "アドオンの作成者は、システムで実行されているDockerインスタンスへの管理アクセスを持つアドオンを要求しました。このモードでは、アドオンにHome Assistantのシステム全体に完全なアクセスと制御を与えるため、セキュリティリスクが高まり、誤用された場合にはシステムが損傷する可能性があります。したがって、この機能はアドオンのセキュリティ スコアにマイナスの影響を与えます。\n\nこのレベルのアクセスは自動的には付与されず、ユーザー自身で確認する必要があります。これを行うには、アドオンの保護モードを手動で無効にする必要があります。このアドオンのソースを信頼し、かつあなたが必要としている場合にのみ保護モードを無効にしてください。",
+ "title": "Dockerへのフルアクセス"
+ },
+ "full_access": {
+ "description": "このアドオンは、アドオンの作成者の要求によって、システムのハードウェアへのフルアクセスが与えられます。アクセスは、Docker の特権モードと同等です。これにより、セキュリティリスクが生じる可能性があるため、この機能はアドオンのセキュリティ スコアに悪影響を及ぼします。\n\nこのレベルのアクセスは自動的には付与されず、ユーザー自身で確認する必要があります。これを行うには、アドオンの保護モードを手動で無効にする必要があります。このアドオンのソースを信頼し、かつあなたが必要としている場合にのみ保護モードを無効にしてください。",
+ "title": "フル ハードウェア アクセス"
+ },
+ "hassio_api": {
+ "description": "アドオンは、アドオン作成者の要求によって、Supervisor API へのアクセス権を与えられました。既定では、アドオンはシステムの一般的なバージョン情報にアクセスできます。アドオンが API への「マネージャー」または「管理者」レベルのアクセスを要求すると、Home Assistantシステムの複数の部分を制御するアクセス権を取得します。このアクセス許可はこのバッジによって示され、アドオンのセキュリティ スコアにマイナスの影響を与えます。",
+ "title": "Supervisor APIアクセス"
+ },
+ "homeassistant_api": {
+ "description": "このアドオンは、Home Assistant API を介して直接、実行中のHome Assistantのインスタンスにアクセスします。このモードではアドオンの認証も処理されるため、アドオンは追加の認証トークンを必要とせずにHome Assistantとやりとりすることができます。",
+ "title": "Home AssistantAPIアクセス"
+ },
+ "host_network": {
+ "description": "アドオンは通常、独自の隔離されたネットワークレイヤーで実行され、ホストオペレーティングシステムのネットワークにアクセスすることができません。場合によっては、このネットワーク隔離によってアドオンのサービス提供が制限されることがあります。そのため、アドオンの作者が隔離を解除して、アドオンがホストマシンのネットワーク機能にフルアクセスできるようにすることができます。これにより、アドオンはより多くのネットワーク機能を得ることができますが、セキュリティが低下するため、アドオンでこのオプションを使用すると、アドオンのセキュリティ評価が低くなります。",
+ "title": "ホスト ネットワーク"
+ },
+ "host_pid": {
+ "description": "通常、アドオンが実行するプロセスは、他のすべてのシステムプロセスから分離されます。アドオン作成者は、ホスト システム インスタンスで実行されているシステム プロセスにアクセスし、ホスト システム上のプロセスを生成できるようにアドオンを要求しました。このモードでは、アドオンはHome Assistantのシステム全体にフルアクセスと制御を提供し、セキュリティリスクを追加し、誤用時にシステムに損害を与える可能性があります。したがって、この機能はアドオンのセキュリティ スコアに悪影響を与えます。\n\nこのレベルのアクセスは自動的には付与されず、ユーザー自身で確認する必要があります。これを行うには、アドオンの保護モードを手動で無効にする必要があります。このアドオンのソースを信頼し、かつあなたが必要としている場合にのみ保護モードを無効にしてください。",
+ "title": "ホストプロセスの名前空間"
+ },
+ "ingress": {
+ "description": "このアドオンは、Ingressを使用して、インターフェイスをHome Assistantに安全に埋め込みます。",
+ "title": "イングレス(Ingress)"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "認証",
+ "core": "コア",
+ "docker": "docker",
+ "hardware": "ハードウェア",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "ホスト",
+ "host_pid": "ホスト PID",
+ "ingress": "イングレス",
+ "rating": "評価",
+ "stage": "ステージ"
+ },
+ "rating": {
+ "description": "Home Assistantは、各アドオンにセキュリティの評価を提供します。これは、このアドオンを使用する際のリスクを示しています。アドオンがシステムに必要とするアクセスが多いほど、スコアが低くなるため、セキュリティリスクが上がる可能性があります。 \n\nスコアは、1~6までの数字で表されます。1が最低スコア(安全性が一番低くて、セキュリティリスクが高いとみなされる)で、6が最高スコア(安全性が一番高くて、セキュリティリスクが低いとみなされる)です。",
+ "title": "アドオンのセキュリティ評価"
+ },
+ "role": {
+ "admin": "管理者",
+ "backup": "バックアップ",
+ "default": "デフォルト",
+ "homeassistant": "homeassistant",
+ "manager": "マネージャー"
+ },
+ "stage": {
+ "description": "アドオンには、次の3つの段階があります。\n\n{icon_stable} **安定** : これらは、運用環境で使用する準備ができているアドオンです。\n\n{icon_experimental} **実験**: バグが含まれている可能性があり、未完成の可能性があります。\n\n{icon_deprecated} **非推奨**: これらのアドオンは、今後更新されることはありません。",
+ "title": "アドオンステージ"
+ },
+ "stages": {
+ "deprecated": "廃止予定",
+ "experimental": "実験的"
+ }
+ },
+ "changelog": "更新履歴",
+ "cpu_usage": "アドオンのCPU使用率",
+ "hostname": "ホスト名",
+ "install": "インストール",
+ "new_update_available": "{name} {version}が利用可能です",
+ "not_available_arch": "このアドオンは、デバイスのプロセッサまたはデバイスにインストールされているオペレーティングシステムと互換性がありません。",
+ "not_available_version": "Home Assistant {core_version_installed} を無効にして、このバージョンのアドオンに更新するには、少なくともバージョン {core_version_needed} のHome Assistantが必要です",
+ "open_web_ui": "Web UI を開く",
+ "option": {
+ "auto_update": {
+ "description": "新しいバージョンが利用可能になったときにアドオンを自動更新する",
+ "title": "自動更新"
+ },
+ "boot": {
+ "description": "システムブート時にアドオンを起動する",
+ "title": "起動時に開始"
+ },
+ "ingress_panel": {
+ "description": "このアドオンをサイドバーに追加する",
+ "title": "サイドバーに表示"
+ },
+ "protected": {
+ "description": "アドオンからシステムアクセスの昇格をブロックします",
+ "title": "保護モード"
+ },
+ "watchdog": {
+ "description": "クラッシュした場合にアドオンを起動する",
+ "title": "ウォッチドッグ"
+ }
+ },
+ "protection_mode": {
+ "content": "このアドオンの保護モードは無効になっています!これによりアドオンはシステム全体へのフルアクセスが可能になり、セキュリティリスクが追加され、誤って使用された場合にはシステムにダメージを与える可能性があります。保護モードを無効にするのは、このアドオンのソースを知り、必要とし、信頼している場合のみにしてください。",
+ "enable": "有効",
+ "title": "警告: 保護モードは無効です!"
+ },
+ "ram_usage": "アドオンのRAM使用量",
+ "rebuild": "再構築",
+ "restart": "再起動",
+ "start": "開始",
+ "stop": "停止",
+ "uninstall": "アンインストール",
+ "visit_addon_page": "詳細については、{name}ページにアクセスしてください"
+ },
+ "documentation": {
+ "get_documentation": "{error}アドオンのドキュメントの取得に失敗しました"
+ },
+ "failed_to_reset": "{error}アドオン設定のリセットに失敗しました",
+ "failed_to_save": "{error}アドオン設定の保存に失敗しました",
+ "logs": {
+ "get_logs": "{error}アドオンのログの取得に失敗しました"
+ },
+ "panel": {
+ "configuration": "設定",
+ "documentation": "ドキュメント",
+ "info": "情報",
+ "log": "ログ"
+ },
+ "state": {
+ "installed": "アドオンがインストールされている",
+ "not_available": "アドオンはお使いのシステムでは利用できません",
+ "not_installed": "アドオンがインストールされていません"
+ }
+ },
+ "backup": {
+ "addons": "アドオン",
+ "confirm_password": "バックアップパスワードの確認",
+ "could_not_create": "バックアップを作成できませんでした。",
+ "create": "作成",
+ "create_backup": "バックアップを作成",
+ "create_blocked_not_running": "現在、システムが {state} 状態であるため、バックアップの作成はできません。",
+ "created": "作成",
+ "delete_backup_confirm": "削除",
+ "delete_backup_text": "{number}{number, plural,\n one {つのバックアップ}\n other {個のバックアップ}\n}を削除しますか?",
+ "delete_backup_title": "バックアップを削除",
+ "delete_selected": "選択したバックアップの削除",
+ "enter_password": "パスワードを入力してください。",
+ "failed_to_delete": "削除できませんでした",
+ "folders": "フォルダー",
+ "full_backup": "フルバックアップ",
+ "name": "バックアップ名",
+ "no_backups": "まだ、バックアップがありません。",
+ "partial_backup": "部分的なバックアップ",
+ "password": "バックアップパスワード",
+ "password_protection": "パスワード保護",
+ "passwords_not_matching": "パスワードが一致しません",
+ "select_type": "復元する対象を選択する",
+ "selected": "{number}が選択されました",
+ "size": "サイズ",
+ "type": "バックアップタイプ",
+ "upload_backup": "バックアップをアップロード"
+ },
+ "common": {
+ "cancel": "キャンセル",
+ "close": "閉じる",
+ "description": "説明",
+ "error": {
+ "unknown": "不明なエラー",
+ "update_failed": "更新に失敗しました"
+ },
+ "failed_to_restart_name": "{name} の再起動に失敗しました",
+ "failed_to_update_name": "{name} を更新できませんでした",
+ "learn_more": "詳細情報",
+ "menu": "メニュー",
+ "new_version_available": "新しいバージョンが利用可能",
+ "newest_version": "最新バージョン",
+ "no": "いいえ",
+ "refresh": "更新",
+ "release_notes": "リリースノート",
+ "reload": "リロード",
+ "reset_defaults": "デフォルトにリセット",
+ "reset_options": "リセットオプション",
+ "restart": "再起動",
+ "restart_name": "{name}を再起動",
+ "review": "レビュー",
+ "running_version": "現在 {version} を実行しています",
+ "save": "保存",
+ "show": "表示",
+ "show_more": "これに関する詳細情報を表示",
+ "update": "更新",
+ "update_available": "{count, plural,\n one {アップデート}\n other {{count} アップデート}\n} 保留中",
+ "version": "バージョン",
+ "yes": "はい"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "すべてのオプションをリセットしてもよろしいですか?",
+ "title": "リセットオプション"
+ },
+ "restart": {
+ "text": "{name}を再起動してもよろしいですか?",
+ "title": "{name}を再起動"
+ },
+ "update": {
+ "text": "{name}をバージョン{version}に更新してもよろしいですか?",
+ "title": "{name}更新"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "新しいバージョンが利用可能",
+ "addon_running": "アドオンが実行されています",
+ "addon_stopped": "アドオンが停止しています",
+ "addons": "インストール済みアドオン",
+ "no_addons": "まだアドオンがインストールされていません。アドオンストアにアクセスして始めましょう!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "キャンセル",
+ "description": "現在、あなたはデータディスクとして ''{current_path}'' を使用しています。データディスクを移動するとデバイスが再起動し、 {time} 分かかると予想されます。この間は、Home Assistantのインストールにアクセスできなくなります。移行中は電源を切らないでください!",
+ "loading_devices": "デバイスの読み込み",
+ "move": "移動",
+ "moving": "データディスクの移動",
+ "moving_desc": "再起動してデータディスクを移動します。長時間かかることがあります。",
+ "no_devices": "適切な接続デバイスが見つかりません",
+ "select_device": "新しいデータディスクを選択",
+ "title": "データディスクを移動"
+ },
+ "hardware": {
+ "attributes": "属性",
+ "device_path": "デバイスパス",
+ "id": "ID",
+ "search": "ハードウェアの検索",
+ "subsystem": "サブシステム",
+ "title": "ハードウェア"
+ },
+ "network": {
+ "connected_to": "{ssid}に接続しました",
+ "dhcp": "DHCP",
+ "disabled": "無効",
+ "dns_servers": "DNSサーバー",
+ "failed_to_change": "ネットワーク設定の変更に失敗しました",
+ "gateway": "ゲートウェイアドレス",
+ "ip_netmask": "IPアドレス/ネットマスク",
+ "open": "Open",
+ "scan_ap": "アクセスポイントのスキャン",
+ "static": "静的",
+ "title": "ネットワーク設定",
+ "unsaved": "保存されていない変更があります。タブを変更するとこれらは失われます。続行しますか?",
+ "warning": "Wi-Fi、IP、またはゲートウェイアドレスを変更すると、接続が失われる可能性があります!",
+ "wep": "WEP",
+ "wpa": "wpa-psk"
+ },
+ "registries": {
+ "add_new_registry": "新しいレジストリの追加",
+ "add_registry": "レジストリの追加",
+ "failed_to_add": "レジストリを追加できませんでした",
+ "failed_to_remove": "レジストリを削除できませんでした",
+ "no_registries": "レジストリが設定されていません",
+ "password": "パスワード",
+ "registry": "レジストリ",
+ "remove": "削除",
+ "title_add": "新しいコンテナレジストリの追加",
+ "title_manage": "コンテナレジストリの管理",
+ "username": "ユーザー名"
+ },
+ "repositories": {
+ "add": "追加",
+ "remove": "削除",
+ "title": "アドオンリポジトリの管理",
+ "used": "リポジトリはインストール済みのアドオンで使用されているので、削除できません。"
+ },
+ "restart_addon": {
+ "confirm_text": "アドオンを再起動",
+ "text": "変更を保存してアドオンを再起動しますか?"
+ },
+ "update": {
+ "backup": "バックアップ",
+ "create_backup": "アップデート前に{name}のバックアップを作成する",
+ "creating_backup": "{name}のバックアップを作成しています",
+ "updating": "{name}をバージョン{version}に更新しています"
+ }
+ },
+ "my": {
+ "error": "不明なエラーが発生しました",
+ "error_addon_no_ingress": "要求されたアドオンは入力をサポートしていません",
+ "error_addon_not_found": "アドオンが見つかりません",
+ "error_addon_not_installed": "要求されたアドオンがインストールされていません。先にインストールしてください",
+ "error_addon_not_started": "要求されたアドオンは実行されていません。先に起動してください",
+ "faq_link": "My Home Assistant FAQ",
+ "not_supported": "このリダイレクトは、Home Assistantインスタンスではサポートされていません。サポートされているリダイレクトとそれらが導入されたバージョンについては、{link}を確認してください。"
+ },
+ "panel": {
+ "addons": "アドオン",
+ "backups": "バックアップ",
+ "dashboard": "ダッシュボード",
+ "store": "アドオンストア",
+ "system": "システム"
+ },
+ "store": {
+ "check_updates": "アップデートの確認",
+ "missing_addons": "アドオンがありませんか?ユーザープロファイルページで詳細モードを有効にしてみましょう",
+ "no_results_found": "{repository}に結果が見つかりません。",
+ "registries": "レジストリ",
+ "repositories": "リポジトリ"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "コアのCPU使用率",
+ "ram_usage": "コアのRAM使用量"
+ },
+ "host": {
+ "change": "変更",
+ "change_hostname": "ホスト名の変更",
+ "confirm_reboot": "ホストを再起動しますか?",
+ "confirm_shutdown": "ホストをシャットダウンしてもよろしいですか?",
+ "deployment": "デプロイメント",
+ "docker_version": "Dockerバージョン",
+ "emmc_lifetime_used": "eMMC の有効期間が使用されます",
+ "failed_to_get_hardware_list": "ハードウェア一覧を取得できませんでした",
+ "failed_to_import_from_usb": "USBからのインポートに失敗しました",
+ "failed_to_move": "データディスクの移動に失敗しました",
+ "failed_to_reboot": "ホストの再起動に失敗しました",
+ "failed_to_set_hostname": "ホスト名の設定に失敗しました",
+ "failed_to_shutdown": "ホストのシャットダウンに失敗しました",
+ "hardware": "ハードウェア",
+ "hostname": "ホスト名",
+ "import_from_usb": "USBからインポート",
+ "ip_address": "IPアドレス",
+ "move_datadisk": "データディスクを移動",
+ "new_hostname": "新しいホスト名を入力してください:",
+ "operating_system": "オペレーティングシステム",
+ "reboot_host": "ホストを再起動",
+ "shutdown_host": "ホストをシャットダウン",
+ "used_space": "使用済みスペース"
+ },
+ "log": {
+ "get_logs": "{error},{provider}ログの取得に失敗しました",
+ "log_provider": "ログプロバイダー"
+ },
+ "supervisor": {
+ "beta_backup": "この機能をアクティブ化する前に、データのバックアップを作成してください。",
+ "beta_join_confirm": "ベータチャネルに参加しますか?",
+ "beta_release_items": "これには、次のベータリリースが含まれます。",
+ "beta_warning": "ベータ版はテスターと早期導入者向けであり、不安定なコード変更を含むことができます",
+ "channel": "チャネル",
+ "cpu_usage": "SupervisorのCPU使用率",
+ "failed_to_reload": "Supervisorのリロードに失敗しました",
+ "failed_to_set_option": "Supervisorオプションの設定に失敗しました",
+ "failed_to_update": "Supervisorの更新に失敗しました",
+ "join_beta_action": "ベータチャネルに参加",
+ "join_beta_description": "Home Assistant (RCs)、Supervisor、ホストのベータ版アップデートを入手する",
+ "leave_beta_action": "ベータチャネルを離れる",
+ "leave_beta_description": "Home Assistant、Supervisor、およびホストの安定版(Stable)のアップデートを入手する",
+ "ram_usage": "SupervisorのRAM使用量",
+ "reload_supervisor": "Supervisorをリロード",
+ "search": "検索",
+ "share_diagnostics": "診断の共有",
+ "share_diagnostics_description": "クラッシュレポートと診断情報を共有します。",
+ "share_diagonstics_description": "Supervisorで予期しないエラーが発生した際に、クラッシュレポートと診断情報を自動的に共有しますか?{line_break}これにより、問題を解決することができます。情報はHome Assistant Core teamチームだけがアクセス可能で、他のユーザーと共有されることはありません。{line_break}データには、個人情報や機密情報は含まれていません。これはいつでも設定で無効にすることができます。",
+ "share_diagonstics_title": "Home Assistantの改善にご協力ください",
+ "unhealthy_description": "不確実なインストールを行うと、問題が発生します。以下は、あなたのインストールで見つかった問題(issues)のリストです。問題を解決する方法については、リンクをクリックしてください。",
+ "unhealthy_reason": {
+ "docker": "Docker 環境が正常に動作していません",
+ "privileged": "Supervisorには特権がありません",
+ "setup": "Supervisorのセットアップに失敗しました",
+ "supervisor": "Supervisorを更新できませんでした",
+ "untrusted": "信頼できないコンテンツが検出されました"
+ },
+ "unhealthy_title": "インストールが正常でない",
+ "unsupported_description": "以下は、インストールに関する問題の一覧です。",
+ "unsupported_reason": {
+ "apparmor": "ホストでAppArmorが有効になっていない",
+ "container": "問題が発生することが知られているコンテナ",
+ "content-trust": "コンテンツ信頼の検証が無効になっています",
+ "content_trust": "コンテンツの信頼性の検証が無効になっています",
+ "dbus": "DBUS",
+ "docker_configuration": "Dockerの設定",
+ "docker_version": "Dockerのバージョン",
+ "job_conditions": "無視されたジョブ条件",
+ "lxc": "LXC",
+ "network_manager": "ネットワークマネージャー",
+ "os": "オペレーティング システム",
+ "os_agent": "OSエージェント",
+ "privileged": "Supervisorには特権がありません",
+ "software": "サポートされていないソフトウェアが検出されました",
+ "source_mods": "ソースの変更",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "サポートされていないインストールを実行しています",
+ "update_supervisor": "Supervisorの更新",
+ "warning": "警告"
+ }
+ },
+ "update_available": {
+ "core_note": "アップデート後にインスタンスが起動しない場合、supervisorは、バージョン {version} にロールバックされます。",
+ "create_backup": "アップデートする前にバックアップを作成",
+ "creating_backup": "{name} のバックアップを作成しています",
+ "description": "あなたは、{version} をインストールしています。更新をクリックすると、バージョン {newest_version} に更新されます。",
+ "no_update": "{name} の更新はありません",
+ "open_release_notes": "リリースノートを開く",
+ "update_name": "アップデート {name}",
+ "updating": "{name} をバージョン {version} に更新しています"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "ログインしたままにしておきますか?",
+ "confirm": "ログインを保存",
+ "decline": "結構です"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "外出する",
+ "arm_custom_bypass": "カスタム バイパス",
+ "arm_home": "ホームに戻る",
+ "arm_night": "夜",
+ "arm_vacation": "警戒 休暇",
+ "clear_code": "削除",
+ "code": "コード",
+ "disarm": "解除"
+ },
+ "area": {
+ "area_not_found": "エリアが見つかりません。"
+ },
+ "automation": {
+ "last_triggered": "最後にトリガーされたのは",
+ "trigger": "アクションを実行"
+ },
+ "button": {
+ "press": "押す"
+ },
+ "camera": {
+ "not_available": "画像がありません。"
+ },
+ "climate": {
+ "aux_heat": "暖める",
+ "away_mode": "外出モード",
+ "cooling": "{name} 冷房",
+ "current_temperature": "{name}現在の温度",
+ "currently": "現在",
+ "fan_mode": "ファンモード",
+ "heating": "{name}暖房",
+ "high": "高",
+ "low": "低",
+ "on_off": "オン/オフ",
+ "operation": "運転モード",
+ "preset_mode": "プリセット",
+ "swing_mode": "スイングモード",
+ "target_humidity": "目標湿度",
+ "target_temperature": "設定温度",
+ "target_temperature_entity": "{name}設定温度",
+ "target_temperature_mode": "{name}設定温度{mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "デクリメント",
+ "increment": "インクリメント",
+ "reset": "リセット"
+ }
+ },
+ "cover": {
+ "position": "位置",
+ "tilt_position": "傾斜位置"
+ },
+ "fan": {
+ "direction": "方向",
+ "forward": "進む",
+ "oscillate": "振動",
+ "preset_mode": "プリセットモード",
+ "reverse": "戻す",
+ "speed": "風速"
+ },
+ "humidifier": {
+ "humidity": "目標湿度",
+ "mode": "モード",
+ "on_entity": "{name} オン",
+ "target_humidity_entity": "目標湿度 {name}"
+ },
+ "light": {
+ "brightness": "明るさ",
+ "cold_white_value": "冷たい白い明るさ",
+ "color_brightness": "色の明るさ",
+ "color_temperature": "色温度",
+ "effect": "効果",
+ "warm_white_value": "暖かい白い明るさ",
+ "white_value": "白色輝度"
+ },
+ "lock": {
+ "code": "コード",
+ "lock": "施錠",
+ "unlock": "解錠"
+ },
+ "media_player": {
+ "browse_media": "メディアを参照する",
+ "media_next_track": "次",
+ "media_pause": "一時停止",
+ "media_play": "再生",
+ "media_play_pause": "再生/一時停止",
+ "media_previous_track": "前",
+ "media_stop": "停止",
+ "media_volume_down": "音量ダウン",
+ "media_volume_mute": "消音",
+ "media_volume_unmute": "消音を解除",
+ "media_volume_up": "音量アップ",
+ "nothing_playing": "何も再生していません",
+ "sound_mode": "サウンドモード",
+ "source": "ソース:",
+ "text_to_speak": "音声合成",
+ "turn_off": "オフにする",
+ "turn_on": "オンにする"
+ },
+ "persistent_notification": {
+ "dismiss": "消去"
+ },
+ "scene": {
+ "activate": "有効化"
+ },
+ "script": {
+ "cancel": "キャンセル",
+ "cancel_multiple": "キャンセル {number}",
+ "run": "実行"
+ },
+ "service": {
+ "run": "実行"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "キャンセル",
+ "finish": "完了",
+ "pause": "一時停止",
+ "start": "開始"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "クリーニングを再開する",
+ "return_to_base": "ドックに戻る",
+ "start_cleaning": "クリーニングを開始",
+ "turn_off": "オフにする",
+ "turn_on": "オンにする"
+ }
+ },
+ "water_heater": {
+ "away_mode": "外出モード",
+ "currently": "現在",
+ "on_off": "オン/オフ",
+ "operation": "操作",
+ "target_temperature": "設定温度"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "気圧",
+ "humidity": "湿度",
+ "precipitation": "降水量",
+ "temperature": "温度",
+ "visibility": "可視性",
+ "wind_speed": "風速"
+ },
+ "cardinal_direction": {
+ "e": "東",
+ "ene": "東北東",
+ "ese": "東南東",
+ "n": "北",
+ "ne": "北東",
+ "nne": "北北東",
+ "nnw": "北北西",
+ "nw": "北西",
+ "s": "南",
+ "se": "南東",
+ "sse": "南南東",
+ "ssw": "南南西",
+ "sw": "南西",
+ "w": "西",
+ "wnw": "西北西",
+ "wsw": "西南西"
+ },
+ "day": "日",
+ "forecast": "天気予報",
+ "high": "高",
+ "low": "低",
+ "night": "夜"
+ }
+ },
+ "common": {
+ "and": "と",
+ "back": "戻る",
+ "cancel": "キャンセル",
+ "clear": "クリア",
+ "close": "閉じる",
+ "continue": "続行",
+ "copied": "コピー",
+ "copied_clipboard": "クリップボードにコピー",
+ "delete": "削除",
+ "disable": "無効",
+ "enable": "有効",
+ "error_required": "必須",
+ "help": "ヘルプ",
+ "leave": "去る",
+ "loading": "読込中",
+ "menu": "メニュー",
+ "move": "移動",
+ "next": "次",
+ "no": "いいえ",
+ "not_now": "今ではありません",
+ "overflow_menu": "オーバーフローメニュー",
+ "previous": "前",
+ "refresh": "更新",
+ "remove": "削除",
+ "rename": "リネーム",
+ "save": "保存",
+ "skip": "スキップ",
+ "stay": "留まる",
+ "submit": "送信",
+ "successfully_deleted": "正常に削除されました",
+ "successfully_saved": "正常に保存されました",
+ "undo": "元に戻す",
+ "yes": "はい"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "アドオン",
+ "error": {
+ "fetch_addons": {
+ "description": "アドオンの読込中にエラーが発生しました。",
+ "title": "アドオンの読み込みエラー"
+ },
+ "no_supervisor": {
+ "description": "アドオンはサポートされていません。",
+ "title": "Supervisorなし"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "追加",
+ "failed_create_area": "エリアを作成できませんでした。",
+ "name": "名前",
+ "text": "新しいエリアの名前を入力してください。",
+ "title": "新しいエリアを追加"
+ },
+ "add_new": "新しいエリアを追加…",
+ "area": "エリア",
+ "clear": "消去",
+ "no_areas": "エリアがありません",
+ "no_match": "一致するエリアが見つかりません",
+ "show_areas": "エリアを表示"
+ },
+ "attributes": {
+ "expansion_header": "属性"
+ },
+ "blueprint-picker": {
+ "add_user": "ユーザーの追加",
+ "remove_user": "ユーザーの削除",
+ "select_blueprint": "設計図の選択"
+ },
+ "calendar": {
+ "my_calendars": "マイカレンダー",
+ "today": "今日"
+ },
+ "data-table": {
+ "clear": "クリア",
+ "filtering_by": "フィルタ処理の方法",
+ "hidden": "{number}非表示",
+ "no-data": "データなし",
+ "search": "検索"
+ },
+ "date-range-picker": {
+ "end_date": "終了日",
+ "ranges": {
+ "last_week": "先週",
+ "this_week": "今週",
+ "today": "今日",
+ "yesterday": "昨日"
+ },
+ "select": "選択",
+ "start_date": "開始日"
+ },
+ "device-picker": {
+ "clear": "削除",
+ "device": "デバイス",
+ "no_area": "エリアなし",
+ "no_devices": "デバイスがありません",
+ "no_match": "一致するデバイスが見つかりません",
+ "show_devices": "デバイスを表示",
+ "toggle": "切り替え"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "属性",
+ "show_attributes": "属性を表示"
+ },
+ "entity-picker": {
+ "clear": "消去",
+ "edit": "編集",
+ "entity": "エンティティ",
+ "no_match": "一致するエンティティが見つかりません",
+ "show_entities": "エンティティを表示"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "インテグレーションの履歴が無効",
+ "loading_history": "状態履歴を読込中…",
+ "no_history_found": "状態履歴がありません。"
+ },
+ "logbook": {
+ "by": "by",
+ "by_service": "サービス:",
+ "entries_not_found": "ログブックにイベントが見つかりません。",
+ "messages": {
+ "became_unavailable": "利用できなくなりました",
+ "changed_to_state": "{state}に変更されました",
+ "cleared_device_class": "クリアされました ({device_class} 未検出)",
+ "cleared_tampering": "改竄をクリア",
+ "detected_device_class": "{device_class} が検出されました",
+ "detected_tampering": "改竄を検出",
+ "is_closing": "閉じています",
+ "is_opening": "開いています",
+ "rose": "夜明け",
+ "set": "夕暮れ",
+ "turned_off": "オフになりました",
+ "turned_on": "オンになりました",
+ "was_at_home": "帰宅しました",
+ "was_at_state": "{state}で検出されました",
+ "was_away": "外出しました",
+ "was_closed": "閉鎖されました",
+ "was_connected": "接続されました",
+ "was_disconnected": "切断されました",
+ "was_locked": "施錠しました",
+ "was_low": "低かった",
+ "was_normal": "正常でした",
+ "was_opened": "開いています",
+ "was_plugged_in": "接続されました",
+ "was_safe": "安全でした",
+ "was_unlocked": "解錠しました",
+ "was_unplugged": "プラグが抜かれました",
+ "was_unsafe": "安全ではなかった"
+ },
+ "retrieval_error": "ログブックを読み込めませんでした",
+ "show_trace": "トレースを表示"
+ },
+ "media-browser": {
+ "audio_not_supported": "お使いのブラウザはオーディオをサポートしていません。",
+ "choose_player": "プレーヤーを選択",
+ "class": {
+ "album": "アルバム",
+ "app": "アプリ",
+ "artist": "アーティスト",
+ "channel": "チャネル",
+ "composer": "作曲者",
+ "contributing_artist": "アーティスト",
+ "directory": "ライブラリ",
+ "episode": "エピソード",
+ "game": "ゲーム",
+ "genre": "ジャンル",
+ "image": "画像",
+ "movie": "Movie",
+ "music": "Music",
+ "playlist": "プレイリスト",
+ "podcast": "ポッドキャスト",
+ "season": "シーズン",
+ "track": "トラック",
+ "tv_show": "テレビ番組",
+ "url": "URL",
+ "video": "ビデオ"
+ },
+ "documentation": "ドキュメント",
+ "learn_adding_local_media": "メディアの追加の詳細については、{ドキュメント}を参照してください。",
+ "local_media_files": "ビデオ、オーディオ、画像ファイルをメディアディレクトリに配置して、ブラウザやサポートされているメディアプレーヤーで参照して再生できるようにします。",
+ "media-player-browser": "メディアプレーヤーブラウザ",
+ "media_browsing_error": "メディア参照エラー",
+ "media_not_supported": "ブラウザ メディア プレーヤーはこの種類のメディアをサポートしていません",
+ "media_player": "メディアプレーヤー",
+ "no_items": "アイテムなし",
+ "no_local_media_found": "ローカルメディアが見つかりません",
+ "no_media_folder": "メディアディレクトリをまだ作成していないようです。",
+ "pick": "選択",
+ "pick-media": "メディアを選択",
+ "play": "再生",
+ "play-media": "メディアを再生",
+ "setup_local_help": "ローカルメディアの設定方法については、 {documentation}を確認してください。",
+ "video_not_supported": "お使いのブラウザはビデオをサポートしていません。",
+ "web-browser": "Webブラウザ"
+ },
+ "picture-upload": {
+ "label": "画像",
+ "unsupported_format": "サポートされていない形式です。JPEG、PNG、またはGIF画像を選択してください。"
+ },
+ "qr-scanner": {
+ "enter_qr_code": "QRコードの値を入力してください",
+ "manual_input": "別のQRスキャナーでQRコードをスキャンして、以下の入力欄にコードを貼り付けることができます",
+ "not_supported": "お使いのブラウザはQRスキャンに対応していません。",
+ "only_https_supported": "カメラを使ってQRコードを読み取ることができるのは、HTTPSを使用している場合のみです。",
+ "select_camera": "カメラを選択"
+ },
+ "related-filter-menu": {
+ "filter": "フィルター",
+ "filter_by_area": "エリアで絞り込む",
+ "filter_by_device": "デバイスで絞り込む",
+ "filter_by_entity": "エンティティで絞り込む",
+ "filtered_by_area": "エリア: {area_name}",
+ "filtered_by_device": "デバイス: {device_name}",
+ "filtered_by_entity": "エンティティ: {entity_name}"
+ },
+ "related-items": {
+ "area": "エリア",
+ "automation": "以下のオートメーションの一部",
+ "device": "デバイス",
+ "entity": "関連エンティティ",
+ "group": "次のグループの一部",
+ "integration": "インテグレーション",
+ "no_related_found": "関連するアイテムが見つかりませんでした。",
+ "scene": "次のシーンの一部",
+ "script": "次のスクリプトの一部"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one {日}\n other {日間}\n}",
+ "hour": "{count} {count, plural,\n one {時間}\n other {時間}\n}",
+ "minute": "{count} {count, plural,\n one {分}\n other {分}\n}",
+ "second": "{count} {count, plural,\n one {秒}\n other {秒}\n}",
+ "week": "{count} {count, plural,\n one {週間}\n other {週間}\n}"
+ },
+ "future_duration": {
+ "day": "{count} {count, plural,\n one {日}\n other {日}\n}",
+ "hour": "{count} {count, plural,\n one {時間}\n other {時間}\n}",
+ "minute": "{count} {count, plural,\n one {分}\n other {分}\n}",
+ "second": "{count} {count, plural,\n one {秒}\n other {秒}\n}",
+ "week": "{count} {count, plural,\n one {週}\n other {週}\n}"
+ },
+ "just_now": "ちょうど今",
+ "never": "未実行",
+ "past_duration": {
+ "day": "{count} {count, plural,\n one {日}\n other {日}\n}前",
+ "hour": "{count} {count, plural,\n one {時間}\n other {時間}\n}前",
+ "minute": "{count} {count, plural,\n one {分}\n other {分}\n}前",
+ "second": "{count} {count, plural,\n one {秒}\n other {秒}\n}前",
+ "week": "{count} {count, plural,\n one {週}\n other {週}\n}前"
+ }
+ },
+ "service-control": {
+ "integration_doc": "インテグレーション ドキュメント",
+ "required": "この項目は必須です",
+ "service_data": "サービスデータ",
+ "target": "ターゲット",
+ "target_description": "このサービスは、対象となるエリア、デバイス、またはエンティティとして使用する必要があります。"
+ },
+ "service-picker": {
+ "service": "サービス"
+ },
+ "statistic-picker": {
+ "learn_more": "統計の詳細",
+ "missing_entity": "私のエンティティが一覧に表示されていないのはなぜですか?",
+ "no_match": "一致する統計が見つかりません",
+ "no_statistics": "統計がありません",
+ "statistic": "統計"
+ },
+ "statistics_charts": {
+ "loading_statistics": "統計を読み込んでいます…",
+ "no_statistics_found": "統計情報が見つかりません。",
+ "statistic_types": {
+ "max": "最大",
+ "mean": "平均",
+ "min": "最小",
+ "sum": "合計"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "エリアを選択",
+ "add_device_id": "デバイスを選択",
+ "add_entity_id": "エンティティを選択",
+ "expand": "エキスパンド",
+ "expand_area_id": "このエリアを個別のデバイスとエンティティに分割します。",
+ "expand_device_id": "このデバイスを個別のエンティティに分割します。",
+ "remove": "削除",
+ "remove_area_id": "エリアを削除する",
+ "remove_device_id": "デバイスを削除",
+ "remove_entity_id": "エンティティの削除"
+ },
+ "user-picker": {
+ "add_user": "ユーザーを追加",
+ "no_user": "ユーザーなし",
+ "remove_user": "ユーザーを削除する"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "{integration}で新しく検出されたデバイスを自動的に追加する必要がある場合。",
+ "enable_new_entities_label": "新しく追加されたエンティティを有効にします。",
+ "enable_polling_description": "Home Assistantが{integration}エンティティの更新情報を自動的にポーリングする場合。",
+ "enable_polling_label": "更新のポーリングを有効にします。",
+ "restart_home_assistant": "変更を有効にするには、Home Assistantを再起動する必要があります。",
+ "title": "{integration} のシステムオプション",
+ "update": "更新"
+ },
+ "domain_toggler": {
+ "reset_entities": "エンティティをリセット",
+ "title": "ドメインを切り替え"
+ },
+ "entity_registry": {
+ "control": "コントロール",
+ "customize_link": "エンティティのカスタマイズ",
+ "dismiss": "消去",
+ "editor": {
+ "advanced": "詳細設定",
+ "area": "エンティティエリアのみを設定する",
+ "area_note": "デフォルトでは、デバイスのエンティティはデバイスと同じエリアにあります。このエンティティのエリアを変更すると、デバイスのエリアに追従しなくなります。",
+ "change_device_area": "デバイスエリアの変更",
+ "confirm_delete": "このエントリを削除してもよろしいですか?",
+ "delete": "削除",
+ "device_class": "~として表示",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "ドア",
+ "garage_door": "ガレージのドア",
+ "opening": "その他",
+ "window": "ウィンドウ"
+ },
+ "cover": {
+ "door": "ドア",
+ "garage": "ガレージのドア",
+ "window": "ウィンドウ"
+ }
+ },
+ "device_disabled": "このエンティティのデバイスは無効になっています。",
+ "enabled_cause": "{cause} によって無効にされました。",
+ "enabled_delay_confirm": "有効なエンティティは {delay} 秒でHome Assistantに追加されます",
+ "enabled_description": "無効化されたエンティティは Home Assistant に追加されません。",
+ "enabled_label": "エンティティを有効化",
+ "enabled_restart_confirm": "Home Assistantを再起動して、エンティティの有効化を完了します",
+ "entity_id": "エンティティ ID",
+ "follow_device_area": "デバイスエリアをフォローする",
+ "icon": "アイコン",
+ "icon_error": "アイコンは、'prefix:iconname' の形式にする必要があります。例: 'mdi:home'",
+ "name": "名前",
+ "note": "注: これは、まだすべてのインテグレーションにおいて機能しないことがあります。",
+ "open_device_settings": "デバイス設定を開く",
+ "unavailable": "このエンティティは利用できません。",
+ "update": "更新"
+ },
+ "faq": "ドキュメント",
+ "info_customize": "{customize_link} セクションの一部の属性を上書きできます。",
+ "no_unique_id": "このエンティティ (''{entity_id}'') にはユニーク(一意な)IDがないため、UIから設定を管理構成できません。詳しくは、{faq_link} を参照してください。",
+ "related": "関連",
+ "settings": "設定"
+ },
+ "generic": {
+ "cancel": "キャンセル",
+ "close": "閉じる",
+ "default_confirmation_title": "よろしいですか?",
+ "ok": "OK"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "初期値",
+ "maximum": "最大値",
+ "minimum": "最小値",
+ "restore": "Home Assistantの起動時に、最後の値を復元します",
+ "step": "ステップサイズ"
+ },
+ "generic": {
+ "icon": "アイコン",
+ "name": "名前"
+ },
+ "input_datetime": {
+ "date": "日付",
+ "datetime": "日時",
+ "mode": "何を入力しますか",
+ "time": "時刻"
+ },
+ "input_number": {
+ "box": "入力フィールド",
+ "max": "最大値",
+ "min": "最小値",
+ "mode": "表示モード",
+ "slider": "スライダー",
+ "step": "ステップサイズ",
+ "unit_of_measurement": "測定単位"
+ },
+ "input_select": {
+ "add": "追加",
+ "add_option": "オプションを追加",
+ "no_options": "オプションはまだありません。",
+ "options": "オプション"
+ },
+ "input_text": {
+ "max": "最大の長さ",
+ "min": "最小の長さ",
+ "mode": "表示モード",
+ "password": "パスワード",
+ "pattern": "クライアント側検証の正規表現パターン",
+ "text": "テキスト"
+ },
+ "platform_not_loaded": "{platform} インテグレーションがロードされていません。 'default_config:' または、''{platform}:'' を追加して、設定に追加してください。",
+ "required_error_msg": "この項目は必須です",
+ "timer": {
+ "duration": "期間"
+ },
+ "yaml_not_editable": "このエンティティの設定は UI から編集できません。UI から設定されたエンティティのみが UI から設定できます。"
+ },
+ "image_cropper": {
+ "crop": "収納"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "カバーを閉じる",
+ "close_tile_cover": "閉鎖時のカバーの傾き",
+ "close_tilt_cover": "閉鎖時のカバーの傾き",
+ "open_cover": "カバーを開く",
+ "open_tilt_cover": "開放時のカバーの傾き",
+ "stop_cover": "カバーを止める"
+ },
+ "details": "詳細",
+ "dismiss": "ダイアログを閉じる",
+ "edit": "エンティティを編集",
+ "history": "履歴",
+ "last_changed": "最終変更日",
+ "last_updated": "最終更新",
+ "logbook": "ログブック",
+ "person": {
+ "create_zone": "現在地からゾーンを作成"
+ },
+ "remote": {
+ "activity": "現在のアクティビティ"
+ },
+ "restored": {
+ "confirm_remove_text": "このエンティティを削除しますか?",
+ "confirm_remove_title": "エンティティを削除しますか?",
+ "not_provided": "このエンティティは現在利用できません。削除や変更され機能しなくなり孤立したインテグレーションやデバイスとなっています。",
+ "remove_action": "エンティティの削除",
+ "remove_intro": "エンティティが使用されなくなった場合は、削除することでクリーンアップできます。"
+ },
+ "script": {
+ "last_action": "最後のアクション",
+ "last_triggered": "最後のトリガー"
+ },
+ "settings": "エンティティ設定",
+ "show_more": "詳細を表示",
+ "sun": {
+ "elevation": "高度",
+ "rising": "日の出",
+ "setting": "日の入り"
+ },
+ "updater": {
+ "title": "更新手順"
+ },
+ "vacuum": {
+ "clean_spot": "クリーンスポット",
+ "commands": "掃除機コマンド:",
+ "fan_speed": "ファン回転速度",
+ "locate": "見つける",
+ "pause": "一時停止",
+ "return_home": "ホームに戻戻る",
+ "start": "開始",
+ "start_pause": "開始/一時停止",
+ "status": "状態",
+ "stop": "停止"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "MQTTメッセージをJSONとして解析する",
+ "entities": "エンティティ",
+ "no_entities": "エンティティなし",
+ "no_triggers": "トリガーなし",
+ "payload_display": "ペイロード表示",
+ "recent_messages": "{n}最近受信したメッセージ",
+ "show_as_yaml": "YAMLとして表示",
+ "title": "{device}デバッグ情報",
+ "triggers": "トリガー"
+ },
+ "options_flow": {
+ "form": {
+ "header": "オプション"
+ },
+ "loading": {
+ "loading_flow": "{integration}オプションが初期化されるまでお待ちください",
+ "loading_step": "{integration}次のステップをロードする"
+ },
+ "success": {
+ "description": "オプションを保存しました。"
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "エリア",
+ "automation": "オートメーション",
+ "blueprint": "設計図",
+ "core": "一般",
+ "customize": "カスタマイズ",
+ "devices": "デバイス",
+ "energy": "エネルギー",
+ "entities": "エンティティ",
+ "helpers": "ヘルパー",
+ "info": "情報",
+ "integrations": "インテグレーション",
+ "logs": "ログ",
+ "lovelace": "Lovelace ダッシュボード",
+ "person": "人",
+ "scene": "シーン",
+ "script": "スクリプト",
+ "server_control": "サーバー コントロール",
+ "tag": "タグ",
+ "users": "ユーザー",
+ "zone": "ゾーン"
+ },
+ "reload": {
+ "automation": "オートメーション",
+ "command_line": "コマンドラインエンティティをリロードする",
+ "core": "場所とカスタマイズをリロード",
+ "filesize": "ファイルサイズエンティティをリロードします",
+ "filter": "フィルタエンティティをリロードします",
+ "generic": "IPカメラエンティティをリロードします",
+ "generic_thermostat": "サーモスタットエンティティをリロードします",
+ "group": "グループ、グループ エンティティと通知サービス",
+ "history_stats": "履歴エンティティをリロードします",
+ "homekit": "HomeKitをリロード",
+ "input_boolean": "真偽値入力(booleans)",
+ "input_datetime": "日時入力",
+ "input_number": "番号入力",
+ "input_select": "選択入力",
+ "input_text": "テキスト入力",
+ "min_max": "最小/最大エンティティをリロードします",
+ "mqtt": "mqttエンティティをリロードします",
+ "person": "人",
+ "ping": "pingバイナリセンサーエンティティをリロードします",
+ "reload": "{domain}をリロードします",
+ "rest": "残りのエンティティをリロードし通知します",
+ "rpi_gpio": "Raspberry Pi GPIOエンティティをリロードします",
+ "scene": "シーン",
+ "script": "スクリプト",
+ "smtp": "SMTP通知サービスをリロードします",
+ "statistics": "統計エンティティをリロードします",
+ "telegram": "テレグラム通知サービスをリロードします",
+ "template": "テンプレートエンティティをリロードします",
+ "themes": "テーマ",
+ "trend": "トレンドエンティティをリロードします",
+ "universal": "ユニバーサルメディアプレーヤーエンティティをリロードします",
+ "zone": "ゾーン"
+ },
+ "server_control": {
+ "perform_action": "サーバー {action}",
+ "restart": "再起動",
+ "stop": "停止"
+ },
+ "types": {
+ "navigation": "ナビゲート",
+ "reload": "リロード",
+ "server_control": "サーバー"
+ }
+ },
+ "filter_placeholder": "エンティティフィルター",
+ "key_c_hint": "どのページでも'c'を押すと、この検索バーが表示されます。",
+ "nothing_found": "何も見つかりませんでした!",
+ "title": "クイックサーチ"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant は何も聞きませんでした",
+ "error": "エラーが発生しました",
+ "found": "以下のようなものを見つけました:",
+ "how_can_i_help": "どうなご用でしょう?",
+ "label": "質問を入力して「Enter」を押してください。",
+ "label_voice": "入力して「enter」を押すか、マイクをタップして話します"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "このデバイス経由でデバイスを追加",
+ "clusters": "クラスタの管理",
+ "device_children": "子を見る",
+ "reconfigure": "デバイスを再設定",
+ "remove": "デバイスを削除",
+ "view_in_visualization": "ビジュアライゼーションで表示",
+ "zigbee_information": "Zigbee 情報"
+ },
+ "confirmations": {
+ "remove": "デバイスを削除してもよろしいですか?"
+ },
+ "device_children": "Zigbeeデバイスの子",
+ "device_signature": "Zigbee デバイス署名",
+ "last_seen": "最後に見た",
+ "manuf": "{manufacturer}",
+ "no_area": "エリアなし",
+ "power_source": "電源",
+ "quirk": "癖",
+ "services": {
+ "reconfigure": "ZHAデバイスを再設定します(デバイスの修復)。デバイスに問題がある場合に使用します。問題のデバイスがバッテリー駆動のデバイスである場合は、このサービスを使用するときに、デバイスが起動(awake)していて、コマンドを受け入れていかを確認してください。",
+ "remove": "Zigbee ネットワークからデバイスを削除します。",
+ "updateDeviceName": "デバイス レジストリでこのデバイスのカスタム名を設定します。",
+ "zigbee_information": "デバイスのZigbee情報を表示します。"
+ },
+ "unknown": "不明",
+ "zha_device_card": {
+ "device_name_placeholder": "デバイス名の変更"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "属性",
+ "battery_device_warning": "再構成プロセスを開始する前に、バッテリ駆動デバイスをスリープ解除する必要があります。デバイスのスリープ解除方法については、デバイスのマニュアルを参照してください。",
+ "bind_header": "バインディング",
+ "button_hide": "詳細を非表示",
+ "button_show": "詳細を表示",
+ "cluster_header": "クラスター",
+ "configuration_complete": "デバイスの再構成が完了しました。",
+ "configuration_failed": "デバイスの再構成に失敗しました。追加情報はログで入手できる場合があります。",
+ "configuring_alt": "設定",
+ "heading": "デバイスを再設定",
+ "in_progress": "デバイスを再構成中です。これには時間がかかる場合があります。",
+ "introduction": "Zigbee ネットワーク上のデバイスを再構成します。デバイスが正常に機能していない場合は、この機能を使用します。",
+ "min_max_change": "最小/最大/変更",
+ "reporting_header": "報告",
+ "run_in_background": "このダイアログを閉じてしまっても、再構成はバックグラウンドでそのまま継続されます。",
+ "start_reconfiguration": "再構成を開始"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\n one {日}\n other {日間}\n}",
+ "hour": "{count} {count, plural,\n one {時間}\n other {時間}\n}",
+ "minute": "{count} {count, plural,\n one {分}\n other {分}\n}",
+ "second": "{count} {count, plural,\n one {秒}\n other {秒}\n}",
+ "week": "{count} {count, plural,\n one {週間}\n other {週間}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "YAMLで設定を編集することはできます。",
+ "editor_not_available": "タイプ \"{type}\" で利用できるビジュアルエディタがありません。",
+ "editor_not_supported": "この設定では、Visual エディタはサポートされていません。",
+ "error_detected": "設定エラーが検出されました",
+ "key_missing": "必要なキー \"{key}\" がありません。",
+ "key_not_expected": "キー \" {key} \"は予期されていないか、ビジュアルエディタでサポートされていません。",
+ "key_wrong_type": "\"{key}\" に指定された値は、ビジュアル エディタではサポートされていません。({type_correct}) をサポートしていますが、受信したのは、 ({type_wrong}) です。",
+ "no_state_array_support": "ビジュアルエディタでサポートされていない複数の状態値",
+ "no_template_editor_support": "ビジュアルエディタでサポートされていないテンプレート",
+ "no_type_provided": "タイプは提供されていません。"
+ },
+ "supervisor": {
+ "ask": "ヘルプを確認する",
+ "observer": "オブザーバーの確認",
+ "reboot": "ホストを再起動してみてください",
+ "system_health": "システム状態のチェック",
+ "title": "Supervisorパネルを読み込めませんでした!",
+ "wait": "開始したばかりの場合は、Supervisorに十分な時間を与えているかどうかを確認してください。"
+ }
+ },
+ "login-form": {
+ "log_in": "ログイン",
+ "password": "パスワード",
+ "remember": "覚えて"
+ },
+ "notification_drawer": {
+ "click_to_configure": "ボタンをクリックして{entity}を設定します",
+ "close": "クローズ",
+ "dismiss_all": "すべて却下する",
+ "empty": "通知はありません",
+ "title": "通知"
+ },
+ "notification_toast": {
+ "connection_lost": "接続が切れました。再接続中…",
+ "dismiss": "閉じる",
+ "integration_starting": "{integration}の開始、完了するまで一部の機能は利用できません。",
+ "service_call_failed": "サービス{service}の呼び出しに失敗しました。",
+ "started": "Home Assistantが開始されました!",
+ "starting": "Home Assistantが起動中です。全機能が利用可能なるまで、もうしばらくお待ちください。",
+ "triggered": "トリガーしました {name}",
+ "wrapping_up_startup": "起動の最終処理中、完了するまで一部の機能は利用できません。"
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "設定オプションが見つかりませんか?アドバイスモードを有効にしてください。",
+ "link_profile_page": "プロフィールページ"
+ },
+ "areas": {
+ "add_picture": "写真を追加",
+ "assigned_to_area": "このエリアに割り当て済み",
+ "caption": "エリア",
+ "data_table": {
+ "area": "エリア",
+ "devices": "デバイス",
+ "entities": "エンティティ"
+ },
+ "delete": {
+ "confirmation_text": "このエリアのすべてのデバイスは割り当て解除されます。",
+ "confirmation_title": "このエリアを削除してもよろしいですか?"
+ },
+ "description": "デバイスとエンティティをエリアにグループ化",
+ "edit_settings": "エリア設定",
+ "editor": {
+ "area_id": "エリアID",
+ "create": "作成",
+ "default_name": "新しいエリア",
+ "delete": "削除",
+ "linked_entities_caption": "エンティティ",
+ "name": "名前",
+ "name_required": "名前は必須です",
+ "no_linked_entities": "このエリアにリンクしているエンティティはありません。",
+ "unknown_error": "不明なエラー",
+ "update": "更新"
+ },
+ "picker": {
+ "create_area": "エリアの作成",
+ "header": "エリア",
+ "integrations_page": "インテグレーションページ",
+ "introduction": "エリアは、デバイスがどこにあるかを整理するために使用されます。この情報は、Home Assistant全体で使用され、インターフェイス、アクセス権、および他のシステムとのインテグレーションを整理するために使用されます。",
+ "introduction2": "デバイスをエリアに配置するには、次のリンクを使用してインテグレーション ページに移動し、設定済みのインテグレーションをクリックしてデバイス カードにアクセスします。",
+ "no_areas": "まだエリアがないようです!"
+ },
+ "targeting_area": "このエリアをターゲットに設定する"
+ },
+ "automation": {
+ "caption": "オートメーション",
+ "description": "カスタム行動ルールを作成する",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "設計図を使用する"
+ },
+ "header": "新しいオートメーションを作成する",
+ "how": "新しいオートメーションをどのように作成しますか?",
+ "start_empty": "空のオートメーションから始める",
+ "start_empty_description": "新しいオートメーションをゼロから作成する",
+ "thingtalk": {
+ "create": "作成",
+ "header": "作成するオートメーションの説明",
+ "input_label": "このオートメーションは何をすべきですか?",
+ "intro": "そして、私たちはあなたのためにそれを作成しようとします。例: 私が離席したらライトを消す。"
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "アクションを追加",
+ "delete": "削除",
+ "delete_confirm": "削除してもよろしいですか?",
+ "duplicate": "複製",
+ "header": "アクション",
+ "introduction": "アクションは、オートメーションがトリガーされたときにHome Assistantが実行するものです。",
+ "learn_more": "アクションの詳細",
+ "name": "アクション",
+ "type": {
+ "choose": {
+ "add_option": "オプションを追加",
+ "conditions": "条件",
+ "default": "デフォルトのアクション",
+ "label": "選択",
+ "option": "オプション {number}",
+ "remove_option": "オプションを削除",
+ "sequence": "アクション"
+ },
+ "condition": {
+ "label": "条件"
+ },
+ "delay": {
+ "delay": "時間",
+ "label": "時間が経つのを待つ(遅延)"
+ },
+ "device_id": {
+ "action": "アクション",
+ "extra_fields": {
+ "brightness_pct": "明るさ",
+ "code": "コード",
+ "flash": "フラッシュ",
+ "humidity": "湿度",
+ "message": "メッセージ",
+ "mode": "モード",
+ "position": "位置",
+ "title": "タイトル",
+ "value": "値"
+ },
+ "label": "デバイス"
+ },
+ "event": {
+ "event": "イベント",
+ "label": "イベントを実行",
+ "service_data": "サービスデータ"
+ },
+ "repeat": {
+ "label": "繰り返す",
+ "sequence": "アクション",
+ "type": {
+ "count": {
+ "label": "カウント"
+ },
+ "until": {
+ "conditions": "条件まで",
+ "label": "まで"
+ },
+ "while": {
+ "conditions": "条件",
+ "label": "しばらくの間"
+ }
+ },
+ "type_select": "繰り返しのタイプ"
+ },
+ "scene": {
+ "label": "シーンをアクティブにする"
+ },
+ "service": {
+ "label": "サービスの呼び出し"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "タイムアウト時に続行",
+ "label": "トリガーを待つ",
+ "timeout": "タイムアウト(オプション)"
+ },
+ "wait_template": {
+ "continue_timeout": "タイムアウト時に続行",
+ "label": "Wait ",
+ "timeout": "タイムアウト(オプション)",
+ "wait_template": "待機テンプレート"
+ }
+ },
+ "type_select": "アクションの種類",
+ "unsupported_action": "アクションに対するビジュアルエディタでのサポートなし: {action}"
+ },
+ "alias": "名前",
+ "blueprint": {
+ "blueprint_to_use": "使用する設計図",
+ "header": "設計図",
+ "no_blueprints": "設計図はありません",
+ "no_inputs": "この設計図には入力がありません。"
+ },
+ "conditions": {
+ "add": "条件を追加",
+ "delete": "削除",
+ "delete_confirm": "削除してもよろしいですか?",
+ "duplicate": "複製",
+ "header": "条件",
+ "introduction": "条件はオプションであり、すべての条件が満たされない限り、オートメーション(自動化)は実行されません。",
+ "learn_more": "条件の詳細",
+ "name": "条件",
+ "type": {
+ "and": {
+ "label": "AND"
+ },
+ "device": {
+ "condition": "条件",
+ "extra_fields": {
+ "above": "上",
+ "below": "以下に",
+ "for": "期間",
+ "hvac_mode": "HVACモード",
+ "preset_mode": "プリセットモード"
+ },
+ "label": "デバイス"
+ },
+ "not": {
+ "label": "Not"
+ },
+ "numeric_state": {
+ "above": "超過",
+ "below": "未満",
+ "label": "数値の状態",
+ "value_template": "バリューテンプレート(オプショナル)"
+ },
+ "or": {
+ "label": "OR"
+ },
+ "state": {
+ "label": "状態",
+ "state": "状態"
+ },
+ "sun": {
+ "after": "後:",
+ "after_offset": "オフセット後(オプション)",
+ "before": "前:",
+ "before_offset": "オフセット前(オプション)",
+ "label": "太陽",
+ "sunrise": "日の出",
+ "sunset": "日の入り"
+ },
+ "template": {
+ "label": "テンプレート",
+ "value_template": "バリューテンプレート"
+ },
+ "time": {
+ "after": "後",
+ "before": "前",
+ "label": "時間",
+ "type_input": "日付/時刻ヘルパーの値",
+ "type_value": "定刻",
+ "weekdays": {
+ "fri": "金曜日",
+ "mon": "月曜日",
+ "sat": "土曜日",
+ "sun": "日曜日",
+ "thu": "木曜日",
+ "tue": "火曜日",
+ "wed": "水曜日"
+ }
+ },
+ "trigger": {
+ "id": "トリガーID",
+ "label": "トリガー",
+ "no_triggers": "利用可能なトリガーはありません。"
+ },
+ "zone": {
+ "entity": "場所に対応するエンティティ",
+ "label": "ゾーン",
+ "zone": "ゾーン"
+ }
+ },
+ "type_select": "条件の種類",
+ "unsupported_condition": "条件に対するビジュアルエディタでのサポートなし: {condition}"
+ },
+ "copy_to_clipboard": "クリップボードにコピー",
+ "default_name": "新しいオートメーション",
+ "description": {
+ "label": "説明",
+ "placeholder": "オプションの説明"
+ },
+ "edit_ui": "UI で編集",
+ "edit_yaml": "YAML で編集",
+ "enable_disable": "オートメーションの有効化/無効化",
+ "introduction": "オートメーションを使用して、あなたの家に命を吹き込みましょう。",
+ "load_error_not_editable": "編集できるのは、automations.yamlのオートメーションのみです。",
+ "load_error_unknown": "オートメーションの読み込み中にエラーが発生しました ({err_no})。",
+ "max": {
+ "parallel": "並列実行の最大数",
+ "queued": "キューの長さ"
+ },
+ "modes": {
+ "description": "このモードは、アクションが以前のトリガーから実行されている間にオートメーションがトリガーされたときに何が起こるかを制御します。詳細については{documentation_link}を確認してください。",
+ "documentation": "オートメーションのドキュメント",
+ "label": "モード",
+ "parallel": "並列",
+ "queued": "待機中",
+ "restart": "再起動",
+ "single": "シングル(デフォルト)"
+ },
+ "move_down": "下に移動",
+ "move_up": "上に移動",
+ "save": "保存",
+ "show_trace": "トレースを表示",
+ "triggers": {
+ "add": "トリガーを追加",
+ "delete": "削除",
+ "delete_confirm": "削除してもよろしいですか?",
+ "duplicate": "複製",
+ "edit_id": "トリガーIDを変更",
+ "header": "トリガー",
+ "id": "トリガーID",
+ "introduction": "トリガーはオートメーションルールの処理を開始するものです。同じルールに対して複数のトリガーを指定することもできます。トリガーが開始されると、Home Assistantは条件がある場合はそれを検証し、アクションを呼び出します。",
+ "learn_more": "トリガーの詳細",
+ "name": "トリガー",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "上",
+ "below": "以下に",
+ "for": "期間 (オプション)",
+ "zone": "ゾーン"
+ },
+ "label": "デバイス",
+ "trigger": "トリガー"
+ },
+ "event": {
+ "context_user_pick": "ユーザーを選択",
+ "context_user_picked": "ユーザー起動イベント",
+ "context_users": "トリガーされるイベントの制限",
+ "event_data": "イベントのデータ",
+ "event_type": "イベントの種類",
+ "label": "イベント"
+ },
+ "geo_location": {
+ "enter": "入力",
+ "event": "イベント:",
+ "label": "ジオロケーション",
+ "leave": "去る",
+ "source": "ソース:",
+ "zone": "ゾーン"
+ },
+ "homeassistant": {
+ "event": "イベント:",
+ "label": "Home Assistant",
+ "shutdown": "停止",
+ "start": "起動"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "ペイロード(オプション)",
+ "topic": "トピック"
+ },
+ "numeric_state": {
+ "above": "上",
+ "below": "以下に",
+ "label": "数値の状態",
+ "value_template": "バリューテンプレート(オプショナル)"
+ },
+ "state": {
+ "attribute": "属性(オプション)",
+ "for": "持続時間",
+ "from": "変化前 (オプション)",
+ "label": "状態",
+ "to": "変化後 (オプション)"
+ },
+ "sun": {
+ "event": "イベント:",
+ "label": "太陽",
+ "offset": "オフセット(オプション)",
+ "sunrise": "日の出",
+ "sunset": "日の入り"
+ },
+ "tag": {
+ "label": "タグ"
+ },
+ "template": {
+ "label": "テンプレート",
+ "value_template": "バリューテンプレート"
+ },
+ "time": {
+ "at": "時間",
+ "label": "時刻",
+ "type_input": "日付/時刻ヘルパーの値",
+ "type_value": "定刻"
+ },
+ "time_pattern": {
+ "hours": "時間",
+ "label": "タイムパターン",
+ "minutes": "分",
+ "seconds": "秒"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook ID"
+ },
+ "zone": {
+ "enter": "いる",
+ "entity": "場所に対応するエンティティ",
+ "event": "イベント:",
+ "label": "ゾーン",
+ "leave": "去る",
+ "zone": "ゾーン"
+ }
+ },
+ "type_select": "トリガーの種類",
+ "unsupported_platform": "プラットフォームに対するビジュアルエディタでのサポートなし: {platform}"
+ },
+ "unsaved_confirm": "未保存の変更があります。このまま離れてしまってもよろしいですか?"
+ },
+ "picker": {
+ "add_automation": "オートメーションの追加",
+ "delete_automation": "オートメーションを削除",
+ "delete_confirm": "このオートメーションを削除してもよろしいですか?",
+ "dev_automation": "オートメーションのデバッグ",
+ "dev_only_editable": "ユニークID(一意)が定義されたオートメーションのみがデバッグ可能です。",
+ "duplicate": "複製",
+ "duplicate_automation": "オートメーションの複製",
+ "edit_automation": "オートメーションを編集",
+ "header": "オートメーションエディタ",
+ "headers": {
+ "name": "名前"
+ },
+ "introduction": "オートメーションエディタを使用すると、オートメーションを作成および編集できます。以下のリンクをクリックして、Home Assistantを正しく設定したことを確認する手順を確認してください。",
+ "learn_more": "オートメーションの詳細",
+ "no_automations": "オートメーションが見つかりませんでした",
+ "only_editable": "automations.yaml で定義されたオートメーションのみが編集可能です。",
+ "pick_automation": "編集するオートメーションを選択",
+ "show_info_automation": "オートメーションに関する情報を表示"
+ },
+ "thingtalk": {
+ "create": "オートメーションを作成",
+ "link_devices": {
+ "ambiguous_entities": "1つ以上のデバイスに複数の一致するエンティティがあります。使用するエンティティを選択してください。",
+ "header": "素晴らしい!次に、いくつかのデバイスをリンクする必要があります",
+ "unknown_placeholder": "不明なプレースホルダ"
+ },
+ "task_selection": {
+ "error_empty": "コマンドを入力するか、スキップをタップします。",
+ "error_unsupported": "その用途のオートメーションは(まだ?)作成できていません",
+ "for_example": "例えば:",
+ "header": "新しいオートメーションを作成する",
+ "introduction": "このオートメーションの実行内容の下に入力すると、Home Assistantのオートメーションに変換されます。",
+ "language_note": "注: 現在は英語のみがサポートされています。"
+ }
+ },
+ "trace": {
+ "download_trace": "ダウンロード トレース",
+ "edit_automation": "オートメーションの編集",
+ "newer_trace": "新しいトレース",
+ "older_trace": "古いトレース",
+ "refresh": "リフレッシュ"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "コミュニティフォーラム",
+ "error_no_url": "設計図のURLを入力してください。",
+ "file_name": "設計図のパス",
+ "header": "新しい設計図を追加する",
+ "import_btn": "設計図をインポートする",
+ "import_header": "設計図「{name}」",
+ "import_introduction_link": "他のユーザーの設計図をGithubと{community_link}からインポートできます。以下に設計図のURLを入力します。",
+ "importing": "設計図を読み込んでいます...",
+ "raw_blueprint": "設計図コンテンツ",
+ "save_btn": "設計図のインポート",
+ "saving": "設計図をインポートしています…",
+ "unsupported_blueprint": "この設計図はサポートされていません",
+ "url": "設計図のURL"
+ },
+ "caption": "設計図",
+ "description": "設計図の管理",
+ "overview": {
+ "add_blueprint": "設計図を追加する",
+ "confirm_delete_header": "この設計図を削除しますか?",
+ "confirm_delete_text": "この設計図を削除してもよろしいですか?",
+ "create_automation": "オートメーションを作成",
+ "create_script": "スクリプトを作成",
+ "delete_blueprint": "設計図を削除",
+ "discover_more": "より多くの設計図を探す",
+ "header": "設計図エディタ",
+ "headers": {
+ "domain": "ドメイン",
+ "file_name": "ファイル名",
+ "name": "名前",
+ "type": "タイプ"
+ },
+ "introduction": "設計図の設定では、設計図のインポートと管理を行うことができます。",
+ "learn_more": "設計図の詳細",
+ "share_blueprint": "設計図を共有する",
+ "share_blueprint_no_url": "設計図を共有できません: ソースURLがありません",
+ "types": {
+ "automation": "オートメーション",
+ "script": "スクリプト"
+ },
+ "use_blueprint": "オートメーションを作成"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "設定に関するドキュメント",
+ "disable": "無効",
+ "enable": "有効",
+ "enable_ha_skill": "AlexaのHome Assistantスキルを有効にする",
+ "enable_state_reporting": "状態レポートを有効にする",
+ "info": "Home Assistant Cloud向けのAlexaインテグレーションにより、Alexa対応のデバイスを経由して、あなたのHome Assistantのデバイスをすべて制御できるようになります。",
+ "info_state_reporting": "状態レポートを有効にすると、Home Assistantは公開されたエンティティのすべての状態変化をAmazonに送信します。これにより、Alexaアプリで常に最新の状態を確認し、状態の変化を利用してルーティンを作成できます。",
+ "manage_entities": "エンティティの管理",
+ "state_reporting_error": "状態を{enable_disable}報告できません。",
+ "sync_entities": "エンティティをAmazonと同期",
+ "sync_entities_error": "エンティティの同期に失敗しました:",
+ "title": "Alexa"
+ },
+ "connected": "接続",
+ "connecting": "接続しています…",
+ "connection_status": "クラウド接続の状態",
+ "fetching_subscription": "サブスクリプションを取得しています...",
+ "google": {
+ "config_documentation": "設定に関するドキュメント",
+ "devices_pin": "セキュリティデバイス PIN",
+ "enable_ha_skill": "GoogleアシスタントのHome Assistantスキルを有効にする",
+ "enable_state_reporting": "状態レポートを有効にする",
+ "enter_pin_error": "ピンを保存できません:",
+ "enter_pin_hint": "セキュリティデバイスを使用するには PIN を入力してください",
+ "enter_pin_info": "セキュリティ デバイスと通信するには、ピンを入力してください。セキュリティデバイスは、ドア、ガレージドア、ロックです。Google アシスタント経由でこのようなデバイスとやり取りする際に、このピンを入力する必要があります。",
+ "info": "Home Assistant Cloud向けのGoogleアシスタント インテグレーションにより、Googleアシスタント対応のデバイスを経由して、あなたのHome Assistantのデバイスをすべて制御できるようになります。",
+ "info_state_reporting": "状態レポートを有効にすると、Home Assistantは公開されたエンティティのすべての状態変化をGoogleに送信します。これにより、Googleアプリで常に最新の状態を確認し、状態の変化を利用してルーティンを作成できます。",
+ "manage_entities": "エンティティの管理",
+ "not_configured_text": "Google アシスタントを使用する前に、「Google Home」アプリで「Google アシスタント」のHome Assistant Cloud skillを有効にする必要があります。",
+ "not_configured_title": "Googleアシスタントがアクティブ化されていません",
+ "security_devices": "セキュリティデバイス",
+ "sync_entities": "エンティティをGoogleに同期",
+ "sync_entities_404_message": "エンティティをGoogleに同期できませんでした。Googleに「OK Google、デバイスを同期して」と尋ねてエンティティを同期してください。",
+ "title": "Googleアシスタント"
+ },
+ "integrations": "インテグレーション",
+ "integrations_introduction": "Home Assistant Cloud向けのインテグレーションにより、Home Assistantインスタンスを公共のインターネット上に公開しなくても、クラウド内のサービスに接続できます。",
+ "integrations_introduction2": "ウェブサイトを確認してください",
+ "integrations_link_all_features": "利用可能なすべての機能",
+ "manage_account": "アカウントの管理",
+ "nabu_casa_account": "Nabu Casa アカウント",
+ "not_connected": "接続されていません",
+ "remote": {
+ "access_is_being_prepared": "リモート アクセスの準備中です。準備ができ次第お知らせします。",
+ "certificate_info": "証明書情報",
+ "connected": "接続",
+ "info": "Home Assistant Cloud は、自宅の外からインスタンスへの安全なリモート接続を提供します。",
+ "instance_is_available": "インスタンスは次の場所にあります",
+ "instance_will_be_available": "インスタンスは次の時点で利用可能になります。",
+ "link_learn_how_it_works": "仕組みを学ぶ",
+ "not_connected": "接続されていません",
+ "reconnecting": "未接続です。再接続しようとしています。",
+ "remote_enabled": {
+ "caption": "自動的に接続",
+ "description": "このオプションを有効にすると、Home Assistantのインスタンスが常にリモートでアクセスできるようになります。"
+ },
+ "title": "リモートコントロール"
+ },
+ "sign_out": "サインアウト",
+ "thank_you_note": "Home Assistant Cloudにご参加いただきありがとうございます。あなたのような方がいるからこそ、私たちは皆さんに素晴らしいホームオートメーション体験を提供することができるのです。ありがとうございました。",
+ "tts": {
+ "default_language": "デフォルトで使用する言語",
+ "dialog": {
+ "create_automation": "オートメーションの作成",
+ "example_message": "こんにちは{name} 、サポートされているメディアプレーヤーで任意のテキストを再生できます!",
+ "header": "テキスト読み上げの試行",
+ "play": "再生",
+ "target": "ターゲット",
+ "target_browser": "ブラウザ"
+ },
+ "female": "女性",
+ "info": "音声合成サービスを利用して、家があなたに語りかけることで、あなたの家に個性をもたらします。{service} サービスを使用して、オートメーションやスクリプトで使用できます。",
+ "male": "男性",
+ "title": "テキスト読み上げ",
+ "try": "試す"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Webhookを無効にできませんでした:",
+ "info": "Webhookでトリガーされるように設定されたものには、公共からアクセス可能なURLが与えられ、インスタンスそのものをインターネットに公開しなくても、どこからでもHome Assistantにデータを送り返すことができます。",
+ "link_learn_more": "Webhookを利用したオートメーションの作成について詳しく学んでください。",
+ "loading": "読み込み中…",
+ "manage": "管理",
+ "no_hooks_yet": "Webhookがまだないようです。設定を開始します",
+ "no_hooks_yet2": "または作成することもできます",
+ "no_hooks_yet_link_automation": "Webhookオートメーション",
+ "no_hooks_yet_link_integration": "Webhookベースのインテグレーション",
+ "title": "Webhooks"
+ }
+ },
+ "alexa": {
+ "banner": "この UI を介して公開されるエンティティの編集は、configuration.yaml でエンティティ フィルターを設定しているため無効になります。",
+ "dont_expose_entity": "エンティティを公開しない",
+ "expose": "Alexa に公開",
+ "expose_entity": "エンティティの公開",
+ "exposed": "{selected}は公開されました",
+ "exposed_entities": "公開されたエンティティ",
+ "follow_domain": "ドメインをフォローする",
+ "manage_domains": "ドメインの管理",
+ "not_exposed": "{selected} は公開されていません",
+ "not_exposed_entities": "公開されていないエンティティ",
+ "title": "Alexa"
+ },
+ "description_features": "AlexaやGoogleアシスタントと連携させて、外出先から家をコントロール",
+ "description_login": "{email}としてログインしました",
+ "description_not_login": "ログインしていない",
+ "dialog_certificate": {
+ "certificate_expiration_date": "証明書の有効期限:",
+ "certificate_information": "証明書情報",
+ "close": "クローズ",
+ "fingerprint": "証明書のフィンガープリント:",
+ "will_be_auto_renewed": "自動的に更新されます"
+ },
+ "dialog_cloudhook": {
+ "available_at": "Webhookは次のURLで入手できます:",
+ "close": "クローズ",
+ "confirm_disable": "このWebhookを無効化してもよろしいですか?",
+ "copied_to_clipboard": "クリップボードにコピーしました",
+ "info_disable_webhook": "このWebhookを使用したくない場合は、次の手順を実行します。",
+ "link_disable_webhook": "無効にする",
+ "managed_by_integration": "この Webhook は、インテグレーションによって管理されているため、無効にすることはできません。",
+ "view_documentation": "ドキュメントを見る",
+ "webhook_for": "{name} Webhook"
+ },
+ "forgot_password": {
+ "check_your_email": "パスワードをリセットする方法については、メールを確認してください。",
+ "email": "Eメール",
+ "email_error_msg": "無効な電子メール",
+ "instructions": "メールアドレスを入力してください。パスワードをリセットするためのリンクが送信されます。",
+ "send_reset_email": "リセットメールを送信",
+ "subtitle": "パスワードをお忘れですか",
+ "title": "パスワードを忘れた場合"
+ },
+ "google": {
+ "banner": "この UI を介して公開されるエンティティの編集は、configuration.yaml でエンティティ フィルターを設定しているため無効になります。",
+ "disable_2FA": "多要素認証を無効にする",
+ "dont_expose_entity": "エンティティを公開しない",
+ "expose": "Google Assistant に公開",
+ "expose_entity": "エンティティを公開する",
+ "exposed": "{selected} は公開されました",
+ "exposed_entities": "公開されたエンティティ",
+ "follow_domain": "ドメインをフォローする",
+ "manage_domains": "ドメインの管理",
+ "not_exposed": "{selected} は公開されていません",
+ "not_exposed_entities": "公開されていないエンティティ",
+ "sync_to_google": "変更をGoogleに同期しています。",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "ログインする前にメールアドレスを確認する必要があります。",
+ "alert_password_change_required": "ログインする前にパスワードを変更する必要があります。",
+ "dismiss": "閉じる",
+ "email": "Eメール",
+ "email_error_msg": "無効な電子メール",
+ "forgot_password": "パスワードをお忘れですか?",
+ "introduction": "Home Assistant Cloudは、外出先からインスタンスへの安全なリモート接続を提供します。また、クラウド専用のサービスである、Amazon AlexaやGoogleアシスタントなどにも接続することができます。",
+ "introduction2": "このサービスはパートナーによって運営されています",
+ "introduction2a": "、Home Assistant の創設者によって設立された会社。",
+ "introduction3": "Home Assistant Cloudは、1か月間の無料トライアル付きのサブスクリプションサービスです。支払い情報は必要ありません。",
+ "learn_more_link": "Home Assistant Cloud の情報をもっと見る。",
+ "password": "パスワード",
+ "password_error_msg": "パスワードは8文字以上です",
+ "sign_in": "サインイン",
+ "start_trial": "1か月無料トライアルを開始",
+ "title": "クラウドログイン",
+ "trial_info": "支払い情報は必要ありません"
+ },
+ "register": {
+ "account_created": "アカウントが作成されました!アカウントを有効にする方法については、メールを確認してください。",
+ "create_account": "アカウントの作成",
+ "email_address": "メールアドレス",
+ "email_error_msg": "無効な電子メール",
+ "feature_amazon_alexa": "Amazon Alexaとのインテグレーション",
+ "feature_google_home": "Google Assistantとのインテグレーション",
+ "feature_remote_control": "家の外でのHome Assistantの制御",
+ "feature_webhook_apps": "OwnTracksなどのWebhookベースのアプリとの簡易的なインテグレーション",
+ "headline": "無料試用を開始",
+ "information": "アカウントを作成して、Home Assistant Cloudで1か月間の無料トライアルを開始しましょう。支払い情報は必要ありません。",
+ "information2": "試用版でも、Home Assistant Cloudのすべての特典にアクセスできます、例えば:",
+ "information3": "このサービスはパートナーが運営しています。",
+ "information3a": "Home AssistantとHass.ioの創業者によって設立された会社。",
+ "information4": "アカウントを登録することにより、以下の条件に同意するものとします。",
+ "link_privacy_policy": "プライバシーポリシー",
+ "link_terms_conditions": "利用規約",
+ "password": "パスワード",
+ "password_error_msg": "パスワードは 8 文字以上です",
+ "resend_confirm_email": "確認メールを再送信",
+ "start_trial": "試用を開始",
+ "title": "アカウントの登録"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "未保存の変更があります。このまま離れてしまってもよろしいですか?"
+ },
+ "learn_more": "さらに詳しく"
+ },
+ "core": {
+ "caption": "一般",
+ "description": "位置情報、ネットワークと分析",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "通貨",
+ "edit_requires_storage": "設定がconfiguration.yamlに保存されているため、エディタが無効になっています。",
+ "elevation": "高度",
+ "elevation_meters": "メートル",
+ "external_url": "外部URL",
+ "find_currency_value": "自分の通貨を見つける",
+ "imperial_example": "華氏、ポンド",
+ "internal_url": "内部URL",
+ "latitude": "緯度",
+ "location_name": "Home Assistantインストール名",
+ "longitude": "経度",
+ "metric_example": "摂氏、キログラム",
+ "save_button": "保存",
+ "time_zone": "タイムゾーン",
+ "unit_system": "単位システム",
+ "unit_system_imperial": "インペリアル",
+ "unit_system_metric": "メトリック"
+ },
+ "header": "一般的な設定",
+ "introduction": "位置情報、ネットワークや分析の設定"
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "次の属性は既にcustomize.yamlに設定されています。",
+ "attributes_not_set": "次の属性は設定されていません。必要に応じて設定してください。",
+ "attributes_outside": "次の属性は、customize.yamlの外部からカスタマイズされます。",
+ "attributes_override": "必要に応じてオーバーライドできます。",
+ "attributes_set": "次の属性はプログラム的に設定されています。",
+ "caption": "カスタマイズ",
+ "description": "エンティティのカスタマイズ",
+ "different_include": "おそらくドメインを介して、globまたは別のものを含む。",
+ "pick_attribute": "オーバーライドする属性を選択してください",
+ "picker": {
+ "documentation": "カスタマイズドキュメント",
+ "header": "カスタマイズ",
+ "introduction": "エンティティごとの属性を微調整します。追加/編集されたカスタマイズは、すぐに有効になります。削除されたカスタマイズは、エンティティが更新されたときに有効になります。"
+ },
+ "warning": {
+ "include_link": "customize.yaml を含めます",
+ "include_sentence": "あなたのconfiguration.yamlが正しくないようです",
+ "not_applied": "ここで行った変更は、その中に書き込まれますが、インクルードが適切に行われなければ、コンフィギュレーションの再読み込み後には適用されません。"
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "オートメーション、シーン、スクリプト、ヘルパーの管理",
+ "title": "オートメーションとシーン"
+ },
+ "blueprints": {
+ "description": "コミュニティによる既成のオートメーションとスクリプト",
+ "title": "設計図"
+ },
+ "companion": {
+ "description": "位置情報と通知",
+ "title": "コンパニオンアプリ"
+ },
+ "dashboards": {
+ "description": "カスタマイズされたカードのセットを作成して、あなたの家をコントロール",
+ "title": "ダッシュ ボード"
+ },
+ "devices": {
+ "description": "インテグレーション、デバイス、エンティティ、エリア",
+ "title": "デバイスとサービス"
+ },
+ "energy": {
+ "description": "エネルギーの生産と消費を監視",
+ "title": "エネルギー"
+ },
+ "people": {
+ "description": "Home Assistantで追跡する人とゾーンの管理",
+ "title": "人とゾーン"
+ },
+ "settings": {
+ "description": "基本設定、サーバーコントロール、ログ、情報",
+ "title": "設定"
+ },
+ "supervisor": {
+ "description": "バックアップの作成、ログの確認、システムの再起動",
+ "title": "アドオン、バックアップ、Supervisor"
+ },
+ "tags": {
+ "description": "NFCタグ、QRコードなどをスキャンした時のオートメーション化",
+ "title": "タグ"
+ }
+ },
+ "devices": {
+ "add_prompt": "このデバイスを使用した{name}はまだ追加されていません。上の[+]ボタンをクリックして追加できます。",
+ "automation": {
+ "actions": {
+ "caption": "何かがトリガーされたとき…",
+ "no_actions": "アクションなし",
+ "unknown_action": "不明なアクション"
+ },
+ "automations": "オートメーション",
+ "conditions": {
+ "caption": "次の場合にのみ何かしてください…",
+ "no_conditions": "条件なし",
+ "unknown_condition": "不明な状態"
+ },
+ "create": "デバイスからオートメーションを作成",
+ "create_disable": "デバイスが無効になっているのでオートメーションを作成できません",
+ "no_automations": "オートメーションなし",
+ "no_device_automations": "このデバイスで利用可能なオートメーションはありません。",
+ "triggers": {
+ "caption": "いつ何かをする...",
+ "no_triggers": "トリガーなし",
+ "unknown_trigger": "不明なトリガー"
+ },
+ "unknown_automation": "不明なオートメーション"
+ },
+ "cant_edit": "編集できるのは、UI で作成された項目のみです。",
+ "caption": "デバイス",
+ "confirm_delete": "このデバイスを削除してもよろしいですか?",
+ "confirm_disable_config_entry": "{entry_name}デバイスはすでにありません。設定エントリーを無効にしますか?",
+ "confirm_rename_entity_ids": "エンティティの ID も変更しますか?",
+ "confirm_rename_entity_ids_warning": "この場合、これらのエンティティを現在使用している設定 (オートメーション、スクリプト、シーン、Lovelace など) は変更されません!新しいエンティティIDで使用するには、自分で更新する必要があります。",
+ "data_table": {
+ "area": "エリア",
+ "battery": "バッテリー",
+ "device": "デバイス",
+ "integration": "インテグレーション",
+ "manufacturer": "メーカー",
+ "model": "モデル",
+ "no_devices": "デバイスなし",
+ "no_integration": "インテグレーションなし"
+ },
+ "delete": "削除",
+ "description": "構成済みデバイスの管理",
+ "device_info": "デバイス情報",
+ "device_not_found": "デバイスが見つかりません。",
+ "disabled": "無効",
+ "disabled_by": {
+ "config_entry": "設定エントリ",
+ "integration": "インテグレーション",
+ "user": "ユーザー"
+ },
+ "download_diagnostics": "診断結果をダウンロード",
+ "edit_settings": "設定の変更",
+ "enabled_cause": "デバイスは{cause}によって無効にされています。",
+ "enabled_description": "無効になっているデバイスは表示されず、そのデバイスに属するエンティティも無効化され、Home Assistantに追加されません。",
+ "enabled_label": "デバイスを有効にする",
+ "entities": {
+ "add_entities_lovelace": "Lovelaceに追加",
+ "config": "設定",
+ "control": "コントロール",
+ "diagnostic": "診断",
+ "disabled_entities": "{count} {count, plural,\n one {無効なエンティティ}\n other {無効なエンティティ}\n}",
+ "entities": "エンティティ",
+ "hide_disabled": "無効を非表示",
+ "none": "このデバイスにはエンティティがありません",
+ "sensor": "センサー",
+ "state": "状態"
+ },
+ "name": "名前",
+ "no_devices": "デバイスなし",
+ "open_configuration_url_device": "デバイスにアクセス",
+ "open_configuration_url_service": "サービスにアクセス",
+ "picker": {
+ "filter": {
+ "filter": "フィルター",
+ "hidden_devices": "{number} 非表示 {number, plural,\n one {デバイス}\n other {デバイス}\n}",
+ "show_all": "すべてを表示",
+ "show_disabled": "無効なデバイスでも表示"
+ },
+ "search": "デバイスを探す"
+ },
+ "scene": {
+ "create": "デバイスからシーンを作成",
+ "create_disable": "デバイスが無効になっているのでシーンを作成できません",
+ "no_scenes": "シーンなし",
+ "scenes": "シーン"
+ },
+ "scenes": "シーン",
+ "script": {
+ "create": "デバイスからスクリプトを作成",
+ "create_disable": "デバイスが無効になっているのでスクリプトを作成できません",
+ "no_scripts": "スクリプトなし",
+ "scripts": "スクリプト"
+ },
+ "scripts": "スクリプト",
+ "unknown_error": "不明なエラー",
+ "unnamed_device": "名前のないデバイス",
+ "update": "更新",
+ "update_device_error": "デバイスの更新に失敗しました"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "バッテリーシステムを追加",
+ "battery_systems": "バッテリーシステム",
+ "dialog": {
+ "energy_into_battery": "バッテリーに充電されたエネルギー(kWh)",
+ "energy_out_of_battery": "バッテリーから消費されたエネルギー (kWh)",
+ "header": "バッテリーシステムの構成"
+ },
+ "learn_more": "利用方法について、詳細はこちら。",
+ "sub": "蓄電システムを使用している場合は、バッテリーから蓄積および使用されたエネルギー量を監視するように構成できます。",
+ "title": "蓄電システム"
+ },
+ "caption": "エネルギー",
+ "delete_integration": "このインテグレーションを削除してもよろしいですか?提供しているエンティティが削除されます",
+ "delete_source": "このソースを削除してもよろしいですか?",
+ "description": "エネルギーの生産と消費の監視",
+ "device_consumption": {
+ "add_device": "デバイスを追加",
+ "add_stat": "エネルギーを追跡するエンティティを選択します",
+ "devices": "デバイス",
+ "dialog": {
+ "device_consumption_energy": "機器の消費電力量 (kWh)",
+ "header": "デバイスを追加",
+ "selected_stat_intro": "デバイスのエネルギー使用量を表すエンティティを選択します。"
+ },
+ "learn_more": "利用方法について、詳細はこちら。",
+ "selected_stat": "エネルギーの追跡",
+ "sub": "個々の機器のエネルギー使用量を追跡することで、Home Assistantは機器ごとのエネルギー使用量を把握することができます。",
+ "title": "個々のデバイス"
+ },
+ "gas": {
+ "add_gas_source": "ガスの供給元を追加",
+ "dialog": {
+ "cost_entity": "現在の価格のエンティティを使用する",
+ "cost_entity_input": "{unit}/現在の価格のエンティティ",
+ "cost_number": "固定料金を使用する",
+ "cost_number_input": "{unit}m³ あたりの価格",
+ "cost_number_suffix": "{currency}/m³",
+ "cost_para": "消費したエネルギーのコストをHome Assistantで記録する方法を選択します。",
+ "cost_stat": "総コストを追跡するエンティティを使用する",
+ "cost_stat_input": "総コストエンティティ",
+ "energy_stat": "消費エネルギー (m³)",
+ "gas_usage": "ガス使用量",
+ "header": "ガス消費量の設定",
+ "m3_or_kWh": "ft³, m³, Wh, kWh または kMWh",
+ "no_cost": "コストを追跡しない",
+ "paragraph": "ガス消費量とは、あなたの家に流れ込んだガスの量です。"
+ },
+ "gas_consumption": "ガス消費量",
+ "learn_more": "利用方法について、詳細はこちら。",
+ "sub": "Home Assistantにガスの使用状況を監視させる。",
+ "title": "ガス消費量"
+ },
+ "grid": {
+ "add_co2_signal": "CO2 signalインテグレーションを追加",
+ "add_consumption": "消費を追加",
+ "add_return": "リターンを追加",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "現在の価格のエンティティを使用する",
+ "cost_entity_input": "現在の価格のエンティティ",
+ "cost_number": "静的価格を使用する",
+ "cost_number_input": "kWh あたりの価格",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Home Assistantが消費エネルギーのコストを追跡する方法を選択します。",
+ "cost_stat": "総コストを追跡するエンティティを使用",
+ "cost_stat_input": "総コスト エンティティ",
+ "energy_stat": "消費エネルギー(kWh)",
+ "header": "グリッド消費の設定",
+ "no_cost": "コストを追跡しない",
+ "paragraph": "グリッド消費はエネルギーグリッドから家庭に流れるエネルギーです。"
+ },
+ "to": {
+ "cost_entity": "現在のレートのエンティティを使用",
+ "cost_entity_input": "現在のレートを持つエンティティ",
+ "cost_number": "固定レートを使用",
+ "cost_number_input": "kWhあたりの料金",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "エネルギーをグリッドに戻すと、お金を取り戻すことができますか?",
+ "cost_stat": "受け取った合計金額を追跡するエンティティを使用",
+ "cost_stat_input": "報酬エンティティの合計",
+ "energy_stat": "グリッドに戻されたエネルギー(kWh)",
+ "header": "グリッド生産の設定",
+ "no_cost": "私はお金を取り戻さない",
+ "paragraph": "グリッドの生産は、ソーラーパネルからグリッドに流れるエネルギーです。"
+ }
+ },
+ "grid_carbon_footprint": "グリッド カーボンフットプリント",
+ "grid_consumption": "グリッド 消費",
+ "learn_more": "利用方法について、詳細はこちら。",
+ "return_to_grid": "グリッド 戻り",
+ "sub": "グリッドから消費するエネルギー量を設定し、エネルギーを生成した場合はグリッドに戻します。これにより、Home Assistantは、あなたの家全体のエネルギー使用量を追跡することができます。",
+ "title": "電力網"
+ },
+ "new_device_info": "デバイスの新規セットアップ後に、新しいデータがエネルギーダッシュボードに届くまで、最大で2時間かかることがあります。",
+ "solar": {
+ "add_solar_production": "太陽光発電を追加",
+ "dialog": {
+ "add_forecast": "予測を追加",
+ "dont_forecast_production": "生産量を予測しない",
+ "forecast_production": "予測生産量",
+ "header": "ソーラーパネルの構成",
+ "solar_production_energy": "太陽光発電エネルギー (kWh)",
+ "solar_production_forecast": "太陽光発電の予測",
+ "solar_production_forecast_description": "太陽光発電の予測情報を追加すると、今日の予想生産量をすばやく確認できます。"
+ },
+ "learn_more": "利用方法について、詳細はこちら。",
+ "solar_production": "太陽光発電",
+ "stat_predicted_production": "太陽エネルギー生産の予測",
+ "stat_production": "あなたの太陽光発電",
+ "stat_return_to_grid": "ソーラーエネルギーをグリッドに戻す",
+ "sub": "Home Assistantがソーラーパネルを監視し、その性能を把握することができます。",
+ "title": "ソーラーパネル"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "次のエンティティは、正の状態が予想される間、負の状態になります。",
+ "title": "エンティティが負の状態"
+ },
+ "entity_not_defined": {
+ "description": "インテグレーションを確認、または設定を確認してください:",
+ "title": "エンティティが定義されていません"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "次のエンティティは、ステートクラス \"measurement\" がありますが、\"last_reset\" がありません:",
+ "title": "最終リセットが見つかりません"
+ },
+ "entity_state_non_numeric": {
+ "description": "次のエンティティには、数値として解析できない状態のものがあります:",
+ "title": "エンティティが非数値化された状態"
+ },
+ "entity_unavailable": {
+ "description": "これらの構成済みエンティティの状態は現在使用できません。",
+ "title": "エンティティを利用できません"
+ },
+ "entity_unexpected_device_class": {
+ "description": "次のエンティティには、想定されるデバイス クラスを持っていません:",
+ "title": "予期しないデバイスクラス"
+ },
+ "entity_unexpected_state_class": {
+ "description": "次のエンティティには、想定されるステートクラスを持っていません:",
+ "title": "予期しないステートクラス"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "次のエンティティには、期待される状態クラス「total_increasing」がありません。",
+ "title": "予期しない状態クラス"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "次のエンティティには、予想される測定単位 'Wh'、'kWh' または 'MWh' がありません。",
+ "title": "予期しない測定単位"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "次のエンティティには、予想される測定単位 \"{currency}/Wh\"、\"{currency}/kWh\" または \"{currency}/MWh\" がありません。",
+ "title": "予期しない測定単位"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "次のエンティティには、期待される測定単位、電力センサーとしての 'Wh', 'kWh' または 'MWh'、ガスセンサーとしての 'm³' または 'ft³' がありません。",
+ "title": "予期しない測定単位"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "次のエンティティには、想定される測定単位である ''{currency}/kWh'', ''{currency}/Wh'', ''{currency}/MWh'', ''{currency}/m³'' または ''{currency}/ft³''がありません:",
+ "title": "想定外の測定単位"
+ },
+ "recorder_untracked": {
+ "description": "レコーダーは、次の設定済みエンティティを除外するように構成されています。",
+ "title": "追跡されていないエンティティ"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "エンティティ",
+ "description": "既知のエンティティの管理",
+ "picker": {
+ "disable_selected": {
+ "button": "選択を無効にする",
+ "confirm_text": "無効化されたエンティティはHome Assistantに追加されません。",
+ "confirm_title": "{number} {number, plural,\n one {つ}\n other {個}\n}のエンティティを無効にしますか?"
+ },
+ "enable_selected": {
+ "button": "選択を有効にする",
+ "confirm_text": "これにより、Home Assistantが無効になった場合に、再びHome Assistantで使用できるようになります。",
+ "confirm_title": "{number} {number, plural,\n one {つ}\n other {個}\n}のエンティティを有効にしますか?"
+ },
+ "filter": {
+ "filter": "フィルター",
+ "hidden_entities": "{number} 非表示 {number, plural,\n one {エンティティ}\n other {エンティティ}\n}",
+ "show_all": "すべてを表示",
+ "show_disabled": "無効なエンティティを表示",
+ "show_readonly": "読み取り専用のエンティティを表示",
+ "show_unavailable": "利用できないエンティティの表示"
+ },
+ "header": "エンティティ",
+ "headers": {
+ "area": "エリア",
+ "disabled_by": "~による無効化",
+ "entity_id": "エンティティ ID",
+ "integration": "インテグレーション",
+ "name": "名前",
+ "status": "ステータス"
+ },
+ "introduction": "Home Assistantは、ユニーク(一意)として識別できる、これまでに見たすべてのエンティティのレジストリを保持します。これらの各エンティティには、エンティティIDが割り当てられ、このエンティティだけに予約されます。",
+ "introduction2": "エンティティレジストリを使用して、名前を上書きしたり、エンティティIDを変更したり、HomeAssistant からエントリを削除したりします。",
+ "remove_selected": {
+ "button": "選択したものを削除",
+ "confirm_partly_text": "選択した {selected}個のエンティティのうち、{removable}個のみを削除できます。エンティティは、インテグレーションがエンティティを提供しなくなった場合にだけ削除できます。インテグレーションからエンティティを削除するには、前もってHome Assistantの再起動が必要なことがあります。削除可能なエンティティを削除してもよろしいですか?",
+ "confirm_partly_title": "削除できるのは、選択された {number} {number, plural,\n one {つ}\n other {個}\n}のエンティティのみです。",
+ "confirm_text": "これらのエンティティが含まれている場合は、Lovelaceの設定およびオートメーションからそれらを削除する必要があります。",
+ "confirm_title": "{number} {number, plural,\n one {つ}\n other {個}\n}のエンティティを削除しますか?"
+ },
+ "search": "エンティティを検索",
+ "selected": "{number}選択されました",
+ "status": {
+ "disabled": "無効",
+ "ok": "OK",
+ "readonly": "読み取り専用",
+ "restored": "復元",
+ "unavailable": "利用できません"
+ }
+ }
+ },
+ "header": "Home Assistant の設定",
+ "helpers": {
+ "caption": "ヘルパー",
+ "description": "オートメーションの構築に役立つ要素",
+ "dialog": {
+ "add_helper": "ヘルパーを追加",
+ "add_platform": "{platform} を追加",
+ "create": "作成"
+ },
+ "picker": {
+ "add_helper": "ヘルパーを追加",
+ "headers": {
+ "editable": "編集可能",
+ "entity_id": "エンティティ ID",
+ "name": "名前",
+ "type": "タイプ"
+ },
+ "no_helpers": "まだヘルパーがいないようです!"
+ },
+ "types": {
+ "counter": "カウンター",
+ "input_boolean": "切り替え",
+ "input_button": "ボタン",
+ "input_datetime": "日付・時刻",
+ "input_number": "数",
+ "input_select": "ドロップダウン",
+ "input_text": "テキスト",
+ "timer": "タイマー"
+ }
+ },
+ "info": {
+ "built_using": "ビルドで使用",
+ "caption": "情報",
+ "copy_github": "GitHubの場合",
+ "copy_menu": "コピーメニュー",
+ "copy_raw": "本来のテキスト",
+ "custom_uis": "カスタムの UIs:",
+ "description": "バージョン、システムの状態、およびドキュメントへのリンク",
+ "developed_by": "素晴らしい人々の集まりによって開発されました。",
+ "documentation": "ドキュメント",
+ "frontend": "フロントエンド ui",
+ "frontend_version": "フロントエンドバージョン: {version} - {type}",
+ "home_assistant_logo": "Home Assistantのロゴ",
+ "icons_by": "アイコン",
+ "integrations": "インテグレーション",
+ "issues": "イシュー",
+ "license": "Apache 2.0ライセンスの下で公開",
+ "path_configuration": "configuration.yamlのパス: {path}",
+ "server": "サーバー",
+ "setup_time": "準備時間",
+ "source": "ソース:",
+ "system_health": {
+ "manage": "管理",
+ "more_info": "詳細情報"
+ },
+ "system_health_error": "システムの状態コンポーネント が読み込まれていません。configuration.yaml に 'system_health:' を追加してください。"
+ },
+ "integrations": {
+ "add_integration": "インテグレーションを追加",
+ "attention": "注意が必要",
+ "caption": "インテグレーション",
+ "config_entry": {
+ "area": "In {area}",
+ "check_the_logs": "ログの確認",
+ "configure": "設定",
+ "delete": "削除",
+ "delete_confirm": "インテグレーション {title} を削除してもよろしいですか?",
+ "depends_on_cloud": "クラウドに依存",
+ "device_unavailable": "デバイスを利用できません",
+ "devices": "{count} {count, plural,\n one {デバイス}\n other {デバイス}\n}",
+ "disable": {
+ "disable_confirm": "この設定項目を無効にしてよろしいですか?そのデバイスやエンティティは無効になります。",
+ "disabled": "無効",
+ "disabled_by": {
+ "device": "デバイス",
+ "integration": "インテグレーション",
+ "user": "ユーザー"
+ },
+ "disabled_cause": "{cause}によって無効化"
+ },
+ "disable_error": "インテグレーションの有効化または無効化に失敗しました",
+ "disable_restart_confirm": "Home Assistantを再起動して、このインテグレーションを無効にします",
+ "disabled_polling": "更新されたデータの自動ポーリングが無効",
+ "documentation": "ドキュメント",
+ "download_diagnostics": "診断結果をダウンロード",
+ "enable_restart_confirm": "Home Assistantを再起動して、このインテグレーションを有効にします",
+ "entities": "{count} {count, plural,\n one {エンティティ}\n other {エントリー}\n}",
+ "entity_unavailable": "エンティティは利用できません",
+ "firmware": "ファームウェア: {version}",
+ "hardware": "ハードウェア: {version}",
+ "hub": "~経由で接続",
+ "known_issues": "既知の問題",
+ "manuf": "by {manufacturer}",
+ "no_area": "エリアなし",
+ "not_loaded": "読み込まれていません",
+ "open_configuration_url": "デバイスにアクセス",
+ "provided_by_custom_integration": "カスタムインテグレーションによって提供されています",
+ "reload": "再読込",
+ "reload_confirm": "インテグレーションが再読み込みされました",
+ "reload_restart_confirm": "Home Assistantを再起動すると、このインテグレーションの再読み込みが完了します",
+ "rename": "名前を変更",
+ "restart_confirm": "Home Assistantを再起動することで、このインテグレーションの削除は完了します。",
+ "services": "{count} {count, plural,\n one {サービス}\n other {サービス}\n}",
+ "state": {
+ "failed_unload": "アンロードに失敗しました。",
+ "loaded": "読み込み",
+ "migration_error": "移行エラー",
+ "not_loaded": "読み込まれていません",
+ "setup_error": "セットアップに失敗しました。",
+ "setup_retry": "設定をやり直す"
+ },
+ "system_options": "システムオプション",
+ "unknown_via_device": "未知のディバイス",
+ "unnamed_entry": "名前のないエントリ",
+ "via": "~経由で接続"
+ },
+ "config_flow": {
+ "aborted": "中止",
+ "close": "クローズ",
+ "could_not_load": "設定フローを読み込めませんでした",
+ "created_config": "{name} の設定を作成しました。",
+ "dismiss": "ダイアログを閉じる",
+ "error": "エラー",
+ "error_saving_area": "エリアを保存できません: {error}",
+ "external_step": {
+ "description": "この手順を完了するには、外部のウエブサイトにアクセスする必要があります。",
+ "open_site": "ウェブサイトを開く"
+ },
+ "finish": "完了",
+ "loading": {
+ "fallback_title": "インテグレーション",
+ "loading_flow": "{integration} のセットアップ中です。しばらくの間お待ちください",
+ "loading_step": "{integration}次のステップを読み込んでいます"
+ },
+ "next": "次",
+ "not_all_required_fields": "必須フィールドの一覧に入力するわけではありません。",
+ "not_loaded": "インテグレーションファイルを読み込めませんでした。Home Assistantを再起動してください。",
+ "pick_flow_step": {
+ "new_flow": "いいえ、{integration} の他のインスタンスを設定します",
+ "title": "これらを発見しました。設定しますか?"
+ },
+ "submit": "送信"
+ },
+ "configure": "設定",
+ "configured": "設定済み",
+ "confirm_new": "{integration}を設定しますか?",
+ "description": "インテグレーションの管理とセットアップ",
+ "details": "インテグレーションの詳細",
+ "disable": {
+ "disabled_integrations": "{number} 無効化中",
+ "show": "表示",
+ "show_disabled": "無効なインテグレーションを表示"
+ },
+ "discovered": "発見",
+ "home_assistant_website": "Home Assistant のウェブサイト",
+ "ignore": {
+ "confirm_delete_ignore": "これにより、インテグレーションが検出されたときに、発見されたインテグレーションに再び表示されるようになります。ただし、これには再起動が必要だったり、時間がかかることがあります。",
+ "confirm_delete_ignore_title": "{name} の無視を停止しますか?",
+ "confirm_ignore": "このインテグレーションを設定しなくてもよろしいですか? 右上のオーバーフローメニューにある [無視したインテグレーションを表示] をクリックすると、元に戻すことができます。",
+ "confirm_ignore_title": "{name} の検出を無視しますか?",
+ "ignore": "無視する",
+ "ignored": "無視しました",
+ "show_ignored": "無視したインテグレーションを表示",
+ "stop_ignore": "無視を停止する"
+ },
+ "integration": "インテグレーション",
+ "integration_not_found": "インテグレーションが見つかりません。",
+ "new": "新しいインテグレーションの設定",
+ "no_integrations": "まだ設定されていないようです。あなたの最初のインテグレーションを追加するには、下のボタンをクリックしてください!",
+ "none": "まだ設定されていません",
+ "none_found": "インテグレーションが見つかりません。",
+ "none_found_detail": "別の検索基準をためしてみます。",
+ "note_about_integrations": "検索に一致するインテグレーションがありません。セットアップをしたいインテグレーションには、まだUIを使用してのセットアップができない可能性があります。",
+ "note_about_website_reference": "より多くが利用可能です",
+ "reconfigure": "再設定",
+ "rename_dialog": "この構成エントリーの名前を編集",
+ "rename_input_label": "エントリー名",
+ "search": "インテグレーションを検索"
+ },
+ "introduction": "このビューでは、コンポーネントとHome Assistantを設定できます。まだすべてをUIから設定できるわけではありませんが、現在取り組んでいます。",
+ "logs": {
+ "caption": "ログ",
+ "clear": "消去",
+ "copy": "ログエントリーをコピー",
+ "custom_integration": "カスタム・インテグレーション",
+ "description": "Home Assistantログの表示",
+ "details": "ログの詳細 ({level})",
+ "error_from_custom_integration": "このエラーは、カスタム インテグレーションが原因で発生しました。",
+ "level": {
+ "critical": "クリティカル",
+ "debug": "デバッグ",
+ "error": "エラー",
+ "info": "情報",
+ "warning": "警告"
+ },
+ "load_full_log": "完全な Home Assistant ログを読み込む",
+ "loading_log": "エラーログを読み込んでいます…",
+ "multiple_messages": "最初のメッセージは、{time}に発生し、表示回数は、{counter}",
+ "no_errors": "エラーは報告されていません。",
+ "no_issues": "新しい課題はありません!",
+ "refresh": "更新"
+ },
+ "lovelace": {
+ "caption": "Lovelace ダッシュボード",
+ "dashboards": {
+ "cant_edit_default": "デフォルトのLovelaceダッシュボードなので、オーバービューはUIから編集できません。別のダッシュボードをデフォルトとして設定することで、非表示にすることができます。",
+ "cant_edit_yaml": "YAMLで定義されたダッシュボードはUIから編集できません。それらをconfiguration.yamlで変更します。",
+ "caption": "ダッシュボード",
+ "conf_mode": {
+ "storage": "UI 制御",
+ "yaml": "YAML ファイル"
+ },
+ "confirm_delete": "このダッシュボードを削除してもよろしいですか?",
+ "confirm_delete_text": "ダッシュボードは完全に削除されます。",
+ "confirm_delete_title": "{dashboard_title} を削除しますか?",
+ "default_dashboard": "これはデフォルトのダッシュボードです",
+ "detail": {
+ "create": "作成",
+ "delete": "削除",
+ "dismiss": "クローズ",
+ "edit_dashboard": "ダッシュボードを編集",
+ "icon": "アイコン",
+ "new_dashboard": "新しいダッシュボードを追加",
+ "remove_default": "このデバイスのデフォルトとして削除",
+ "require_admin": "管理者のみ",
+ "set_default": "このデバイスでデフォルトとして設定",
+ "show_sidebar": "サイドバーに表示",
+ "title": "タイトル",
+ "title_required": "タイトルが必要です。",
+ "update": "更新",
+ "url": "URL",
+ "url_error_msg": "URLには、- を含める必要があり、_ と - を除いてスペースや特殊文字を含めることはできません。"
+ },
+ "picker": {
+ "add_dashboard": "ダッシュボードを追加",
+ "headers": {
+ "conf_mode": "設定方法",
+ "default": "デフォルト",
+ "filename": "ファイル名",
+ "require_admin": "管理者のみ",
+ "sidebar": "サイドバーに表示",
+ "title": "タイトル"
+ },
+ "open": "オープン"
+ }
+ },
+ "description": "カスタマイズされたカードを作成して、あなたの家をコントロール",
+ "resources": {
+ "cant_edit_yaml": "LovelaceをYAMLモードで使用しているため、UIを使用してリソースを管理することはできません。configuration.yamlで管理してください。",
+ "caption": "リソース",
+ "confirm_delete": "このリソースを削除してもよろしいですか?",
+ "detail": {
+ "create": "作成",
+ "delete": "削除",
+ "dismiss": "クローズ",
+ "new_resource": "新しいリソースを追加",
+ "type": "リソースの種類",
+ "update": "更新",
+ "url": "URL",
+ "url_error_msg": "URLは必須フィールドです",
+ "warning_header": "注意してください!",
+ "warning_text": "リソースの追加は危険な場合があります。リソースのソースをきちんと把握し、信頼する必要があります。悪質なリソースは、システムに深刻な悪影響を及ぼす可能性があります。"
+ },
+ "picker": {
+ "add_resource": "リソースを追加",
+ "headers": {
+ "type": "タイプ",
+ "url": "URL"
+ },
+ "no_resources": "リソースなし"
+ },
+ "refresh_body": "削除を完了するには、ページを更新する必要があります。今すぐ更新しますか?",
+ "refresh_header": "更新しますか?",
+ "types": {
+ "css": "Stylesheet",
+ "html": "HTML (非推奨)",
+ "js": "JavaScript ファイル (非推奨)",
+ "module": "JavaScript モジュール"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "トピックをリッスン",
+ "description_publish": "パケットをパブリッシュ",
+ "listening_to": "リッスンします",
+ "message_received": "{time}に{topic}で受信したメッセージ{id} {time}:",
+ "payload": "ペイロード (テンプレート可)",
+ "publish": "パブリッシュ",
+ "start_listening": "リッスンを開始",
+ "stop_listening": "リッスンを停止",
+ "subscribe_to": "サブスクライブするトピック",
+ "title": "MQTT",
+ "topic": "トピック"
+ },
+ "ozw": {
+ "common": {
+ "controller": "コントローラ",
+ "instance": "インスタンス",
+ "network": "ネットワーク",
+ "node_id": "ノードID",
+ "ozw_instance": "OpenZWaveインスタンス",
+ "query_stage": "クエリ ステージ",
+ "wakeup_instructions": "ウェイクアップ手順",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "ノードが失敗しました",
+ "stage": "段階",
+ "zwave_info": "Z-Wave情報"
+ },
+ "navigation": {
+ "network": "ネットワーク",
+ "node": {
+ "config": "設定",
+ "dashboard": "ダッシュ ボード"
+ },
+ "nodes": "ノード",
+ "select_instance": "インスタンスを選択"
+ },
+ "network": {
+ "header": "ネットワーク管理",
+ "introduction": "接続されたデバイスの管理",
+ "node_count": "{count}ノード"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "すべての稼働中のノードが照会されました",
+ "driverallnodesqueriedsomedead": "すべてのノードが照会されました。一部のノードがダウンしているのが見つかりました",
+ "driverawakenodesqueries": "すべての稼働中のノードが照会されました",
+ "driverfailed": "Z-Waveコントローラーへの接続に失敗しました",
+ "driverready": "Z-Waveコントローラーの初期化",
+ "driverremoved": "ドライバーが削除されました",
+ "driverreset": "ドライバーがリセットされました",
+ "offline": "OZWデーモンオフライン",
+ "ready": "接続の準備完了",
+ "started": "MQTTに接続されています",
+ "starting": "MQTTへの接続",
+ "stopped": "OpenZWaveが停止しました"
+ },
+ "offline": "オフライン",
+ "online": "オンライン",
+ "starting": "起動",
+ "unknown": "不明"
+ },
+ "node": {
+ "button": "ノードの詳細",
+ "not_found": "ノードが見つかりません"
+ },
+ "node_config": {
+ "header": "ノード設定",
+ "help_source": "設定パラメータの説明とヘルプテキストは、OpenZWaveプロジェクトによって提供されています。",
+ "introduction": "Z-Wave ノードの各種設定パラメータを管理します。",
+ "wakeup_help": "バッテリ駆動のノードは、設定を変更するためにスリープ状態になっている必要があります。ノードがスリープ解除されていない場合、OpenZWave は、ノードがウェイクアップする次の時間 (または数日後) にノードの設定を更新しようとします。デバイスを起動するには、次の手順に従います。"
+ },
+ "node_metadata": {
+ "product_manual": "製品マニュアル"
+ },
+ "node_query_stages": {
+ "associations": "関連グループとメンバーシップの更新",
+ "cacheload": "OpenZWave キャッシュファイルから情報を読み込んでいます。バッテリー・ノードは、ノードがウェイクアップするまでこの段階にとどまります。",
+ "complete": "面接プロセスが完了しました",
+ "configuration": "ノードから設定値を取得する",
+ "dynamic": "ノードから頻繁に変更される値を取得する",
+ "instances": "デバイスがサポートするインスタンスまたはチャネルに関する詳細の取得",
+ "manufacturerspecific1": "ノードからの製造元および製品IDコードの取得",
+ "manufacturerspecific2": "ノードから頻繁に変更される値を取得する",
+ "neighbors": "ノードの近隣ノードのリストの取得",
+ "nodeinfo": "ノードから設定値を取得する",
+ "nodeplusinfo": "ノードからZ-Wave +情報を取得する",
+ "probe": "ノードが起動しているかどうかの確認",
+ "protocolinfo": "コントローラからこのノードの基本的なZ-Wave機能を取得する",
+ "session": "ノードから頻繁に変更される値を取得する",
+ "static": "ノードから設定値を取得する",
+ "versions": "ファームウェアおよびコマンドクラスのバージョンに関する情報の取得",
+ "wakeup": "ウェイクアップ キューとメッセージのサポートのセットアップ"
+ },
+ "nodes_table": {
+ "failed": "失敗しました",
+ "id": "ID",
+ "manufacturer": "メーカー",
+ "model": "モデル",
+ "query_stage": "クエリステージ",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "ノードがバッテリ駆動の場合は、必ずスリープ解除してから続行してください。",
+ "button": "ノードの更新",
+ "complete": "ノードの更新が完了しました",
+ "description": "これにより、OpenZWaveはノードに再インタビューし、ノードのコマンドクラス、機能、および値を更新するように指示します。",
+ "node_status": "ノードの状態",
+ "refreshing_description": "ノード情報を更新しています...…",
+ "start_refresh_button": "更新を開始",
+ "step": "ステップ",
+ "title": "ノード情報を更新",
+ "wakeup_header": "ウェイクアップの手順",
+ "wakeup_instructions_source": "ウェイクアップの手順は、OpenZWaveコミュニティデバイスデータベースから提供されます。"
+ },
+ "select_instance": {
+ "header": "OpenZWaveインスタンスを選択",
+ "introduction": "複数のOpenZWaveインスタンスが実行されています。どのインスタンスを管理しますか?",
+ "none_found": "OpenZWaveインスタンスが見つかりませんでした。これが正しくないと思われる場合は、OpenZWaveとMQTTの設定を確認し、Home AssistantがMQTTブローカーと通信できることを確認してください。"
+ },
+ "services": {
+ "add_node": "ノードを追加",
+ "cancel_command": "コマンドのキャンセル",
+ "remove_node": "ノードを削除"
+ }
+ },
+ "person": {
+ "add_person": "人を追加",
+ "caption": "人",
+ "confirm_delete": "このユーザーを削除しますか?",
+ "confirm_delete2": "このユーザーに属するすべてのデバイスは割り当てが解除されます。",
+ "create_person": "人を作成",
+ "description": "Home Assistant が追跡している人の管理。",
+ "detail": {
+ "admin": "管理者",
+ "allow_login": "ユーザーにログインを許可する",
+ "confirm_delete_user": "{name}ユーザーアカウントを削除してもよろしいですか?ユーザーを追跡することはできますが、ユーザーはログインできなくなります。",
+ "create": "作成",
+ "delete": "削除",
+ "device_tracker_intro": "このユーザーに属するデバイスを選択します。",
+ "device_tracker_pick": "追跡するデバイスを選択",
+ "device_tracker_picked": "デバイスの追跡",
+ "link_integrations_page": "インテグレーションページ",
+ "link_presence_detection_integrations": "プレゼンス検出のインテグレーション",
+ "linked_user": "リンクされたユーザー",
+ "local_only": "ローカル ネットワークからのみログイン可能",
+ "name": "名前",
+ "name_error_msg": "名前は必須です",
+ "new_person": "新しい人",
+ "no_device_tracker_available_intro": "人の存在を示すデバイスがある場合は、ここでその人に割り当てることができます。インテグレーションページから、プレゼンス検出のインテグレーション を追加することで、最初のデバイスを追加できます。",
+ "update": "更新"
+ },
+ "introduction": "ここでは、Home Assistantで関心のある各人を定義できます。",
+ "learn_more": "ユーザーの詳細",
+ "no_persons_created_yet": "まだ人を作成していないようです。",
+ "note_about_persons_configured_in_yaml": "注: configuration.yamlで設定された人は、UI で編集できません。",
+ "person_not_found": "編集しようとしている人が見つかりませんでした。",
+ "person_not_found_title": "人が見つかりません"
+ },
+ "scene": {
+ "activated": "アクティブ化されたシーン {name}。",
+ "caption": "シーン",
+ "description": "デバイスの状態をキャプチャし、後で簡単に呼び出す",
+ "editor": {
+ "area": "エリア",
+ "default_name": "新しいシーン",
+ "devices": {
+ "add": "デバイスを追加",
+ "delete": "デバイスを削除",
+ "header": "デバイス",
+ "introduction": "シーンに含めたいデバイスを追加します。すべてのデバイスをこのシーンに対して必要な状態に設定します。"
+ },
+ "entities": {
+ "add": "エンティティを追加",
+ "delete": "エンティティを削除",
+ "device_entities": "デバイスに属するエンティティを追加すると、デバイス自体も追加されます。",
+ "header": "エンティティ",
+ "introduction": "デバイスに属していないエンティティをここで設定できます。",
+ "without_device": "デバイスのないエンティティ"
+ },
+ "icon": "アイコン",
+ "introduction": "シーンを使用して、あなたの家を生き生きとさせましょう。",
+ "load_error_not_editable": "scenes.yaml で定義されたシーンのみが編集可能です。",
+ "load_error_unknown": "シーンの読み込みエラー ({err_no})。",
+ "name": "名前",
+ "save": "保存",
+ "unsaved_confirm": "未保存の変更があります、終了してもよろしいですか?"
+ },
+ "picker": {
+ "add_scene": "シーンを追加",
+ "delete_confirm": "このシーンを削除してもよろしいですか?",
+ "delete_scene": "シーンを削除",
+ "duplicate": "複製",
+ "duplicate_scene": "シーンの複製",
+ "edit_scene": "シーンを編集",
+ "header": "シーンエディタ",
+ "headers": {
+ "name": "名前"
+ },
+ "introduction": "シーン エディタを使用すると、シーンを作成および編集できます。以下のリンクから説明を読み、Home Assistantの設定が正しく行われていることを確認してください。",
+ "learn_more": "シーンについてもっと知る",
+ "no_scenes": "シーンが見つかりませんでした",
+ "only_editable": "scenes.yaml で定義されたシーンのみが編集可能です。",
+ "pick_scene": "編集するシーンを選択",
+ "show_info_scene": "シーンに関する情報を表示"
+ }
+ },
+ "script": {
+ "caption": "スクリプト",
+ "description": "一連のアクションを実行",
+ "editor": {
+ "alias": "名前",
+ "default_name": "新しいスクリプト",
+ "delete_confirm": "このスクリプトを削除しますか?",
+ "delete_script": "スクリプトを削除",
+ "header": "スクリプト: {name}",
+ "icon": "アイコン",
+ "id": "エンティティ ID",
+ "id_already_exists": "このIDはすでに存在します",
+ "id_already_exists_save_error": "IDがユニーク(一意)ではないため、このスクリプトを保存できません。別のIDを選択するか、空白のままにして自動的に生成します。",
+ "introduction": "スクリプトを使用して一連のアクションを実行する。",
+ "link_available_actions": "使用可能なアクションに関する情報をもっと見る。",
+ "load_error_not_editable": "scripts.yaml内のスクリプトのみが編集可能です。",
+ "max": {
+ "parallel": "並列実行の最大数",
+ "queued": "キューの長さ"
+ },
+ "modes": {
+ "description": "このモードは、アクションが以前のトリガーから実行されている間にオートメーションがトリガーされたときに何が起こるかを制御します。詳細については{documentation_link}を確認してください。",
+ "documentation": "スクリプトのドキュメント",
+ "label": "モード",
+ "parallel": "並列",
+ "queued": "待機中",
+ "restart": "再起動",
+ "single": "シングル(デフォルト)"
+ },
+ "save_script": "スクリプトを保存",
+ "sequence": "シーケンス",
+ "sequence_sentence": "このスクリプトのアクションのシーケンス。",
+ "show_trace": "トレースを表示"
+ },
+ "picker": {
+ "add_script": "スクリプトを追加",
+ "dev_script": "スクリプトをデバグ",
+ "duplicate": "複製",
+ "duplicate_script": "スクリプトの複製",
+ "edit_script": "スクリプトを編集",
+ "header": "スクリプト エディタ",
+ "headers": {
+ "name": "名前"
+ },
+ "introduction": "スクリプトエディタを使用すると、スクリプトを作成および編集できます。以下のリンクに従って手順を読み、Home Assistantが正しく設定されていることを確認してください。",
+ "learn_more": "スクリプトの詳細",
+ "no_scripts": "スクリプトが見つかりませんでした",
+ "run_script": "スクリプトを実行する",
+ "show_info": "スクリプトに関する情報を表示"
+ }
+ },
+ "server_control": {
+ "caption": "サーバー コントロール",
+ "description": "構成チェックとHome Assistant serverの再起動",
+ "section": {
+ "reloading": {
+ "automation": "オートメーション",
+ "command_line": "コマンドライン エンティティ",
+ "core": "ロケーションとカスタマイズ",
+ "filesize": "ファイルサイズエンティティ",
+ "filter": "フィルターエンティティ",
+ "generic": "汎用 IP カメラ エンティティ",
+ "generic_thermostat": "汎用サーモスタット エンティティ",
+ "group": "グループ、グループ エンティティと通知サービス",
+ "heading": "YAML設定の再読込",
+ "history_stats": "履歴エンティティ",
+ "homekit": "HomeKit",
+ "input_boolean": "真偽値入力(booleans)",
+ "input_button": "入力ボタン",
+ "input_datetime": "日時入力",
+ "input_number": "番号入力",
+ "input_select": "選択肢入力",
+ "input_text": "テキスト入力",
+ "introduction": "Home Assistant の一部は、再起動を必要とせずに再読込できます。以下のオプションのいずれかをクリックすると、現在の設定をアンロードし、新しい設定を読み込みます。",
+ "min_max": "最小/最大エンティティ",
+ "mqtt": "マニュアル構成の MQTT エンティティ",
+ "person": "人",
+ "ping": "Ping バイナリ センサー エンティティ",
+ "reload": "{domain}",
+ "rest": "Restエンティティと通知サービス",
+ "rpi_gpio": "Raspberry Pi GPIO エンティティ",
+ "scene": "シーン",
+ "script": "スクリプト",
+ "smtp": "SMTP 通知サービス",
+ "statistics": "統計エンティティ",
+ "telegram": "テレグラム通知サービス",
+ "template": "テンプレート エンティティ",
+ "themes": "テーマ",
+ "timer": "タイマー",
+ "trend": "トレンドエンティティ",
+ "universal": "ユニバーサル メディア プレーヤー エンティティ",
+ "zone": "ゾーン"
+ },
+ "server_management": {
+ "confirm_restart": "Home Assistant を再起動してもよろしいですか?",
+ "confirm_stop": "Home Assistantを停止してもよろしいですか?",
+ "heading": "サーバー管理",
+ "introduction": "Home Assistant を操作します。",
+ "restart": "再起動",
+ "stop": "停止"
+ },
+ "validation": {
+ "check_config": "設定の確認",
+ "heading": "設定の検証",
+ "introduction": "最近構成にいくつかの変更を加え、それがすべて有効であることを確認したい場合は、設定を検証してください。",
+ "invalid": "設定は無効です",
+ "valid": "設定は有効です!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "タグを追加する",
+ "automation_title": "{name}タグのスキャン",
+ "caption": "タグ",
+ "confirm_remove": "タグ{tag}を削除してもよろしいですか?",
+ "confirm_remove_title": "タグを削除しますか?",
+ "create_automation": "タグを使用したオートメーションの作成",
+ "description": "NFCタグ、QRコードなどをスキャンした時のオートメーション化",
+ "detail": {
+ "companion_apps": "コンパニオン アプリ",
+ "create": "作成",
+ "create_and_write": "作成と書き込み",
+ "delete": "削除",
+ "description": "説明",
+ "name": "名前",
+ "new_tag": "新しいタグ",
+ "tag_id": "タグID",
+ "tag_id_placeholder": "空のままにすると自動生成",
+ "update": "更新",
+ "usage": "タグ(NFCタグ、QRコード、または他の種類のタグなど)は、スキャンされるとオートメーションをトリガーすることができます。{companion_link}を使用して、このタグをプログラム可能なNFCタグに書き込んだり、以下でQRコードを作成してください。"
+ },
+ "edit": "編集",
+ "headers": {
+ "last_scanned": "最後にスキャンされた",
+ "name": "名前"
+ },
+ "learn_more": "タグの詳細",
+ "never_scanned": "最後にスキャンされた",
+ "no_tags": "タグなし",
+ "write": "書き込み"
+ },
+ "updates": {
+ "check_unavailable": {
+ "description": "Home Assistantのユーザーインターフェースからアップデートの確認やインストールを行うためには、Home Assistantオペレーティング システムが起動している必要があります。",
+ "title": "アップデートの確認ができません"
+ },
+ "check_updates": "アップデートを確認する",
+ "more_updates": "+ {count} 更新",
+ "review": "レビュー",
+ "show": "表示",
+ "show_all_updates": "すべての更新を表示",
+ "title": "{count} {count, plural,\n one {update}\n other {updates}\n}",
+ "unable_to_fetch": "アップデートを取得できません",
+ "version_available": "バージョン {version_available} が利用可能です"
+ },
+ "users": {
+ "add_user": {
+ "caption": "ユーザーの追加",
+ "create": "作成する",
+ "local_only": "ローカルのみ",
+ "password": "パスワード",
+ "password_confirm": "パスワードの確認",
+ "password_not_match": "パスワードが一致しません"
+ },
+ "caption": "ユーザー",
+ "description": "Home Assistantユーザーの管理",
+ "editor": {
+ "activate_user": "ユーザーを有効化",
+ "active": "アクティブ",
+ "active_tooltip": "ユーザーがログインできるかどうかを制御します",
+ "admin": "管理者",
+ "caption": "ユーザーを表示",
+ "change_password": "パスワードの変更",
+ "confirm_user_deletion": "{name}を削除してもよろしいですか?",
+ "deactivate_user": "ユーザーを無効化",
+ "delete_user": "ユーザーを削除",
+ "group": "グループ",
+ "id": "ID",
+ "local_only": "ローカル ネットワークからのみログイン可能",
+ "name": "表示名",
+ "new_password": "新しいパスワード",
+ "owner": "所有者",
+ "password_changed": "パスワードが変更されました!",
+ "system_generated": "システムジェネレート",
+ "system_generated_users_not_editable": "システムが生成されたユーザーを変更できません。",
+ "system_generated_users_not_removable": "システムで生成されたユーザーを削除できません。",
+ "unnamed_user": "名前のないユーザー",
+ "update_user": "更新",
+ "username": "ユーザー名"
+ },
+ "is_local": "ローカルユーザー",
+ "is_not_active": "無効",
+ "is_owner": "オーナー",
+ "is_system": "システムユーザー",
+ "picker": {
+ "add_user": "ユーザーを追加する",
+ "headers": {
+ "group": "グループ",
+ "is_active": "アクティブ",
+ "is_owner": "オーナー",
+ "local": "ローカルのみ",
+ "name": "表示名",
+ "system": "システムが生成",
+ "username": "ユーザー名"
+ }
+ },
+ "users_privileges_note": "ユーザーグループは作業中です。ユーザーは、UIを介してインスタンスを管理できなくなります。すべての管理APIエンドポイントを引き続き監査して、管理者へのアクセスを正しく制限していることを確認しています。"
+ },
+ "zha": {
+ "add_device": "デバイスの追加",
+ "add_device_page": {
+ "discovered_text": "検出されると、デバイスがここに表示されます。",
+ "no_devices_found": "デバイスが見つかりませんでした。デバイスがペアリングモードであることを確認し、検出の実行中はデバイスを起動したままにしてください。",
+ "pairing_mode": "デバイスがペアリングモードになっていることを確認します。これを行う方法については、デバイスの手順を確認してください。",
+ "search_again": "もう一度検索",
+ "spinner": "ZHA Zigbeeデバイスを検索しています…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "選択したクラスターの属性",
+ "get_zigbee_attribute": "Zigbee属性を取得",
+ "header": "クラスター属性",
+ "help_attribute_dropdown": "属性を選択して、その値を表示または設定します。",
+ "help_get_zigbee_attribute": "選択した属性の値を取得します。",
+ "help_set_zigbee_attribute": "指定したエンティティ上の指定したクラスターの属性値を設定します。",
+ "introduction": "クラスター属性の表示と編集",
+ "set_zigbee_attribute": "Zigbee属性を設定"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "選択したクラスタのコマンド",
+ "header": "クラスタコマンド",
+ "help_command_dropdown": "対話するコマンドを選択します。",
+ "introduction": "クラスターコマンドを表示して発行します。",
+ "issue_zigbee_command": "Zigbeeコマンドを発行する"
+ },
+ "clusters": {
+ "header": "クラスター",
+ "help_cluster_dropdown": "クラスターを選択して、属性とコマンドを表示します。",
+ "introduction": "クラスタは、Zigbee機能の設定要素です。機能を論理単位に分割します。クライアントとサーバーの種類があり、属性とコマンドで設定されています。"
+ },
+ "common": {
+ "clusters": "クラスター",
+ "manufacturer_code_override": "製造元コードの上書き",
+ "value": "バリュー"
+ },
+ "configuration_page": {
+ "shortcuts_title": "ショートカット",
+ "update_button": "構成の更新"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "設定完了",
+ "CONFIGURED_status_text": "初期化中",
+ "INITIALIZED": "初期化が完了しました",
+ "INITIALIZED_status_text": "デバイスを使用する準備ができました",
+ "INTERVIEW_COMPLETE": "インタビュー完了",
+ "INTERVIEW_COMPLETE_status_text": "設定",
+ "PAIRED": "デバイスが見つかりました",
+ "PAIRED_status_text": "インタビュー開始"
+ },
+ "group_binding": {
+ "bind_button_help": "選択したグループを選択したデバイス クラスタにバインドします。",
+ "bind_button_label": "バインド グループ",
+ "cluster_selection_help": "選択したグループにバインドするクラスターを選択します。",
+ "group_picker_help": "Bindコマンドを発行するグループを選択します。",
+ "group_picker_label": "バインド可能なグループ",
+ "header": "グループバインディング",
+ "introduction": "グループのバインドとバインド解除。",
+ "unbind_button_help": "選択したデバイス クラスタから選択したグループのバインドを解除します。",
+ "unbind_button_label": "グループのバインド解除"
+ },
+ "groups": {
+ "add_group": "グループの追加",
+ "add_members": "メンバーの追加",
+ "caption": "グループ",
+ "create": "グループの作成",
+ "create_group": "Zigbeeホームオートメーション-グループの作成",
+ "create_group_details": "必要な詳細を入力して、新しいzigbeeグループを作成します",
+ "creating_group": "グループを作成しています",
+ "delete": "グループ削除",
+ "group_details": "選択した Zigbee グループの詳細をすべて次に示します。",
+ "group_id": "グループ ID",
+ "group_info": "グループ情報",
+ "group_name_placeholder": "グループ名",
+ "group_not_found": "グループが見つかりません!",
+ "groups": "グループ",
+ "members": "メンバー",
+ "remove_members": "メンバーを削除",
+ "removing_members": "メンバーの削除"
+ },
+ "network": {
+ "caption": "ネットワーク"
+ },
+ "visualization": {
+ "auto_zoom": "自動ズーム",
+ "caption": "可視化",
+ "enable_physics": "物理演算の有効化(Enable Physics)",
+ "header": "ネットワークの視覚化",
+ "highlight_label": "デバイスを強調表示",
+ "refresh_topology": "トポロジの更新",
+ "zoom_label": "デバイスにズーム"
+ }
+ },
+ "zone": {
+ "add_zone": "ゾーンを追加",
+ "caption": "ゾーン",
+ "configured_in_yaml": "configuration.yamlで設定されたゾーンは、UIで編集できません。",
+ "confirm_delete": "このゾーンを削除してもよろしいですか?",
+ "create_zone": "ゾーンを作成",
+ "description": "ユーザーを追跡するゾーンの管理",
+ "detail": {
+ "create": "作成",
+ "delete": "削除",
+ "icon": "アイコン",
+ "icon_error_msg": "アイコンは、'prefix:iconname' の形式にする必要があります。例えば \"mdi:home\"",
+ "latitude": "緯度",
+ "longitude": "経度",
+ "name": "名前",
+ "new_zone": "新しいゾーン",
+ "passive": "パッシブ",
+ "passive_note": "パッシブゾーンはフロントエンドには隠されているため、位置としてデバイストラッカーに追跡されません。これは、オートメーションで使用したいだけの場合に役立ちます。",
+ "radius": "半径",
+ "required_error_msg": "この項目は必須です",
+ "update": "更新"
+ },
+ "edit_home_zone": "ホームゾーンの半径は、フロントエンドからはまだ編集できません。マップ上のマーカーをドラッグして、ホームゾーンを移動します。",
+ "edit_home_zone_narrow": "ホームゾーンの半径は、フロントエンドからはまだ編集できません。場所は、一般設定から変更できます。",
+ "edit_zone": "ゾーンの編集",
+ "go_to_core_config": "一般的な設定に移動しますか?",
+ "home_zone_core_config": "ホームゾーンの場所は、一般設定ページから編集できます。ホームゾーンの半径は、フロントエンドからはまだ編集できません。一般設定に移動しますか?",
+ "introduction": "ゾーンを使用すると、地球上の特定の地域を指定できます。人がゾーン内にいるとき、州はゾーンから名前を取ります。ゾーンは、オートメーション設定内のトリガーまたは条件として使用することもできます。",
+ "no_zones_created_yet": "まだゾーンを作成していないようです。"
+ },
+ "zwave": {
+ "common": {
+ "index": "インデックス",
+ "instance": "インスタンス",
+ "unknown": "不明",
+ "value": "バリュー",
+ "wakeup_interval": "ウェイクアップ間隔"
+ },
+ "description": "Z-waveネットワークを管理します",
+ "learn_more": "Z-Waveの詳細",
+ "migration": {
+ "ozw": {
+ "header": "OpenZWaveに移行",
+ "introduction": "このウィザードは、従来のZ-Waveインテグレーションから、現在ベータ版であるOpenZWaveインテグレーションに移行するのに役立ちます。"
+ },
+ "zwave_js": {
+ "header": "Z-Wave JSに移行",
+ "introduction": "このインテグレーションのメンテナンスは終了しているため、新しいZ-Wave JSインテグレーションに移行することをお勧めします。このウィザードは、レガシーZ-Waveインテグレーションから新しいZ-Wave JSインテグレーションへの移行を支援します。"
+ }
+ },
+ "network_management": {
+ "header": "Z-Waveネットワーク管理",
+ "introduction": "Z-Wave ネットワークに影響するコマンドを実行します。ほとんどのコマンドが成功したかどうかについてのフィードバックは得られませんが、OZWログをチェックして調べることもできます。"
+ },
+ "network_status": {
+ "network_started": "Z-Waveネットワークが開始されました",
+ "network_started_note_all_queried": "すべてのノードが照会されました。",
+ "network_started_note_some_queried": "ウェイク ノードが照会されました。スリープノードは、スリープ解除時に照会されます。",
+ "network_starting": "Z-Waveネットワークを開始しています…",
+ "network_starting_note": "ネットワークのサイズによっては、この処理に時間がかかる場合があります。",
+ "network_stopped": "Z-Waveネットワークが停止しました"
+ },
+ "node_config": {
+ "config_parameter": "パラメーターの設定",
+ "config_value": "値の設定",
+ "false": "偽",
+ "header": "ノード設定オプション",
+ "seconds": "秒",
+ "set_config_parameter": "パラメーターの設定",
+ "set_wakeup": "ウェイクアップ間隔を設定",
+ "true": "真"
+ },
+ "node_management": {
+ "add_to_group": "グループに追加",
+ "entities": "このノードのエンティティ",
+ "entity_info": "エンティティ情報",
+ "exclude_entity": "このエンティティをHome Assistantから除外する",
+ "group": "グループ",
+ "header": "Z-Waveノード管理",
+ "introduction": "単一ノードに影響するZ-Waveコマンドを実行します。ノードを選択すると、使用可能なコマンドのリストが表示されます。",
+ "max_associations": "最大関連付け:",
+ "node_group_associations": "ノードグループの関連付け",
+ "node_protection": "ノード保護",
+ "node_to_control": "制御するノード",
+ "nodes": "ノード",
+ "nodes_hint": "ノードを選択してノードごとのオプションを表示します",
+ "nodes_in_group": "このグループの他のノード:",
+ "pooling_intensity": "ポーリングの強度",
+ "protection": "保護",
+ "remove_broadcast": "ブロードキャストを削除",
+ "remove_from_group": "グループから削除",
+ "set_protection": "保護を設定する"
+ },
+ "ozw_log": {
+ "header": "OZWログ",
+ "introduction": "ログを表示します。0 は最小 (ログ全体をロード) 、最大 1000 が指定されます。ロードは静的なログを表示し、末尾はログの最後に指定された行数で自動更新されます。",
+ "last_log_lines": "最後のログ行数",
+ "load": "読み込み",
+ "tail": "最終行"
+ },
+ "services": {
+ "add_node": "ノードを追加",
+ "add_node_secure": "ノードのセキュアな追加",
+ "cancel_command": "コマンドのキャンセル",
+ "heal_network": "ネットワークの修復",
+ "heal_node": "ノードの修復",
+ "node_info": "ノード情報",
+ "print_node": "ノードの印刷",
+ "refresh_entity": "エンティティの更新",
+ "refresh_node": "ノードを更新",
+ "remove_failed_node": "失敗したノードを削除",
+ "remove_node": "ノードを削除",
+ "replace_failed_node": "失敗したノードの置換",
+ "save_config": "設定を保存",
+ "soft_reset": "ソフトリセット",
+ "start_network": "ネットワークの開始",
+ "stop_network": "ネットワークの停止",
+ "test_network": "テストネットワーク",
+ "test_node": "テストノード"
+ },
+ "values": {
+ "header": "ノード値"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "インクルージョンをキャンセルする",
+ "check_logs": "詳細については、ログを確認してください。",
+ "choose_inclusion_strategy": "デバイスをどのように追加しますか",
+ "controller_in_inclusion_mode": "これで、Z-Waveコントローラーはインクルージョンモードになります。",
+ "enter_qr_code": "QRコードの値を入力してください",
+ "follow_device_instructions": "デバイスに付属の指示に従って、デバイスでペアリングを開始します。",
+ "inclusion_failed": "デバイスを追加できませんでした。詳細については、ログを確認してください。",
+ "inclusion_finished": "デバイスが追加されました。",
+ "interview_failed": "デバイスのインタビューに失敗しました。追加情報がログに残っている場合があります。",
+ "interview_started": "デバイスはインタビュー中です。これには時間がかかる場合があります。",
+ "introduction": "このウィザードでは、Z-Wave ネットワークにノードを追加する手順を説明します。",
+ "provisioning_finished": "デバイスが追加されました。電源を入れると、利用できるようになります。",
+ "qr_code": "QRコード",
+ "qr_code_paragraph": "お使いの機器がSmartStartに対応している場合は、QRコードを読み取ることで簡単にペアリングできます。",
+ "scan_qr_code": "QRコードをスキャン",
+ "searching_device": "デバイスの検索",
+ "secure_inclusion_warning": "セキュアなデバイスには、追加の帯域幅が必要です。安全なデバイスが多すぎると、Z-Waveネットワークが遅くなる可能性があります。ロックやガレージドアオープナーなど、必要なデバイスにのみ安全な組み込みを使用することをお勧めします。",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "例: S2サポートなしのレガシーなドアロック",
+ "title": "S0レガシー"
+ },
+ "S2_AccessControl": {
+ "description": "例: ドアロックとガレージドア",
+ "title": "S2アクセスコントロール"
+ },
+ "S2_Authenticated": {
+ "description": "例: 照明、センサー、セキュリティシステム",
+ "title": "S2認証済み"
+ },
+ "S2_Unauthenticated": {
+ "description": "S2認証済みと同等ですが、正しいデバイスが含まれているかどうかの確認はしません",
+ "title": "S2認証されていません"
+ }
+ },
+ "select_camera": "カメラを選択",
+ "start_inclusion": "インクルージョンを開始",
+ "start_secure_inclusion": "セキュアインクルージョンの開始",
+ "title": "Z-Waveデバイスを追加",
+ "use_secure_inclusion": "安全なインクルージョンを使用する",
+ "view_device": "デバイスを表示"
+ },
+ "common": {
+ "add_node": "デバイスの追加",
+ "back": "戻る",
+ "close": "クローズ",
+ "heal_network": "ネットワークの修復",
+ "home_id": "ホームID",
+ "network": "ネットワーク",
+ "node_id": "デバイス ID",
+ "reconfigure_server": "サーバーの再設定",
+ "remove_node": "デバイスの削除",
+ "source": "ソース"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n one {デバイス}\n other {デバイス}\n}",
+ "driver_version": "ドライバーバージョン",
+ "dump_dead_nodes_text": "一部のデバイスが応答せず、停止していると見なされます。これらは完全にはエクスポートされません。",
+ "dump_dead_nodes_title": "一部のデバイスが停止しています",
+ "dump_debug": "データーをダウンロード",
+ "dump_not_ready_confirm": "ダウンロード",
+ "dump_not_ready_text": "すべてのノードの準備が整っていない状態でエクスポートを作成すると、必要なデータが見逃される可能性があります。ネットワークにすべてのノードを照会する時間を与えます。ダンプを続行しますか?",
+ "dump_not_ready_title": "一部のデバイスしか準備できていません",
+ "header": "Z-Wave ネットワークの管理",
+ "home_id": "ホームID",
+ "introduction": "Z-WaveネットワークとZ-Waveデバイスを管理する",
+ "nodes_ready": "デバイスの準備完了",
+ "not_ready": "{count} 準備ができていません",
+ "provisioned_devices": "プロビジョニング(Provisioned)されたデバイス",
+ "server_url": "サーバーのURL",
+ "server_version": "サーバーバージョン"
+ },
+ "device_info": {
+ "device_config": "デバイスの設定",
+ "heal_node": "ヒールデバイス",
+ "highest_security": "最高のセキュリティ",
+ "is_secure": "セキュア",
+ "node_ready": "デバイスの準備完了",
+ "node_status": "デバイスの状態",
+ "reinterview_device": "再インタビューデバイス",
+ "remove_failed": "故障したデバイスを削除する",
+ "unknown": "不明",
+ "zwave_info": "Z-Wave情報",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "バージョン {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "ネットワークの修復がキャンセルされました。",
+ "healing_complete": "ネットワークの修復が完了しました。",
+ "healing_failed": "修復に失敗しました。追加情報はログで利用できる場合があります。",
+ "in_progress": "ネットワークの修復が進行中です。これには少し時間がかかります。",
+ "introduction": "Z-Wave ネットワークでネットワーク修復を開始します。ネットワークの修復は、すべてのデバイスがコントローラに戻ってルートを再計算し、最近デバイスまたはコントローラを移動した場合に推奨されます。",
+ "run_in_background": "このダイアログを閉じても、ネットワークの修復はバックグラウンドで継続されます。",
+ "start_heal": "修復を開始する",
+ "stop_heal": "修復をやめる",
+ "title": "Z-Waveネットワークの修復",
+ "traffic_warning": "この修復プロセスでは、Z-Wave ネットワーク上に大量のトラフィックが生成されます。これにより、修復が進行中のデバイスの応答が遅くなる (またはまったく反応しない) ことがあります。"
+ },
+ "heal_node": {
+ "healing_complete": "{device}が修復されました。",
+ "healing_failed": "{device} を修復できませんでした。",
+ "healing_failed_check_logs": "追加情報は過去ログにあるかもしれません。",
+ "in_progress": "{device}修復が進行中です。",
+ "introduction": "{device} に、コントローラへのルートを更新するように指示します。これは、デバイスまたはコントローラを最近移動した場合に、通信の問題に役立ちます。",
+ "network_heal_in_progress": "Z-Wave ネットワークの修復は既に進行中です。個々のデバイスを修復する前に、それが終了するのを待ってください。",
+ "start_heal": "ヒールデバイス",
+ "title": "Z-Waveデバイスを修復する",
+ "traffic_warning": "この修復プロセスでは、Z-Wave ネットワーク上に大量のトラフィックが生成されます。これにより、修復が進行中のデバイスの応答が遅くなる (またはまったく反応しない) ことがあります。"
+ },
+ "logs": {
+ "download_logs": "ログをダウンロード",
+ "log_level": "ログレベル",
+ "log_level_changed": "ログレベルが {level} に変更されました。",
+ "subscribed_to_logs": "Z-WaveJSログメッセージを購読しました…",
+ "title": "Z-WaveJSログ"
+ },
+ "navigation": {
+ "logs": "ログ",
+ "network": "ネットワーク"
+ },
+ "network_status": {
+ "connected": "接続済み",
+ "connecting": "接続",
+ "unknown": "不明"
+ },
+ "node_config": {
+ "attribution": "デバイスの構成パラメータと説明は、{device_database} によって提供されています。",
+ "battery_device_notice": "バッテリ デバイスは、設定を更新するためにスリープ状態にする必要があります。デバイスのスリープ解除方法については、デバイスのマニュアルを参照してください。",
+ "error_device_not_found": "デバイスが見つかりません",
+ "header": "Z-Waveデバイスの設定",
+ "introduction": "選択したデバイスの固有の設定パラメータを管理および調整する",
+ "parameter": "パラメータ",
+ "parameter_is_read_only": "このパラメータは読み取り専用です。",
+ "set_param_accepted": "パラメータが更新されました。",
+ "set_param_error": "エラーが発生しました。",
+ "set_param_queued": "パラメーターの変更はキューに入れられており、デバイスがスリープ解除されると更新されます。",
+ "zwave_js_device_database": "Z-Wave JSデバイスデータベース"
+ },
+ "node_status": {
+ "alive": "作動中",
+ "asleep": "スリープ",
+ "awake": "起きている",
+ "dead": "停止中",
+ "unknown": "不明"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "デバイスのプロビジョニングを解除すると、電源がオンになってもHome Assistantに追加されません。既にHome Assistantに追加されている場合、プロビジョニングされたデバイスを削除しても、Home Assistantからは削除されません。",
+ "confirm_unprovision_title": "デバイスのプロビジョニングを解除してもよろしいですか?",
+ "dsk": "DSK",
+ "included": "含む",
+ "not_included": "含まれていない",
+ "security_classes": "セキュリティクラス",
+ "unprovison": "アンプロヴィジョン(Unprovison)"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "再会する前に、バッテリー駆動のデバイスをスリープ解除する必要があります。デバイスをウェイクアップする方法については、デバイスのマニュアルを参照してください。",
+ "in_progress": "デバイスがインタビュー中です。これには時間がかかる場合があります。",
+ "interview_complete": "デバイスのインタビューが完了しました。",
+ "interview_failed": "デバイスのインタビューに失敗しました。追加情報がログに残っている場合があります。",
+ "introduction": "Z-Wave ネットワーク上のデバイスに再インタビューします。デバイスの機能が不足している場合や、機能が正しくない場合は、この機能を使用します。",
+ "run_in_background": "このダイアログを閉じても、インタビューはバックグラウンドで継続されます。",
+ "start_reinterview": "再インタビューを開始",
+ "title": "Z-Waveデバイスへの再インタビュー"
+ },
+ "remove_failed_node": {
+ "in_progress": "デバイスの削除が進行中です。",
+ "introduction": "Z-Wave ネットワークから障害が発生したデバイスを削除します。デバイスが壊れているために通常は除外できない場合に使用します。",
+ "removal_failed": "デバイスをZ-Waveネットワークから削除できませんでした。",
+ "removal_finished": "デバイス {id} は、Z-Waveネットワークから削除されました。",
+ "remove_device": "デバイスを削除",
+ "title": "故障したZ-Waveデバイスを削除する"
+ },
+ "remove_node": {
+ "cancel_exclusion": "除外をキャンセルする",
+ "controller_in_exclusion_mode": "Z-Wave コントローラが除外モードになりました。",
+ "exclusion_failed": "デバイスを削除できませんでした。詳細については、ログを確認してください。",
+ "exclusion_finished": "デバイス {id} がZ-Waveネットワークから削除されました。",
+ "follow_device_instructions": "デバイスに付属の指示に従って、デバイスの除外をトリガーします。",
+ "introduction": "Z-Waveネットワークからノードを削除し、関連するデバイスとエンティティをHome Assistantから削除します。",
+ "start_exclusion": "除外を開始する",
+ "title": "Z-Wave デバイスを削除します"
+ },
+ "security_classes": {
+ "None": {
+ "title": "なし"
+ },
+ "S0_Legacy": {
+ "description": "例: S2 サポートなしのレガシーなドアロック",
+ "title": "S0 Legacy"
+ },
+ "S2_AccessControl": {
+ "description": "例: ドアロックとガレージドア",
+ "title": "S2アクセスコントロール"
+ },
+ "S2_Authenticated": {
+ "description": "例: 照明、センサー、セキュリティシステム",
+ "title": "S2認証済み"
+ },
+ "S2_Unauthenticated": {
+ "description": "S2認証済みと同等ですが、正しいデバイスが含まれているかどうかの確認はしません",
+ "title": "S2認証されていません"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Home Assistant のすべてのデータにアクセスできます。",
+ "hide_message": "このメッセージを非表示にするには、ドキュメントから panel_custom コンポーネントを確認してください",
+ "question_trust": "{link} から外部パネル {name} を信頼していますか?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "アクティブなリスナー",
+ "alert_event_type": "イベントタイプは必須フィールドです",
+ "available_events": "利用可能なイベント",
+ "count_listeners": " (リスナー数 {count})",
+ "data": "イベントデータ(YAML、オプション)",
+ "description": "イベントバスでイベントを起動します。",
+ "documentation": "イベントのドキュメント",
+ "event_fired": "イベント{name}が発生しました",
+ "fire_event": "イベントを実行",
+ "listen_to_events": "イベントを聞く",
+ "listening_to": "リッスンします",
+ "notification_event_fired": "{type} イベント が正常に実行されました!",
+ "start_listening": "リッスンを開始",
+ "stop_listening": "リッスンを停止",
+ "subscribe_to": "サブスクライブするイベント",
+ "title": "イベント",
+ "type": "イベントの種類"
+ },
+ "services": {
+ "accepts_target": "このサービスは、ターゲットを受け入れます。例: `entity_id:light.bed_light`",
+ "all_parameters": "利用可能なすべてのパラメータ",
+ "call_service": "サービスの呼び出し",
+ "column_description": "説明",
+ "column_example": "例",
+ "column_parameter": "パラメータ",
+ "description": "サービス開発ツールを使用すると、Home Assistantで利用可能な任意のサービスを呼び出すことができます。",
+ "fill_example_data": "データ記入例",
+ "no_template_ui_support": "UIはテンプレートをサポートしていませんが、YAMLエディタを使用することができます。",
+ "title": "サービス",
+ "ui_mode": "UIモードに移動します",
+ "yaml_mode": "YAMLモードに移動します",
+ "yaml_parameters": "YAMLモードでのみ使用可能なパラメータ"
+ },
+ "states": {
+ "alert_entity_field": "エンティティは必須フィールドです",
+ "attributes": "属性",
+ "copy_id": "ID をクリップボードにコピー",
+ "current_entities": "現在のエンティティ",
+ "description1": "Home Assistant内でのデバイスの状態を設定します。",
+ "description2": "エンティティがデバイスに属している場合、そのデバイスとの実際の通信はしません。",
+ "entity": "エンティティ",
+ "filter_attributes": "フィルター属性",
+ "filter_entities": "エンティティのフィルター処理",
+ "filter_states": "状態のフィルター処理",
+ "last_changed": "最終変更日",
+ "last_updated": "最終更新",
+ "more_info": "もっと見る",
+ "no_entities": "エンティティなし",
+ "set_state": "状態を設定",
+ "state": "状態",
+ "state_attributes": "状態属性(YAML、オプション)",
+ "title": "状態"
+ },
+ "statistics": {
+ "entity": "エンティティ",
+ "fix_issue": {
+ "fix": "イシューを修正",
+ "units_changed": {
+ "clear": "このエンティティの古い統計データをすべて削除します",
+ "fix": "イシューを修正",
+ "title": "このエンティティの単位が変更されました",
+ "update": "履歴の統計値を ''{metadata_unit}'' から ''{state_unit}''に更新しました"
+ }
+ },
+ "issue": "イシュー",
+ "issues": {
+ "entity_no_longer_recorded": "このエンティティにはもう記録されていません。",
+ "entity_not_recorded": "このエンティティは記録から除外されます。",
+ "no_state": "このエンティティには、使用できる状態がありません。",
+ "units_changed": "このエンティティの単位が、 ''{metadata_unit}'' から ''{state_unit}'' に変更されました。",
+ "unsupported_state_class": "このエンティティのステートクラス ''{state_class}'' はサポートされていません。",
+ "unsupported_unit": "このエンティティの単位 (''{state_unit}'') は、デバイスクラス ''{device_class}'' の単位と一致しません。",
+ "unsupported_unit_metadata": "記録された統計情報の単位 (''{metadata_unit}'') が、デバイスクラス ''{device_class}'' でサポートされている単位である ''{supported_unit}'' と一致しません。",
+ "unsupported_unit_state": "このエンティティの単位 (''{state_unit}'') は、デバイスクラス ''{device_class}'' の単位と一致しません。"
+ },
+ "no_issue": "イシューなし",
+ "title": "統計情報"
+ },
+ "templates": {
+ "all_listeners": "このテンプレートは、すべての状態変更イベントをリッスンします。",
+ "description": "テンプレートは、いくつかのHome Assistant固有の拡張機能を持つJinja2テンプレートエンジンを使用してレンダリングされます。",
+ "domain": "ドメイン",
+ "editor": "テンプレートエディタ",
+ "entity": "エンティティ",
+ "jinja_documentation": "Jinja2テンプレートのドキュメント",
+ "listeners": "このテンプレートは、次の状態変更イベントをリッスンします。",
+ "no_listeners": "このテンプレートは、いかなるイベントも感知しないため、自動的に更新されることはありません。",
+ "reset": "デモ テンプレートにリセット",
+ "result_type": "結果の種類",
+ "template_extensions": "Home Assistant テンプレートの拡張機能",
+ "time": "このテンプレートは、毎分ごとに更新されます。",
+ "title": "テンプレート",
+ "unknown_error_template": "不明なテンプレートレンダリングエラー"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "個々のデバイスを監視",
+ "energy_distribution_title": "エネルギー配分",
+ "energy_gas_graph_title": "ガス消費量",
+ "energy_solar_graph_title": "太陽光発電",
+ "energy_sources_table_title": "ソース",
+ "energy_usage_graph_title": "エネルギー使用量"
+ },
+ "charts": {
+ "by_device": "デバイス別消費量",
+ "solar": "ソーラー",
+ "stat_house_energy_meter": "総エネルギー消費量"
+ },
+ "setup": {
+ "back": "戻る",
+ "done": "私のエネルギーダッシュボードを表示!",
+ "next": "次"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "この機能は、Lovelace UIを制御している場合にのみ使用できます。",
+ "saving_failed": "Lovelace UI設定の保存に失敗しました。",
+ "yaml_unsupported": "YAMLモードでLovelace UIを使用している場合、この関数は使用できません。"
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "指定したアクション \"{action}\" を実行しますか?",
+ "no_entity_more_info": "詳細情報ダイアログにエンティティが提供されていません",
+ "no_entity_toggle": "切り替えるエンティティが提供されていません",
+ "no_navigation_path": "ナビゲーションパスが指定されていません",
+ "no_service": "実行するサービスが指定されていません",
+ "no_url": "開くURLが指定されていません"
+ },
+ "confirm_delete": "このカードを削除しますか?",
+ "empty_state": {
+ "go_to_integrations_page": "インテグレーションページに移動します。",
+ "no_devices": "このページではデバイスを制御できますが、デバイスがまだ設定されていないように見えます。開始するには、インテグレーションページに移動します。",
+ "title": "お帰りなさい"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "このカードは、あなたの家で消費されたエネルギーのうち、太陽光、風力、原子力などの非化石燃料で発電されたものがどれだけあるかを示しています。数値が高ければ高いほどいいことですね!",
+ "non_fossil_energy_consumed": "非化石燃料の消費量",
+ "non_fossil_energy_not_calculated": "非化石燃料の消費量を計算できませんでした"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "エネルギー使用量"
+ },
+ "energy_distribution": {
+ "battery": "バッテリー",
+ "gas": "ガス",
+ "go_to_energy_dashboard": "エネルギーダッシュボードに移動",
+ "grid": "グリッド",
+ "home": "ホーム",
+ "non_fossil": "非化石燃料",
+ "solar": "ソーラー",
+ "title_today": "今日のエネルギー分布"
+ },
+ "energy_solar_graph": {
+ "forecast": "予測 {name}",
+ "production": "生産 {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "バッテリー合計",
+ "cost": "コスト",
+ "energy": "エネルギー",
+ "grid_total": "グリッド合計",
+ "source": "ソース",
+ "total_costs": "総コスト"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "グリッドと組み合わせる",
+ "consumed_battery": "バッテリー消費量",
+ "consumed_solar": "太陽電池消費量",
+ "total_consumed": "合計消費電力 {num} kWh",
+ "total_returned": "トータルリターン {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "針が紫にある場合は、グリッドから消費したエネルギーよりも、グリッドに戻したエネルギーの方が多いということになります。青の場合は、グリッドから消費したエネルギーよりも、グリッドに戻したエネルギーの方が多いということになります。",
+ "energy_dependency": "このカードは、正味のエネルギー使用量を示します。",
+ "grid_neutrality_not_calculated": "グリッドのニュートラル値が計算できませんでした",
+ "net_consumed_grid": "グリッドから消費された純消費量",
+ "net_returned_grid": "グリッドに戻された純量",
+ "red_green_color_explain": "緑色の場合は、グリッドから消費したエネルギーよりも多くのエネルギーを生成したことを意味します。赤の場合は、家庭のエネルギー消費量の一部をグリッドに依存していることを意味します。"
+ },
+ "loading": "読み込み中...",
+ "no_data": "新しいデータがエネルギーダッシュボードに届くまで、最大で2時間かかることがあります。",
+ "no_data_period": "この期間のデータはありません。",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "このカードは、あなたが発電した太陽エネルギーのうち、グリッドに戻されるのではなく家庭で使用されたかを示しています。",
+ "card_indicates_solar_energy_used_charge_home_bat": "この数値が非常に低く、太陽光発電量が多いことを示している場合は、太陽光発電量が多い時に、家庭用バッテリーや電気自動車を太陽光パネルから充電することを検討してみてはいかがでしょうか。",
+ "not_produced_solar_energy": "あなたは太陽エネルギーを生産していない",
+ "self_consumed_solar_could_not_calc": "自家消費した太陽光エネルギーを計算できませんでした",
+ "self_consumed_solar_energy": "自家消費した太陽光エネルギー"
+ }
+ },
+ "entities": {
+ "never_triggered": "トリガーされたことがない"
+ },
+ "iframe": {
+ "error_secure_context": "Home Assistantが {context_protocol} を介して提供されている場合、{target_protocol} を使用してWebサイトを示すiframeはロードできません。"
+ },
+ "map": {
+ "reset_focus": "フォーカスをリセット"
+ },
+ "picture-elements": {
+ "call_service": "サービス{name}の呼び出し",
+ "hold": "保持:",
+ "more_info": "詳細を表示: {name}",
+ "navigate_to": "{location}に移動",
+ "tap": "タップ:",
+ "toggle": "{name}切り替え",
+ "url": "{url_path}へのウィンドウを開く"
+ },
+ "safe-mode": {
+ "description": "Home Assistant は、設定の読み込み中に問題が発生し、セーフモードで実行されています。エラーログを見て、何が問題だったかを確認してください。",
+ "header": "セーフモードがアクティブになりました"
+ },
+ "shopping-list": {
+ "add_item": "アイテムを追加",
+ "checked_items": "チェックアイテム",
+ "clear_items": "チェックされたアイテムを削除",
+ "drag_and_drop": "ドラッグ&ドロップ",
+ "reorder_items": "再オーダーアイテム"
+ },
+ "show_more_info": "詳細情報を表示",
+ "starting": {
+ "description": "Home Assistantを開始しています。しばらくお待ちください…"
+ }
+ },
+ "changed_toast": {
+ "message": "このダッシュボードのLovelace UI設定が更新されました。更新して変更を確認しますか?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "日",
+ "month": "月",
+ "next": "次",
+ "previous": "前",
+ "today": "今日",
+ "week": "週",
+ "year": "年"
+ },
+ "timestamp-display": {
+ "invalid": "無効なタイムスタンプ",
+ "invalid_format": "無効な表示フォーマット"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "サービスの呼び出し",
+ "default_action": "デフォルトのアクション",
+ "more-info": "詳細",
+ "navigate": "ナビゲート",
+ "none": "アクションなし",
+ "toggle": "トグル",
+ "url": "URL"
+ },
+ "navigation_path": "ナビゲーションパス",
+ "url_path": "URLパス"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "状態・利用可能",
+ "description": "アラームパネルカードを使用すると、アラームコントロールパネル統合を有効または無効化できます。",
+ "name": "アラームパネル"
+ },
+ "area": {
+ "description": "エリアカードには、特定のエリアのエンティティが自動的に表示されます。",
+ "name": "エリア",
+ "show_camera": "エリア画像ではなく、カメラ映像を表示"
+ },
+ "button": {
+ "default_action_help": "デフォルトのアクションは、エンティティの機能に依存し、切り替えるか、より多くの情報が表示されます。",
+ "description": "ボタン カードを使用すると、タスクを実行するためのボタンを追加できます。",
+ "name": "ボタン"
+ },
+ "calendar": {
+ "calendar_entities": "カレンダーエンティティ",
+ "description": "カレンダーカードには、日、週、リストビューを含むカレンダーが表示されます",
+ "inital_view": "初期ビュー",
+ "name": "カレンダー",
+ "views": {
+ "dayGridDay": "日",
+ "dayGridMonth": "月",
+ "listWeek": "リスト"
+ }
+ },
+ "conditional": {
+ "card": "カード",
+ "change_type": "タイプの変更",
+ "condition_explanation": "カードは、以下の条件がすべて満たされたときに表示されます。",
+ "conditions": "条件",
+ "current_state": "現在",
+ "description": "条件付きカードには、エンティティの状態に基づいて別のカードが表示されます。",
+ "name": "条件付き",
+ "state_equal": "状態は等しい",
+ "state_not_equal": "状態が等しくない"
+ },
+ "config": {
+ "optional": "オプション",
+ "required": "必須"
+ },
+ "entities": {
+ "description": "エンティティ カードは、最も一般的な種類のカードです。アイテムをリストにまとめます。",
+ "edit_special_row": "編集ボタンをクリックして、この行の詳細を表示する",
+ "entity_row": {
+ "attribute": "属性",
+ "button": "ボタン",
+ "buttons": "ボタン",
+ "call-service": "サービスの呼び出し",
+ "cast": "キャスト",
+ "conditional": "条件付き",
+ "divider": "仕切り",
+ "section": "セクション",
+ "weblink": "ウェブリンク"
+ },
+ "entity_row_editor": "エンティティエディタ",
+ "name": "エンティティ",
+ "secondary_info_values": {
+ "brightness": "明るさ",
+ "entity-id": "エンティティ ID",
+ "last-changed": "最終変更",
+ "last-triggered": "最後にトリガーされた",
+ "last-updated": "最終更新日",
+ "none": "セカンダリ情報なし",
+ "position": "ポジション",
+ "tilt-position": "チルト位置"
+ },
+ "show_header_toggle": "ヘッダー切り替えを表示しますか?",
+ "special_row": "特別",
+ "toggle": "エンティテを切り替え"
+ },
+ "entity-filter": {
+ "description": "エンティティフィルタカードを使用すると、特定の状態にある場合にのみ追跡するエンティティのリストを定義できます。",
+ "name": "エンティティフィルター"
+ },
+ "entity": {
+ "description": "エンティティ カードは、エンティティの状態の概要を簡単に示します。",
+ "name": "エンティティ"
+ },
+ "gauge": {
+ "description": "ゲージカードは、センサーデータを視覚的に見ることができる基本的なカードです。",
+ "name": "ゲージ",
+ "needle_gauge": "ニードルゲージとして表示しますか?",
+ "severity": {
+ "define": "重大度を定義しますか?",
+ "green": "緑",
+ "red": "赤",
+ "yellow": "黄色"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "アスペクト比",
+ "attribute": "属性",
+ "camera_image": "カメラエンティティ",
+ "camera_view": "カメラビュー",
+ "days_to_show": "表示日数",
+ "double_tap_action": "ダブルタップアクション",
+ "entities": "エンティティ",
+ "entity": "エンティティ",
+ "hold_action": "ホールドアクション",
+ "hours_to_show": "表示する時間",
+ "icon": "アイコン",
+ "icon_height": "アイコンの高さ",
+ "image": "画像パス",
+ "manual": "マニュアル",
+ "manual_description": "カスタムカードを追加するか、手動でyamlを記述しますか?",
+ "maximum": "最大",
+ "minimum": "最小",
+ "name": "名前",
+ "no_theme": "テーマなし",
+ "refresh_interval": "更新間隔",
+ "search": "検索",
+ "secondary_info_attribute": "セカンダリ情報属性",
+ "show_icon": "アイコンを表示しますか?",
+ "show_name": "名前を表示しますか?",
+ "show_state": "状態を表示しますか?",
+ "state": "状態",
+ "state_color": "状態に基づいたカラーアイコン?",
+ "tap_action": "アクションをタップ",
+ "theme": "テーマ",
+ "title": "タイトル",
+ "unit": "ユニット",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "カラム",
+ "description": "Glance カードは、複数のセンサーをコンパクトな概要でグループ化するのに便利です。",
+ "name": "一覧"
+ },
+ "grid": {
+ "columns": "列",
+ "description": "グリッド カードを使用すると、グリッドに複数のカードを表示できます。",
+ "name": "グリッド",
+ "square": "カードを正方形としてレンダリングする"
+ },
+ "history-graph": {
+ "description": "履歴グラフ カードを使用すると、一覧表示された各エンティティのグラフを表示できます。",
+ "name": "履歴グラフ"
+ },
+ "horizontal-stack": {
+ "description": "水平スタックカードを使用すると、複数のカードを重ねることで、1列分のスペースに隣り合うようにして配置することができます。",
+ "name": "水平スタック"
+ },
+ "humidifier": {
+ "description": "加湿器カードは、加湿器エンティティを制御します。エンティティの湿度とモードを変更できます。",
+ "name": "加湿器"
+ },
+ "iframe": {
+ "description": "Web ページ カードを使用すると、お気に入りの Web ページをHome Assistantに埋め込むことができます。",
+ "name": "ウェブページ"
+ },
+ "light": {
+ "description": "ライトカードを使用すると、ライトの明るさを変更できます。",
+ "name": "照明"
+ },
+ "logbook": {
+ "description": "ログブックカードには、エンティティのイベントの一覧が表示されます。",
+ "name": "ログブック"
+ },
+ "map": {
+ "dark_mode": "ダークモード?",
+ "default_zoom": "デフォルト ズーム",
+ "description": "マップ上にエンティティを表示できるマップカード。",
+ "geo_location_sources": "位置情報ソース",
+ "hours_to_show": "表示する時間",
+ "name": "地図",
+ "source": "ソース:"
+ },
+ "markdown": {
+ "content": "コンテンツ",
+ "description": "マークダウン カードは、マークダウンのレンダリングに使用されます。",
+ "name": "マークダウン"
+ },
+ "media-control": {
+ "description": "メディアコントロールカードは、使いやすいコントロールを備えたインターフェイスにメディアプレーヤーエンティティを表示するために使用されます。",
+ "name": "メディアコントロール"
+ },
+ "picture-elements": {
+ "description": "ピクチャー エレメント カードは、最も汎用性の高いタイプのカードの1つです。このカードは、アイコンやテキスト、さらにはサービスを配置することができます!画像の上に座標に基づいて配置することができます。",
+ "name": "ピクチャーエレメント"
+ },
+ "picture-entity": {
+ "description": "ピクチャーエンティティ カードには、イメージの形式でエンティティが表示されます。URL からの画像の代わりに、カメラエンティティの画像を表示することもできます。",
+ "name": "画像エンティティ"
+ },
+ "picture-glance": {
+ "description": "画像の一覧カードは、イメージと対応するエンティティの状態をアイコンで示します。右側のエンティティは切り替えアクションを許可し、他のエンティティは詳細ダイアログを表示します。",
+ "name": "画像一覧",
+ "state_entity": "状態エンティティ"
+ },
+ "picture": {
+ "description": "ピクチャーカードを使用すると、インターフェイスのさまざまなパスへのナビゲーションに使用する画像を設定したり、サービスを呼び出したりできます。",
+ "name": "画像"
+ },
+ "plant-status": {
+ "description": "植物ステータスカードは、そこにすべての素敵な植物学者のためのものです。",
+ "name": "プラントステータス"
+ },
+ "sensor": {
+ "description": "センサーカードは、時間の経過に伴う変化を視覚化するオプションのグラフを使用して、センサーの状態をすばやく提供します。",
+ "graph_type": "グラフの種類",
+ "name": "センサー",
+ "show_more_detail": "詳細を表示"
+ },
+ "shopping-list": {
+ "description": "ショッピングリストカードを使用すると、ショッピングリストのアイテムを追加、編集、チェックオフ、およびクリアができます。",
+ "integration_not_loaded": "このカードを設定するには、「shopping_list」インテグレーションが必要です。",
+ "name": "買い物リスト"
+ },
+ "statistics-graph": {
+ "description": "統計グラフカードを使用すると、リストされている各エンティティの統計のグラフを表示できます。",
+ "name": "統計グラフ",
+ "period": "期間",
+ "periods": {
+ "5minute": "5分",
+ "day": "日",
+ "hour": "時間",
+ "month": "月"
+ }
+ },
+ "thermostat": {
+ "description": "サーモスタットカードは、気候エンティティを制御します。エンティティの温度とモードを変更できます。",
+ "name": "サーモスタット"
+ },
+ "vertical-stack": {
+ "description": "垂直スタックカードを使用すると、複数のカードをグループ化して、常に同じ列に配置することができます。",
+ "name": "垂直スタック"
+ },
+ "weather-forecast": {
+ "description": "天気予報カードには天気が表示されます。ディスプレイに表示させるインターフェースに含めると非常に便利です。",
+ "name": "天気予報",
+ "show_both": "現在の天気と天気予報を表示",
+ "show_forecast": "予測を表示",
+ "show_only_current": "現在の天気のみを表示",
+ "show_only_forecast": "天気予報のみを表示"
+ }
+ },
+ "cardpicker": {
+ "by_card": "カード別",
+ "by_entity": "エンティティ別",
+ "custom_card": "カスタム",
+ "domain": "ドメイン",
+ "entity": "エンティティ",
+ "no_description": "説明がありません。"
+ },
+ "common": {
+ "add": "追加",
+ "clear": "クリア",
+ "edit": "編集",
+ "none": "なし"
+ },
+ "edit_badges": {
+ "panel_mode": "このビューは「パネルモード」になっているため、これらのバッジは表示されません。",
+ "view_no_badges": "バッジは、現在のビュータイプではサポートされていません。"
+ },
+ "edit_card": {
+ "add": "カードを追加",
+ "clear": "削除",
+ "confirm_cancel": "キャンセルしてもよいですか?",
+ "delete": "カードを削除",
+ "duplicate": "カードの複製",
+ "edit": "編集",
+ "header": "カード設定",
+ "move": "ビューに移動",
+ "move_after": "後にカードを移動",
+ "move_before": "前にカードを移動",
+ "move_down": "カードを下に移動",
+ "move_up": "カードを上に移動",
+ "options": "その他のオプション",
+ "pick_card": "どのカードを追加しますか?",
+ "pick_card_view_title": "{name}ビューにどのカードを追加しますか?",
+ "search_cards": "カードを検索",
+ "show_code_editor": "コードエディタを表示",
+ "show_visual_editor": "ビジュアルエディタを表示",
+ "toggle_editor": "エディタの切り替え",
+ "typed_header": "{type}カードの設定",
+ "unsaved_changes": "変更が保存されていません"
+ },
+ "edit_lovelace": {
+ "edit_title": "タイトルを編集",
+ "explanation": "このタイトルは、Lovelace UIのすべてのビューの上に表示されます。",
+ "header": "Lovelace UIのタイトル",
+ "title": "タイトル"
+ },
+ "edit_view": {
+ "add": "ビューの追加",
+ "delete": "ビューの削除",
+ "edit": "ビューの編集",
+ "header": "設定を表示",
+ "header_name": "{name}設定の表示",
+ "move_left": "ビューを左に移動",
+ "move_right": "ビューを右に移動",
+ "tab_badges": "バッジ",
+ "tab_settings": "設定",
+ "tab_visibility": "可視性",
+ "type": "ビュータイプ",
+ "types": {
+ "masonry": "組積造(デフォルト)",
+ "panel": "パネル(1枚)",
+ "sidebar": "サイドバー"
+ },
+ "visibility": {
+ "select_users": "ナビゲーションでこのビューを表示するユーザーを選択します。"
+ }
+ },
+ "header": "UIを編集",
+ "header-footer": {
+ "choose_header_footer": "{type}を選択してください",
+ "footer": "フッタ",
+ "header": "ヘッダ",
+ "types": {
+ "buttons": {
+ "name": "ボタン"
+ },
+ "graph": {
+ "name": "グラフ"
+ },
+ "picture": {
+ "name": "画像"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "ダッシュボードの管理",
+ "manage_resources": "リソースの管理",
+ "open": "Lovelace UI メニューを開く",
+ "raw_editor": "詳細設定エディタ"
+ },
+ "migrate": {
+ "header": "設定に互換性がありません",
+ "migrate": "設定を移行する",
+ "para_migrate": "Home Assistantは、「設定の移行」ボタンを押すことで、すべてのカードとビューにIDを自動的に追加できます。",
+ "para_no_id": "この要素には ID がありません。'ui-lovelace.yaml' のこの要素に ID を追加してください。"
+ },
+ "move_card": {
+ "header": "カードを移動するビューを選択してください"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Lovelace UI設定を削除すると、エリアとデバイスを含むLovelace UIビューが自動的に生成されます。",
+ "confirm_remove_config_title": "Lovelace UI設定を削除してもよろしいですか?エリアとデバイスを使用してLovelace UIビューを自動的に生成します。",
+ "confirm_unsaved_changes": "未保存の変更があります、終了してもよろしいですか?",
+ "confirm_unsaved_comments": "この設定にはコメントが含まれています、これらは保存されません。本当に続けますか?",
+ "error_invalid_config": "設定が無効です: {error}",
+ "error_parse_yaml": "YAMLを解析できません: {error}",
+ "error_remove": "設定を削除できません: {error}",
+ "error_save_yaml": "YAMLを保存できません: {error}",
+ "header": "設定を編集",
+ "lovelace_changed": "Lovelace設定が更新されましたが、エディタで更新された設定をロードして、現在の変更を失いますか?",
+ "reload": "リロード",
+ "resources_moved": "リソースはLovelace設定に追加されなくなりましたが、Lovelace設定パネルで追加できます。",
+ "save": "保存",
+ "saved": "保存しました",
+ "unsaved_changes": "保存されていない変更"
+ },
+ "save_config": {
+ "close": "クローズ",
+ "empty_config": "新しいダッシュボードから開始する",
+ "header": "Lovelace UIを制御する",
+ "para": "このダッシュボードは現在、Home Assistantによって管理されています。新しいエンティティまたはLovelace UIコンポーネントが利用可能になると、自動的に更新されます。制御すると、このダッシュボードは自動的に更新されなくなります。いつでも設定\nで新しいダッシュボードを作成して、変更することができます。",
+ "para_sure": "ユーザー インターフェイスを制御しますか?",
+ "save": "制御する",
+ "yaml_config": "ここではダッシュボードの現在の設定を説明します。",
+ "yaml_control": "YAMLモードで制御するには、このダッシュボードの設定で指定した名前、またはデフォルトの 'ui-lovelace.yaml' を使用して、YAMLファイルを作成します。",
+ "yaml_mode": "このダッシュボードで YAML モードを使用している場合は、UI から Lovelace 設定を変更することはできません。UI からこのダッシュボードを管理する場合は、'configuration.yaml' の Lovelace 設定から 'mode: yaml' を削除します。"
+ },
+ "select_view": {
+ "dashboard_label": "ダッシュボード",
+ "header": "ビューに移動",
+ "views_label": "ビュー"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "フッタ エディタ",
+ "header": "ヘッダーエディタ",
+ "row": "エンティティエディタ"
+ }
+ },
+ "suggest_card": {
+ "add": "Lovelace UIに追加",
+ "create_own": "別のカードを選択する",
+ "header": "私たちはあなたのために提案を作成しました"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "このビューには複数のカードが含まれていますが、パネルビューでは 1 枚のカードしか表示できません。"
+ }
+ }
+ },
+ "menu": {
+ "close": "クローズ",
+ "configure_ui": "ダッシュボードを編集",
+ "exit_edit_mode": "UI 編集モードを終了",
+ "help": "ヘルプ",
+ "reload_resources": "リソースの再読込",
+ "start_conversation": "会話を開始する"
+ },
+ "reload_lovelace": "UI の再読込",
+ "reload_resources": {
+ "refresh_body": "再読み込みを完了するには、ページを更新する必要があります。今すぐ更新しますか?",
+ "refresh_header": "更新しますか?"
+ },
+ "unused_entities": {
+ "available_entities": "これらは利用可能なエンティティですが、LovelaceUIにはまだ含まれていません。",
+ "domain": "ドメイン",
+ "entity": "エンティティ",
+ "entity_id": "エンティティ ID",
+ "last_changed": "最終変更",
+ "no_data": "未使用のエンティティが見つかりません",
+ "search": "エンティティを検索",
+ "select_to_add": "カードに追加するエンティティを選択し、[カードの追加] ボタンをクリックします。",
+ "title": "未使用のエンティティ"
+ },
+ "views": {
+ "confirm_delete": "ビューを削除しますか?",
+ "confirm_delete_existing_cards": "このビューを削除すると、カードも削除されます",
+ "confirm_delete_existing_cards_text": "''{name}''ビューを削除してもよろしいですか?ビューには、削除される{number}枚のカードが含まれています。この操作は元に戻せません。",
+ "confirm_delete_text": "''{name}''ビューを削除してもよろしいですか?"
+ },
+ "warning": {
+ "attribute_not_found": "属性{attribute}は次の場所では使用できません: {entity}",
+ "entity_non_numeric": "エンティティが数値ではありません: {entity}",
+ "entity_not_found": "エンティティが使用できません: {entity}",
+ "entity_unavailable": "エンティティは現在利用できません: {entity}",
+ "starting": "Home Assistantが起動中です。全て利用可能なるまでもうしばらくお待ち下さい。"
+ }
+ },
+ "mailbox": {
+ "delete_button": "削除",
+ "delete_prompt": "このメッセージを削除しますか?",
+ "empty": "メッセージはありません",
+ "playback_title": "メッセージの再生"
+ },
+ "map": {
+ "edit_zones": "ゾーンの編集"
+ },
+ "my": {
+ "component_not_loaded": "このリダイレクトは、このHome Assistantのインスタンスではサポートされていません。このリダイレクトを使用するには、インテグレーション {integration} が必要です。",
+ "documentation": "ドキュメント",
+ "error": "不明なエラーが発生しました",
+ "faq_link": "My Home Assistant FAQ",
+ "no_supervisor": "このリダイレクトは、あなたが使用しているHome Assistantでのインストールはサポートされていません。Home Assistant Operating System または、Home Assistant Supervised installationのいずれかが必要です。詳細については、 {docs_link} を参照してください。",
+ "not_supported": "このリダイレクトは、あなたが使用しているHome Assistantのインスタンスではサポートされていません。サポートされているリダイレクトとそれらが導入されたバージョンについては、 {link}を確認してください。"
+ },
+ "page-authorize": {
+ "abort_intro": "ログインが中止されました",
+ "authorizing_client": "{clientId} Home Assistantインスタンスへのアクセスを許可しようとしています。",
+ "form": {
+ "error": "エラー: {error}",
+ "next": "ログイン",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "セッションがタイムアウトしました、再度ログインしてください。"
+ },
+ "error": {
+ "invalid_auth": "無効なユーザー名またはパスワード",
+ "invalid_code": "認証コードが正しくありません"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "パスワード",
+ "username": "ユーザー名"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "多要素認証コード"
+ },
+ "description": "デバイスで** {mfa_module_name} **を開き、2段階認証コードを表示して、本人確認を行います。"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "セッションの有効期限が切れました、もう一度ログインしてください。"
+ },
+ "error": {
+ "invalid_auth": "無効なユーザー名またはパスワード",
+ "invalid_code": "無効な認証コード"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "パスワード",
+ "username": "ユーザー名"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "多要素認証コード"
+ },
+ "description": "デバイスで** {mfa_module_name} **を開き、2段階認証コードを表示して、本人確認を行います。"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "セッションタイムアウト、再ログインしてください。",
+ "no_api_password_set": "API パスワードが設定されていません。"
+ },
+ "error": {
+ "invalid_auth": "無効な API パスワード",
+ "invalid_code": "無効な認証コード"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "API パスワード"
+ },
+ "description": "HTTP設定にAPIパスワードを入力してください:"
+ },
+ "mfa": {
+ "data": {
+ "code": "多要素認証コード"
+ },
+ "description": "デバイスで** {mfa_module_name} **を開き、2段階認証コードを表示して、本人確認を行います。"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "お使いのコンピューターは許可されていません。"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "ユーザー"
+ },
+ "description": "ログインするユーザーを選択してください:"
+ }
+ }
+ }
+ },
+ "start_over": "やり直す",
+ "unknown_error": "エラーが発生しました",
+ "working": "お待ちください"
+ },
+ "initializing": "初期化中",
+ "logging_in_to_with": "**{authProviderName}** で **{locationName}** にログインします。",
+ "logging_in_with": "**{authProviderName}**でログインします。",
+ "pick_auth_provider": "またはログイン",
+ "store_token": "ログイン状態を維持"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "{name}",
+ "introduction": "おかえりなさい!あなたは、コミュニティによって作成された優れたUIを紹介するHome AssistantのDemoに到達しました。",
+ "learn_more": "Home Assistantの詳細",
+ "next_demo": "次のデモ"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "アクティビティ",
+ "air": "空気",
+ "commute_home": "自宅までの通勤",
+ "entertainment": "エンターテイメント",
+ "hdmi_input": "HDMI入力",
+ "hdmi_switcher": "HDMIスイッチ",
+ "information": "情報",
+ "lights": "ライト",
+ "morning_commute": "朝の通勤",
+ "total_tv_time": "総テレビ時間",
+ "turn_tv_off": "テレビをオフにする",
+ "volume": "ボリューム"
+ },
+ "names": {
+ "family_room": "ファミリールーム",
+ "hallway": "廊下",
+ "kitchen": "キッチン",
+ "left": "左",
+ "master_bedroom": "マスターベッドルーム",
+ "mirror": "ミラー",
+ "patio": "Patio",
+ "right": "右",
+ "temperature_study": "温度調査",
+ "upstairs": "2階"
+ },
+ "unit": {
+ "minutes_abbr": "分",
+ "watching": "見て"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "次"
+ },
+ "core-config": {
+ "button_detect": "検出",
+ "finish": "次",
+ "intro": "こんにちは {name}, Home Assistantへようこそ.あなたの家に名前を付けますか?",
+ "intro_location": "あなたがどこに住んでいるかを知りたいです。 この情報は、他の情報の表示および太陽の位置に関するオートメーションの設定に役立ちます。 なお、これらの情報がインターネットで外部と共有されることはありません。",
+ "intro_location_detect": "外部サービスに対してワンタイムリクエストを行うことで、この情報の入力を簡易化することができます。",
+ "location_name": "Home Assistantインストール名",
+ "location_name_default": "自宅"
+ },
+ "finish": "終了",
+ "integration": {
+ "finish": "完了",
+ "intro": "デバイスとサービスは、インテグレーションとしてHome Assistantに表示されます。今すぐ設定することも、後で設定画面から設定することもできます。",
+ "more_integrations": "もっと見る"
+ },
+ "intro": "あなたはあなたの家を目覚めさせ、あなたのプライバシーを取り戻し、ティンカーの世界的なコミュニティに参加する準備ができていますか?",
+ "next": "次",
+ "restore": {
+ "addons": "アドオン",
+ "confirm_password": "バックアップパスワードの確認",
+ "description": "以前のバックアップから復元することもできます。",
+ "folders": "フォルダー",
+ "full_backup": "フルバックアップ",
+ "hide_log": "ログ全体を非表示",
+ "in_progress": "復元中",
+ "partial_backup": "部分的なバックアップ",
+ "password": "バックアップパスワード",
+ "password_protection": "パスワード保護",
+ "select_type": "復元する対象を選択する",
+ "show_log": "ログ全体を表示",
+ "type": "バックアップタイプ"
+ },
+ "user": {
+ "create_account": "アカウントの作成",
+ "data": {
+ "name": "名前",
+ "password": "パスワード",
+ "password_confirm": "パスワードの確認",
+ "username": "ユーザー名"
+ },
+ "error": {
+ "password_not_match": "パスワードが一致しません",
+ "required_fields": "すべての必須フィールドに入力してください"
+ },
+ "intro": "ユーザー アカウントを作成します。",
+ "required_field": "必須"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "高度な機能のロックを解除します。",
+ "link_promo": "もっと見る",
+ "title": "高度モード"
+ },
+ "change_password": {
+ "confirm_new_password": "新しいパスワードの確認",
+ "current_password": "現在のパスワード",
+ "error_new_is_old": "新しいパスワードは現在のパスワードと異なる必要があります",
+ "error_new_mismatch": "入力された新しいパスワードが一致しません",
+ "error_required": "必須",
+ "header": "パスワードの変更",
+ "new_password": "新しいパスワード",
+ "submit": "送信",
+ "success": "パスワードが正常に変更されました"
+ },
+ "current_user": "現在、 {fullName}としてログインしています。",
+ "customize_sidebar": {
+ "button": "編集",
+ "description": "サイドバーのヘッダーを長押しして編集モードを有効にすることもできます。",
+ "header": "サイドバーから順序を変更し、アイテムを非表示にする"
+ },
+ "dashboard": {
+ "default_dashboard_label": "オーバービュー(デフォルト)",
+ "description": "このデバイスのデフォルトのダッシュボードを選択してください。",
+ "dropdown_label": "ダッシュボード",
+ "header": "ダッシュボード"
+ },
+ "enable_shortcuts": {
+ "description": "UI でさまざまな操作を実行するためのキーボード ショートカットを有効または無効にします。",
+ "header": "キーボード ショートカット"
+ },
+ "force_narrow": {
+ "description": "これにより、モバイルエクスペリエンスと同様に、サイドバーがデフォルトで非表示になります。",
+ "header": "サイドバーを常に非表示にする"
+ },
+ "is_owner": "あなたは所有者です。",
+ "language": {
+ "dropdown_label": "言語",
+ "header": "言語",
+ "link_promo": "翻訳を助ける"
+ },
+ "logout": "ログアウト",
+ "logout_text": "ログアウトしてもよろしいですか?",
+ "logout_title": "ログアウトしますか?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "{name} のアクセス トークンを削除しますか?",
+ "create": "トークンの作成",
+ "create_failed": "アクセス トークンを作成できませんでした。",
+ "created": "作成日時 {date}",
+ "delete_failed": "アクセス トークンを削除できませんでした。",
+ "description": "スクリプトがHome Assistantのインスタンスとやりとりできるように、長期間使用できるアクセストークンを作成します。各トークンは、作成から10年間有効です。現在、以下の長期アクセス トークンが有効です。",
+ "empty_state": "有効期間の長いアクセストークンはまだありません。",
+ "header": "長期間有効なアクセストークン",
+ "learn_auth_requests": "認証された要求を作成する方法について説明します。",
+ "name": "名前",
+ "prompt_copy_token": "アクセス トークンをコピーします。再び表示されません。",
+ "prompt_name": "トークンに名前を付ける"
+ },
+ "mfa": {
+ "confirm_disable": "{name}を無効にしてもよろしいですか?",
+ "disable": "無効",
+ "enable": "有効",
+ "header": "多要素認証モジュール"
+ },
+ "mfa_setup": {
+ "close": "クローズ",
+ "step_done": "{step}セットアップが完了しました",
+ "submit": "送信",
+ "title_aborted": "中止されました",
+ "title_success": "成功!"
+ },
+ "number_format": {
+ "description": "数値の書式を選択します。",
+ "dropdown_label": "数値の書式",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "自動 (言語設定を使用)",
+ "none": "なし",
+ "space_comma": "1 234 567,89",
+ "system": "システムロケールを使用する"
+ },
+ "header": "数値の書式"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "デバイス名",
+ "title": "このデバイスは何を呼び出す必要がありますか?"
+ },
+ "description": "このデバイスに通知を送信します。",
+ "error_load_platform": "notify.html5を設定",
+ "error_use_https": "Frontendで、SSLが有効にする必要があります。",
+ "header": "プッシュ通知",
+ "link_promo": "もっと見る",
+ "push_notifications": "プッシュ通知"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "{name} の更新トークンを削除しますか?",
+ "created_at": "作成日時 {date}",
+ "current_token_tooltip": "現在の更新トークンを削除できません",
+ "delete_failed": "更新トークンを削除できませんでした。",
+ "description": "各更新トークンはログインセッションを表します。ログアウトをクリックすると、更新トークンが自動的に削除されます。現在、次の更新トークンがアカウントでアクティブになっています。",
+ "header": "トークンを更新",
+ "last_used": "最後の使用は、{location}で{date}",
+ "not_used": "一度も使用されていない",
+ "token_title": "{clientId}トークンを更新"
+ },
+ "suspend": {
+ "description": "5分間非表示にした後、サーバーへの接続を閉じる必要がありますか?",
+ "header": "自動的に接続を閉じる"
+ },
+ "themes": {
+ "accent_color": "アクセントの色",
+ "dark_mode": {
+ "auto": "自動",
+ "dark": "暗い",
+ "light": "明るい"
+ },
+ "dropdown_label": "テーマ",
+ "error_no_theme": "利用可能なテーマはありません。",
+ "header": "テーマ",
+ "link_promo": "テーマの情報をもっと見る。",
+ "primary_color": "プライマリーの色",
+ "reset": "リセット"
+ },
+ "time_format": {
+ "description": "時刻のフォーマットを選択します。",
+ "dropdown_label": "時間形式",
+ "formats": {
+ "12": "12時間(AM/PM)",
+ "24": "24時間",
+ "language": "自動 (言語設定を使用)",
+ "system": "システムロケールを使用する"
+ },
+ "header": "時間形式"
+ },
+ "vibrate": {
+ "description": "デバイスを制御するときに、このデバイスのバイブレーションを有効または無効にします。",
+ "header": "バイブレーション機能"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "会話を開始する"
+ }
+ },
+ "sidebar": {
+ "done": "完了",
+ "external_app_configuration": "アプリの設定",
+ "hide_panel": "パネルを非表示",
+ "show_panel": "パネルを表示",
+ "sidebar_toggle": "サイドバーの切り替え"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/ka.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/ka.json
new file mode 100644
index 00000000..a02e3362
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/ka.json
@@ -0,0 +1,77 @@
+{
+ "groups": {
+ "owner": "მფლობელი"
+ },
+ "ui": {
+ "panel": {
+ "config": {
+ "automation": {
+ "editor": {
+ "conditions": {
+ "type": {
+ "time": {
+ "weekdays": {
+ "mon": "ორშაბათს"
+ }
+ }
+ }
+ }
+ }
+ },
+ "blueprint": {
+ "add": {
+ "file_name": "ლოკალური გეგმა-ფაილის სახელი",
+ "raw_blueprint": "გეგმის შინაარსი"
+ },
+ "overview": {
+ "delete_blueprint": "გეგმის წაშლა",
+ "headers": {
+ "domain": "დომენი",
+ "file_name": "Ფაილის სახელი"
+ },
+ "use_blueprint": "ავტომატიზაციის შექმნა"
+ }
+ },
+ "entities": {
+ "picker": {
+ "headers": {
+ "area": "მდებარეობა"
+ }
+ }
+ },
+ "users": {
+ "editor": {
+ "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": "ქსელის ვიზუალიზაცია"
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/ko.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/ko.json
new file mode 100644
index 00000000..a816b053
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/ko.json
@@ -0,0 +1,4659 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "구성 항목",
+ "device": "기기",
+ "integration": "통합 구성요소",
+ "user": "사용자"
+ }
+ },
+ "groups": {
+ "owner": "소유자",
+ "system-admin": "관리자",
+ "system-read-only": "읽기 전용 사용자",
+ "system-users": "사용자"
+ },
+ "panel": {
+ "calendar": "캘린더",
+ "config": "구성하기",
+ "developer_tools": "개발자 도구",
+ "energy": "에너지",
+ "history": "기록 그래프",
+ "logbook": "로그북",
+ "mailbox": "메일함",
+ "map": "지도",
+ "media_browser": "미디어 브라우저",
+ "profile": "프로필",
+ "shopping_list": "장보기 목록",
+ "states": "둘러보기"
+ },
+ "state": {
+ "default": {
+ "off": "꺼짐",
+ "on": "켜짐",
+ "unavailable": "사용 불가",
+ "unknown": "알 수 없음"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "자동",
+ "off": "꺼짐",
+ "on": "켜짐"
+ },
+ "hvac_action": {
+ "cooling": "냉방",
+ "drying": "제습",
+ "fan": "송풍",
+ "heating": "난방",
+ "idle": "대기",
+ "off": "전원 끄기"
+ },
+ "preset_mode": {
+ "activity": "활동",
+ "away": "외출",
+ "boost": "쾌속",
+ "comfort": "쾌적",
+ "eco": "절전",
+ "home": "재실",
+ "none": "없음",
+ "sleep": "취침"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "자동",
+ "away": "외출",
+ "baby": "아기",
+ "boost": "쾌속",
+ "comfort": "쾌적",
+ "eco": "에코",
+ "home": "재실",
+ "normal": "일반",
+ "sleep": "취침"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "경비 중",
+ "armed_away": "경비 중",
+ "armed_custom_bypass": "경비 중",
+ "armed_home": "경비 중",
+ "armed_night": "경비 중",
+ "armed_vacation": "경비 중",
+ "arming": "경비 중",
+ "disarmed": "해제",
+ "disarming": "해제",
+ "pending": "보류",
+ "triggered": "작동됨"
+ },
+ "default": {
+ "entity_not_found": "구성요소를 찾을 수 없음",
+ "error": "오류",
+ "unavailable": "사용불가",
+ "unknown": "알수없음"
+ },
+ "device_tracker": {
+ "home": "재실",
+ "not_home": "외출"
+ },
+ "person": {
+ "home": "재실",
+ "not_home": "외출"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "기본값",
+ "header": "오디오",
+ "input": "입력",
+ "output": "출력"
+ },
+ "network": {
+ "container": "컨테이너",
+ "disabled": "비활성화됨",
+ "header": "네트워크",
+ "host": "호스트"
+ },
+ "no_configuration": "이 애드온은 사용자가 가지고 놀만한 노출된 구성이 없습니다...",
+ "options": {
+ "edit_in_ui": "UI로 편집하기",
+ "edit_in_yaml": "YAML로 편집하기",
+ "header": "옵션",
+ "invalid_yaml": "YAML이 잘못되었습니다",
+ "show_unused_optional": "사용되지 않는 선택적 구성 옵션 표시하기"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "애드온 변경 로그를 불러오지 못했습니다",
+ "go_to_config": "애드온을 시작하지 못했습니다 - 구성 유효성 검사에 실패했습니다!",
+ "install": "애드온을 설치하지 못했습니다",
+ "restart": "애드온을 다시 시작하지 못했습니다",
+ "start": "애드온을 시작하지 못했습니다",
+ "start_invalid_config": "구성으로 이동하기",
+ "stop": "애드온을 중지하지 못했습니다",
+ "uninstall": "애드온을 제거하지 못했습니다",
+ "validate_config": "애드온 구성의 유효성을 검사하지 못했습니다"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor ('Application Armor')는 네트워크 및 원시 소켓 접근이나 특정 파일의 읽기, 쓰기 또는 실행 권한과 같은 애드온의 기능을 제한하는 Linux 커널 보안 모듈입니다.\n\n애드온 제작자는 애드온에 최적화된 보안 프로필을 제공하거나 비활성화하도록 요청할 수 있습니다. AppArmor가 비활성화되면 보안 위험이 증가하므로 애드온의 보안 점수에 부정적인 영향을 미칩니다.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "애드온은 Home Assistant에 대해 사용자를 인증할 수 있으므로 애드온을 통해 사용자가 Home Assistant 사용자이름/비밀번호를 사용하여 애드온 내에서 실행되는 응용 프로그램에 로그인할 수 있습니다. 이 배지는 애드온 제작자가 이 기능을 요구하는지 여부를 나타냅니다.",
+ "title": "Home Assistant 인증"
+ },
+ "docker_api": {
+ "description": "애드온 제작자가 시스템에서 실행 중인 Docker 인스턴스에 대한 관리 접근 권한을 애드온에 요청했습니다. 이 모드는 애드온이 Home Assistant 시스템 전체에 대해 완전한 접근 및 제어 기능을 제공하므로 보안 위험이 추가되며 잘못 사용될 경우 시스템이 손상될 수 있습니다. 따라서 이 기능은 애드온 보안 점수에 부정적인 영향을 미칩니다.\n\n접근 권한은 사용자가 허락하지 않으면 부여되지 않으며 권한을 부여하려면 애드온에서 보호 모드를 수동으로 비활성화해야 합니다. 이 애드온의 출처를 알고 있으며 신뢰하고 사용이 필요한 경우에만 보호 모드를 비활성화하십시오.",
+ "title": "완전한 Docker 접근"
+ },
+ "full_access": {
+ "description": "애드온 제작자의 요청에 의해 애드온에 시스템의 하드웨어에 대한 완전한 접근 권한이 부여되었습니다. 애드온의 접근 권한은 Docker의 권한 모드와 비슷합니다. 이로 인해 보안 위험이 발생할 수 있으므로 이 기능은 애드온 보안 점수에 부정적인 영향을 미칩니다.\n\n접근 권한은 사용자가 허락하지 않으면 부여되지 않으며 권한을 부여하려면 애드온에서 보호 모드를 수동으로 비활성화해야 합니다. 이 애드온의 출처를 알고 있으며 신뢰하고 사용이 필요한 경우에만 보호 모드를 비활성화하십시오.",
+ "title": "완전한 하드웨어 접근"
+ },
+ "hassio_api": {
+ "description": "애드온 제작자의 요청에 의해 애드온에 Supervisor API에 대한 접근 권한이 부여되었습니다. 기본적으로 애드온은 시스템의 일반 버전 정보에 접근할 수 있습니다. 애드온이 API에 대해 '매니저' 또는 '관리자' 수준의 접근 권한을 요청할 때 Home Assistant 시스템의 여러 부분을 제어할 수 있는 접근 권한을 얻게 됩니다. 이 권한은 이 배지로 표시되며 애드온의 보안 점수에 부정적인 영향을 미칩니다.",
+ "title": "Supervisor API 접근"
+ },
+ "homeassistant_api": {
+ "description": "이 애드온은 Home Assistant API를 통해 실행 중인 Home Assistant 인스턴스에 직접 접근할 수 있습니다. 이 모드는 애드온에 대한 인증도 처리하므로 추가 인증 토큰 없이 애드온이 Home Assistant와 상호 작용할 수 있습니다.",
+ "title": "Home Assistant API 접근"
+ },
+ "host_network": {
+ "description": "애드온은 일반적으로 자체 격리된 네트워크 계층에서 실행되므로 호스트 운영 체제의 네트워크에 접근할 수 없습니다. 경우에 따라 이러한 네트워크 격리에 의해 애드온의 서비스 제공이 제한될 수 있으므로 애드온 제작자가 격리를 해제하여 애드온에 호스트 시스템의 네트워크 기능에 대한 전체 접근 권한을 부여할 수 있습니다. 이렇게 하면 애드온에 더 많은 네트워크 기능이 제공되지만 보안이 저하되므로 애드온에서 이 옵션을 사용하면 애드온의 보안 등급이 낮아집니다.",
+ "title": "호스트 네트워크"
+ },
+ "host_pid": {
+ "description": "일반적으로 애드온이 실행하는 프로세스는 다른 모든 시스템 프로세스와 격리됩니다. 애드온 제작자는 애드온이 호스트 시스템 인스턴스에서 실행 중인 시스템 프로세스에 접근할 수 있도록 요청하고 호스트 시스템에서 프로세스를 생성할 수 있도록 허용했습니다. 이 모드는 애드온이 Home Assistant 시스템 전체에 대해 완전한 접근 및 제어 기능을 제공하므로 보안 위험이 추가되며 잘못 사용될 경우 시스템이 손상될 수 있습니다. 따라서 이 기능은 애드온 보안 점수에 부정적인 영향을 미칩니다.\n\n접근 권한은 사용자가 허락하지 않으면 부여되지 않으며 권한을 부여하려면 애드온에서 보호 모드를 수동으로 비활성화해야 합니다. 이 애드온의 출처를 알고 있으며 신뢰하고 사용이 필요한 경우에만 보호 모드를 비활성화하십시오.",
+ "title": "호스트 프로세스 네임스페이스"
+ },
+ "ingress": {
+ "description": "이 애드온은 인그레스를 사용하여 애드온의 인터페이스를 Home Assistant에 안전하게 적용합니다.",
+ "title": "인그레스"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "인증",
+ "core": "코어",
+ "docker": "docker",
+ "hardware": "하드웨어",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "호스트",
+ "host_pid": "호스트 pid",
+ "ingress": "인그레스",
+ "rating": "등급",
+ "stage": "단계"
+ },
+ "rating": {
+ "description": "Home Assistant는 각 애드온에 대해 보안 등급을 제공하며, 이 애드온을 사용할 때 발생할 수 있는 위험 정도를 나타냅니다. 애드온이 시스템에 대한 더 많은 접근 권한을 요구할수록 점수가 낮아지며 보안 위험이 높아질 수 있습니다.\n\n보안 등급 점수는 1부터 6까지입니다. 여기서 1은 최저 점수(가장 불안전하고 가장 높은 위험으로 간주됨)이고 6은 최고 점수(가장 안전하고 가장 낮은 위험으로 간주됨)입니다.",
+ "title": "애드온 보안 등급"
+ },
+ "role": {
+ "admin": "관리자",
+ "backup": "백업",
+ "default": "기본값",
+ "homeassistant": "homeassistant",
+ "manager": "매니저"
+ },
+ "stage": {
+ "description": "애드온은 다음 세 가지 단계 중 하나일 수 있습니다:\n\n{icon_stable} **안정 버전**: 실제 환경에서 바로 사용할 수 있는 애드온입니다.\n\n{icon_experimental} **실험 버전**: 버그를 포함할 수 있으며 완성되지 않았을 수 있습니다.\n\n{icon_deprecated} **지원 중단**: 이러한 애드온은 더 이상 업데이트되지 않습니다.",
+ "title": "애드온 단계"
+ },
+ "stages": {
+ "deprecated": "더 이상 사용되지 않음",
+ "experimental": "실험용"
+ }
+ },
+ "changelog": "변경 로그",
+ "cpu_usage": "애드온 CPU 사용량",
+ "hostname": "호스트 이름",
+ "install": "설치하기",
+ "new_update_available": "{name} {version}을(를) 사용할 수 있습니다",
+ "not_available_arch": "이 애드온은 시스템의 프로세서 또는 설치된 운영 체제와 호환되지 않습니다.",
+ "not_available_version": "Home Assistant {core_version_installed}을(를) 실행 중입니다. 이 애드온의 버전으로 업데이트하려면 Home Assistant의 버전 {core_version_needed} 이상이 필요합니다",
+ "open_web_ui": "웹 UI 열기",
+ "option": {
+ "auto_update": {
+ "description": "사용 가능한 새로운 버전의 애드온이 있을 경우 자동으로 업데이트합니다",
+ "title": "자동 업데이트"
+ },
+ "boot": {
+ "description": "시스템이 부팅될 때 애드온을 시작합니다",
+ "title": "자동 시작"
+ },
+ "ingress_panel": {
+ "description": "이 애드온을 사이드바에 추가합니다",
+ "title": "사이드바에 표시하기"
+ },
+ "protected": {
+ "description": "애드온에서 상위 시스템에 접근하는 것을 차단합니다",
+ "title": "보호 모드"
+ },
+ "watchdog": {
+ "description": "애드온이 충돌한 경우 다시 시작합니다",
+ "title": "실행 감시"
+ }
+ },
+ "protection_mode": {
+ "content": "이 애드온의 보호 모드가 비활성화되었습니다! 이렇게 하면 애드온에 전체 시스템에 대한 완전한 접근 권한을 부여하여 보안 위험을 가중시키고 잘못 사용하면 시스템이 손상될 수 있습니다. 이 애드온의 출처를 알고 있으며 신뢰하고 사용이 필요한 경우에만 보호 모드를 비활성화하십시오.",
+ "enable": "보호 모드 활성화하기",
+ "title": "경고: 보호 모드가 비활성화되었습니다!"
+ },
+ "ram_usage": "애드온 RAM 사용량",
+ "rebuild": "다시 빌드하기",
+ "restart": "다시 시작",
+ "start": "시작하기",
+ "stop": "중지",
+ "uninstall": "제거하기",
+ "visit_addon_page": "자세한 내용은 {name} 페이지를 참조해주세요"
+ },
+ "documentation": {
+ "get_documentation": "애드온 관련 문서를 가져오지 못했습니다. {error}"
+ },
+ "failed_to_reset": "애드온 설정을 재설정하지 못했습니다. {error}",
+ "failed_to_save": "애드온 설정을 저장하지 못했습니다. {error}",
+ "logs": {
+ "get_logs": "애드온 로그를 가져오지 못했습니다. {error}"
+ },
+ "panel": {
+ "configuration": "구성",
+ "documentation": "관련 문서",
+ "info": "정보",
+ "log": "로그"
+ },
+ "state": {
+ "installed": "애드온이 설치되었습니다",
+ "not_available": "시스템에서 애드온을 사용할 수 없습니다",
+ "not_installed": "애드온이 설치되지 않았습니다"
+ }
+ },
+ "backup": {
+ "addons": "애드온",
+ "confirm_password": "백업 비밀번호 확인",
+ "could_not_create": "백업을 만들 수 없습니다",
+ "create": "생성하기",
+ "create_backup": "백업 생성",
+ "create_blocked_not_running": "시스템이 {state} 상태이기 때문에 지금은 백업을 생성할 수 없습니다.",
+ "created": "생성됨",
+ "delete_backup_confirm": "삭제",
+ "delete_backup_text": "{number} {number, plural,\n one{개의 백업}\n other{개의 백업}\n}을 삭제하시겠습니까?",
+ "delete_backup_title": "백업 삭제",
+ "delete_selected": "선택한 백업 삭제하기",
+ "enter_password": "비밀번호를 입력해주세요.",
+ "failed_to_delete": "삭제하지 못했습니다.",
+ "folders": "폴더",
+ "full_backup": "전체 백업",
+ "name": "백업 이름",
+ "no_backups": "아직 백업이 없습니다.",
+ "partial_backup": "부분 백업",
+ "password": "백업 비밀번호",
+ "password_protection": "비밀번호 보호",
+ "passwords_not_matching": "비밀번호가 일치하지 않습니다",
+ "select_type": "복원 할 항목 선택",
+ "selected": "{number}개 선택됨",
+ "size": "크기",
+ "type": "백업 유형",
+ "upload_backup": "백업 업로드"
+ },
+ "common": {
+ "cancel": "취소",
+ "close": "닫기",
+ "description": "상세정보",
+ "error": {
+ "unknown": "알 수 없는 오류",
+ "update_failed": "업데이트가 실패했습니다"
+ },
+ "failed_to_restart_name": "{name}을(를) 다시 시작하지 못했습니다",
+ "failed_to_update_name": "{name}을(를) 업데이트하지 못했습니다",
+ "learn_more": "더 알아보기",
+ "menu": "메뉴",
+ "new_version_available": "새로운 버전을 사용할 수 있습니다",
+ "newest_version": "최신 버전",
+ "no": "아니오",
+ "refresh": "새로고침",
+ "release_notes": "릴리스 노트",
+ "reload": "다시 읽어오기",
+ "reset_defaults": "기본값으로 재설정하기",
+ "reset_options": "옵션 재설정하기",
+ "restart": "다시 시작",
+ "restart_name": "{name} 다시 시작",
+ "running_version": "현재 {version} 버전을 실행 중입니다",
+ "save": "저장하기",
+ "show": "표시하기",
+ "show_more": "자세한 정보 표시하기",
+ "update": "업데이트하기",
+ "update_available": "{count, plural,\n one{개의 업데이트}\n other{{count}개의 업데이트}\n} 보류 중",
+ "version": "버전",
+ "yes": "예"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "모든 옵션을 재설정하시겠습니까?",
+ "title": "옵션 재설정하기"
+ },
+ "restart": {
+ "text": "{name}을(를) 다시 시작하시겠습니까?",
+ "title": "{name} 다시 시작"
+ },
+ "update": {
+ "text": "{name}을(를) 버전 {version}(으)로 업데이트하시겠습니까?",
+ "title": "{name} 업데이트"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "새로운 버전을 사용할 수 있습니다",
+ "addon_running": "애드온이 실행 중입니다",
+ "addon_stopped": "애드온이 중지되었습니다",
+ "addons": "설치된 애드온",
+ "no_addons": "아직 설치된 애드온이 없습니다. 시작하려면 애드온 스토어로 이동해보세요!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "취소",
+ "description": "현재 '' {current_path} ''을(를) 저장장치로 사용하고 있습니다. 저장장치를 변경하면 기기가 재부팅되며 {time} 분이 소요될 것으로 예상됩니다. 이 기간 동안 Home Assistant 를 사용할 수 없습니다. 변경 중 전원을 분리하지 마세요!",
+ "loading_devices": "기기 불러오는 중",
+ "move": "변경",
+ "moving": "저장장치 변경 중",
+ "moving_desc": "저장장치를 변경하고 재부팅합니다. 기다려주세요.",
+ "no_devices": "연결된 장치를 찾을 수 없습니다",
+ "select_device": "새 저장장치 선택",
+ "title": "저장장치 변경"
+ },
+ "hardware": {
+ "attributes": "속성",
+ "device_path": "기기 경로",
+ "id": "ID",
+ "search": "하드웨어 검색",
+ "subsystem": "서브 시스템",
+ "title": "하드웨어"
+ },
+ "network": {
+ "connected_to": "{ssid}에 연결되었습니다",
+ "dhcp": "자동 구성",
+ "disabled": "비활성화됨",
+ "dns_servers": "DNS 서버",
+ "failed_to_change": "네트워크 설정을 변경하지 못했습니다",
+ "gateway": "게이트웨이 주소",
+ "ip_netmask": "IP 주소/넷마스크",
+ "open": "비밀번호 없음",
+ "scan_ap": "액세스 포인트 검색하기",
+ "static": "수동 구성",
+ "title": "네트워크 설정",
+ "unsaved": "저장되지 않은 변경 사항이 있습니다. 탭을 변경하면 손실됩니다. 계속하시겠습니까?",
+ "warning": "Wi-Fi, IP 또는 게이트웨이 주소를 변경하는 경우 연결이 끊어질 수 있습니다!",
+ "wep": "WEB",
+ "wpa": "WPA-PSK"
+ },
+ "registries": {
+ "add_new_registry": "새로운 레지스트리 추가하기",
+ "add_registry": "레지스트리 추가하기",
+ "failed_to_add": "레지스트리를 추가하지 못했습니다",
+ "failed_to_remove": "레지스트리를 제거하지 못했습니다",
+ "no_registries": "구성된 레지스트리가 없습니다",
+ "password": "비밀번호",
+ "registry": "레지스트리",
+ "remove": "제거하기",
+ "title_add": "새로운 컨테이너 레지스트리 추가하기",
+ "title_manage": "컨테이너 레지스트리 관리하기",
+ "username": "사용자 이름"
+ },
+ "repositories": {
+ "add": "추가하기",
+ "remove": "제거하기",
+ "title": "애드온 저장소 관리",
+ "used": "해당 저장소는 애드온으로 사용중이기 때문에 제거할 수 없습니다."
+ },
+ "restart_addon": {
+ "confirm_text": "애드온 다시 시작하기",
+ "text": "변경 사항과 함께 애드온을 다시 시작하시겠습니까?"
+ },
+ "update": {
+ "backup": "백업",
+ "create_backup": "업데이트하기 전에 {name} 의 백업 생성",
+ "creating_backup": "{name} 백업 생성 중",
+ "updating": "{name}을(를) {version} 버전으로 업데이트하는 중"
+ }
+ },
+ "my": {
+ "error": "알 수 없는 오류가 발생했습니다",
+ "error_addon_no_ingress": "해당 애드온은 인그레스를 지원하지 않습니다.",
+ "error_addon_not_found": "애드온을 찾을 수 없습니다",
+ "error_addon_not_installed": "해당 애드온은 설치되어있지 않습니다. 애드온을 설치해주세요.",
+ "error_addon_not_started": "해당 애드온은 실행중이지 않습니다. 애드온을 실행해주세요.",
+ "faq_link": "내 Home Assistant 자주 묻는 질문",
+ "not_supported": "이 리디렉션은 Home Assistant 인스턴스에서 지원되지 않습니다. {link}에서 지원되는 리디렉션과 리디렉션이 도입된 버전을 확인해주세요."
+ },
+ "panel": {
+ "addons": "애드온",
+ "backups": "백업",
+ "dashboard": "대시보드",
+ "store": "애드온 스토어",
+ "system": "시스템"
+ },
+ "store": {
+ "check_updates": "업데이트 확인",
+ "missing_addons": "애드온이 보이지 않으신가요? 사용자 프로필 페이지에서 고급 모드를 활성화해보세요",
+ "no_results_found": "{repository}에 결과가 존재하지 않습니다",
+ "registries": "레지스트리",
+ "repositories": "저장소"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "코어 CPU 사용량",
+ "ram_usage": "코어 RAM 사용량"
+ },
+ "host": {
+ "change": "변경",
+ "change_hostname": "호스트 이름 변경",
+ "confirm_reboot": "호스트를 재부팅하시겠습니까?",
+ "confirm_shutdown": "호스트를 종료하시겠습니까?",
+ "deployment": "배포 버전",
+ "docker_version": "Docker 버전",
+ "emmc_lifetime_used": "eMMC 사용 수명",
+ "failed_to_get_hardware_list": "하드웨어 목록을 가져오지 못했습니다",
+ "failed_to_import_from_usb": "USB에서 가져오지 못했습니다",
+ "failed_to_move": "저장장치를 변경하지 못했습니다",
+ "failed_to_reboot": "호스트를 재부팅하지 못했습니다",
+ "failed_to_set_hostname": "호스트 이름을 설정하지 못했습니다",
+ "failed_to_shutdown": "호스트를 종료하지 못했습니다",
+ "hardware": "하드웨어",
+ "hostname": "호스트 이름",
+ "import_from_usb": "USB에서 가져오기",
+ "ip_address": "IP 주소",
+ "move_datadisk": "저장장치 변경",
+ "new_hostname": "새로운 호스트 이름을 입력해주세요:",
+ "operating_system": "운영 체제",
+ "reboot_host": "호스트 재부팅",
+ "shutdown_host": "호스트 종료",
+ "used_space": "사용된 공간"
+ },
+ "log": {
+ "get_logs": "{provider} 로그를 가져오지 못했습니다. {error}",
+ "log_provider": "로그 제공자"
+ },
+ "supervisor": {
+ "beta_backup": "이 기능을 활성화하기 전에 백업된 데이터가 있는지 확인해주세요.",
+ "beta_join_confirm": "베타 채널에 가입하시겠습니까?",
+ "beta_release_items": "여기에는 다음에 대한 베타 릴리스가 포함됩니다:",
+ "beta_warning": "베타 릴리스는 테스터 및 얼리 어답터용이며 불안정한 코드 변경 내용을 포함할 수 있습니다.",
+ "channel": "채널",
+ "cpu_usage": "Supervisor CPU 사용량",
+ "failed_to_reload": "Supervisor를 다시 읽어오지 못했습니다",
+ "failed_to_set_option": "Supervisor 옵션을 설정하지 못했습니다",
+ "failed_to_update": "Supervisor를 업데이트하지 못했습니다",
+ "join_beta_action": "베타 채널에 가입",
+ "join_beta_description": "Home Assistant (출시 직전버전), Supervisor 및 호스트의 베타 업데이트를 가져옵니다",
+ "leave_beta_action": "베타 채널에서 탈퇴",
+ "leave_beta_description": "Home Assistant, Supervisor 및 호스트의 공식 업데이트를 가져옵니다",
+ "ram_usage": "Supervisor RAM 사용량",
+ "reload_supervisor": "Supervisor 다시 읽기",
+ "search": "검색",
+ "share_diagnostics": "진단 정보 공유하기",
+ "share_diagnostics_description": "충돌 보고서 및 진단 정보를 공유합니다.",
+ "share_diagonstics_description": "Supervisor에서 예기치 않은 오류가 발생한 경우 충돌 보고서 및 진단 정보를 자동으로 공유하시겠습니까? {line_break} 공유된 내용으로 발생된 문제를 해결할 수 있으며, 해당 정보는 Home Assistant Core 팀에서만 접근할 수 있을 뿐, 다른 사람과 공유되지 않습니다.{line_break} 데이터에는 개인정보 및 민감한 정보가 포함되어 있지 않으므로 언제든지 설정에서 이 정보를 사용하지 않도록 설정할 수 있습니다.",
+ "share_diagonstics_title": "Home Assistant 개선 도와주기",
+ "unhealthy_description": "비정상적으로 설치된 Supervisor를 실행하면 문제가 발생합니다. 다음은 현재 설치된 환경에서 발견된 문제 목록입니다. 문제를 해결하는 방법에 대해 알아보려면 링크를 클릭해주세요.",
+ "unhealthy_reason": {
+ "docker": "Docker 환경이 제대로 작동하지 않습니다",
+ "privileged": "Supervisor가 권한이 없습니다",
+ "setup": "Supervisor 설치에 실패했습니다",
+ "supervisor": "Supervisor가 업데이트할 수 없습니다",
+ "untrusted": "신뢰할 수 없는 내용이 발견되었습니다"
+ },
+ "unhealthy_title": "설치 상태가 비정상적입니다",
+ "unsupported_description": "다음은 설치된 Supervisor에서 발견된 문제 목록입니다. 문제를 해결하는 방법에 대해 알아보려면 링크를 클릭해주세요.",
+ "unsupported_reason": {
+ "apparmor": "호스트에서 AppArmor가 활성화되지 않았습니다.",
+ "container": "문제를 일으키는 것으로 알려진 컨테이너입니다",
+ "content-trust": "이미지 무결성 검사가 비활성화되었습니다",
+ "content_trust": "콘텐츠 신뢰 유효성 검사가 비활성화되었습니다.",
+ "dbus": "DBUS",
+ "docker_configuration": "Docker 구성 내용",
+ "docker_version": "Docker 버전",
+ "job_conditions": "작업 조건이 무시되었습니다",
+ "lxc": "LXC",
+ "network_manager": "네트워크 관리자",
+ "os": "운영 체제",
+ "os_agent": "OS 관리자",
+ "privileged": "Supervisor가 권한이 없습니다",
+ "software": "지원되지 않는 소프트웨어가 감지되었습니다.",
+ "source_mods": "소스 수정",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "지원되지 않는 설치방법으로 실행 중입니다",
+ "update_supervisor": "Supervisor 업데이트",
+ "warning": "경고"
+ }
+ },
+ "update_available": {
+ "core_note": "업데이트 후 인스턴스가 나타나지 않으면 {version} 버전으로 롤백합니다.",
+ "create_backup": "업데이트하기 전에 백업 만들기",
+ "creating_backup": "{name} 백업 생성 중",
+ "description": "{version} 설치되어 있습니다. {newest_version} 버전으로 업데이트하려면 업데이트를 클릭하세요.",
+ "no_update": "{name}에 대한 업데이트가 없습니다.",
+ "open_release_notes": "릴리즈 노트 열기",
+ "update_name": "{name} 업데이트",
+ "updating": "{name} 을(를) 버전 {version} 으로 업데이트 중"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "로그인 상태를 유지하시겠습니까?",
+ "confirm": "예",
+ "decline": "아니요"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "외출 경비",
+ "arm_custom_bypass": "사용자 우회",
+ "arm_home": "재실 경비",
+ "arm_night": "야간 경비",
+ "arm_vacation": "경보 중지",
+ "clear_code": "지우기",
+ "code": "비밀번호",
+ "disarm": "경비 해제"
+ },
+ "area": {
+ "area_not_found": "영역을 찾을 수 없습니다."
+ },
+ "automation": {
+ "last_triggered": "최근 트리거 됨",
+ "trigger": "동작 실행"
+ },
+ "button": {
+ "press": "누르기"
+ },
+ "camera": {
+ "not_available": "이미지 사용 불가"
+ },
+ "climate": {
+ "aux_heat": "보조 히터",
+ "away_mode": "외출 모드",
+ "cooling": "{name} 냉방중",
+ "current_temperature": "{name} 현재 온도",
+ "currently": "현재 온도",
+ "fan_mode": "송풍 모드",
+ "heating": "{name} 난방중",
+ "high": "높음",
+ "low": "낮음",
+ "on_off": "켜기 / 끄기",
+ "operation": "운전 모드",
+ "preset_mode": "프리셋",
+ "swing_mode": "회전 모드",
+ "target_humidity": "희망 습도",
+ "target_temperature": "희망 온도",
+ "target_temperature_entity": "{name} 희망 온도",
+ "target_temperature_mode": "{name} 희망 온도 {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "감소",
+ "increment": "증가",
+ "reset": "초기화"
+ }
+ },
+ "cover": {
+ "position": "위치",
+ "tilt_position": "기울기"
+ },
+ "fan": {
+ "direction": "방향",
+ "forward": "앞으로",
+ "oscillate": "회전",
+ "preset_mode": "프리셋 모드",
+ "reverse": "뒤로",
+ "speed": "속도"
+ },
+ "humidifier": {
+ "humidity": "희망 습도",
+ "mode": "모드",
+ "on_entity": "{name} 작동",
+ "target_humidity_entity": "{name} 희망 습도"
+ },
+ "light": {
+ "brightness": "밝기",
+ "cold_white_value": "주광색 밝기",
+ "color_brightness": "색상 밝기",
+ "color_temperature": "색온도",
+ "effect": "효과",
+ "warm_white_value": "전구색 밝기",
+ "white_value": "밝기"
+ },
+ "lock": {
+ "code": "비밀번호",
+ "lock": "잠금",
+ "unlock": "잠금 해제"
+ },
+ "media_player": {
+ "browse_media": "미디어 찾아보기",
+ "media_next_track": "다음",
+ "media_pause": "일시정지",
+ "media_play": "재생",
+ "media_play_pause": "재생 / 일시정지",
+ "media_previous_track": "이전",
+ "media_stop": "중지",
+ "media_volume_down": "음량 작게",
+ "media_volume_mute": "음소거",
+ "media_volume_unmute": "음소거 해제",
+ "media_volume_up": "음량 크게",
+ "nothing_playing": "정지중",
+ "sound_mode": "사운드 모드",
+ "source": "입력 소스",
+ "text_to_speak": "텍스트 음성 변환 입력",
+ "turn_off": "끄기",
+ "turn_on": "켜기"
+ },
+ "persistent_notification": {
+ "dismiss": "해제하기"
+ },
+ "scene": {
+ "activate": "활성화"
+ },
+ "script": {
+ "cancel": "취소",
+ "cancel_multiple": "{number}개 취소하기",
+ "run": "실행하기"
+ },
+ "service": {
+ "run": "실행하기"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "취소",
+ "finish": "완료",
+ "pause": "일시정지",
+ "start": "시작"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "청소 재개",
+ "return_to_base": "충전 복귀",
+ "start_cleaning": "청소 시작",
+ "turn_off": "켜기",
+ "turn_on": "끄기"
+ }
+ },
+ "water_heater": {
+ "away_mode": "외출 모드",
+ "currently": "현재 온도",
+ "on_off": "켜기 / 끄기",
+ "operation": "운전",
+ "target_temperature": "희망 온도"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "기압",
+ "humidity": "습도",
+ "precipitation": "강수량",
+ "temperature": "기온",
+ "visibility": "시정",
+ "wind_speed": "풍속"
+ },
+ "cardinal_direction": {
+ "e": "동",
+ "ene": "동북동",
+ "ese": "동남동",
+ "n": "북",
+ "ne": "북동",
+ "nne": "북북동",
+ "nnw": "북북서",
+ "nw": "북서",
+ "s": "남",
+ "se": "남동",
+ "sse": "남남동",
+ "ssw": "남남서",
+ "sw": "남서",
+ "w": "서",
+ "wnw": "서북서",
+ "wsw": "서남서"
+ },
+ "day": "주간",
+ "forecast": "일기 예보",
+ "high": "높음",
+ "low": "낮음",
+ "night": "야간"
+ }
+ },
+ "common": {
+ "and": "그리고",
+ "back": "뒤로가기",
+ "cancel": "취소",
+ "clear": "지우기",
+ "close": "닫기",
+ "continue": "계속하기",
+ "copied": "복사되었습니다",
+ "copied_clipboard": "클립보드에 복사되었습니다",
+ "delete": "삭제하기",
+ "disable": "비활성화하기",
+ "enable": "활성화하기",
+ "error_required": "필수 요소",
+ "help": "도움말",
+ "leave": "나가기",
+ "loading": "읽는 중",
+ "menu": "메뉴",
+ "move": "변경",
+ "next": "다음",
+ "no": "아니오",
+ "not_now": "나중에",
+ "overflow_menu": "오버플로 메뉴",
+ "previous": "이전",
+ "refresh": "새로고침",
+ "remove": "제거하기",
+ "rename": "이름 변경",
+ "save": "저장하기",
+ "skip": "건너뛰기",
+ "stay": "머무르기",
+ "submit": "확인",
+ "successfully_deleted": "성공적으로 삭제되었습니다",
+ "successfully_saved": "성공적으로 저장되었습니다",
+ "undo": "되돌리기",
+ "yes": "예"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "애드온",
+ "error": {
+ "fetch_addons": {
+ "description": "애드온을 가져오는 중 오류가 반환되었습니다.",
+ "title": "애드온 가져오기 오류"
+ },
+ "no_supervisor": {
+ "description": "Supervisor를 찾을 수 없으므로 애드온을 읽어 들일 수 없습니다.",
+ "title": "Supervisor가 없습니다"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "추가하기",
+ "failed_create_area": "영역을 만들지 못했습니다.",
+ "name": "이름",
+ "text": "새로운 영역의 이름을 입력해주세요.",
+ "title": "새로운 영역 추가하기"
+ },
+ "add_new": "새로운 영역 추가하기",
+ "area": "영역",
+ "clear": "지우기",
+ "no_areas": "영역이 존재하지 않습니다",
+ "no_match": "일치하는 영역을 찾을 수 없습니다",
+ "show_areas": "영역 표시하기"
+ },
+ "attributes": {
+ "expansion_header": "속성"
+ },
+ "blueprint-picker": {
+ "add_user": "사용자 추가하기",
+ "remove_user": "사용자 제거하기",
+ "select_blueprint": "블루프린트 선택하기"
+ },
+ "calendar": {
+ "my_calendars": "내 캘린더",
+ "today": "오늘"
+ },
+ "data-table": {
+ "clear": "지우기",
+ "filtering_by": "필터링",
+ "hidden": "{number}개 숨겨짐",
+ "no-data": "데이터가 없습니다",
+ "search": "검색"
+ },
+ "date-range-picker": {
+ "end_date": "종료 날짜",
+ "ranges": {
+ "last_week": "지난 주",
+ "this_week": "이번 주",
+ "today": "오늘",
+ "yesterday": "어제"
+ },
+ "select": "선택",
+ "start_date": "시작 날짜"
+ },
+ "device-picker": {
+ "clear": "지우기",
+ "device": "기기",
+ "no_area": "영역 없음",
+ "no_devices": "기기가 존재하지 않습니다",
+ "no_match": "일치하는 기기를 찾을 수 없습니다",
+ "show_devices": "기기 표시하기",
+ "toggle": "토글"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "속성",
+ "show_attributes": "속성 표시하기"
+ },
+ "entity-picker": {
+ "clear": "지우기",
+ "edit": "편집하기",
+ "entity": "구성요소",
+ "no_match": "일치하는 구성요소를 찾을 수 없습니다",
+ "show_entities": "구성요소 표시하기"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "기록 그래프 통합 구성요소가 비활성화되었습니다",
+ "loading_history": "상태 기록 내용 읽는 중...",
+ "no_history_found": "상태 기록 내용이 없습니다."
+ },
+ "logbook": {
+ "by": "트리거 요소: ",
+ "by_service": "트리거 요소: 서비스",
+ "entries_not_found": "로그북 구성요소를 찾을 수 없습니다.",
+ "messages": {
+ "became_unavailable": "이(가) 사용 불가능 상태가 되었습니다.",
+ "changed_to_state": "이(가) {state}으(로) 변경되었습니다.",
+ "cleared_device_class": "이(가) 더 이상 {device_class}을(를) 감지하지 않습니다.",
+ "cleared_tampering": "감지 해제",
+ "detected_device_class": "이(가) {device_class}을(를) 감지했습니다.",
+ "detected_tampering": "진동 감지",
+ "is_closing": "이(가) 닫히는 중입니다.",
+ "is_opening": "이(가) 열리는 중입니다.",
+ "rose": "이(가) 떴습니다.",
+ "set": "이(가) 졌습니다.",
+ "turned_off": "이(가) 꺼졌습니다.",
+ "turned_on": "이(가) 켜졌습니다.",
+ "was_at_home": "이(가) 재실 상태로 감지되었습니다.",
+ "was_at_state": "이(가) {state}(으)로 감지되었습니다.",
+ "was_away": "이(가) 외출 상태로 감지되었습니다.",
+ "was_closed": "이(가) 닫혔습니다.",
+ "was_connected": "이(가) 연결되었습니다.",
+ "was_disconnected": "이(가) 연결이 끊어졌습니다.",
+ "was_locked": "이(가) 잠겼습니다.",
+ "was_low": "이(가) 낮은 상태가 되었습니다.",
+ "was_normal": "이(가) 정상 상태가 되었습니다.",
+ "was_opened": "이(가) 열렸습니다.",
+ "was_plugged_in": "의 플러그가 꼽혔습니다.",
+ "was_safe": "이(가) 안전한 상태가 되었습니다.",
+ "was_unlocked": "이(가) 잠금이 해제되었습니다.",
+ "was_unplugged": "의 플러그가 뽑혔습니다.",
+ "was_unsafe": "이(가) 안전하지 않은 상태가 되었습니다."
+ },
+ "retrieval_error": "로그북 항목 검색 중 오류",
+ "show_trace": "추적 표시하기"
+ },
+ "media-browser": {
+ "audio_not_supported": "브라우저가 오디오를 지원하지 않습니다.",
+ "choose_player": "플레이어 선택하기",
+ "class": {
+ "album": "앨범",
+ "app": "앱",
+ "artist": "아티스트",
+ "channel": "채널",
+ "composer": "작곡가",
+ "contributing_artist": "기여 아티스트",
+ "directory": "라이브러리",
+ "episode": "에피소드",
+ "game": "게임",
+ "genre": "장르",
+ "image": "이미지",
+ "movie": "영화",
+ "music": "음악",
+ "playlist": "재생 목록",
+ "podcast": "팟캐스트",
+ "season": "시즌",
+ "track": "트랙",
+ "tv_show": "TV 쇼",
+ "url": "URL",
+ "video": "비디오"
+ },
+ "documentation": "관련 문서",
+ "learn_adding_local_media": "{documentation}에서 미디어 추가에 대해 자세히 알아보세요.",
+ "local_media_files": "브라우저 또는 지원되는 미디어 플레이어에서 탐색하고 재생할 수 있도록 비디오, 오디오 및 이미지 파일을 미디어 디렉터리에 넣어주세요.",
+ "media-player-browser": "미디어 플레이어 브라우저",
+ "media_browsing_error": "미디어 탐색 오류",
+ "media_not_supported": "브라우저 미디어 플레이어에서 이 유형의 미디어를 지원하지 않습니다",
+ "media_player": "미디어 플레이어",
+ "no_items": "항목 없음",
+ "no_local_media_found": "로컬 미디어를 찾을 수 없습니다",
+ "no_media_folder": "아직 생성된 미디어 디렉터리가 없는 것 같습니다.",
+ "pick": "선택",
+ "pick-media": "미디어 선택",
+ "play": "재생",
+ "play-media": "미디어 재생",
+ "setup_local_help": "로컬 미디어 설정 방법에 대한 {documentation}을(를) 확인해주세요.",
+ "video_not_supported": "브라우저가 비디오를 지원하지 않습니다.",
+ "web-browser": "웹 브라우저"
+ },
+ "picture-upload": {
+ "label": "그림",
+ "unsupported_format": "지원되지 않는 형식입니다. JPEG, PNG 또는 GIF 이미지를 선택해주세요."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "QR코드 값 입력",
+ "manual_input": "다른 QR 스캐너로 QR 코드를 스캔하고 아래 입력창에 코드를 붙여넣을 수 있습니다.",
+ "not_supported": "브라우저가 QR 스캔을 지원하지 않습니다.",
+ "only_https_supported": "HTTPS를 사용할 때만 카메라를 사용하여 QR 코드를 스캔할 수 있습니다.",
+ "select_camera": "카메라 선택"
+ },
+ "related-filter-menu": {
+ "filter": "필터",
+ "filter_by_area": "영역별 필터",
+ "filter_by_device": "기기별 필터",
+ "filter_by_entity": "구성요소별 필터",
+ "filtered_by_area": "영역: {area_name}",
+ "filtered_by_device": "기기: {device_name}",
+ "filtered_by_entity": "구성요소: {entity_name}"
+ },
+ "related-items": {
+ "area": "영역",
+ "automation": "관련된 자동화",
+ "device": "기기",
+ "entity": "관련된 구성요소",
+ "group": "관련된 그룹",
+ "integration": "통합 구성요소",
+ "no_related_found": "관련 항목을 찾을 수 없습니다.",
+ "scene": "관련된 장면",
+ "script": "관련된 스크립트"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\none{일}\nother{일}\n}",
+ "hour": "{count} {count, plural,\none{시간}\nother{시간}\n}",
+ "minute": "{count} {count, plural,\none{분}\nother{분}\n}",
+ "second": "{count} {count, plural,\none{초}\nother{초}\n}",
+ "week": "{count} {count, plural,\none{주}\nother{주}\n}"
+ },
+ "future_duration": {
+ "day": "{count} {count, plural,\n one{일}\n other{일}\n} 후",
+ "hour": "{count} {count, plural,\n one{시간}\n other{시간}\n} 후",
+ "minute": "{count} {count, plural,\n one{분}\n other{분}\n} 후",
+ "second": "{count} {count, plural,\n one{초}\n other{초}\n} 후",
+ "week": "{count} {count, plural,\n one{주}\n other{주}\n} 후"
+ },
+ "just_now": "방금",
+ "never": "해당없음",
+ "past_duration": {
+ "day": "{count} {count, plural,\n one{일}\n other{일}\n} 전",
+ "hour": "{count} {count, plural,\n one{시간}\n other{시간}\n} 전",
+ "minute": "{count} {count, plural,\n one{분}\n other{분}\n} 전",
+ "second": "{count} {count, plural,\n one{초}\n other{초}\n} 전",
+ "week": "{count} {count, plural,\n one{주}\n other{주}\n} 전"
+ }
+ },
+ "service-control": {
+ "integration_doc": "통합구성요소 설명서",
+ "required": "이 입력란은 필수 요소입니다",
+ "service_data": "서비스 데이터",
+ "target": "대상",
+ "target_description": "이 서비스는 대상 영역, 기기 또는 구성요소로 무엇을 사용해야 합니까?"
+ },
+ "service-picker": {
+ "service": "서비스"
+ },
+ "statistic-picker": {
+ "learn_more": "통계에 대해 자세히 알아보기",
+ "missing_entity": "왜 구성요소가 목록에 없나요?",
+ "no_match": "일치하는 통계를 찾을 수 없습니다.",
+ "no_statistics": "통계가 없습니다.",
+ "statistic": "통계"
+ },
+ "statistics_charts": {
+ "loading_statistics": "통계 불러오는 중…",
+ "no_statistics_found": "통계를 찾을 수 없습니다.",
+ "statistic_types": {
+ "max": "최대",
+ "mean": "평균",
+ "min": "최소",
+ "sum": "합계"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "영역 선택하기",
+ "add_device_id": "기기 선택하기",
+ "add_entity_id": "구성요소 선택하기",
+ "expand": "확장하기",
+ "expand_area_id": "이 영역을 포함하는 개별 기기 및 구성요소로 확장합니다. 확장 후에는 영역이 변경될 때 기기 및 구성요소를 업데이트하지 않습니다.",
+ "expand_device_id": "이 기기를 포함하는 개별 구성요소로 확장합니다. 확장 후에는 기기가 변경될 때 구성요소를 업데이트하지 않습니다.",
+ "remove": "제거하기",
+ "remove_area_id": "영역 제거하기",
+ "remove_device_id": "기기 제거하기",
+ "remove_entity_id": "구성요소 제거하기"
+ },
+ "user-picker": {
+ "add_user": "사용자 추가하기",
+ "no_user": "사용자 없음",
+ "remove_user": "사용자 제거하기"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "{integration} 통합 구성요소에서 새롭게 발견된 기기는 자동으로 추가됩니다.",
+ "enable_new_entities_label": "새로 추가된 구성요소를 활성화합니다.",
+ "enable_polling_description": "Home Assistant가 업데이트를 위해 {integration} 구성요소를 자동으로 폴링해야하는 경우.",
+ "enable_polling_label": "업데이트를 위해 폴링을 활성화합니다.",
+ "restart_home_assistant": "변경 사항을 적용하려면 Home Assistant를 다시 시작해야합니다.",
+ "title": "{integration} 시스템 옵션",
+ "update": "업데이트"
+ },
+ "domain_toggler": {
+ "reset_entities": "구성요소 재설정하기",
+ "title": "도메인 토글"
+ },
+ "entity_registry": {
+ "control": "제어하기",
+ "customize_link": "구성요소 사용자화",
+ "dismiss": "해제하기",
+ "editor": {
+ "advanced": "고급 설정",
+ "area": "구성 요소 영역만 설정하기",
+ "area_note": "기본적으로 기기의 구성요소는 기기와 동일한 영역에 있습니다. 이 구성요소의 영역을 변경하면 더 이상 기기의 영역을 따르지 않습니다.",
+ "change_device_area": "기기 영역 변경하기",
+ "confirm_delete": "이 구성요소를 제거하시겠습니까?",
+ "delete": "삭제하기",
+ "device_class": "표시방법",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "문",
+ "garage_door": "차고 문",
+ "opening": "기타",
+ "window": "창문"
+ },
+ "cover": {
+ "door": "문",
+ "garage": "차고 문",
+ "window": "창문"
+ }
+ },
+ "device_disabled": "이 구성요소의 기기가 비활성화되었습니다.",
+ "enabled_cause": "{cause}에 의해 비활성화되었습니다.",
+ "enabled_delay_confirm": "활성화된 구성요소는 {delay}초 후에 Home Assistant에 추가됩니다",
+ "enabled_description": "비활성화된 구성요소는 Home Assistant에 추가되지 않습니다.",
+ "enabled_label": "구성요소 활성화",
+ "enabled_restart_confirm": "구성요소를 활성화하려면 Home Assistant를 다시 시작해주세요",
+ "entity_id": "구성요소 ID",
+ "follow_device_area": "기기 영역 따르기",
+ "icon": "아이콘",
+ "icon_error": "아이콘은 접두사:아이콘이름 형식이어야 합니다. 예: mdi:home",
+ "name": "이름",
+ "note": "참고: 모든 통합 구성요소에서 아직 작동하지 않을 수 있습니다.",
+ "open_device_settings": "기기 설정 열기",
+ "unavailable": "이 구성요소는 현재 사용할 수 없습니다.",
+ "update": "업데이트"
+ },
+ "faq": "관련 문서",
+ "info_customize": "{customize_link} 섹션에서 일부 속성을 재정의 할 수 있습니다.",
+ "no_unique_id": "이 구성요소 (\"{entity_id}\")은(는) 고유한 ID가 없으므로 UI에서 구성 내용을 관리할 수 없습니다. 자세한 내용은 {faq_link}을(를) 참조해주세요.",
+ "related": "관련 내용",
+ "settings": "설정 내용"
+ },
+ "generic": {
+ "cancel": "취소",
+ "close": "닫기",
+ "default_confirmation_title": "다시 한번 확인해주세요",
+ "ok": "확인"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "초깃값",
+ "maximum": "최댓값",
+ "minimum": "최솟값",
+ "restore": "Home Assistant가 시작될 때 최근 값으로 복원",
+ "step": "계수 간격"
+ },
+ "generic": {
+ "icon": "아이콘",
+ "name": "이름"
+ },
+ "input_datetime": {
+ "date": "날짜",
+ "datetime": "날짜와 시간",
+ "mode": "입력할 내용",
+ "time": "시간"
+ },
+ "input_number": {
+ "box": "입력란",
+ "max": "최댓값",
+ "min": "최솟값",
+ "mode": "디스플레이 모드",
+ "slider": "슬라이더",
+ "step": "슬라이더 간격",
+ "unit_of_measurement": "측정 단위"
+ },
+ "input_select": {
+ "add": "추가하기",
+ "add_option": "옵션 추가하기",
+ "no_options": "아직 옵션이 없습니다.",
+ "options": "옵션"
+ },
+ "input_text": {
+ "max": "최대 길이",
+ "min": "최소 길이",
+ "mode": "디스플레이 모드",
+ "password": "비밀번호",
+ "pattern": "클라이언트 측 검증을 위한 정규표현식",
+ "text": "텍스트"
+ },
+ "platform_not_loaded": "{platform} 통합 구성요소가 로드되지 않았습니다. 'default_config:' 또는 \"{platform}:\"을 configuration.yaml에 추가해주세요.",
+ "required_error_msg": "이 입력란은 필수 요소입니다",
+ "timer": {
+ "duration": "기간"
+ },
+ "yaml_not_editable": "이 구성요소의 설정은 UI에서 편집할 수 없습니다. UI에서 설정한 구성요소만 UI에서 구성할 수 있습니다."
+ },
+ "image_cropper": {
+ "crop": "자르기"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "닫기",
+ "close_tile_cover": "닫기",
+ "close_tilt_cover": "닫기",
+ "open_cover": "열기",
+ "open_tilt_cover": "열기",
+ "stop_cover": "멈추기"
+ },
+ "details": "세부 정보",
+ "dismiss": "대화창 닫기",
+ "edit": "구성요소 편집하기",
+ "history": "기록 내용",
+ "last_changed": "최근 변경 됨",
+ "last_updated": "최근 업데이트 됨",
+ "logbook": "로그북",
+ "person": {
+ "create_zone": "현재 위치로 지역 만들기"
+ },
+ "remote": {
+ "activity": "현재 활동"
+ },
+ "restored": {
+ "confirm_remove_text": "이 구성요소를 제거하시겠습니까?",
+ "confirm_remove_title": "구성요소를 제거하시겠습니까?",
+ "not_provided": "이 구성요소는 현재 사용할 수 없습니다. 기기의 남겨진 잔여 데이터 이거나 제거, 변경 또는 기능 장애가 있는 통합 구성요소일 수 있습니다.",
+ "remove_action": "구성요소 제거하기",
+ "remove_intro": "구성요소를 더 이상 사용하지 않는 경우, 이를 제거하여 정리할 수 있습니다."
+ },
+ "script": {
+ "last_action": "최근 동작",
+ "last_triggered": "최근 트리거 됨"
+ },
+ "settings": "구성요소 설정내용",
+ "show_more": "더 보기",
+ "sun": {
+ "elevation": "고도",
+ "rising": "해돋이",
+ "setting": "해넘이"
+ },
+ "updater": {
+ "title": "업데이트 방법"
+ },
+ "vacuum": {
+ "clean_spot": "부분 청소",
+ "commands": "청소기 조작 명령:",
+ "fan_speed": "팬 속도",
+ "locate": "위치 이동",
+ "pause": "일시정지",
+ "return_home": "충전 복귀",
+ "start": "시작",
+ "start_pause": "시작 / 일시정지",
+ "status": "상태",
+ "stop": "중지하기"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "MQTT 메시지를 JSON 으로 구문 분석하기",
+ "entities": "구성요소",
+ "no_entities": "구성요소가 없습니다",
+ "no_triggers": "트리거가 없습니다",
+ "payload_display": "페이로드 표시",
+ "recent_messages": "{n}개의 최근 수신 메시지",
+ "show_as_yaml": "YAML로 표시하기",
+ "title": "{device} 디버그 정보",
+ "triggers": "트리거"
+ },
+ "options_flow": {
+ "form": {
+ "header": "옵션"
+ },
+ "loading": {
+ "loading_flow": "{integration} 옵션이 준비되는 동안 잠시 기다려 주십시오.",
+ "loading_step": "{integration} 다음 단계 로드 중"
+ },
+ "success": {
+ "description": "옵션이 성공적으로 저장되었습니다."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "영역",
+ "automation": "자동화",
+ "blueprint": "블루프린트",
+ "core": "일반",
+ "customize": "사용자화",
+ "devices": "기기",
+ "energy": "에너지",
+ "entities": "구성요소",
+ "helpers": "도우미",
+ "info": "정보",
+ "integrations": "통합 구성요소",
+ "logs": "로그",
+ "lovelace": "Lovelace 대시보드",
+ "person": "구성원",
+ "scene": "장면",
+ "script": "스크립트",
+ "server_control": "서버 제어",
+ "tag": "태그",
+ "users": "사용자",
+ "zone": "지역"
+ },
+ "reload": {
+ "automation": "자동화",
+ "command_line": "명령줄 구성요소",
+ "core": "위치 및 사용자화",
+ "filesize": "파일 크기 구성요소",
+ "filter": "필터 구성요소",
+ "generic": "일반 IP 카메라 구성요소",
+ "generic_thermostat": "일반 온도 조절기 구성요소",
+ "group": "그룹, 그룹 구성요소 및 알림 서비스",
+ "history_stats": "기록 통계 구성요소",
+ "homekit": "HomeKit",
+ "input_boolean": "논리 입력",
+ "input_datetime": "날짜/시간 입력",
+ "input_number": "숫자 입력",
+ "input_select": "선택 입력",
+ "input_text": "문자 입력",
+ "min_max": "최소/최대 구성요소",
+ "mqtt": "직접 구성한 MQTT 구성요소",
+ "person": "구성원",
+ "ping": "Ping 이진 센서 구성요소",
+ "reload": "{domain}",
+ "rest": "REST 구성요소 및 알림 서비스",
+ "rpi_gpio": "Raspberry Pi GPIO 구성요소",
+ "scene": "장면",
+ "script": "스크립트",
+ "smtp": "SMTP 알림 서비스",
+ "statistics": "통계 구성요소",
+ "telegram": "Telegram 알림 서비스",
+ "template": "템플릿 구성요소",
+ "themes": "테마",
+ "trend": "추세 구성요소",
+ "universal": "범용 미디어 플레이어 구성요소",
+ "zone": "지역"
+ },
+ "server_control": {
+ "perform_action": "서버 {action}",
+ "restart": "다시 시작하기",
+ "stop": "중지하기"
+ },
+ "types": {
+ "navigation": "이동하기",
+ "reload": "다시 읽어오기",
+ "server_control": "서버 제어하기"
+ }
+ },
+ "filter_placeholder": "구성요소 필터",
+ "key_c_hint": "이 검색 창을 열려면 아무 페이지에서나 'c'를 누르세요.",
+ "title": "빠른 검색"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant가 아무 소리도 듣지 못했습니다",
+ "error": "이런, 오류가 발생했습니다",
+ "found": "다음을 찾았습니다:",
+ "how_can_i_help": "무엇을 도와드릴까요?",
+ "label": "질문을 입력하고 'Enter'를 눌러주세요",
+ "label_voice": "질문을 입력하고 'Enter'를 누르거나 마이크를 탭하여 말씀해보세요"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "이 기기를 통해 하위 기기 추가하기",
+ "clusters": "클러스터 관리",
+ "device_children": "하위 기기 보기",
+ "reconfigure": "기기 재구성하기",
+ "remove": "기기 제거하기",
+ "view_in_visualization": "시각화에서보기",
+ "zigbee_information": "Zigbee 기기 서명"
+ },
+ "confirmations": {
+ "remove": "이 기기를 제거하시겠습니까?"
+ },
+ "device_children": "Zigbee 하위 기기",
+ "device_signature": "Zigbee 기기 서명",
+ "last_seen": "마지막 확인",
+ "manuf": "{manufacturer} 제조",
+ "no_area": "영역 없음",
+ "power_source": "전원",
+ "quirk": "규격외 사양 표준화(Quirk)",
+ "services": {
+ "reconfigure": "ZHA 기기를 다시 구성 합니다. (기기 복구). 기기에 문제가 있는 경우 사용해주세요. 기기가 배터리로 작동하는 경우, 이 서비스를 사용할 때 기기가 켜져있고 통신이 가능한 상태인지 확인해주세요.",
+ "remove": "Zigbee 네트워크에서 기기를 제거해주세요.",
+ "updateDeviceName": "이 기기의 사용자 정의 이름을 기기 레지스트리에 설정합니다.",
+ "zigbee_information": "기기에 대한 Zigbee 정보 보기."
+ },
+ "unknown": "알 수 없음",
+ "zha_device_card": {
+ "device_name_placeholder": "기기 이름 변경"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "속성",
+ "battery_device_warning": "재구성하기 전에 배터리를 사용하는 기기의 절전 모드를 해제해야 합니다. 절전 모드를 해제하는 방법은 기기 설명서를 참조하십시오.",
+ "bind_header": "묶기",
+ "button_hide": "세부 정보 숨기기",
+ "button_show": "세부 정보 표시",
+ "cluster_header": "클러스터",
+ "configuration_complete": "기기 재구성이 완료되었습니다.",
+ "configuration_failed": "기기 재구성에 실패했습니다. 로그에서 정보를 확인할 수 있습니다.",
+ "configuring_alt": "구성",
+ "heading": "기기 재구성 중",
+ "in_progress": "기기가 재구성 중입니다. 시간이 좀 걸릴 수 있습니다.",
+ "introduction": "Zigbee 네트워크에서 기기를 재구성합니다. 기기가 올바르게 작동하지 않는 경우에 이 기능을 사용하십시오.",
+ "min_max_change": "최소/최대/변경",
+ "reporting_header": "보고",
+ "run_in_background": "이 대화 상자를 닫을 수 있으며 재구성은 백그라운드에서 계속됩니다.",
+ "start_reconfiguration": "재구성 시작"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\none{일}\nother{일}\n}",
+ "hour": "{count} {count, plural,\none{시간}\nother{시간}\n}",
+ "minute": "{count} {count, plural,\none{분}\nother{분}\n}",
+ "second": "{count} {count, plural,\none{초}\nother{초}\n}",
+ "week": "{count} {count, plural,\none{주}\nother{주}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "YAML에서도 구성을 편집할 수 있습니다.",
+ "editor_not_available": "\"{type}\" 유형에 사용할 수 있는 비주얼 편집기가 없습니다.",
+ "editor_not_supported": "이 구성에 대해 비주얼 편집기가 지원되지 않습니다.",
+ "error_detected": "구성 내용에 오류가 감지되었습니다",
+ "key_missing": "필수 키 \"{key}\"이(가) 없습니다.",
+ "key_not_expected": "비주얼 편집기에서 \"{key}\" 키는 적절하지 않거나 지원되지 않습니다.",
+ "key_wrong_type": "\"{key}\"에 제공된 값은 비주얼 편집기에서 지원되지 않습니다. ({type_correct})을(를) 지원하지만 ({type_wrong})을(를) 받았습니다.",
+ "no_state_array_support": "다수의 상태값은 비주얼 편집기에서 지원되지 않습니다",
+ "no_template_editor_support": "비주얼 편집기에서 템플릿이 지원되지 않습니다",
+ "no_type_provided": "유형이 제공되지 않았습니다."
+ },
+ "supervisor": {
+ "ask": "문의하기",
+ "observer": "Observer 확인하기",
+ "reboot": "호스트 재부팅 시도하기",
+ "system_health": "시스템 상태 확인하기",
+ "title": "Supervisor 패널을 불러올 수 없습니다!",
+ "wait": "방금 시작한 경우 Supervisor가 완전히 시작되기까지 잠시 기다려주세요."
+ }
+ },
+ "login-form": {
+ "log_in": "로그인",
+ "password": "비밀번호",
+ "remember": "자동로그인"
+ },
+ "notification_drawer": {
+ "click_to_configure": "버튼을 클릭하여 {entity}을(를) 구성",
+ "close": "닫기",
+ "dismiss_all": "모두 해제하기",
+ "empty": "알림 내용이 없습니다.",
+ "title": "알림"
+ },
+ "notification_toast": {
+ "connection_lost": "서버와 연결이 끊어졌습니다. 다시 연결하는 중...",
+ "dismiss": "해제하기",
+ "integration_starting": "{integration}을(를) 시작하는 중입니다. 완료될 때까지 일부 기능은 작동하지 않을 수 있습니다.",
+ "service_call_failed": "{service} 서비스를 호출하지 못했습니다.",
+ "started": "Home Assistant가 시작되었습니다!",
+ "starting": "Home Assistant가 시작됩니다. 완료될 때까지 일부 기능은 작동하지 않을 수 있습니다.",
+ "triggered": "{name}이(가) 트리거됨",
+ "wrapping_up_startup": "시작을 마무리하는 중입니다. 완료될 때까지 일부 기능은 작동하지 않을 수 있습니다."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "구성 옵션이 보이지 않으신가요? 사용자 프로필 페이지에서 고급 모드를 활성화해보세요",
+ "link_profile_page": "프로필 페이지"
+ },
+ "areas": {
+ "add_picture": "사진 추가",
+ "assigned_to_area": "이 영역에 할당됨",
+ "caption": "영역",
+ "data_table": {
+ "area": "영역",
+ "devices": "기기",
+ "entities": "구성요소"
+ },
+ "delete": {
+ "confirmation_text": "이 영역에 속한 모든 기기가 할당 해제됩니다.",
+ "confirmation_title": "이 영역을 삭제하시겠습니까?"
+ },
+ "description": "기기와 구성요소를 영역으로 그룹화합니다",
+ "edit_settings": "영역 설정",
+ "editor": {
+ "area_id": "영역 ID",
+ "create": "만들기",
+ "default_name": "새로운 영역",
+ "delete": "삭제하기",
+ "linked_entities_caption": "구성요소",
+ "name": "이름",
+ "name_required": "이름은 필수 요소입니다",
+ "no_linked_entities": "이 영역에 등록된 구성요소가 없습니다.",
+ "unknown_error": "알 수 없는 오류",
+ "update": "업데이트"
+ },
+ "picker": {
+ "create_area": "영역 만들기",
+ "header": "영역",
+ "integrations_page": "통합 구성요소 페이지",
+ "introduction": "영역은 기기가 있는 위치를 설정하는데 사용합니다. 이 정보는 인터페이스와 권한 그리고 다른 시스템과의 연동을 구성하는 데 도움이 되도록 Home Assistant에 사용됩니다.",
+ "introduction2": "특정 영역에 기기를 배치하려면 아래 링크를 따라 통합 구성요소 페이지로 이동 한 다음 구성된 통합 구성요소를 클릭하여 기기 카드로 이동해주세요.",
+ "no_areas": "등록된 영역이 없습니다. 거실, 침실과 같이 영역을 등록해보세요!"
+ },
+ "targeting_area": "이 영역을 대상으로 함"
+ },
+ "automation": {
+ "caption": "자동화",
+ "description": "집에 대한 사용자 지정 동작 규칙을 만들고 관리합니다",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "블루프린트 사용하기"
+ },
+ "header": "새로운 자동화 만들기",
+ "how": "새로운 자동화를 어떻게 만드시겠습니까?",
+ "start_empty": "빈 자동화로 시작하기",
+ "start_empty_description": "새로운 자동화 처음부터 만들기",
+ "thingtalk": {
+ "create": "만들기",
+ "header": "만들려는 자동화에 대해 알려주세요",
+ "input_label": "이 자동화로 무엇을 하시겠습니까?",
+ "intro": "그러면 알맞은 자동화를 만들어 드리겠습니다. 예: Turn the lights off when I leave."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "동작 추가하기",
+ "delete": "삭제하기",
+ "delete_confirm": "정말 삭제하시겠습니까?",
+ "duplicate": "복제하기",
+ "header": "동작",
+ "introduction": "동작은 자동화가 트리거 될 때 Home Assistant가 수행할 작업입니다.",
+ "learn_more": "동작에 대해 더 알아보기",
+ "name": "동작",
+ "type": {
+ "choose": {
+ "add_option": "옵션 추가하기",
+ "conditions": "조건",
+ "default": "기본 동작",
+ "label": "선택",
+ "option": "옵션 {number}",
+ "remove_option": "옵션 제거하기",
+ "sequence": "동작"
+ },
+ "condition": {
+ "label": "조건"
+ },
+ "delay": {
+ "delay": "지연",
+ "label": "지연"
+ },
+ "device_id": {
+ "action": "동작",
+ "extra_fields": {
+ "brightness_pct": "밝기",
+ "code": "코드",
+ "flash": "플래시",
+ "humidity": "습도",
+ "message": "메시지",
+ "mode": "모드",
+ "position": "위치",
+ "title": "제목",
+ "value": "값"
+ },
+ "label": "기기"
+ },
+ "event": {
+ "event": "이벤트:",
+ "label": "이벤트 발행",
+ "service_data": "서비스 데이터"
+ },
+ "repeat": {
+ "label": "반복",
+ "sequence": "동작",
+ "type": {
+ "count": {
+ "label": "횟수"
+ },
+ "until": {
+ "conditions": "~일 때 까지 조건",
+ "label": "~일 때 까지"
+ },
+ "while": {
+ "conditions": "~인 동안 조건",
+ "label": "~인 동안"
+ }
+ },
+ "type_select": "반복 유형"
+ },
+ "scene": {
+ "label": "장면 활성화"
+ },
+ "service": {
+ "label": "서비스 호출"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "제한 시간 이후 계속 진행",
+ "label": "트리거 대기",
+ "timeout": "제한 시간 (선택 사항)"
+ },
+ "wait_template": {
+ "continue_timeout": "제한 시간 이후 계속 진행",
+ "label": "대기",
+ "timeout": "제한 시간 (선택 사항)",
+ "wait_template": "대기 템플릿"
+ }
+ },
+ "type_select": "동작 유형",
+ "unsupported_action": "비주얼 편집기에서 지원하지 않는 동작입니다: {action}"
+ },
+ "alias": "이름",
+ "blueprint": {
+ "blueprint_to_use": "사용할 블루프린트",
+ "header": "블루프린트",
+ "no_blueprints": "블루프린트가 존재하지 않습니다",
+ "no_inputs": "이 블루프린트에는 입력이 없습니다."
+ },
+ "conditions": {
+ "add": "조건 추가하기",
+ "delete": "삭제하기",
+ "delete_confirm": "정말 삭제하시겠습니까?",
+ "duplicate": "복제하기",
+ "header": "조건",
+ "introduction": "조건은 선택 사항이며 자동화가 트리거 될 때 설정된 모든 조건이 충족되지 않으면 동작되지 않도록 할 수 있습니다.",
+ "learn_more": "조건에 대해 더 알아보기",
+ "name": "조건",
+ "type": {
+ "and": {
+ "label": "다중조건 (And)"
+ },
+ "device": {
+ "condition": "조건",
+ "extra_fields": {
+ "above": "이상",
+ "below": "이하",
+ "for": "동안",
+ "hvac_mode": "공조 모드",
+ "preset_mode": "프리셋 모드"
+ },
+ "label": "기기"
+ },
+ "not": {
+ "label": "다중조건 (Not)"
+ },
+ "numeric_state": {
+ "above": "이상",
+ "below": "이하",
+ "label": "수치 상태",
+ "value_template": "값 템플릿 (선택 사항)"
+ },
+ "or": {
+ "label": "다중조건 (Or)"
+ },
+ "state": {
+ "label": "상태",
+ "state": "상태"
+ },
+ "sun": {
+ "after": "이후:",
+ "after_offset": "이후 오프셋 (선택 사항)",
+ "before": "이전:",
+ "before_offset": "이전 오프셋 (선택 사항)",
+ "label": "태양",
+ "sunrise": "해돋이",
+ "sunset": "해넘이"
+ },
+ "template": {
+ "label": "템플릿",
+ "value_template": "값 템플릿"
+ },
+ "time": {
+ "after": "이후",
+ "before": "이전",
+ "label": "시간",
+ "type_input": "날짜 / 시간 입력 도우미 값",
+ "type_value": "정해진 시간",
+ "weekdays": {
+ "fri": "금요일",
+ "mon": "월요일",
+ "sat": "토요일",
+ "sun": "일요일",
+ "thu": "목요일",
+ "tue": "화요일",
+ "wed": "수요일"
+ }
+ },
+ "trigger": {
+ "id": "트리거 ID",
+ "label": "트리거",
+ "no_triggers": "사용 가능한 트리거 없음"
+ },
+ "zone": {
+ "entity": "위치기반 구성요소",
+ "label": "지역",
+ "zone": "지역"
+ }
+ },
+ "type_select": "조건 유형",
+ "unsupported_condition": "비주얼 편집기에서 지원하지 않는 조건입니다: {condition}"
+ },
+ "copy_to_clipboard": "클립보드에 복사",
+ "default_name": "새로운 자동화",
+ "description": {
+ "label": "설명",
+ "placeholder": "부가 설명"
+ },
+ "edit_ui": "비주얼 편집기로 편집하기",
+ "edit_yaml": "YAML로 편집하기",
+ "enable_disable": "자동화 활성화 / 비활성화",
+ "introduction": "자동화를 사용하여 집에 활기를 불어넣어 보세요.",
+ "load_error_not_editable": "automations.yaml 의 자동화만 편집할 수 있습니다.",
+ "load_error_unknown": "자동화를 읽어오는 도중 오류가 발생했습니다 ({err_no}).",
+ "max": {
+ "parallel": "최대 병렬 실행 수",
+ "queued": "최대 대기열 길이"
+ },
+ "modes": {
+ "description": "모드는 자동화가 이전 트리거에서 동작이 실행되는 동안 트리거될 때 실행되는 작업을 제어합니다. 자세한 내용은 {documentation_link}을(를) 확인해주세요.",
+ "documentation": "자동화 문서",
+ "label": "모드",
+ "parallel": "병렬",
+ "queued": "대기열",
+ "restart": "다시 시작하기",
+ "single": "단일 (기본값)"
+ },
+ "move_down": "아래로 이동",
+ "move_up": "위로 이동",
+ "save": "저장하기",
+ "show_trace": "추적 표시하기",
+ "triggers": {
+ "add": "트리거 추가하기",
+ "delete": "삭제하기",
+ "delete_confirm": "정말 삭제하시겠습니까?",
+ "duplicate": "복제하기",
+ "edit_id": "트리거 ID 수정",
+ "header": "트리거",
+ "id": "트리거 ID(트리거 조건에서 사용)",
+ "introduction": "트리거는 자동화 규칙을 처리하는 시작점입니다. 같은 자동화 규칙에 여러 개의 트리거를 지정할 수 있습니다. 트리거가 발동되면 Home Assistant는 조건을 확인하고 동작을 호출합니다.",
+ "learn_more": "트리거에 대해 더 알아보기",
+ "name": "트리거",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "이상",
+ "below": "이하",
+ "for": "동안",
+ "zone": "지역"
+ },
+ "label": "기기",
+ "trigger": "트리거"
+ },
+ "event": {
+ "context_user_pick": "사용자 선택",
+ "context_user_picked": "사용자 발행 이벤트",
+ "context_users": "다음 사용자에 의해 트리거된 이벤트로 제한",
+ "event_data": "이벤트 데이터",
+ "event_type": "이벤트 유형",
+ "label": "이벤트"
+ },
+ "geo_location": {
+ "enter": "입장",
+ "event": "이벤트:",
+ "label": "위치정보",
+ "leave": "퇴장",
+ "source": "소스",
+ "zone": "지역"
+ },
+ "homeassistant": {
+ "event": "이벤트:",
+ "label": "Home Assistant",
+ "shutdown": "종료",
+ "start": "시작"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "페이로드 (선택 사항)",
+ "topic": "토픽"
+ },
+ "numeric_state": {
+ "above": "이상",
+ "below": "이하",
+ "label": "수치 상태",
+ "value_template": "값 템플릿 (선택 사항)"
+ },
+ "state": {
+ "attribute": "속성 (선택 사항)",
+ "for": "경과 시간",
+ "from": "이전",
+ "label": "상태",
+ "to": "이후"
+ },
+ "sun": {
+ "event": "이벤트:",
+ "label": "태양",
+ "offset": "오프셋 (선택 사항)",
+ "sunrise": "해돋이",
+ "sunset": "해넘이"
+ },
+ "tag": {
+ "label": "태그"
+ },
+ "template": {
+ "label": "템플릿",
+ "value_template": "값 템플릿"
+ },
+ "time": {
+ "at": "시각",
+ "label": "시간",
+ "type_input": "날짜 / 시간 입력 도우미 값",
+ "type_value": "정해진 시간"
+ },
+ "time_pattern": {
+ "hours": "시",
+ "label": "시간 패턴",
+ "minutes": "분",
+ "seconds": "초"
+ },
+ "webhook": {
+ "label": "웹 훅",
+ "webhook_id": "웹 훅 ID"
+ },
+ "zone": {
+ "enter": "입장",
+ "entity": "위치기반 구성요소",
+ "event": "이벤트:",
+ "label": "지역",
+ "leave": "퇴장",
+ "zone": "지역"
+ }
+ },
+ "type_select": "트리거 유형",
+ "unsupported_platform": "비주얼 편집기에서 지원하지 않는 플랫폼입니다: {platform}"
+ },
+ "unsaved_confirm": "변경된 내용을 저장하지 않았습니다. 정말 이 페이지를 떠나시겠습니까?"
+ },
+ "picker": {
+ "add_automation": "자동화 추가하기",
+ "delete_automation": "자동화 삭제하기",
+ "delete_confirm": "이 자동화를 삭제하시겠습니까?",
+ "dev_automation": "자동화 디버그하기",
+ "dev_only_editable": "automations.yaml에 정의된 자동화 만 디버깅할 수 있습니다.",
+ "duplicate": "복제하기",
+ "duplicate_automation": "자동화 복제하기",
+ "edit_automation": "자동화 편집하기",
+ "header": "자동화 편집기",
+ "headers": {
+ "name": "이름"
+ },
+ "introduction": "자동화 편집기를 사용하여 자동화를 작성하고 편집할 수 있습니다. 아래 링크를 따라 안내사항을 읽고 Home Assistant를 올바르게 구성했는지 확인해보세요.",
+ "learn_more": "자동화에 대해 더 알아보기",
+ "no_automations": "자동화를 찾을 수 없습니다",
+ "only_editable": "automations.yaml에 정의된 자동화 만 편집할 수 있습니다.",
+ "pick_automation": "편집할 자동화 선택",
+ "show_info_automation": "자동화에 대한 정보 표시하기"
+ },
+ "thingtalk": {
+ "create": "자동화 만들기",
+ "link_devices": {
+ "ambiguous_entities": "하나 이상의 기기에 둘 이상의 일치하는 구성요소가 있습니다. 사용할 구성요소를 선택해주세요.",
+ "header": "좋습니다! 이제 몇 가지 기기를 연결해주세요",
+ "unknown_placeholder": "알 수 없는 자리 표시자"
+ },
+ "task_selection": {
+ "error_empty": "명령을 입력하거나 건너뛰기를 탭하세요.",
+ "error_unsupported": "이를 위한 자동화를 만들 수 없습니다. (아직 지원되지 않습니다)",
+ "for_example": "예:",
+ "header": "새로운 자동화 만들기",
+ "introduction": "이 자동화가 수행할 작업을 아래에 입력하면 Home Assistant 자동화로 변환됩니다.",
+ "language_note": "참고: 아직 영어만 지원됩니다."
+ }
+ },
+ "trace": {
+ "download_trace": "추적 다운로드",
+ "edit_automation": "자동화 편집하기",
+ "newer_trace": "최신 추적",
+ "older_trace": "이전 추적",
+ "refresh": "새로고침"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "커뮤니티 포럼",
+ "error_no_url": "블루프린트의 URL을 입력해주세요.",
+ "file_name": "블루프린트 경로",
+ "header": "블루프린트 가져오기",
+ "import_btn": "블루프린트 미리보기",
+ "import_header": "\"{name}\" 블루프린트",
+ "import_introduction_link": "Github 및 {community_link}에서 다른 사용자의 블루프린트를 가져올 수 있습니다. 블루프린트의 URL을 하단의 입력란에 입력해주세요.",
+ "importing": "블루프린트를 읽는 중 ...",
+ "raw_blueprint": "블루프린트 내용",
+ "save_btn": "블루프린트 가져오기",
+ "saving": "블루프린트 가져오는 중 …",
+ "unsupported_blueprint": "이 블루프린트는 지원되지 않습니다.",
+ "url": "블루프린트의 URL"
+ },
+ "caption": "블루프린트",
+ "description": "블루프린트를 관리합니다",
+ "overview": {
+ "add_blueprint": "블루프린트 가져오기",
+ "confirm_delete_header": "이 블루프린트를 삭제하시겠습니까?",
+ "confirm_delete_text": "이 블루프린트를 삭제하시겠습니까?",
+ "create_automation": "자동화 만들기",
+ "create_script": "스크립트 만들기",
+ "delete_blueprint": "블루프린트 삭제하기",
+ "discover_more": "더 많은 블루프린트를 찾아보기",
+ "header": "블루프린트 편집기",
+ "headers": {
+ "domain": "도메인",
+ "file_name": "파일 이름",
+ "name": "이름",
+ "type": "유형"
+ },
+ "introduction": "블루프린트 구성을 사용하면 블루프린트를 가져오고 관리할 수 있습니다.",
+ "learn_more": "블루프린트 사용에 대해 더 알아보기",
+ "share_blueprint": "블루프린트 공유하기",
+ "share_blueprint_no_url": "블루프린트를 공유할 수 없습니다: 소스 URL이 없습니다",
+ "types": {
+ "automation": "자동화",
+ "script": "스크립트"
+ },
+ "use_blueprint": "자동화 만들기"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "구성 문서",
+ "disable": "비활성화",
+ "enable": "활성화",
+ "enable_ha_skill": "Alexa에 Home Assistant 스킬 사용하기",
+ "enable_state_reporting": "상태 보고 활성화",
+ "info": "Home Assistant Cloud의 Alexa 연동 기능으로 Alexa가 지원하는 기기로서 Home Assistant 기기를 제어할 수 있습니다.",
+ "info_state_reporting": "상태 보고를 활성화하면 Home Assistant는 노출된 구성요소의 모든 상태 변경 사항을 Amazon에 보냅니다. 이를 통해 Alexa 앱에서 언제든지 구성요소의 최신 상태를 확인할 수 있으며, 상태 변경을 사용하여 루틴을 만들 수 있습니다.",
+ "manage_entities": "구성요소 관리",
+ "state_reporting_error": "상태 보고를 {enable_disable}할 수 없습니다.",
+ "sync_entities": "구성요소를 Amazon에 동기화",
+ "sync_entities_error": "구성요소 동기화를 하지 못했습니다:",
+ "title": "Alexa"
+ },
+ "connected": "연결됨",
+ "connecting": "연결 중 …",
+ "connection_status": "클라우드 연결 상태",
+ "fetching_subscription": "구독 정보를 가져오는 중…",
+ "google": {
+ "config_documentation": "구성 문서",
+ "devices_pin": "보안 기기 PIN",
+ "enable_ha_skill": "Google Assistant에 Home Assistant 스킬 사용하기",
+ "enable_state_reporting": "상태 보고 활성화",
+ "enter_pin_error": "PIN을 저장할 수 없습니다:",
+ "enter_pin_hint": "보안 기기 사용 PIN 입력",
+ "enter_pin_info": "보안 기기를 제어하기 위한 PIN을 설정해주세요. 보안 기기는 현관문, 차고 문, 도어록과 같은 기기입니다. Google Assistant를 통해 이러한 기기를 제어할 때 PIN을 입력하거나 말씀해주셔야 합니다.",
+ "info": "Home Assistant Cloud의 Google Assistant 연동 기능으로 Google Assistant가 지원하는 기기로서 Home Assistant 기기를 제어할 수 있습니다.",
+ "info_state_reporting": "상태 보고를 활성화하면 Home Assistant는 노출된 구성요소의 모든 상태 변경 사항을 Google에 보냅니다. 이를 통해 Google 앱에서 언제든지 구성요소의 최신 상태를 확인할 수 있습니다.",
+ "manage_entities": "구성요소 관리",
+ "not_configured_text": "Google Assistant를 사용하려면 먼저 Google Assistant에 대한 Home Assistant Cloud 서비스를 Google Home 앱에서 연결해야 합니다.",
+ "not_configured_title": "Google Assistant가 연결되지 않았습니다",
+ "security_devices": "보안 기기",
+ "sync_entities": "구성요소를 Google에 동기화",
+ "sync_entities_404_message": "구성요소를 Google과 동기화하지 못했습니다. Google에 'Hey Google, 기기 동기화해줘' 라고 말씀하셔서 구성요소를 동기화해주세요.",
+ "title": "Google Assistant"
+ },
+ "integrations": "서비스 연동",
+ "integrations_introduction": "Home Assistant Cloud에 연동하면 Home Assistant 인스턴스를 인터넷에 공개적으로 노출하지 않고도 클라우드를 통해 서비스에 연결할 수 있습니다.",
+ "integrations_introduction2": "웹사이트를 방문하여 다음을 확인해보세요. ",
+ "integrations_link_all_features": "사용 가능한 모든 기능",
+ "manage_account": "계정 관리",
+ "nabu_casa_account": "Nabu Casa 계정",
+ "not_connected": "연결되지 않음",
+ "remote": {
+ "access_is_being_prepared": "원격 접속이 준비 중입니다. 준비가 되면 알려드리겠습니다.",
+ "certificate_info": "인증서 정보",
+ "connected": "연결됨",
+ "info": "Home Assistant Cloud는 집 밖에서도 구성요소에 대한 안전한 원격 연결을 제공해드립니다.",
+ "instance_is_available": "구성요소는 다음의 주소에서 사용할 수 있습니다.",
+ "instance_will_be_available": "토글을 활성화하여 다음의 주소에서 구성요소를 사용해보세요.",
+ "link_learn_how_it_works": "작동 방식에 대해 알아보기",
+ "not_connected": "연결되지 않음",
+ "reconnecting": "재연결",
+ "remote_enabled": {
+ "caption": "자동 연결",
+ "description": "이 옵션을 활성화하면 Home Assistant 인스턴스에 항상 원격으로 액세스 할 수 있습니다."
+ },
+ "title": "원격 제어"
+ },
+ "sign_out": "로그 아웃",
+ "thank_you_note": "Home Assistant Cloud를 이용해주셔서 감사합니다. 여러분 덕분에 저희는 모든 분들에게 더 나은 홈 자동화를 제공해드릴 수 있습니다. 감사합니다!",
+ "tts": {
+ "default_language": "사용할 기본 언어",
+ "dialog": {
+ "create_automation": "자동화 만들기",
+ "example_message": "안녕하세요, {name}님. 지원되는 모든 미디어 플레이어에서 텍스트를 재생할 수 있습니다!",
+ "header": "텍스트 음성 변환 사용해보기",
+ "play": "재생",
+ "target": "대상",
+ "target_browser": "브라우저"
+ },
+ "female": "여성",
+ "info": "텍스트 음성 변환 서비스를 이용하여 여러분의 집에 개성을 불어넣어보세요. 이 기능은 {service} 서비스를 사용하여 자동화 및 스크립트에서 사용할 수 있습니다.",
+ "male": "남성",
+ "title": "텍스트 음성 변환",
+ "try": "사용해보기"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "웹 훅을 비활성화하지 못했습니다:",
+ "info": "웹 훅에 의해 트리거 되도록 구성된 모든 구성요소에 공개적으로 접근할 수 있는 URL을 제공하여 인스턴스를 인터넷에 노출하지 않고도 어디에서나 Home Assistant로 데이터를 보낼 수 있습니다.",
+ "link_learn_more": "웹 훅 기반 자동화 생성에 대해 더 알아보기.",
+ "loading": "읽는 중 ...",
+ "manage": "관리",
+ "no_hooks_yet": "아직 웹 훅이 없는 것 같습니다. 다음을 구성하여 시작하실 수 있습니다. ",
+ "no_hooks_yet2": " 또는 다음을 작성할 수 있습니다. ",
+ "no_hooks_yet_link_automation": "웹 훅 자동화",
+ "no_hooks_yet_link_integration": "웹 훅 기반 연동",
+ "title": "웹 훅"
+ }
+ },
+ "alexa": {
+ "banner": "configuration.yaml에서 구성요소 필터를 구성했으므로 이 UI를 통해 노출되는 구성요소는 편집할 수 없습니다.",
+ "dont_expose_entity": "구성 요소 노출하지 않기",
+ "expose": "Alexa에 노출",
+ "expose_entity": "구성 요소 노출하기",
+ "exposed": "{selected}개의 구성요소가 노출됨",
+ "exposed_entities": "노출된 구성요소",
+ "follow_domain": "도메인 설정 따르기",
+ "manage_domains": "도메인 관리하기",
+ "not_exposed": "{selected}개의 구성요소가 노출되지 않음",
+ "not_exposed_entities": "노출되지 않은 구성요소",
+ "title": "Alexa"
+ },
+ "description_features": "집 밖에서도 집을 관리하고 Alexa 및 Google Assistant와 연동시킵니다",
+ "description_login": "{email}(으)로 로그인 되어있습니다",
+ "description_not_login": "로그인이 되어있지 않습니다",
+ "dialog_certificate": {
+ "certificate_expiration_date": "인증서 만료 날짜:",
+ "certificate_information": "인증서 정보",
+ "close": "닫기",
+ "fingerprint": "인증서 지문:",
+ "will_be_auto_renewed": "인증서는 자동으로 갱신됩니다"
+ },
+ "dialog_cloudhook": {
+ "available_at": "웹 훅은 다음의 URL을 사용해 주세요:",
+ "close": "닫기",
+ "confirm_disable": "이 웹 훅을 비활성화하시겠습니까?",
+ "copied_to_clipboard": "클립보드에 복사됨",
+ "info_disable_webhook": "이 웹 훅을 더 이상 사용하지 않으려면, 다음을 해보세요: ",
+ "link_disable_webhook": "비활성화",
+ "managed_by_integration": "이 웹 훅은 통합 구성요소에 의해 관리되고 있어 비활성화할 수 없습니다.",
+ "view_documentation": "관련 문서 보기",
+ "webhook_for": "{name} 웹 훅"
+ },
+ "forgot_password": {
+ "check_your_email": "비밀번호를 재설정하는 방법은 보내드린 이메일을 확인해주세요.",
+ "email": "이메일",
+ "email_error_msg": "이메일 형식이 잘못되었습니다",
+ "instructions": "이메일 주소를 입력하시면 비밀번호를 재설정할 수 있는 링크를 보내드립니다.",
+ "send_reset_email": "재설정 이메일 보내기",
+ "subtitle": "비밀번호 재설정 하기",
+ "title": "비밀번호 찾기"
+ },
+ "google": {
+ "banner": "configuration.yaml에서 구성요소 필터를 구성했으므로 이 UI를 통해 노출되는 구성요소는 편집할 수 없습니다.",
+ "disable_2FA": "2단계 인증 비활성화",
+ "dont_expose_entity": "구성 요소 노출하지 않기",
+ "expose": "Google Assistant에 노출",
+ "expose_entity": "구성 요소 노출하기",
+ "exposed": "{selected}개의 구성요소가 노출됨",
+ "exposed_entities": "노출된 구성요소",
+ "follow_domain": "도메인 설정 따르기",
+ "manage_domains": "도메인 관리하기",
+ "not_exposed": "{selected}개의 구성요소가 노출되지 않음",
+ "not_exposed_entities": "노출되지 않은 구성요소",
+ "sync_to_google": "변경 사항을 Google에 동기화하는 중.",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "로그인하기 전에 검증 이메일을 확인해야 합니다.",
+ "alert_password_change_required": "로그인하기 전에 비밀번호를 변경해야 합니다.",
+ "dismiss": "로그인 취소",
+ "email": "이메일",
+ "email_error_msg": "이메일 형식이 잘못되었습니다",
+ "forgot_password": "비밀번호가 기억나지 않으세요?",
+ "introduction": "Home Assistant Cloud는 집 밖에서도 구성요소에 대한 안전한 원격 연결을 제공해드립니다. 또한 Amazon Alexa 및 Google Assistant와 같은 클라우드 전용 서비스에 연결할 수 있습니다.",
+ "introduction2": "이 서비스는 Home Assistant와 Hass.io의 창립자가 설립한 회사인 ",
+ "introduction2a": "에 의해 운영되고 있습니다.",
+ "introduction3": "Home Assistant Cloud는 1개월 무료 평가판이 포함된 구독 서비스입니다. 결제 정보는 필요하지 않습니다.",
+ "learn_more_link": "Home Assistant Cloud에 대해 더 알아보기",
+ "password": "비밀번호",
+ "password_error_msg": "비밀번호는 최소 8자 이상입니다",
+ "sign_in": "로그인",
+ "start_trial": "1개월 무료 평가판 사용해 보기",
+ "title": "클라우드 로그인",
+ "trial_info": "결제 정보는 필요하지 않습니다"
+ },
+ "register": {
+ "account_created": "계정이 생성되었습니다! 계정을 활성화 하는 방법은 보내드린 이메일을 확인해주세요.",
+ "create_account": "계정 만들기",
+ "email_address": "이메일 주소",
+ "email_error_msg": "이메일 형식이 잘못되었습니다",
+ "feature_amazon_alexa": "Amazon Alexa 연동",
+ "feature_google_home": "Google Assistant 연동",
+ "feature_remote_control": "집 밖에서 Home Assistant를 제어",
+ "feature_webhook_apps": "OwnTracks 와 같은 웹 훅 기반 앱과 쉬운 연동",
+ "headline": "1개월 무료 평가판 사용해 보기",
+ "information": "1개월간 무료로 사용해 볼 수 있는 Home Assistant Cloud 계정을 만들어보세요. 결제 정보는 필요하지 않습니다.",
+ "information2": "평가판을 사용하면 다음을 포함하는 Home Assistant Cloud의 모든 기능을 이용해 볼 수 있습니다:",
+ "information3": "이 서비스는 Home Assistant와 Hass.io의 창립자가 설립한 회사인 ",
+ "information3a": "에 의해 운영되고 있습니다.",
+ "information4": "계정 등록은 다음 이용 약관의 동의를 포함합니다.",
+ "link_privacy_policy": "개인 정보 정책",
+ "link_terms_conditions": "이용 약관",
+ "password": "비밀번호",
+ "password_error_msg": "비밀번호는 최소 8자 이상입니다",
+ "resend_confirm_email": "검증 이메일 다시보내기",
+ "start_trial": "무료 평가판 시작",
+ "title": "계정 만들기"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "변경된 내용을 저장하지 않았습니다. 이 페이지를 떠나시겠습니까?"
+ },
+ "learn_more": "더 알아보기"
+ },
+ "core": {
+ "caption": "일반",
+ "description": "도량형 단위, 위치, 시간대 및 기타 일반적인 매개 변수를 관리합니다",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "통화",
+ "edit_requires_storage": "구성내용이 configuration.yaml에 저장되어 있기 때문에 편집기가 비활성화되었습니다.",
+ "elevation": "고도",
+ "elevation_meters": "미터",
+ "external_url": "외부 URL",
+ "find_currency_value": "통화값 찾기",
+ "imperial_example": "화씨, 파운드",
+ "internal_url": "내부 URL",
+ "latitude": "위도",
+ "location_name": "설치된 Home Assistant 이름",
+ "longitude": "경도",
+ "metric_example": "섭씨, 킬로그램",
+ "save_button": "저장",
+ "time_zone": "시간대",
+ "unit_system": "단위",
+ "unit_system_imperial": "야드파운드법",
+ "unit_system_metric": "미터법"
+ },
+ "header": "일반 구성",
+ "introduction": "구성 내용의 설정을 변경하는 것은 때때로 난해하고 귀찮은 작업입니다. 여기서 설정 변경을 좀 더 쉽게 하실 수 있습니다."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "customize.yaml에 설정된 속성은 다음과 같습니다.",
+ "attributes_not_set": "다음의 속성이 설정되지 않았습니다. 원하는 경우 설정해주세요.",
+ "attributes_outside": "다음 속성은 customize.yaml 이 아닌 다른 곳에서 사용자화됩니다",
+ "attributes_override": "원하는 경우 재정의 할 수 있습니다.",
+ "attributes_set": "프로그래밍되어 자동으로 설정된 속성은 다음과 같습니다.",
+ "caption": "사용자화",
+ "description": "구성요소를 사용자화 합니다",
+ "different_include": "도메인, 글로브 혹은 다른 포함 구성을 통해 가능할 수 있습니다.",
+ "pick_attribute": "재정의 할 속성 선택",
+ "picker": {
+ "documentation": "사용자화 문서",
+ "header": "사용자화",
+ "introduction": "구성요소의 속성값을 입맛에 맞게 변경할 수 있습니다. 추가 혹은 수정된 사용자 정의 내용은 즉시 적용되지만, 제거된 내용은 구성요소가 업데이트 될 때 적용됩니다."
+ },
+ "warning": {
+ "include_link": "customize.yaml 포함",
+ "include_sentence": "configuration.yaml 이 올바르지 않은 것 같습니다",
+ "not_applied": "여기에서 변경 한 내용은 저장되지만, 해당 사항이 없다면 구성을 다시 읽어 들인 후에는 적용되지 않습니다."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "자동화, 장면, 스크립트 및 도우미를 관리합니다",
+ "title": "자동화 및 장면"
+ },
+ "blueprints": {
+ "description": "커뮤니티에서 만든 사전 정의 자동화 및 스크립트를 관리합니다",
+ "title": "블루프린트"
+ },
+ "companion": {
+ "description": "위치 및 알림",
+ "title": "컴패니언 앱"
+ },
+ "dashboards": {
+ "description": "사용자 정의된 카드 세트를 만들어 집을 제어할 수 있습니다",
+ "title": "대시보드"
+ },
+ "devices": {
+ "description": "통합 구성요소, 기기, 구성요소 및 영역을 관리합니다",
+ "title": "기기 및 서비스"
+ },
+ "energy": {
+ "description": "에너지 생산량 및 소비량 모니터링합니다",
+ "title": "에너지"
+ },
+ "people": {
+ "description": "Home Assistant가 추적하는 구성원과 지역을 관리합니다",
+ "title": "구성원 및 지역"
+ },
+ "settings": {
+ "description": "기본 설정 및 서버를 제어하고, 로그 및 정보를 확인합니다",
+ "title": "설정"
+ },
+ "supervisor": {
+ "description": "백업 작성 및 로그를 확인하거나 시스템을 재부팅합니다",
+ "title": "애드온, 백업 및 Supervisor"
+ },
+ "tags": {
+ "description": "NFC 태그, QR 코드 등이 스캔될 때 자동화를 트리거합니다",
+ "title": "태그"
+ }
+ },
+ "devices": {
+ "add_prompt": "아직 이 기기로 추가된 {name}이(가) 없습니다. 위의 + 단추를 클릭하여 추가할 수 있습니다.",
+ "automation": {
+ "actions": {
+ "caption": "뭔가 트리거 되었을 때....",
+ "no_actions": "동작 없음",
+ "unknown_action": "알 수 없는 동작"
+ },
+ "automations": "자동화",
+ "conditions": {
+ "caption": "... 이면 자동화를 실행 (조건)",
+ "no_conditions": "조건 없음",
+ "unknown_condition": "알 수 없는 조건"
+ },
+ "create": "기기로 자동화 구성하기",
+ "create_disable": "비활성화된 기기로 자동화를 만들 수 없습니다",
+ "no_automations": "자동화 없음",
+ "no_device_automations": "이 기기에서 사용할 수 있는 자동화가 없습니다.",
+ "triggers": {
+ "caption": "... 일 때 자동화를 실행 (트리거)",
+ "no_triggers": "트리거 없음",
+ "unknown_trigger": "알 수 없는 트리거"
+ },
+ "unknown_automation": "알 수 없는 자동화"
+ },
+ "cant_edit": "UI에서 작성된 항목만 편집할 수 있습니다.",
+ "caption": "기기",
+ "confirm_delete": "이 기기를 삭제하시겠습니까?",
+ "confirm_disable_config_entry": "{entry_name} 구성 항목에 대한 기기가 더 이상 존재하지 않습니다. 구성 항목을 비활성화하시겠습니까?",
+ "confirm_rename_entity_ids": "구성요소의 ID 이름 또한 바꾸시겠습니까?",
+ "confirm_rename_entity_ids_warning": "이렇게 해도 현재 이러한 구성요소를 사용하고 있는 구성(예: 자동화, 스크립트, 장면, 대시보드)은 변경되지 않습니다! 새 구성요소 ID를 사용하려면 직접 업데이트해야 합니다!",
+ "data_table": {
+ "area": "영역",
+ "battery": "배터리",
+ "device": "기기",
+ "integration": "통합 구성요소",
+ "manufacturer": "제조사",
+ "model": "모델",
+ "no_devices": "기기 없음",
+ "no_integration": "통합구성요소 없음"
+ },
+ "delete": "삭제하기",
+ "description": "구성된 기기를 관리합니다",
+ "device_info": "기기 정보",
+ "device_not_found": "기기를 찾을 수 없습니다.",
+ "disabled": "비활성화됨",
+ "disabled_by": {
+ "config_entry": "구성 항목",
+ "integration": "통합 구성요소",
+ "user": "사용자"
+ },
+ "download_diagnostics": "통계정보 다운로드",
+ "edit_settings": "설정 편집하기",
+ "enabled_cause": "{cause}에 의해 기기가 비활성화되었습니다.",
+ "enabled_description": "비활성화된 기기는 표시되지 않으며 기기에 속한 구성요소는 비활성화되고 Home Assistant에 추가되지 않습니다.",
+ "enabled_label": "기기 활성화하기",
+ "entities": {
+ "add_entities_lovelace": "Lovelace에 추가하기",
+ "config": "기기설정",
+ "control": "제어장치",
+ "diagnostic": "기기정보",
+ "disabled_entities": "+{count} {count, plural,\n one{개의 비활성화된 구성요소}\n other{개의 비활성화된 구성요소}\n}",
+ "entities": "구성요소",
+ "hide_disabled": "비활성화된 구성요소 숨기기",
+ "none": "이 기기는 구성요소가 없습니다",
+ "sensor": "센서",
+ "state": "상태"
+ },
+ "name": "이름",
+ "no_devices": "기기 없음",
+ "open_configuration_url_device": "기기 열기",
+ "open_configuration_url_service": "서비스 열기",
+ "picker": {
+ "filter": {
+ "filter": "필터",
+ "hidden_devices": "{number} {number, plural,\n one{개의 숨겨진 기기}\n other{개의 숨겨진 기기}\n}",
+ "show_all": "모두 표시하기",
+ "show_disabled": "비활성화된 기기 표시하기"
+ },
+ "search": "기기 찾기"
+ },
+ "scene": {
+ "create": "기기로 장면 만들기",
+ "create_disable": "비활성화된 기기로 장면을 만들 수 없습니다",
+ "no_scenes": "장면 없음",
+ "scenes": "장면"
+ },
+ "scenes": "장면",
+ "script": {
+ "create": "기기로 스크립트 작성하기",
+ "create_disable": "비활성화된 기기로 스크립트를 만들 수 없습니다",
+ "no_scripts": "스크립트 없음",
+ "scripts": "스크립트"
+ },
+ "scripts": "스크립트",
+ "unknown_error": "알 수 없는 오류",
+ "unnamed_device": "이름이 없는 기기",
+ "update": "업데이트",
+ "update_device_error": "장치 업데이트 실패"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "배터리 시스템 추가",
+ "battery_systems": "배터리 시스템",
+ "dialog": {
+ "energy_into_battery": "배터리에 들어가는 에너지(kWh)",
+ "energy_out_of_battery": "배터리에서 나오는 에너지(kWh)",
+ "header": "배터리 시스템 구성"
+ },
+ "learn_more": "시작하는 방법에 대한 추가 정보.",
+ "sub": "배터리 시스템이 있는 경우 배터리에서 얼마나 많은 에너지가 저장되고 사용되었는지 모니터링하도록 구성할 수 있습니다.",
+ "title": "가정용 배터리 저장소"
+ },
+ "caption": "에너지",
+ "delete_integration": "이 통합구성요소를 삭제하시겠습니까? 구성요소들 또한 삭제됩니다.",
+ "delete_source": "이 소스를 삭제하시겠습니까?",
+ "description": "에너지 생산량 및 소비량 모니터링합니다",
+ "device_consumption": {
+ "add_device": "기기 추가",
+ "add_stat": "에너지를 추적할 항목 선택",
+ "devices": "기기",
+ "dialog": {
+ "device_consumption_energy": "기기 소비 에너지(kWh)",
+ "header": "기기 추가하기",
+ "selected_stat_intro": "장치 에너지 사용량을 나타내는 구성요소를 선택합니다."
+ },
+ "learn_more": "시작하는 방법에 대한 추가 정보.",
+ "selected_stat": "에너지 추적",
+ "sub": "개별 기기의 에너지 사용량을 추적하면 Home Assistant가 기기별로 에너지 사용량을 분석할 수 있습니다.",
+ "title": "개별 장치"
+ },
+ "gas": {
+ "add_gas_source": "가스 소비량 추가",
+ "dialog": {
+ "cost_entity": "현재 가격이 있는 구성요소 사용",
+ "cost_entity_input": "현재 가격이 있는 구성요소",
+ "cost_number": "고정 가격 사용",
+ "cost_number_input": "m³당 가격",
+ "cost_number_suffix": "{currency} /m³",
+ "cost_para": "Home Assistant가 소비된 에너지 비용을 계산하는 방법을 선택합니다.",
+ "cost_stat": "총 비용을 계산하는 구성요소 사용",
+ "cost_stat_input": "총 비용 구성요소",
+ "energy_stat": "소비 에너지(m³)",
+ "gas_usage": "가스 사용량",
+ "header": "가스 소비량 구성하기",
+ "m3_or_kWh": "m³ 또는 kWh",
+ "no_cost": "비용을 계산하지 마십시오",
+ "paragraph": "가스 소비량은 가정에서 사용하는 가스의 양입니다."
+ },
+ "gas_consumption": "가스 소비량",
+ "learn_more": "시작하는 방법에 대한 추가 정보.",
+ "sub": "Home Assistant가 가스 사용량을 모니터링하도록 하세요.",
+ "title": "가스 소비량"
+ },
+ "grid": {
+ "add_co2_signal": "CO2 통합구성요소 추가",
+ "add_consumption": "소비량 추가",
+ "add_return": "반환량 추가",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "현재 가격이 있는 구성요소 사용",
+ "cost_entity_input": "현재 가격이 있는 구성요소",
+ "cost_number": "고정 가격 사용",
+ "cost_number_input": "kWh당 가격",
+ "cost_number_suffix": "{currency} /kWh",
+ "cost_para": "Home Assistant가 소비된 에너지 비용을 계산하는 방법을 선택합니다.",
+ "cost_stat": "총 비용을 계산하는 구성요소 사용",
+ "cost_stat_input": "총 비용 구성요소",
+ "energy_stat": "소비 에너지 (kWh)",
+ "header": "그리드 소비량 설정",
+ "no_cost": "비용을 계산하지 마십시오",
+ "paragraph": "그리드 소비량은 분전반에서 가정으로 흐르는 에너지입니다."
+ },
+ "to": {
+ "cost_entity": "현재 환율의 구성요소 사용하기",
+ "cost_entity_input": "현재 환율의 구성요소",
+ "cost_number": "고정 요금 사용",
+ "cost_number_input": "kWh당 요금",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "분전반에 에너지를 반환하면 돈을 돌려받습니까?",
+ "cost_stat": "받은 총 금액을 계산하는 구성요소 사용",
+ "cost_stat_input": "총 반환금 구성요소",
+ "energy_stat": "그리드로 반환된 에너지(kWh)",
+ "header": "그리드 생산량 설정",
+ "no_cost": "돈을 돌려받지 않습니다",
+ "paragraph": "그리드 생산량은 태양광 패널에서 분전반으로 흐르는 에너지입니다."
+ }
+ },
+ "grid_carbon_footprint": "그리드 탄소 발자국",
+ "grid_consumption": "그리드 소비량",
+ "learn_more": "시작하는 방법에 대한 추가 정보.",
+ "return_to_grid": "그리드로 반환",
+ "sub": "그리드에서 소비하는 에너지에 대해 다른 요금체계를 구성하고 에너지를 그리드에 반환하는 경우 그리드에 반환하는 에너지를 구성합니다.",
+ "title": "전력 그리드"
+ },
+ "new_device_info": "새 기기를 설정한 후 에너지 대시보드에 새 데이터가 표시되는데 최대 2시간이 걸릴 수 있습니다.",
+ "solar": {
+ "add_solar_production": "태양광 발전량 추가",
+ "dialog": {
+ "add_forecast": "예측 추가",
+ "dont_forecast_production": "발전량 예측하지 않기",
+ "forecast_production": "발전량 예측하기",
+ "header": "태양광 패널 구성",
+ "solar_production_energy": "태양광 발전 에너지(kWh)",
+ "solar_production_forecast": "태양광 발전량 예측",
+ "solar_production_forecast_description": "태양광 발전량 예측 정보를 추가하면 오늘의 예상 발전량을 빠르게 확인할 수 있습니다."
+ },
+ "learn_more": "시작하는 방법에 대한 추가 정보.",
+ "solar_production": "태양광 발전량",
+ "stat_predicted_production": "태양 에너지 생산 예측",
+ "stat_production": "태양 에너지 생산 현황",
+ "stat_return_to_grid": "그리드로 반환되는 태양 에너지",
+ "sub": "Home Assistant를 통해 태양광 패널을 모니터링하고 성능을 한눈에 볼 수 있습니다",
+ "title": "태양광 패널"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "다음 구성요소들의 값이 양수가 될 것으로 예측되지만 현재 음수 입니다:",
+ "title": "구성요소의 값이 음수입니다."
+ },
+ "entity_not_defined": {
+ "description": "통합구성요소 혹은 설정을 확인하세요:",
+ "title": "구성요소가 정의되지 않음"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "다음 구성요소들은 'measurement' 상태 클래스를 가지고 있지만 'last_reset'이 없습니다:",
+ "title": "Last reset 누락"
+ },
+ "entity_state_non_numeric": {
+ "description": "다음 구성요소들의 값이 숫자가 아닙니다:",
+ "title": "구성요소의 값이 숫자형식이 아닙니다"
+ },
+ "entity_unavailable": {
+ "description": "설정된 구성요소가 현재 사용불가능합니다:",
+ "title": "구성요소 사용불가"
+ },
+ "entity_unexpected_device_class": {
+ "description": "다음 구성요소들의 기기 클래스가 적절하지 않습니다:",
+ "title": "부적절한 기기 클래스"
+ },
+ "entity_unexpected_state_class": {
+ "description": "다음 구성요소들의 상태 클래스가 적절하지 않습니다:",
+ "title": "부적절한 상태 클래스"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "다음 구성요소들의 상태 클래스가 \"total_increasing\"이 아닙니다",
+ "title": "부적절한 상태 클래스"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "다음 구성요소들의 측정단위가 'kWh' 또는 'Wh' 가 아닙니다:",
+ "title": "부적절한 측정 단위"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "다음 구성요소들의 측정단위가 \"{currency}/kWh\" 또는 \"{currency}/Wh\" 가 아닙니다:",
+ "title": "부적절한 측정 단위"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "다음 구성요소들의 측정단위가 'kWh', 'm³' 또는 'ft³' 가 아닙니다:",
+ "title": "부적절한 측정 단위"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "다음 구성요소들의 측정단위가 \"{currency}/kWh\", \"{currency}/Wh\", \"{currency}/m³\" 또는 \"{currency}/ft³\" 가 아닙니다:",
+ "title": "부적절한 측정 단위"
+ },
+ "recorder_untracked": {
+ "description": "레코더에서 다음 구성요소를 기록하지 않습니다:",
+ "title": "구성요소가 추적되지 않음"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "구성요소",
+ "description": "등록된 구성요소를 관리합니다",
+ "picker": {
+ "disable_selected": {
+ "button": "선택된 구성요소 비활성화",
+ "confirm_text": "비활성화된 구성요소는 Home Assistant에 추가되지 않습니다.",
+ "confirm_title": "{number} {number, plural,\n one{개의 구성요소}\n other{개의 구성요소}\n}를 비활성화하시겠습니까?"
+ },
+ "enable_selected": {
+ "button": "선택된 구성요소 활성화",
+ "confirm_text": "비활성화된 구성요소는 Home Assistant에서 다시 사용할 수 있게 됩니다.",
+ "confirm_title": "{number} {number, plural,\n one{개의 구성요소}\n other{개의 구성요소}\n}를 활성화하시겠습니까?"
+ },
+ "filter": {
+ "filter": "필터",
+ "hidden_entities": "{number} {number, plural,\n one{개의 숨겨진 구성요소}\n other{개의 숨겨진 구성요소}\n}",
+ "show_all": "모두 표시하기",
+ "show_disabled": "비활성화된 구성요소 표시하기",
+ "show_readonly": "읽기 전용 구성요소 표시하기",
+ "show_unavailable": "사용할 수 없는 구성요소 표시하기"
+ },
+ "header": "구성요소",
+ "headers": {
+ "area": "영역",
+ "disabled_by": "다음에 의해 비활성화됨",
+ "entity_id": "구성요소 ID",
+ "integration": "통합 구성요소",
+ "name": "이름",
+ "status": "상태"
+ },
+ "introduction": "Home Assistant는 구성요소의 식별을 위해 모든 구성요소에 고유한 레지스트리를 부여합니다. 각각의 구성요소들은 자신만의 고유한 구성요소 ID를 가집니다.",
+ "introduction2": "구성요소 레지스트리를 사용하여 이름을 대체하거나 구성요소 ID 변경 또는 Home Assistant에서 항목을 제거할 수 있습니다.",
+ "remove_selected": {
+ "button": "선택된 구성요소 제거하기",
+ "confirm_partly_text": "선택한 {selected}개의 구성요소 중 {removable}개의 구성요소를 제거할 수 있습니다. 통합 구성요소가 더 이상 구성요소를 제공하지 않는 경우에만 구성요소를 제거할 수 있으며, 제거된 통합 구성요소의 구성요소를 제거하기 전에 Home Assistant를 다시 시작해야 할 수 있습니다. 제거 가능한 구성요소를 제거하시겠습니까?",
+ "confirm_partly_title": "선택된 {number} {number, plural,\n one{개의 구성요소}\n other{개의 구성요소}\n} 만 제거할 수 있습니다.",
+ "confirm_text": "이러한 구성요소가 포함된 경우 Lovelace 구성 및 자동화에서 제거해야 합니다.",
+ "confirm_title": "{number} {number, plural,\n one{개의 구성요소}\n other{개의 구성요소}\n}를 제거하시겠습니까?"
+ },
+ "search": "구성요소 찾기",
+ "selected": "{number}개 선택됨",
+ "status": {
+ "disabled": "비활성화",
+ "ok": "확인",
+ "readonly": "읽기 전용",
+ "restored": "복원됨",
+ "unavailable": "사용불가"
+ }
+ }
+ },
+ "header": "Home Assistant 구성하기",
+ "helpers": {
+ "caption": "도우미",
+ "description": "자동화 구축에 도움이 되는 요소를 관리합니다",
+ "dialog": {
+ "add_helper": "도우미 추가하기",
+ "add_platform": "{platform} 추가하기",
+ "create": "만들기"
+ },
+ "picker": {
+ "add_helper": "도우미 추가하기",
+ "headers": {
+ "editable": "수정 가능",
+ "entity_id": "구성요소 ID",
+ "name": "이름",
+ "type": "유형"
+ },
+ "no_helpers": "아직 구성한 도우미가 없는 것 같습니다."
+ },
+ "types": {
+ "counter": "계수기",
+ "input_boolean": "토글",
+ "input_button": "버튼",
+ "input_datetime": "날짜 또는 시간",
+ "input_number": "숫자",
+ "input_select": "드롭다운",
+ "input_text": "텍스트",
+ "timer": "타이머"
+ }
+ },
+ "info": {
+ "built_using": "다음을 사용하여 제작",
+ "caption": "정보",
+ "copy_github": "GitHub 용",
+ "copy_menu": "메뉴 복사",
+ "copy_raw": "일반 텍스트",
+ "custom_uis": "사용자 UI :",
+ "description": "버전, 시스템 상태 및 관련 문서에 대한 링크입니다",
+ "developed_by": "Home Assistant는 수많은 멋진 사람들에 의해 개발되었습니다.",
+ "documentation": "관련 문서",
+ "frontend": "Frontend-UI",
+ "frontend_version": "Frontend 버전: {version} - {type}",
+ "home_assistant_logo": "Home Assistant 로고",
+ "icons_by": "아이콘 출처",
+ "integrations": "통합 구성요소",
+ "issues": "이슈",
+ "license": "Apache 2.0 License에 따라 게시",
+ "path_configuration": "configuration.yaml의 위치: {path}",
+ "server": "서버",
+ "setup_time": "설정 시간",
+ "source": "소스:",
+ "system_health": {
+ "manage": "관리하기",
+ "more_info": "추가 정보"
+ },
+ "system_health_error": "시스템 상태보기 구성요소가 로드되지 않았습니다. configuration.yaml에 'system_health:'를 추가해주세요."
+ },
+ "integrations": {
+ "add_integration": "통합 구성요소 추가하기",
+ "attention": "주의가 필요합니다",
+ "caption": "통합 구성요소",
+ "config_entry": {
+ "area": "{area}에 위치",
+ "check_the_logs": "로그 확인",
+ "configure": "구성",
+ "delete": "삭제하기",
+ "delete_confirm": "{title} 통합 구성요소를 제거하시겠습니까?",
+ "depends_on_cloud": "클라우드 서비스",
+ "device_unavailable": "기기 사용불가",
+ "devices": "{count} {count, plural,\none{개의 기기}\nother{개의 기기}\n}",
+ "disable": {
+ "disable_confirm": "이 구성 항목을 비활성화하시겠습니까? 해당 기기 및 구성요소가 비활성화됩니다.",
+ "disabled": "비활성화됨",
+ "disabled_by": {
+ "device": "기기",
+ "integration": "통합 구성요소",
+ "user": "사용자"
+ },
+ "disabled_cause": "{cause}에 의해 비활성화되었습니다"
+ },
+ "disable_error": "통합구성요소 활성화 혹은 비활성화 실패",
+ "disable_restart_confirm": "이 통합 구성요소를 비활성화하려면 Home Assistant를 다시 시작해주세요",
+ "disabled_polling": "데이터 업데이트를 위한 자동 폴링 비활성화",
+ "documentation": "관련 문서",
+ "download_diagnostics": "통계정보 다운로드",
+ "enable_restart_confirm": "이 통합 구성요소를 활성화하려면 Home Assistant를 다시 시작해주세요",
+ "entities": "{count} {count, plural,\none{개의 구성요소}\nother{개의 구성요소}\n}",
+ "entity_unavailable": "구성요소 사용불가",
+ "firmware": "펌웨어: {version}",
+ "hardware": "하드웨어: {version}",
+ "hub": "연결 경유 대상",
+ "known_issues": "알려진 문제",
+ "manuf": "{manufacturer} 제조",
+ "no_area": "영역 없음",
+ "not_loaded": "로드되지 않음",
+ "open_configuration_url": "기기 열기",
+ "provided_by_custom_integration": "사용자 통합구성요소",
+ "reload": "다시 읽어오기",
+ "reload_confirm": "통합 구성요소를 다시 읽어 들였습니다",
+ "reload_restart_confirm": "이 통합 구성요소를 다시 읽어 들일려면 Home Assistant를 다시 시작해주세요",
+ "rename": "이름 변경하기",
+ "restart_confirm": "이 통합 구성요소를 제거하려면 Home Assistant를 다시 시작해주세요",
+ "services": "{count} {count, plural,\n one{개의 서비스}\n other{개의 서비스}\n}",
+ "state": {
+ "failed_unload": "언로드 실패",
+ "loaded": "로드 됨",
+ "migration_error": "마이그레이션 오류",
+ "not_loaded": "로드되지 않음",
+ "setup_error": "설정 실패",
+ "setup_retry": "설정 재시도"
+ },
+ "system_options": "시스템 옵션",
+ "unknown_via_device": "알 수 없는 기기",
+ "unnamed_entry": "이름이 없는 항목",
+ "via": "다음을 통해 연결됨:"
+ },
+ "config_flow": {
+ "aborted": "취소됨",
+ "close": "닫기",
+ "could_not_load": "구성 흐름을 읽어 들일 수 없습니다",
+ "created_config": "{name}에 대한 구성을 만들었습니다.",
+ "dismiss": "대화창 닫기",
+ "error": "에러",
+ "error_saving_area": "영역 저장 오류: {error}",
+ "external_step": {
+ "description": "이 단계는 외부 웹사이트 방문이 필요합니다.",
+ "open_site": "웹사이트 열기"
+ },
+ "finish": "완료",
+ "loading": {
+ "fallback_title": "통합구성요소",
+ "loading_flow": "{integration} 을 설정하는 동안 잠시 기다려 주십시오.",
+ "loading_step": "{integration} 다음 단계 로드 중"
+ },
+ "next": "다음",
+ "not_all_required_fields": "필수 입력란이 모두 채워지지 않았습니다.",
+ "not_loaded": "통합 구성요소를 불러올 수 없습니다. Home Assistant를 다시 시작해주세요.",
+ "pick_flow_step": {
+ "new_flow": "아니요, 다른 {integration}의 인스턴스를 설정합니다",
+ "title": "이걸 발견했습니다. 설정하시겠습니까?"
+ },
+ "submit": "확인"
+ },
+ "configure": "구성하기",
+ "configured": "구성된 통합 구성요소",
+ "confirm_new": "{integration}을(를) 설정하시겠습니까?",
+ "description": "서비스 또는 기기의 통합 구성요소를 관리합니다",
+ "details": "통합 구성요소 상세정보",
+ "disable": {
+ "disabled_integrations": "{number}개의 비활성화된 통합 구성요소",
+ "show": "표시하기",
+ "show_disabled": "비활성화된 통합 구성요소 표시하기"
+ },
+ "discovered": "발견된 구성요소",
+ "home_assistant_website": "Home Assistant 웹 사이트",
+ "ignore": {
+ "confirm_delete_ignore": "이렇게 하면 발견된 통합 구성요소가 발견될 때, 발견된 통합 구성요소에 다시 나타나게 됩니다. 다시 시작해야 하거나 시간이 걸릴 수 있습니다.",
+ "confirm_delete_ignore_title": "{name} 무시를 중지하시겠습니까?",
+ "confirm_ignore": "이 통합 구성요소를 설정하지 않으시겠습니까? 오른쪽 상단의 오버플로 메뉴에서 '무시된 통합 구성요소 표시하기'를 클릭하여 이 작업을 취소할 수 있습니다.",
+ "confirm_ignore_title": "발견된 {name} 기기를 무시하시겠습니까?",
+ "ignore": "무시",
+ "ignored": "무시된 통합 구성요소",
+ "show_ignored": "무시된 통합 구성요소 표시하기",
+ "stop_ignore": "무시 중지하기"
+ },
+ "integration": "통합 구성요소",
+ "integration_not_found": "통합 구성요소를 찾을 수 없습니다.",
+ "new": "새로운 통합 구성요소 설정",
+ "no_integrations": "아직 구성된 통합 구성요소가 존재하지 않습니다. 첫 번째 통합 구성요소를 추가하려면 아래 버튼을 클릭해주세요!",
+ "none": "구성된 통합 구성요소가 없습니다",
+ "none_found": "통합 구성요소를 찾을 수 없습니다",
+ "none_found_detail": "검색 대상을 확인해주세요.",
+ "note_about_integrations": "검색과 일치하는 통합 구성요소가 없습니다. 설정하려는 통합 구성요소가 아직 UI를 통한 설정을 지원하지 않을 수 있습니다.",
+ "note_about_website_reference": "더 많은 구성요소는 다음에서 살펴 봐주세요. ",
+ "reconfigure": "재구성하기",
+ "rename_dialog": "이 구성 항목의 이름을 편집하기",
+ "rename_input_label": "구성 항목의 이름",
+ "search": "통합 구성요소 찾기"
+ },
+ "introduction": "이 뷰에서 구성요소와 Home Assistant를 구성할 수 있습니다. 아직 여기서 모든 것을 구성할 수는 없지만, 모든 내용을 구성할 수 있도록 작업 중입니다.",
+ "logs": {
+ "caption": "로그",
+ "clear": "지우기",
+ "copy": "로그 복사",
+ "custom_integration": "사용자 통합 구성요소",
+ "description": "Home Assistant 로그 내역을 봅니다",
+ "details": "로그 상세정보 ({level})",
+ "error_from_custom_integration": "이 오류는 사용자 통합 구성요소에서 발생했습니다.",
+ "level": {
+ "critical": "치명적오류",
+ "debug": "디버그",
+ "error": "오류",
+ "info": "정보",
+ "warning": "경고"
+ },
+ "load_full_log": "Home Assistant 로그 전부 불러오기",
+ "loading_log": "오류 로그를 읽는 중...",
+ "multiple_messages": "{time}에 처음 발생했으며, {counter}번 발생했습니다.",
+ "no_errors": "보고된 오류가 없습니다.",
+ "no_issues": "새롭게 보고된 문제가 없습니다!",
+ "refresh": "새로고침"
+ },
+ "lovelace": {
+ "caption": "Lovelace 대시보드",
+ "dashboards": {
+ "cant_edit_default": "기본 Lovelace 대시보드는 UI에서 편집할 수 없습니다. 다른 대시보드를 기본값으로 설정하여 숨길 수 있습니다.",
+ "cant_edit_yaml": "YAML에서 정의된 대시보드는 UI에서 편집할 수 없습니다. configuration.yaml 파일에서 수정해주세요.",
+ "caption": "대시보드",
+ "conf_mode": {
+ "storage": "UI 제어",
+ "yaml": "YAML 파일"
+ },
+ "confirm_delete": "이 대시보드를 삭제하시겠습니까?",
+ "confirm_delete_text": "대시보드가 영구적으로 삭제됩니다.",
+ "confirm_delete_title": "{dashboard_title} 삭제하시겠습니까?",
+ "default_dashboard": "기본 대시보드입니다",
+ "detail": {
+ "create": "만들기",
+ "delete": "삭제하기",
+ "dismiss": "닫기",
+ "edit_dashboard": "대시보드 편집하기",
+ "icon": "아이콘",
+ "new_dashboard": "새로운 대시보드 추가하기",
+ "remove_default": "이 기기에서 기본값으로 제거하기",
+ "require_admin": "관리자 전용",
+ "set_default": "이 기기에서 기본값으로 설정",
+ "show_sidebar": "사이드바에 표시하기",
+ "title": "제목",
+ "title_required": "제목은 필수 요소입니다",
+ "update": "업데이트",
+ "url": "URL",
+ "url_error_msg": "URL은 - 를 포함해야 하며 _ 및 - 를 제외한 공백이나 특수 문자를 포함할 수 없습니다"
+ },
+ "picker": {
+ "add_dashboard": "대시보드 추가하기",
+ "headers": {
+ "conf_mode": "구성 방법",
+ "default": "기본값",
+ "filename": "파일 이름",
+ "require_admin": "관리자 전용",
+ "sidebar": "사이드바에 표시하기",
+ "title": "제목"
+ },
+ "open": "열기"
+ }
+ },
+ "description": "사용자 정의된 카드 세트를 만들어 집을 제어할 수 있습니다",
+ "resources": {
+ "cant_edit_yaml": "YAML 모드에서 Lovelace를 사용하고 있으므로 UI를 통해 리소스를 관리할 수 없습니다. configuration.yaml에서 관리해주세요.",
+ "caption": "리소스",
+ "confirm_delete": "이 리소스를 삭제하시겠습니까?",
+ "detail": {
+ "create": "만들기",
+ "delete": "삭제하기",
+ "dismiss": "닫기",
+ "new_resource": "새로운 리소스 추가하기",
+ "type": "리소스 유형",
+ "update": "업데이트",
+ "url": "URL",
+ "url_error_msg": "URL은 필수 입력 요소입니다",
+ "warning_header": "주의해주세요!",
+ "warning_text": "리소스를 추가하는 것은 위험할 수 있습니다. 리소스의 출처를 알고 신뢰할 수 있는지 확인해주세요. 잘못된 리소스는 시스템에 심각한 손상을 줄 수 있습니다."
+ },
+ "picker": {
+ "add_resource": "새로운 리소스 추가하기",
+ "headers": {
+ "type": "유형",
+ "url": "URL"
+ },
+ "no_resources": "리소스 없음"
+ },
+ "refresh_body": "삭제를 완료하려면 페이지를 새로 고쳐야 합니다. 지금 새로 고치시겠습니까?",
+ "refresh_header": "새로 고치시겠습니까?",
+ "types": {
+ "css": "스타일시트",
+ "html": "HTML (더 이상 사용되지 않음)",
+ "js": "자바스크립트 파일 (더 이상 사용되지 않음)",
+ "module": "자바스크립트 모듈"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "토픽 내용 들어보기",
+ "description_publish": "패킷 발행",
+ "listening_to": "토픽 청취 중",
+ "message_received": "{time}에 {id} 메시지가 {topic}에 수신되었습니다.",
+ "payload": "페이로드 (템플릿 허용)",
+ "publish": "발행",
+ "start_listening": "청취 시작",
+ "stop_listening": "그만 듣기",
+ "subscribe_to": "청취할 토픽",
+ "title": "MQTT",
+ "topic": "토픽"
+ },
+ "ozw": {
+ "common": {
+ "controller": "컨트롤러",
+ "instance": "인스턴스",
+ "network": "네트워크",
+ "node_id": "노드 ID",
+ "ozw_instance": "OpenZWave 인스턴스",
+ "query_stage": "쿼리 단계",
+ "wakeup_instructions": "절전 해제 지침",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "노드 실패",
+ "stage": "단계",
+ "zwave_info": "Z-Wave 정보"
+ },
+ "navigation": {
+ "network": "네트워크",
+ "node": {
+ "config": "구성",
+ "dashboard": "대시보드"
+ },
+ "nodes": "노드",
+ "select_instance": "인스턴스 선택하기"
+ },
+ "network": {
+ "header": "네트워크 관리",
+ "introduction": "네트워크 전체 기능을 관리합니다.",
+ "node_count": "{count}개 노드"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "모든 노드가 쿼리되었습니다",
+ "driverallnodesqueriedsomedead": "모든 노드가 쿼리 되었습니다. 일부 노드는 작동하지 않는 것으로 발견되었습니다",
+ "driverawakenodesqueries": "모든 절전모드 해제 노드가 쿼리되었습니다.",
+ "driverfailed": "Z-Wave 컨트롤러에 연결하지 못했습니다",
+ "driverready": "Z-Wave 컨트롤러 초기화 중",
+ "driverremoved": "드라이버가 제거되었습니다",
+ "driverreset": "드라이버가 재설정되었습니다",
+ "offline": "OZWDaemon 오프라인",
+ "ready": "연결할 준비가 되었습니다",
+ "started": "MQTT에 연결됨",
+ "starting": "MQTT에 연결 중",
+ "stopped": "OpenZWave가 중지되었습니다"
+ },
+ "offline": "오프라인",
+ "online": "온라인",
+ "starting": "시작 중",
+ "unknown": "알 수 없음"
+ },
+ "node": {
+ "button": "노드 세부 정보",
+ "not_found": "노드를 찾을 수 없습니다"
+ },
+ "node_config": {
+ "header": "노드 구성",
+ "help_source": "구성 매개 변수 설명 및 도움말 텍스트는 OpenZWave 프로젝트에서 제공됩니다.",
+ "introduction": "Z-Wave 노드에 대한 다양한 구성 매개 변수를 관리합니다.",
+ "wakeup_help": "배터리 전원을 사용하는 노드는 구성을 변경하려면 반드시 절전 해제된 상태이어야 합니다. 노드가 절전 상태면 Openzwave는 절전 해제될 때 노드의 구성 업데이트를 시도합니다. 이 과정은 몇 시간 (또는 며칠) 후에 이루어질 수 있습니다. 기기를 절전 해제하려면 다음 단계를 따라주세요."
+ },
+ "node_metadata": {
+ "product_manual": "제품 설명서"
+ },
+ "node_query_stages": {
+ "associations": "연결 그룹 및 구성원 자격 새로고침",
+ "cacheload": "OpenZWave 캐시 파일에서 정보를 읽어오기. 배터리 노드는 노드가 절전 해제 상태가 될 때까지 이 단계를 유지합니다.",
+ "complete": "인터뷰 과정이 완료되었습니다",
+ "configuration": "노드에서 구성 값 가져오기",
+ "dynamic": "노드에서 자주 변경되는 값 가져오기",
+ "instances": "기기가 지원하는 인스턴스 또는 채널에 대한 세부 정보 가져오기",
+ "manufacturerspecific1": "노드에서 제조업체 및 제품 ID 코드 가져오기",
+ "manufacturerspecific2": "노드에서 추가 제조업체 및 제품 ID 코드 가져오기",
+ "neighbors": "노드의 연관 항목 목록 가져오기",
+ "nodeinfo": "노드에서 지원되는 명령 클래스 가져오기",
+ "nodeplusinfo": "노드에서 Z-Wave+ 정보 가져오기",
+ "probe": "노드가 절전 해제 상태 또는 활성 상태인지 확인",
+ "protocolinfo": "컨트롤러에서 이 노드의 기본 Z-Wave 기능 가져오기",
+ "session": "노드에서 간헐적으로 변경되는 값 가져오기",
+ "static": "기기에서 정적 값 가져오기",
+ "versions": "펌웨어 및 명령 클래스 버전에 대한 정보 가져오기",
+ "wakeup": "절전 해제 대기열 및 메시지에 대한 지원 설정"
+ },
+ "nodes_table": {
+ "failed": "실패함",
+ "id": "ID",
+ "manufacturer": "제조사",
+ "model": "모델",
+ "query_stage": "쿼리 단계",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "노드가 배터리 전원을 사용하는 경우 계속하기 전에 절전 모드가 해제되어 있는지 확인해주세요",
+ "button": "노드 새로고침",
+ "complete": "노드 새로고침 완료",
+ "description": "OpenZWave가 노드를 다시 인터뷰하고 노드의 명령 클래스, 기능 및 값을 업데이트하도록 지시합니다.",
+ "node_status": "노드 상태",
+ "refreshing_description": "노드 정보를 새로고침 하는 중...",
+ "start_refresh_button": "새로고침 시작",
+ "step": "단계",
+ "title": "노드 정보 새로고침",
+ "wakeup_header": "절전 해제 지침:",
+ "wakeup_instructions_source": "절전 해제 지침은 OpenZWave 커뮤니티 기기 데이터베이스에서 제공됩니다."
+ },
+ "select_instance": {
+ "header": "OpenZWave 인스턴스 선택하기",
+ "introduction": "둘 이상의 OpenZWave 인스턴스가 실행 중입니다. 어떤 인스턴스를 관리하시겠습니까?",
+ "none_found": "OpenZWave 인스턴스를 찾을 수 없습니다. 이 상황이 잘못되었다고 생각되시면 OpenZWave 및 MQTT 설정을 확인하고 Home Assistant가 MQTT 브로커와 통신할 수 있는지 확인해주세요."
+ },
+ "services": {
+ "add_node": "노드 추가하기",
+ "cancel_command": "명령 취소",
+ "remove_node": "노드 제거하기"
+ }
+ },
+ "person": {
+ "add_person": "구성원 추가하기",
+ "caption": "구성원",
+ "confirm_delete": "이 구성원을 삭제하시겠습니까?",
+ "confirm_delete2": "이 구성원에게 속한 모든 기기는 비할당 상태로 남게됩니다.",
+ "create_person": "구성원 만들기",
+ "description": "Home Assistant가 추적하는 구성원을 관리합니다",
+ "detail": {
+ "admin": "관리자",
+ "allow_login": "로그인 허용하기",
+ "confirm_delete_user": "{name} 구성원에 대한 사용자 계정을 삭제하시겠습니까? 여전히 해당 사용자를 추적할 수는 있지만 해당 구성원은 더 이상 로그인할 수 없습니다.",
+ "create": "만들기",
+ "delete": "삭제하기",
+ "device_tracker_intro": "이 구성원에게 속한 기기를 선택해주세요.",
+ "device_tracker_pick": "추적 대상 기기 선택",
+ "device_tracker_picked": "추적 대상 기기",
+ "link_integrations_page": "통합 구성요소 페이지",
+ "link_presence_detection_integrations": "재실 감지 통합 구성요소",
+ "linked_user": "사용자 계정 연결",
+ "local_only": "로컬 네트워크에서만 로그인할 수 있습니다.",
+ "name": "이름",
+ "name_error_msg": "이름은 필수 요소입니다",
+ "new_person": "새로운 구성원",
+ "no_device_tracker_available_intro": "구성원의 재실 여부를 알려주는 기기가 있다면 구성원을 해당 기기에 할당할 수 있습니다. 통합 구성요소 페이지에서 재실 감지 통합 구성요소를 추가해서 기기를 구성해보세요.",
+ "update": "업데이트"
+ },
+ "introduction": "Home Assistant에서 추적할 구성원을 정의할 수 있습니다.",
+ "learn_more": "구성원에 대해 더 알아보기",
+ "no_persons_created_yet": "아직 등록한 구성원이 없는 것 같습니다.",
+ "note_about_persons_configured_in_yaml": "참고: configuration.yaml에서 구성된 구성원은 UI에서 편집할 수 없습니다.",
+ "person_not_found": "편집하려는 구성원을 찾을 수 없습니다.",
+ "person_not_found_title": "구성원을 찾을 수 없습니다"
+ },
+ "scene": {
+ "activated": "{name} 장면이 활성화 됨.",
+ "caption": "장면",
+ "description": "기기의 상태를 캡처하고 나중에 쉽게 호출할 수 있습니다",
+ "editor": {
+ "area": "영역",
+ "default_name": "새로운 장면",
+ "devices": {
+ "add": "기기 추가하기",
+ "delete": "기기 삭제하기",
+ "header": "기기",
+ "introduction": "장면에 포함하려는 기기를 추가하세요. 이 장면에서 원하는 상태로 모든 기기를 설정하세요."
+ },
+ "entities": {
+ "add": "구성요소 추가하기",
+ "delete": "구성요소 삭제하기",
+ "device_entities": "기기에 속하는 구성요소를 추가하면 해당 기기가 추가됩니다.",
+ "header": "구성요소",
+ "introduction": "기기에 속하지 않은 구성요소는 여기에서 설정할 수 있습니다.",
+ "without_device": "기기가 없는 구성요소"
+ },
+ "icon": "아이콘",
+ "introduction": "장면을 사용하여 집에 활기를 불어넣어 보세요.",
+ "load_error_not_editable": "scenes.yaml에 구성된 장면만 편집할 수 있습니다.",
+ "load_error_unknown": "장면을 읽어오는 도중 오류가 발생했습니다 ({err_no}).",
+ "name": "이름",
+ "save": "저장하기",
+ "unsaved_confirm": "변경된 내용을 저장하지 않았습니다. 이 페이지를 떠나시겠습니까?"
+ },
+ "picker": {
+ "add_scene": "장면 추가하기",
+ "delete_confirm": "이 장면을 삭제하시겠습니까?",
+ "delete_scene": "장면 삭제하기",
+ "duplicate": "복제하기",
+ "duplicate_scene": "장면 복제하기",
+ "edit_scene": "장면 편집하기",
+ "header": "장면 편집기",
+ "headers": {
+ "name": "이름"
+ },
+ "introduction": "장면 편집기를 사용하여 장면을 작성하고 편집 할 수 있습니다. 아래 링크를 따라 안내사항을 읽고 Home Assistant를 올바르게 구성했는지 확인해보세요.",
+ "learn_more": "장면에 대해 더 알아보기",
+ "no_scenes": "장면을 찾을 수 없습니다",
+ "only_editable": "scenes.yaml에 정의된 장면만 편집할 수 있습니다.",
+ "pick_scene": "편집할 장면 선택하기",
+ "show_info_scene": "장면에 대한 정보 표시하기"
+ }
+ },
+ "script": {
+ "caption": "스크립트",
+ "description": "일련의 동작을 실행하는 스크립트를 관리합니다",
+ "editor": {
+ "alias": "이름",
+ "default_name": "새로운 스크립트",
+ "delete_confirm": "이 스크립트를 삭제하시겠습니까?",
+ "delete_script": "스크립트 삭제하기",
+ "header": "스크립트: {name}",
+ "icon": "아이콘",
+ "id": "구성요소 ID",
+ "id_already_exists": "ID가 이미 존재합니다",
+ "id_already_exists_save_error": "고유한 ID가 아니므로 이 스크립트를 저장할 수 없습니다. 다른 ID를 선택하거나 자동생성하려면 비워두세요.",
+ "introduction": "스크립트를 사용하여 일련의 동작을 실행합니다.",
+ "link_available_actions": "사용가능한 동작에 대해 더 알아보기.",
+ "load_error_not_editable": "scripts.yaml 의 스크립트만 편집할 수 있습니다.",
+ "max": {
+ "parallel": "최대 병렬 실행 수",
+ "queued": "최대 대기열 길이"
+ },
+ "modes": {
+ "description": "모드는 스크립트가 하나 이상의 이전 호출에서 계속 실행되는 동안 스크립트가 호출될 때 실행되는 작업을 제어합니다. 자세한 내용은 {documentation_link}을(를) 확인해주세요.",
+ "documentation": "스크립트 문서",
+ "label": "모드",
+ "parallel": "병렬",
+ "queued": "대기열",
+ "restart": "다시 시작하기",
+ "single": "단일 (기본값)"
+ },
+ "save_script": "스크립트 저장",
+ "sequence": "시퀀스",
+ "sequence_sentence": "이 스크립트의 동작 시퀀스.",
+ "show_trace": "추적 표시하기"
+ },
+ "picker": {
+ "add_script": "스크립트 추가하기",
+ "dev_script": "스크립트 디버그",
+ "duplicate": "복제하기",
+ "duplicate_script": "스크립트 복제하기",
+ "edit_script": "스크립트 편집하기",
+ "header": "스크립트 편집기",
+ "headers": {
+ "name": "이름"
+ },
+ "introduction": "스크립트 편집기를 사용하여 스크립트를 작성하고 편집할 수 있습니다. 아래 링크를 따라 안내사항을 읽고 Home Assistant를 올바르게 구성했는지 확인해보세요.",
+ "learn_more": "스크립트에 대해 더 알아보기",
+ "no_scripts": "스크립트를 찾을 수 없습니다",
+ "run_script": "스크립트 실행",
+ "show_info": "스크립트에 대한 정보 표시하기"
+ }
+ },
+ "server_control": {
+ "caption": "서버 제어",
+ "description": "Home Assistant 서버를 다시 시작하거나 중지합니다",
+ "section": {
+ "reloading": {
+ "automation": "자동화",
+ "command_line": "명령줄 구성요소",
+ "core": "위치 및 사용자화",
+ "filesize": "파일 크기 구성요소",
+ "filter": "필터 구성요소",
+ "generic": "일반 IP 카메라 구성요소",
+ "generic_thermostat": "일반 온도 조절기 구성요소",
+ "group": "그룹, 그룹 구성요소 및 알림 서비스",
+ "heading": "YAML 구성 다시 읽어오기",
+ "history_stats": "기록 통계 구성요소",
+ "homekit": "HomeKit",
+ "input_boolean": "논리 입력",
+ "input_button": "버튼 입력",
+ "input_datetime": "날짜/시간 입력",
+ "input_number": "숫자 입력",
+ "input_select": "선택 입력",
+ "input_text": "문자 입력",
+ "introduction": "Home Assistant의 일부 구성 내용은 다시 시작할 필요 없이 다시 읽어 들일 수 있습니다. 다시 읽어오기를 누르면 현재 사용 중인 YAML 구성 내용을 내리고 새로운 구성 내용을 읽어 들입니다.",
+ "min_max": "최소/최대 구성요소",
+ "mqtt": "직접 구성한 MQTT 구성요소",
+ "person": "구성원",
+ "ping": "Ping 이진 센서 구성요소",
+ "reload": "{domain}",
+ "rest": "REST 구성요소 및 알림 서비스",
+ "rpi_gpio": "Raspberry Pi GPIO 구성요소",
+ "scene": "장면",
+ "script": "스크립트",
+ "smtp": "SMTP 알림 서비스",
+ "statistics": "통계 구성요소",
+ "telegram": "Telegram 알림 서비스",
+ "template": "템플릿 구성요소",
+ "themes": "테마",
+ "timer": "타이머",
+ "trend": "추세 구성요소",
+ "universal": "범용 미디어 플레이어 구성요소",
+ "zone": "지역"
+ },
+ "server_management": {
+ "confirm_restart": "Home Assistant를 다시 시작하시겠습니까?",
+ "confirm_stop": "Home Assistant를 중지하시겠습니까?",
+ "heading": "서버 관리",
+ "introduction": "Home Assistant 서버를 제어합니다.",
+ "restart": "다시 시작하기",
+ "stop": "중지하기"
+ },
+ "validation": {
+ "check_config": "구성 내용 확인",
+ "heading": "구성 내용 유효성 검사",
+ "introduction": "최근에 구성 내용을 추가 혹은 변경하셨다면, 구성 내용 확인 버튼을 눌러 구성 내용이 올바른지 검사하고 Home Assistant가 정상 작동 되는지 확인하실 수 있습니다.",
+ "invalid": "구성 내용이 잘못되었습니다",
+ "valid": "구성 내용이 모두 올바릅니다!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "태그 추가하기",
+ "automation_title": "{name} 태그가 검색되었습니다",
+ "caption": "태그",
+ "confirm_remove": "{tag} 태그를 제거하시겠습니까?",
+ "confirm_remove_title": "태그를 제거하시겠습니까?",
+ "create_automation": "태그로 자동화 구성하기",
+ "description": "NFC 태그, QR 코드 등이 스캔될 때 자동화를 트리거합니다",
+ "detail": {
+ "companion_apps": "컴패니언 앱",
+ "create": "만들기",
+ "create_and_write": "만들고 쓰기",
+ "delete": "삭제하기",
+ "description": "상세정보",
+ "name": "이름",
+ "new_tag": "새로운 태그",
+ "tag_id": "태그 ID",
+ "tag_id_placeholder": "비워두면 자동으로 생성됩니다",
+ "update": "업데이트하기",
+ "usage": "태그는 스캔될 때 자동화를 트리거할 수 있으며, NFC 태그, QR 코드 또는 다른 지원되는 모든 종류의 태그를 사용할 수 있습니다. {companion_link}을(를) 사용하여 이 태그를 프로그래밍 가능한 NFC 태그에 쓰거나 아래에서 QR 코드를 만들어주세요."
+ },
+ "edit": "편집하기",
+ "headers": {
+ "last_scanned": "최근 검색 됨",
+ "name": "이름"
+ },
+ "learn_more": "태그에 대해 더 알아보기",
+ "never_scanned": "검색된 적 없음",
+ "no_tags": "태그 없음",
+ "write": "쓰기"
+ },
+ "updates": {
+ "more_updates": "+ {count} 업데이트",
+ "show": "표시하기",
+ "show_all_updates": "모든 업데이트 표시",
+ "title": "{count} {count, plural,\n one {업데이트}\n other {업데이트}\n}",
+ "unable_to_fetch": "사용 가능한 업데이트를 가져올 수 없습니다.",
+ "version_available": "버전 {version_available} 사용 가능"
+ },
+ "users": {
+ "add_user": {
+ "caption": "사용자 계정 만들기",
+ "create": "만들기",
+ "local_only": "로컬 전용",
+ "password": "비밀번호",
+ "password_confirm": "비밀번호 확인",
+ "password_not_match": "비밀번호가 일치하지 않습니다"
+ },
+ "caption": "사용자",
+ "description": "Home Assistant 사용자 계정을 관리합니다",
+ "editor": {
+ "activate_user": "사용자 활성화",
+ "active": "활성화",
+ "active_tooltip": "사용자가 로그인할 수 있는지 여부를 제어합니다",
+ "admin": "관리자",
+ "caption": "사용자 보기",
+ "change_password": "비밀번호 변경",
+ "confirm_user_deletion": "{name}을(를) 삭제하시겠습니까?",
+ "deactivate_user": "사용자 비활성화",
+ "delete_user": "사용자 삭제하기",
+ "group": "그룹",
+ "id": "ID",
+ "local_only": "로컬 네트워크에서만 로그인할 수 있습니다.",
+ "name": "표시 이름",
+ "new_password": "새로운 비밀번호",
+ "owner": "소유자",
+ "password_changed": "비밀번호가 변경되었습니다.",
+ "system_generated": "시스템 자동 생성",
+ "system_generated_users_not_editable": "시스템 자동 생성 사용자는 업데이트할 수 없습니다.",
+ "system_generated_users_not_removable": "시스템 자동 생성 사용자는 제거할 수 없습니다.",
+ "unnamed_user": "이름이 없는 사용자",
+ "update_user": "업데이트",
+ "username": "사용자 이름"
+ },
+ "is_local": "로컬 사용자",
+ "is_not_active": "비활성화됨",
+ "is_owner": "소유자",
+ "is_system": "시스템 사용자",
+ "picker": {
+ "add_user": "사용자 추가하기",
+ "headers": {
+ "group": "그룹",
+ "is_active": "활성화",
+ "is_owner": "소유자",
+ "local": "로컬 전용",
+ "name": "표시 이름",
+ "system": "시스템 자동 생성",
+ "username": "사용자 이름"
+ }
+ },
+ "users_privileges_note": "사용자 그룹 기능은 현재 작업 중이며, 사용자는 UI를 통해 인스턴스를 관리할 수 없습니다. 모든 사용자 관리 API 엔드포인트가 관리자에 대한 접근을 올바르게 제한하는지를 확인하는 중입니다."
+ },
+ "zha": {
+ "add_device": "기기 추가하기",
+ "add_device_page": {
+ "discovered_text": "기기가 발견되면 여기에 표시됩니다.",
+ "no_devices_found": "기기를 찾을 수 없습니다. 기기가 페어링 모드에 있는지 확인하고 검색이 실행되는 동안 절전모드가 해제되어있는지 확인해주세요.",
+ "pairing_mode": "기기가 페어링 모드인지 확인해주세요. 기기의 페어링 모드 설정 방법은 기기의 설명서를 참조해주세요.",
+ "search_again": "다시 찾기",
+ "spinner": "ZHA Zigbee 기기를 찾고있습니다..."
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "선택된 클러스터의 속성",
+ "get_zigbee_attribute": "Zigbee 속성 가져오기",
+ "header": "클러스터 속성",
+ "help_attribute_dropdown": "설정된 값을 보거나 설정하려면 속성을 선택해주세요.",
+ "help_get_zigbee_attribute": "선택한 속성의 값을 가져옵니다.",
+ "help_set_zigbee_attribute": "지정된 구성요소에서 지정된 클러스터의 속성 값을 설정합니다.",
+ "introduction": "클러스터 속성을 보고 편집합니다.",
+ "set_zigbee_attribute": "Zigbee 속성 설정하기"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "선택된 클러스터의 명령",
+ "header": "클러스터 명령",
+ "help_command_dropdown": "제어할 명령을 선택합니다.",
+ "introduction": "클러스터 명령을 보고 실행합니다.",
+ "issue_zigbee_command": "Zigbee 명령 실행"
+ },
+ "clusters": {
+ "header": "클러스터",
+ "help_cluster_dropdown": "속성과 명령을 보려면 클러스터를 선택해주세요.",
+ "introduction": "클러스터는 Zigbee 기능의 빌딩 블록으로, 기능을 논리 단위로 분리해서 구성합니다. 클라이언트 및 서버 유형이 있으며 속성 및 명령으로 구성됩니다."
+ },
+ "common": {
+ "clusters": "클러스터",
+ "manufacturer_code_override": "제조업체 코드 재정의",
+ "value": "값"
+ },
+ "configuration_page": {
+ "shortcuts_title": "바로 가기",
+ "update_button": "구성 업데이트"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "구성이 완료되었습니다",
+ "CONFIGURED_status_text": "초기화 중",
+ "INITIALIZED": "초기화가 완료되었습니다",
+ "INITIALIZED_status_text": "기기를 사용할 준비가 되었습니다",
+ "INTERVIEW_COMPLETE": "인터뷰가 완료되었습니다",
+ "INTERVIEW_COMPLETE_status_text": "구성 중",
+ "PAIRED": "기기가 발견되었습니다",
+ "PAIRED_status_text": "인터뷰 시작 중"
+ },
+ "group_binding": {
+ "bind_button_help": "선택한 그룹을 선택한 기기 클러스터에서 바인딩해주세요.",
+ "bind_button_label": "그룹 바인딩",
+ "cluster_selection_help": "선택한 그룹에 바인딩 할 클러스터를 선택해주세요.",
+ "group_picker_help": "바인딩 명령을 발행할 그룹을 선택해주세요.",
+ "group_picker_label": "바인딩 가능한 그룹",
+ "header": "그룹 바인딩",
+ "introduction": "그룹 바인딩 및 바인딩 해제",
+ "unbind_button_help": "선택한 그룹을 선택한 기기 클러스터에서 바인딩을 해제해주세요.",
+ "unbind_button_label": "그룹 바인딩 해제"
+ },
+ "groups": {
+ "add_group": "그룹 추가하기",
+ "add_members": "구성 기기 추가하기",
+ "caption": "그룹",
+ "create": "그룹 생성",
+ "create_group": "Zigbee Home Automation - 그룹 만들기",
+ "create_group_details": "새로운 Zigbee 그룹을 생성하기 위해 필요한 세부 사항을 입력해주세요",
+ "creating_group": "그룹 생성",
+ "delete": "그룹 삭제하기",
+ "group_details": "선택된 Zigbee 그룹의 모든 세부 정보는 다음과 같습니다.",
+ "group_id": "그룹 ID",
+ "group_info": "그룹 정보",
+ "group_name_placeholder": "그룹 이름",
+ "group_not_found": "그룹을 찾을 수 없습니다!",
+ "groups": "그룹",
+ "members": "구성 기기",
+ "remove_members": "구성 기기 제거하기",
+ "removing_members": "구성 기기 제거하기"
+ },
+ "network": {
+ "caption": "네트워크"
+ },
+ "visualization": {
+ "auto_zoom": "자동 확대",
+ "caption": "시각화",
+ "enable_physics": "물리(피직스) 활성화",
+ "header": "네트워크 시각화",
+ "highlight_label": "기기를 강조 표시하기",
+ "refresh_topology": "토폴로지 새로고침",
+ "zoom_label": "기기로 확대하기"
+ }
+ },
+ "zone": {
+ "add_zone": "지역 추가하기",
+ "caption": "지역",
+ "configured_in_yaml": "configuration.yaml에서 구성된 지역은 UI에서 편집할 수 없습니다.",
+ "confirm_delete": "이 지역을 삭제하시겠습니까?",
+ "create_zone": "지역 만들기",
+ "description": "구성원을 추적할 지역을 관리합니다",
+ "detail": {
+ "create": "만들기",
+ "delete": "삭제하기",
+ "icon": "아이콘",
+ "icon_error_msg": "아이콘은 \"접두사:아이콘이름\" 형식이어야 합니다. 예: \"mdi:home\"",
+ "latitude": "위도",
+ "longitude": "경도",
+ "name": "이름",
+ "new_zone": "새로운 지역",
+ "passive": "자동화 전용",
+ "passive_note": "자동화 전용은 Frontend에 숨겨져 있으며 추적 기기의 위치로 사용되지 않습니다. 자동화에 사용하려는 경우에 유용합니다.",
+ "radius": "반경",
+ "required_error_msg": "이 입력란은 필수 요소입니다",
+ "update": "업데이트"
+ },
+ "edit_home_zone": "집 지역의 반경은 아직 Frontend에서 편집할 수 없습니다. 집 지역을 이동하려면 지도에서 마커를 끌어놓아 주세요.",
+ "edit_home_zone_narrow": "집 지역의 반경은 아직 Frontend에서 편집할 수 없습니다. 위치는 일반 구성에서 변경할 수 있습니다.",
+ "edit_zone": "영역 편집하기",
+ "go_to_core_config": "일반 구성으로 이동하시겠습니까?",
+ "home_zone_core_config": "집 지역의 위치는 일반 구성 페이지에서 편집할 수 있습니다. 집 지역의 반경은 아직 Frontend에서 편집할 수 없습니다. 일반 구성으로 이동하시겠습니까?",
+ "introduction": "지역을 사용하면 지구 상의 특정 위치를 지정할 수 있습니다. 구성원이 지역 내에 있으면 구성요소 상태에서 지역의 이름을 가져옵니다. 자동화 설정 내에서 지역을 트리거 또는 조건으로 사용할 수도 있습니다.",
+ "no_zones_created_yet": "아직 설정한 지역이 없는 것 같습니다."
+ },
+ "zwave": {
+ "common": {
+ "index": "색인",
+ "instance": "인스턴스",
+ "unknown": "알 수 없음",
+ "value": "값",
+ "wakeup_interval": "절전모드 해제 간격"
+ },
+ "description": "Z-Wave 네트워크를 관리합니다",
+ "learn_more": "Z-Wave에 대해 더 알아보기",
+ "migration": {
+ "ozw": {
+ "header": "OpenZWave 로 마이그레이션 하기",
+ "introduction": "이 마법사는 기존의 Z-Wave 통합 구성요소에서 현재 베타 상태인 OpenZWave 통합 구성요소로 마이그레이션 하도록 도와드립니다."
+ },
+ "zwave_js": {
+ "header": "Z-Wave JS로 마이그레이션",
+ "introduction": "이 통합구성요소는 더 이상 유지되지 않으며 Z-Wave JS 로 변경하는 것을 권장합니다. 이 마법사는 기존 Z-Wave 통합구성요소에서 새로운 Z-Wave JS 통합구성요소로 마이그레이션하는것을 도와줍니다."
+ }
+ },
+ "network_management": {
+ "header": "Z-Wave 네트워크 관리",
+ "introduction": "Z-Wave 네트워크에 명령을 실행해주세요. 대부분의 명령이 성공했는지에 대한 피드백은 받을 수 없지만, OZW 로그를 통해 확인해 볼 수 있습니다."
+ },
+ "network_status": {
+ "network_started": "Z-Wave 네트워크 시작됨",
+ "network_started_note_all_queried": "모든 노드가 쿼리되었습니다.",
+ "network_started_note_some_queried": "절전모드 해제 노드가 쿼리되었습니다. 절전모드 노드는 절전모드 해제 상태일 때 쿼리됩니다.",
+ "network_starting": "Z-Wave 네트워크를 시작하는 중...",
+ "network_starting_note": "네트워크 규모에 따라 다소 시간이 걸릴 수 있습니다.",
+ "network_stopped": "Z-Wave 네트워크 중지됨"
+ },
+ "node_config": {
+ "config_parameter": "구성 매개 변수",
+ "config_value": "구성 값",
+ "false": "거짓",
+ "header": "노드 구성 옵션",
+ "seconds": "초",
+ "set_config_parameter": "구성 매개 변수 설정",
+ "set_wakeup": "절전모드 해제 간격 설정하기",
+ "true": "참"
+ },
+ "node_management": {
+ "add_to_group": "그룹에 추가하기",
+ "entities": "이 노드의 구성요소",
+ "entity_info": "구성요소 정보",
+ "exclude_entity": "Home Assistant에서 이 구성요소 제외",
+ "group": "그룹",
+ "header": "Z-Wave 노드 관리",
+ "introduction": "단일 노드에 영향을 주는 Z-Wave 명령을 실행합니다. 사용 가능한 명령 목록을 보려면 노드를 선택해주세요.",
+ "max_associations": "최대 관련요소:",
+ "node_group_associations": "노드 그룹 관련요소",
+ "node_protection": "노드 보호",
+ "node_to_control": "제어할 노드",
+ "nodes": "노드",
+ "nodes_hint": "노드별 옵션을 보려면 노드를 선택해주세요.",
+ "nodes_in_group": "이 그룹의 다른 노드:",
+ "pooling_intensity": "폴링 강도",
+ "protection": "보호",
+ "remove_broadcast": "송출 제거하기",
+ "remove_from_group": "그룹에서 제거하기",
+ "set_protection": "보호 설정"
+ },
+ "ozw_log": {
+ "header": "OZW 로그",
+ "introduction": "로그를 봐주세요. 최솟값은 0(전체 로그를 불러올 때)이고 최댓값은 1000 입니다. 로드된 로그는 정적 로그를 보여주며 로그의 끝 부분은 최근 기록된 로그로 자동으로 업데이트됩니다.",
+ "last_log_lines": "최근 기록된 로그 수",
+ "load": "로드",
+ "tail": "로그의 끝 부분"
+ },
+ "services": {
+ "add_node": "노드 추가하기",
+ "add_node_secure": "노드 보안 추가하기",
+ "cancel_command": "명령 취소",
+ "heal_network": "네트워크 복구",
+ "heal_node": "노드 복구",
+ "node_info": "노드 정보",
+ "print_node": "노드 출력",
+ "refresh_entity": "구성요소 새로고침",
+ "refresh_node": "노드 새로고침",
+ "remove_failed_node": "실패한 노드 제거하기",
+ "remove_node": "노드 제거하기",
+ "replace_failed_node": "실패한 노드 교체",
+ "save_config": "구성 저장",
+ "soft_reset": "소프트 리셋",
+ "start_network": "네트워크 시작",
+ "stop_network": "네트워크 중지",
+ "test_network": "네트워크 테스트",
+ "test_node": "노드 테스트"
+ },
+ "values": {
+ "header": "노드 값"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "연결 거부하기",
+ "check_logs": "자세한 내용이 필요하면 로그를 활성화하세요.",
+ "choose_inclusion_strategy": "기기를 어떻게 추가하시겠습니까?",
+ "controller_in_inclusion_mode": "Z-Wave 컨트롤러가 이제 연결 허용 모드에 있습니다",
+ "enter_qr_code": "QR코드 값 입력",
+ "follow_device_instructions": "기기를 연결하려면 기기의 설명서를 따라주세요.",
+ "inclusion_failed": "노드를 추가할 수 없습니다. 자세한 내용은 로그를 확인해주세요.",
+ "inclusion_finished": "노드가 추가되었습니다.",
+ "interview_failed": "장치 인터뷰에 실패했습니다. 로그에서 추가 정보를 확인할 수 있습니다.",
+ "interview_started": "장치가 인터뷰중입니다. 시간이 좀 걸릴 수 있습니다.",
+ "introduction": "이 마법사는 Z-Wave 네트워크에 노드를 추가하는 과정을 안내해드립니다.",
+ "provisioning_finished": "기기가 추가되었습니다. 전원을 켜면 사용할 수 있게 됩니다.",
+ "qr_code": "QR코드",
+ "qr_code_paragraph": "기기가 SmartStart를 지원하는 경우 QR코드를 스캔하여 쉽게 페어링할 수 있습니다.",
+ "scan_qr_code": "QR코드 스캔",
+ "searching_device": "기기 검색",
+ "secure_inclusion_warning": "보안 기기에는 추가 대역폭이 필요합니다. 보안 기기가 너무 많으면 Z-Wave 네트워크의 속도가 느려질 수 있습니다. 잠금장치나 차고 문 개폐기와 같이 보안이 필요한 기기에만 보안 포함을 사용하는 것이 좋습니다.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "예: S2 지원이 없는 레거시 도어락",
+ "title": "S0 레거시"
+ },
+ "S2_AccessControl": {
+ "description": "예: 도어락 및 차고 문",
+ "title": "S2 액세스 제어"
+ },
+ "S2_Authenticated": {
+ "description": "예: 조명, 센서 및 보안 시스템",
+ "title": "S2 인증"
+ },
+ "S2_Unauthenticated": {
+ "description": "S2 인증처럼 인증되었지만 올바른 기기가 포함되어 있는지 확인하지 못했습니다.",
+ "title": "S2 인증되지 않음"
+ }
+ },
+ "select_camera": "카메라 선택",
+ "start_inclusion": "연결 시작하기",
+ "start_secure_inclusion": "암호화 연결 시작하기",
+ "title": "Z-Wave 노드 추가하기",
+ "use_secure_inclusion": "암호화 연결 사용하기",
+ "view_device": "기기 보기"
+ },
+ "common": {
+ "add_node": "노드 추가하기",
+ "back": "뒤로가기",
+ "close": "닫기",
+ "heal_network": "네트워크 복구",
+ "home_id": "집 ID",
+ "network": "네트워크",
+ "node_id": "노드 ID",
+ "reconfigure_server": "서버 재구성",
+ "remove_node": "노드 제거하기",
+ "source": "소스"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\none{개의 기기}\nother{개의 기기}\n}",
+ "driver_version": "드라이버 버전",
+ "dump_dead_nodes_text": "일부 노드가 응답하지 않고 작동하지 않는 것 같습니다. 이러한 항목은 완전히 내보내지지 않습니다.",
+ "dump_dead_nodes_title": "일부 노드가 작동하지 않습니다",
+ "dump_debug": "문제 진단에 도움이 되는 네트워크 덤프 내려받기",
+ "dump_not_ready_confirm": "내려받기",
+ "dump_not_ready_text": "모든 노드가 준비되지 않은 상태에서 내보내기를 생성하면 필요한 데이터가 누락될 수 있습니다. 네트워크에 모든 노드를 등록 할 시간을 주세요. 덤프를 계속하시겠습니까?",
+ "dump_not_ready_title": "모든 노드가 아직 준비되지 않았습니다",
+ "header": "Z-Wave 네트워크를 관리합니다",
+ "home_id": "집 ID",
+ "introduction": "Z-Wave 네트워크 및 Z-Wave 노드를 관리합니다",
+ "nodes_ready": "노드 준비 완료",
+ "not_ready": "{count}개 준비되지 않음",
+ "provisioned_devices": "인식된 기기",
+ "server_url": "서버 URL",
+ "server_version": "서버 버전"
+ },
+ "device_info": {
+ "device_config": "기기 구성",
+ "heal_node": "노드 복구",
+ "highest_security": "최고등급 보안",
+ "is_secure": "보안",
+ "node_ready": "노드 준비",
+ "node_status": "노드 상태",
+ "reinterview_device": "장치 재인터뷰",
+ "remove_failed": "실패한 장치 제거",
+ "unknown": "알 수 없음",
+ "zwave_info": "Z-Wave 정보",
+ "zwave_plus": "Z-Wave 플러스",
+ "zwave_plus_version": "버전 {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "네트워크 복구가 취소되었습니다.",
+ "healing_complete": "네트워크 복구가 완료되었습니다.",
+ "healing_failed": "복구에 실패했습니다. 로그에서 추가 정보를 확인할 수 있습니다.",
+ "in_progress": "네트워크 복구가 진행 중입니다. 시간이 좀 걸립니다.",
+ "introduction": "Z-Wave 네트워크 복구를 시작합니다. 네트워크 복구 시 모든 장치가 컨트롤러와의 경로를 재설정하며 최근 장치나 컨트롤러의 위치를 이동 한 경우 권장됩니다.",
+ "run_in_background": "이 대화 상자를 닫을 수 있으며 네트워크 복구는 백그라운드에서 계속됩니다.",
+ "start_heal": "복구 시작",
+ "stop_heal": "복구 중지",
+ "title": "Z-Wave 네트워크 복구",
+ "traffic_warning": "복구 프로세스는 Z-Wave 네트워크에서 많은 양의 트래픽을 생성합니다. 이로 인해 치료가 진행되는 동안 장치가 느리게 (또는 전혀 응답하지 않을) 수 있습니다."
+ },
+ "heal_node": {
+ "healing_complete": "{device} 이(가) 복구되었습니다.",
+ "healing_failed": "{device} 복구할 수 없습니다.",
+ "healing_failed_check_logs": "추가 정보는 로그에서 확인할 수 있습니다.",
+ "in_progress": "{device} 복구가 진행 중입니다.",
+ "introduction": "컨트롤러에 대한 경로를 다시 업데이트하도록 {device} 장치에 통보합니다. 최근에 장치 또는 컨트롤러를 이동한 경우 통신 문제를 해결하는 데 도움이 될 수 있습니다.",
+ "network_heal_in_progress": "Z-Wave 네트워크 복구가 이미 진행 중입니다. 개별 장치의 복구가 완료될 때까지 기다리십시오.",
+ "start_heal": "장치 복구",
+ "title": "Z-Wave 장치 복구",
+ "traffic_warning": "복구 과정은 Z-Wave 네트워크에서 많은 양의 트래픽을 생성합니다. 이로 인해 복구가 진행되는 동안 장치가 느리게(또는 반응 없이) 응답할 수 있습니다."
+ },
+ "logs": {
+ "download_logs": "로그 다운로드",
+ "log_level": "로그 레벨",
+ "log_level_changed": "로그 레벨이 변경되었습니다: {level}",
+ "subscribed_to_logs": "Z-Wave JS 로그 메시지 수신 …",
+ "title": "Z-Wave JS 로그"
+ },
+ "navigation": {
+ "logs": "로그",
+ "network": "네트워크"
+ },
+ "network_status": {
+ "connected": "연결됨",
+ "connecting": "연결 중",
+ "unknown": "알 수 없음"
+ },
+ "node_config": {
+ "attribution": "기기를 구성하는 매개 변수 및 설명은 {device_database}에서 제공됩니다",
+ "battery_device_notice": "배터리 방식 기기의 구성을 업데이트하려면 기기가 절전 해제된 상태이어야 합니다. 기기의 절전 모드를 해제하는 방법은 기기의 설명서를 참조해주세요.",
+ "error_device_not_found": "기기를 찾을 수 없습니다",
+ "header": "Z-Wave 기기 구성",
+ "introduction": "선택한 기기(노드)의 매개 변수를 관리하고 조정합니다.",
+ "parameter": "매개변수",
+ "parameter_is_read_only": "이 매개 변수는 읽기 전용입니다.",
+ "set_param_accepted": "매개 변수가 업데이트되었습니다.",
+ "set_param_error": "오류가 발생했습니다.",
+ "set_param_queued": "기기의 절전모드가 해제되면 매개 변수가 업데이트됩니다.",
+ "zwave_js_device_database": "Z-Wave JS 기기 데이터베이스"
+ },
+ "node_status": {
+ "alive": "사용가능",
+ "asleep": "절전",
+ "awake": "절전해제",
+ "dead": "사용불가",
+ "unknown": "알 수 없음"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "기기를 제외하면 전원이 켜질 때 Home Assistant에 추가되지 않습니다. 이미 Home Assistant에 추가된 경우 인식된 기기를 제거하더라도 Home Assistant에서 제거되지 않습니다.",
+ "confirm_unprovision_title": "이 기기를 제외하시겠습니까?",
+ "dsk": "DSK",
+ "included": "포함",
+ "not_included": "비포함",
+ "security_classes": "보안 클래스",
+ "unprovison": "제외하기"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "재인터뷰를 시작하기 전에 배터리를 사용하는 기기의 절전 모드를 해제해야 합니다. 절전 모드를 해제하는 방법은 기기 설명서를 참조하십시오.",
+ "in_progress": "기기가 인터뷰중입니다. 시간이 좀 걸릴 수 있습니다.",
+ "interview_complete": "기기 인터뷰가 완료되었습니다.",
+ "interview_failed": "기기 인터뷰에 실패했습니다. 로그에서 정보를 확인할 수 있습니다.",
+ "introduction": "Z-Wave 네트워크 상의 기기를 다시 인터뷰합니다. 기기가 사라지거나 오동작할 경우에 이 기능을 사용하십시오.",
+ "run_in_background": "이 대화 상자를 닫을 수 있으며 인터뷰는 백그라운드에서 계속됩니다.",
+ "start_reinterview": "재인터뷰 시작",
+ "title": "Z-Wave 기기 재인터뷰"
+ },
+ "remove_failed_node": {
+ "in_progress": "장치 제거가 진행 중입니다.",
+ "introduction": "Z-Wave 네트워크에서 실패한 장치를 제거하십시오. 기기가 고장 등으로 정상적으로 제외할 수 없는 경우에 사용합니다.",
+ "removal_failed": "Z-Wave 네트워크에서 장치를 제거할 수 없습니다.",
+ "removal_finished": "Z-Wave 네트워크에서 {id} 노드가 제거되었습니다.",
+ "remove_device": "장치 제거",
+ "title": "실패한 Z-Wave 장치 제거"
+ },
+ "remove_node": {
+ "cancel_exclusion": "제외 취소하기",
+ "controller_in_exclusion_mode": "Z-Wave 컨트롤러가 이제 제외 모드에 있습니다",
+ "exclusion_failed": "노드를 제거할 수 없습니다. 자세한 내용은 로그를 확인해주세요.",
+ "exclusion_finished": "Z-Wave 네트워크에서 {id} 노드가 제거되었습니다.",
+ "follow_device_instructions": "기기를 제거하려면 기기의 설명서를 따라주세요.",
+ "introduction": "Z-Wave 네트워크에서 노드를 제거하고 Home Assistant에서 연결된 기기와 구성요소를 제거합니다.",
+ "start_exclusion": "제외 시작하기",
+ "title": "Z-Wave 노드 제거하기"
+ },
+ "security_classes": {
+ "None": {
+ "title": "없음"
+ },
+ "S0_Legacy": {
+ "description": "예: S2 지원이 없는 레거시 도어락",
+ "title": "S0 레거시"
+ },
+ "S2_AccessControl": {
+ "description": "예: 도어락 및 차고 문",
+ "title": "S2 액세스 제어"
+ },
+ "S2_Authenticated": {
+ "description": "예: 조명, 센서 및 보안 시스템",
+ "title": "S2 인증"
+ },
+ "S2_Unauthenticated": {
+ "description": "S2 인증처럼 인증되었지만 올바른 기기가 포함되어 있는지 확인하지 못했습니다.",
+ "title": "S2 미인증"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Home Assistant의 모든 데이터에 접근할 수 있습니다.",
+ "hide_message": "이 메시지를 숨기려면 panel_custom 구성요소에 대한 문서를 확인해주세요",
+ "question_trust": "{link}의 외부 패널 {name}을(를) 신뢰하십니까?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "리스너 활성화",
+ "alert_event_type": "이벤트 유형은 필수 입력 요소입니다",
+ "available_events": "사용 가능한 이벤트",
+ "count_listeners": " ({count}개의 청취객체)",
+ "data": "이벤트 데이터 (YAML, 선택 사항)",
+ "description": "이벤트 버스에서 이벤트를 발행합니다.",
+ "documentation": "이벤트 문서",
+ "event_fired": "{name} 이벤트가 발행됨",
+ "fire_event": "이벤트 발행",
+ "listen_to_events": "이벤트 내용 들어보기",
+ "listening_to": "이벤트 청취 중",
+ "notification_event_fired": "{type} 이벤트가 성공적으로 발행되었습니다!",
+ "start_listening": "청취 시작",
+ "stop_listening": "그만 듣기",
+ "subscribe_to": "청취할 이벤트",
+ "title": "이벤트",
+ "type": "이벤트 유형"
+ },
+ "services": {
+ "accepts_target": "이 서비스는 대상을 지정할 수 있습니다. 예: `entity_id: light.bed_light`",
+ "all_parameters": "사용 가능한 모든 매개 변수",
+ "call_service": "서비스 호출",
+ "column_description": "상세정보",
+ "column_example": "예제",
+ "column_parameter": "매개 변수",
+ "description": "서비스 개발자 도구를 사용하면 Home Assistant에서 사용 가능한 서비스를 호출할 수 있습니다.",
+ "fill_example_data": "예제 데이터를 입력란에 넣기",
+ "no_template_ui_support": "UI에서 템플릿을 지원하지 않습니다. YAML 편집기를 이용해주세요.",
+ "title": "서비스",
+ "ui_mode": "UI 모드로 이동하기",
+ "yaml_mode": "YAML 모드로 이동하기",
+ "yaml_parameters": "매개 변수는 YAML 모드에서만 사용할 수 있습니다"
+ },
+ "states": {
+ "alert_entity_field": "구성요소는 필수 입력 요소입니다",
+ "attributes": "속성",
+ "copy_id": "클립보드에 ID 복사하기",
+ "current_entities": "구성요소 현재 상태",
+ "description1": "Home Assistant 구성요소의 상태를 설정합니다.",
+ "description2": "Home Assistant 내에서만 설정되며, 실제로 기기와 통신하는것은 아닙니다.",
+ "entity": "구성요소",
+ "filter_attributes": "속성 필터",
+ "filter_entities": "구성요소 필터",
+ "filter_states": "상태 필터",
+ "last_changed": "최근 변경 됨",
+ "last_updated": "최근 업데이트 됨",
+ "more_info": "추가 정보",
+ "no_entities": "구성요소가 없습니다",
+ "set_state": "상태 설정",
+ "state": "상태",
+ "state_attributes": "상태 속성 (YAML, 선택 사항)",
+ "title": "상태"
+ },
+ "statistics": {
+ "entity": "구성요소",
+ "fix_issue": {
+ "fix": "문제 해결하기",
+ "units_changed": {
+ "clear": "이 구성요소의 이전 통계 데이터 모두 삭제",
+ "fix": "문제 해결하기",
+ "title": "이 구성요소의 단위가 변경되었습니다.",
+ "update": "과거 통계 값을 '' {metadata_unit} ''에서 '' {state_unit} ''(으)로 업데이트"
+ }
+ },
+ "issue": "문제",
+ "issues": {
+ "entity_no_longer_recorded": "이 구성요소는 더 이상 기록되지 않습니다.",
+ "entity_not_recorded": "이 구성요소는 기록항목에서 제외됩니다.",
+ "no_state": "이 구성요소를 표시할 수 있는 상태가 없습니다.",
+ "units_changed": "이 구성요소의 단위가 '' {metadata_unit} ''에서 '' {state_unit} ''(으)로 변경되었습니다.",
+ "unsupported_state_class": "이 구성요소의 상태 클래스 '' {state_class} ''은(는) 지원되지 않습니다.",
+ "unsupported_unit": "이 구성요소의 단위('' {state_unit} '')가 기기 클래스 '' {device_class} ''의 단위와 일치하지 않습니다.",
+ "unsupported_unit_metadata": "통계에 기록된 단위(\"{metadata_unit}\")가 기기 클래스 \"{device_class}\"의 단위 \"{supported_unit}\"와 일치하지 않습니다.",
+ "unsupported_unit_state": "이 구성요소의 단위('' {state_unit} '')가 기기 클래스 '' {device_class} ''의 단위와 일치하지 않습니다."
+ },
+ "no_issue": "문제 없음",
+ "title": "통계"
+ },
+ "templates": {
+ "all_listeners": "이 템플릿은 모든 상태 변경 이벤트를 수신합니다.",
+ "description": "템플릿은 Home Assistant의 특정 확장기능의 일부로써, Jinja2 템플릿 엔진을 사용하여 구성됩니다.",
+ "domain": "도메인",
+ "editor": "템플릿 편집기",
+ "entity": "구성요소",
+ "jinja_documentation": "Jinja2 템플릿 문서 보기",
+ "listeners": "이 템플릿은 다음의 상태 변경 이벤트를 수신합니다.",
+ "no_listeners": "이 템플릿은 이벤트를 수신하지 않으며 자동으로 업데이트되지 않습니다.",
+ "reset": "데모 템플릿으로 재설정하기",
+ "result_type": "결과 유형",
+ "template_extensions": "Home Assistant 템플릿 확장기능 문서 보기",
+ "time": "이 템플릿은 매 분마다 업데이트됩니다.",
+ "title": "템플릿",
+ "unknown_error_template": "템플릿 구성 중 알 수 없는 오류가 발생했습니다"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "개별 기기 모니터링",
+ "energy_distribution_title": "에너지 분배",
+ "energy_gas_graph_title": "가스 소비량",
+ "energy_solar_graph_title": "태양광 발전량",
+ "energy_sources_table_title": "소스",
+ "energy_usage_graph_title": "에너지 사용량"
+ },
+ "charts": {
+ "by_device": "장치별 소비량",
+ "solar": "태양광",
+ "stat_house_energy_meter": "총 에너지 소비량"
+ },
+ "setup": {
+ "back": "뒤로",
+ "done": "내 에너지 대시보드를 보여주세요!",
+ "next": "다음"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Lovelace UI를 직접 관리하는 경우에만 이 기능을 사용할 수 있습니다.",
+ "saving_failed": "Lovelace UI 구성을 저장하지 못했습니다.",
+ "yaml_unsupported": "YAML 모드에서 Lovelace UI를 사용하는 경우 이 기능은 사용할 수 없습니다."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "\"{action}\" 동작을 실행하시겠습니까?",
+ "no_entity_more_info": "자세한 정보 대화상자에 구성요소가 제공되지 않았습니다",
+ "no_entity_toggle": "토글 할 구성요소가 제공되지 않았습니다",
+ "no_navigation_path": "뷰 탐색 경로가 지정되지 않았습니다",
+ "no_service": "실행할 서비스가 지정되지 않았습니다",
+ "no_url": "URL이 지정되지 않았습니다"
+ },
+ "confirm_delete": "이 카드를 삭제하시겠습니까?",
+ "empty_state": {
+ "go_to_integrations_page": "통합 페이지로 이동하기.",
+ "no_devices": "이 페이지에서 기기를 제어할 수 있지만, 기기가 아직 설정되지 않은 것 같습니다. 시작하려면 통합 페이지로 이동해주세요.",
+ "title": "집에 오신 것을 환영합니다"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "이 카드는 가정에서 소비하는 에너지 중 태양열, 풍력 및 원자력과 같은 비화석 연료로 사용한 에너지의 양을 나타냅니다. 높을수록 좋습니다!",
+ "non_fossil_energy_consumed": "비화석 에너지 소비량",
+ "non_fossil_energy_not_calculated": "소비된 비화석 에너지는 계산할 수 없습니다."
+ },
+ "energy_devices_graph": {
+ "energy_usage": "에너지 사용량"
+ },
+ "energy_distribution": {
+ "battery": "배터리",
+ "gas": "가스",
+ "go_to_energy_dashboard": "에너지 대시보드로 이동",
+ "grid": "그리드",
+ "home": "집",
+ "non_fossil": "비화석 에너지",
+ "solar": "태양광 에너지",
+ "title_today": "오늘의 에너지 현황"
+ },
+ "energy_solar_graph": {
+ "forecast": "예측량 {name}",
+ "production": "발전량 {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "배터리 총계",
+ "cost": "비용",
+ "energy": "에너지",
+ "grid_total": "그리드 합계",
+ "source": "소스",
+ "total_costs": "총 비용"
+ },
+ "energy_usage_graph": {
+ "consumed_battery": "소비된 배터리",
+ "consumed_solar": "소비된 태양광 에너지",
+ "total_consumed": "총 소비 {num} kWh",
+ "total_returned": "총 반환 {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "바늘이 보라색에 위치한 경우 당신이 소비한 에너지보다 더 많은 에너지를 그리드에 반환했음을 의미합니다. 바늘이 파란색에 위치한 경우 그리드에 반환한 에너지보다 더 많은 에너지를 소비했음을 의미합니다.",
+ "energy_dependency": "이 카드는 에너지 의존도를 나타냅니다.",
+ "grid_neutrality_not_calculated": "그리드 중립성은 계산할 수 없습니다.",
+ "net_consumed_grid": "그리드에서 소비된 양",
+ "net_returned_grid": "그리드에 반환된 양",
+ "red_green_color_explain": "녹색이면 그리드에서 소비한 것보다 더 많은 에너지를 생산했음을 의미합니다. 빨간색이면 가정의 에너지 소비량 중 일부를 전력망에 의존했음을 의미합니다."
+ },
+ "loading": "읽는 중 ...",
+ "no_data": "표시할 데이터가 없습니다. 에너지 대시보드를 구성한 후 새 데이터가 표시되는데 최대 2시간이 걸릴 수 있습니다.",
+ "no_data_period": "이 기간에는 데이터가 없습니다.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "이 카드는 발전한 태양광 에너지 중 가정에서 사용한 양을 나타냅니다.",
+ "card_indicates_solar_energy_used_charge_home_bat": "이 수치가 낮고 태양광 발전량이 많을 때 가정용 배터리나 전기 자동차를 충전하는것을 고려해보세요.",
+ "not_produced_solar_energy": "아직 태양광 에너지가 발전되지 않았습니다.",
+ "self_consumed_solar_could_not_calc": "자가소비 태양광 에너지는 계산할 수 없습니다.",
+ "self_consumed_solar_energy": "자가소비 태양광 에너지"
+ }
+ },
+ "entities": {
+ "never_triggered": "트리거 된 적 없음"
+ },
+ "iframe": {
+ "error_secure_context": "Home Assistant가 {context_protocol}를 통해 구동되는 경우 {target_protocol}를 사용하는 웹사이트를 iframe으로 로드할 수 없습니다."
+ },
+ "map": {
+ "reset_focus": "초점 재설정하기"
+ },
+ "picture-elements": {
+ "call_service": "{name} 서비스 호출하기",
+ "hold": "누르고 있기:",
+ "more_info": "자세한 정보 표시하기: {name}",
+ "navigate_to": "{location}(으)로 이동하기",
+ "tap": "탭:",
+ "toggle": "{name} 토글하기",
+ "url": "{url_path} 창 열기"
+ },
+ "safe-mode": {
+ "description": "구성 내용을 읽어오는 중에 Home Assistant에서 문제가 발생하여 안전 모드에서 실행 중입니다. 오류 로그를 참고하여 무엇이 잘못되었는지 확인해주세요.",
+ "header": "안전 모드 활성화"
+ },
+ "shopping-list": {
+ "add_item": "항목 추가하기",
+ "checked_items": "선택한 항목",
+ "clear_items": "선택한 항목 삭제하기",
+ "drag_and_drop": "끌어서 놓기",
+ "reorder_items": "항목 다시 정렬하기"
+ },
+ "show_more_info": "자세한 정보 표시하기",
+ "starting": {
+ "description": "Home Assistant를 시작하는 중입니다. 잠시만 기다려주세요..."
+ }
+ },
+ "changed_toast": {
+ "message": "이 대시보드의 Lovelace UI 구성이 업데이트되었습니다. 새로 고치시겠습니까?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "일",
+ "month": "월",
+ "next": "다음",
+ "previous": "이전",
+ "today": "오늘",
+ "week": "주",
+ "year": "년"
+ },
+ "timestamp-display": {
+ "invalid": "시간 표기가 잘못되었습니다",
+ "invalid_format": "표시 형식이 잘못되었습니다"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "서비스 호출",
+ "default_action": "기본 동작",
+ "more-info": "추가 정보",
+ "navigate": "탐색",
+ "none": "동작 없음",
+ "toggle": "토글",
+ "url": "URL"
+ },
+ "navigation_path": "뷰 탐색 경로",
+ "url_path": "URL 경로"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "사용 가능한 상태요소",
+ "description": "알람 패널 카드를 사용하면 알람 제어판 통합 구성요소의 경비를 설정하거나 해제할 수 있습니다.",
+ "name": "알람 패널"
+ },
+ "area": {
+ "description": "영역 카드에는 해당 영역의 구성요소가 자동으로 표시됩니다.",
+ "name": "영역",
+ "show_camera": "영역 사진 대신 카메라 화면 표시"
+ },
+ "button": {
+ "default_action_help": "기본 동작은 구성요소의 기능에 따라 달라지며, 토글되거나 추가 정보 대화 상자가 표시됩니다.",
+ "description": "버튼 카드를 사용하면 작업을 수행할 수 있는 버튼을 추가할 수 있습니다.",
+ "name": "버튼"
+ },
+ "calendar": {
+ "calendar_entities": "캘린더 구성요소",
+ "description": "캘린더 카드는 일간, 주간 및 목록 보기를 포함한 캘린더가 표시됩니다",
+ "inital_view": "시작 시 보기",
+ "name": "캘린더",
+ "views": {
+ "dayGridDay": "일간",
+ "dayGridMonth": "월간",
+ "listWeek": "목록"
+ }
+ },
+ "conditional": {
+ "card": "카드",
+ "change_type": "변경 유형",
+ "condition_explanation": "아래의 모든 조건이 충족되면 카드가 표시됩니다.",
+ "conditions": "조건",
+ "current_state": "현재 상태",
+ "description": "조건부 카드는 구성요소의 상태에 따라 다른 카드를 표시합니다.",
+ "name": "조건부",
+ "state_equal": "상태가 다음과 같으면",
+ "state_not_equal": "상태가 다음과 같지 않다면"
+ },
+ "config": {
+ "optional": "선택 사항",
+ "required": "필수 요소"
+ },
+ "entities": {
+ "description": "구성요소 카드는 가장 일반적인 유형의 카드입니다. 항목을 목록으로 그룹화합니다.",
+ "edit_special_row": "편집 버튼을 클릭하여 이 행의 세부 정보 보기",
+ "entity_row": {
+ "attribute": "속성",
+ "button": "버튼",
+ "buttons": "버튼",
+ "call-service": "서비스 호출",
+ "cast": "캐스트",
+ "conditional": "조건",
+ "divider": "가로줄",
+ "section": "섹션",
+ "weblink": "웹 링크"
+ },
+ "entity_row_editor": "구성요소 행 편집기",
+ "name": "구성요소 모음",
+ "secondary_info_values": {
+ "brightness": "밝기",
+ "entity-id": "구성요소 ID",
+ "last-changed": "최근 변경 됨",
+ "last-triggered": "최근 트리거 됨",
+ "last-updated": "최근 업데이트 됨",
+ "none": "부가 정보 없음",
+ "position": "위치",
+ "tilt-position": "기울기"
+ },
+ "show_header_toggle": "헤더 토글 표시하기",
+ "special_row": "특별 행",
+ "toggle": "구성요소 토글"
+ },
+ "entity-filter": {
+ "description": "구성요소 필터 카드를 사용하면 특정 상태에 있을 때만 추적할 구성요소의 목록을 정의할 수 있습니다.",
+ "name": "구성요소 필터"
+ },
+ "entity": {
+ "description": "구성요소 카드는 구성요소의 상태에 대한 빠른 보기를 제공합니다.",
+ "name": "구성요소"
+ },
+ "gauge": {
+ "description": "게이지 카드는 센서 데이터를 시각적으로 볼 수 있는 기본 카드입니다.",
+ "name": "게이지",
+ "needle_gauge": "바늘 게이지로 표시하시겠습니까?",
+ "severity": {
+ "define": "게이지 구간 정의하기",
+ "green": "초록",
+ "red": "빨강",
+ "yellow": "노랑"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "종횡비",
+ "attribute": "속성",
+ "camera_image": "카메라 구성요소",
+ "camera_view": "카메라 뷰",
+ "days_to_show": "표시할 날짜",
+ "double_tap_action": "더블 탭 동작",
+ "entities": "구성요소",
+ "entity": "구성요소",
+ "hold_action": "길게 누르기 동작",
+ "hours_to_show": "표시 시간",
+ "icon": "아이콘",
+ "icon_height": "아이콘 높이",
+ "image": "이미지 경로",
+ "manual": "직접 작성",
+ "manual_description": "사용자 정의 카드를 추가하거나 YAML을 직접 작성하시겠습니까?",
+ "maximum": "최대",
+ "minimum": "최소",
+ "name": "이름",
+ "no_theme": "테마 없음",
+ "refresh_interval": "새로고침 간격",
+ "search": "검색",
+ "secondary_info_attribute": "보조 정보 속성",
+ "show_icon": "아이콘 표시하기",
+ "show_name": "이름 표시하기",
+ "show_state": "상태 표시하기",
+ "state": "상태",
+ "state_color": "상태에 따른 색상 아이콘",
+ "tap_action": "탭 동작",
+ "theme": "테마",
+ "title": "제목",
+ "unit": "단위",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "열",
+ "description": "한눈에 보기 카드는 여러 센서를 간단한 개요로 그룹화하는 데 유용합니다.",
+ "name": "한눈에 보기"
+ },
+ "grid": {
+ "columns": "열",
+ "description": "격자 모아보기 카드를 사용하면 한 격자에 여러 카드를 표시할 수 있습니다.",
+ "name": "격자 모아보기",
+ "square": "카드를 정사각형으로 표시하기"
+ },
+ "history-graph": {
+ "description": "기록 그래프 카드를 사용하면 나열된 각 구성요소에 대한 그래프를 표시할 수 있습니다.",
+ "name": "기록 그래프"
+ },
+ "horizontal-stack": {
+ "description": "수평 모아보기 카드를 사용하면 여러 카드를 함께 묶을 수 있으며 항상 한 열의 공간에서 옆으로 나열합니다.",
+ "name": "수평 모아보기"
+ },
+ "humidifier": {
+ "description": "습도 조절기 카드는 가습 및 제습 기기와 같은 습도 조절기기를 제어합니다. 구성요소의 습도 조절 모드를 변경할 수 있습니다.",
+ "name": "습도 조절기"
+ },
+ "iframe": {
+ "description": "웹 페이지 카드를 사용하면 즐겨 찾는 웹 페이지를 Home Assistant에 삽입할 수 있습니다.",
+ "name": "웹 페이지"
+ },
+ "light": {
+ "description": "조명 카드를 사용하면 조명의 밝기를 변경할 수 있습니다.",
+ "name": "조명"
+ },
+ "logbook": {
+ "description": "로그북 카드는 구성요소 이벤트 목록이 표시됩니다.",
+ "name": "로그북"
+ },
+ "map": {
+ "dark_mode": "다크모드로 표시하기",
+ "default_zoom": "기본 확대",
+ "description": "지도 카드는 지도에 구성요소를 표시할 수 있습니다.",
+ "geo_location_sources": "위치정보 소스",
+ "hours_to_show": "표시 시간",
+ "name": "지도",
+ "source": "소스"
+ },
+ "markdown": {
+ "content": "내용",
+ "description": "마크다운 텍스트 카드는 마크다운을 표시할 수 있습니다.",
+ "name": "마크다운 텍스트"
+ },
+ "media-control": {
+ "description": "미디어 컨트롤 카드는 조작이 간편한 인터페이스로 미디어 플레이어 구성요소를 표시할 수 있습니다.",
+ "name": "미디어 컨트롤"
+ },
+ "picture-elements": {
+ "description": "그림 복합요소 카드는 가장 다채로운 유형의 카드 중 하나입니다. 이 카드를 사용하면 좌표를 기준으로 이미지 위에 아이콘이나 텍스트, 심지어 서비스를 배치할 수 있습니다!",
+ "name": "그림 복합요소"
+ },
+ "picture-entity": {
+ "description": "그림 구성요소 카드는 이미지 형태로 구성요소를 표시합니다. URL 로 지정된 이미지 대신 카메라 구성요소의 화면을 표시할 수도 있습니다.",
+ "name": "그림 구성요소"
+ },
+ "picture-glance": {
+ "description": "그림 한눈에 보기 카드는 이미지와 해당 구성요소의 상태가 아이콘으로 표시됩니다. 오른쪽의 구성요소는 토글 작업을 허용하고 다른 구성요소는 추가 정보 대화상자를 표시합니다.",
+ "name": "그림 한눈에 보기",
+ "state_entity": "상태 구성요소"
+ },
+ "picture": {
+ "description": "그림 카드를 사용하면 인터페이스의 다양한 경로를 탐색하거나 서비스를 호출하는 데 사용할 이미지를 설정할 수 있습니다.",
+ "name": "그림"
+ },
+ "plant-status": {
+ "description": "식물 상태 카드는 사랑스러운 식물들을 위한 카드입니다.",
+ "name": "식물 상태"
+ },
+ "sensor": {
+ "description": "센서 카드는 시간 경과에 따라 상태 변화를 시각화하는 그래프 옵션을 통해 센서 상태에 대한 빠른 개요보기를 제공합니다.",
+ "graph_type": "그래프 유형",
+ "name": "센서",
+ "show_more_detail": "자세한 내용 표시하기"
+ },
+ "shopping-list": {
+ "description": "장보기 목록 카드를 사용하면 장보기 목록에서 항목을 추가, 편집, 확인 및 삭제를 할 수 있습니다.",
+ "integration_not_loaded": "이 카드를 설정하려면 `shopping_list` 통합 구성요소가 필요합니다.",
+ "name": "장보기 목록"
+ },
+ "statistics-graph": {
+ "description": "기록 그래프 카드를 사용하면 나열된 각 구성요소에 대한 그래프를 표시할 수 있습니다.",
+ "name": "통계 그래프",
+ "period": "기간",
+ "periods": {
+ "5minute": "5분",
+ "day": "일",
+ "hour": "시",
+ "month": "월"
+ }
+ },
+ "thermostat": {
+ "description": "온도 조절기 카드는 냉난방 기기를 제어합니다. 구성요소의 온도와 모드를 변경할 수 있습니다.",
+ "name": "온도 조절기"
+ },
+ "vertical-stack": {
+ "description": "수직 쌓아보기 카드를 사용하면 여러 카드를 그룹화하여 항상 같은 열에 배치할 수 있습니다.",
+ "name": "수직 쌓아보기"
+ },
+ "weather-forecast": {
+ "description": "날씨 예보 카드는 날씨를 표시합니다. 화면에 날씨를 포함하는 인터페이스를 표시하는데 유용합니다.",
+ "name": "날씨 예보",
+ "show_both": "현재 날씨 및 예보 표시",
+ "show_forecast": "일기예보 보기",
+ "show_only_current": "현재 날씨만 표시",
+ "show_only_forecast": "예보만 표시"
+ }
+ },
+ "cardpicker": {
+ "by_card": "카드로 추가하기",
+ "by_entity": "구성요소로 추가하기",
+ "custom_card": "사용자 정의",
+ "domain": "도메인",
+ "entity": "구성요소",
+ "no_description": "상세정보가 없습니다"
+ },
+ "common": {
+ "add": "추가하기",
+ "clear": "지우기",
+ "edit": "편집하기",
+ "none": "없음"
+ },
+ "edit_badges": {
+ "panel_mode": "이 뷰는 \"패널 모드\" 이므로 이 배지는 표시되지 않습니다.",
+ "view_no_badges": "배지는 현재 뷰 유형에서 지원되지 않습니다."
+ },
+ "edit_card": {
+ "add": "카드 추가하기",
+ "clear": "지우기",
+ "confirm_cancel": "취소하시겠습니까?",
+ "delete": "카드 삭제하기",
+ "duplicate": "카드 복사",
+ "edit": "편집하기",
+ "header": "카드 구성",
+ "move": "다른 뷰로 이동",
+ "move_after": "카드를 뒤로 이동",
+ "move_before": "카드를 앞으로 이동",
+ "move_down": "카드를 아래로 이동",
+ "move_up": "카드를 위로 이동",
+ "options": "옵션 더보기",
+ "pick_card": "어떤 카드를 추가하시겠습니까?",
+ "pick_card_view_title": "{name} 뷰에 어떤 카드를 추가하시겠습니까?",
+ "search_cards": "카드 찾기",
+ "show_code_editor": "코드 편집기 보기",
+ "show_visual_editor": "비주얼 편집기 보기",
+ "toggle_editor": "에디터 전환",
+ "typed_header": "{type} 카드 구성",
+ "unsaved_changes": "저장하지 않은 변경 사항이 있습니다"
+ },
+ "edit_lovelace": {
+ "edit_title": "제목 편집하기",
+ "explanation": "이 제목은 Lovelace UI 모든 뷰의 상단에 표시됩니다.",
+ "header": "Lovelace UI 의 제목",
+ "title": "제목"
+ },
+ "edit_view": {
+ "add": "뷰 추가하기",
+ "delete": "뷰 삭제하기",
+ "edit": "뷰 편집하기",
+ "header": "구성 보기",
+ "header_name": "{name} 뷰 구성",
+ "move_left": "뷰를 왼쪽으로 이동",
+ "move_right": "뷰를 오른쪽으로 이동",
+ "tab_badges": "배지",
+ "tab_settings": "설정",
+ "tab_visibility": "보기 권한",
+ "type": "보기 유형",
+ "types": {
+ "masonry": "Masonry(기본값)",
+ "panel": "패널(카드 1개)",
+ "sidebar": "사이드바"
+ },
+ "visibility": {
+ "select_users": "이 뷰를 볼 수 있는 사용자를 선택해주세요"
+ }
+ },
+ "header": "UI 편집하기",
+ "header-footer": {
+ "choose_header_footer": "{type} 선택하기",
+ "footer": "꼬릿말",
+ "header": "머릿말",
+ "types": {
+ "buttons": {
+ "name": "버튼"
+ },
+ "graph": {
+ "name": "그래프"
+ },
+ "picture": {
+ "name": "그림"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "대시보드 관리하기",
+ "manage_resources": "리소스 관리하기",
+ "open": "Lovelace UI 메뉴 열기",
+ "raw_editor": "구성 코드 편집기"
+ },
+ "migrate": {
+ "header": "구성 내용이 호환되지 않습니다",
+ "migrate": "구성 마이그레이션",
+ "para_migrate": "Home Assistant는 '구성 마이그레이션' 버튼을 눌러 자동으로 모든 카드와 뷰에 ID를 추가할 수 있습니다.",
+ "para_no_id": "이 요소에는 ID가 없습니다. 'ui-lovelace.yaml'에 요소의 ID를 추가해주세요."
+ },
+ "move_card": {
+ "header": "카드를 이동할 뷰를 선택해주세요"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Lovelace UI 구성을 제거하면, 영역 및 기기와 함께 Lovelace UI 뷰가 자동으로 생성됩니다.",
+ "confirm_remove_config_title": "Lovelace UI 구성을 제거하시겠습니까?",
+ "confirm_unsaved_changes": "저장되지 않은 변경 사항이 있습니다. 종료하시겠습니까?",
+ "confirm_unsaved_comments": "구성 내용에 주석이 포함되어 있지만 저장되지는 않습니다. 계속하시겠습니까?",
+ "error_invalid_config": "구성이 잘못되었습니다: {error}",
+ "error_parse_yaml": "YAML을 구문 분석할 수 없습니다: {error}",
+ "error_remove": "구성을 제거할 수 없습니다: {error}",
+ "error_save_yaml": "YAML을 저장할 수 없습니다: {error}",
+ "header": "구성 코드 편집하기",
+ "lovelace_changed": "Lovelace 설정이 업데이트되었습니다. 업데이트된 설정 내용을 편집기에서 읽어 들이고 현재 변경 내용을 바꾸시겠습니까?",
+ "reload": "다시 읽어오기",
+ "resources_moved": "리소스는 더 이상 Lovelace 구성에서 추가할 수 없으며 Lovelace 구성 패널에서 추가할 수 있습니다.",
+ "save": "저장하기",
+ "saved": "저장되었습니다",
+ "unsaved_changes": "저장되지 않은 변경사항"
+ },
+ "save_config": {
+ "close": "닫기",
+ "empty_config": "비어있는 대시보드로 시작",
+ "header": "Lovelace UI 직접 관리하기",
+ "para": "이 대시보드는 현재 Home Assistant에 의해 유지 관리되고 있습니다. 사용할 수 있는 새로운 구성요소나 Lovelace UI 구성요소가 있을 때 자동으로 업데이트됩니다. 사용자가 직접 관리하는 경우 이 대시보드는 더 이상 자동으로 업데이트되지 않습니다. 언제든지 구성에서 새로운 대시보드를 만들 수 있습니다.",
+ "para_sure": "사용자 인터페이스를 직접 관리하시겠습니까?",
+ "save": "직접 관리할게요",
+ "yaml_config": "시작하는데 도움이 될 수 있는 대시보드의 현재 구성은 다음과 같습니다:",
+ "yaml_control": "YAML 모드로 제어하려면 대시보드의 구성에서 지정한 이름의 YAML 파일을 만들거나 기본 제공된 'ui-lovelace.yaml'을 사용해주세요.",
+ "yaml_mode": "이 대시보드는 YAML 모드를 사용 중이므로 UI에서 Lovelace 구성을 변경할 수 없습니다. Lovelace를 UI에서 변경하려면 'configuration.yaml'의 Lovelace 구성에서 'mode:yaml'을 제거해주세요."
+ },
+ "select_view": {
+ "dashboard_label": "대시보드",
+ "header": "뷰 선택하기",
+ "views_label": "보기"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "꼬릿말 편집기",
+ "header": "머릿말 편집기",
+ "row": "구성요소 행 편집기"
+ }
+ },
+ "suggest_card": {
+ "add": "Lovelace UI에 추가하기",
+ "create_own": "다른 카드 선택",
+ "header": "제안 드리는 카드"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "이 뷰에는 카드가 두 개 이상 포함되어 있지만 패널 모드는 한 개의 카드만 표시할 수 있습니다."
+ }
+ }
+ },
+ "menu": {
+ "close": "닫기",
+ "configure_ui": "대시보드 편집하기",
+ "exit_edit_mode": "UI 편집 모드 나가기",
+ "help": "도움말",
+ "reload_resources": "리소스 다시 읽어오기",
+ "start_conversation": "대화 시작"
+ },
+ "reload_lovelace": "UI 다시 읽어오기",
+ "reload_resources": {
+ "refresh_body": "다시 읽어오기를 완료하려면 페이지를 새로 고쳐야 합니다. 지금 새로 고치시겠습니까?",
+ "refresh_header": "새로 고치시겠습니까?"
+ },
+ "unused_entities": {
+ "available_entities": "사용 가능한 구성요소이지만 아직 Lovelace UI에는 등록되지 않았습니다.",
+ "domain": "도메인",
+ "entity": "구성요소",
+ "entity_id": "구성요소 ID",
+ "last_changed": "최근 변경 됨",
+ "no_data": "미사용 구성요소가 없습니다",
+ "search": "구성요소 찾기",
+ "select_to_add": "카드에 추가할 구성요소를 선택한 다음, 카드 추가하기 버튼을 클릭해주세요.",
+ "title": "미사용 구성요소"
+ },
+ "views": {
+ "confirm_delete": "이 뷰를 삭제하시겠습니까?",
+ "confirm_delete_existing_cards": "이 뷰를 삭제하면 포함된 카드도 함께 제거됩니다",
+ "confirm_delete_existing_cards_text": "\"{name}\" 뷰를 삭제하시겠습니까? 뷰에 포함된 {number}개의 카드도 함께 제거됩니다. 이 작업은 취소할 수 없습니다.",
+ "confirm_delete_text": "\"{name}\" 뷰를 삭제하시겠습니까?"
+ },
+ "warning": {
+ "attribute_not_found": "{attribute} 속성을 사용할 수 없습니다: {entity}",
+ "entity_non_numeric": "구성요소가 숫자형식이 아닙니다: {entity}",
+ "entity_not_found": "구성요소를 사용할 수 없습니다: {entity}",
+ "entity_unavailable": "{entity}은(는) 현재 사용할 수 없습니다",
+ "starting": "Home Assistant가 시작됩니다. 완료될 때까지 모든 기능을 사용할 수 있는 것은 아닙니다."
+ }
+ },
+ "mailbox": {
+ "delete_button": "삭제하기",
+ "delete_prompt": "이 메시지를 삭제하시겠습니까?",
+ "empty": "메시지가 존재하지 않습니다",
+ "playback_title": "메시지 재생"
+ },
+ "map": {
+ "edit_zones": "영역 편집하기"
+ },
+ "my": {
+ "component_not_loaded": "이 리디렉션은 Home Assistant 인스턴스에서 지원되지 않습니다. 이 리디렉션을 사용하려면 {integration} 통합 구성요소가 필요합니다.",
+ "documentation": "관련 문서",
+ "error": "알 수 없는 오류가 발생했습니다",
+ "faq_link": "내 Home Assistant 자주 묻는 질문",
+ "no_supervisor": "이 리디렉션은 현재 설치된 Home Assistant에서 지원되지 않습니다. Home Assistant Operating System 또는 Home Assistant Supervised 형태로 설치되어야 합니다. 자세한 내용은 {docs_link}을(를) 참조해주세요.",
+ "not_supported": "이 리디렉션은 Home Assistant 인스턴스에서 지원되지 않습니다. {link}에서 지원되는 리디렉션과 리디렉션이 도입된 버전을 확인해주세요."
+ },
+ "page-authorize": {
+ "abort_intro": "로그인이 중단되었습니다",
+ "authorizing_client": "{clientId}에 Home Assistant 구성요소에 대한 접근 권한을 부여하려고 합니다.",
+ "form": {
+ "error": "오류: {error}",
+ "next": "다음",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "세션이 만료되었습니다. 다시 로그인 해주세요."
+ },
+ "error": {
+ "invalid_auth": "사용자 이름 또는 비밀번호가 잘못되었습니다",
+ "invalid_code": "인증 코드가 잘못되었습니다"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "비밀번호",
+ "username": "사용자 이름"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "2단계 인증 코드"
+ },
+ "description": "2단계 인증 코드 및 신원을 확인하기 위해 기기에서 **{mfa_module_name}**을(를) 열어주세요:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "세션이 만료되었습니다. 다시 로그인 해주세요."
+ },
+ "error": {
+ "invalid_auth": "사용자 이름 또는 비밀번호가 잘못되었습니다",
+ "invalid_code": "인증 코드가 잘못되었습니다"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "비밀번호",
+ "username": "사용자 이름"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "2단계 인증 코드"
+ },
+ "description": "2단계 인증 코드 및 신원을 확인하기 위해 기기에서 **{mfa_module_name}**을(를) 열어주세요:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "세션이 만료되었습니다. 다시 로그인 해주세요.",
+ "no_api_password_set": "API 비밀번호를 설정하지 않았습니다."
+ },
+ "error": {
+ "invalid_auth": "API 비밀번호가 잘못되었습니다",
+ "invalid_code": "인증 코드가 잘못되었습니다"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "API 비밀번호"
+ },
+ "description": "HTTP 구성에 API 비밀번호를 입력해주세요:"
+ },
+ "mfa": {
+ "data": {
+ "code": "2단계 인증 코드"
+ },
+ "description": "2단계 인증 코드 및 신원을 확인하기 위해 기기에서 **{mfa_module_name}**을(를) 열어주세요:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "이 컴퓨터는 허용 목록에 등록되지 않았습니다."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "사용자"
+ },
+ "description": "로그인하려는 사용자를 선택해주세요:"
+ }
+ }
+ }
+ },
+ "start_over": "다시 시작",
+ "unknown_error": "문제가 발생했습니다",
+ "working": "잠시 기다려주세요"
+ },
+ "initializing": "초기화 중",
+ "logging_in_to_with": "**{authProviderName}**(으)로 **{locationName}**에 로그인 합니다.",
+ "logging_in_with": "**{authProviderName}**(으)로 로그인 합니다.",
+ "pick_auth_provider": "또는 다음으로 로그인하세요",
+ "store_token": "로그인 상태로 유지"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "{name}님이 만듦",
+ "introduction": "집에 오신 것을 환영합니다! 커뮤니티에서 만든 멋진 UI가 적용된 Home Assistant를 소개합니다.",
+ "learn_more": "Home Assistant에 대해 더 알아보기",
+ "next_demo": "다음 데모"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "프리셋",
+ "air": "공조기",
+ "commute_home": "집으로 퇴근",
+ "entertainment": "엔터테인먼트",
+ "hdmi_input": "HDMI 입력",
+ "hdmi_switcher": "HDMI 선택",
+ "information": "정보",
+ "lights": "조명",
+ "morning_commute": "아침 출근",
+ "total_tv_time": "총 TV 시청",
+ "turn_tv_off": "TV 끄기",
+ "volume": "음량"
+ },
+ "names": {
+ "family_room": "가족실",
+ "hallway": "현관",
+ "kitchen": "주방",
+ "left": "왼쪽",
+ "master_bedroom": "안방",
+ "mirror": "거울",
+ "patio": "마당",
+ "right": "오른쪽",
+ "temperature_study": "서재 온도",
+ "upstairs": "위층"
+ },
+ "unit": {
+ "minutes_abbr": "분",
+ "watching": "시청중"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "다음"
+ },
+ "core-config": {
+ "button_detect": "탐색",
+ "finish": "다음",
+ "intro": "{name}님, 안녕하세요! Home Assistant에 오신 것을 환영합니다. 집에 어떤 이름을 지어주시겠어요?",
+ "intro_location": "현재 살고 계시는 위치를 알려주세요. 이는 태양 위치를 기반으로 하는 자동화를 설정하는데 도움이 됩니다. 위치 정보는 외부 네트워크와 절대 공유되지 않습니다.",
+ "intro_location_detect": "외부 서비스에 일회성 요청을 해서 위치 정보를 넣는데 도움을 드릴 수 있습니다.",
+ "location_name": "설치된 Home Assistant 이름",
+ "location_name_default": "집"
+ },
+ "finish": "완료",
+ "integration": {
+ "finish": "완료",
+ "intro": "기기 및 서비스는 Home Assistant에서 통합 구성요소로 표시됩니다. 지금 설정하거나 나중에 구성 화면에서 설정할 수 있습니다.",
+ "more_integrations": "더보기"
+ },
+ "intro": "잠들어 있는 집을 깨우고 개인정보를 보호하며 전세계의 공돌이 커뮤니티에 가입 할 준비가 되셨나요?",
+ "next": "다음",
+ "restore": {
+ "addons": "애드온",
+ "confirm_password": "백업 비밀번호 확인",
+ "description": "이전 백업에서 복원할 수 있습니다.",
+ "folders": "폴더",
+ "full_backup": "전체 백업",
+ "hide_log": "전체 로그 숨기기",
+ "in_progress": "복원 중",
+ "partial_backup": "부분 백업",
+ "password": "백업 비밀번호",
+ "password_protection": "비밀번호 보호",
+ "select_type": "복원 할 항목 선택",
+ "show_log": "전체 로그 표시하기",
+ "type": "백업 유형"
+ },
+ "user": {
+ "create_account": "계정 만들기",
+ "data": {
+ "name": "이름",
+ "password": "비밀번호",
+ "password_confirm": "비밀번호 확인",
+ "username": "사용자 이름"
+ },
+ "error": {
+ "password_not_match": "비밀번호가 일치하지 않습니다",
+ "required_fields": "필수 입력란을 모두 채워주세요"
+ },
+ "intro": "사용자 계정을 만들어 시작합니다.",
+ "required_field": "필수 요소"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "고급 기능을 활성화합니다.",
+ "link_promo": "더 알아보기",
+ "title": "고급 모드"
+ },
+ "change_password": {
+ "confirm_new_password": "새로운 비밀번호 확인",
+ "current_password": "현재 비밀번호",
+ "error_new_is_old": "새로운 비밀번호는 현재 비밀번호와 달라야 합니다",
+ "error_new_mismatch": "입력한 새로운 비밀번호 값이 일치하지 않습니다",
+ "error_required": "필수 요소",
+ "header": "비밀번호 변경",
+ "new_password": "새로운 비밀번호",
+ "submit": "변경하기",
+ "success": "비밀번호가 변경되었습니다"
+ },
+ "current_user": "현재 {fullName}(으)로 로그인 한 상태 입니다.",
+ "customize_sidebar": {
+ "button": "편집하기",
+ "description": "사이드바의 헤더를 길게 눌러 편집 모드를 활성화할 수도 있습니다.",
+ "header": "사이드바의 항목 순서 변경 및 숨기기"
+ },
+ "dashboard": {
+ "default_dashboard_label": "전체보기(기본값)",
+ "description": "이 기기에서 사용할 기본 대시보드를 선택합니다.",
+ "dropdown_label": "대시보드",
+ "header": "대시보드"
+ },
+ "enable_shortcuts": {
+ "description": "UI에서 다양한 작업을 수행하기 위한 단축키를 활성화하거나 비활성화합니다.",
+ "header": "키보드 단축키"
+ },
+ "force_narrow": {
+ "description": "모바일 환경과 마찬가지로 기본적으로 사이드바가 숨겨집니다.",
+ "header": "항상 사이드바 숨기기"
+ },
+ "is_owner": "관리자 계정입니다.",
+ "language": {
+ "dropdown_label": "언어",
+ "header": "언어",
+ "link_promo": "번역 도와주기"
+ },
+ "logout": "로그아웃",
+ "logout_text": "로그 아웃 하시겠습니까?",
+ "logout_title": "로그 아웃",
+ "long_lived_access_tokens": {
+ "confirm_delete": "{name} 액세스 토큰을 삭제하시겠습니까?",
+ "create": "토큰 만들기",
+ "create_failed": "액세스 토큰을 생성을 할 수 없습니다.",
+ "created": "{date}에 생성 됨",
+ "delete_failed": "액세스 토큰을 삭제할 수 없습니다.",
+ "description": "스크립트가 Home Assistant 구성요소와 상호 작용할 수 있도록 장기 액세스 토큰을 생성할 수 있습니다. 각 토큰은 생성 후 10년 동안 유효합니다. 현재 활성 상태인 장기 액세스 토큰은 다음과 같습니다.",
+ "empty_state": "장기 액세스 토큰이 없습니다.",
+ "header": "장기 액세스 토큰",
+ "learn_auth_requests": "인증 요청을 생성하는 방법에 대해 알아보세요.",
+ "name": "이름",
+ "prompt_copy_token": "액세스 토큰을 복사하세요. 이 안내는 다시 표시되지 않습니다.",
+ "prompt_name": "토큰 이름을 지어주세요."
+ },
+ "mfa": {
+ "confirm_disable": "{name}을(를) 비활성화하시겠습니까?",
+ "disable": "비활성화",
+ "enable": "활성화",
+ "header": "다단계 인증 모듈"
+ },
+ "mfa_setup": {
+ "close": "닫기",
+ "step_done": "{step} 설치가 완료되었습니다",
+ "submit": "구성하기",
+ "title_aborted": "취소됨",
+ "title_success": "성공!"
+ },
+ "number_format": {
+ "description": "숫자 형식을 선택합니다.",
+ "dropdown_label": "숫자 형식",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "자동 (언어 설정 사용)",
+ "none": "없음",
+ "space_comma": "1 234 567,89",
+ "system": "시스템 로케일 사용하기"
+ },
+ "header": "숫자 형식"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "기기 이름",
+ "title": "이 기기의 이름을 지어주세요"
+ },
+ "description": "이 기기에 알림을 보냅니다.",
+ "error_load_platform": "notify.html5를 구성해주세요.",
+ "error_use_https": "Frontend에 대해 SSL을 사용하도록 설정해야 합니다.",
+ "header": "푸시 알림",
+ "link_promo": "알림에 대해 더 알아보기",
+ "push_notifications": "푸시 알림"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "{name}의 리프레시 토큰을 삭제하시겠습니까?",
+ "created_at": "{date}에 생성 됨",
+ "current_token_tooltip": "현재 리프레시 토큰을 삭제할 수 없습니다",
+ "delete_failed": "리프레시 토큰을 삭제할 수 없습니다.",
+ "description": "각 리프레시 토큰은 로그인 세션을 나타냅니다. 로그아웃을 클릭하면 리프레시 토큰은 자동으로 제거됩니다. 다음의 리프레시 토큰이 현재 접속한 계정에 대해 활성화되어 있습니다.",
+ "header": "리프레시 토큰",
+ "last_used": "{date}에 {location}에서 마지막으로 사용됨",
+ "not_used": "사용된 적이 없음",
+ "token_title": "{clientId}의 리프레시 토큰"
+ },
+ "suspend": {
+ "description": "Home Assistant UI를 5분 동안 보지 않는 경우 서버와의 연결을 종료시킵니다.",
+ "header": "자동 연결 종료"
+ },
+ "themes": {
+ "accent_color": "강조 색상",
+ "dark_mode": {
+ "auto": "자동",
+ "dark": "어둡게",
+ "light": "밝게"
+ },
+ "dropdown_label": "테마",
+ "error_no_theme": "사용할 수 있는 테마가 없습니다.",
+ "header": "테마",
+ "link_promo": "테마에 대해 더 알아보기",
+ "primary_color": "주 색상",
+ "reset": "초기화"
+ },
+ "time_format": {
+ "description": "시간 형식을 선택합니다.",
+ "dropdown_label": "시간 형식",
+ "formats": {
+ "12": "12시간(오전/오후)",
+ "24": "24시간",
+ "language": "자동 (언어 설정 사용)",
+ "system": "시스템 로케일 사용"
+ },
+ "header": "시간 형식"
+ },
+ "vibrate": {
+ "description": "기기를 제어할 때 이 기기에서 진동을 활성화 또는 비활성화합니다.",
+ "header": "진동 효과"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "대화 시작하기"
+ }
+ },
+ "sidebar": {
+ "done": "완료",
+ "external_app_configuration": "앱 구성",
+ "hide_panel": "패널 숨기기",
+ "show_panel": "패널 보이기",
+ "sidebar_toggle": "사이드바 토글"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/lb.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/lb.json
new file mode 100644
index 00000000..288ff7fb
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/lb.json
@@ -0,0 +1,3584 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Konfiguratioun's Entrée",
+ "device": "Apparat",
+ "integration": "Integratioun",
+ "user": "Benotzer"
+ }
+ },
+ "groups": {
+ "owner": "Besëtzer",
+ "system-admin": "Administrateuren",
+ "system-read-only": "Benotzer mat nëmmen Lies Rechter",
+ "system-users": "Benotzer"
+ },
+ "panel": {
+ "calendar": "Kalenner",
+ "config": "Astellungen",
+ "developer_tools": "Entwécklungsgeschir",
+ "history": "Verlaf",
+ "logbook": "Journal",
+ "mailbox": "Bréifkëscht",
+ "map": "Kaart",
+ "media_browser": "Medie navigateur",
+ "profile": "Profil",
+ "shopping_list": "Akafslëscht",
+ "states": "Iwwersiicht"
+ },
+ "state": {
+ "default": {
+ "off": "Aus",
+ "on": "Un",
+ "unavailable": "Net erreechbar",
+ "unknown": "Onbekannt"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Auto",
+ "off": "Aus",
+ "on": "Un"
+ },
+ "hvac_action": {
+ "cooling": "Ofkillen",
+ "drying": "Dréchnen",
+ "fan": "Ventilator",
+ "heating": "Hëtzen",
+ "idle": "Waart",
+ "off": "Aus"
+ },
+ "preset_mode": {
+ "activity": "Aktivitéit",
+ "away": "Ënnerwee",
+ "boost": "Boost",
+ "comfort": "Bequem",
+ "eco": "Eco",
+ "home": "Doheem",
+ "none": "Keen",
+ "sleep": "Schlofen"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Auto",
+ "away": "Ënnerwee",
+ "baby": "Baby",
+ "boost": "Boost",
+ "comfort": "Bequem",
+ "eco": "Eco",
+ "home": "Doheem",
+ "normal": "Normal",
+ "sleep": "Schlofen"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Aktivéiert",
+ "armed_away": "Aktivéiert",
+ "armed_custom_bypass": "Aktivéiert",
+ "armed_home": "Aktivéiert",
+ "armed_night": "Aktivéiert",
+ "arming": "Aktivéieren",
+ "disarmed": "Desaktivéieren",
+ "disarming": "Desaktivéieren",
+ "pending": "Ustoend",
+ "triggered": "Ausgeléist"
+ },
+ "default": {
+ "entity_not_found": "Entitéit net fonnt",
+ "error": "Feeler",
+ "unavailable": "Net Verfügbar",
+ "unknown": "Onbekannt"
+ },
+ "device_tracker": {
+ "home": "Doheem",
+ "not_home": "Ënnerwee"
+ },
+ "person": {
+ "home": "Doheem",
+ "not_home": "Ënnerwee"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Standard",
+ "header": "Audio",
+ "input": "Agab",
+ "output": "Ausgab"
+ },
+ "network": {
+ "container": "Container",
+ "disabled": "Deaktivéiert",
+ "header": "Netzwierk",
+ "host": "Host"
+ },
+ "options": {
+ "edit_in_ui": "An der UI änneren",
+ "edit_in_yaml": "Am YAML änneren",
+ "header": "Optiounen",
+ "invalid_yaml": "Ongëltege YAML"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Feeler beim ausliesen vum add-on changelog",
+ "go_to_config": "Feeler beim starten vum add-on - Validatioun vun der Konfiguratioun gescheitert!",
+ "install": "Feeler beim installéieren vum add-on",
+ "restart": "Feeler beim frësch starten vum add-on",
+ "start": "Feeler beim starten vum add-on",
+ "start_invalid_config": "Zur Konfiguratioun goen",
+ "stop": "Feeler beim stoppen vum add-om",
+ "validate_config": "Feeler beim validéieren vun der add-on Konfiguratioun"
+ },
+ "capability": {
+ "docker_api": {
+ "description": "Den Auteur vum add-on huet den Zougang ugefrot fir Zougangsadministratioun zu der Docker Instanz op dengem System. Dëse Modus gëtt dem add-on vollen Zougang a Kontroll zu dengem komplette Home Assistant System, wat Sécherheetsrisiken mat sech bréngt an däin System beschiedegen wann et mëssbraucht gëtt. Dofir beaflosst dëse Feature den Add-on Security Score negativ.\n\nDësen Zougangsniveau gëtt net automatesch erlabt a muss vun Dir bestätegt ginn. Fir dëst ze maachen, muss Du de Schutzmodus vum Add-on manuell deaktivéieren. Desaktivéier de Schutzmodus nëmmen wann Dir d'Quell vun dësem add-on bekannt ass, brauchs an vertraus.",
+ "title": "Kompletten Docker Zougang"
+ },
+ "full_access": {
+ "description": "Dësen add-on kritt vollen Zougang zu der Hardware vun dengem System, op Ufro vum Auteur vum add-on. Zougang ass vergläichbar mam privilegéierte Modus am Docker. Well dëst méiglech Sécherheetsrisiken opmécht, beaflosst dëse Feature den add-on Security Score negativ.\n\nDësen Zougangsniveau gëtt net automatesch erlabt a muss vun Dir bestätegt ginn. Fir dëst ze maachen, muss Du de Schutzmodus vum Add-on manuell deaktivéieren. Desaktivéier nëmmen de Schutzmodus wann Dir d'Quell vun dësem add-on bekannt ass, brauchs an vertraus.",
+ "title": "Kompletten Hardware Zougang"
+ },
+ "hassio_api": {
+ "description": "Den Zousaz krut Zougang zum Supervisor API, op Ufro vum Auteur vum add-on. Par défaut kann den add-on op allgemeng Versiounsinformatioun vun dengem System zougräifen. Wann den add-on 'Manager' oder 'Admin' Niveau Zougang zu der API freet, kritt en Zougang fir méi Deeler vun dengem Home Assistant System ze kontrolléieren. Dës Erlaabnis gëtt vun dësem Badge uginn a wäert d'Sécherheetsscore vum add-on negativ beaflossen. ",
+ "title": "Supervisor API Zougang"
+ },
+ "homeassistant_api": {
+ "description": "Dësen add-on ass et erlaabt Zougang zu denger lafender Home Assistant Instanz direkt iwwert Home Assistant API ze kréien. Dëse Modus behandelt d'Authentifikatioun fir den add-on och, wat et dem add-on erméiglecht mam Home Assistant ze interagéieren ouni zousätzlech Authentifikatiounsjeton ze brauchen.",
+ "title": "Home Assistant API Zougang"
+ },
+ "host_network": {
+ "description": "Add-ons laafen normalerweis an hirer eegener isoléierter Netzwierkschicht, déi verhënnert datt se Zougang zum Netz vum Host Betribssystem kréien. An e puer Fäll kann dës Netzwierkisolatioun Add-ons limitéieren fir hir Servicer unzebidden an dofir kann d'Isolatioun opgehuewe ginn duerch den Auteur vum Add-on, andeems den Add-on volle Zougang zu de Netzwierkkapazitéite vun der Hostmaschinn kritt. Dëst gëtt den Add-on méi Netzwierkkapazitéiten awer sénkt d'Sécherheet, dofir gëtt d'Sécherheetsbewäertung vum Add-On erofgesat wann dës Optioun vum Add-on benotzt gëtt.",
+ "title": "Host Netzwierk"
+ },
+ "host_pid": {
+ "title": "Host Prozesser Namespace"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "auth",
+ "docker": "docker",
+ "hardware": "hardware",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "host",
+ "host_pid": "host pid",
+ "rating": "bewäertung",
+ "stage": "stage"
+ },
+ "rating": {
+ "description": "Home Assistant bitt eng Sécherheetswäertung fir all Add-on un, wat d'Risiken uginn wann dësen Add-on benotzt gëtt. Wat méi Zougang vun engem Add-on op dengem System erfuerdert gëtt, wat de Score méi niddereg ass, sou datt méiglech Sécherheetsrisiken erhéicht ginn.\n\nE Score ass op enger Skala vun 1 bis 6. Wou 1 deen niddregste Score ass (als deen onséchersten an héichste Risiko ugesinn) an e Score vu 6 ass deen héichste Score (als dee séchersten an niddregste Risiko).",
+ "title": "Add-on Sécherheetsbewäertung"
+ },
+ "role": {
+ "admin": "admin",
+ "backup": "sauvegarde",
+ "default": "Standard",
+ "homeassistant": "homeassistant",
+ "manager": "manager"
+ }
+ },
+ "changelog": "Changelog",
+ "cpu_usage": "Add-on CPU Verbrauch",
+ "hostname": "Host Numm",
+ "new_update_available": "{name} {version} ass disponibel",
+ "option": {
+ "auto_update": {
+ "description": "Automatesch Aktualiséierung vum Add-on wann eng nei Versioun disponibel ass",
+ "title": "Automatesch Aktualiséierung"
+ },
+ "boot": {
+ "title": "Beim Booten starten"
+ },
+ "ingress_panel": {
+ "description": "Dësen Add-on op deng Säite Läischt beisetzen",
+ "title": "An der Säite Läischt uweisen"
+ },
+ "protected": {
+ "description": "Späert erhéichten Systemzougang vum Add-on",
+ "title": "Schutzmodus"
+ },
+ "watchdog": {
+ "description": "Dëst start den Add-on frësch wann en ofstierzt",
+ "title": "Watchdog"
+ }
+ },
+ "ram_usage": "Add-on RAM Verbrauch"
+ },
+ "documentation": {
+ "get_documentation": "Feeler beim liesen vun add-on Dokumentatioun, {error}"
+ },
+ "logs": {
+ "get_logs": "Feeler beim liesen vun add-on logs, {error}"
+ }
+ },
+ "backup": {
+ "addons": "Add-ons",
+ "could_not_create": "Feeler beim erstellen vum Backup",
+ "create": "Erstellen",
+ "create_blocked_not_running": "Ee Backup erstellen ass fir de Moment net méiglech well de System an engem {state} Zoustand ass.",
+ "enter_password": "Gëff ee Passwuert an",
+ "folders": "Dossieren",
+ "name": "Numm",
+ "password": "Passwuert",
+ "password_protection": "Passwuert Protektioun",
+ "type": "Typ"
+ },
+ "common": {
+ "close": "Zoumaachen",
+ "description": "Beschreiwung",
+ "error": {
+ "unknown": "Onbekannte Feeler",
+ "update_failed": "Feeler bei der Aktualiséierung"
+ },
+ "failed_to_restart_name": "Feeler beim frësch starten vun {name}",
+ "failed_to_update_name": "Feeler beim Aktualiséieren vun {name}",
+ "learn_more": "Méi léieren",
+ "new_version_available": "Nei Versioun disponibel",
+ "no": "Nee",
+ "refresh": "Aktualiséieren",
+ "reload": "Nei lueden",
+ "reset_defaults": "Optiounen op Standard zerécksetzen",
+ "reset_options": "Optiounen zerécksetzen",
+ "restart": "Frësch starten",
+ "restart_name": "{name} frësch starten",
+ "running_version": "Du benotz de Moment Versioun {version}",
+ "save": "Späicheren",
+ "show_more": "Méi Informatiounen iwwert dëst uweisen",
+ "yes": "Jo"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Sécher fir all deng Optiounen zeréck ze setzen?",
+ "title": "Optiounen zerécksetzen"
+ },
+ "restart": {
+ "text": "Sécher fir {name} frësch ze starten?",
+ "title": "{name} frësch starten"
+ }
+ },
+ "dialog": {
+ "network": {
+ "connected_to": "Verbonne mat {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Deaktivéiert",
+ "dns_servers": "DNS Server",
+ "failed_to_change": "Feeler beim ännere vun den Netzwierk Astellungen",
+ "gateway": "Adress vun der Gateway",
+ "ip_netmask": "IP Adress/Netmask",
+ "open": "Offen",
+ "scan_ap": "No Access Points scannen",
+ "static": "Statesch",
+ "title": "Netzwierk Astellungen",
+ "unsaved": "Du hues net gespäichert Ännerungen, dës gi verluer wanns Du Tabs wiesselt, wëlls Du weiderfueren?",
+ "warning": "Falls du Wi-Fi, IP oder Gateway Adress änners, riskéiers du den Accès ze verléieren!",
+ "wep": "WEP",
+ "wpa": "wpa-psk"
+ },
+ "registries": {
+ "add_new_registry": "Nei Registry dobäisetzen",
+ "add_registry": "Registry dobäisetzen",
+ "failed_to_add": "Feeler beim dobäisetze vun der Registry",
+ "failed_to_remove": "Feeler beim läschen vun der Registry",
+ "no_registries": "Keng Registry konfiguréiert",
+ "password": "Passwuert",
+ "registry": "Registry",
+ "remove": "Läschen",
+ "title_add": "Neie Container Registry dobäisetzen",
+ "title_manage": "Container Registry verwalten",
+ "username": "Benotzernumm"
+ },
+ "repositories": {
+ "add": "Dobäisetzen",
+ "remove": "Läschen",
+ "title": "Add-On Depoten verwalten"
+ },
+ "restart_addon": {
+ "confirm_text": "Add-On frësch starten",
+ "text": "Soll den Add-on mat dengem Ännerungen frësch gestart ginn?"
+ },
+ "update": {
+ "updating": "Aktualiséiert {name} op Versioun {version}"
+ }
+ },
+ "my": {
+ "error": "Onbekannte Feeler opgetrueden",
+ "error_addon_not_found": "Add-on net fonnt",
+ "faq_link": "Meng Home Assistant FAQ",
+ "not_supported": "Dëse Redirect gëtt net vun Denger Home Assistant Instanz ënnerstëtzt. Kuck de {link} fir déi ënnerstëtzte Redirects an d'Versioun fir déi se agefouert goufen."
+ },
+ "store": {
+ "missing_addons": "Add-ons feelen ? Aktivéier den Avancéierte Modus an denger Benotzer Profil Säit",
+ "no_results_found": "Keng Resultater fonnt am {repository}.",
+ "registries": "Registry",
+ "repositories": "Depoten"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Core CPU Verbrauch",
+ "ram_usage": "Core RAM Verbrauch"
+ },
+ "host": {
+ "change": "Änneren",
+ "change_hostname": "Host Numm änneren",
+ "confirm_reboot": "Sécher fir den Host frësch ze starten?",
+ "confirm_shutdown": "Sécher fir den Host aus ze schalten?",
+ "deployment": "Deployment",
+ "docker_version": "Docker Versioun",
+ "emmc_lifetime_used": "eMMC Liewensdauer benotzt",
+ "failed_to_get_hardware_list": "Feeler beim liesen vun der Hardware Lëscht",
+ "failed_to_import_from_usb": "Feeler beim importéieren vun USB",
+ "failed_to_reboot": "Feeler beim frësch starten vum Host",
+ "failed_to_set_hostname": "Feeler beim setzen vum Host Numm",
+ "failed_to_shutdown": "Feeler beim ausschalten vum Host",
+ "hardware": "Hardware",
+ "hostname": "Host Numm",
+ "import_from_usb": "Vun USB importéieren",
+ "ip_address": "IP Adresse",
+ "new_hostname": "Gëff een neien Host Numm un:",
+ "operating_system": "Betribssystem",
+ "reboot_host": "Host frësch starten",
+ "shutdown_host": "Host Ausmaachen",
+ "used_space": "Benotzten Espace"
+ },
+ "log": {
+ "get_logs": "Feeler beim liesen vun {provider} logs, {error}",
+ "log_provider": "Log Provider"
+ },
+ "supervisor": {
+ "beta_backup": "Stell sécher dass du ee Backup vun dengen Donnéeën hues iers du dëse Feature aktivéiers.",
+ "beta_join_confirm": "Wëlls du dem Beta Kanal beitrieden?",
+ "beta_release_items": "Dëst enthält Beta Versiounen fir:",
+ "beta_warning": "Beta Versiounen si fir Tester an Early Adopter an können onstabile Code enthalen.",
+ "channel": "Kanal",
+ "cpu_usage": "Supervisor CPU Verbrauch",
+ "failed_to_reload": "Feeler beim frësch lueden vum Supervisor",
+ "failed_to_set_option": "Feeler beim setzen vun enger Optioun am Supervisor",
+ "failed_to_update": "Feeler beim Aktualiséieren vum Supervisor",
+ "join_beta_action": "Beta Kanal beitrieden",
+ "join_beta_description": "Beta Versioune fir Home Assistant (RCs), Supervisor an Host kréien",
+ "leave_beta_action": "Beta Kanal verloossen",
+ "leave_beta_description": "Stabil Versioune fir Home Assistant, Supervisor an Host kréien",
+ "ram_usage": "Supervisor RAM Verbrauch",
+ "reload_supervisor": "Supervisor frësch lueden",
+ "share_diagnostics": "Diagnose Informatioune deelen",
+ "share_diagnostics_description": "Crash Meldungan an Diagnose Informatioune deelen.",
+ "share_diagonstics_description": "Wëlls Du automatesch Crash Meldungen an Diagnosinformatiounen deelen wann de Supervisor een onerwaarte Feeler begéint?{line_break} Dëst erlaabt eis d'Problemer ze fixéieren, d'Informatioun ass nëmme fir den Home Assistant Core Team zougänglech a gëtt net mat aneren gedeelt.{line_break}D'Donnéeën enthalen keng privat / sensibel Informatioun an Du kanns dëst an den Astellungen ausschalten wanns Du wëlls.",
+ "share_diagonstics_title": "Hëllef Home Assistant ze verbesseren",
+ "unhealthy_description": "Eng ongesond Installatioun auszeféieren verursaacht Problemer. Hei drënner ass eng Lëscht vu Probleemer déi an denger Installatioun fonnt goufen, klick op d'Links fir ze léieren wéi's Du Problemer léise kanns.",
+ "unhealthy_reason": {
+ "docker": "Den Docker Environnement ass feelerhaft",
+ "privileged": "Supervisor ass net privilegéiert",
+ "setup": "Feeler beim ariichten vum Supervisor",
+ "supervisor": "Supervisor konnt net aktualiséiert ginn",
+ "untrusted": "Net vertrauten Inhalt entdeckt"
+ },
+ "unhealthy_title": "Deng Installation ass ongesond",
+ "unsupported_description": "Hei drënner ass eng Lëscht vu Probleemer déi an denger Installatioun fonnt goufen, klick op d'Links fir ze léieren wéi's Du Problemer léise kanns.",
+ "unsupported_reason": {
+ "container": "Container vun deene mir wësse dass sie Problemer verursaachen",
+ "content-trust": "Vertrauen's Validatioun vum Inhalt ass déaktivéiert",
+ "dbus": "DBUS",
+ "docker_configuration": "Docker Konfiguratioun",
+ "docker_version": "Docker Versioun",
+ "job_conditions": "Ignoréiert Job Konditiounen",
+ "lxc": "LXC",
+ "network_manager": "Netzwierk Manager",
+ "os": "Betribssystem",
+ "privileged": "Supervisor ass net privilegéiert",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Du benotz eng net ënnerstëtzten Installatioun",
+ "update_supervisor": "Supervisor aktualiséieren",
+ "warning": "WARNUNG"
+ }
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Soll dëse Login gespäichert ginn?",
+ "confirm": "Jo",
+ "decline": "Nee"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Aktivéiert Ënnerwee",
+ "arm_custom_bypass": "Personaliséierte Bypass",
+ "arm_home": "Aktivéiert Doheem",
+ "arm_night": "Aktivéiert Nuecht",
+ "clear_code": "Kloer",
+ "code": "Code",
+ "disarm": "Desaktivéieren"
+ },
+ "automation": {
+ "last_triggered": "Läscht ausgeléist",
+ "trigger": "Ausléisen"
+ },
+ "camera": {
+ "not_available": "Bild net disponibel"
+ },
+ "climate": {
+ "aux_heat": "Zousätzlech Heizung",
+ "away_mode": "Modus Keen Doheem",
+ "cooling": "{name} killen",
+ "current_temperature": "{name} aktuell Temperatur",
+ "currently": "Momentan",
+ "fan_mode": "Ventilatioun Modus",
+ "heating": "{name} hëtzen",
+ "high": "héich",
+ "low": "niddreg",
+ "on_off": "Un / Aus",
+ "operation": "Aktioun",
+ "preset_mode": "Virastellung",
+ "swing_mode": "Schwenk Modus",
+ "target_humidity": "Zielfiichtegkeet",
+ "target_temperature": "Zieltemperatur",
+ "target_temperature_entity": "{name} Zieltemperatur",
+ "target_temperature_mode": "{name} Zieltemperatur {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "Dekremental",
+ "increment": "Inkremental",
+ "reset": "reset"
+ }
+ },
+ "cover": {
+ "position": "Positioun",
+ "tilt_position": "Kippestellung"
+ },
+ "fan": {
+ "direction": "Richtung",
+ "forward": "Vir",
+ "oscillate": "Pendele",
+ "reverse": "Hannerzeg",
+ "speed": "Vitesse"
+ },
+ "humidifier": {
+ "humidity": "Viséiert Fiichtegkeet",
+ "mode": "Modus",
+ "on_entity": "{name} un",
+ "target_humidity_entity": "{name} Viséiert Fiichtegkeet"
+ },
+ "light": {
+ "brightness": "Hellegkeet",
+ "color_temperature": "Faarf Temperatur",
+ "effect": "Effekt",
+ "white_value": "Wäisse Wäert"
+ },
+ "lock": {
+ "code": "Code",
+ "lock": "Spären",
+ "unlock": "Entspären"
+ },
+ "media_player": {
+ "browse_media": "Medien duerchgoen",
+ "media_next_track": "Nächst",
+ "media_play": "Spill",
+ "media_play_pause": "Spill/Pause",
+ "media_previous_track": "Viregt",
+ "sound_mode": "Toun Modus",
+ "source": "Quell",
+ "text_to_speak": "Text zu Sprooch",
+ "turn_off": "Ausschalten",
+ "turn_on": "Uschalten"
+ },
+ "persistent_notification": {
+ "dismiss": "Verwerfen"
+ },
+ "scene": {
+ "activate": "Aktivéieren"
+ },
+ "script": {
+ "cancel": "Ofbriechen",
+ "cancel_multiple": "{number} ofbriechen"
+ },
+ "service": {
+ "run": "Ausféieren"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "Ofbriechen",
+ "finish": "Ofschléissen",
+ "pause": "Pause",
+ "start": "Start"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Fuer mam botzen weider",
+ "return_to_base": "Zeréck zur Statioun kommen",
+ "start_cleaning": "Fänk mam botzen un",
+ "turn_off": "Ausschalten",
+ "turn_on": "Uschalten"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Modus Keen Doheem",
+ "currently": "Momentan",
+ "on_off": "Un / Aus",
+ "operation": "Aktioun",
+ "target_temperature": "Zieltemperatur"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Loftdrock",
+ "humidity": "Fiichtegkeet",
+ "precipitation": "Nidderschlag",
+ "temperature": "Temperatur",
+ "visibility": "Visibilitéit",
+ "wind_speed": "Wandvitesse"
+ },
+ "cardinal_direction": {
+ "e": "O",
+ "ene": "ONO",
+ "ese": "OSO",
+ "n": "N",
+ "ne": "NO",
+ "nne": "NNO",
+ "nnw": "NNW",
+ "nw": "NW",
+ "s": "S",
+ "se": "SO",
+ "sse": "SSO",
+ "ssw": "SSW",
+ "sw": "SW",
+ "w": "W",
+ "wnw": "WNW",
+ "wsw": "WSW"
+ },
+ "day": "Dag",
+ "forecast": "Prognose",
+ "high": "Héich",
+ "low": "Niddreg",
+ "night": "Nuecht"
+ }
+ },
+ "common": {
+ "and": "an",
+ "back": "Zeréck",
+ "cancel": "Ofbriechen",
+ "close": "Zoumaachen",
+ "continue": "Weider",
+ "copied": "Kopéiert",
+ "copied_clipboard": "An den Zwëschespäicher kopéiert",
+ "delete": "Läschen",
+ "disable": "Desaktivéieren",
+ "enable": "Aktivéieren",
+ "error_required": "Erfuerderlech",
+ "leave": "Fortgoen",
+ "loading": "Lued",
+ "menu": "Menu",
+ "next": "Nächst",
+ "no": "Nee",
+ "not_now": "Net elo",
+ "overflow_menu": "Iwwerlaf menu",
+ "previous": "Virdrun",
+ "refresh": "Aktualiséieren",
+ "remove": "Läschen",
+ "rename": "Ëmbenennen",
+ "save": "Späicheren",
+ "skip": "Iwwersprangen",
+ "stay": "Bleiwen",
+ "successfully_deleted": "Erfollegräich geläscht.",
+ "successfully_saved": "Erfollegräich gespäichert.",
+ "undo": "Réckgängeg maachen",
+ "yes": "Jo"
+ },
+ "components": {
+ "addon-picker": {
+ "error": {
+ "no_supervisor": {
+ "title": "Keen Supervisor"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Dobäisetzen",
+ "failed_create_area": "Feeler beim erstellen vum Beräich.",
+ "name": "Numm",
+ "text": "Gitt den numm vun neien Beräich un.",
+ "title": "Neien Beräich dobäisetzen"
+ },
+ "add_new": "Neien Beräich dobäisetzen…",
+ "area": "Beräich",
+ "clear": "Läschen",
+ "no_areas": "Du hues keng Beräicher",
+ "no_match": "Keng passend Beräicher fonnt",
+ "show_areas": "Beräicher uweisen"
+ },
+ "blueprint-picker": {
+ "add_user": "Benotzer erstellen",
+ "remove_user": "Benotzer läschen",
+ "select_blueprint": "Plang auswielen"
+ },
+ "data-table": {
+ "no-data": "Keng Donnée",
+ "search": "Sichen"
+ },
+ "date-range-picker": {
+ "end_date": "End Datum",
+ "select": "Auswielen",
+ "start_date": "Start Datum"
+ },
+ "device-picker": {
+ "clear": "Läschen",
+ "device": "Apparat",
+ "no_area": "Kee Beräich",
+ "no_devices": "Du hues keng Apparater.",
+ "no_match": "Keng passend Apparater fonnt",
+ "show_devices": "Apparater uweisen",
+ "toggle": "Ëmschalten"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Attribut",
+ "show_attributes": "Attributer uweisen"
+ },
+ "entity-picker": {
+ "clear": "Läschen",
+ "entity": "Entitéit",
+ "no_match": "Keng passend Entitéite fonnt",
+ "show_entities": "Entitéite uweisen"
+ }
+ },
+ "history_charts": {
+ "loading_history": "Lued Status Verlaaf",
+ "no_history_found": "Keen Status Verlaaf fonnt"
+ },
+ "logbook": {
+ "by": "vun",
+ "by_service": "no Service",
+ "entries_not_found": "Keng Logbicher Entrée fonnt",
+ "messages": {
+ "became_unavailable": "ass onereechbar ginn.",
+ "changed_to_state": "geännert op {state}",
+ "cleared_device_class": "geläscht (keng {device_class} détektéiert)",
+ "detected_device_class": "{device_class} détektéiert",
+ "rose": "gehuewen",
+ "set": "Setzen",
+ "turned_off": "ausgeschalt",
+ "turned_on": "ugeschalt",
+ "was_at_home": "war doheem",
+ "was_at_state": "war {state}",
+ "was_away": "war Ënnerwee",
+ "was_closed": "war zou",
+ "was_connected": "war connectéiert",
+ "was_disconnected": "war déconnectéiert",
+ "was_locked": "war gespaart",
+ "was_low": "war niddereg",
+ "was_normal": "war normal",
+ "was_opened": "war opgemaach",
+ "was_plugged_in": "war ugeschloss",
+ "was_safe": "war sécher",
+ "was_unlocked": "war net gespaart",
+ "was_unplugged": "war net ugeschloss",
+ "was_unsafe": "war onsécher"
+ },
+ "show_trace": "Spuer uweisen"
+ },
+ "media-browser": {
+ "audio_not_supported": "Däin Browser ënnerstëtzt dësen Audio Element net.",
+ "choose_player": "Ofspiller auswielen",
+ "class": {
+ "album": "Album",
+ "app": "App",
+ "artist": "Artist",
+ "channel": "Kanal",
+ "composer": "Kompositeur",
+ "contributing_artist": "Bäidroenden Artist",
+ "directory": "Bibliothéik",
+ "episode": "Episode",
+ "game": "Spill",
+ "genre": "Genre",
+ "image": "Bild",
+ "movie": "Film",
+ "music": "Musek",
+ "playlist": "Ofspilllëscht",
+ "podcast": "Podcast",
+ "season": "Saison",
+ "track": "Piste",
+ "tv_show": "TV Sendung",
+ "url": "URL",
+ "video": "Video"
+ },
+ "documentation": "Dokumentatioun",
+ "learn_adding_local_media": "Méi iwwert dobäisetze vun Medie an der {documentation} liesen.",
+ "local_media_files": "Placéier deng Video, Audio an Biller Dateien am Medie Dossier fir se kënnen duerch ze sichen an am Browser oder ënnerstëtzte Medie Spiller of ze spillen.",
+ "media-player-browser": "Media Player Browser",
+ "media_browsing_error": "Feeler beim duerchsiche vun de Medie",
+ "media_not_supported": "De Medie Spiller vum Browser ënnerstëtzt dëse typ vun Medie net",
+ "media_player": "Medie Spiller",
+ "no_items": "Keng Elementer",
+ "no_local_media_found": "Keng lokal Medie fonnt",
+ "no_media_folder": "Et gesäit sou aus wéi wann nach keen lokale Medie Dossier erstallt gouf.",
+ "pick": "Auswielen",
+ "pick-media": "Media auswielen",
+ "play": "Spill",
+ "play-media": "Media ofspillen",
+ "setup_local_help": "Kuck Dokumentatioun iwwert d'ariichten vun lokale Medien.",
+ "video_not_supported": "Däin Browser ënnerstëtzt dëse Video Element net.",
+ "web-browser": "Web Navigateur"
+ },
+ "picture-upload": {
+ "label": "Bild",
+ "unsupported_format": "Net ënnerstëtzte Format, wiel e JPEG, PNG oder GIF Bild."
+ },
+ "related-filter-menu": {
+ "filter_by_entity": "Der Entitéit no filteren"
+ },
+ "related-items": {
+ "area": "Beräich",
+ "automation": "Deel vun de folgenden Automatismen",
+ "device": "Apparat",
+ "entity": "Entitéiten a Relatioun",
+ "group": "Deel vun de folgende Gruppen",
+ "integration": "Integratioun",
+ "no_related_found": "Keng ähnlech Objeten fonnt.",
+ "scene": "Deel vun de folgende Zeenen",
+ "script": "Deel vun de folgende Skripten"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\none {Dag}\nother {Deeg}\n}",
+ "hour": "{count} {count, plural,\n one {Stonn}\n other {Stonnen}\n}",
+ "minute": "{count} {count, plural,\n one {Minutt}\n other {Minutten}\n}",
+ "second": "{count} {count, plural,\none {Sekonn}\nother {Sekonnen}\n}",
+ "week": "{count} {count, plural,\none {Woch}\nother {Wochen}\n}"
+ },
+ "just_now": "Grad eben",
+ "never": "Nie"
+ },
+ "service-picker": {
+ "service": "Service"
+ },
+ "target-picker": {
+ "add_area_id": "Beräich auswielen",
+ "add_device_id": "Apparat auswielen",
+ "add_entity_id": "Entitéit auswielen",
+ "expand_area_id": "Erweider dëse Beräich an de getrennten Apparater an Entitéiten déi et enthält. Nom Ausbau ginn d'Apparater an d'Entitéiten net aktualiséiert wann de Beräich ännert.",
+ "expand_device_id": "Erweider dësen Apparat a getrennten Entitéiten. Nom Ausbau gëtt net d'Entitéite aktualiséiert wann den Apparat ännert.",
+ "remove_area_id": "Beräich läschen",
+ "remove_device_id": "Apparat läschen",
+ "remove_entity_id": "Entitéit läschen"
+ },
+ "user-picker": {
+ "add_user": "Benotzer erstellen",
+ "no_user": "Kee Benotzer",
+ "remove_user": "Benotzer läschen"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Falls desaktivéiert, ginn nei entdeckten Entitéiten fir {integration} net automatesch zu Home Assistant dobäigesat.",
+ "enable_new_entities_label": "Aktivéiert nei dobäigesate Entitéiten.",
+ "title": "System Optiounen fir {integration}",
+ "update": "Aktualiséieren"
+ },
+ "domain_toggler": {
+ "reset_entities": "Entitéite resetten",
+ "title": "Domäner ëmschalten"
+ },
+ "entity_registry": {
+ "control": "Kontroll",
+ "dismiss": "Verwerfen",
+ "editor": {
+ "advanced": "Avancéiert Astellungen",
+ "change_device_area": "Beräich vum Apparat änneren",
+ "confirm_delete": "Sécher fir dës Entrée ze läsche?",
+ "delete": "Läschen",
+ "device_disabled": "Den Apparat vun dëser Entitéit ass déaktivéiert.",
+ "enabled_cause": "Desaktivéiert duerch {cause}.",
+ "enabled_delay_confirm": "Déi aktivéiert Entitéite ginn am Home Assistant an {Delay} Sekonnen dobäigesat",
+ "enabled_description": "Deaktivéiert Entitéiten ginn net am Home Assistant bäigesat.",
+ "enabled_label": "Entitéit aktivéieren",
+ "enabled_restart_confirm": "Start Home Assistant nei fir dës Entitéiten z'aktivéieren",
+ "entity_id": "ID vun der Entitéit",
+ "follow_device_area": "Beräich vum Apparat verfollegen",
+ "icon": "Ikon",
+ "icon_error": "Ikonen sollten am format 'prefix:numm' sinn, Beispill: 'mdi:home'",
+ "name": "Numm",
+ "note": "Note: dëst funktionéiert villäicht nach net mat all Integratioun.",
+ "open_device_settings": "Apparat Astellungen opmachen",
+ "unavailable": "Dës Entitéit ass net erreechbar fir de Moment.",
+ "update": "Aktualiséieren"
+ },
+ "faq": "Dokumentatioun",
+ "no_unique_id": "Dës Entitéit (\"{entity_id}\") huet keng eenzegaarteg ID, dofir kënnen hir Astellungen net am Benotzer Interface geréiert ginn. Kuck {faq_link} fir méi Detailer.",
+ "related": "Relatioun",
+ "settings": "Astellungen"
+ },
+ "generic": {
+ "cancel": "Ofbriechen",
+ "close": "Zoumaachen",
+ "default_confirmation_title": "Sécher?",
+ "ok": "OK"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Initial Wäert",
+ "maximum": "Maximale Wäert",
+ "minimum": "Minimale Wäert",
+ "restore": "Restauréiert de leschte bekannte Wäert wann Home Assistant start",
+ "step": "Schrëtt Gréisst"
+ },
+ "generic": {
+ "icon": "Ikon",
+ "name": "Numm"
+ },
+ "input_datetime": {
+ "date": "Datum",
+ "datetime": "Datum an Zäit",
+ "mode": "Wat soll d'Angabe sinn?",
+ "time": "Zäit"
+ },
+ "input_number": {
+ "box": "Angab Feld",
+ "max": "Maximale Wäert",
+ "min": "Minimale Wäert",
+ "mode": "Affichage Modus",
+ "slider": "Slider",
+ "step": "Schrëtt Gréisst",
+ "unit_of_measurement": "Moosseenheet"
+ },
+ "input_select": {
+ "add": "Dobäisetzen",
+ "add_option": "Optioun dobäisetzen",
+ "no_options": "Et gi nach keng Optiounen.",
+ "options": "Optiounen"
+ },
+ "input_text": {
+ "max": "Maximal Längt",
+ "min": "Minimal Längt",
+ "mode": "Affichage Modus",
+ "password": "Passwuert",
+ "pattern": "Regex Muster fir Client-Säiteg Validatioun",
+ "text": "Text"
+ },
+ "platform_not_loaded": "{platform} Integratioun ass net gelueden. Setz et an deng Konfiguration dobäi mat 'default_config:' oder ''{platform}:''.",
+ "required_error_msg": "Dëst Feld ass erfuerderlech",
+ "timer": {
+ "duration": "Dauer"
+ },
+ "yaml_not_editable": "D'Astellunge vun dëser Entitéit kënnen net vun vum Benotzer Interface as geännert ginn. Nëmmen Entitéiten déi iwwer den Benotzer Interface aus konfiguréiert sinn kënnen vun do aus geännert ginn."
+ },
+ "image_cropper": {
+ "crop": "Kierzen"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Paart zoumaachen",
+ "open_cover": "Paart opmaachen",
+ "open_tilt_cover": "Paart op Kipp stelle"
+ },
+ "details": "Detailler",
+ "dismiss": "Dialog ofbriechen",
+ "edit": "Entitéit änneren",
+ "history": "Verlaf",
+ "last_changed": "Läscht Ännerung",
+ "last_updated": "Läscht mise à jour",
+ "person": {
+ "create_zone": "Zone erstellen vun der aktueller Positioun"
+ },
+ "remote": {
+ "activity": "Aktuel Aktivitéit"
+ },
+ "restored": {
+ "confirm_remove_text": "Sécher fir dës Entitéit ze läsche?",
+ "confirm_remove_title": "Entitéit läschen?",
+ "not_provided": "Dës Entitéit ass fir de Momment net ereechbar an ass ee Weesekand vun enger geläschter, geännerter oder futtisser Integratioun oder Apparat.",
+ "remove_action": "Entitéit läschen",
+ "remove_intro": "Falls d'Entitéit net méi benotzt gëtt kënnt dir sie botzen andeems dir sie läscht."
+ },
+ "script": {
+ "last_action": "Läscht Aktioun",
+ "last_triggered": "Läscht ausgeléist"
+ },
+ "settings": "Astellunge vun der Entitéit",
+ "sun": {
+ "elevation": "Héicht",
+ "rising": "Sonnenopgank",
+ "setting": "Sonnenënnergang"
+ },
+ "updater": {
+ "title": "Instruktioune fir d'Mise à jour"
+ },
+ "vacuum": {
+ "clean_spot": "Plaz botzen",
+ "commands": "Staubsauger Kommandoen:",
+ "fan_speed": "Vitesse vum Ventilator",
+ "locate": "Lokaliséieren",
+ "pause": "Pause",
+ "return_home": "Zeréck zur Statioun",
+ "start": "Start",
+ "start_pause": "Start/Pause",
+ "status": "Status",
+ "stop": "Stop"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Probéieren MQTT Noriichten als JSON ze liesen",
+ "entities": "Entitéiten",
+ "no_entities": "Keng Entitéiten",
+ "no_triggers": "Keng Ausléiser",
+ "payload_display": "Payload uweisen",
+ "recent_messages": "{n} läscht erhaalen Noriicht(en)",
+ "show_as_yaml": "Als YAML uweisen",
+ "title": "{device} debug Informatiounen",
+ "triggers": "Ausléiser"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Optiounen"
+ },
+ "success": {
+ "description": "Optiounen erfollegräich gespäichert."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Beräicher",
+ "automation": "Automatisme",
+ "blueprint": "Pläng",
+ "core": "Generell",
+ "customize": "Personaliséierungen",
+ "devices": "Apparate",
+ "entities": "Entitéite",
+ "helpers": "Helfer",
+ "info": "Info",
+ "integrations": "Integratioune",
+ "logs": "Logs",
+ "lovelace": "Lovelace Tableau de Bord",
+ "person": "Persoune",
+ "scene": "Zeene",
+ "script": "Skripte",
+ "server_control": "Server Kontrolle",
+ "users": "Benotzer",
+ "zone": "Zone"
+ },
+ "reload": {
+ "automation": "Automatisme frësch lueden",
+ "command_line": "Kommando Zeilen Entitéite frësch lueden",
+ "filter": "Filter Entitéite frësch lueden",
+ "generic": "Generesch IP Kamera Entitéite frësch lueden",
+ "generic_thermostat": "Generesch Thermostat Entitéite frësch lueden",
+ "homekit": "HomeKit frësch lueden",
+ "input_datetime": "Agab Zäit-Datum frësch lueden",
+ "input_number": "Agab Zuelen frësch lueden",
+ "input_text": "Agab Text frësch lueden",
+ "min_max": "Min/Max Entitéite frësch lueden",
+ "mqtt": "Manuell konfiguréiert MQTT Entitéite frësch lueden",
+ "person": "Persoune frësch lueden",
+ "reload": "{domain} frësch lueden",
+ "rest": "Rest Entitéiten an Notifikatioun Servicer frësch lueden",
+ "rpi_gpio": "Raspberry Pi GPIO Entitéite frësch lueden",
+ "scene": "Zeene frësch lueden",
+ "script": "Skripte frësch lueden",
+ "smtp": "SMTP Notifikatioun Servicer frësch lueden",
+ "statistics": "Statistik Entitéite frësch lueden",
+ "telegram": "Telegram Notifikatioun Servicer frësch lueden",
+ "template": "Virlag Entitéite frësch lueden",
+ "universal": "Universell Medie Spiller Entitéite frësch lueden",
+ "zone": "Zone frësch lueden"
+ },
+ "server_control": {
+ "perform_action": "{action} Server",
+ "restart": "Restart",
+ "stop": "Stop"
+ },
+ "types": {
+ "navigation": "Navigéieren",
+ "reload": "Nei lueden",
+ "server_control": "Server"
+ }
+ },
+ "filter_placeholder": "Entitéite Filter"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant huet näischt héieren.",
+ "error": "Ups, ee Feeler ass opgetrueden",
+ "found": "Ech hunn folgendes fir iech fonnt:",
+ "how_can_i_help": "Wéi kann ech hëllefen?",
+ "label": "Tippt eng Fro an dréckt 'Enter'",
+ "label_voice": "Tippt an dréckt 'Enter' oder klick de Mikro fir ze schwätzen"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Apparater via dësen Apparat dobäisetzen",
+ "clusters": "Cluster verwalten",
+ "device_children": "Kanner uweisen",
+ "reconfigure": "Apparat frësch konfiguréieren",
+ "remove": "Apparat läschen",
+ "zigbee_information": "Zigbee Apparat Informatiounen"
+ },
+ "confirmations": {
+ "remove": "Sécher fir den Apparat ze läsche?"
+ },
+ "device_children": "Zigbee Apparat Kanner",
+ "device_signature": "Zigbee Apparat Signatur",
+ "last_seen": "Fir d'läscht gesinn",
+ "manuf": "vun {manufacturer}",
+ "no_area": "Kee Beräich",
+ "power_source": "Energie Quell",
+ "quirk": "Quirk",
+ "services": {
+ "reconfigure": "ZHA Apparat rekonfiguréieren (Apparat heelen). Benotzt dëst am Fall vu Problemer mam Apparat. Falls den Apparat duerch eng Batterie gespeist gëtt stellt sécher dass en un ass a Befeeler entgéint kann huelen",
+ "remove": "Een Apparat vum Zigbee Reseau läschen.",
+ "updateDeviceName": "Personaliséiert den Numm fir dësen Apparat an der Iwwersiicht vun den Apparaten.",
+ "zigbee_information": "Zigbee Informatioune vum Apparat uweisen."
+ },
+ "unknown": "Onbekannt",
+ "zha_device_card": {
+ "device_name_placeholder": "Numm vum Apparat änneren"
+ }
+ },
+ "zha_reconfigure_device": {
+ "heading": "Apparat frësch konfiguréieren"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\none {Dag}\nother {Deeg}\n}",
+ "hour": "{count} {count, plural,\n one {Stonn}\n other {Stonnen}\n}",
+ "minute": "{count} {count, plural,\n one {Minutt}\n other {Minutten}\n}",
+ "second": "{count} {count, plural,\none {Sekonn}\nother {Sekonnen}\n}",
+ "week": "{count} {count, plural,\none {Woch}\nother {Wochen}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Du kanns nach ëmmer demg Konfiguratioun am YAML änneren.",
+ "editor_not_available": "Kee visuellen Editeur disponibel fir den Typ \"{type}\".",
+ "editor_not_supported": "Visuellen Editeur ass net ënnerstëtzt fir dës Konfiguratioun",
+ "error_detected": "Konfiguratiouns Feeler erkannt",
+ "key_missing": "Néidege Schlëssel \"{key}\" feelt.",
+ "key_not_expected": "Schlëssel \"{key}\" ass net erwaard oder vum visuellen Editeur ënnerstëtzt.",
+ "key_wrong_type": "De Wäert fir \"{key}\" ass net vum visuelle Editeur ënnerstëtzt. Mir ënnerstëtzen ({type_correct}) mee mir kruuten ({type_wrong}).",
+ "no_template_editor_support": "Modeller net ënnerstëtzt am Visuellen Editeur",
+ "no_type_provided": "Keen Typ uginn."
+ },
+ "supervisor": {
+ "ask": "No Hëllef froen",
+ "system_health": "System Zoustand iwwerpréiwen"
+ }
+ },
+ "login-form": {
+ "log_in": "Aloggen",
+ "password": "Passwuert",
+ "remember": "Verhalen"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Dréck de Knäppchen fir {entity} ze konfiguréieren",
+ "close": "Zoumaachen",
+ "dismiss_all": "Alles verwerfen",
+ "empty": "Keng Notifikatioune",
+ "title": "Notifikatioune"
+ },
+ "notification_toast": {
+ "connection_lost": "Verbindung verluer. Verbindung gëtt nees opgebaut…",
+ "dismiss": "Verwerfen",
+ "service_call_failed": "Feeler beim opruffen vun {service}",
+ "started": "Home Assistant ass gestart!",
+ "starting": "Home Assistant start, et wäert nach net alles prett sinn bis et fäerdeg gestart ass.",
+ "triggered": "{name} ausgeléist"
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Feelen Konfiguratioun's Optiounen? Avancéierte Modus aschalten op",
+ "link_profile_page": "är Profil Säit"
+ },
+ "areas": {
+ "caption": "Beräicher",
+ "data_table": {
+ "area": "Beräich",
+ "devices": "Apparater"
+ },
+ "delete": {
+ "confirmation_text": "All Apparater an dësem Beräich ginn néirens zougewisen.",
+ "confirmation_title": "Sécher fir dëse Beräich ze läsche?"
+ },
+ "editor": {
+ "area_id": "Area ID",
+ "create": "Erstellen",
+ "default_name": "Neie Beräich",
+ "delete": "Läschen",
+ "name": "Numm",
+ "name_required": "Numm ass obligatoresch",
+ "unknown_error": "Onbekannten Feeler",
+ "update": "Aktualiséieren"
+ },
+ "picker": {
+ "create_area": "Beräich erstellen",
+ "header": "Beräicher",
+ "integrations_page": "Integratiouns Säit",
+ "introduction": "Beräicher gi benotzt fir d'Organisatioun vum Standuert vun den Apparater. Dës Informatioun gëtt vum Home Assistant benotzt fir iech ze hëllefe fir den Interface, Berechtegungen an Integratioune mat aner Systemer ze geréieren.",
+ "introduction2": "Fir Apparater an e Beräich ze setzen, benotzt de Link ënne fir op d'Integratiouns Säit ze kommen a klickt do op eng konfiguréiert Integratioun fir d'Kaart vum Apparat unzeweisen.",
+ "no_areas": "Et sinn nach keng Beräicher do!"
+ }
+ },
+ "automation": {
+ "caption": "Automatismen",
+ "description": "Erstell eegen Verhaalensregele fir däin Heem",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Plang benotzen"
+ },
+ "header": "Nei Automatisme erstellen",
+ "how": "Wéi wëlls du deng nei Automatisme erstellen?",
+ "start_empty": "Mat enger eideler Automatisme ufänken",
+ "thingtalk": {
+ "create": "Erstellen",
+ "header": "Beschréif den Automatisme deen soll erstallt ginn",
+ "input_label": "Wat soll dësen Automatisme maachen?",
+ "intro": "A mir probéieren et fir dech z'erstellen. Zum Beispill: Schalt Luuchten aus wann ech fort ginn."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Aktioun dobäisetzen",
+ "delete": "Läschen",
+ "delete_confirm": "Element sécher läschen?",
+ "duplicate": "Duplikéiere",
+ "header": "Aktiounen",
+ "introduction": "Aktioune déi den Home Assistant ausféiert wann den Automatismus ausgeléist gouf.\n[Léier méi iwwert Aktiounen.](https://home-assistant.io/docs/automation/action/)",
+ "learn_more": "Méi iwwert Aktioune liesen",
+ "name": "Aktioun",
+ "type": {
+ "choose": {
+ "add_option": "Optioun dobäisetzen",
+ "conditions": "Konditiounen",
+ "default": "Standard Aktiounen",
+ "label": "Auswielen",
+ "option": "Optioun {number}",
+ "remove_option": "Optioun läschen",
+ "sequence": "Aktiounen"
+ },
+ "condition": {
+ "label": "Konditioun"
+ },
+ "delay": {
+ "delay": "Délai",
+ "label": "Delai"
+ },
+ "device_id": {
+ "action": "Aktioun",
+ "extra_fields": {
+ "brightness_pct": "Hellegkeet",
+ "code": "Code",
+ "flash": "Flash",
+ "humidity": "Loftfiichtegkeet",
+ "mode": "Modus",
+ "value": "Wäert"
+ },
+ "label": "Apparat"
+ },
+ "event": {
+ "event": "Evenement:",
+ "label": "Evenement starten",
+ "service_data": "Service-Donnéeën"
+ },
+ "repeat": {
+ "label": "Widderhuelen",
+ "sequence": "Aktiounen",
+ "type": {
+ "count": {
+ "label": "Ziel"
+ },
+ "until": {
+ "conditions": "Bis Konditiounen",
+ "label": "Bis"
+ },
+ "while": {
+ "conditions": "Während Konditiounen",
+ "label": "Während"
+ }
+ },
+ "type_select": "Widderhuelen Typ"
+ },
+ "scene": {
+ "label": "Zeen aktivéieren"
+ },
+ "service": {
+ "label": "Service opruffen"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Weider no Zäitiwwerschreidung",
+ "label": "Op Ausléiser waarden",
+ "timeout": "Zäitiwwerschreidung (optionell)"
+ },
+ "wait_template": {
+ "continue_timeout": "Bei Zäit Iwwerschreidung wéiderfueren",
+ "label": "Waart",
+ "timeout": "Zäitiwwerschreidung (optional)",
+ "wait_template": "Waardenzäit Modell"
+ }
+ },
+ "type_select": "Aktioun Typ",
+ "unsupported_action": "Keng UI Ënnerstëtzung fir Aktioun: {action}"
+ },
+ "alias": "Numm",
+ "blueprint": {
+ "blueprint_to_use": "Plang fir ze benotzen",
+ "header": "Plang",
+ "no_blueprints": "Du hues kee Plang",
+ "no_inputs": "Dëse Plang huet keng Agab."
+ },
+ "conditions": {
+ "add": "Konditioun dobäisetzen",
+ "delete": "Läschen",
+ "delete_confirm": "Sëcher fir ze läschen?",
+ "duplicate": "Duplikéiere",
+ "header": "Konditiounen",
+ "introduction": "Konditioune sinn een optionalen Deel a kënne benotzt gi fir ze bestëmme wann eng Aktioun ausgeféiert gëtt. ",
+ "learn_more": "Méi iwwert Konditioune liesen",
+ "name": "Konditioun",
+ "type": {
+ "and": {
+ "label": "An"
+ },
+ "device": {
+ "condition": "Konditioun",
+ "extra_fields": {
+ "above": "Iwwert",
+ "below": "Ënnert",
+ "for": "Dauer",
+ "hvac_mode": "HVAC Modus",
+ "preset_mode": "Virastellungs Modus"
+ },
+ "label": "Apparat"
+ },
+ "not": {
+ "label": "Net"
+ },
+ "numeric_state": {
+ "above": "Iwwert",
+ "below": "Ënnert",
+ "label": "Numereschen Zoustand",
+ "value_template": "Wäerte Modell (optional)"
+ },
+ "or": {
+ "label": "Oder"
+ },
+ "state": {
+ "label": "Zoustand",
+ "state": "Zoustand"
+ },
+ "sun": {
+ "after": "No:",
+ "after_offset": "No versat (optional)",
+ "before": "Virdrun:",
+ "before_offset": "Virdrun versat (optional)",
+ "label": "Sonn",
+ "sunrise": "Sonnenopgank",
+ "sunset": "Sonnenënnergank"
+ },
+ "template": {
+ "label": "Modell",
+ "value_template": "Wäerte Modell"
+ },
+ "time": {
+ "after": "Duerno",
+ "before": "Virdrun",
+ "label": "Zäit",
+ "type_input": "Wäert vun engem Datum/Zäit Helper",
+ "type_value": "Fix Zäit",
+ "weekdays": {
+ "fri": "Freideg",
+ "mon": "Méindeg",
+ "sat": "Samschdeg",
+ "sun": "Sonndeg",
+ "thu": "Donneschdeg",
+ "tue": "Dënschdeg",
+ "wed": "Mëttwoch"
+ }
+ },
+ "zone": {
+ "entity": "Entitéit mam Standuert",
+ "label": "Zon",
+ "zone": "Zon"
+ }
+ },
+ "type_select": "Typ vun Konditioun",
+ "unsupported_condition": "Keng UI Ënnerstëtzung fir Konditioun: {condition}"
+ },
+ "copy_to_clipboard": "An de Tëschespäicher kopéieren",
+ "default_name": "Néien Automatismus",
+ "description": {
+ "label": "Beschreiwung",
+ "placeholder": "Optional Beschreiwung"
+ },
+ "edit_ui": "Mam Benotzer Inteface änneren",
+ "edit_yaml": "Als YAML änneren",
+ "enable_disable": "Automatismen aktivéieren/deaktivieren",
+ "introduction": "Benotzt Automatismen fir däin Heem zum Liewen ze bréngen",
+ "load_error_not_editable": "Nëmmen Automatiounen am automations.yaml kënnen editéiert ginn.",
+ "load_error_unknown": "Feeler beim luede vun der Automatioun ({err_no}).",
+ "max": {
+ "parallel": "Max. Unzuel vun parallelen Duerchleef.",
+ "queued": "Längt vun der Schlaang"
+ },
+ "modes": {
+ "description": "Dëse Modus kontrolléiert wat passéiert wann den Automatisme ausgeléist gëtt während d'Aktiounen vun engem virechten Ausléiser nach laafen.Kuck {documentation_link} fir méi Informatiounen.",
+ "documentation": "Dokumentatioun vum Automatisme",
+ "label": "Modus",
+ "parallel": "Parrallel",
+ "queued": "an der Schlaang",
+ "restart": "Neistart",
+ "single": "Eenzel (Standard)"
+ },
+ "move_down": "No ënne réckelen",
+ "move_up": "No uewe réckelen",
+ "save": "Späicheren",
+ "triggers": {
+ "add": "Ausléiser dobäisetzen",
+ "delete": "Läschen",
+ "delete_confirm": "Sëcher fir dëst ze läschen?",
+ "duplicate": "Replikéieren",
+ "header": "Ausléiser",
+ "introduction": "Een Ausléiser start de Prozess vun engem Automatismus. Et ass méiglech méi wéi een Ausléiser fir een Automatismus unzeginn. Wann een Ausléiser start validéiert Home Assistant d'Konditiounen a féiert - de Fall gesat - eng Aktioun aus.\n\n[Léier méi iwwert Ausléiser.](https://home-assistant.io/docs/automation/trigger/)",
+ "learn_more": "Méi iwwert Ausléiser liesen",
+ "name": "Ausléiser",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Iwwert",
+ "below": "Ënnert",
+ "for": "Dauer"
+ },
+ "label": "Apparat",
+ "trigger": "Ausléiser"
+ },
+ "event": {
+ "context_user_pick": "Benotzer auswielen",
+ "context_user_picked": "Benotzer deen den Evenement gestart huet",
+ "context_users": "Op Evenementer limitéieren déi ausgeléist goufen duerch ",
+ "event_data": "Evenement Donnée",
+ "event_type": "Typ vun Evenement",
+ "label": "Evenement"
+ },
+ "geo_location": {
+ "enter": "Betrieden",
+ "event": "Evenement",
+ "label": "Geolokalisatioun",
+ "leave": "Verloossen",
+ "source": "Quell",
+ "zone": "Zone"
+ },
+ "homeassistant": {
+ "event": "Evenement:",
+ "label": "Home Assistant",
+ "shutdown": "Ausmaachen",
+ "start": "Starten"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Payload (optional)",
+ "topic": "Sujet"
+ },
+ "numeric_state": {
+ "above": "Iwwert",
+ "below": "Ënnert",
+ "label": "Numereschen Zoustand",
+ "value_template": "Wäerte Modell (optional)"
+ },
+ "state": {
+ "attribute": "Attribut (Optionell)",
+ "for": "Fir",
+ "from": "Vun",
+ "label": "Zoustand",
+ "to": "Op"
+ },
+ "sun": {
+ "event": "Evenement:",
+ "label": "Sonn",
+ "offset": "Versat (optional)",
+ "sunrise": "Sonnenopgank",
+ "sunset": "Sonnenënnergank"
+ },
+ "tag": {
+ "label": "Tag"
+ },
+ "template": {
+ "label": "Modell",
+ "value_template": "Wäerte Modell"
+ },
+ "time": {
+ "at": "Um",
+ "label": "Zäit",
+ "type_input": "Wäert vun engem Datum/Zäit Helper",
+ "type_value": "Fix Zäit"
+ },
+ "time_pattern": {
+ "hours": "Stonnen",
+ "label": "Zäit Muster",
+ "minutes": "Minutten",
+ "seconds": "Sekonnen"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook ID"
+ },
+ "zone": {
+ "enter": "Eran",
+ "entity": "Entitéit mam Standuert",
+ "event": "Evenement:",
+ "label": "Zone",
+ "leave": "Verloossen",
+ "zone": "Zon"
+ }
+ },
+ "type_select": "Typ vun Ausléiser",
+ "unsupported_platform": "Keng UI ënnerstëtzung fir Plattform: {platform}"
+ },
+ "unsaved_confirm": "Net gespäichert Ännerungen. Trotzdeem verloossen?"
+ },
+ "picker": {
+ "add_automation": "Automatismus dobäisetzen",
+ "delete_automation": "Automatisme läschen",
+ "delete_confirm": "Sécher fir dës Automatisme ze läschen?",
+ "dev_automation": "Automatisme debuggen",
+ "dev_only_editable": "Nëmmen Automatisme déi am automations.yaml définéiert sinn könne debugged ginn.",
+ "duplicate": "Duplizéieren",
+ "duplicate_automation": "Automatisme duplizéieren",
+ "edit_automation": "Automatisme änneren",
+ "header": "Automatismen editéieren",
+ "headers": {
+ "name": "Numm"
+ },
+ "introduction": "Den Automatismen-Editor erméiglecht et fir Automatismen z'erstellen an ze änneren. Lies w.e.g. [d'Instruktioune](https://home-assistant.io/docs/automation/editor/) fir sécher ze stellen dass den Home Assistant richteg agestallt ass.",
+ "learn_more": "Méi iwwert Automatioune liesen",
+ "no_automations": "Keen Automatismus fir ze ännere fonnt",
+ "only_editable": "Nëmmen Automatiounen déi am automations.yaml définéiert sinn kënnen editéiert ginn.",
+ "pick_automation": "Automatismus fir ze änneren auswielen",
+ "show_info_automation": "Informatiounen vum Automatisme uweisen"
+ },
+ "thingtalk": {
+ "create": "Automatisme erstellen",
+ "link_devices": {
+ "ambiguous_entities": "Een oder méi Apparater hunn méi wéi eng passend Entitéit, Wiel déi aus déi soll benotzt ginn.",
+ "header": "Super! Elo musse nach e puer Apparater verbonne ginn",
+ "unknown_placeholder": "Onbekannte Plazhaler"
+ },
+ "task_selection": {
+ "error_empty": "Gëff ee Kommando an oder klick op Iwwersprangen.",
+ "error_unsupported": "Mir konnten (nach?) keen Automatisme fir dëst erstellen.",
+ "for_example": "Zum Beispill:",
+ "header": "Nei Automatisme erstellen",
+ "introduction": "Gëff ënnendran an wat déi Automatisme maache sollt, a mir probéieren et an eng Home Assistant Automatisme ëmzewandelen.",
+ "language_note": "Nott: Nëmmen Englesch gëtt fir de Moment ënnerstëtzt."
+ }
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "Gemeinschaftsforen",
+ "error_no_url": "Gëff d'URL vum Plang un.",
+ "file_name": "Pad zum Plang",
+ "header": "Plang importéieren",
+ "import_btn": "Virschau vum Plang",
+ "import_header": "Plang: \"{name}\"",
+ "import_introduction_link": "Du kanns Pläng vun anere Github Benotzer an {community_link} importéieren. Gëff d'URL vum Plang ënnen un.",
+ "importing": "Plang gëtt gelueden...",
+ "raw_blueprint": "Plang Inhalt",
+ "save_btn": "Plang importéieren",
+ "saving": "Plang gëtt importéiert…",
+ "unsupported_blueprint": "Dëse Plang gëtt net ënnerstëtzt",
+ "url": "URL vum Plang"
+ },
+ "caption": "Pläng",
+ "description": "Pläng verwalten",
+ "overview": {
+ "add_blueprint": "Plang importéieren",
+ "confirm_delete_header": "Dëse Plang läschen?",
+ "confirm_delete_text": "Sécher fir dëse Plang ze läsche?",
+ "delete_blueprint": "Plang läschen",
+ "discover_more": "Méi Pläng entdecken",
+ "header": "Plang Editeur",
+ "headers": {
+ "domain": "Domain",
+ "file_name": "Datei Numm",
+ "name": "Numm"
+ },
+ "introduction": "Plang Konfiguratioun erlabt et Pläng z'importéieren an deng Pläng ze verwalten.",
+ "learn_more": "Méi iwwert Pläng léieren",
+ "share_blueprint": "Plang deelen",
+ "share_blueprint_no_url": "Kann de Plang net deelen: keng quell URL",
+ "use_blueprint": "Automatisme erstellen"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Dokumentatioun iwwert d'Konfiguration",
+ "disable": "Desaktivéieren",
+ "enable": "Aktivéieren",
+ "enable_ha_skill": "Aktivéiert Home Assistant Fäegkeet fir Alexa",
+ "enable_state_reporting": "Zostand Berichterstattung aktivéieren",
+ "info": "Mat der Alexa Integratioun fir Home Assistant Cloud könnt dir all är Home Assistant Apparater via Alexa supportéiert Apparater steieren.",
+ "info_state_reporting": "Wann dir de Rapport vun den Zoustänn aktivéiert schéckt Home Assistant all Ännerung vum Zoustand vun exposéierten Entitéiten op Amazon. Dës erlaabt iech ëmmer déi leschten Zoustänn an der Alexa App ze gesinn an d'Ännerunge vun den Zoustänn ze benotze fir Ofleef z'erstellen.",
+ "manage_entities": "Entitéite verwalten",
+ "state_reporting_error": "Kann net den Rapport vum Zoustand {enable_disable}",
+ "sync_entities": "Entitéite synchroniséieren",
+ "sync_entities_error": "Feeler beim synchroniséieren vun den Entitéite:",
+ "title": "Alexa"
+ },
+ "connected": "Verbonnen",
+ "connection_status": "Cloud Verbindungs Status",
+ "fetching_subscription": "Abonnement gëtt ausgelies…",
+ "google": {
+ "config_documentation": "Dokumentatioun iwwert d'Konfiguration",
+ "devices_pin": "Sécherheets Apparater Pin",
+ "enable_ha_skill": "Aktivéiert Home Assistant Fäegkeet fir Google Assistant",
+ "enable_state_reporting": "Zostand Berichterstattung aktivéieren",
+ "enter_pin_error": "Kann net de Pin späicheren:",
+ "enter_pin_hint": "Gitt ee Pin an fir Sécherheets Apparater ze benotzen",
+ "enter_pin_info": "Gitt w.e.g en Pin un fir d'Interaktioun mat Sécherheets Apparater. Sécherheets Apparater kënnen Dieren, Garagen a Schlässer sinn. Dir gitt de PIN gefrot fir ze soen oder anzegi fir d'Interaktioun mat Service wéi Google Assistant.",
+ "info": "Mat der Google Assistant Integratioun fir Home Assistant Cloud könnt dir all är Home Assistant Apparater via Google Assistant supportéiert Apparater steieren.",
+ "info_state_reporting": "Wann dir de Rapport vun den Zoustänn aktivéiert schéckt Home Assistant all Ännerung vum Zoustand vun exposéierten Entitéiten op Google. Dës erlaabt iech ëmmer déi leschten Zoustänn an der Google App ze gesinn.",
+ "manage_entities": "Entitéiten verwalten",
+ "security_devices": "Sécherheets Apparater",
+ "sync_entities": "Entitéiten mat Google synchroniséieren",
+ "sync_entities_404_message": "Feeler bei der Synchronisatioun vun den Entitéiten mat Google. Froot Google 'Hey Google, synchroniséier meng Apparater' fir d'Entitéiten ze synchroniséieren.",
+ "title": "Google Assistant"
+ },
+ "integrations": "Integratioune",
+ "integrations_introduction": "Integratioune fir Home Assistant Cloud erlaben iech mat Servicer an der Cloud ze verbannen ouni dass är Home Assistant Instanz ëffentlech um Internet ass.",
+ "integrations_introduction2": "Kuckt d'Websäit fir ",
+ "integrations_link_all_features": " all verfügbar Eegeschafte",
+ "manage_account": "Kont verwalten",
+ "nabu_casa_account": "Nabu Casa Kont",
+ "not_connected": "Net verbonnen",
+ "remote": {
+ "access_is_being_prepared": "Remote Accès gëtt virbereet. Mir ginn iech Bescheed wann et prett ass.",
+ "certificate_info": "Zertifikat Informatiounen",
+ "info": "Home Assistant Cloud stellt eng sécher Verbindung zu ärer Instanz bereet wann dir ënnerwee sidd.",
+ "instance_is_available": "Är Instanz ass disponibel op",
+ "instance_will_be_available": "Är Instanz gëtt disponibel op",
+ "link_learn_how_it_works": "Léier wéi et funktionéiert",
+ "title": "Fernsteierung"
+ },
+ "sign_out": "Ofmellen",
+ "thank_you_note": "Merci dass dir Deel sidd vun der Home Assistant Cloud. Et ass wéinst iech dass mir sou eng groussaarteg Home Automation Erfarung fir jiddweree kënne maachen. Villmools Merci!",
+ "tts": {
+ "dialog": {
+ "example_message": "Hallo {name}, du kanns all Text op all ënnerstëtzte Medie Spiller ofspillen!",
+ "header": "Probéier Text zu Sprooch",
+ "play": "Ofspillen",
+ "target": "Ziel",
+ "target_browser": "Navigateur"
+ },
+ "try": "Probéier"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Feeler beim désaktivéieren vum Webhook:",
+ "info": "Alles wat konfiguréiert ass fir duerch e Webhook ausgeléist ze ginn, kann eng ëffentlech zougänglech URL kréien, fir datt Dir Är Donnéeën zréck un den Home Assistant vun iergendwou kënnt zréckschécken, ouni Är Instanz um Internet z'exposéieren",
+ "link_learn_more": "Méi iwwert wéi ee webhook-baséiert Automatismen erstellt léieren",
+ "loading": "Lued …",
+ "manage": "Verwalten",
+ "no_hooks_yet": "Et gesäit sou aus wéi wann nach keng webhooks benotzt ginn. Fänkt mam erstellen vun enger ",
+ "no_hooks_yet2": " oder via erstellen vun ",
+ "no_hooks_yet_link_automation": "Webhook Automatisme",
+ "no_hooks_yet_link_integration": "webhook baséierter Integratioun",
+ "title": "Webhooks"
+ }
+ },
+ "alexa": {
+ "banner": "D'Ännere vun den Entitéiten déi iwwert dës UI exposéiert sinn ass desaktivéiert well Entitéite Filter an der configuration.yaml konfiguréiert sinn.",
+ "dont_expose_entity": "Entitéit net exposéieren",
+ "expose": "Op Alexa exposéieren",
+ "expose_entity": "Entitéit exposéieren",
+ "exposed": "{selected} exposéiert",
+ "exposed_entities": "Exposéiert Entitéiten",
+ "follow_domain": "Domain suivéieren",
+ "manage_domains": "Domaine verwalten",
+ "not_exposed": "{selected} net exposéiert",
+ "not_exposed_entities": "Net exposéiert Entitéiten",
+ "title": "Alexa"
+ },
+ "description_features": "Steier vun ënnerwee aus an integréier mam Alexa an Google Assistant.",
+ "description_login": "Ageloggt als {email}",
+ "description_not_login": "Net ageloggt",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Zertifikat Verfallsdatum",
+ "certificate_information": "Zertifikat Informatiounen",
+ "close": "Zoumaachen",
+ "fingerprint": "Zertifikat Fanger Ofdrock",
+ "will_be_auto_renewed": "Gëtt automatesch verlängert"
+ },
+ "dialog_cloudhook": {
+ "available_at": "De Webhook ass disponibel op der folgender URL:",
+ "close": "Zoumaachen",
+ "confirm_disable": "Sécher fir dëse Webhook ze desaktivéieren?",
+ "copied_to_clipboard": "An de Tëschespäicher kopéiert",
+ "info_disable_webhook": "Wann dir dëse Webhook net wëllt länger benotzen, kënnt dir",
+ "link_disable_webhook": "Desaktivéieren",
+ "managed_by_integration": "Dëse Webhook gëtt vun enger Integratioun verwalt a kann net desaktivéiert ginn.",
+ "view_documentation": "Dokumentatioun kucken",
+ "webhook_for": "Webhook fir {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "Kuckt är E-Maile fir Uweisunge wéi d'Passwuert zeréckgesat gëtt.",
+ "email": "E-Mail",
+ "email_error_msg": "Ongëlteg E-Mail",
+ "instructions": "Gitt är E-Mail Adress un a mir schécken iech e Link fir äert Passwuert zeréck ze setzen.",
+ "send_reset_email": "Reset E-Mail schécken",
+ "subtitle": "Passwuert vergiess",
+ "title": "Passwuert vergiess"
+ },
+ "google": {
+ "banner": "D'Ännere vun den Entitéiten déi iwwert dës UI exposéiert sinn ass desaktivéiert well Entitéite Filter an der configuration.yaml konfiguréiert sinn.",
+ "disable_2FA": "2-Faktor-Authentifikatioun désaktivéieren",
+ "dont_expose_entity": "Entitéit net exposéieren",
+ "expose": "Op Google Assistant exposéieren",
+ "expose_entity": "Entitéit exposéieren",
+ "exposed": "{selected} exposéiert",
+ "exposed_entities": "Exposéiert Entitéiten",
+ "follow_domain": "Domain suivéieren",
+ "manage_domains": "Domaine verwalten",
+ "not_exposed": "{selected} net exposéiert",
+ "not_exposed_entities": "Net exposéiert Entitéiten",
+ "sync_to_google": "Ännerungen ginn mat Google synchroniséiert",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Dir musst är E-Mail confirméieren ier dir iech verbanne kënnt.",
+ "alert_password_change_required": "Dir musst ärt Passwuert ännere ier dir iech verbanne kënnt.",
+ "dismiss": "Verwerfen",
+ "email": "E-Mail",
+ "email_error_msg": "Ongëlteg E-Mail",
+ "forgot_password": "Passwuert vergiess?",
+ "introduction": "Home Assistant Cloud liwwert Iech eng sécher Fernverbindung op Är Instanz wann Dir ënnerwee sidd. Et erlaabt Iech och mat Cloud Servicer ze verbannen: Amazon Alexa a Google Assistant.",
+ "introduction2": "Dëse Service gëtt vun eisem Partner geleet ",
+ "introduction2a": ", eng Firma gegrënnt vun de Grënner vun Home Assistant an Hass.io.",
+ "introduction3": "Home Assistant Cloud ass een Abonnement Service mat engem Mount gratis Testperiod. Keng Paiement Informatiounen néideg",
+ "learn_more_link": "Léier méi iwwert Home Assistant Cloud",
+ "password": "Passwuert",
+ "password_error_msg": "Passwierder hunn op mannst 8 Charakteren",
+ "sign_in": "Umellen",
+ "start_trial": "Start är gratis 1 Mount Testperiod",
+ "title": "Cloud Login",
+ "trial_info": "Keng Paiement Informatiounen néideg"
+ },
+ "register": {
+ "account_created": "Kont erstallt! Kuckt är E-Mailen fir Uweisungen wéi den Kont aktivéiert gëtt.",
+ "create_account": "Kont erstellen",
+ "email_address": "E-Mail Adresse",
+ "email_error_msg": "Ongëlteg E-Mail",
+ "feature_amazon_alexa": "Integratioun mat Amazon Alexa",
+ "feature_google_home": "Integratioun mat Google Assistant",
+ "feature_remote_control": "Kontrolléiert ären Home Assistant vun ënnerwee",
+ "feature_webhook_apps": "Einfach Integratioun mat webhook-baséierten Apps wéi OwnTracks",
+ "headline": "Start är gratis Testperiod",
+ "information": "Erstellt ee Kont fir mat ärer Gratis 1 Mount Test Period unzefänken. Keng Paiement Informatiounen néideg.",
+ "information2": "Testversioun gëtt iech Accès op all Beneficer vun der Home Assistant Cloud, inklusive:",
+ "information3": "Dëse Service gëtt vun eisem Partner geleet ",
+ "information3a": ", eng Firma gegrënnt vun de Grënner vun Home Assistant an Hass.io.",
+ "information4": "Andeems Dir Iech fir e Kont ugemellt hutt, akzeptéiert Dir déi folgend Bedéngungen.",
+ "link_privacy_policy": "Dateschutz Bestëmmungen",
+ "link_terms_conditions": "Konditioune",
+ "password": "Passwuert",
+ "password_error_msg": "Passwierder hunn op mannst 8 Charakteren",
+ "resend_confirm_email": "Bestätegung's E-Mail nach emol verschécken",
+ "start_trial": "Testperiod starten",
+ "title": "Kont registréieren"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Net gespäichert Ännerungen. Trotzdeem verloossen?"
+ }
+ },
+ "core": {
+ "caption": "Generell",
+ "description": "Eenheetesystem, Standuert, Zäitzone & aner allgemeng Parameteren",
+ "section": {
+ "core": {
+ "core_config": {
+ "edit_requires_storage": "Editeur ass desaktivéiert well d'Konfiguratioun an der configuration.yaml gespäichert ass.",
+ "elevation": "Héicht",
+ "elevation_meters": "Meter",
+ "external_url": "Externe URL",
+ "imperial_example": "Fahrenheit, Pënner",
+ "internal_url": "Interne URL",
+ "latitude": "Breedegrad",
+ "location_name": "Numm vun der Home Assistant Installatioun",
+ "longitude": "Längegrad",
+ "metric_example": "Celsius, Kilogramm",
+ "save_button": "Späicheren",
+ "time_zone": "Zäitzone",
+ "unit_system": "Eenheetesystem",
+ "unit_system_imperial": "Imperial",
+ "unit_system_metric": "Metresch"
+ },
+ "header": "Konfiguratioun an Server Kontroll",
+ "introduction": "D'Ännere vun der Konfiguratioun kann e lästege Prozess sinn. Mir wëssen dat. Dës Sektioun probéiert fir Äert Liewen e bësse méi einfach ze maachen."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Folgend Attributer si schonn an der customize.yaml gesat",
+ "attributes_not_set": "Folgend Attributer sinn net gesaat. Définéiert sie wann dir wëllt.",
+ "attributes_outside": "Folgend Attributer sinn ausserhalb vun der customize.yaml personaliséiert ginn",
+ "attributes_override": "Dir könnt sie iwwerschrweiwen wann dir wëllt.",
+ "attributes_set": "Déi folgend Attributer vun der Entitéit gi programméiert gesat.",
+ "caption": "Personaliséieren",
+ "description": "Är Entitéite personaliséieren",
+ "different_include": "Eventuell iwwer e Domän, e Glob oder eng aner Include Method.",
+ "pick_attribute": "Wielt een Attribut aus fir z'iwwerschreiwen",
+ "picker": {
+ "documentation": "Dokumentatioun vun der Personalisatioun",
+ "header": "Personaliséieren",
+ "introduction": "Manipulatioun vun den Attributen pro Entitéit. Nei/geännert Personlisatiounen sinn direkt effektiv. Geläschte Personalisatioune ginn effektiv wann d'Entitéit sech aktualiséiert."
+ },
+ "warning": {
+ "include_link": "customize.yaml enthält",
+ "include_sentence": "Et schéngt wéi wann är configuration.yaml net richteg",
+ "not_applied": "Ännerungen hei gi gespäichert, mee nëmmen effektiv no enger Aktualiséierung vun der Konfiguratioun ausser den include ass en Place."
+ }
+ },
+ "devices": {
+ "add_prompt": "Nach keen {name} gouf mat dësem Apparat dobäigesat. Du kanns een dobäisetzen mat engem Klick op de + Knäppchen hei uewen.",
+ "automation": {
+ "actions": {
+ "caption": "Wann eppes ausgeléist gëtt",
+ "no_actions": "Keng Aktiounen",
+ "unknown_action": "Onbekannten Aktioun"
+ },
+ "automations": "Automatismen",
+ "conditions": {
+ "caption": "Nëmmen eppes maachen wann…",
+ "no_conditions": "Keng Konditiounen",
+ "unknown_condition": "Onbekannte Konditioun"
+ },
+ "create": "Automatisme mat Apparat erstellen",
+ "create_disable": "Ka keen Automatisme mat déaktivéiertem Apparat erstellen",
+ "no_automations": "Keng Automatismen",
+ "no_device_automations": "Et gi keng Automatisme fir dësen Apparat.",
+ "triggers": {
+ "caption": "Maach eppes wann...",
+ "no_triggers": "Keng Ausléiser",
+ "unknown_trigger": "Onbekannten Ausléiser"
+ },
+ "unknown_automation": "Onbekannten Automatisme"
+ },
+ "cant_edit": "Dir kënnt nëmmen Elementer änneren déi an der UI erstallt goufen.",
+ "caption": "Apparater",
+ "confirm_delete": "Sécher fir dësen Appara ze läsche?",
+ "confirm_rename_entity_ids": "Wëllt Dir och d'Entitéiten-ID vun Ären Entitéiten ëmbenennen?",
+ "confirm_rename_entity_ids_warning": "Dëst ännert keng Konfiguratioun (wéi Automatisatisme, Skripte, Szene, Tableau de Bord) déi aktuell dës Entitéite benotzt, du muss se selwer aktualiséieren fir dass sie déi nei Entitéiten ID's benotzen.",
+ "data_table": {
+ "area": "Beräich",
+ "battery": "Batterie",
+ "device": "Apparat",
+ "integration": "Integratioun",
+ "manufacturer": "Hiersteller",
+ "model": "Modell",
+ "no_devices": "Keng Apparater"
+ },
+ "delete": "Läschen",
+ "description": "Verwalt konfiguréiert Apparater",
+ "device_info": "Informatioune vum Apparat",
+ "device_not_found": "Apparat net fonnt.",
+ "disabled": "Deaktivéiert",
+ "disabled_by": {
+ "config_entry": "Konfiguratioun's Entrée",
+ "integration": "Integratioun",
+ "user": "Benotzer"
+ },
+ "enabled_cause": "Dësen Apparat ass duerch {cause} déaktivéiert.",
+ "enabled_description": "Deaktivéiert Apparater gi net ugewisen an Entitéiten déi zum Apparat gehéieren, ginn och deaktivéiert an net zum Home Assistant dobäigesat.",
+ "enabled_label": "Apparat aktivéieren",
+ "entities": {
+ "add_entities_lovelace": "Zu Lovelace bäisetzen",
+ "disabled_entities": "+{count} {count, plural,\n one {Déaktivéiert Entitéit}\n other {Déaktivéiert Entitéiten}\n}",
+ "entities": "Entitéiten",
+ "hide_disabled": "Deaktivéiert net uweisen",
+ "none": "Dësen Appart huet keng Entitéiten."
+ },
+ "name": "Numm",
+ "no_devices": "Keng Apparater",
+ "picker": {
+ "filter": {
+ "filter": "Filter",
+ "show_all": "All uweisen",
+ "show_disabled": "Déaktivéiert Apparater uweisen"
+ },
+ "search": "Apparater sichen"
+ },
+ "scene": {
+ "create": "Zeen mat Apparat erstellen",
+ "create_disable": "Ka keng Zeen mat déaktivéiertem Apparat erstellen",
+ "no_scenes": "Keng Zeenen",
+ "scenes": "Zeenen"
+ },
+ "scenes": "Zeenen",
+ "script": {
+ "create": "Skript mat Apparat erstellen",
+ "create_disable": "Ka kee Skript mat déaktivéiertem Apparat erstellen",
+ "no_scripts": "Keng Skripten",
+ "scripts": "Skripten"
+ },
+ "scripts": "Skripten",
+ "unknown_error": "Onbekannten Feeler",
+ "unnamed_device": "Apparat ouni Numm",
+ "update": "Aktualiséieren"
+ },
+ "entities": {
+ "caption": "Entitéiten",
+ "description": "Bekannten Entitéite verwalten",
+ "picker": {
+ "disable_selected": {
+ "button": "Ausgewielte deaktivéieren",
+ "confirm_text": "Deaktivéiert Entitéiten ginn net am Home Assistant bäigesat."
+ },
+ "enable_selected": {
+ "button": "Ausgewielten aktivéieren",
+ "confirm_text": "Dës mecht sie rëm am Home Assistant siichtbar wann sie fir de Moment deaktivéiert sinn."
+ },
+ "filter": {
+ "filter": "Filter",
+ "show_all": "All uweisen",
+ "show_disabled": "Deaktivéiert Entitéiten uweisen",
+ "show_readonly": "Schreifgeséchert Entitéiten uweisen",
+ "show_unavailable": "Net ereechbar Entitéite uweisen"
+ },
+ "header": "Entitéiten",
+ "headers": {
+ "area": "Beräich",
+ "entity_id": "ID vun der Entitéit",
+ "integration": "Integratioun",
+ "name": "Numm",
+ "status": "Status"
+ },
+ "introduction": "Home Assistant hält eng Lëscht vun all Entitéit's ID déi eenzel erkennbar ass a bis elo vum System erkannt gouf. All eenzel vun dësen Entitéite kritt eng ID zougewise welch nëmme fir dës Entitéit reservéiert ass.",
+ "introduction2": "Benotzt d'Lëscht vun den Entitéite fir d'Nimm z'änneren, d'Entitéits ID z'änneren oder d'Entrée aus dem Home Assistant ze läschen.",
+ "remove_selected": {
+ "button": "Ausgewielte läschen",
+ "confirm_partly_text": "Nëmmen {removable} vun den ausgewielten {selected} Entitéite kënne geläscht ginn. Entitéiten kënne nëmmen geläscht ginn wann eng Integratioun déi Entitéiten net méi zur Verfügung stellt. Heiansdo muss Home Assistant frësch gestart ginn fir Entitéiten vun enger geläschten Integratioun ze läschen. Sécher fir déi läschbar Entitéiten ze läschen?",
+ "confirm_text": "Du solls déi vun der Lovelace Konfiguratioun an Automatisme läschen falls se dës Entitéiten enthalen."
+ },
+ "search": "Entitéite sichen",
+ "selected": "{number} ausgewielt",
+ "status": {
+ "disabled": "Deaktivéiert",
+ "ok": "Ok",
+ "readonly": "Nëmme liesen",
+ "restored": "Restauréiert",
+ "unavailable": "Net erreechbar"
+ }
+ }
+ },
+ "header": "Home Assistant astellen",
+ "helpers": {
+ "caption": "Helper",
+ "description": "Elementer déi et erlaaben Automatismen z'erstellen",
+ "dialog": {
+ "add_helper": "Helper bäifügen",
+ "add_platform": "{platform} bäifügen",
+ "create": "Erstellen"
+ },
+ "picker": {
+ "add_helper": "Helper bäifügen",
+ "headers": {
+ "editable": "Editéierbar",
+ "entity_id": "ID vun der Entitéit",
+ "name": "Numm",
+ "type": "Typ"
+ },
+ "no_helpers": "Et gesäit sou aus wéi wann nach keng Helpers erstallt goufen."
+ },
+ "types": {
+ "counter": "Compteur",
+ "input_boolean": "Ëmschalten",
+ "input_datetime": "Datum an/oder Zäit",
+ "input_number": "Nummer",
+ "input_select": "Auswiellëscht",
+ "input_text": "Text",
+ "timer": "Timer"
+ }
+ },
+ "info": {
+ "built_using": "Erstallt mat",
+ "caption": "Info",
+ "copy_github": "Fir Github",
+ "copy_raw": "Rengen Text",
+ "custom_uis": "Personaliséierte Benotzer Interface:",
+ "description": "Versioun, System Zoustand an Linke zur Dokumentatioun",
+ "developed_by": "Entwéckelt vun enger ganzer Rei fantastesche Leit.",
+ "documentation": "Dokumentatioun",
+ "frontend": "frontend-ui",
+ "frontend_version": "Frontend Versioun: {version} - {type}",
+ "home_assistant_logo": "Home Assistant logo",
+ "icons_by": "Ikonen vun",
+ "integrations": "Integratioune",
+ "issues": "Problemer",
+ "license": "Verëffentlecht ënnert der Apache 2.0 Lizenz",
+ "path_configuration": "Pad zur configuration.yaml: {path}",
+ "server": "server",
+ "source": "Quell:",
+ "system_health": {
+ "manage": "Verwalten",
+ "more_info": "Méi Informatiounen"
+ },
+ "system_health_error": "System Gesondheet Komponent net gelueden. Setz 'system_health:' zur configuration.yaml dobäi"
+ },
+ "integrations": {
+ "add_integration": "Integratioun dobäisetzen",
+ "attention": "Opmierksamkeet erfuerderlech",
+ "caption": "Integratiounen",
+ "config_entry": {
+ "area": "An {area}",
+ "check_the_logs": "Logs iwwerpréifen",
+ "configure": "Astellen",
+ "delete": "Läschen",
+ "delete_confirm": "Sécher fir dës Integratioun ze läsche?",
+ "depends_on_cloud": "Cloud ofhängeg",
+ "device_unavailable": "Apparat net erreechbar",
+ "devices": "{count} {count, plural,\n one {Apparat}\n other {Apparaten}\n}",
+ "disable": {
+ "disabled": "Deaktivéiert",
+ "disabled_by": {
+ "device": "Apparat",
+ "integration": "Integratioun",
+ "user": "Benotzer"
+ }
+ },
+ "documentation": "Dokumentatioun",
+ "entities": "{count} {count, plural,\n one {Entitéit}\n other {Entitéiten}\n}",
+ "entity_unavailable": "Entitéit net erreechbar",
+ "firmware": "Firmware: {version}",
+ "hub": "Verbonnen via",
+ "manuf": "vun {manufacturer}",
+ "no_area": "Kee Beräich",
+ "not_loaded": "Net gelueden",
+ "reload": "Nei lueden",
+ "reload_confirm": "Integratioun gouf frësch gelueden",
+ "reload_restart_confirm": "Start Home Assistant nei fir dës Integratioun fäerdeg ze lueden",
+ "rename": "Ëmbenennen",
+ "restart_confirm": "Start Home Assistant nei fir dës Integratioun ze läschen",
+ "state": {
+ "failed_unload": "Feeler beim entlueden",
+ "loaded": "Gelueden",
+ "migration_error": "Feeler bei der Migratioun",
+ "not_loaded": "Net gelueden",
+ "setup_error": "Feeler beim ariichten",
+ "setup_retry": "Probéiert nach emol anzeriichten"
+ },
+ "system_options": "System Optiounen",
+ "unnamed_entry": "Entrée ouni Numm"
+ },
+ "config_flow": {
+ "aborted": "Ofgebrach",
+ "close": "Zoumaachen",
+ "created_config": "Konfiguratioun erstallt fir {name}.",
+ "dismiss": "Dialog ofbriechen",
+ "error": "Feeler",
+ "error_saving_area": "Feeler beim späicheren vum Beräich: {error}",
+ "external_step": {
+ "description": "Fir dës Etapp ofzeschléisse muss dir eng externe Internetsäit besichen.",
+ "open_site": "Internetsäit opmaachen"
+ },
+ "finish": "Ofschléissen",
+ "not_all_required_fields": "Net all erfuerderlech Felder sinn ausgefëllt.",
+ "submit": "Ofschécken"
+ },
+ "configure": "Astellen",
+ "configured": "Konfiguréiert",
+ "description": "Integratioune mat Servicer, Apparater, …verwalten",
+ "details": "Detailer vun der Integratioun",
+ "disable": {
+ "disabled_integrations": "{number} deaktivéiert"
+ },
+ "discovered": "Entdeckt",
+ "home_assistant_website": "Home Assistant Websäit",
+ "ignore": {
+ "confirm_delete_ignore": "Dëst wäert d'Integratioun an Ären entdeckten Integratiounen erëm siichtbar maache wann se entdeckt gëtt. Dëst kann e Restart erfuerderen oder e bëssi Zäit brauchen.",
+ "confirm_delete_ignore_title": "Ophale mam ignoréieren vun {name}?",
+ "confirm_ignore": "Bass du sécher, dass Du dës Integratioun net wëlls ariichten? Du kanns dëst annuléieren andeems Du op 'Ignoréiert Integratiounen uweisen' am Menü uewe riets klicks.",
+ "confirm_ignore_title": "Entdeckung vun {name} ignoréieren?",
+ "ignore": "Ignoréieren",
+ "ignored": "Ignoréiert",
+ "show_ignored": "Ignoréiert Integratiounen uweisen",
+ "stop_ignore": "Ophale mam ignoréieren"
+ },
+ "integration": "Integratioun",
+ "integration_not_found": "Integratioun net fonnt.",
+ "new": "Eng nei Integratioun ariichten",
+ "no_integrations": "Et gesäit sou ass wéi wann nach keng Integratioun ageriicht ass. Klick de Knäppchen hei ënnen fir déi éischt Integratioun anzeriichten.",
+ "none": "Nach näischt konfiguréiert",
+ "none_found": "Keng Integratioune fonnt",
+ "none_found_detail": "Siich Kriterien upassen.",
+ "note_about_integrations": "Net all Integratioune könne nach via den Benotzer Interface konfiguréiert ginn.",
+ "note_about_website_reference": "Méi sin der disponibel op der ",
+ "reconfigure": "Nei Konfiguréieren",
+ "rename_dialog": "Numm vun dësem Objet läschen",
+ "rename_input_label": "Numm",
+ "search": "Integratioune sichen"
+ },
+ "introduction": "Hei ass et méiglech är Komponenten vum Home Assistant ze konfiguréieren. Net alles ass méiglech fir iwwert den Interface anzestellen, mee mir schaffen drun.",
+ "logs": {
+ "caption": "Logbicher",
+ "clear": "Läschen",
+ "description": "Home Assistant Logbicher ukucken",
+ "details": "Detailler vum Log ({level})",
+ "level": {
+ "error": "FEELER",
+ "info": "INFO",
+ "warning": "WARNUNG"
+ },
+ "load_full_log": "Kompletten Home Assistant Log lueden",
+ "loading_log": "Feeler Log gëtt gelueden...",
+ "multiple_messages": "Noriicht als éischt opgetrueden um {time} a säit deem {counter} mol opgetrueden",
+ "no_errors": "Et gouf kee Feeler gemellt.",
+ "no_issues": "Keng nei Problemer!",
+ "refresh": "Aktualiséieren"
+ },
+ "lovelace": {
+ "caption": "Lovelace Tableau de Bord",
+ "dashboards": {
+ "cant_edit_default": "De Standard Lovelace Tableau de Bord kann net vum Benotzer Interface aus verännert ginn. Et kann verstoppt ginn andeems een aneren Tableau de Bord als Standard définéiert gëtt.",
+ "cant_edit_yaml": "Tableau de Bord déi am YAML définéiert sinn kënnen net vum Benotzer Interface aus verännert ginn. Änner se an der configuration.yaml",
+ "caption": "Tableau de Bord",
+ "conf_mode": {
+ "storage": "Kontrolléiert vum Benotzer Interface",
+ "yaml": "Yaml Fichier"
+ },
+ "confirm_delete": "Sécher fir dëse Tableau de Bord ze läschen?",
+ "default_dashboard": "Dëst ass den Standard Tableau de Bord",
+ "detail": {
+ "create": "Erstellen",
+ "delete": "Läschen",
+ "dismiss": "Zoumaachen",
+ "edit_dashboard": "Tableau de Bord änneren",
+ "icon": "Ikon",
+ "new_dashboard": "Neien Tableau de Bord dobäisetzen",
+ "remove_default": "Als Standard op dësem Apparat ewech huelen",
+ "require_admin": "Admin nëmmen",
+ "set_default": "Als Standard op dësem Apparat définéieren",
+ "show_sidebar": "An der Säite Läischt uweisen",
+ "title": "Titel",
+ "title_required": "Titel ass erfuerderlech.",
+ "update": "Aktualiséieren",
+ "url": "URL",
+ "url_error_msg": "D'Url ka keen Espace oder speziell Charakteren, ausser _ an - , enthalen."
+ },
+ "picker": {
+ "add_dashboard": "Tableau de Bord dobäisetzen",
+ "headers": {
+ "conf_mode": "Konfiguratioun's Method",
+ "default": "Standard",
+ "filename": "Numm vum Fichier",
+ "require_admin": "Admin nëmmen",
+ "sidebar": "An der Säite Läischt uweisen",
+ "title": "Titel"
+ },
+ "open": "Opmaachen"
+ }
+ },
+ "description": "Personaliséierte Set vu Kaarten erstellen fir däin Heem ze stéieren",
+ "resources": {
+ "cant_edit_yaml": "Du benotz Lovelace am YAML Modus, dofir kanns du Dir deng Ressourcen net duerch de Benotzer Interface verwalten. Verwalt se an der Konfiguratioun.yaml.",
+ "caption": "Ressourcen",
+ "confirm_delete": "Sécher fir dës Ressource ze läschen?",
+ "detail": {
+ "create": "Erstellen",
+ "delete": "Läschen",
+ "dismiss": "Zoumaachen",
+ "new_resource": "Nei Ressource dobäisetzen",
+ "type": "Typ vun Ressource",
+ "update": "Aktualiséieren",
+ "url": "URL",
+ "url_error_msg": "URL ass een erfuerderlecht Feld",
+ "warning_header": "Opgepasst!",
+ "warning_text": "Ressourcen dobäisetzen ka geféierlech sinn, stell sécher dass d'Quell vun der Ressource bekannt a vertraut ass. Schlecht Ressourcen kënnen dem System seriö schueden."
+ },
+ "picker": {
+ "add_resource": "Ressource dobäisetzen",
+ "headers": {
+ "type": "Typ",
+ "url": "URL"
+ },
+ "no_resources": "Keng Ressourcen"
+ },
+ "refresh_body": "D'Säit muss aktualiséiert gi fir d'Läschen ofzeschléissen, elo aktualiséieren?",
+ "refresh_header": "Soll aktualiséiert ginn?",
+ "types": {
+ "css": "Stylesheet",
+ "html": "HTML (obsolet)",
+ "js": "Javascript Fichier (obsolet)",
+ "module": "JavaScript Module"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Sujet lauschteren",
+ "description_publish": "Ee Pak publizéieren",
+ "listening_to": "Lauschtert op",
+ "message_received": "Noriicht {id} empfaangen am {topic} um {time}:",
+ "payload": "Payload (Modell erlaabt)",
+ "publish": "Publizéieren",
+ "start_listening": "Fänk un mam lauschteren",
+ "stop_listening": "Hal op mam lauschteren",
+ "subscribe_to": "Sujet fir unzemellen",
+ "title": "MQTT",
+ "topic": "Sujet"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Kontroller",
+ "instance": "Instanz",
+ "network": "Netzwierk",
+ "node_id": "Node ID",
+ "ozw_instance": "OpenZWave Instanz",
+ "wakeup_instructions": "Instruktioune fir d'erwächen",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Feeler am Node",
+ "stage": "Stage",
+ "zwave_info": "Z-Wave Info"
+ },
+ "navigation": {
+ "network": "Netzwierk",
+ "node": {
+ "config": "Konfiguratioun",
+ "dashboard": "Tableau de Bord"
+ },
+ "nodes": "Nodes",
+ "select_instance": "Instanz auswielen"
+ },
+ "network": {
+ "header": "Verwaltung vum Netzwierk",
+ "introduction": "Netzwierk wäit Funktioune verwalten",
+ "node_count": "{count} nodes"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "All Nodes goufen ofgefrot",
+ "driverallnodesqueriedsomedead": "All Nodes goufen ofgefrot. Verschidde Nodes sin net méi ereechbar.",
+ "driverawakenodesqueries": "All waakreg Nodes goufen ofgefrot",
+ "driverfailed": "Feeler beim verbannen mam Z-Wave Kontroller",
+ "driverready": "Z-Wave Kontroller initialiséieren",
+ "driverremoved": "Den Driver gouf geläscht",
+ "driverreset": "Den Driver gouf zeréckgesat",
+ "offline": "OZWDaemon net ereechbar",
+ "ready": "Prett fir sech ze verbannen",
+ "started": "Mam MQTT verbonnen",
+ "starting": "Mam MQTT verbannen",
+ "stopped": "OpenZWave gestoppt"
+ },
+ "offline": "Offline",
+ "online": "Online",
+ "starting": "Start",
+ "unknown": "Onbekannt"
+ },
+ "node": {
+ "button": "Node Detailler",
+ "not_found": "Node net fonnt"
+ },
+ "node_config": {
+ "header": "Konfiguratioun vum Node",
+ "introduction": "Verwalt déi verschidde Konfiguratioun Parameter fir ee Z-Wave Node.",
+ "wakeup_help": "Batterie bedriwwen Nodes mussen un si fir hier Konfiguratioun ze veränneren. Falls den Node net un ass, probéiert OpenZWave dem Node seng Konfiguratioun ze veränneren déi nächste Kéier wann de Node aktiv gëtt, dëst ka méi Stonnen (oder Deeg) daueren. \nFolleg dëse Schrëtt fir den Apparat unzeschalten:"
+ },
+ "node_metadata": {
+ "product_manual": "Produkt Gebrauchsanweisung"
+ },
+ "node_query_stages": {
+ "associations": "Associatiounsgruppen a Memberen aktualiséieren",
+ "cacheload": "Lued Informatioune vun der OpenZWave Cache Datei. Batterie Nodes bleiwen op dëser Etapp bis de Node erwächt.",
+ "complete": "Interview Prozess ass komplett",
+ "configuration": "Konfiguratiounswerter vum Node kréien",
+ "instances": "Detailer kréien iwwert wéieng Instanzen oder Kanäl en Apparat ënnerstëtzt",
+ "manufacturerspecific1": "Hiersteller a Produkt ID Code vum Node kréien",
+ "manufacturerspecific2": "Zousätzlech Hiersteller a Produkt ID Coden vum Node kréien",
+ "neighbors": "Eng Lëscht vun den Nopere vum Node kréien",
+ "nodeinfo": "Kommando Klassen vum Node kréien",
+ "nodeplusinfo": "Z-Wave+ Informatiounen vum Node kréien",
+ "probe": "Checken op de Node un ass",
+ "protocolinfo": "Basis Z-Wave Fäegkeeten fir dësem Node vum Kontroller kréien",
+ "static": "Statesch Wäerter vum Apparat kréien",
+ "versions": "Informatioun kréien iwwert Firmware a Kommando Klass Versiounen",
+ "wakeup": "Ënnerstëtzung fir Erwäche Waardeschlaangen an Noriichten astellen"
+ },
+ "nodes_table": {
+ "failed": "Feeler",
+ "id": "ID",
+ "manufacturer": "Hiersteller",
+ "model": "Modell",
+ "query_stage": "Ofroo Stage",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Falls den Node Batterie bedriwwen ass, stell sécher fir en z'erwächen iers de weiderfiers",
+ "button": "Node aktualiséieren",
+ "complete": "Aktualiséierung vun den Node Informatioune komplett",
+ "description": "Dëst befeelt OpenZWave fir en Node ofzefroen a Kommando Klassen, Fäegkeeten a Wäerter vum Node aktualiséieren.",
+ "node_status": "Status vum Node",
+ "refreshing_description": "Node Informatiounen aktualiséieren…",
+ "start_refresh_button": "Aktualiséierung starten",
+ "step": "Schrëtt",
+ "title": "Node Informatiounen aktualiséieren",
+ "wakeup_header": "Instruktioune fir d'erwäche vun",
+ "wakeup_instructions_source": "D'Instruktioune fir d'erwäche si vun der OpenZwave Communautéit Datebank."
+ },
+ "select_instance": {
+ "header": "Eng OpenZWave Instanz auswielen",
+ "introduction": "Du hues méi wéi eng OpenZWave Instanz laafen. Wéieng Instanz wëlls du verwalten?",
+ "none_found": "Keng OpenZWave Instanz fonnt. Falls dëst inkorrekt ass, iwwerpréif deng OpenZWave an MQTT Astellungen an stell sécher dass den Home Assistant mat dengem MQTT Broker kommunizéiere kann."
+ },
+ "services": {
+ "add_node": "Node dobäisetzen",
+ "cancel_command": "Commande ofbriechen",
+ "remove_node": "Node läschen"
+ }
+ },
+ "person": {
+ "add_person": "Persoun dobäisetzen",
+ "caption": "Persounen",
+ "confirm_delete": "Sécher fir dës Persoun ze läsche?",
+ "confirm_delete2": "All Apparater déi zu dëser Persoun gehéiere ginn néirens zougewisen",
+ "create_person": "Persoun erstellen",
+ "description": "Verwalt d'Persoune déi vum Home Assistant suivéiert ginn.",
+ "detail": {
+ "admin": "Administrator",
+ "allow_login": "Login erlaabt fir Persoun",
+ "confirm_delete_user": "Sécher fir de Benotzer Kont fir {name} ze läschen? Du kanns dann nach ëmmer den Benotzer suivéieren, mee déi Persoun kann sech dann net méi verbannen.",
+ "create": "Erstellen",
+ "delete": "Läschen",
+ "device_tracker_intro": "Wiel d'Apparater aus déi zu dëser Persoun gehéieren.",
+ "device_tracker_pick": "Wielt den Apparat aus fir ze suivéieren",
+ "device_tracker_picked": "Aparat suivéieren",
+ "link_integrations_page": "Integratiouns Säit",
+ "link_presence_detection_integrations": "Präsenz Detektioun Integratioune",
+ "linked_user": "Verbonne Benotzer",
+ "name": "Numm",
+ "name_error_msg": "Numm ass obligatoresch",
+ "new_person": "Nei Persoun",
+ "no_device_tracker_available_intro": "Wann dir Apparater hutt déi d'Präsenz vun enger Persoun uweisen, kënnt dir déi enger Persoun zouweisen. Dir kënnt ären éischten Apparat bäisetzen andeems dir eng Präsenz Detektioun Integratioun vun der Integratiouns Säit dobäisetzt.",
+ "update": "Aktualiséieren"
+ },
+ "introduction": "Hei kënnt dir all wichteg Persoun am Home Assistant definéieren.",
+ "learn_more": "Méi iwwert Persoune léieren",
+ "no_persons_created_yet": "Et gesäit sou aus wéi wann nach keng Persounen erstallt goufen.",
+ "note_about_persons_configured_in_yaml": "Note: Persounen konfiguréiert via configuration.yaml können net via den UI geännert ginn.",
+ "person_not_found": "Persoun net fonnt déi sollt verännert ginn",
+ "person_not_found_title": "Persoun net fonnt"
+ },
+ "scene": {
+ "activated": "Zeen {name} aktivéiert.",
+ "caption": "Zeene",
+ "editor": {
+ "default_name": "Nei Zeen",
+ "devices": {
+ "add": "Apparat dobäisetzen",
+ "delete": "Apparat läschen",
+ "header": "Apparater",
+ "introduction": "Setzt Apparater dobäi déi dir an der Zeene wëllt hunn. Definéiert de Status vun all Apparat den dir fir dës Zeene wënscht."
+ },
+ "entities": {
+ "add": "Entitéit dobäisetzen",
+ "delete": "Entitéit läschen",
+ "device_entities": "Wann Dir eng Entitéit dobäisetzt déi zu engem Apparat gehéiert, gëtt den Apparat dobäigesat.",
+ "header": "Entitéiten",
+ "introduction": "Entitéiten déi zu kengem Apparat gehéiere kënnen hei definéiert ginn.",
+ "without_device": "Entitéiten ouni Apparater"
+ },
+ "icon": "Ikon",
+ "introduction": "Benotz Zeene fir däin Heem zum Liewen ze bréngen",
+ "load_error_not_editable": "Nëmme Zeene am scenes.yaml kënnen editéiert ginn.",
+ "load_error_unknown": "Feeler beim luede vun der Zeen ({err_no}).",
+ "name": "Numm",
+ "save": "Späicheren",
+ "unsaved_confirm": "Net gespäichert Ännerungen. Trotzdeem verloossen?"
+ },
+ "picker": {
+ "add_scene": "Zeen dobäisetzen",
+ "delete_confirm": "Sécher fir dës Zeen ze läschen?",
+ "delete_scene": "Zeen läschen",
+ "edit_scene": "Zeen änneren",
+ "header": "Zeen Editeur",
+ "headers": {
+ "name": "Numm"
+ },
+ "introduction": "De Zeenen Editeur erlaabt Iech Zeenen z'erstellen an z'änneren. Follegt de Link hei ënnendrënner fir d'Instruktiounen ze liese fir sécher ze stellen, datt Dir den Home Assistant richteg konfiguréiert hutt.",
+ "learn_more": "Méi iwwert Zeene léieren",
+ "no_scenes": "Keng Zeene fir ze ännere fonnt",
+ "only_editable": "Nëmme Zeene am scenes.yaml kënnen editéiert ginn.",
+ "pick_scene": "Zeen fir ze änneren auswielen",
+ "show_info_scene": "Informatiounen vun der Zeen uweisen"
+ }
+ },
+ "script": {
+ "caption": "Skripten",
+ "description": "Eng Sequenz vun Aktiounen ausféieren",
+ "editor": {
+ "alias": "Numm",
+ "default_name": "Neie Skript",
+ "delete_confirm": "Sécher fir dësen Skript ze läsche?",
+ "delete_script": "Skript läschen",
+ "header": "Skript: {name}",
+ "icon": "Ikon",
+ "id": "ID vun der Entitéit",
+ "id_already_exists": "Dës ID gëtt et schonn",
+ "id_already_exists_save_error": "Du kanns dëse Skript net späicheren well d'ID net eenzegarteg ass. Wiel eng aaner ID aus oder loss se eidel fir automatesch eng z'erstellen.",
+ "introduction": "Benotzt Skripter fir eng Sequenz vun Aktiounen auszeféieren.",
+ "link_available_actions": "Méi iwwert verfügbar Aktioune liesen.",
+ "load_error_not_editable": "Nëmme Skripten am scripts.yaml kënnen editéiert ginn.",
+ "max": {
+ "parallel": "Max. Unzuel vun parallelen Duerchleef.",
+ "queued": "Längt vun der Schlaang"
+ },
+ "modes": {
+ "description": "Dëse Modus kontrolléiert wat passéieert wann de Skript opgeruff gëtt während e schon duerch virecht Opriff nach ëmmer leeft. Kuck {documentation_link} fir méi Informatiounen.",
+ "documentation": "Dokumentatioun vum Skript",
+ "label": "Modus",
+ "parallel": "Parrallel",
+ "queued": "an der Schlaang",
+ "restart": "Neistart",
+ "single": "Eenzel (Standard)"
+ },
+ "save_script": "Skript späicheren",
+ "sequence": "Sequenz",
+ "sequence_sentence": "D'Sequenz vun Aktiounen an dësem Skript."
+ },
+ "picker": {
+ "add_script": "Neie Skript erstellen",
+ "duplicate": "Duplizéieren",
+ "duplicate_script": "Skript duplizéieren",
+ "edit_script": "Skript änneren",
+ "header": "Skript Editeur",
+ "headers": {
+ "name": "Numm"
+ },
+ "introduction": "De Skript Editeur erlaabt Iech Skripten ze erstellen an z'änneren. Follegt de Link hei ënnendrënner fir d'Instruktiounen ze liese fir sécher ze stellen, datt Dir den Home Assistant richteg konfiguréiert hutt",
+ "learn_more": "Méi iwwert Skripten léieren",
+ "no_scripts": "Keng Skripte fir ze ännere fonnt",
+ "run_script": "Skript ausféieren",
+ "show_info": "Informatiounen vum Skript uweisen"
+ }
+ },
+ "server_control": {
+ "caption": "Kontroll vum Server",
+ "description": "Start an Stop vum Home Assistant Server",
+ "section": {
+ "reloading": {
+ "automation": "Automatisme nei lueden",
+ "command_line": "Kommando Zeilen Entitéite frësch lueden",
+ "core": "Standuert and Personnalisatioun néi lueden",
+ "filesize": "Dateigréisst Entitéiten frësch lueden",
+ "filter": "Filter Entitéite frësch lueden",
+ "generic": "Generesch IP Kamera Entitéite frësch lueden",
+ "generic_thermostat": "Generesch Thermostat Entitéite frësch lueden",
+ "group": "Gruppe, Gruppen Entitéite an Notifikatioun's Servicer nei lueden",
+ "heading": "YAML Konfiguratioun frësch lueden",
+ "history_stats": "Verlaf Statiskik Entitéite frësch lueden",
+ "homekit": "Homekit frësch lueden",
+ "input_boolean": "Agab Boolean frësch lueden",
+ "input_datetime": "Agab Datum frësch lueden",
+ "input_number": "Agab Zuelen frësch lueden",
+ "input_select": "Agab Auswiel frësch lueden",
+ "input_text": "Agab Text frësch lueden",
+ "introduction": "E puer Deeler vum Home Assistant kënne frësch geluede ginn ouni datt een Neistart néideg ass. Klick op nei luede fir di aktuell Konfiguratioun z'entlueden an di nei Konfiguratioun ze lueden.",
+ "min_max": "Min/Max Entitéite frësch lueden",
+ "mqtt": "Manuell konfiguréiert MQTT Entitéiten frësch lueden",
+ "person": "Persoune frësch lueden",
+ "ping": "Ping Binär Sensor Entitéite frësch lueden",
+ "reload": "{domain} frësh lueden",
+ "rest": "Rest Entitéite a Notifikatioun's Servicer frësch lueden",
+ "rpi_gpio": "Raspberry Pi GPIO entitéite frësch lueden",
+ "scene": "Szeene néi lueden",
+ "script": "Skripte nei lueden",
+ "smtp": "SMTP Notifikatioun's Servicer frësch lueden",
+ "statistics": "Statiskik Entitéite frësch lueden",
+ "telegram": "Telegram Notifikatioun's Servicer frësch lueden",
+ "template": "Modell Entitéite frësch lueden",
+ "trend": "Trend Entitéite frësch lueden",
+ "universal": "Universal Medie Spiller Entitéite frësch lueden",
+ "zone": "Zone frësch lueden"
+ },
+ "server_management": {
+ "confirm_restart": "Sécher fir Home Assistant frësch ze starten?",
+ "confirm_stop": "Sécher fir Home Assistant ze stoppen?",
+ "heading": "Serververwaltung",
+ "introduction": "Kontrolléiert ären Home Assistant Server ... vun Home Assistant aus.",
+ "restart": "Neistart",
+ "stop": "Stop"
+ },
+ "validation": {
+ "check_config": "Konfiguratioun iwwerpréiwen",
+ "heading": "Validatioun vun der Konfiguratioun",
+ "introduction": "Validéiert är Konfiguratioun wann Dir viru kuerzem e puer Ännerungen an ärer Konfiguratioun gemaacht hutt a wëllt sécher sinn datt alles gëlteg ass",
+ "invalid": "Konfiguratioun ongëlteg",
+ "valid": "Konfiguratioun gëlteg!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Tag dobäisetzen",
+ "automation_title": "Tag {name} gouf gescannt",
+ "caption": "Tags",
+ "confirm_remove": "Sécher fir den Tag {tag} ze läsche?",
+ "confirm_remove_title": "Tag läschen?",
+ "create_automation": "Erstell Automatisme mam Tag",
+ "description": "Automatisme ausléisen wan ee NFC tag, QR code, etc. gescannt gëtt",
+ "detail": {
+ "companion_apps": "Begleeder Apps",
+ "create": "Erstellen",
+ "create_and_write": "Erstellen a schréiwen",
+ "delete": "Läschen",
+ "description": "Beschreiwung",
+ "name": "Numm",
+ "new_tag": "Neien tag",
+ "tag_id": "Tag id",
+ "tag_id_placeholder": "Automatesch erstallt falls eidel geloss",
+ "update": "Aktualiséieren",
+ "usage": "Een Tag kann een Automatisme ausléise wann e gescannt gëtt, du kanns NFC Tage, QR Code oder iergendeng Zort vun Tags benotzen. Benotz ons {companion_link} fir dësen Tag op eng programméierbar NFC Tag ze schreiwen oder erstell ee QR Code hei ënnen."
+ },
+ "edit": "Änneren",
+ "headers": {
+ "last_scanned": "Läscht duerchsicht",
+ "name": "Numm"
+ },
+ "learn_more": "Méi iwwert Tags liesen",
+ "never_scanned": "Niemols gescannt",
+ "no_tags": "Keng Tags",
+ "write": "Schréiwen"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Benotzer erstellen",
+ "create": "Erstellen",
+ "password": "Passwuert",
+ "password_confirm": "Passwuert bestätegen",
+ "password_not_match": "Passwierder stëmmen net iwwereneen"
+ },
+ "caption": "Benotzer",
+ "description": "Home Assistant Benotzer Konte verwalten",
+ "editor": {
+ "activate_user": "Benotzer aktivéieren",
+ "active": "Aktiv",
+ "active_tooltip": "Kontrolléiert ob de Benotzer sech verbanne kann",
+ "admin": "Administrator",
+ "caption": "Benotzer kucken",
+ "change_password": "Passwuert änneren",
+ "confirm_user_deletion": "Sécher fir {name} ze läsche?",
+ "deactivate_user": "Benotzer déaktivéieren",
+ "delete_user": "Benotzer läschen",
+ "group": "Gruppe",
+ "id": "ID",
+ "name": "Affichéierte Numm",
+ "new_password": "Neit Passwuert",
+ "owner": "Proprietär",
+ "password_changed": "Passwuert erfollegräich geännert",
+ "system_generated": "Vum System generéiert",
+ "system_generated_users_not_editable": "Net méiglech System generéiert Benotzer z'aktualiséieren.",
+ "system_generated_users_not_removable": "Ka keng System generéiert Benotzer läschen.",
+ "unnamed_user": "Benotzer ouni Numm",
+ "update_user": "Aktualiséieren",
+ "username": "Benotzernumm"
+ },
+ "picker": {
+ "add_user": "Benotzer erstellen",
+ "headers": {
+ "group": "Grupp",
+ "is_active": "Aktiv",
+ "is_owner": "Besëtzer",
+ "name": "Affichéierte Numm",
+ "system": "System erstallt",
+ "username": "Benotzernumm"
+ }
+ },
+ "users_privileges_note": "Benotzer Gruppp ass nach \"Work in progress\". De Benotzer kann d'Instanz net via UI verwalten. MIr sin mat engem Audit am gaang vun all Management API Endpunkt fir sécher ze stellen dass déi den accès richteg op Administrateuren limitéieren."
+ },
+ "zha": {
+ "add_device": "Apparat dobäisetzen",
+ "add_device_page": {
+ "discovered_text": "Apparater tauchen hei op soubaal se entdeckt sinn.",
+ "no_devices_found": "Keng Apparater fonnt, stell sécher dass sie am Kopplung Modus sinn a vermeid dass sie während der Entdeckung net an de Stand by ginn.",
+ "pairing_mode": "Stell sécher dass deng Apparater sech am Kopplungs Modus befannen. Kuckt d'Instruktioune vun dengen Apparater wéi dat geht.",
+ "search_again": "Nach emol sichen",
+ "spinner": "Sicht no ZHA Zigbee Apparater…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Attributer vum ausgewielten Cluster",
+ "get_zigbee_attribute": "Zigbee Attribut liesen",
+ "header": "Cluster Attributer",
+ "help_attribute_dropdown": "Attribut auswielen fir säin Wärt ze kucken oder ze setzen.",
+ "help_get_zigbee_attribute": "Wäert fir dat gewielten Attribut liesen",
+ "help_set_zigbee_attribute": "Definéiert ee Wäert fir den Attribut fir de spezifizéierte Cluster op der spezifizéierter Entitéit.",
+ "introduction": "Cluster Attributer kucken an änneren.",
+ "set_zigbee_attribute": "Zigbee Attribut definéieren"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Kommandoe vum ausgewielten Cluster",
+ "header": "Cluster Kommandoe",
+ "help_command_dropdown": "Wielt ee Kommando eraus fir z'interagéieren.",
+ "introduction": "Cluster Kommandoe kucken an ausginn",
+ "issue_zigbee_command": "Zigbee Kommando ausginn"
+ },
+ "clusters": {
+ "header": "Clusters",
+ "help_cluster_dropdown": "Wielt ee Cluster aus fir Attributer anKommandoe ze gesinn.",
+ "introduction": "Clusters si Bausteng fir Zigbee Funktionalitéiten. Si trennen d'Funktionalitéit a logesch Eenheeten. Et gi Client a Server Typen an déi bestinn aus Attributer a Befeeler."
+ },
+ "common": {
+ "clusters": "Cluster",
+ "manufacturer_code_override": "Hiersteller Code Override",
+ "value": "Wäert"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Konfiguratioun fäerdeg",
+ "CONFIGURED_status_text": "Initialiséiert",
+ "INITIALIZED": "Initialiséierung fäerdeg",
+ "INITIALIZED_status_text": "Den Apparat ass prett fir ze benotzen",
+ "INTERVIEW_COMPLETE": "Interview fäerdeg",
+ "INTERVIEW_COMPLETE_status_text": "Konfiguréiert",
+ "PAIRED": "Apparat fonnt",
+ "PAIRED_status_text": "Interview fänkt un"
+ },
+ "group_binding": {
+ "bind_button_help": "Verbannt den gewielte Grupp mat de gewielten Cluster vun Apparaten.",
+ "bind_button_label": "Grupp bannen",
+ "cluster_selection_help": "Wielt Cluster aus fir mam gewielte Grupp ze verbannen",
+ "group_picker_help": "Wielt e Grupp fir e Verbannung's Kommando auszeféieren.",
+ "group_picker_label": "Gruppen déi kënne gebonne ginn",
+ "header": "Gruppenandeelung",
+ "introduction": "Gruppe verbannen an opléisen",
+ "unbind_button_help": "De gewielte Grupp aus dem gewielte Cluster eraushuelen.",
+ "unbind_button_label": "Grupp opléisen"
+ },
+ "groups": {
+ "add_group": "Grupp dobäisetzen",
+ "add_members": "Membere bäisetzen",
+ "caption": "Gruppe",
+ "create": "Grupp erstellen",
+ "create_group": "Zigbee Haus Automatismen - Grupp erstellen",
+ "create_group_details": "Gitt déi néideg Detailer an fir eng nei Zigbee Grupp z'erstellen",
+ "creating_group": "Grupp gëtt erstallt",
+ "group_details": "Hei sinn all Detailer vun der ausgewielter Zigbee Grupp.",
+ "group_id": "ID vun der Grupp",
+ "group_info": "Grupp Informatiounen",
+ "group_name_placeholder": "Numm vum Grupp",
+ "group_not_found": "Grupp net fonnt!",
+ "groups": "Gruppe",
+ "members": "Membere",
+ "remove_members": "Membere läschen",
+ "removing_members": "Membere gi geläscht."
+ },
+ "network": {
+ "caption": "Netzwierk"
+ },
+ "visualization": {
+ "auto_zoom": "Auto Zoom",
+ "caption": "Visualisatioun",
+ "header": "Visualisatioun vum Netzwierk",
+ "zoom_label": "Op apparat vergréisseren"
+ }
+ },
+ "zone": {
+ "add_zone": "Zon dobäisetzen",
+ "caption": "Zone",
+ "configured_in_yaml": "Zonen déi iwwer Configuratioun.yaml konfiguréiert goufen kënnen net iwwer d'UI geännert ginn.",
+ "confirm_delete": "Sécher fir dës Zon ze läschen?",
+ "create_zone": "Zon erstellen",
+ "description": "Zone verwalte an deenen Persounen suivéiert solle ginn.",
+ "detail": {
+ "create": "Erstellen",
+ "delete": "Läschen",
+ "icon": "Ikon",
+ "icon_error_msg": "Ikon sollt am format \"prefix:numm\" sinn, Beispill: \"mdi:home\"",
+ "latitude": "Breedegrad",
+ "longitude": "Längegrad",
+ "name": "Numm",
+ "new_zone": "Nei Zon",
+ "passive": "Passiv",
+ "passive_note": "Passiv Zone sinn am Frontend verstoppt a ginn net als Standuert fir Apparaten Tracker benotzt. Dëst ass nëtzlech wann Dir et just fir Automatisme wëllt benotzen.",
+ "radius": "Radius",
+ "required_error_msg": "Dëst Feld ass erfuerderlech",
+ "update": "Aktualiséieren"
+ },
+ "edit_home_zone": "De Radius vun der Heemzon kann net vum Frontend aus geännert ginn. Zéi d'Markéierung op der Kaart fir d'Heemezone ze réckelen.",
+ "edit_home_zone_narrow": "De Radius vun der Home Zone kann nach net vum Frontend aus geännert ginn. De Standuert kann an der allgemenger Konfiguratioun geännert ginn.",
+ "go_to_core_config": "Zur genereller Konfiguratioun wiesselen?",
+ "home_zone_core_config": "De Standuert vun Ärer Heemzon kann vun der allgemenger Konfiguratiounssäit aus geännert ginn. De Radius vun der Home Zone kann nach net am Frontend geännert ginn. Wëllt Dir op d'allgemeng Konfiguratioun goen?",
+ "introduction": "Zonen erlaben Iech verschidde Regiounen op der Äerd ze spezifizéieren. Wann eng Persoun an enger Zone ass, hëlt de Status den Numm aus der Zone. Zonë kënnen och als Ausléiser oder als Konditioun an Automatisme benotzt ginn.",
+ "no_zones_created_yet": "Et gesäit sou aus wéi wann nach keng Zone erstallt goufen."
+ },
+ "zwave": {
+ "common": {
+ "index": "Index",
+ "instance": "Instanz",
+ "unknown": "Onbekannt",
+ "value": "Wäert",
+ "wakeup_interval": "Intervall fir z'erwächen"
+ },
+ "description": "Verwalt är Z-Wave Netzwierk",
+ "learn_more": "Méi iwwert Z-Wave léieren",
+ "migration": {
+ "ozw": {
+ "header": "Op OpenZWave migréieren",
+ "introduction": "Dësen Assistent hëlleft bei der Migratioun vun der aler Z-Wave Integratioun op OpenZWave Integratioun wlecht nach aktuell an der Beta ass."
+ }
+ },
+ "network_management": {
+ "header": "Z-Wave Netzwierk Verwaltung",
+ "introduction": "Féiert Commande aus am Z-Wave Netzwierk. Di kritt kee Feedback op déi meeschte Commande erfollegräich ausgeféiert goufen, mee dir kënnt de OZW Log ënnersiche fir weider Detailer"
+ },
+ "network_status": {
+ "network_started": "Z-Wave Netzwierk gestart",
+ "network_started_note_all_queried": "All Apparater sinn ofgefrot",
+ "network_started_note_some_queried": "Aktiv Apparater sinn ofgefrot. Inaktiv Apparater ginn ofgefrot soubal sie aktiv sinn.",
+ "network_starting": "Z-Wave Netzwierk start",
+ "network_starting_note": "Dës kann eng Weil dauere jee no gréisst vum Netzwierk.",
+ "network_stopped": "Z-Wave Netzwierk gestoppt"
+ },
+ "node_config": {
+ "config_parameter": "Konfiguratioun's Parameter",
+ "config_value": "Konfiguratioun's Wäert",
+ "false": "Falsch",
+ "header": "Node Konfiguratioun Optiounen",
+ "seconds": "Sekonnen",
+ "set_config_parameter": "Konfiguratioun's Parameter setzen",
+ "set_wakeup": "Intervall fir z'erwächen définéieren",
+ "true": "Richteg"
+ },
+ "node_management": {
+ "add_to_group": "Zum Grupp dobäisetzen",
+ "entities": "Entitéiten vun dësem Node",
+ "entity_info": "Informatiounen vun der Entitéit",
+ "exclude_entity": "Dës Entitéit aus Home Assistant ausschléissen",
+ "group": "Grupp",
+ "header": "Z-Wave Node Management",
+ "introduction": "Z-Wave Kommandoe ausféieren déi nëmmen ee Node betreffen. Wiel ee Node aus fir seng Lëscht vun verfügbare Kommandoe ze gesinn.",
+ "max_associations": "Max. Assoziatiounen:",
+ "node_group_associations": "Node Grupp Assoziatiounen",
+ "node_protection": "Protektioun vum Node",
+ "node_to_control": "Node fir ze steieren",
+ "nodes": "Nodes",
+ "nodes_hint": "Node auswielen fir d'Optioune ze gesinn",
+ "nodes_in_group": "Aner Nodes an dësem Grupp:",
+ "pooling_intensity": "Polling Intensitéit",
+ "protection": "Protektioun",
+ "remove_broadcast": "Broadcast läschen",
+ "remove_from_group": "Aus dem Grupp läschen",
+ "set_protection": "Protektioun setzen"
+ },
+ "ozw_log": {
+ "header": "OZW Log",
+ "introduction": "Logbicher kucken. 0 ass de minimum (luet de ganze Log) an 1000 ass de maximum. Luede weist ee statesche Log an \"tail\" aktualiséiert de Log automatesch mat de leschten Zeile vum Log.",
+ "last_log_lines": "Unzuel vun läschte Log Zeilen",
+ "load": "Lueden",
+ "tail": "ogon,ślad"
+ },
+ "services": {
+ "add_node": "Apparat dobäisetzen",
+ "add_node_secure": "Sëcheren Apparat dobäisetzen",
+ "cancel_command": "Commande ofbriechen",
+ "heal_network": "Netzwierk heelen",
+ "heal_node": "Node heelen",
+ "node_info": "Informatioun zum Node",
+ "print_node": "Node drécken",
+ "refresh_entity": "Entitéit aktualiséieren",
+ "refresh_node": "Node aktualiséieren",
+ "remove_failed_node": "Feelerhaften Node läschen",
+ "remove_node": "Apparat läschen",
+ "replace_failed_node": "Feelerhaften Node ersetzen",
+ "save_config": "Konfiguratioun späicheren",
+ "soft_reset": "Soft Reset",
+ "start_network": "Netzwierk starten",
+ "stop_network": "Netzwierk stoppen",
+ "test_network": "Netzwierk testen",
+ "test_node": "Node testen"
+ },
+ "values": {
+ "header": "Wäerter vum Apparat"
+ }
+ },
+ "zwave_js": {
+ "dashboard": {
+ "driver_version": "Driver Versioun",
+ "dump_not_ready_confirm": "Eroflueden",
+ "server_version": "Server Versioun"
+ },
+ "device_info": {
+ "device_config": "Apparat ariichten"
+ },
+ "node_config": {
+ "attribution": "Parameter fir d'Konfiguratioun vum Apparat a seng Beschréiwungen gin duerch {device_database} zur Verfügung gestallt.",
+ "battery_device_notice": "Batterie bedriwwen Apparater mussen un sinn fir hier Konfiguratioun z'aktualiséieren. Kuck wegl d'Instruktiounen vum Hiersteller fir den Apparat unzeschalten.",
+ "error_device_not_found": "Apparat net fonnt",
+ "header": "Z-Wave Apparat Konfiguratioun",
+ "introduction": "Verwalt a pass verschidde (node) spezifesch Konfiguratioun's Parameter vum Apparat un.",
+ "parameter_is_read_only": "Dëse Parameter ass schréif geschützt",
+ "zwave_js_device_database": "Z-Wave JS Apparat Datebank"
+ },
+ "node_status": {
+ "unknown": "Onbekannt"
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Et wäert Accès op all Donnéeë am Home Assistant kréien.",
+ "hide_message": "Kuckt Dokumentatioun vun der panel_custom Komponente fir dës Noriicht ze verstoppen",
+ "question_trust": "Vertraut dir dem externe Panneau {name} op {link}?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "alert_event_type": "Type vun Evenement ass obligatorescht",
+ "available_events": "Verfügbar Evenementer",
+ "count_listeners": " ({count} nolauschterer)",
+ "data": "Evenement Donnéeë (YAML, fakultativ)",
+ "description": "Een Evenement um Evenement Bus starten",
+ "documentation": "Dokumentatioun iwwert d'Evenementer",
+ "event_fired": "Evenement {name} gestart",
+ "fire_event": "Evenement starten",
+ "listen_to_events": "Op Evenementer lauschteren",
+ "listening_to": "Lauschtert op",
+ "notification_event_fired": "Event {type} erfollegräich gestart",
+ "start_listening": "Fänk un mam lauschteren",
+ "stop_listening": "Hal op mam lauschteren",
+ "subscribe_to": "Evenement fir unzemellen",
+ "title": "Evenementer",
+ "type": "Typ vun Evenement"
+ },
+ "services": {
+ "call_service": "Service opruffen",
+ "column_description": "Beschreiwung",
+ "column_example": "Beispill",
+ "column_parameter": "Parameter",
+ "description": "De Service am Entwécklungsgeschir erlaabt Iech e verfügbare Service am Home Assistant opzeruffen.",
+ "fill_example_data": "Gitt Beispill Donnéeën un",
+ "no_template_ui_support": "Den UI ënnerstëtzt kenge Modeller, du kanns awer den YAML Editeur benotzen.",
+ "title": "Servicen"
+ },
+ "states": {
+ "alert_entity_field": "Entitéit ass e obligatorescht Feld",
+ "attributes": "Attributer",
+ "current_entities": "Aktuell Entitéiten",
+ "description1": "Setzt d'Representatioun vun engem Apparat am Home Assistant.",
+ "description2": "Dëst wäert net mam aktuellen Apparat kommunizéieren.",
+ "entity": "Entitéit",
+ "filter_attributes": "Attributer filteren",
+ "filter_entities": "Entitéite filteren",
+ "filter_states": "Zoustänn filteren",
+ "last_changed": "Läscht Ännerung",
+ "last_updated": "Läscht Aktualiséierung",
+ "more_info": "Méi Info",
+ "no_entities": "Keng Entitéiten",
+ "set_state": "Zoustand setzen",
+ "state": "Zoustand",
+ "state_attributes": "Atrributer vum Zoustand (YAML, fakultativ)",
+ "title": "Zoustänn"
+ },
+ "templates": {
+ "all_listeners": "Dës Virlag lauschtert fir all geännert Zoustänn Evenementer.",
+ "description": "Modeller ginn mëttels Jinja2 template engine duergestallt mat e puer Home Assistant spezifesch Erweiderungen.",
+ "domain": "Domain",
+ "editor": "Modell Editeur",
+ "entity": "Entitéit",
+ "jinja_documentation": "Jinja2 Modell Dokumentatioun",
+ "listeners": "Dës Virlag lauschtert fir déi folgend geännert Evenementer:",
+ "no_listeners": "Dës Virlag lauschtert net fir geännert Zoustänn Evenementer a gëtt net automatesch aktualiséiert.",
+ "reset": "Op Demo Modell zeréck setzen",
+ "result_type": "Typ vum Resultat",
+ "template_extensions": "Home Assistant Modell Erweiderungen",
+ "time": "Dës Virlag aktualiséiert sech am Ufank vun all Minutt.",
+ "title": "Modeller",
+ "unknown_error_template": "Onbekannte Feeler beim duerstelle vum Modell"
+ }
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Dës Funktioun kann nëmme benotzt gi wann dir d'Kontroll iwwert Lovelace iwwerholl hutt.",
+ "saving_failed": "Feeler beim Späicheren vun der Lovelace Konfiguratioun",
+ "yaml_unsupported": "Dës Funktioun kann net benotz gi wann de Lovelace am YAML Modus bedriwwe gëtt."
+ },
+ "cards": {
+ "confirm_delete": "Sécher fir dës Kaart ze läschen?",
+ "empty_state": {
+ "go_to_integrations_page": "Zur Integratiouns Säit goen",
+ "no_devices": "Dës Säit erlaabt et iech är Apparater ze kontrolléiere, awer wéi et schéngt sinn nach keng Apparater ageriicht. Gitt op d'Integratioun's Säit fir unzefänken.",
+ "title": "Wëllkomm Doheem"
+ },
+ "entities": {
+ "never_triggered": "Ni ausgeléist"
+ },
+ "picture-elements": {
+ "call_service": "Service {name} opruffen",
+ "hold": "Gedréckt halen:",
+ "more_info": "méi Informatiounen: {name}",
+ "navigate_to": "Navigéieren zu {location}",
+ "tap": "Tippen:",
+ "toggle": "{name} ëmschalten",
+ "url": "Fënster opmaachen mat {url_path}"
+ },
+ "safe-mode": {
+ "description": "Home Assistant konnt Konfiguratioun net richteg lueden an leeft elo am Sécherheetsmodus. Kuck Logbicher fir de Feeler ze fannen.",
+ "header": "Sécherheetsmodus aktivéiert"
+ },
+ "shopping-list": {
+ "add_item": "Element dobäisetzen",
+ "checked_items": "Markéiert Elementer",
+ "clear_items": "Markéiert Elementer läschen",
+ "drag_and_drop": "Drag an Drop",
+ "reorder_items": "Artikele nei sortéieren"
+ },
+ "starting": {
+ "description": "Home Assistant start, waart w.e.g…"
+ }
+ },
+ "changed_toast": {
+ "message": "Lovelace Konfiguratioun gouf geännert, soll frësch geluede ginn fir d'Ännerunge siichtbar ze machen?"
+ },
+ "components": {
+ "timestamp-display": {
+ "invalid": "Ongëltege Zäitstempel",
+ "invalid_format": "Ongëltege Display Format"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Service ruffen",
+ "default_action": "Standard Aktioun",
+ "more-info": "Méi Informatiounen",
+ "navigate": "Navigéieren",
+ "none": "Keng Aktioun",
+ "toggle": "Ëmschalten",
+ "url": "URL"
+ },
+ "navigation_path": "Nagiatioun's Pad",
+ "url_path": "URL Pad"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Verfügbar Zoustänn",
+ "description": "D'Alarm Panel Kaart erlaabt et d'Integratioun vun der Alarm Kontroll Panel ze arméieren an ze desaktivéieren.",
+ "name": "Alarm Zentral"
+ },
+ "button": {
+ "default_action_help": "D'Standardaktioun hänkt vun de Fäegkeete vun der Entitéit of, et gëtt entweder ëmgeschalt oder \"méi Info\" gëtt ugewisen.",
+ "description": "Knäppchen Kaart erlaabt et Knäppchen mat Aktioune unzeweisen.",
+ "name": "Knäppchen"
+ },
+ "calendar": {
+ "calendar_entities": "Kalenner Entitéiten",
+ "description": "Kalenner Kaart weist ee Kalenner mat Deeg, Wochen an Lëschten un",
+ "inital_view": "Initial Vue",
+ "name": "Kalenner",
+ "views": {
+ "dayGridDay": "Dag",
+ "dayGridMonth": "Mount",
+ "listWeek": "Lëscht"
+ }
+ },
+ "conditional": {
+ "card": "Kaart",
+ "change_type": "Typ änneren",
+ "condition_explanation": "D'Kaart gëtt réischt ugewisen wann ALL Konditiounen erfëllt sinn.",
+ "conditions": "Konditiounen",
+ "current_state": "aktuell",
+ "description": "D'Konditiounskaart weist eng aner Kaart baséierend op den Zoustand vun Entitéiten.",
+ "name": "Bedingungen",
+ "state_equal": "Zoustand ass gläich mat",
+ "state_not_equal": "Zoustand ass net gläich mat"
+ },
+ "config": {
+ "optional": "Optional",
+ "required": "Obligatoresch"
+ },
+ "entities": {
+ "description": "D'Entitéite Kaart ass déi am meeschten allgemengen Zort Kaart. Si gruppéiert Entitéite gemeinsam a Lëschten.",
+ "edit_special_row": "Kuckt d'Detailer vun dëser Rei andeems Du op den Edit Knäppchen klicks",
+ "entity_row": {
+ "attribute": "Attribut",
+ "button": "Knäppchen",
+ "buttons": "Knäppercher",
+ "call-service": "Service ruffen",
+ "cast": "Cast",
+ "conditional": "Conditionnel",
+ "divider": "Deeler",
+ "section": "Sektioun",
+ "weblink": "Web Link"
+ },
+ "entity_row_editor": "Entitéite Réih Editor",
+ "name": "Entitéiten",
+ "secondary_info_values": {
+ "brightness": "Hellegkeet",
+ "entity-id": "Entitéit ID",
+ "last-changed": "Läscht Ännerung",
+ "last-triggered": "Läscht ausgeléist",
+ "last-updated": "Läscht mise à jour",
+ "none": "Keng Sekundär Informatioun",
+ "position": "Positioun",
+ "tilt-position": "Kippstellung"
+ },
+ "show_header_toggle": "Titel Schalter uweisen?",
+ "special_row": "Spezial Réih",
+ "toggle": "Entitéiten ëmschalten"
+ },
+ "entity-filter": {
+ "description": "D'Entity Filter Kaart erlaabt Iech eng Lëscht vun Entitéiten ze definéieren déi nëmmen ugewise gi wann se an engem bestëmmten Zoustand sinn.",
+ "name": "Entitéite Filter"
+ },
+ "entity": {
+ "description": "D'Entity Kaart gëtt Dir e séieren Iwwerbléck iwwer den Zoustand vun enger Entitéit.",
+ "name": "Entitéit"
+ },
+ "gauge": {
+ "description": "D'Gauge Kaart ass eng Basis Kaart déi Sensor Date visuell duerstellt.",
+ "name": "Skala",
+ "severity": {
+ "define": "Schwieregkeetsgrad definéieren?",
+ "green": "Gréng",
+ "red": "Roud",
+ "yellow": "Giel"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Säiteverhältnis",
+ "attribute": "Attribut",
+ "camera_image": "Kamera Entitéit",
+ "camera_view": "Kamera Usiicht",
+ "double_tap_action": "Aktioun beim 2-mol tippen",
+ "entities": "Entitéiten",
+ "entity": "Entitéit",
+ "hold_action": "Aktioun beim unhalen",
+ "hours_to_show": "Stonnen uweisen",
+ "icon": "Ikon",
+ "icon_height": "Héicht vun der Ikon",
+ "image": "Wee zum Bild",
+ "manual": "Manuell",
+ "manual_description": "Muss Du eng personaliséiert Kaart bäifügen oder wëlls de Yaml manuell schreiwen?",
+ "maximum": "Maximum",
+ "minimum": "Minimum",
+ "name": "Numm",
+ "no_theme": "Kee Thema",
+ "refresh_interval": "Aktualiséierungs Intervall",
+ "search": "Sichen",
+ "secondary_info_attribute": "Sekundär Informatiouns Attribut",
+ "show_icon": "Ikon uweisen?",
+ "show_name": "Numm uweisen?",
+ "show_state": "Zoustand uweisen?",
+ "state": "Zoustand",
+ "state_color": "Ikone baséierend um Zoustand fierwen?",
+ "tap_action": "Aktioun beim tippen",
+ "theme": "Thema",
+ "title": "Titel",
+ "unit": "Eenheet",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Kolonnen",
+ "description": "D'Glance Kaart ass nëtzlech fir verschidde Sensoren an enger kompakter Iwwersiicht ze gruppéieren.",
+ "name": "Usiicht"
+ },
+ "grid": {
+ "description": "Gitter Kaart erlaabt et multiple Kaarten als Gitter unzeweisen.",
+ "name": "Gitter"
+ },
+ "history-graph": {
+ "description": "D'Verlaf's Grafik Kaart erlaabt Iech eng Grafik fir all eenzel opgelëschten Entitéiten unzeweisen.",
+ "name": "Verlaf Diagramm"
+ },
+ "horizontal-stack": {
+ "description": "Horizontal Kaart erlaabt et méi Kaarten ze gruppéieren fir dass se ëmmer an der selwechter Rei ugewise ginn.",
+ "name": "Horizontale Stapel"
+ },
+ "humidifier": {
+ "description": "Loftbefiichter Kaart gëtt dir Kontroll iwwert ee Loftbefiichter. Erlaabt et dir d'Fiichtegkeet a Betriibs Modus anzestellen.",
+ "name": "Loftbefiichter"
+ },
+ "iframe": {
+ "description": "Websäit Kaart erlaabt et eng aaner Websäit am Home Assistant unzeweisen.",
+ "name": "Websäit"
+ },
+ "light": {
+ "description": "Luucht Kaart erlaabt et d'Hellegkeet vun de Luuchten ze veränneren.",
+ "name": "Luucht"
+ },
+ "logbook": {
+ "description": "Logbuch weist eng Lëscht vun Evenementer vun Entitéiten un.",
+ "name": "Logbuch"
+ },
+ "map": {
+ "dark_mode": "Däischteren Modus",
+ "default_zoom": "Standard Zoom",
+ "description": "Kaarte Kaart erméiglecht d'Visualisatioun vun Entitéiten op enger Kaart.",
+ "geo_location_sources": "Quell vun der Geolokalisatioun",
+ "hours_to_show": "Stonnen uweisen",
+ "name": "Kaart",
+ "source": "Quell"
+ },
+ "markdown": {
+ "content": "Contenu",
+ "description": "Markdown Kaart gëtt benotzt fir Text ze formatéieren.",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "description": "Medien Kontroller Kaart gëtt benotzt fir Medie Spiller Entitéiten an engem Interface mat Kontroll Knäppchen unzeweisen.",
+ "name": "Medie Kontroll"
+ },
+ "picture-elements": {
+ "description": "D'Picture Elements Kaart ass eng vun de villsäitegsten Aarte vu Kaarten. D'Kaarten erlaben Iech Ikonen oder Text ze positionéieren a souguer Servicer! Op engem Bild wat op Koordinate baséiert.",
+ "name": "Biller Elementer"
+ },
+ "picture-entity": {
+ "description": "Bild Entitéite Kaart affichéiert eng Entitéit an der Form vun engem Bild. Amplaatz vun Biller vun enger URL kënnen och Biller vun enger Kamera ugewise ginn.",
+ "name": "Biller Entitéit"
+ },
+ "picture-glance": {
+ "description": "D'Picture Glance Kaart weist e Bild an entspriechend Entitéiten Zoustänn als Ikon un. D'Entitéiten op der rietser Säit erlaben et Aktiounen auszeféieren, oder anerer weise méi Informatioun un.",
+ "name": "Biller Usiicht"
+ },
+ "picture": {
+ "description": "D'Foto Kaart erlaabt Iech e Bild ze setze fir als Navigatioun ze benotze fir op verschidde Weeër an Ärem Interface oder e Service op ze ruffen.",
+ "name": "Bild"
+ },
+ "plant-status": {
+ "description": "Pflanz Kaart ass fir all Botanist geduecht.",
+ "name": "Status vun der Planz"
+ },
+ "sensor": {
+ "description": "Sensor Kaart erméiglecht eng schnell vue vun den Zoustänn vun de Sensoren mat engem optionalen Graphique fir den Verlaf ze visualiséieren.",
+ "graph_type": "Typ vun Graph.",
+ "name": "Sensor",
+ "show_more_detail": "Méi Detailer uweisen"
+ },
+ "shopping-list": {
+ "description": "Akafslëscht Kaart erlaabt et Saachen op eng Akafslëscht dobäizesetzen, änneren oder ofzehaken.",
+ "integration_not_loaded": "Dës Kaart erfuerdert dass d'Integratioun `shopping_list ageriicht ass.",
+ "name": "Akafslëscht"
+ },
+ "thermostat": {
+ "description": "Thermostat Kaart erlaabt d'Kontroll vun den Klima Entitéiten. Souwuel Temperatur an Betriibs Modus kënnen geännert ginn.",
+ "name": "Thermostat"
+ },
+ "vertical-stack": {
+ "description": "Vertikal Kaart erlaabt et méi Kaarten ze gruppéieren fir dass se ëmmer an der selwechter Kolonne ugewise ginn.",
+ "name": "Vertikale Stapel"
+ },
+ "weather-forecast": {
+ "description": "Wieder Previsoune Kaart weist d'Météo un. Immens nëtzlech fir Interfacen déi Benotzer un d'Mauer hänken.",
+ "name": "Wiederprevisioune",
+ "show_forecast": "Prévisioun uweisen"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Der Kaart no",
+ "by_entity": "Der Entitéit no",
+ "custom_card": "Personnaliséiert",
+ "domain": "Domain",
+ "entity": "Entitéit",
+ "no_description": "Keng Beschreiwung verfügbar"
+ },
+ "common": {
+ "add": "Dobäisetzen",
+ "clear": "Läschen",
+ "edit": "Änneren",
+ "none": "Keen"
+ },
+ "edit_badges": {
+ "panel_mode": "Dës Badge gi net ugewise well dës Usiicht am \"Panel Modus\" ass."
+ },
+ "edit_card": {
+ "add": "Kaart dobäisetzen",
+ "clear": "Läschen",
+ "confirm_cancel": "Sécher fir ofzebriechen ?",
+ "delete": "Kaart läschen",
+ "duplicate": "Kaart Replikéieren",
+ "edit": "Änneren",
+ "header": "Kaart Konfiguratioun",
+ "move": "Zur Usiicht réckelen",
+ "move_after": "Kaart réckelen no",
+ "move_before": "Kaart réckelen virun",
+ "options": "Méi Optiounen",
+ "pick_card": "Wielt eng Kaart aus déi soll dobäigesat ginn.",
+ "pick_card_view_title": "Wéieng Kaart wëllt dir zu ärer {name}Usiicht dobäisetzen?",
+ "search_cards": "Kaart sichen",
+ "show_code_editor": "Code Editeur uweisen",
+ "show_visual_editor": "Visuellen Editeur uweisen",
+ "toggle_editor": "Editeur ëmschalten",
+ "typed_header": "{type} Kaart Konfiguratioun",
+ "unsaved_changes": "Du hues ongespäichert Ännerungen"
+ },
+ "edit_lovelace": {
+ "edit_title": "Titel änneren",
+ "explanation": "Dësen Titel gëtt iwwert den Usiichte vu Lovelace ugewisen.",
+ "header": "Titel vun ärem Lovelace Benotzer Interface",
+ "title": "Titel"
+ },
+ "edit_view": {
+ "add": "Vue dobäisetzen",
+ "delete": "Vue läschen",
+ "edit": "Vue änneren",
+ "header": "Konfiguratioun kucken",
+ "header_name": "{name} Konfiguratioun kucken",
+ "move_left": "Usiicht no lenks réckelen",
+ "move_right": "Usiicht no riets réckelen",
+ "tab_badges": "Badgen",
+ "tab_settings": "Astellungen",
+ "tab_visibility": "Visibilitéit",
+ "visibility": {
+ "select_users": "Wiel d'Benotzer aus déi dës Usiicht an der Navigatioun gesinn"
+ }
+ },
+ "header": "UI änneren",
+ "header-footer": {
+ "choose_header_footer": "{typ} auswielen",
+ "footer": "Fousszeilen",
+ "header": "Entête",
+ "types": {
+ "buttons": {
+ "name": "Knäppercher"
+ },
+ "graph": {
+ "name": "Graph"
+ },
+ "picture": {
+ "name": "Bild"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Tableau de Bord verwalten",
+ "manage_resources": "Ressource verwalten",
+ "open": "Lovelace Menu opmaachen",
+ "raw_editor": "Editeur fir déi reng Konfiguratioun"
+ },
+ "migrate": {
+ "header": "Konfiguratioun net kompatibel",
+ "migrate": "Konfiguratioun migréieren",
+ "para_migrate": "Home Assistant kann ID's zu all äre Kaarten automatesch dobäisetzen andeem dir de Knäppche 'Konfiguratioun migréieren' dréckt.",
+ "para_no_id": "Dëst Element huet keng ID. Definéiert w.e.g. eng ID fir dëst Element am 'ui-lovelace.yaml'."
+ },
+ "move_card": {
+ "header": "Vue auswielen wou d'Kaart geréckelt soll ginn."
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Mir erstellen automatesch är Lovelace Usiichte mat äre Beräicher an Apparaten wann dir är Lovelace Konfiguratioun läscht.",
+ "confirm_remove_config_title": "Sécher fir deng Lovelace Konfiguratioun ze läschen?",
+ "confirm_unsaved_changes": "Dir hutt net gespäichert Ännerungen, sécher fir eraus ze goen?",
+ "confirm_unsaved_comments": "Deng Konfiguratioun enthält Kommentaren, dës ginn net gespäichert. Wëlls Du weiderfueren?",
+ "error_invalid_config": "Är Konfiguratioun ass ongëlteg: {error}",
+ "error_parse_yaml": "Kann de YAML net analyséieren: {error}",
+ "error_remove": "Kann Konfiguratioun net läschen: {error}",
+ "error_save_yaml": "Kann de YAML net späicheren: {error}",
+ "header": "Konfiguratioun änneren",
+ "resources_moved": "Ressourcen sollen net méi an d'Lovelace Konfiguratioun bäigesat ginn, awer kënnen am Lovelace Konfiguratiouns Panel bäigefügt ginn.",
+ "save": "Späicheren",
+ "saved": "Gespäichert",
+ "unsaved_changes": "Net gespäicherten Ännerungen"
+ },
+ "save_config": {
+ "close": "Zoumaachen",
+ "empty_config": "Mat engem eidelen Tableau de Bord ufänken",
+ "header": "Kontroll iwwert Loveloce UI iwwerhuelen",
+ "para": "Dësen Tableau de Bord gëtt vum Home Assistant verwalt. Et gëtt automatesch aktualiséiert soubal nei Entitéiten oder Lovelace-Komponenten disponibel sinn. Wanns Du d'Kontrolle iwwerhëlls, kann dësen Tableau de Bord net méi automatesch aktualiséiertginn. Du kanns ëmmer ee neien Tableau de Bord erstellen fir domatt ze testen.",
+ "para_sure": "Sécher fir d'Kontrolle iwwert de Benotzer Interface z'iwwerhuelen?",
+ "save": "Kontroll iwwerhuelen",
+ "yaml_config": "Fir de Start ze vereinfachen, hei ass déi aktuell Konfiguratioun vun dësem Tableau de Bord:",
+ "yaml_control": "Fir d'Kontroll am YAML Modus z'iwwerhuelen, erstell ee YAML Fichier mam Numm deen an der Konfiguratioun vun dësem Tableau de Bord uginn ass, oder de Standard 'ui-lovelace.yaml'",
+ "yaml_mode": "Du benotz de YAML Modus fir dësen Tableau de Bord, dëst bedeit dass du d'Lovelace Konfiguratioun net kanns aus dem Benotzer Interface änneren. Wann's du Lovelace vum Benotzer Interface aus wëlls änneren, läsch de 'mode: yaml' aus denger Lovelace Konfiguratioun am 'configuration.yaml'"
+ },
+ "select_view": {
+ "dashboard_label": "Tableau de Bord",
+ "header": "Vue auswielen"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Fousszeilen Editeur",
+ "header": "Entête Editeur",
+ "row": "Editeur vun der Réih vun Entitéiten"
+ }
+ },
+ "suggest_card": {
+ "add": "Zu Lovelace bäisetzen",
+ "create_own": "Aner Kaart auswielen",
+ "header": "Mir hun eng Suggestioun fir iech erstallt"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Dës Usiicht enthält méi wéi eng Kaart, mee eng Panneau Usiicht kann nëmmen 1 Kaart uweisen."
+ }
+ }
+ },
+ "menu": {
+ "close": "Zoumaachen",
+ "configure_ui": "Tableau de Bord änneren",
+ "exit_edit_mode": "Benotzer Interface Editéierungsmodus verloossen",
+ "help": "Hëllef",
+ "reload_resources": "Ressource frësch lueden",
+ "start_conversation": "Ënnerhalung starten"
+ },
+ "reload_lovelace": "Benotzer frësch lueden",
+ "reload_resources": {
+ "refresh_body": "D'Säit muss aktualiséiert gi fir d'Aktualiséierung ofzeschléissen, elo aktualiséieren?",
+ "refresh_header": "Soll aktualiséiert ginn?"
+ },
+ "unused_entities": {
+ "available_entities": "Dës si verfügbar Entitéiten, déi awer nach net an ärer Lovelace UI sinn.",
+ "domain": "Domän",
+ "entity": "Entitéit",
+ "entity_id": "ID vun der Entitéit",
+ "last_changed": "Läscht Ännerung",
+ "no_data": "Keng onbenotzten Entitéite fonnt",
+ "search": "Entitéite sichen",
+ "select_to_add": "Wielt d'Entitéite aus déi zu enger Kaart dobäigesaat solle ginn an klickt den Kaart dobäisetzen Knäppchen",
+ "title": "Onbenotzten Entitéiten"
+ },
+ "views": {
+ "confirm_delete": "Usiicht läschen?",
+ "confirm_delete_existing_cards": "D'Läschen vun dëser Usiicht läscht och d'Kaarten",
+ "confirm_delete_existing_cards_text": "Sécher fir d'Usiicht ''{name}'' ze läsche? Dës Usiicht enthält {number} Kaart(en) déi och geläscht ginn. Dës Aktioun kann net réckgängeg gemaach ginn.",
+ "confirm_delete_text": "Sécher fir d'Usiicht ''{name}'' ze läsche?"
+ },
+ "warning": {
+ "attribute_not_found": "Attribut {attribute} net disponibel an: {entity}",
+ "entity_non_numeric": "Entitéit ass net numerescher Natur: {entity}",
+ "entity_not_found": "Entitéit net erreechbar: {entity}",
+ "entity_unavailable": "Entitéit ass fir de Moment net erreechbar: {entity}",
+ "starting": "Home Assistant start, et wäert nach net alles prett sinn"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Löschen",
+ "delete_prompt": "Dës Noriicht löschen?",
+ "empty": "Dir hutt keng Noriicht",
+ "playback_title": "Noriicht ofspillen"
+ },
+ "my": {
+ "documentation": "Dokumentatioun",
+ "no_supervisor": "Dëse Redirect gëtt net vun Denger Home Assistant Installatioun ënnerstëtzt. Et brauch entweder een Home Assistant Betribssystem oder eng Home Assistant Superviséiert Installatiounsmethod. Fir méi Informatiounen, kuck {docs_link}."
+ },
+ "page-authorize": {
+ "abort_intro": "Login ofgebrach",
+ "authorizing_client": "Dir gitt elo {clientId} Zougang zu ärem Home Assistant.",
+ "form": {
+ "error": "Feeler: {error}",
+ "next": "Nächst",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Sessioun ofgelaaf, log dech rëm frësch an w.e.g."
+ },
+ "error": {
+ "invalid_auth": "Ongëltege Benotzernumm oder Passwuert",
+ "invalid_code": "Ongëlten Authentifizéierungs Code"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Passwuert",
+ "username": "Benotzernumm"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Zwee-Faktor Authentifikatiouns Code"
+ },
+ "description": "Maacht **{mfa_module_name}** op Ärem Apparat op, fir ären 2-Faktor-Authentifikatiouns Code ze kucken an Är Identitéit z'iwwerpréiwen:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Sessioun ofgelaaf, log dech rëm frësch an w.e.g."
+ },
+ "error": {
+ "invalid_auth": "Ongëltege Benotzernumm oder Passwuert",
+ "invalid_code": "Ongëlte Authentifikatiouns Code"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Passwuert",
+ "username": "Benotzernumm"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "2-Faktor-Authentifikatiouns Code"
+ },
+ "description": "Maacht **{mfa_module_name}** op Ärem Apparat op, fir ären 2-Faktor-Authentifikatiouns Code ze kucken an Är Identitéit z'iwwerpréiwen:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Sessioun ofgelaaf, log dech rëm frësch an w.e.g.",
+ "no_api_password_set": "Dir hutt nach keen API Passwuert definéiert."
+ },
+ "error": {
+ "invalid_auth": "Ongëltegt API Passwuert",
+ "invalid_code": "Ongëlte Authentifikatiouns Code"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "API Passwuert"
+ },
+ "description": "Gitt d'API Passwuert vun ärer http Konfiguratioun an:"
+ },
+ "mfa": {
+ "data": {
+ "code": "2-Faktor-Authentifikatiouns Code"
+ },
+ "description": "Maacht **{mfa_module_name}** op Ärem Apparat op, fir ären 2-Faktor-Authentifikatiouns Code ze kucken an Är Identitéit z'iwwerpréiwen:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Däi Computer ass net erlaabt."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Benotzer"
+ },
+ "description": "Wielt den User aus mat deem dir iech wëllt aloggen:"
+ }
+ }
+ }
+ },
+ "start_over": "Nei ufänken",
+ "unknown_error": "Eppes ass schifgaange",
+ "working": "W.e.g. waarden"
+ },
+ "initializing": "Initialiséiert",
+ "logging_in_with": "Verbannt iech mat **{authProviderName}**.",
+ "pick_auth_provider": "Oder verbannt iech mat"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "vun {name}",
+ "introduction": "Wëllkomm doheem! Dir hutt d'Demo vum Home Assistant erreecht wou mir iech déi Bescht Benotzer Interfacen déi vun onser Gemeinschaft erstallt goufen.",
+ "learn_more": "Méi iwwert Home Assistant liesen",
+ "next_demo": "Nächst Demo"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Aktivitéit",
+ "air": "Loft",
+ "commute_home": "Heem fueren",
+ "entertainment": "Ënnerhalung",
+ "hdmi_input": "HDMI Agang",
+ "hdmi_switcher": "HDMI Ëmschalter",
+ "information": "Informatioun",
+ "lights": "Luuchten",
+ "morning_commute": "Moies Trajet",
+ "total_tv_time": "Gesamt Fernseh Zäit",
+ "turn_tv_off": "Fernseher ausschalten",
+ "volume": "Volume"
+ },
+ "names": {
+ "family_room": "Stuff",
+ "hallway": "Gang",
+ "kitchen": "Kichen",
+ "left": "Lénks",
+ "master_bedroom": "Schlofkummer",
+ "mirror": "Spigel",
+ "patio": "Veranda",
+ "right": "Riets",
+ "temperature_study": "Edude vun der Temperatur",
+ "upstairs": "Uewenop"
+ },
+ "unit": {
+ "minutes_abbr": "Min.",
+ "watching": "kucken"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Nächst"
+ },
+ "core-config": {
+ "button_detect": "Entdecken",
+ "finish": "Nächst",
+ "intro": "Hallo {name}, wëllkomm zu Home Assistant. Wéi wëllt dir äert Doheem benennen?",
+ "intro_location": "Mir wëlle wësse wou dir wunnt. Dës Informatioun hëlleft fir Informatiounen unzeweisen an Automatiounen anzeriichten déi op d'Sonne baséieren. Dës Donnéeë ginn nimools ausserhalb vun ärem Netzwierk gedeelt.",
+ "intro_location_detect": "Mir kënne beim Ausfëlle vun dësen Informatiounen hëllefen andeems eng eemoleg Demande bei engem externe Service ugefrot gëtt.",
+ "location_name": "Numm vun denger Home Assistant Installatioun",
+ "location_name_default": "Doheem"
+ },
+ "finish": "Ofschléissen",
+ "integration": {
+ "finish": "Ofschléissen",
+ "intro": "Apparaten a Servicë ginn am Home Assistant als Integratioune representéiert. Dir kënnt si elo astellen, oder méi spéit vun der Konfiguratioun's Säit aus.",
+ "more_integrations": "Méi"
+ },
+ "intro": "Sidd Dir prett fir Äert Heem interessant ze maachen, Är Privatsphär ze garantéieren an enger weltwäiter Gemeinschaft bei ze trieden?",
+ "next": "Nächst",
+ "restore": {
+ "addons": "Add-ons",
+ "description": "Alternativ kanns Du aus engem fréiere Backup restauréieren.",
+ "folders": "Dossieren",
+ "hide_log": "Komplette Log verstoppen",
+ "in_progress": "Restauratioun en cours",
+ "password": "Passwuert",
+ "password_protection": "Passwuert Protektioun",
+ "show_log": "Komplette Log uweisen",
+ "type": "Typ"
+ },
+ "user": {
+ "create_account": "Kont erstellen",
+ "data": {
+ "name": "Numm",
+ "password": "Passwuert",
+ "password_confirm": "Passwuert bestätegen",
+ "username": "Benotzernumm"
+ },
+ "error": {
+ "password_not_match": "Passwierder stëmmen net iwwereneen",
+ "required_fields": "Fëllt all néideg Felder aus"
+ },
+ "intro": "Looss eis ufänken andeems en e Benotzerkont erstellt.",
+ "required_field": "Néideg"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Entspär fortgeschratt Funktiounen.",
+ "link_promo": "Méi liesen",
+ "title": "Avancéierte Modus"
+ },
+ "change_password": {
+ "confirm_new_password": "Neit Passwuert confirméieren",
+ "current_password": "Aktuellt Passwuert",
+ "error_new_is_old": "Neit Passwuert muss anescht sinn wéi dat aktuellt Passwuert",
+ "error_new_mismatch": "Verschidde Wäerter fir neit Passwuert ausgefëllt",
+ "error_required": "Obligatoresch",
+ "header": "Passwuert änneren",
+ "new_password": "Neit Passwuert",
+ "submit": "Ofschécken",
+ "success": "Passwuert erfollegräich geännert"
+ },
+ "current_user": "Dir sidd aktuell ageloggt als {fullName}.",
+ "customize_sidebar": {
+ "button": "Änneren",
+ "description": "Du kanns och den Header vun der Sidebar drécken an hale fir den Ännerungs modus z'aktivéieren.",
+ "header": "Änner Reihefolleg a verstopp Elementer aus der Sidebar"
+ },
+ "dashboard": {
+ "description": "Wiel ee Tableau de Bord als Standard op dësem Apparat.",
+ "dropdown_label": "Tableau de Bord",
+ "header": "Tableau de Bord"
+ },
+ "enable_shortcuts": {
+ "description": "Tastatur Ofkierzungen aktivéieren oder déaktivéieren fir verschidde Aktiounen am Interface auszeféieren.",
+ "header": "Tastatur Ofkierzungen"
+ },
+ "force_narrow": {
+ "description": "Dës Optioun verstoppt d'Säite Läischt esou wéi op engem mobillen Apparat.",
+ "header": "Säite Läischt ëmmer verstoppen"
+ },
+ "is_owner": "Dir sidd Proprietär.",
+ "language": {
+ "dropdown_label": "Sprooch",
+ "header": "Sproochen",
+ "link_promo": "Hëllef beim Iwwersetzen"
+ },
+ "logout": "Ausloggen",
+ "logout_text": "Sécher fir sech ofzemellen?",
+ "logout_title": "Ofmellen",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Sécher fir den Accèss Jeton fir {name} ze läsche?",
+ "create": "Jeton erstellen",
+ "create_failed": "Feeler beim erstellen vum Accèss Jeton",
+ "created": "Erstallt {date}",
+ "delete_failed": "Feeler beim läschen vum Accèss Jeton",
+ "description": "Erstellt laang gëlteg Accèss Jetone déi et äre Skripten erlabe mat ärem Home Assistant z'interagéieren. All eenzelen Jeton ass gëlteg fir 10 Joer. Folgend Accèss Jeton sinn am Moment aktiv.",
+ "empty_state": "Et ginn nach keng laang gëlteg Accèss Jeton.",
+ "header": "Lang gëlteg Accèss Jetone",
+ "learn_auth_requests": "Leiert wéi een \"authenticated requests\" erstellt.",
+ "name": "Numm",
+ "prompt_copy_token": "Kopéiert den Accèss Jeton. E gëtt nie méi ugewisen.",
+ "prompt_name": "Gëff dem Jeton ee Numm?"
+ },
+ "mfa": {
+ "confirm_disable": "Sécher fir {name} ze desaktivéieren?",
+ "disable": "Desaktivéieren",
+ "enable": "Aktivéieren",
+ "header": "Multi-Faktor Authentifikatioun's Module"
+ },
+ "mfa_setup": {
+ "close": "Zoumaachen",
+ "step_done": "Konfiguratioun ofgeschloss fir {step}",
+ "submit": "Ofschécken",
+ "title_aborted": "Ofgebrach",
+ "title_success": "Succès!"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Numm vum Apparat",
+ "title": "Wéi soll dësen Apparat genannt ginn?"
+ },
+ "description": "Noriichten op dësen Apparat schécken",
+ "error_load_platform": "Notifiy.html5 konfiguréieren.",
+ "error_use_https": "Benéidegt SSL fir de Frontend",
+ "header": "Push-Noriichte",
+ "link_promo": "Méi liesen",
+ "push_notifications": "Push-Noriichte"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Sécher fir den Erneierungs Jeton fir {name} ze läsche?",
+ "created_at": "Erstallt um {date}",
+ "current_token_tooltip": "Feeler beim läschen vum aktuellen Erneierungs Jeton",
+ "delete_failed": "Feeler beim läschen vum Erneierungs Jeton.",
+ "description": "All Sessioun's Jeton representéiert eng Login Sessioun. Sessioun's Jetone ginn automatesch geläscht wann dir op auslogge klickt. Folgend Sessioun's Jetone si fir de Moment fir Ären Account aktiv.",
+ "header": "Jeton erneieren",
+ "last_used": "Fir d'Läscht benotzt um {date} vun {location}",
+ "not_used": "Nach nie benotzt ginn",
+ "token_title": "Jeton erneiren fir {clientId}"
+ },
+ "suspend": {
+ "description": "Soll d'Verbindung automateschzougemaach gin nodeems se 5 Minutten verstoppt war?",
+ "header": "Verbindung autmatesch zoumaachen"
+ },
+ "themes": {
+ "accent_color": "Faarf vum Accent",
+ "dark_mode": {
+ "auto": "Auto",
+ "dark": "Däischter",
+ "light": "Hell"
+ },
+ "dropdown_label": "Thema",
+ "error_no_theme": "Keen Thema disponibel",
+ "header": "Thema",
+ "link_promo": "Méi iwwert Thema liesen",
+ "primary_color": "Primär Faarf",
+ "reset": "Reset"
+ },
+ "vibrate": {
+ "description": "Vibratioun op dësem Apparat un oder ausschalte wann aner Apparater gesteiert ginn.",
+ "header": "Vibréieren"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Ënnerhalung starten"
+ }
+ },
+ "sidebar": {
+ "done": "Gemaach",
+ "external_app_configuration": "App Konfiguratioun",
+ "sidebar_toggle": "Säite Kolonne ëmschalten"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/lt.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/lt.json
new file mode 100644
index 00000000..6bd6ce27
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/lt.json
@@ -0,0 +1,2577 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "device": "Įrenginys",
+ "integration": "Integracija",
+ "user": "Vartotojas"
+ }
+ },
+ "groups": {
+ "owner": "Savininkas",
+ "system-admin": "Administratoriai",
+ "system-read-only": "Tik skaitymo privilegija",
+ "system-users": "Vartotojai"
+ },
+ "panel": {
+ "calendar": "Kalendorius",
+ "config": "Konfigūracija",
+ "developer_tools": "Kūrėjo įrankiai",
+ "energy": "Energija",
+ "history": "Istorija",
+ "logbook": "Veiksmų žurnalas",
+ "mailbox": "Pašto dėžutė",
+ "map": "Žemėlapis",
+ "media_browser": "Medijos naršyklė",
+ "profile": "Vartotojo profilis",
+ "shopping_list": "Pirkinių sąrašas",
+ "states": "Valdymas"
+ },
+ "state": {
+ "default": {
+ "off": "Išjungta",
+ "on": "Įjungta",
+ "unavailable": "(nepasiekiamas)",
+ "unknown": "Nežinoma"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Auto",
+ "off": "Išjungta",
+ "on": "Įjungta"
+ },
+ "hvac_action": {
+ "cooling": "Aušinimas",
+ "drying": "Džiovinimas",
+ "fan": "Ventiliatorius",
+ "heating": "Šildymas",
+ "idle": "Laukimo režimas",
+ "off": "Išjungta"
+ },
+ "preset_mode": {
+ "activity": "Veikla",
+ "away": "Išvykęs",
+ "boost": "Padidinti",
+ "comfort": "Komfortas",
+ "eco": "Eko",
+ "home": "Namai",
+ "none": "Joks",
+ "sleep": "Miegoti"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Automatinis",
+ "away": "Išvykęs",
+ "baby": "Kūdikio",
+ "boost": "Padidinti",
+ "comfort": "Komfortas",
+ "eco": "Eko",
+ "home": "Namai",
+ "normal": "Normalus",
+ "sleep": "Miego"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Užrakinta",
+ "armed_away": "Užrakinta",
+ "armed_custom_bypass": "Užrakinta",
+ "armed_home": "Užrakinta",
+ "armed_night": "Užrakinta",
+ "arming": "Užrakinama",
+ "disarmed": "Atrakinta",
+ "disarming": "Atrakinti",
+ "pending": "Vykdoma",
+ "triggered": "Paleidiklis"
+ },
+ "default": {
+ "entity_not_found": "Objektas nerastas",
+ "error": "Klaida",
+ "unavailable": "Nežin",
+ "unknown": "Nžn"
+ },
+ "device_tracker": {
+ "home": "Namai",
+ "not_home": "Išvykęs"
+ },
+ "person": {
+ "home": "Namai",
+ "not_home": "Išvykęs"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Numatytasis veiksmas",
+ "header": "Garsas",
+ "input": "Įvestis",
+ "output": "Išvestis"
+ },
+ "network": {
+ "container": "Konteineris",
+ "disabled": "Išjungta",
+ "header": "Tinklas",
+ "host": "Host"
+ },
+ "options": {
+ "edit_in_ui": "Redaguoti UI aplinkoje",
+ "edit_in_yaml": "Redaguoti YAML aplinkoje",
+ "header": "Parinktys",
+ "invalid_yaml": "Neteisingas YAML"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "start_invalid_config": "Eiti į konfigūraciją"
+ },
+ "capability": {
+ "apparmor": {
+ "title": "AppArmor"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "auth",
+ "docker": "docker",
+ "hardware": "hardware",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "host",
+ "host_pid": "host pid",
+ "ingress": "ingress",
+ "rating": "rating",
+ "stage": "stage"
+ },
+ "role": {
+ "admin": "admin",
+ "backup": "backup",
+ "default": "default",
+ "homeassistant": "homeassistant",
+ "manager": "manager"
+ }
+ },
+ "visit_addon_page": "Apsilankykite puslapyje {name}, jei reikia daugiau detalių"
+ },
+ "panel": {
+ "configuration": "Konfigūracija",
+ "documentation": "Dokumentacija"
+ }
+ },
+ "backup": {
+ "addons": "Priedai",
+ "could_not_create": "Nepavyko sukurti momentinės kopijos",
+ "create": "Sukurti",
+ "created": "Sukurta",
+ "delete_backup_confirm": "ištrinti",
+ "enter_password": "Įveskite slaptažodį.",
+ "failed_to_delete": "Ištrinti nepavyko",
+ "folders": "Aplankai",
+ "name": "Pavadinimas",
+ "password": "Slaptažodis",
+ "passwords_not_matching": "Slaptažodžiai nesutampa",
+ "select_type": "Pasirinkite, ką atkurti",
+ "selected": "{number} pasirinkta",
+ "type": "Tipas"
+ },
+ "common": {
+ "cancel": "Atšaukti",
+ "close": "Užverti",
+ "description": "Aprašymas",
+ "error": {
+ "unknown": "Nežinoma klaida",
+ "update_failed": "Atnaujinimas nepavyko"
+ },
+ "failed_to_restart_name": "Nepavyko paleisti iš naujo {name}",
+ "failed_to_update_name": "Nepavyko atnaujinti {name}",
+ "learn_more": "Sužinokite daugiau",
+ "new_version_available": "Galima nauja versija",
+ "reload": "Perkrauti",
+ "restart": "Paleisti iš naujo",
+ "restart_name": "Iš naujo paleisti {name}",
+ "running_version": "Šiuo metu naudojate {version}",
+ "save": "Išsaugoti",
+ "show_more": "Rodyti daugiau informacijos apie tai",
+ "version": "Versija"
+ },
+ "confirm": {
+ "restart": {
+ "text": "Ar jūs tikrai norite iš naujo paleisti {name}?",
+ "title": "Iš naujo paleisti {name}"
+ },
+ "update": {
+ "title": "Atnaujinti {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Galima nauja versija",
+ "addons": "Įdiegti įskiepiai"
+ },
+ "dialog": {
+ "hardware": {
+ "attributes": "Atributai",
+ "device_path": "Įrenginio kelias",
+ "id": "ID",
+ "search": "Ieškoti įrenginių",
+ "subsystem": "Posistemė",
+ "title": "Įrenginiai"
+ },
+ "network": {
+ "connected_to": "Prisijungta prie {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Išjungta",
+ "dns_servers": "DNS serveriai",
+ "failed_to_change": "Nepavyko pakeisti tinklo nustatymų",
+ "gateway": "Šliuzo adresas",
+ "ip_netmask": "IP adresas/Netmask",
+ "open": "Atidaryti",
+ "scan_ap": "Ieškoti prieigos taškų",
+ "static": "Statinis",
+ "title": "Tinklo nustatymai",
+ "unsaved": "Turite neišsaugotų pakeitimų, ar tikrai norite išeiti?",
+ "warning": "Jei keičiate „Wi-Fi“, IP ar šliuzo adresus, galite prarasti ryšį!",
+ "wep": "WEP",
+ "wpa": "wpa-psk"
+ },
+ "registries": {
+ "add_new_registry": "Pridėti naują registrą",
+ "add_registry": "Pridėti registrą",
+ "no_registries": "Nėra sukonfigūruotų registrų",
+ "password": "Slaptažodis",
+ "registry": "Registras",
+ "remove": "Pašalinti",
+ "username": "Vartotojo vardas"
+ },
+ "repositories": {
+ "add": "Pridėti",
+ "remove": "Pašalinti"
+ },
+ "restart_addon": {
+ "confirm_text": "Paleiskite priedą iš naujo ",
+ "text": "Ar norite iš naujo paleisti priedą su pakeitimais?"
+ },
+ "update": {
+ "updating": "{name} naujinama į versiją {version}"
+ }
+ },
+ "my": {
+ "error_addon_not_found": "Priedas nerastas"
+ },
+ "panel": {
+ "dashboard": "Prietaisų skydelis",
+ "system": "Sistema"
+ },
+ "store": {
+ "no_results_found": "Rezultatų {repository} nerasta.",
+ "registries": "Registrai",
+ "repositories": "Saugyklos"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Pagrindinio procesoriaus naudojimas",
+ "ram_usage": "Pagrindinės operatyviosios atminties naudojimas"
+ },
+ "host": {
+ "change": "Keisti",
+ "docker_version": "Docker versija",
+ "hardware": "Įranga",
+ "import_from_usb": "Importuoti iš USB",
+ "ip_address": "IP adresas",
+ "operating_system": "Operacinė sistema"
+ },
+ "log": {
+ "get_logs": "Nepavyko gauti {provider} žurnalų, {error}"
+ },
+ "supervisor": {
+ "channel": "Kanalas",
+ "search": "Paieška",
+ "share_diagonstics_title": "Padėkite tobulinti Home Assistant",
+ "unhealthy_reason": {
+ "untrusted": "Aptiktas nepatikimas turinys"
+ },
+ "warning": "ĮSPĖJIMAS"
+ }
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Ar norite likti prisijungę?",
+ "confirm": "Taip",
+ "decline": "Ne"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Išvykęs",
+ "arm_custom_bypass": "Individualizuotas apėjimas",
+ "arm_home": "Namų apsauga",
+ "arm_night": "Naktinė apsauga",
+ "clear_code": "Išvalyti",
+ "code": "Kodas",
+ "disarm": "Atrakinti"
+ },
+ "automation": {
+ "last_triggered": "Paskutinį kartą suaktyvinta",
+ "trigger": "Vykdyti veiksmus"
+ },
+ "camera": {
+ "not_available": "Vaizdas negalimas"
+ },
+ "climate": {
+ "away_mode": "Išvykimo režimas",
+ "current_temperature": "{name} esama temperatūra",
+ "currently": "Šiuo metu",
+ "fan_mode": "Ventiliatoriaus režimas",
+ "high": "aukštas",
+ "low": "žemas",
+ "on_off": "Įjungta / išjungta",
+ "operation": "Operacija",
+ "preset_mode": "Iš anksto nustatytas",
+ "target_humidity": "Norimas drėgnumas",
+ "target_temperature": "Norima temperatūra",
+ "target_temperature_entity": "{name} norima temperatūra",
+ "target_temperature_mode": "{name} norima temperatūra {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "pamažinti",
+ "increment": "padidinti",
+ "reset": "atstatyti"
+ }
+ },
+ "cover": {
+ "position": "Padėtis",
+ "tilt_position": "Pakreipimo padėtis"
+ },
+ "fan": {
+ "direction": "Kryptis",
+ "forward": "Pirmyn",
+ "oscillate": "Sukasi",
+ "reverse": "Atgal",
+ "speed": "Greitis"
+ },
+ "humidifier": {
+ "mode": "Režimas"
+ },
+ "light": {
+ "brightness": "Ryškumas",
+ "color_temperature": "Spalvos temperatūra",
+ "effect": "Efektas",
+ "white_value": "Baltas ryškumas"
+ },
+ "lock": {
+ "code": "Kodas",
+ "lock": "Užrakinti",
+ "unlock": "Atrakinti"
+ },
+ "media_player": {
+ "media_play": "Paleisti",
+ "media_play_pause": "Paleisti/pristabdyti",
+ "sound_mode": "Garso režimas",
+ "source": "Šaltinis",
+ "text_to_speak": "Tekstas, kurį reikia kalbėti",
+ "turn_off": "Išjungti",
+ "turn_on": "Įjungti"
+ },
+ "persistent_notification": {
+ "dismiss": "Atmesti"
+ },
+ "scene": {
+ "activate": "Suaktyvinti"
+ },
+ "service": {
+ "run": "Paleisti"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "atšaukti",
+ "finish": "užbaigti",
+ "pause": "sustabdyti",
+ "start": "pradėti"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Tęsti valymą",
+ "start_cleaning": "Pradėti valymą",
+ "turn_off": "Išjungti",
+ "turn_on": "Įjungti"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Išvykimo režimas",
+ "currently": "Šiuo metu",
+ "on_off": "Įjungta / išjungta",
+ "operation": "Operacija",
+ "target_temperature": "Norima temperatūra"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Atmosferos slėgis",
+ "humidity": "Santykinė oro drėgmė",
+ "precipitation": "Krituliai",
+ "temperature": "Temperatūra",
+ "visibility": "Matomumas",
+ "wind_speed": "Vėjo greitis"
+ },
+ "cardinal_direction": {
+ "e": "R",
+ "ene": "RŠR",
+ "ese": "RPR",
+ "n": "Š",
+ "ne": "ŠR",
+ "nne": "ŠŠR",
+ "nnw": "ŠŠV",
+ "nw": "ŠV",
+ "s": "P",
+ "se": "PR",
+ "sse": "PPR",
+ "ssw": "PPV",
+ "sw": "PV",
+ "w": "V",
+ "wnw": "VŠV",
+ "wsw": "VPV"
+ },
+ "forecast": "Prognozė",
+ "high": "Aukštas",
+ "low": "Žemas"
+ }
+ },
+ "common": {
+ "back": "Atgal",
+ "cancel": "Atšaukti",
+ "close": "Uždaryti",
+ "continue": "Tęsti",
+ "copied": "Nukopijuota",
+ "delete": "Ištrinti",
+ "disable": "Išjungti",
+ "enable": "Įgalinti",
+ "error_required": "Privaloma",
+ "leave": "Palikti",
+ "loading": "Pakrovimas",
+ "menu": "Meniu",
+ "next": "Kitas",
+ "no": "Ne",
+ "not_now": "Ne dabar",
+ "previous": "Ankstesnis",
+ "refresh": "Atnaujinti",
+ "remove": "Pašalinti",
+ "rename": "Pervardyti",
+ "save": "Išsaugoti",
+ "skip": "Praleisti",
+ "stay": "Likti",
+ "successfully_deleted": "Sėkmingai ištrinta",
+ "successfully_saved": "Sėkmingai išsaugota",
+ "undo": "Atšaukti",
+ "yes": "Taip"
+ },
+ "components": {
+ "area-picker": {
+ "add_dialog": {
+ "failed_create_area": "Nepavyko sukurti srities.",
+ "text": "Įveskite naujos srities pavadinimą."
+ },
+ "add_new": "Pridėti naują sritį…",
+ "area": "Sritis",
+ "no_areas": "Neturite jokių sričių",
+ "no_match": "Nerasta atitinkančių sričių"
+ },
+ "attributes": {
+ "expansion_header": "Atributai"
+ },
+ "blueprint-picker": {
+ "add_user": "Pridėti vartotoją",
+ "remove_user": "Pašalinti vartotoją",
+ "select_blueprint": "Pasirinkite techninį planą"
+ },
+ "data-table": {
+ "clear": "Išvalyti",
+ "hidden": "{number} paslėpta",
+ "no-data": "Nėra duomenų"
+ },
+ "date-range-picker": {
+ "end_date": "Pabaigos data",
+ "ranges": {
+ "last_week": "Praeitą savaitę",
+ "this_week": "Šią savaitę",
+ "today": "Šiandien",
+ "yesterday": "Vakar"
+ },
+ "select": "Pasirinkite",
+ "start_date": "Pradžios data"
+ },
+ "device-picker": {
+ "device": "Įrenginys",
+ "no_area": "Nėra srities",
+ "no_devices": "Neturite jokių įrenginių",
+ "no_match": "Nerasta atitinkančių įrenginių",
+ "show_devices": "Rodyti įrenginius"
+ },
+ "entity": {
+ "entity-picker": {
+ "entity": "Subjektas",
+ "no_match": "Nerasta atitinkančių objektų"
+ }
+ },
+ "history_charts": {
+ "loading_history": "Įkeliama būsenos retrospektyva…",
+ "no_history_found": "Būsenos istorija nerasta."
+ },
+ "logbook": {
+ "by_service": "pagal paslaugą",
+ "messages": {
+ "became_unavailable": "tapo neprieinama",
+ "changed_to_state": "pakeista į {state}",
+ "cleared_device_class": "išvalyta ({device_class} neaptikta)",
+ "detected_device_class": "aptikta {device_class}",
+ "is_closing": "uždaroma",
+ "is_opening": "atidaroma",
+ "rose": "pakilo",
+ "set": "nustatyti",
+ "turned_off": "Išjungta",
+ "turned_on": "įjungta",
+ "was_at_home": "buvo namie",
+ "was_at_state": "buvo {state}",
+ "was_away": "buvo toli",
+ "was_closed": "buvo uždaryta",
+ "was_connected": "buvo prijungta",
+ "was_disconnected": "buvo atjungta",
+ "was_locked": "buvo užrakinta",
+ "was_low": "buvo mažas",
+ "was_normal": "buvo normalu",
+ "was_opened": "buvo atidaryta",
+ "was_plugged_in": "buvo prijungtas",
+ "was_safe": "buvo saugus",
+ "was_unlocked": "buvo atrakinta",
+ "was_unplugged": "buvo atjungtas",
+ "was_unsafe": "buvo nesaugus"
+ }
+ },
+ "media-browser": {
+ "class": {
+ "album": "Albumas",
+ "app": "Programėlė",
+ "artist": "Atlikėjas",
+ "channel": "Kanalas",
+ "composer": "Kompozitorius",
+ "contributing_artist": "Prisidedantis atlikėjas",
+ "directory": "Biblioteka",
+ "episode": "Serija",
+ "genre": "Žanras",
+ "movie": "Filmas",
+ "music": "Muzika",
+ "playlist": "Grojaraštis",
+ "podcast": "Podkastas",
+ "season": "Sezonas",
+ "tv_show": "Televizijos laida",
+ "url": "URL",
+ "video": "Vaizdo įrašas"
+ },
+ "documentation": "dokumentacija"
+ },
+ "picture-upload": {
+ "label": "Paveikslėlis",
+ "unsupported_format": "Nepalaikomas formatas, prašome pasirinkti JPEG, PNG arba GIF atvaizdą."
+ },
+ "related-filter-menu": {
+ "filter_by_area": "Filtruoti pagal sritį",
+ "filter_by_device": "Filtruoti pagal įrenginį",
+ "filtered_by_area": "sritis: {area_name}",
+ "filtered_by_device": "įrenginys: {device_name}"
+ },
+ "related-items": {
+ "area": "Sritis",
+ "device": "Įrenginys"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one {diena}\n other {dienos}\n}",
+ "hour": "{count} {count, plural,\n one {valanda}\n other {valandos}\n}",
+ "minute": "{count} {count, plural,\n one {minutė}\n other {minutės}\n}",
+ "second": "{count} {count, plural,\n one {sekundė}\n other {sekundės}\n}",
+ "week": "{count} {count, plural,\n one {savaitė}\n other {savaitės}\n}"
+ },
+ "never": "Niekada"
+ },
+ "service-control": {
+ "integration_doc": "Integracijos dokumentacija"
+ },
+ "service-picker": {
+ "service": "Paslauga"
+ },
+ "statistic-picker": {
+ "learn_more": "Sužinokite daugiau paie statistiką",
+ "missing_entity": "Kodėl mano subjektas neįtrauktas į sąrašą?",
+ "statistic": "Statistika"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Įkeliama statistika",
+ "no_statistics_found": "Statistika nerasta",
+ "statistic_types": {
+ "max": "maks",
+ "mean": "vidurkis",
+ "min": "min",
+ "sum": "suma"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Pasirinkite sritį",
+ "add_device_id": "Pasirinkite įrenginį",
+ "add_entity_id": "Pasirinkite objektą",
+ "remove_area_id": "Pašalinti sritį",
+ "remove_device_id": "Pašalinti įrenginį",
+ "remove_entity_id": "Pašalinti objektą"
+ },
+ "user-picker": {
+ "add_user": "Pridėti naudotoją",
+ "no_user": "Nėra vartotojo",
+ "remove_user": "Pašalinti vartotoją"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_label": "Įgalinti naujai pridėtus subjektus",
+ "restart_home_assistant": "Kad pakeitimai įsigaliotų, turite iš naujo paleisti Home Assistant.",
+ "title": "{integration} sistemos parinktys",
+ "update": "Atnaujinti"
+ },
+ "entity_registry": {
+ "dismiss": "Atmesti",
+ "editor": {
+ "delete": "Ištrinti",
+ "device_disabled": "Šio objekto įrenginys išjungtas.",
+ "enabled_label": "Įgalinti subjektą",
+ "entity_id": "Subjekto ID",
+ "icon": "Piktograma",
+ "name": "Pavadinimas",
+ "open_device_settings": "Atidaryti įrenginio nustatymus"
+ },
+ "faq": "dokumentacija",
+ "related": "Susijęs",
+ "settings": "Nustatymai"
+ },
+ "generic": {
+ "close": "uždaryti"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Pradinė reikšmė",
+ "maximum": "Didžiausia reiikšmė",
+ "minimum": "Mažiausia reikšmė",
+ "restore": "Atkurkite paskutinę žinomą reikšmę paleidus „Home Assistant“",
+ "step": "Žingsnio dydis"
+ },
+ "input_number": {
+ "step": "Žingsnio dydis",
+ "unit_of_measurement": "Matavimo vienetai"
+ },
+ "input_select": {
+ "add": "Pridėti",
+ "add_option": "Pridėti parinktį",
+ "options": "Parinktys"
+ },
+ "timer": {
+ "duration": "Trukmė"
+ }
+ },
+ "image_cropper": {
+ "crop": "Apkarpyti"
+ },
+ "more_info_control": {
+ "details": "Išsami informacija",
+ "dismiss": "Atsisakyti dialogo",
+ "history": "Istorija",
+ "last_changed": "Paskutinį kartą pakeista",
+ "last_updated": "Paskutinį kartą atnaujinta",
+ "remote": {
+ "activity": "Dabartinė veikla"
+ },
+ "restored": {
+ "confirm_remove_title": "Pašalinti subjektą?",
+ "remove_action": "Pašalinti subjektą"
+ },
+ "script": {
+ "last_action": "Paskutinis veiksmas"
+ },
+ "settings": "Subjekto nustatymai",
+ "sun": {
+ "elevation": "Aukštis",
+ "rising": "Kyla",
+ "setting": "Nustatymas"
+ },
+ "updater": {
+ "title": "Atnaujinimo instrukcijos"
+ },
+ "vacuum": {
+ "fan_speed": "Ventiliatoriaus greitis",
+ "locate": "Surasti",
+ "pause": "Pristabdyti",
+ "return_home": "Grįžti namo",
+ "start": "Pradėti",
+ "start_pause": "Pradėti/Pristabdyti",
+ "status": "Būsena",
+ "stop": "Sustabdyti"
+ }
+ },
+ "options_flow": {
+ "form": {
+ "header": "Parinktys"
+ },
+ "success": {
+ "description": "Parinktys sėkmingai išsaugotos."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Sritys",
+ "automation": "Automatizacijos",
+ "blueprint": "Techniniai planai",
+ "core": "Bendra",
+ "customize": "Tinkinimas",
+ "devices": "Įrenginiai",
+ "entities": "Objectai",
+ "helpers": "Pagelbikliai",
+ "info": "Informacija",
+ "integrations": "Integracijos",
+ "logs": "Įvykių žurnalai",
+ "lovelace": "Lovelace ataskaitų sritis",
+ "person": "Žmonės",
+ "scene": "Scenos",
+ "script": "Skriptai",
+ "server_control": "Serverio valdikliai",
+ "users": "Vartotojai",
+ "zone": "Zonos"
+ },
+ "server_control": {
+ "perform_action": "{action} serveris",
+ "restart": "Paleisti iš naujo",
+ "stop": "Sustabdyti"
+ },
+ "types": {
+ "reload": "Perkrauti",
+ "server_control": "Serveris"
+ }
+ },
+ "filter_placeholder": "Objekto filtras"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant nieko neišgirdo",
+ "error": "Oi, įvyko klaida",
+ "how_can_i_help": "Kuo galiu padėti?",
+ "label": "Įveskite klausimą ir paspauskite „Enter“"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "device_children": "Peržiūrėti vaikus"
+ },
+ "confirmations": {
+ "remove": "Ar jūs tikrai norite pašalinti įrenginį?"
+ },
+ "last_seen": "Paskutinį kartą matyta",
+ "manuf": "sukūrė {manufacturer}",
+ "no_area": "Nėra srities",
+ "unknown": "Nežinoma"
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Atributas",
+ "bind_header": "Susiejimas",
+ "button_hide": "Slėpti išsamią informaciją",
+ "button_show": "Rodyti išsamią informaciją",
+ "cluster_header": "Klusteris",
+ "configuration_complete": "Įrenginio perkonfigūravimas baigtas.",
+ "configuration_failed": "Įrenginio perkonfigūravimas nepavyko. Žurnaluose gali būti papildomos informacijos.",
+ "configuring_alt": "Konfigūruojama",
+ "in_progress": "Įrenginys perkonfigūruojamas. Tai gali užtrukti.",
+ "min_max_change": "min/maks/pokytis",
+ "reporting_header": "Ataskaitos",
+ "run_in_background": "Galite uždaryti šį dialogo langą ir perkonfigūravimas bus tęsiamas fone.",
+ "start_reconfiguration": "Pradėti perkonfigūravimą"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\n one {diena}\n other {dienos}\n}",
+ "hour": "{count} {count, plural,\n one {valanda}\n other {valandos}\n}",
+ "minute": "{count} {count, plural,\n one {minutė}\n other {minutės}\n}",
+ "second": "{count} {count, plural,\n one {sekundė}\n other {sekundės}\n}",
+ "week": "{count} {count, plural,\n one {savaitė}\n other {savaitės}\n}"
+ },
+ "errors": {
+ "supervisor": {
+ "ask": "Prašyti pagalbos"
+ }
+ },
+ "login-form": {
+ "log_in": "Prisijungti",
+ "password": "Slaptažodis",
+ "remember": "Prisiminti"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Spustelėkite mygtuką, kad sukonfigūruotumėte {entity}",
+ "close": "Uždaryti",
+ "dismiss_all": "Atmesti viską",
+ "empty": "Pranešimų nėra",
+ "title": "Pranešimai"
+ },
+ "notification_toast": {
+ "connection_lost": "Nutrūko ryšys. Jungiamasi iš naujo…",
+ "dismiss": "Atmesti",
+ "service_call_failed": "Nepavyko panaudoti skambučių paslaugos {service}.",
+ "started": "Home Assistant startavo",
+ "starting": "Home Assistant kraunasi. Visos funkcijos bus prieinamos kai bus baigtas užkrovimas."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Trūksta konfigūracijos parinkčių? Įjungti išplėstinį režimą",
+ "link_profile_page": "jūsų profilio puslapis"
+ },
+ "areas": {
+ "caption": "Sričių registras",
+ "data_table": {
+ "area": "Sritis",
+ "devices": "Įrenginiai",
+ "entities": "Subjektai"
+ },
+ "delete": {
+ "confirmation_title": "Ar jūs tikrai norite ištrinti šią sritį?"
+ },
+ "description": "Visų jūsų namų sričių apžvalga.",
+ "editor": {
+ "create": "SUKURTI",
+ "default_name": "Nauja sritis",
+ "delete": "Ištrinti",
+ "linked_entities_caption": "Subjektai",
+ "unknown_error": "Nežinoma klaida",
+ "update": "ATNAUJINTI"
+ },
+ "picker": {
+ "create_area": "Sukurti sritį",
+ "header": "Sričių registras",
+ "integrations_page": "Integracijų puslapis"
+ }
+ },
+ "automation": {
+ "caption": "Automatika",
+ "description": "Sukurkite pasirinktas automatikos taisykles savo namams",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Naudoti techninį planą"
+ },
+ "header": "Kurti naują automatizavimą",
+ "how": "Kaip norite sukurti naują automatizavimą?",
+ "start_empty": "Pradėkite nuo tuščios automatizacijos",
+ "thingtalk": {
+ "create": "Sukurti",
+ "header": "Apibūdinkite automatizaciją, kurią norite sukurti",
+ "input_label": "Ką turėtų atlikti šis automatizavimas?",
+ "intro": "Ir mes pasistengsime jį jums sukurti. Pavyzdžiui: išeidami išjunkite šviesas."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Pridėti veiksmą",
+ "delete": "Ištrinti",
+ "delete_confirm": "Ar tikrai norite ištrinti?",
+ "duplicate": "Dublikuoti",
+ "header": "Veiksmai",
+ "learn_more": "Sužinokite daugiau apie veiksmus",
+ "name": "Veiksmas",
+ "type": {
+ "condition": {
+ "label": "Sąlyga"
+ },
+ "delay": {
+ "delay": "Uždelsta",
+ "label": "Uždelsimas"
+ },
+ "device_id": {
+ "action": "Veiksmas",
+ "extra_fields": {
+ "code": "Kodas",
+ "humidity": "Drėgmė",
+ "mode": "Režimas",
+ "value": "Vertė"
+ },
+ "label": "Įrenginys"
+ },
+ "event": {
+ "event": "Įvykiai",
+ "label": "Sukurti įvykį",
+ "service_data": "Serviso duomenis"
+ },
+ "scene": {
+ "label": "Suaktyvinti sceną"
+ },
+ "service": {
+ "label": "Skambučių paslauga"
+ },
+ "wait_template": {
+ "label": "Laukti",
+ "timeout": "Laukimo laikas (neprivaloma)",
+ "wait_template": "Laukimo šablonas"
+ }
+ },
+ "type_select": "Veiksmo tipas",
+ "unsupported_action": "Nėra UI palaikymo platformai: {action}"
+ },
+ "alias": "Pavadinimas",
+ "blueprint": {
+ "blueprint_to_use": "Naudotini techniniai planai",
+ "header": "Techninis planas",
+ "no_blueprints": "Neturite jokių techninių planų.",
+ "no_inputs": "Šis techninis planas neturi jokių įvesčių."
+ },
+ "conditions": {
+ "add": "Pridėti sąlygą",
+ "delete": "Ištrinti",
+ "delete_confirm": "Ar tikrai norite ištrinti?",
+ "duplicate": "Dubliuoti",
+ "header": "Sąlygos",
+ "introduction": "Sąlygos yra neprivalomos ir neleis automatikos scenarijams veikti, nebent bus įvykdytos visos sąlygos.",
+ "learn_more": "Sužinokite daugiau apie sąlygas",
+ "name": "Sąlyga",
+ "type": {
+ "and": {
+ "label": "Ir"
+ },
+ "device": {
+ "condition": "Sąlyga",
+ "extra_fields": {
+ "for": "Trukmė"
+ },
+ "label": "Įrenginys"
+ },
+ "numeric_state": {
+ "above": "Daugiau",
+ "below": "žemiau",
+ "label": "Skaitinė būsena",
+ "value_template": "Reikšmės šablonas (neprivaloma)"
+ },
+ "or": {
+ "label": "Arba"
+ },
+ "state": {
+ "label": "Būsena",
+ "state": "Būsena"
+ },
+ "sun": {
+ "after": "Po:",
+ "before": "Prieš:",
+ "label": "Saulė",
+ "sunrise": "Saulėtekis",
+ "sunset": "Saulėlydis"
+ },
+ "template": {
+ "label": "Šablonas",
+ "value_template": "Reikšmės šablonas"
+ },
+ "time": {
+ "after": "Po",
+ "before": "Prieš",
+ "label": "Laikas",
+ "weekdays": {
+ "fri": "Penktadienis",
+ "mon": "Pirmadienis",
+ "sat": "Šeštadienis",
+ "sun": "Sekmadienis",
+ "thu": "Ketvirtadienis",
+ "tue": "Antradienis",
+ "wed": "Trečiadienis"
+ }
+ },
+ "trigger": {
+ "id": "Trigerio ID",
+ "label": "Trigeris",
+ "no_triggers": "Nėra trigerių"
+ },
+ "zone": {
+ "entity": "Subjektas su vieta",
+ "label": "Vieta",
+ "zone": "Vieta"
+ }
+ },
+ "type_select": "Sąlyginis tipas"
+ },
+ "copy_to_clipboard": "Kopijuoti į iškarpinę",
+ "default_name": "Naujas automatikos scenarijus",
+ "description": {
+ "label": "Aprašymas",
+ "placeholder": "Neprivalomas aprašymas"
+ },
+ "edit_ui": "Redaguoti naudojant vartotojo sąsają",
+ "edit_yaml": "Redaguoti kaip YAML",
+ "introduction": "Naudokite automatikos scenarijus, kad atgaivintumėte savo namus.",
+ "load_error_not_editable": "Redagavimas leidžiamas tik automatizavimai, esantys automations.yaml",
+ "load_error_unknown": "Nepavyko užkrauti automatikos ({err_no}).",
+ "modes": {
+ "documentation": "automatikos dokumentacija",
+ "label": "Režimas"
+ },
+ "save": "Išsaugoti",
+ "triggers": {
+ "add": "Pridėti trigerį",
+ "delete": "Ištrinti",
+ "delete_confirm": "Ar tikrai norite tai ištrinti?",
+ "duplicate": "Pasikartojantys",
+ "header": "Trigeriai",
+ "introduction": "Trigeriai yra tai, kas pradeda automatizavimo taisyklės apdorojimą. Tai pačiai taisyklei galima nurodyti kelis aktyviklius. Kai tik įsijungs trigeris, Home Assistant patikrins sąlygas, jei tokių yra, ir iškviečia veiksmą.",
+ "learn_more": "Sužinokite daugiau apie trigerius",
+ "name": "Trigeris",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "for": "Trukmė"
+ },
+ "label": "Įrenginys"
+ },
+ "event": {
+ "context_user_pick": "Pridėti vartotoją",
+ "context_user_picked": "Vartotojo įvykis",
+ "context_users": "Apriboti įvykius, kuriuos sukėlė",
+ "event_data": "Įvykio duomenys",
+ "event_type": "Įvykio tipas",
+ "label": "Įvykis:"
+ },
+ "geo_location": {
+ "enter": "Įveskite",
+ "event": "Įvykis:",
+ "label": "Geolokacija",
+ "leave": "Palikite",
+ "source": "Šaltinis",
+ "zone": "Zona"
+ },
+ "homeassistant": {
+ "event": "Įvykis:",
+ "label": "Home Assistant",
+ "shutdown": "Išjungti",
+ "start": "Pradėti"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Apkrova (neprivaloma)",
+ "topic": "Tema"
+ },
+ "numeric_state": {
+ "above": "Aukščiau",
+ "below": "Žemiau",
+ "label": "Skaitinė būsena",
+ "value_template": "Vertės šablonas (pasirinktinai)"
+ },
+ "state": {
+ "for": "Kiek laiko",
+ "from": "Iš",
+ "label": "Būsena",
+ "to": "Kam"
+ },
+ "sun": {
+ "event": "Ivykis",
+ "label": "Saulė",
+ "offset": "Poslinkis (pasirinktinai)",
+ "sunrise": "Saulėtekis",
+ "sunset": "Saulėlydis"
+ },
+ "tag": {
+ "label": "Žyma"
+ },
+ "template": {
+ "label": "Šablonas",
+ "value_template": "Vertės šablonas"
+ },
+ "time": {
+ "at": "Tuo metu",
+ "label": "Laikas"
+ },
+ "time_pattern": {
+ "hours": "Valandos",
+ "label": "Laiko modelis",
+ "minutes": "Minutes",
+ "seconds": "Sekundės"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook ID"
+ },
+ "zone": {
+ "enter": "Įėjimas",
+ "entity": "Subjektas su vieta",
+ "event": "Įvykis",
+ "label": "Zona",
+ "leave": "Palieka",
+ "zone": "Vieta"
+ }
+ },
+ "type_select": "Trigerio tipas",
+ "unsupported_platform": "Nėra UI palaikymo platformai: {platform}"
+ },
+ "unsaved_confirm": "Turite neišsaugotų pakeitimų, ar tikrai norite išeiti?"
+ },
+ "picker": {
+ "add_automation": "Pridėti automatikos scenarijų",
+ "delete_automation": "Ištrinti automatizavimą",
+ "edit_automation": "Redaguoti automatiką",
+ "header": "Automatikos redaktorius",
+ "introduction": "Automatikos redaktorius leidžia kurti ir redaguoti automatikos scenarijus. Spustelėkite toliau pateiktą nuorodą, kad perskaitytumėte instrukcijas ir įsitikintumėte, jog tinkamai sukonfigūravote Home Assistant.",
+ "learn_more": "Sužinokite daugiau apie automatizavimą",
+ "no_automations": "Redaguojamas automatizavimas nerastas",
+ "only_editable": "Redagavimas leidžiamas tik automatizavimai, esantys automations.yaml",
+ "pick_automation": "Pasirinkite redaguojamą automatikos scenarijų",
+ "show_info_automation": "Rodyti informaciją apie automatizavimą"
+ },
+ "thingtalk": {
+ "link_devices": {
+ "header": "Puiku! Dabar turime susieti kai kuriuos įrenginius"
+ },
+ "task_selection": {
+ "error_empty": "Įveskite komandą arba bakstelėkite praleisti.",
+ "for_example": "Pavyzdžiui:"
+ }
+ }
+ },
+ "blueprint": {
+ "add": {
+ "error_no_url": "Įveskite techninio plano universalųjį adresą (URL).",
+ "file_name": "Kelias iki techninio plano",
+ "header": "Importuoti techninį planą",
+ "import_btn": "Peržiūrėti techninį planą",
+ "import_header": "\"{Name}\" techninis planas",
+ "importing": "Įkeliamas techninis planas...",
+ "raw_blueprint": "Techninio plano turinys",
+ "save_btn": "Importuoti techninį planą",
+ "saving": "Importuojamas techninis planas…",
+ "unsupported_blueprint": "Šis techninis planas nepalaikomas",
+ "url": "Techninio plano universalusis adresas (URL)"
+ },
+ "caption": "Techniniai planai",
+ "description": "Tvarkyti techninius planus",
+ "overview": {
+ "add_blueprint": "Importuoti techninius planus",
+ "confirm_delete_header": "Ištrinti šį techninį planą?",
+ "confirm_delete_text": "Ar tikrai norite ištrinti šį techninį planą?",
+ "delete_blueprint": "Ištrinti techninį planą",
+ "header": "Techninių planų rengyklė",
+ "headers": {
+ "domain": "Domenas",
+ "file_name": "Failo vardas",
+ "name": "Pavadinimas"
+ },
+ "introduction": "Techninio plano konfigūracija leidžia importuoti ir valdyti jūsų techninius planus.",
+ "learn_more": "Sužinokite daugiau apie techninių planų naudojimą",
+ "use_blueprint": "Sukurti automatizavimą"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Konfigūracijos dokumentacija",
+ "disable": "išjungti",
+ "enable": "įgalinti",
+ "manage_entities": "Tvarkyti subjektus",
+ "title": "Alexa"
+ },
+ "connected": "Prisijungęs",
+ "connecting": "Jungiamasi…",
+ "google": {
+ "config_documentation": "Konfigūracijos dokumentacija",
+ "devices_pin": "Įrenginio saugos Pin kodas",
+ "enter_pin_error": "Nepavyko išsaugoti PIN kodo:",
+ "not_configured_title": "Google Assistant nėra aktyvuotas",
+ "security_devices": "Apsaugoti įrenginiai",
+ "title": "Google Assistant"
+ },
+ "integrations": "Integracijos",
+ "manage_account": "Tvarkyti paskyrą",
+ "not_connected": "Neprisijungęs",
+ "remote": {
+ "certificate_info": "Sertifikato informacija",
+ "connected": "Prisijungęs",
+ "link_learn_how_it_works": "Sužinokite, kaip tai veikia",
+ "not_connected": "Neprisijungęs",
+ "reconnecting": "Bandoma prisijungti iš naujo",
+ "remote_enabled": {
+ "caption": "Automatiškai prisijungti"
+ },
+ "title": "Nuotolinis valdymas"
+ },
+ "sign_out": "Atsijungti",
+ "tts": {
+ "default_language": "Numatytoji kalba",
+ "dialog": {
+ "target_browser": "Naršyklė"
+ },
+ "female": "Moteris",
+ "male": "Vyras",
+ "title": "Tekstas į kalbą",
+ "try": "Bandyti"
+ },
+ "webhooks": {
+ "loading": "Įkeliama…",
+ "manage": "Tvarkyti",
+ "title": "Webhooks"
+ }
+ },
+ "alexa": {
+ "manage_domains": "Tvarkyti domenus",
+ "title": "Alexa"
+ },
+ "description_login": "Prisijungta kaip {email}",
+ "description_not_login": "Neprisijungęs",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Sertifikato galiojimo data:",
+ "certificate_information": "Sertifikato informacija",
+ "close": "Uždaryti",
+ "fingerprint": "Sertifikato piršto atspaudas:"
+ },
+ "dialog_cloudhook": {
+ "close": "Uždaryti",
+ "copied_to_clipboard": "Nukopijuota į iškarpinę",
+ "view_documentation": "Peržiūrėti dokumentaciją"
+ },
+ "forgot_password": {
+ "check_your_email": "Patikrinkite savo el. paštą, kuriame rasite instrukcijas, kaip iš naujo nustatyti slaptažodį.",
+ "email": "El. paštas",
+ "email_error_msg": "Neteisingas el. pašto adresas",
+ "instructions": "Įveskite savo el. pašto adresą ir mes atsiųsime jums nuorodą, kad galėtumėte iš naujo nustatyti savo slaptažodį.",
+ "send_reset_email": "Siųsti atstatymo el. laišką",
+ "subtitle": "Pamiršote savo slaptažodį",
+ "title": "Pamiršau slaptažodį"
+ },
+ "google": {
+ "manage_domains": "Tvarkyti domenus",
+ "sync_to_google": "Sinchronizuojami pakeitimai su Google.",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Prieš prisijungdami turite patvirtinti savo el. pašto adresą.",
+ "alert_password_change_required": "Prieš prisijungdami turite pakeisti slaptažodį.",
+ "dismiss": "Atmesti",
+ "email": "El. paštas",
+ "email_error_msg": "Neteisingas el. paštas",
+ "forgot_password": "Pamiršote slaptažodį?",
+ "learn_more_link": "Sužinokite daugiau apie Home Assistant Cloud",
+ "password": "Slaptažodis",
+ "password_error_msg": "Slaptažodis turi turėti bent 8 simbolius",
+ "sign_in": "Prisijungti",
+ "start_trial": "Pradėti nemokamą 1 mėnesio bandomąją versiją",
+ "trial_info": "Mokėjimo informacijos pateikti nereikia"
+ },
+ "register": {
+ "account_created": "Paskyra sukurta! Patikrinkite savo el. paštą, kuriame rasite instrukcijas, kaip aktyvuoti paskyrą.",
+ "create_account": "Sukurti paskyrą",
+ "email_address": "El. pašto adresas",
+ "email_error_msg": "Neteisingas el. pašto adresas",
+ "feature_amazon_alexa": "Integracija su Amazon Alexa",
+ "feature_google_home": "Integracija su Google Assistant",
+ "information4": "Registruodami paskyrą sutinkate su šiomis sąlygomis ir nuostatomis.",
+ "link_privacy_policy": "Privatumo politika",
+ "link_terms_conditions": "Terminai ir sąlygos",
+ "password": "Slaptažodis",
+ "password_error_msg": "Slaptažodis turi turėti bent 8 simbolius",
+ "resend_confirm_email": "Pakartotinai išsiųsti patvirtinimo el. laišką",
+ "start_trial": "Pradėti bandomąją versiją",
+ "title": "Registruoti paskyrą"
+ }
+ },
+ "core": {
+ "caption": "Bendra",
+ "description": "Vienetų sistema, vieta, laiko juosta ir kiti bendrieji parametrai",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Valiuta",
+ "elevation": "Aukštis",
+ "elevation_meters": "metrų",
+ "find_currency_value": "Surasti reikšmę",
+ "imperial_example": "Farenheitas, svarai",
+ "latitude": "Platuma",
+ "longitude": "Ilguma",
+ "metric_example": "Celsijus, kilogramai",
+ "save_button": "Išsaugoti",
+ "time_zone": "Laiko zona",
+ "unit_system": "Matavimo vienetų sistema",
+ "unit_system_imperial": "Imperinė",
+ "unit_system_metric": "Metrinė"
+ },
+ "header": "Bendroji konfigūracija",
+ "introduction": "Konfigūracijos keitimas gali būti varginantis procesas. Taip, mes žinome! Todėl šiame skyriuje bandysime šiek tiek palengvinti jūsų gyvenimą."
+ }
+ }
+ },
+ "customize": {
+ "caption": "Pritaikymai",
+ "description": "Redaguoti savo subjektus",
+ "pick_attribute": "Pasirinkite atributą, kurį norite pakeisti",
+ "picker": {
+ "documentation": "Tinkinimo dokumentacija",
+ "header": "Pritaikymas"
+ },
+ "warning": {
+ "include_link": "įtraukti customize.yaml"
+ }
+ },
+ "dashboard": {
+ "devices": {
+ "description": "Integracijos, įrenginiai, subjektai ir sritys"
+ }
+ },
+ "devices": {
+ "automation": {
+ "actions": {
+ "caption": "Kai kažkas suveikia…",
+ "no_actions": "Nėra veiksmų",
+ "unknown_action": "Nežinomas veiksmas"
+ },
+ "automations": "Automatizavimas",
+ "conditions": {
+ "caption": "Daryti ką nors tik tuo atveju, jei…",
+ "no_conditions": "Nėra sąlygų",
+ "unknown_condition": "Nežinoma sąlyga"
+ },
+ "create_disable": "Negalima sukurti automatizavimo su išjungtu įrenginiu",
+ "no_automations": "Nėra automatizavimų",
+ "no_device_automations": "Šiam įrenginiui nėra automatizavimo įrankių",
+ "triggers": {
+ "caption": "Daryti ką nors, kai...",
+ "no_triggers": "Nėra paleidiklių",
+ "unknown_trigger": "Nežinomas paleidiklis"
+ },
+ "unknown_automation": "Nežinomas automatizavimas"
+ },
+ "caption": "Įrenginiai",
+ "confirm_delete": "Ar tikrai norite ištrinti šį įrenginį?",
+ "data_table": {
+ "area": "Sritis",
+ "battery": "Baterija",
+ "device": "Įrenginys",
+ "integration": "Integracija",
+ "manufacturer": "Gamintojas",
+ "model": "Modelis",
+ "no_devices": "Nėra įrenginių"
+ },
+ "delete": "Ištrinti",
+ "description": "Tvarkyti prijungtus įrenginius",
+ "device_info": "Įrenginio informacija",
+ "device_not_found": "Įrenginys nerastas",
+ "disabled": "Išjungta",
+ "disabled_by": {
+ "config_entry": "Konfigūracijos įrašas",
+ "integration": "Integracija",
+ "user": "Vartotojas"
+ },
+ "enabled_cause": "Įrenginį išjungė {cause}.",
+ "enabled_description": "Išjungti įrenginiai nebus rodomi, o įrenginiui priklausantys objektai bus išjungti ir nepridedami į Home Assistant.",
+ "enabled_label": "Įgalinti įrenginį",
+ "entities": {
+ "add_entities_lovelace": "Pridėti į Lovelace",
+ "config": "Konfigūracija",
+ "control": "Valdikliai",
+ "diagnostic": "Diagnostika",
+ "entities": "Subjektai",
+ "sensor": "Jutikliai"
+ },
+ "no_devices": "Nėra įrenginių",
+ "picker": {
+ "filter": {
+ "filter": "Filtras",
+ "hidden_devices": "{number} paslėptas (-i) {number, plural,\n one {įrenginys}\n other {įrenginiai}\n}",
+ "show_all": "Rodyti viską",
+ "show_disabled": "Rodyti išjungtus įrenginius"
+ },
+ "search": "Ieškoti įrenginių"
+ },
+ "scene": {
+ "create_disable": "Negalima sukurti scenos su išjungtu įrenginiu",
+ "no_scenes": "Nėra scenų",
+ "scenes": "Scenos"
+ },
+ "scenes": "Scenos",
+ "script": {
+ "create_disable": "Negalima sukurti skripto su išjungtu įrenginiu",
+ "scripts": "Skriptai"
+ },
+ "scripts": "Skriptai",
+ "unknown_error": "Nežinoma klaida",
+ "unnamed_device": "Bevardis įrenginys",
+ "update_device_error": "Nepavyko atnaujinti įrenginio"
+ },
+ "energy": {
+ "device_consumption": {
+ "devices": "Įrenginiai",
+ "dialog": {
+ "selected_stat_intro": "Pasirinkite subjektą, kuris atspindi įrenginio energijos suvartojimą."
+ },
+ "learn_more": "Daugiau informacijos apie tai, kaip pradėti.",
+ "title": "Individualus įrenginiai"
+ },
+ "grid": {
+ "flow_dialog": {
+ "to": {
+ "cost_number": "Naudokite statinį tarifą",
+ "cost_number_input": "Kaina už kWh",
+ "cost_number_suffix": "{currency}/kWh"
+ }
+ },
+ "learn_more": "Daugiau informacijos apie tai, kaip pradėti."
+ },
+ "solar": {
+ "learn_more": "Daugiau informacijos apie tai, kaip pradėti.",
+ "stat_production": "Jūsų saulės energijos gamyba",
+ "title": "Saulės baterijos"
+ }
+ },
+ "entities": {
+ "caption": "Subjektų registras",
+ "description": "Visų žinomų subjektų apžvalga.",
+ "picker": {
+ "filter": {
+ "filter": "Filtras",
+ "hidden_entities": "{number} paslėtas (-i) {number, plural,\n one {subjektas}\n other {subjektai}\n}",
+ "show_all": "Rodyti viską",
+ "show_disabled": "Rodyti išjungtus subjektus",
+ "show_readonly": "Rodyti tik skaitomus subjektus",
+ "show_unavailable": "Rodyti nepasiekiamus subjektus"
+ },
+ "header": "Subjektų registras",
+ "headers": {
+ "area": "Sritis",
+ "entity_id": "Subjekto ID",
+ "integration": "Integracija",
+ "name": "Pavadinimas",
+ "status": "Būsena"
+ },
+ "introduction2": "Naudokite subjekto registrą, kad perrašytumėte pavadinimą, pakeiskite subjekto ID arba pašalintumėte įrašą iš namų asistento. Atminkite, kad pašalindami registro įrašą tai nepanaikins pačio subjekto. Norėdami tai padaryti, sekite toliau pateiktą nuorodą ir pašalinkite ją iš integracijos puslapio.",
+ "search": "Ieškoti subjektų",
+ "selected": "{number} pasirinkta",
+ "status": {
+ "disabled": "Išjungta",
+ "ok": "Gerai"
+ }
+ }
+ },
+ "header": "Konfigūruoti Home Assistant",
+ "helpers": {
+ "dialog": {
+ "create": "Sukurti"
+ },
+ "picker": {
+ "headers": {
+ "editable": "Redaguojamas",
+ "entity_id": "Subjekto ID",
+ "name": "Pavadinimas",
+ "type": "Tipas"
+ }
+ },
+ "types": {
+ "counter": "Skaitiklis",
+ "input_boolean": "Perjungėjas",
+ "input_datetime": "Data ir (arba) laikas",
+ "input_number": "Skaičius",
+ "input_select": "Išskleidžiamas meniu",
+ "input_text": "Tekstas",
+ "timer": "Laikmatis"
+ }
+ },
+ "info": {
+ "caption": "Informacija",
+ "copy_github": "GitHub'ui",
+ "copy_raw": "Neapdorotas tekstas",
+ "description": "Versija, sistemos būklė ir nuorodos į dokumentaciją",
+ "home_assistant_logo": "Home Assistant logotipas",
+ "icons_by": "Piktogramos",
+ "server": "serveris",
+ "setup_time": "Nustatyti laiką",
+ "source": "Šaltinis:",
+ "system_health": {
+ "manage": "Tvarkyti",
+ "more_info": "daugiau informacijos"
+ }
+ },
+ "integrations": {
+ "add_integration": "Pridėti integraciją",
+ "caption": "Integracijos",
+ "config_entry": {
+ "area": "{area}",
+ "check_the_logs": "Patikrinkite žurnalus",
+ "configure": "Konfigūruoti",
+ "delete": "Ištrinti",
+ "device_unavailable": "Įrenginis neprieinamas",
+ "devices": "{count} {count, plural,\n one {įrenginys}\n other {įrenginiai}\n}",
+ "documentation": "Dokumentacija",
+ "entities": "{count} {count, plural,\n one {subjektas}\n other {subjektai}\n}",
+ "entity_unavailable": "Subjektas nepasiekiamas",
+ "firmware": "Programinė įranga: {version}",
+ "hub": "Prijungtas per",
+ "manuf": "sukūrė {manufacturer}",
+ "no_area": "Nėra srities",
+ "not_loaded": "Nepakrauta",
+ "provided_by_custom_integration": "Teikiama naudojant pasirinktinę integraciją",
+ "rename": "Pervardyti",
+ "state": {
+ "failed_unload": "Įkrauti nepavyko",
+ "loaded": "Įkrauta",
+ "migration_error": "Perkėlimo klaida",
+ "not_loaded": "Nepakrauta",
+ "setup_error": "Nepavyko sukonfiguruoti",
+ "setup_retry": "Bandoma iš naujo nustatyti"
+ }
+ },
+ "config_flow": {
+ "aborted": "Nutraukta",
+ "close": "Uždaryti",
+ "external_step": {
+ "description": "Šiam veiksmui atlikti reikia apsilankyti išorinėje svetainėje.",
+ "open_site": "Atidaryti svetainę"
+ },
+ "finish": "Baigti",
+ "next": "Kitas",
+ "submit": "Pateikti"
+ },
+ "configure": "Konfigūruoti",
+ "configured": "Sukonfigūruota",
+ "details": "Integravimo informacija",
+ "disable": {
+ "show": "Rodyti",
+ "show_disabled": "Rodyti išjungtas integracijas"
+ },
+ "discovered": "Atrasta",
+ "home_assistant_website": "Home Assistant svetainė",
+ "ignore": {
+ "confirm_ignore_title": "Nepaisyti {name} atradimo?",
+ "ignore": "Nepaisyti",
+ "ignored": "Nepaisoma"
+ },
+ "integration": "integracija",
+ "search": "Įeškoti integracijų"
+ },
+ "introduction": "Šiame vaizde galima sukonfigūruoti savo komponentus ir Home Assistant. Dar ne viską galima sukonfigūruoti iš vartotojo sąsajos (UI ), tačiau mes prie to dirbame.",
+ "logs": {
+ "caption": "Žurnalai",
+ "clear": "Išvalyti",
+ "description": "Peržiūrėti Home Assistant žurnalus",
+ "level": {
+ "critical": "KRITINIS",
+ "debug": "TESTAVIMO",
+ "error": "KLAIDA",
+ "info": "INFO",
+ "warning": "ĮSPĖJIMAS"
+ },
+ "loading_log": "Įkeliamas klaidų žurnalas...",
+ "no_errors": "Apie klaidas nepranešta",
+ "refresh": "Atnaujinti"
+ },
+ "lovelace": {
+ "dashboards": {
+ "caption": "Prietaisų skydeliai",
+ "confirm_delete": "Ar jūs tikrai norite ištrinti šį prietaisų skydelį?",
+ "detail": {
+ "create": "Sukurti",
+ "delete": "Ištrinti",
+ "dismiss": "Uždaryti",
+ "edit_dashboard": "Redaguoti prietaisų skydelį",
+ "icon": "Piktograma",
+ "new_dashboard": "Pridėti naują prietaisų skydelį",
+ "require_admin": "Tik administratoriui",
+ "title": "Pavadinimas",
+ "update": "Atnaujinti",
+ "url": "URL",
+ "url_error_msg": "URL turi būti raidė - ir jame negali būti tarpų ar specialiųjų simbolių, išskyrus _ ir -"
+ },
+ "picker": {
+ "add_dashboard": "Pridėti prietaisų skydelį",
+ "headers": {
+ "filename": "Failo pavadinimas",
+ "title": "Pavadinimas"
+ },
+ "open": "Atidaryti"
+ }
+ },
+ "resources": {
+ "caption": "Ištekliai",
+ "detail": {
+ "delete": "Ištrinti",
+ "url": "URL"
+ },
+ "picker": {
+ "headers": {
+ "type": "Tipas",
+ "url": "URL"
+ }
+ },
+ "types": {
+ "css": "Stilių rinkinys",
+ "html": "HTML (nebenaudojama)",
+ "js": "JavaScript failas (nebenaudojama)",
+ "module": "JavaScript modulis"
+ }
+ }
+ },
+ "mqtt": {
+ "publish": "Paskelbti",
+ "title": "MQTT"
+ },
+ "ozw": {
+ "common": {
+ "query_stage": "Užklausos etapas",
+ "wakeup_instructions": "Pažadinimo instrukcijos"
+ },
+ "navigation": {
+ "network": "Tinklas",
+ "node": {
+ "config": "Konfigūracija",
+ "dashboard": "Valdymo skydas"
+ }
+ },
+ "network": {
+ "header": "Tinklo valdymas",
+ "introduction": "Tvarkykite viso tinklo funkcijas."
+ },
+ "network_status": {
+ "unknown": "Nežinoma"
+ },
+ "node_config": {
+ "header": "Mazgo konfigūracija",
+ "help_source": "Konfigūracijos parametrų aprašymai ir žinyno tekstas pateikiami OpenZWave projekto.",
+ "introduction": "Valdyti skirtingus Z-Wave mazgo konfigūracijos parametrus."
+ },
+ "node_metadata": {
+ "product_manual": "Gaminio vadovas"
+ },
+ "nodes_table": {
+ "id": "ID",
+ "manufacturer": "Gamintojas",
+ "model": "Modelis"
+ },
+ "refresh_node": {
+ "step": "Žingsnis"
+ },
+ "services": {
+ "cancel_command": "Atšaukti komandą"
+ }
+ },
+ "person": {
+ "add_person": "Pridėti asmenį",
+ "caption": "Asmenys",
+ "confirm_delete": "Ar jūs tikrai norite ištrinti šį asmenį?",
+ "confirm_delete2": "Visi šiam asmeniui priklausantys įrenginiai taps nepriskirti.",
+ "create_person": "Sukurti asmenį",
+ "detail": {
+ "admin": "Administratorius",
+ "allow_login": "Leisti asmeniui prisijungti",
+ "confirm_delete_user": "Ar tikrai norite panaikinti {name} vartotojo abonementą? Jūs vis dar galėsite sekti vartotoją, bet asmuo nebegalės prisijungti.",
+ "create": "Sukurti",
+ "delete": "Ištrinti",
+ "device_tracker_intro": "Pasirinkite įrenginius, priklausančius šiam asmeniui.",
+ "device_tracker_pick": "Pasirinkite įrenginį, kurį norite stebėti",
+ "device_tracker_picked": "Stebėti įrenginį",
+ "linked_user": "Susietas vartotojas",
+ "name": "Vardas",
+ "name_error_msg": "Vardas yra privalomas",
+ "new_person": "Naujas asmuo",
+ "update": "Atnaujinti"
+ },
+ "learn_more": "Sužinokite daugiau apie žmones",
+ "person_not_found": "Nepavyko rasti asmens, kurį bandėte redaguoti.",
+ "person_not_found_title": "Asmuo nerastas"
+ },
+ "scene": {
+ "activated": "Scena {name} aktyvuota.",
+ "caption": "Scenos",
+ "editor": {
+ "default_name": "Nauja scena",
+ "devices": {
+ "add": "Pridėti įrenginį",
+ "delete": "Ištrinti įrenginį",
+ "header": "Įrenginiai"
+ },
+ "entities": {
+ "delete": "Ištrinti subjektą"
+ },
+ "icon": "Piktograma",
+ "load_error_not_editable": "Redaguoti galima tik scenas, esančias scenes.yaml.",
+ "load_error_unknown": "Nepavyko užkrauti scenos ({err_no}).",
+ "name": "Pavadinimas",
+ "save": "Išsaugoti",
+ "unsaved_confirm": "Turite neišsaugotų pakeitimų, ar tikrai norite išeiti?"
+ },
+ "picker": {
+ "add_scene": "Pridėti sceną",
+ "delete_confirm": "Ar jūs tikrai norite ištrinti šią sceną?",
+ "delete_scene": "Ištrinti sceną",
+ "duplicate": "Pasikartojantys",
+ "edit_scene": "Redaguoti sceną",
+ "header": "Scenų redaktorius",
+ "learn_more": "Sužinokite daugiau apie scenas",
+ "no_scenes": "Neradome jokių redaguojamų scenų",
+ "only_editable": "Redaguoti galima tik scenas, esančias scenes.yaml.",
+ "pick_scene": "Pasirinkite sceną, kurią norite redaguoti",
+ "show_info_scene": "Rodyti informaciją apie sceną"
+ }
+ },
+ "script": {
+ "caption": "Scenarijai",
+ "description": "Atlikite veiksmų seką",
+ "editor": {
+ "alias": "Pavadinimas",
+ "default_name": "Naujas scenarijus",
+ "delete_confirm": "Ar tikrai norite ištrinti šį scenarijų?",
+ "delete_script": "Ištrinti skriptą",
+ "header": "Scenarijus: {name}",
+ "id": "Subjekto ID",
+ "modes": {
+ "label": "Režimas"
+ },
+ "save_script": "Įrašyti scenarijų",
+ "sequence": "Seka",
+ "sequence_sentence": "Šio scenarijaus veiksmų seka."
+ },
+ "picker": {
+ "add_script": "Pridėti scenarijų",
+ "duplicate": "Dubliuoti",
+ "duplicate_script": "Dubliuoti skriptą",
+ "edit_script": "Redaguoti skriptą",
+ "header": "Skripto redaktorius",
+ "run_script": "Vykdyti scenarijų"
+ }
+ },
+ "server_control": {
+ "description": "Paleisti iš naujo ir sustabdyti Home Assistant serverį",
+ "section": {
+ "reloading": {
+ "automation": "Automatika",
+ "homekit": "HomeKit",
+ "person": "Žmonės",
+ "reload": "{domain}",
+ "scene": "Perkraukite scenas",
+ "script": "Skriptai",
+ "telegram": "Telegram pranešimo paslaugos",
+ "zone": "Zonos"
+ },
+ "server_management": {
+ "confirm_restart": "Ar tikrai norite perkrauti Home Assistant?",
+ "confirm_stop": "Ar jūs tikrai norite sustabdyti Home Assistant?",
+ "heading": "Serverio valdymas",
+ "introduction": "Valdykite Home Assistant serverį... iš Home Assistant.",
+ "restart": "Perkrauti",
+ "stop": "Sustabdyti"
+ },
+ "validation": {
+ "heading": "Konfigūracijos patvirtinimas",
+ "introduction": "Patikrinkite konfigūraciją, jei neseniai atlikote kai kuriuos konfigūracijos pakeitimus ir įsitikinkite, kad visa konfigūracija teisinga.",
+ "invalid": "Konfigūracija neteisinga",
+ "valid": "Konfigūracija teisinga!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Pridėti žymą",
+ "caption": "Žymos",
+ "detail": {
+ "companion_apps": "papildomos programos",
+ "create": "Sukurti",
+ "create_and_write": "Sukurti ir įrašyti",
+ "delete": "Ištrinti",
+ "description": "Aprašymas",
+ "tag_id": "Žymos ID",
+ "update": "Atnaujinti",
+ "usage": "Nuskaitant žymą galima suaktyvinti automatizavimą, galite naudoti NFC žymes, QR kodus ar bet kokios kitos rūšies žymą. Naudokite mūsų {companion_link}, jei norite parašyti šią žymą į programuojamą NFC žymę arba sukurti QR kodą žemiau."
+ },
+ "edit": "Redaguoti",
+ "learn_more": "Sužinokite daugiau apie žymas",
+ "no_tags": "Nėra žymų"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Pridėti vartotoją",
+ "create": "Sukurti",
+ "password": "Slaptažodis",
+ "password_not_match": "Slaptažodžiai nesutampa"
+ },
+ "caption": "Vartotojai",
+ "description": "Tvarkykite Home Assistant vartotojų paskyras",
+ "editor": {
+ "activate_user": "Suaktyvinti vartotoją",
+ "active": "Aktyvus",
+ "active_tooltip": "Tikrina, ar vartotojas gali prisijungti",
+ "admin": "Administratorius",
+ "caption": "Peržiūrėti vartotoją",
+ "change_password": "Pakeisti slaptažodį",
+ "confirm_user_deletion": "Ar jūs tikrai norite ištrinti {vardą}?",
+ "deactivate_user": "Išjungti vartotoją",
+ "delete_user": "Ištrinti vartotoją",
+ "group": "Grupė",
+ "id": "ID",
+ "name": "Rodomas pavadinimas",
+ "new_password": "Naujas slaptažodis",
+ "owner": "Savininkas",
+ "password_changed": "Slaptažodis sėkmingai pakeistas",
+ "system_generated": "Sugeneruota sistemos",
+ "unnamed_user": "Bevardis vartotojas",
+ "update_user": "Atnaujinti",
+ "username": "Vartotojo vardas"
+ },
+ "picker": {
+ "add_user": "Pridėti vartotoją",
+ "headers": {
+ "group": "Grupė",
+ "is_active": "Aktyvus",
+ "is_owner": "Savininkas",
+ "username": "Vartotojo vardas"
+ }
+ }
+ },
+ "zha": {
+ "add_device": "Pridėti įrenginį",
+ "add_device_page": {
+ "search_again": "Ieškoti iš naujo",
+ "spinner": "Ieškoma ZHA Zigbee įrenginių…"
+ },
+ "common": {
+ "clusters": "Klusteriai",
+ "value": "Reikšmė"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Nuorodos",
+ "update_button": "Atnaujinti konfigūraciją"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Konfigūracija baigta",
+ "CONFIGURED_status_text": "Inicijuojama",
+ "INITIALIZED": "Inicijavimas baigtas",
+ "INITIALIZED_status_text": "Įrenginys paruoštas naudoti",
+ "INTERVIEW_COMPLETE_status_text": "Konfigūruojama",
+ "PAIRED": "Rastas įrenginys"
+ },
+ "group_binding": {
+ "bind_button_label": "Susieti grupę",
+ "header": "Grupės susiejimas",
+ "introduction": "Susieti ir atsieti grupes."
+ },
+ "groups": {
+ "add_group": "Pridėti grupę",
+ "add_members": "Pridėti narių",
+ "caption": "Grupės",
+ "create": "Sukurti grupę",
+ "group_details": "Čia pateikiama visa informacija apie pasirinktą Zigbee grupę.",
+ "group_id": "Grupės ID",
+ "group_info": "Grupės informacija",
+ "group_name_placeholder": "Grupės pavadinimas",
+ "group_not_found": "Grupė nerasta!",
+ "groups": "Grupės",
+ "members": "Nariai",
+ "remove_members": "Pašalinti narius"
+ },
+ "network": {
+ "caption": "Tinklas"
+ },
+ "visualization": {
+ "caption": "Vizualizacija",
+ "header": "Tinklo vizualizacija"
+ }
+ },
+ "zone": {
+ "add_zone": "Pridėti zoną",
+ "caption": "Zonos",
+ "confirm_delete": "Ar jūs tikrai norite ištrinti šią zoną?",
+ "create_zone": "Sukurti zoną",
+ "detail": {
+ "create": "Sukurti",
+ "delete": "Ištrinti",
+ "icon": "Piktograma",
+ "icon_error_msg": "Piktograma turi būti tokio formato: „prefix: iconname“, pvz .: „mdi: home“",
+ "latitude": "Platuma",
+ "longitude": "Ilguma",
+ "new_zone": "Nauja zona",
+ "passive": "Pasyvus",
+ "radius": "Spindulys",
+ "required_error_msg": "Šis laukas yra privalomas",
+ "update": "Atnaujinti"
+ }
+ },
+ "zwave": {
+ "common": {
+ "unknown": "nežinomas",
+ "value": "Reikšmė",
+ "wakeup_interval": "Žadinimo intervalas"
+ },
+ "description": "Tvarkyti savo Z-Wave tinklą",
+ "node_config": {
+ "false": "Netiesa",
+ "seconds": "sekundės",
+ "set_config_parameter": "Nustatykite parametrą „Config“",
+ "set_wakeup": "Nustatyti žadinimo intervalą",
+ "true": "Tiesa"
+ },
+ "node_management": {
+ "add_to_group": "Pridėti prie grupės",
+ "group": "Grupė",
+ "protection": "Apsauga",
+ "set_protection": "Nustatyti apsaugą"
+ },
+ "services": {
+ "heal_network": "Išgydyti tinklą",
+ "save_config": "Išsaugoti konfigūraciją",
+ "soft_reset": "Švelnus nustatymas iš naujo",
+ "start_network": "Paleisti tinklą",
+ "stop_network": "Sustabdyti tinklą",
+ "test_network": "Tikrinti tinklą"
+ }
+ },
+ "zwave_js": {
+ "common": {
+ "reconfigure_server": "Iš naujo sukonfigūruoti serverį",
+ "source": "Šaltinis"
+ },
+ "dashboard": {
+ "driver_version": "Tvarkyklės versija",
+ "dump_not_ready_confirm": "Atsisiųsti",
+ "server_version": "Serverio versija"
+ },
+ "device_info": {
+ "device_config": "Konfigūruoti įrenginį"
+ },
+ "logs": {
+ "log_level": "Žurnalo lygis",
+ "log_level_changed": "Žurnalo lygis pakeistas į: {level}"
+ },
+ "navigation": {
+ "logs": "Žurnalai"
+ },
+ "network_status": {
+ "connected": "Prisijungęs",
+ "connecting": "Jungiasi",
+ "unknown": "Nežinoma"
+ },
+ "node_config": {
+ "attribution": "Įrenginio konfigūracijos parametrus ir aprašymus pateikia {device_database}",
+ "battery_device_notice": "Įrenginiai su baterijomis turi būti pažadinti, kad būtų galima atnaujinti jų konfigūraciją. Instrukcijas, kaip pažadinti įrenginį, rasite įrenginio vadove.",
+ "error_device_not_found": "Įrenginys nerastas",
+ "parameter": "Parametras",
+ "set_param_accepted": "Parametras buvo atnaujintas.",
+ "set_param_error": "Įvyko klaida.",
+ "set_param_queued": "Parametro pakeitimas buvo įrašytas į eilę ir bus atnaujintas, kai įrenginys pabus."
+ },
+ "node_status": {
+ "alive": "Gyvas",
+ "asleep": "Miega",
+ "awake": "Budi",
+ "dead": "Miręs",
+ "unknown": "Nežinoma"
+ },
+ "remove_failed_node": {
+ "remove_device": "Pašalinti įrenginį"
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Jis turės prieigą prie visų namų asistento duomenų.",
+ "hide_message": "Norėdami paslėpti šį pranešimą, patikrinkite „panel_custom“ dokumentacija",
+ "question_trust": "Ar pasitikite išoriniu skydeliu {name} adresu {link}?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "documentation": "Įvykių dokumentacija",
+ "title": "Įvykiai"
+ },
+ "services": {
+ "column_description": "Aprašymas",
+ "column_example": "Pavyzdys",
+ "no_template_ui_support": "Vartotojo sąsaja nepalaiko šablonų, bet jūs vis tiek galite naudoti YAML redaktorių.",
+ "title": "Paslaugos"
+ },
+ "states": {
+ "attributes": "Atributai",
+ "entity": "Subjektas",
+ "last_changed": "Pakeista",
+ "last_updated": "Atnaujinta",
+ "more_info": "Daugiau informacijos",
+ "state": "Būsena",
+ "title": "Būsenos"
+ },
+ "templates": {
+ "domain": "Domenas",
+ "result_type": "Rezultato tipas",
+ "time": "Šis šablonas atnaujinamas kiekvienos minutės pradžioje.",
+ "title": "Šablonas"
+ }
+ }
+ },
+ "energy": {
+ "charts": {
+ "solar": "Saulės"
+ },
+ "setup": {
+ "back": "Atgal",
+ "next": "Kitas"
+ }
+ },
+ "lovelace": {
+ "cards": {
+ "confirm_delete": "Ar tikrai norite ištrinti šią kortelę?",
+ "empty_state": {
+ "go_to_integrations_page": "Į integracijų puslapį",
+ "title": "Sveiki sugrįžę namo"
+ },
+ "picture-elements": {
+ "call_service": "Skambučių paslauga {name}",
+ "hold": "Laikykite:",
+ "more_info": "Rodyti daugiau informacijos: {name}",
+ "navigate_to": "Eikite į {location}",
+ "tap": "Palieskite:",
+ "toggle": "Perjungti {name}"
+ },
+ "shopping-list": {
+ "add_item": "Pridėti elementą",
+ "checked_items": "Patikrinti elementai",
+ "clear_items": "Išvalyti patikrintus elementus"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Skambučių paslauga",
+ "default_action": "Numatytasis veiksmas",
+ "more-info": "Daugiau informacijos",
+ "navigate": "Naršyti",
+ "none": "Nėra veiksmų",
+ "toggle": "Perjungti",
+ "url": "Internetinis adresas"
+ },
+ "navigation_path": "Navigacijos kelias",
+ "url_path": "URL kelias"
+ },
+ "card": {
+ "alarm-panel": {
+ "name": "Signalizacijos skydelis"
+ },
+ "button": {
+ "default_action_help": "Numatytasis veiksmas priklauso nuo objekto galimybių, jis bus perjungtas arba bus rodoma daugiau informacijos.",
+ "name": "Mygtukas"
+ },
+ "calendar": {
+ "description": "Kalendoriaus kortelėje rodomas kalendorius, įskaitant dienos, savaitės ir sąrašo rodinius",
+ "inital_view": "Pradinis vaizdas",
+ "name": "Kalendorius",
+ "views": {
+ "dayGridDay": "Diena",
+ "dayGridMonth": "Mėnuo",
+ "listWeek": "Sąrašas"
+ }
+ },
+ "conditional": {
+ "card": "Kortelė",
+ "name": "Sąlyginis"
+ },
+ "config": {
+ "optional": "Neprivaloma",
+ "required": "Privaloma"
+ },
+ "entities": {
+ "entity_row": {
+ "button": "Mygtukas"
+ },
+ "entity_row_editor": "Objekto eilučių rengyklė",
+ "name": "Subjektai",
+ "secondary_info_values": {
+ "brightness": "Ryškumas",
+ "entity-id": "Subjekto ID",
+ "last-changed": "Paskutinį kartą pakeista",
+ "last-triggered": "Paskutinį kartą suaktyvinta",
+ "last-updated": "Paskutinį kartą atnaujinta",
+ "none": "Nėra antrinės informacijos",
+ "position": "Padėtis",
+ "tilt-position": "Pakreipimo padėtis"
+ },
+ "show_header_toggle": "Rodyti antraštės perjungiklį?"
+ },
+ "entity-filter": {
+ "name": "Objekto filtras"
+ },
+ "gauge": {
+ "name": "Matuoklis",
+ "severity": {
+ "green": "Žalia",
+ "red": "Raudona",
+ "yellow": "Geltona"
+ }
+ },
+ "generic": {
+ "days_to_show": "Kiek dienų rodyti",
+ "entities": "Subjektai",
+ "entity": "Subjektas",
+ "icon": "Piktograma",
+ "icon_height": "Piktogramos aukštis",
+ "image": "Vaizdo kelias",
+ "no_theme": "Nėra temos",
+ "refresh_interval": "Atnaujinimo intervalas",
+ "show_icon": "Rodyti piktogramą?",
+ "show_name": "Rodyti pavadinimą?",
+ "theme": "Tema",
+ "title": "Pavadinimas",
+ "unit": "Vienetas"
+ },
+ "glance": {
+ "columns": "Stulpeliai",
+ "name": "Glance"
+ },
+ "grid": {
+ "description": "Tinklelio kortelė leidžia rodyti kelias korteles tinklelyje.",
+ "name": "Tinklelis"
+ },
+ "history-graph": {
+ "name": "Istorijos diagrama"
+ },
+ "horizontal-stack": {
+ "name": "Horizontaliai išdėstyta grupė"
+ },
+ "iframe": {
+ "name": "Tinklalapis"
+ },
+ "light": {
+ "name": "Šviesus"
+ },
+ "logbook": {
+ "description": "Veiksmų žurnalo kortelėje rodomas įvykių sąrašas.",
+ "name": "Veiksmų žurnalas"
+ },
+ "map": {
+ "name": "Žemėlapis"
+ },
+ "markdown": {
+ "name": "Markdown"
+ },
+ "media-control": {
+ "name": "Medijos valdiklis"
+ },
+ "picture-elements": {
+ "name": "Paveikslėlio elementai"
+ },
+ "picture-entity": {
+ "name": "Paveikslėlio subjektas"
+ },
+ "picture-glance": {
+ "name": "Paveikslėlio Glance",
+ "state_entity": "Būsenos objektas"
+ },
+ "picture": {
+ "name": "Paveikslėlis"
+ },
+ "plant-status": {
+ "name": "Augalo būklė"
+ },
+ "sensor": {
+ "name": "Jutiklis"
+ },
+ "shopping-list": {
+ "name": "Pirkinių sąrašas"
+ },
+ "thermostat": {
+ "name": "Termostatas"
+ },
+ "vertical-stack": {
+ "name": "Vertikalai išdėstyta grupė"
+ },
+ "weather-forecast": {
+ "name": "Orų prognozė"
+ }
+ },
+ "common": {
+ "add": "Pridėti",
+ "clear": "Išvalyti",
+ "edit": "Redaguoti",
+ "none": "Nė vienas"
+ },
+ "edit_badges": {
+ "panel_mode": "Šie ženkleliai nebus rodomi, nes šis rodinys yra „Skydelio režime“."
+ },
+ "edit_card": {
+ "add": "Pridėti kortelę",
+ "clear": "Išvalyti",
+ "confirm_cancel": "Ar jūs tikrai norite atšaukti?",
+ "delete": "Ištrinti",
+ "edit": "Redaguoti",
+ "header": "Kortelės konfigūracija",
+ "move": "Perkelti",
+ "move_after": "Perkelti kortelę po",
+ "move_before": "Perkelti kortelę prieš",
+ "pick_card": "Pasirinkite kortelę, kurią norite pridėti.",
+ "show_code_editor": "Rodyti kodo redaktorių",
+ "toggle_editor": "Perjungti redaktorių",
+ "unsaved_changes": "Turite neišsaugotų pakeitimų"
+ },
+ "edit_lovelace": {
+ "edit_title": "Redaguoti pavadinimą"
+ },
+ "edit_view": {
+ "add": "Pridėti rodinį",
+ "delete": "Ištrinti rodinį",
+ "edit": "Redaguoti rodinį",
+ "header": "Peržiūrėti konfigūraciją",
+ "header_name": "Peržiūrėti {name} konfigūracija",
+ "move_left": "Perkelti rodinį į kairę",
+ "move_right": "Perkelti rodinį į dešinę",
+ "type": "Peržiūros tipas",
+ "types": {
+ "panel": "Skydelis (1 kortelė)",
+ "sidebar": "Šoninė juosta"
+ }
+ },
+ "header": "Redaguoti UI",
+ "header-footer": {
+ "choose_header_footer": "Pasirinkite {type}",
+ "footer": "Poraštė",
+ "header": "Antraštė",
+ "types": {
+ "buttons": {
+ "name": "Mygtukai"
+ },
+ "graph": {
+ "name": "Diagrama"
+ },
+ "picture": {
+ "name": "Paveikslėlis"
+ }
+ }
+ },
+ "menu": {
+ "raw_editor": "Konfigūracijos redaktorius"
+ },
+ "migrate": {
+ "header": "Konfigūracija nesuderinama",
+ "migrate": "Perkelti konfigūraciją"
+ },
+ "raw_editor": {
+ "confirm_unsaved_changes": "Turite neišsaugotų pakeitimų, ar tikrai norite išeiti?",
+ "confirm_unsaved_comments": "Jūsų konfigūracijoje yra komentarų (-ų), jie nebus išsaugoti. Ar norite tęsti?",
+ "error_invalid_config": "Jūsų konfigūracija netinkama: {error}",
+ "error_parse_yaml": "Neįmanoma išanalizuoti YAML: {error}",
+ "error_save_yaml": "Neįmanoma įrašyti YAML: {error}",
+ "header": "Redaguoti konfigūraciją",
+ "save": "Išsaugoti",
+ "saved": "Išsaugota",
+ "unsaved_changes": "Neišsaugoti pakeitimai"
+ },
+ "save_config": {
+ "empty_config": "Pradėti nuo tuščio prietaisų skydelio",
+ "header": "Valdykite savo „Lovelace“ vartotojo sąsają",
+ "para_sure": "Ar tikrai norite kontroliuoti savo vartotojo sąsają?",
+ "save": "Kontroliuoti"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Poraštės rengyklė",
+ "header": "Antraštės rengyklė",
+ "row": "Objekto eilučių rengyklė"
+ }
+ },
+ "suggest_card": {
+ "add": "Pridėti į Lovelace UI"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Šiame rodinyje yra daugiau nei viena kortelė, tačiau skydelio rodinyje gali būti rodoma tik 1 kortelė."
+ }
+ }
+ },
+ "menu": {
+ "close": "Uždaryti",
+ "configure_ui": "Konfigūruoti UI",
+ "exit_edit_mode": "Išeiti iš vartotojo sąsajos redagavimo režimo",
+ "help": "Pagalba",
+ "start_conversation": "Pradėti pokalbį"
+ },
+ "reload_lovelace": "Perkrauti vartotojo sąsają",
+ "unused_entities": {
+ "domain": "Domenas",
+ "entity": "Subjektas",
+ "entity_id": "Subjekto ID",
+ "last_changed": "Paskutinį kartą pakeistas",
+ "search": "Ieškoti subjektų"
+ },
+ "views": {
+ "confirm_delete": "Ištrinti vaizdą?"
+ },
+ "warning": {
+ "entity_non_numeric": "Subjektas nėra skaitinis: {entity}",
+ "entity_not_found": "Subjektas nepasiekiamas: {entity}"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Ištrinti",
+ "delete_prompt": "Ištrinti šį pranešimą?",
+ "empty": "Neturite jokių pranešimų",
+ "playback_title": "Pranešimų atkūrimas"
+ },
+ "my": {
+ "error": "Įvyko nežinoma klaida"
+ },
+ "page-authorize": {
+ "abort_intro": "Prisijungimas nutrauktas",
+ "form": {
+ "error": "Klaida: {error}",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Sesija baigėsi, prisijunkite iš naujo."
+ },
+ "error": {
+ "invalid_auth": "Netinkamas vartotojo vardas arba slaptažodis",
+ "invalid_code": "Netinkamas autentifikacijos kodas"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Slaptažodis",
+ "username": "Vartotojo vardas"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Dvieju lygiu autentifikacija"
+ }
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Sesija baigėsi, prisijunkite iš naujo."
+ },
+ "error": {
+ "invalid_auth": "Neteisingas vartotojo vardas arba slaptažodis",
+ "invalid_code": "Netinkamas autentifikavimo kodas"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Slaptažodis",
+ "username": "Vartotojo vardas"
+ }
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Sesija baigėsi, prisijunkite iš naujo"
+ },
+ "error": {
+ "invalid_auth": "Neteisingas API slaptažodis"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "API slaptažodis"
+ }
+ }
+ }
+ },
+ "trusted_networks": {
+ "step": {
+ "init": {
+ "data": {
+ "user": "Vartotojas"
+ }
+ }
+ }
+ }
+ },
+ "start_over": "Pradėti iš naujo",
+ "unknown_error": "Kažkas nutiko ne taip",
+ "working": "Prašome palaukti"
+ },
+ "initializing": "Inicijuojama",
+ "logging_in_with": "Prisijungiama naudojant **{authProviderName}**.",
+ "pick_auth_provider": "Arba prisijunkite naudodami"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "pateikė {name}",
+ "learn_more": "Sužinokite daugiau apie Home Assistant",
+ "next_demo": "Kita demonstracija"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Veikla",
+ "air": "Oras",
+ "entertainment": "Pramogos",
+ "hdmi_input": "HDMI įvestis",
+ "hdmi_switcher": "HDMI perjungiklis",
+ "information": "Informacija",
+ "lights": "Šviesos",
+ "total_tv_time": "Bendras TV laikas",
+ "turn_tv_off": "Išjunkite televizorių",
+ "volume": "Garsumas"
+ },
+ "names": {
+ "family_room": "Šeimos kambarys",
+ "hallway": "Prieškambaris",
+ "kitchen": "Virtuvė",
+ "left": "Kairė",
+ "master_bedroom": "Pagrindinis miegamasis",
+ "mirror": "Veidrodis",
+ "right": "Dešinė",
+ "upstairs": "Viršuje"
+ },
+ "unit": {
+ "minutes_abbr": "min"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Kitas"
+ },
+ "core-config": {
+ "button_detect": "Aptikti",
+ "finish": "Kitas",
+ "intro": "Sveiki {name}, atvykę į Home Assistant. Kaip norėtumėte pavadinti savo namus?",
+ "location_name_default": "Namai"
+ },
+ "finish": "Baigti",
+ "integration": {
+ "finish": "Baigti",
+ "more_integrations": "Daugiau"
+ },
+ "next": "Kitas",
+ "restore": {
+ "addons": "Priedai",
+ "description": "Taip pat galite atkurti iš ankstesnės momentinės kopijos.",
+ "folders": "Aplankai",
+ "hide_log": "Slėpti visą žurnalą",
+ "in_progress": "Vykdomas atkūrimas",
+ "password": "Slaptažodis",
+ "select_type": "Pasirinkite, ką atkurti",
+ "show_log": "Rodyti visą žurnalą",
+ "type": "Tipas"
+ },
+ "user": {
+ "create_account": "Sukurti paskyrą",
+ "data": {
+ "name": "Vardas",
+ "password": "Slaptažodis",
+ "password_confirm": "Patvirtinti slaptažodį",
+ "username": "Vartotojo vardas"
+ },
+ "error": {
+ "password_not_match": "Slaptažodžiai nesutampa",
+ "required_fields": "Užpildykite visus privalomus laukus"
+ },
+ "intro": "Pradėkime nuo vartotojo paskyros sukūrimo.",
+ "required_field": "Būtina"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Atrakina išplėstines funkcijas.",
+ "title": "Išplėstinis režimas"
+ },
+ "change_password": {
+ "confirm_new_password": "Patvirtinti naują slaptažodį",
+ "current_password": "Dabartinis slaptažodis",
+ "error_new_is_old": "Naujas slaptažodis turi skirtis nuo dabartinio slaptažodžio",
+ "error_new_mismatch": "Nesutampa naujojo slaptažodžio laukai",
+ "error_required": "Privaloma",
+ "header": "Keisti slaptažodį",
+ "new_password": "Naujas slaptažodis",
+ "submit": "Pateikti",
+ "success": "Slaptažodis pakeistas sėkmingai"
+ },
+ "current_user": "Šiuo metu esate prisijungęs kaip {fullName}.",
+ "dashboard": {
+ "header": "Prietaisų skydelis"
+ },
+ "enable_shortcuts": {
+ "description": "Įjunkite arba išjunkite sparčiuosius klaviatūros klavišus, skirtus atlikti įvairius veiksmus vartotojo sąsajoje.",
+ "header": "Spartieji klaviatūros klavišai"
+ },
+ "force_narrow": {
+ "header": "Visada slėpti šoninę juostą"
+ },
+ "is_owner": "Jūs esate savininkas.",
+ "language": {
+ "dropdown_label": "Kalba",
+ "header": "Kalba",
+ "link_promo": "Padėkite versti"
+ },
+ "logout": "Atsijungti",
+ "logout_text": "Ar tikrai norite atsijungti?",
+ "logout_title": "Atsijungti?",
+ "long_lived_access_tokens": {
+ "created": "Sukurta {date}"
+ },
+ "mfa": {
+ "confirm_disable": "Ar jūs tikrai norite išjungti {name}?",
+ "disable": "Išjungti",
+ "enable": "Įgalinti"
+ },
+ "mfa_setup": {
+ "close": "Uždaryti",
+ "step_done": "{step} sąranka atlikta",
+ "submit": "Pateikti",
+ "title_aborted": "Nutraukta",
+ "title_success": "Sėkmė!"
+ },
+ "number_format": {
+ "description": "Pasirinkite, kaip formatuojami skaičiai.",
+ "dropdown_label": "Skaičių formatas",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Automatinis (naudoti kalbos nustatymą)",
+ "none": "Joks",
+ "space_comma": "1 234 567,89",
+ "system": "Naudoti sistemos lokalę"
+ },
+ "header": "Skaičių formatas"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Įrenginio pavadinimas"
+ },
+ "description": "Siųsti pranešimus į šį įrenginį.",
+ "header": "\"Push\" pranešimai",
+ "link_promo": "Sužinokite daugiau",
+ "push_notifications": "\"Push\" pranešimai"
+ },
+ "refresh_tokens": {
+ "created_at": "Sukurta {date}",
+ "last_used": "Paskutinį kartą naudota {date} iš {location}"
+ },
+ "themes": {
+ "accent_color": "Akcento spalva",
+ "dark_mode": {
+ "auto": "Automatinė",
+ "dark": "Tamsi",
+ "light": "Šviesi"
+ },
+ "dropdown_label": "Tema",
+ "error_no_theme": "Temų nėra.",
+ "header": "Tema",
+ "link_promo": "Sužinokite apie temas",
+ "primary_color": "Pagrindinė spalva",
+ "reset": "Atstatyti"
+ },
+ "time_format": {
+ "description": "Pasirinkite, kaip formatuojami laikai.",
+ "dropdown_label": "Laiko formatas",
+ "formats": {
+ "12": "12 valandų (AM/PM)",
+ "24": "24 valandų",
+ "language": "Automatinis (naudoti kalbos nustatymą)",
+ "system": "Naudoti sistemos lokalę"
+ },
+ "header": "Laiko formatas"
+ }
+ }
+ },
+ "sidebar": {
+ "external_app_configuration": "Programos konfigūracija"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/lv.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/lv.json
new file mode 100644
index 00000000..6b3fd7e4
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/lv.json
@@ -0,0 +1,2042 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Konfigurēt Ierakstu",
+ "device": "Ierīce",
+ "integration": "Integrācija",
+ "user": "Lietotājs"
+ }
+ },
+ "groups": {
+ "owner": "Īpašnieks",
+ "system-admin": "Administratori",
+ "system-read-only": "Lietotāji ar tiesībām tikai lasīt",
+ "system-users": "Lietotāji"
+ },
+ "panel": {
+ "calendar": "Kalendārs",
+ "config": "Konfigurācija",
+ "developer_tools": "Izstrādātāju rīki",
+ "history": "Vēsture",
+ "logbook": "Žurnāls",
+ "mailbox": "Pastkaste",
+ "map": "Karte",
+ "media_browser": "Multivides Pārlūks",
+ "profile": "Profils",
+ "shopping_list": "Iepirkumu saraksts",
+ "states": "Pārskats"
+ },
+ "state": {
+ "default": {
+ "unavailable": "Nepieejams",
+ "unknown": "Nezināms"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Auto",
+ "off": "Izslēgts",
+ "on": "Ieslēgts"
+ },
+ "hvac_action": {
+ "cooling": "Dzesēšana",
+ "drying": "Žāvēšana",
+ "fan": "Ventilators",
+ "heating": "Sildīšana",
+ "idle": "Dīkstāve",
+ "off": "Izslēgts"
+ },
+ "preset_mode": {
+ "activity": "Aktivitāte",
+ "away": "Prombūtne",
+ "boost": "Palielināt",
+ "comfort": "Komforts",
+ "eco": "Eko",
+ "home": "Mājās",
+ "none": "Nav",
+ "sleep": "Miega"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Pieslēgta",
+ "armed_away": "Pieslēgta",
+ "armed_custom_bypass": "Pieslēgta",
+ "armed_home": "Pieslēgta",
+ "armed_night": "Pieslēgta",
+ "arming": "Pieslēdz",
+ "disarmed": "Atslēgta",
+ "disarming": "Atslēdzas",
+ "pending": "Gaida",
+ "triggered": "Trig"
+ },
+ "default": {
+ "entity_not_found": "Vienība nav atrasta",
+ "error": "Kļūda",
+ "unavailable": "Nepie",
+ "unknown": "Nez"
+ },
+ "device_tracker": {
+ "home": "Mājās",
+ "not_home": "Prombūtne"
+ },
+ "person": {
+ "home": "Mājās",
+ "not_home": "Prombūtne"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Vai vēlaties saglabāt šo pieteikšanos?",
+ "confirm": "Jā",
+ "decline": "Nē"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Prombūtnes režīms",
+ "arm_custom_bypass": "Pielāgots apvedceļš",
+ "arm_home": "Mājās režīms",
+ "arm_night": "Pieslēgta uz nakti",
+ "clear_code": "Notīrīt",
+ "code": "Kods",
+ "disarm": "Atslēgt"
+ },
+ "automation": {
+ "last_triggered": "Pēdējais izsaukums",
+ "trigger": "Izpildīt"
+ },
+ "camera": {
+ "not_available": "Attēls nav pieejams"
+ },
+ "climate": {
+ "aux_heat": "Ārējais sildītājs",
+ "away_mode": "Prombūtnes režīms",
+ "currently": "Pašlaik",
+ "fan_mode": "Ventilatora režīms",
+ "high": "augsts",
+ "low": "zems",
+ "on_off": "Ieslēgts / Izslēgts",
+ "operation": "Darbība",
+ "preset_mode": "Iestatījums",
+ "swing_mode": "Šūpošanas režīms",
+ "target_humidity": "Mērķa mitrums",
+ "target_temperature": "Mērķa temperatūra"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "samazināt",
+ "increment": "palielināt",
+ "reset": "atiestatīt"
+ }
+ },
+ "cover": {
+ "position": "Pozīcija",
+ "tilt_position": "Slīpuma pozīcija"
+ },
+ "fan": {
+ "direction": "Virziens",
+ "forward": "Uz priekšu",
+ "oscillate": "Svārstīties",
+ "reverse": "Uz atpakaļu",
+ "speed": "Ātrums"
+ },
+ "light": {
+ "brightness": "Spilgtums",
+ "color_temperature": "Krāsu temperatūra",
+ "effect": "Efekts",
+ "white_value": "Baltā vērtība"
+ },
+ "lock": {
+ "code": "Kods",
+ "lock": "Aizslēgt",
+ "unlock": "Atslēgt"
+ },
+ "media_player": {
+ "media_play": "Atskaņot",
+ "media_play_pause": "Atskaņot/pauzēt",
+ "sound_mode": "Skaņas režīms",
+ "source": "Avots",
+ "text_to_speak": "Teksts, ko izrunāt",
+ "turn_off": "Izslēgt",
+ "turn_on": "Ieslēgt"
+ },
+ "persistent_notification": {
+ "dismiss": "Aizvērt"
+ },
+ "scene": {
+ "activate": "Aktivizēt"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "atcelt",
+ "finish": "pabeigt",
+ "pause": "pauze",
+ "start": "sākt"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Atsākt uzkopšanu",
+ "return_to_base": "Atgriezties pie doka",
+ "start_cleaning": "Sākt uzkopšanu",
+ "turn_off": "Izslēgt",
+ "turn_on": "Ieslēgt"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Prombūtnes režīms",
+ "currently": "Pašlaik",
+ "on_off": "Ieslēgts / Izslēgts",
+ "operation": "Darbība",
+ "target_temperature": "Mērķa temperatūra"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Gaisa spiediens",
+ "humidity": "Gaisa mitrums",
+ "temperature": "Temperatūra",
+ "visibility": "Redzamība",
+ "wind_speed": "Vēja ātrums"
+ },
+ "cardinal_direction": {
+ "e": "A",
+ "ene": "AZA",
+ "ese": "ADA",
+ "n": "Z",
+ "ne": "ZA",
+ "nne": "ZA",
+ "nnw": "ZZR",
+ "nw": "ZR",
+ "s": "D",
+ "se": "DA",
+ "sse": "DDA",
+ "ssw": "DDR",
+ "sw": "DR",
+ "w": "R",
+ "wnw": "RZR",
+ "wsw": "RDR"
+ },
+ "forecast": "Prognoze"
+ }
+ },
+ "common": {
+ "back": "Atpakaļ",
+ "cancel": "Atcelt",
+ "clear": "Notīrīt",
+ "copied_clipboard": "Kopēts starpliktuvē",
+ "disable": "Atspējot",
+ "loading": "Ielāde",
+ "no": "Nē",
+ "save": "Saglabāt",
+ "successfully_saved": "Veiksmīgi saglabāts",
+ "yes": "Jā"
+ },
+ "components": {
+ "area-picker": {
+ "add_dialog": {
+ "add": "Pievienot",
+ "failed_create_area": "Neizdevās izveidot apgabalu.",
+ "name": "Nosaukums",
+ "text": "Ievadiet jaunā apgabala nosaukumu.",
+ "title": "Pievienot jaunu apgabalu"
+ },
+ "add_new": "Pievienot jaunu apgabalu…",
+ "area": "Apgabals",
+ "clear": "Notīrīt",
+ "show_areas": "Rādīt Apgabalus"
+ },
+ "calendar": {
+ "my_calendars": "Mani kalendāri",
+ "today": "Šodien"
+ },
+ "data-table": {
+ "clear": "Notīrīt"
+ },
+ "date-range-picker": {
+ "end_date": "Beigu datums",
+ "select": "Pielietot",
+ "start_date": "Sākuma datums"
+ },
+ "device-picker": {
+ "clear": "Notīrīt",
+ "device": "Ierīce",
+ "no_area": "Nav apgabala"
+ },
+ "entity": {
+ "entity-picker": {
+ "clear": "Notīrīt",
+ "entity": "Vienība"
+ }
+ },
+ "history_charts": {
+ "loading_history": "Vēsturiskie ieraksti par stāvokli tiek ielādēti.",
+ "no_history_found": "Vēsturiskie ieraksti par stāvokli netika atrasti."
+ },
+ "media-browser": {
+ "choose_player": "Izvēlēties Atskaņotāju",
+ "class": {
+ "album": "Albums",
+ "artist": "Izpildītājs",
+ "channel": "Kanāls",
+ "composer": "Komponists",
+ "directory": "Bibliotēka",
+ "episode": "Sērija",
+ "game": "Spēle",
+ "genre": "Žanrs",
+ "image": "Attēls",
+ "movie": "Filma",
+ "music": "Mūzika",
+ "playlist": "Atskaņošanas saraksts",
+ "podcast": "Raidieraksts",
+ "season": "Sezona",
+ "track": "Celiņš",
+ "tv_show": "TV Raidījums",
+ "url": "URL",
+ "video": "Video"
+ },
+ "documentation": "dokumentācija",
+ "media_player": "Multivides Atskaņotājs",
+ "pick": "Izvēlēties",
+ "pick-media": "Izvēlaties Multvidi",
+ "play": "Atskaņot",
+ "play-media": "Atskaņot Multividi"
+ },
+ "related-items": {
+ "area": "Apgabals",
+ "automation": "Izmantojas automatizācijās",
+ "device": "Ierīce",
+ "entity": "Saistītās vienības",
+ "group": "Iekļauta grupās",
+ "integration": "Integrācija",
+ "no_related_found": "Nekādas saistības nav atrastas.",
+ "scene": "Izmantojas ainās",
+ "script": "Izmantojas skriptos"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one {diena}\n other {dienas}\n}",
+ "hour": "{count} {count, plural,\n one {stunda}\n other {stundas}\n}",
+ "minute": "{count} {count, plural,\n one {minūte}\n other {minūtes}\n}",
+ "second": "{count} {count, plural,\n one {sekunde}\n other {sekundes}\n}",
+ "week": "{count} {count, plural,\n one {nedēļa}\n other {nedēļas}\n}"
+ },
+ "never": "Nekad"
+ },
+ "target-picker": {
+ "add_area_id": "Izvēlieties apgabalu"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Ja atspējots, jaunatklātās {integration} integrācijas vienības netiks automātiski pievienotas Home Assistant.",
+ "enable_new_entities_label": "Iespējot tikko pievienotās vienības.",
+ "title": "Sistēmas opcijas {integration} integrācijai",
+ "update": "Atjaunināt"
+ },
+ "entity_registry": {
+ "dismiss": "Aizvērt",
+ "editor": {
+ "advanced": "Papildus Iestatījumi",
+ "change_device_area": "Mainīt ierīces apgabalu",
+ "confirm_delete": "Vai tiešām vēlaties dzēst šo vienību?",
+ "delete": "Dzēst",
+ "enabled_cause": "Atspējots dēļ {cause}.",
+ "enabled_description": "Atspējotās vienības netiks pievienotas Home Assistant.",
+ "enabled_label": "Iespējot vienību",
+ "entity_id": "Vienības ID",
+ "follow_device_area": "Sekot ierīces apgabalam",
+ "icon": "Pielāgota ikona",
+ "icon_error": "Ikonām jābūt formātā “prefikss:nosaukums”, piemēram, “mdi:home”",
+ "name": "Nosaukuma pārlabošana",
+ "note": "Ievērībai: Pašlaik tas var nedarboties ar visām integrācijām.",
+ "unavailable": "Šī vienība pašlaik nav pieejama.",
+ "update": "Atjaunināt"
+ },
+ "no_unique_id": "Šai vienībai (''{entity_id}'') nav unikāla ID, tāpēc tās iestatījumus nevar pārvaldīt, izmantojot lietotāja saskarni. Plašāku informāciju skatiet {faq_link}.",
+ "related": "Saistības",
+ "settings": "Iestatījumi"
+ },
+ "generic": {
+ "cancel": "Atcelt",
+ "ok": "Labi"
+ },
+ "helper_settings": {
+ "generic": {
+ "icon": "Ikona",
+ "name": "Nosaukums"
+ },
+ "input_datetime": {
+ "date": "Datums",
+ "datetime": "Datums un laiks",
+ "mode": "Ko vēlaties ievadīt",
+ "time": "Laiks"
+ },
+ "input_number": {
+ "box": "Ievades lauks",
+ "max": "Maksimālā vērtība",
+ "min": "Minimālā vērtība",
+ "mode": "Rādīšanas režīms",
+ "step": "Soļa lielums",
+ "unit_of_measurement": "Mērvienība"
+ },
+ "input_select": {
+ "add": "Pievienot",
+ "add_option": "Pievienot iespēju",
+ "no_options": "Vēl nav nevienas opcijas",
+ "options": "Iespējas"
+ },
+ "input_text": {
+ "max": "Maksimālais garums",
+ "min": "Minimālais garums",
+ "mode": "Rādīšanas režīms",
+ "password": "Parole",
+ "pattern": "Regex izteiksme klienta puses validācijai",
+ "text": "Teksts"
+ },
+ "platform_not_loaded": "{platform} integrācija nav ielādēta. Lūdzu, pievienojiet 'default_config:' vai ''{platform}:'' savā konfigurācijā.",
+ "required_error_msg": "Šis lauks ir obligāts",
+ "yaml_not_editable": "Šīs vienības iestatījumus nevar rediģēt, izmantojot lietotāja saskarni. Tikai lietotāja saskarnē iestatītie vienumi ir konfigurējami no lietotāja saskarnes."
+ },
+ "image_cropper": {
+ "crop": "Apgriezt"
+ },
+ "more_info_control": {
+ "dismiss": "Aizvērt dialogu",
+ "person": {
+ "create_zone": "Izveidot zonu no pašreizējās atrašanās vietas"
+ },
+ "script": {
+ "last_action": "Pēdējā darbība"
+ },
+ "settings": "Vienības iestatījumi",
+ "sun": {
+ "elevation": "Augstums",
+ "rising": "Aust",
+ "setting": "Riet"
+ },
+ "updater": {
+ "title": "Atjaunināt Instrukcijas"
+ },
+ "vacuum": {
+ "commands": "Putekļsūcēja komandas:",
+ "fan_speed": "Ventilatora ātrums",
+ "status": "Statuss"
+ }
+ },
+ "options_flow": {
+ "form": {
+ "header": "Opcijas"
+ },
+ "success": {
+ "description": "Opcijas ir veiksmīgi saglabātas."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Apgabali"
+ }
+ }
+ },
+ "voice_command": {
+ "how_can_i_help": "Kā es varu palīdzēt?",
+ "label": "Uzrakstiet jautājumu un nospiediet 'Enter'",
+ "label_voice": "Ievadiet tekstu un nospiediet 'Enter' vai pieskarieties mikrofonam, lai runātu"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Pievienot ierīces, izmantojot so ierīci",
+ "reconfigure": "Pārkonfigurēt ierīci",
+ "remove": "Noņemt ierīci"
+ },
+ "manuf": "{manufacturer}",
+ "no_area": "Nav apgabala",
+ "services": {
+ "reconfigure": "Pārkonfigurējiet ZHA ierīci (labot ierīci). Izmantojiet to, ja rodas problēmas ar ierīci. Ja attiecīgā ierīce ir ar akumulatoru darbināma ierīce, lūdzu, pārliecinieties, ka tā ir nomodā un pieņem komandas, kad izmantojat šo servisu.",
+ "remove": "Noņemt ierīci no Zigbee tīkla.",
+ "updateDeviceName": "Ierīču reģistrā iestatiet šai ierīcei pielāgotu nosaukumu."
+ },
+ "zha_device_card": {
+ "device_name_placeholder": "Mainīt ierīces nosaukumu"
+ }
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\none {diena}\nother {dienas}\n}",
+ "hour": "{count} {count, plural,\n one {stunda}\n other {stundas}\n}",
+ "minute": "{count} {count, plural,\n one {minūte}\n other {minūtes}\n}",
+ "second": "{count} {count, plural,\n one {sekunde}\n other {sekundes}\n}",
+ "week": "{count} {count, plural,\n one {nedēļa}\n other {nedēļas}\n}"
+ },
+ "errors": {
+ "config": {
+ "editor_not_available": "Vizuālais redaktors nav pieejams veidam \"{type}\".",
+ "editor_not_supported": "Vizuālais Redaktors netiek atbalstīts šajā konfigurācijā",
+ "error_detected": "Atrastas konfigurācijas kļūdas"
+ }
+ },
+ "login-form": {
+ "log_in": "Pieslēgties",
+ "password": "Parole",
+ "remember": "Atcerēties"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Noklikšķiniet uz pogas, lai konfigurētu {entity}",
+ "close": "Aizvērt",
+ "empty": "Nav paziņojumu",
+ "title": "Paziņojumi"
+ },
+ "notification_toast": {
+ "connection_lost": "Savienojums zaudēts. Atkārtota savienošanās …",
+ "service_call_failed": "Neizdevās izsaukt servisu {service}."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Trūkst konfigurācijas opciju? Iespējot uzlaboto režīmu",
+ "link_profile_page": "Jūsu profila lapa"
+ },
+ "areas": {
+ "caption": "Apgabali",
+ "data_table": {
+ "area": "Apgabals",
+ "devices": "Ierīces"
+ },
+ "delete": {
+ "confirmation_text": "Visas ierīces šajā apgabalā kļūs par nepiesaistītām.",
+ "confirmation_title": "Vai tiešām vēlaties dzēst šo apgabalu?"
+ },
+ "description": "Pārvaldiet mājas apgabalus",
+ "editor": {
+ "area_id": "Apgabala ID",
+ "create": "Izveidot",
+ "default_name": "Jauns Apgabals",
+ "delete": "Dzēst",
+ "name": "Nosaukums",
+ "unknown_error": "Nezināma kļūda",
+ "update": "Atjaunināt"
+ },
+ "picker": {
+ "create_area": "Izveidot Apgabalu",
+ "header": "Apgabali",
+ "integrations_page": "Integrāciju lapa",
+ "introduction": "Apgabali tiek izmantoti, lai organizētu ierīces atrašanās vietu. Šī informācija tiks izmantota daudzviet Home Assistant, lai palīdzētu organizēt lietotāja saskarni, atļaujas un integrācijas ar citām sistēmām.",
+ "introduction2": "Lai piesaistītu ierīces noteiktam apgabalam, izmantojiet zemāk esošo saiti, lai pārietu uz integrāciju lapu un tad noklikšķiniet uz konfigurētas integrācijas, lai nonāktu pie ierīču kartīšu saraksta."
+ }
+ },
+ "automation": {
+ "caption": "Automatizācijas",
+ "description": "Pārvaldiet automatizācijas",
+ "editor": {
+ "actions": {
+ "add": "Pievienot darbību",
+ "delete": "Dzēst",
+ "delete_confirm": "Vai tiešām vēlaties dzēst?",
+ "duplicate": "Dublicēt",
+ "header": "Darbības",
+ "introduction": "Darbības nosaka, ko Home Assistant darīs, kad tiks aktivizēta automatizācija.",
+ "learn_more": "Uzziniet vairāk par darbībām",
+ "name": "Darbība",
+ "type": {
+ "condition": {
+ "label": "Nosacījums"
+ },
+ "delay": {
+ "delay": "Atlikt",
+ "label": "Atlikt"
+ },
+ "device_id": {
+ "extra_fields": {
+ "code": "Kods"
+ },
+ "label": "Ierīce"
+ },
+ "event": {
+ "event": "Notikums",
+ "label": "Palaist notikumu:",
+ "service_data": "Servisa dati"
+ },
+ "scene": {
+ "label": "Aktivizēt ainu"
+ },
+ "service": {
+ "label": "Izsaukt servisu"
+ },
+ "wait_template": {
+ "label": "Pagaidīt",
+ "timeout": "Noilgums (nav obligāts)",
+ "wait_template": "Gaidīšanas veidne"
+ }
+ },
+ "type_select": "Darbības tips",
+ "unsupported_action": "Neatbalstīta darbība: {action}"
+ },
+ "alias": "Nosaukums",
+ "conditions": {
+ "add": "Pievienot nosacījumu",
+ "delete": "Dzēst",
+ "delete_confirm": "Vai tiešām vēlaties dzēst?",
+ "duplicate": "Duplicēt",
+ "header": "Nosacījumi",
+ "introduction": "Nosacījumi nav obligāti, tos var izmantot, lai novērstu automatizācijas tālāku izpildi, ja vien nav izpildījušies visi priekšnosacījumi.",
+ "learn_more": "Uzziniet vairāk par nosacījumiem",
+ "name": "Nosacījums",
+ "type": {
+ "and": {
+ "label": "Un"
+ },
+ "device": {
+ "extra_fields": {
+ "above": "Virs",
+ "below": "Zem",
+ "for": "Ilgums"
+ },
+ "label": "Ierīce"
+ },
+ "numeric_state": {
+ "above": "Virs",
+ "below": "Zem",
+ "label": "Skaitliskais stāvoklis",
+ "value_template": "Vērtības veidne (neobligāti)"
+ },
+ "or": {
+ "label": "Vai"
+ },
+ "state": {
+ "label": "Stāvoklis",
+ "state": "Stāvoklis"
+ },
+ "sun": {
+ "after": "Pēc:",
+ "after_offset": "Nobīde pēc (nav obligāta)",
+ "before": "Pirms:",
+ "before_offset": "Nobīde pirms (nav obligāta)",
+ "label": "Saule",
+ "sunrise": "Saullēkts",
+ "sunset": "Saulriets"
+ },
+ "template": {
+ "label": "Veidne",
+ "value_template": "Vērtības veidne"
+ },
+ "time": {
+ "after": "Pēc",
+ "before": "Pirms",
+ "label": "Laiks",
+ "weekdays": {
+ "mon": "Pirmdiena"
+ }
+ },
+ "zone": {
+ "entity": "Vienība ar atrašanos vietu",
+ "label": "Zona",
+ "zone": "Zona"
+ }
+ },
+ "type_select": "Nosacījuma tips",
+ "unsupported_condition": "Neatbalstīts nosacījums: {condition}"
+ },
+ "default_name": "Jauna automatizācija",
+ "description": {
+ "label": "Apraksts",
+ "placeholder": "Neobligāts apraksts"
+ },
+ "edit_ui": "Rediģēt, izmantojot UI",
+ "edit_yaml": "Rediģēt kā YAML",
+ "enable_disable": "Iespējot/atspējot automatizāciju",
+ "introduction": "Lietojiet automatizācijas, lai iedzīvinātu Jūsu mājās",
+ "load_error_not_editable": "Tikai \"automations.yaml\" failā esošās automatizācijas ir rediģējamas.",
+ "load_error_unknown": "Kļūda ielādējot automatizāciju ({err_no})",
+ "save": "Saglabāt",
+ "triggers": {
+ "add": "Pievienot trigeri",
+ "delete": "Dzēst",
+ "delete_confirm": "Vai tiešām vēlaties dzēst?",
+ "duplicate": "Dublicēt",
+ "header": "Trigeri",
+ "introduction": "Trigeri ir tas, kas sāk automatizācijas noteikuma apstrādi. Vienam noteikumam ir iespējams norādīt vairākus trigerus. Kad trigeris sāk, Home Assistant apstiprina nosacījumus, ja tādi ir, un izsauc darbību.",
+ "learn_more": "Uzziniet vairāk par trigeriem",
+ "name": "Izsaukt",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Virs",
+ "below": "Zem",
+ "for": "Ilgums (nav obligāts)",
+ "zone": "Zona"
+ },
+ "label": "Ierīce"
+ },
+ "event": {
+ "event_data": "Notikuma dati",
+ "event_type": "Notikuma tips",
+ "label": "Notikums"
+ },
+ "geo_location": {
+ "enter": "Ieiet",
+ "event": "Notikums:",
+ "label": "Ģeogrāfiskā atrašanās vieta",
+ "leave": "Iziet",
+ "source": "Avots",
+ "zone": "Zona"
+ },
+ "homeassistant": {
+ "event": "Notikums:",
+ "label": "Home Assistant",
+ "shutdown": "Izslēgt",
+ "start": "Sākt"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "topic": "Temats"
+ },
+ "numeric_state": {
+ "above": "Virs",
+ "below": "Zem",
+ "label": "Skaitliskais stāvoklis",
+ "value_template": "Vērtības veidne (nav obligāta)"
+ },
+ "state": {
+ "attribute": "Atribūts (nav obligāts)",
+ "for": "Uz laiku (nav obligāts)",
+ "from": "No (nav obligāts)",
+ "label": "Stāvoklis",
+ "to": "Uz (nav obligāts)"
+ },
+ "sun": {
+ "event": "Notikums:",
+ "label": "Saule",
+ "offset": "Nobīde (nav obligāta)",
+ "sunrise": "Saullēkts",
+ "sunset": "Saulriets"
+ },
+ "template": {
+ "label": "Veidne",
+ "value_template": "Vērtības veidne"
+ },
+ "time": {
+ "at": "plkst.",
+ "label": "Laiks"
+ },
+ "time_pattern": {
+ "hours": "Stundas",
+ "label": "Laika Modelis",
+ "minutes": "Minūtes",
+ "seconds": "Sekundes"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook ID"
+ },
+ "zone": {
+ "enter": "Ieiet",
+ "entity": "Vienība ar atrašanās vietas datiem",
+ "event": "Notikums:",
+ "label": "Zona",
+ "leave": "Iziet",
+ "zone": "Zona"
+ }
+ },
+ "type_select": "Trigera veids",
+ "unsupported_platform": "Neatbalstīta platforma: {platform}"
+ },
+ "unsaved_confirm": "Jums ir nesaglabātas izmaiņas. Vai tiešām vēlaties pamest?"
+ },
+ "picker": {
+ "add_automation": "Pievienot automatizāciju",
+ "delete_automation": "Dzēst automatizāciju",
+ "delete_confirm": "Vai tiešām vēlaties dzēst šo automatizāciju?",
+ "edit_automation": "Rediģēt automatizāciju",
+ "header": "Automatizāciju redaktors",
+ "headers": {
+ "name": "Nosaukums"
+ },
+ "introduction": "Automatizācijas redaktors ļauj jums izveidot un rediģēt automatizācijas. Lūdzu, sekojiet saitei zemāk, lai pārliecinātos, ka esat pareizi konfigurējis Home Assistant.",
+ "learn_more": "Uzziniet vairāk par automatizācijām",
+ "no_automations": "Mēs nevarējām atrast rediģējamas automatizācijas",
+ "only_editable": "Rediģēt var tikai tās automatizācijas, kas definētas automations.yaml.",
+ "pick_automation": "Izvēlieties automatizāciju rediģēšanai",
+ "show_info_automation": "Rādīt informāciju par automatizāciju"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "title": "Alexa"
+ },
+ "tts": {
+ "dialog": {
+ "play": "Atskaņot"
+ }
+ },
+ "webhooks": {
+ "loading": "Ielādē…"
+ }
+ },
+ "alexa": {
+ "title": "Alexa"
+ },
+ "description_features": "Kontrolējiet prom no mājām, integrējieties ar Alexa un Google Assistant.",
+ "description_login": "Pieteikts kā {email}",
+ "description_not_login": "Neesat pieteicies",
+ "dialog_certificate": {
+ "close": "Aizvērt"
+ },
+ "forgot_password": {
+ "email_error_msg": "Nederīgs e-pasts"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Pirms pieteikšanās jums jāapstiprina savs e-pasts.",
+ "alert_password_change_required": "Pirms pieteikšanās jums ir jānomaina sava parole.",
+ "email_error_msg": "Nederīgs e-pasts"
+ },
+ "register": {
+ "create_account": "Izveidot kontu",
+ "email_address": "E-pasta adrese",
+ "email_error_msg": "Nederīgs e-pasts",
+ "link_privacy_policy": "Privātuma politika",
+ "password": "Parole"
+ }
+ },
+ "core": {
+ "caption": "Vispārīgi",
+ "description": "Mainiet vispārējo Home Assistant konfigurāciju",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Valūta",
+ "edit_requires_storage": "Redaktors ir atspējots, jo konfigurācija ir definēta configuration.yaml.",
+ "elevation": "Augstums",
+ "elevation_meters": "metri",
+ "external_url": "Ārējais URL",
+ "find_currency_value": "Valūtas kodu saraksts",
+ "imperial_example": "Fārenheita, mārciņas",
+ "internal_url": "Iekšējais URL",
+ "latitude": "Platums",
+ "location_name": "Jūsu Home Assistant instalācijas nosaukums",
+ "longitude": "Garums",
+ "metric_example": "Celsija, kilogrami",
+ "save_button": "Saglabāt",
+ "time_zone": "Laika josla",
+ "unit_system": "Mērvienību sistēma",
+ "unit_system_imperial": "Imperiālā",
+ "unit_system_metric": "Metriskā"
+ },
+ "header": "Vispārējā konfigurācija",
+ "introduction": "Izmaiņas konfigurācijā var būt nogurdinošs process. Mēs zinām. Šai sadaļai vajadzētu padarīt dzīvi mazliet vieglāku."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Šie atribūti jau ir iestatīti customize.yaml konfigurācijā",
+ "attributes_not_set": "Šie atribūti netika iestatīti. Iestatiet tos, ja vēlaties.",
+ "attributes_outside": "Šie atribūti tiek pielāgoti ārpus customize.yaml",
+ "attributes_override": "Varat pārlabot pēc savas patikas.",
+ "attributes_set": "Šie vienības atribūti ir iestatīti programmatiski.",
+ "caption": "Pielāgojumi",
+ "description": "Pielāgojiet jūsu iekārtas",
+ "pick_attribute": "Izvēlieties atribūtu, kuru pārlabot",
+ "picker": {
+ "header": "Pielāgojumi",
+ "introduction": "Uzlabojiet atribūtus katrai vienībai. Pievienotie jeb mainīties pielāgojumi stāsies spēkā nekavējoties. Noņemtie pielāgojumi stāsies spēkā, kad vienība tiks atjaunināta."
+ },
+ "warning": {
+ "not_applied": "Veiktās izmaiņas ir saglabātas, bet netiks piemērotas pēc konfigurācijas pārlādēšanas, ja tajā nav include."
+ }
+ },
+ "devices": {
+ "automation": {
+ "automations": "Automatizācijas",
+ "conditions": {
+ "caption": "Darīt kaut ko tikai tad, ja …"
+ },
+ "create": "Izveidot automatizāciju ar ierīci",
+ "no_automations": "Nav automatizāciju",
+ "no_device_automations": "Šai ierīcei nav pieejamas automatizācijas",
+ "triggers": {
+ "caption": "Darīt kaut ko tad, kad ..."
+ }
+ },
+ "cant_edit": "Rediģējamas ir tikai tās vienības, kas izveidotas, izmantojot lietotāja saskarni.",
+ "caption": "Ierīces",
+ "confirm_delete": "Vai tiešām vēlaties izdzēst šo ierīci?",
+ "confirm_rename_entity_ids": "Vai vēlaties pārdēvēt arī vienības ID no Jūsu vinībām?",
+ "data_table": {
+ "area": "Apgabals",
+ "battery": "Akumulators",
+ "device": "Ierīce",
+ "integration": "Integrācija",
+ "manufacturer": "Ražotājs",
+ "model": "Modelis",
+ "no_devices": "Nav ierīču"
+ },
+ "delete": "Dzēst",
+ "description": "Pievienoto ierīču pārvaldība",
+ "device_info": "Informācija par ierīci",
+ "device_not_found": "Ierīce nav atrasta.",
+ "disabled": "Atspējots",
+ "disabled_by": {
+ "user": "Lietotājs"
+ },
+ "enabled_label": "Iespējot Ierīci",
+ "entities": {
+ "add_entities_lovelace": "Pievienot Lovelace",
+ "disabled_entities": "+{count} {count, plural,\n one {atspējota ierīce}\n other {atspējotas ierīces}\n}",
+ "entities": "Vienības",
+ "hide_disabled": "Slēpt atspējotās",
+ "none": "Šai ierīcei nav vienību"
+ },
+ "name": "Nosaukums",
+ "no_devices": "Nav ierīču",
+ "picker": {
+ "filter": {
+ "filter": "Filtrs",
+ "show_all": "Rādīt visu",
+ "show_disabled": "Rādīt atspējotās ierīces"
+ },
+ "search": "Meklēt ierīces"
+ },
+ "scene": {
+ "create": "Izveidot ainu ar ierīci",
+ "no_scenes": "Nav ainas",
+ "scenes": "Ainas"
+ },
+ "scenes": "Ainas",
+ "script": {
+ "create": "Izveidot skriptu ar ierīci",
+ "no_scripts": "Nav skriptu",
+ "scripts": "Skripti"
+ },
+ "scripts": "Skripti",
+ "unknown_error": "Nezināma kļūda",
+ "unnamed_device": "Nenosaukta ierīce",
+ "update": "Atjaunināt"
+ },
+ "entities": {
+ "caption": "Vienības",
+ "description": "Pārvaldiet zināmās vienības",
+ "picker": {
+ "disable_selected": {
+ "button": "Atspējot atlasītās",
+ "confirm_text": "Atspējotās vienības netiks pievienotas Home Assistant.",
+ "confirm_title": "Vai vēlaties atspējot{number} {number, plural,\n one {vienību}\n other {vienības}\n}?"
+ },
+ "enable_selected": {
+ "button": "Iespējot atlasītās",
+ "confirm_text": "Tas atkārtoti padarīs tās pieejamas Home Assistant, ja tās šobrīd ir atspējotas.",
+ "confirm_title": "Vai vēlaties iespējot {number} {number, plural,\n one {vienību}\n other {vienības}\n}?"
+ },
+ "filter": {
+ "filter": "Filtrēt",
+ "hidden_entities": "{number} {number, plural,\n one {paslēpta vienība}\n other {paslēptas vienības}\n}",
+ "show_all": "Rādīt visu",
+ "show_disabled": "Rādīt atspējotās vienības",
+ "show_readonly": "Rādīt tikai lasāmās vienības",
+ "show_unavailable": "Rādīt nepieejamās vienības"
+ },
+ "header": "Vienības",
+ "headers": {
+ "area": "Apgabals",
+ "entity_id": "Vienības ID",
+ "integration": "Integrācija",
+ "name": "Nosaukums",
+ "status": "Statuss"
+ },
+ "introduction": "Home Assistant uztur visu vienību reģistru, kuras jebkad parādījušās un kuras var unikāli identificēt. Katrai no šīm vienībām piešķirts vienības ID, kas tiks rezervēts tikai šai vienībai.",
+ "introduction2": "Izmantojiet vienību reģistru, lai pārlabotu nosaukumu, mainītu vienības ID vai noņemtu ierakstu no Home Assistant.",
+ "remove_selected": {
+ "button": "Noņemt atlasītās",
+ "confirm_partly_title": "Tikai {number} {number, plural,\n one {atlasītā vienība}\n other {atlasītās vienības}\n} var tikt dzēstas.",
+ "confirm_text": "Jums vajadzētu noņemt tos no Lovelace konfigurācijām un automatizācijām, ja tie satur šīs vienības.",
+ "confirm_title": "Vai vēlaties noņemt {number} {number, plural,\n one {vienību}\n other {vienības}\n}?"
+ },
+ "search": "Meklēt vienības",
+ "selected": "{number} atlasītas",
+ "status": {
+ "disabled": "Atspējota",
+ "ok": "Labi",
+ "readonly": "Tikai lasāma",
+ "restored": "Atjaunotas",
+ "unavailable": "Nepieejama"
+ }
+ }
+ },
+ "header": "Home Assistant konfigurēšana",
+ "helpers": {
+ "caption": "Palīgi",
+ "description": "Pārvaldiet elementus, kas palīdz veidot automatizācijas",
+ "dialog": {
+ "add_helper": "Pievienot palīgu",
+ "add_platform": "Pievienot {platform}",
+ "create": "Izveidot"
+ },
+ "picker": {
+ "add_helper": "Pievienot palīgu",
+ "headers": {
+ "editable": "Rediģējams",
+ "entity_id": "Vienības ID",
+ "name": "Nosaukums",
+ "type": "Veids"
+ }
+ },
+ "types": {
+ "input_boolean": "Pārslēdzējs",
+ "input_datetime": "Datums un/vai laiks",
+ "input_number": "Skaitlis",
+ "input_select": "Izkrītošā izvēlne",
+ "input_text": "Teksts"
+ }
+ },
+ "info": {
+ "built_using": "Veidots, izmantojot",
+ "caption": "Informācija",
+ "custom_uis": "Pielāgots UI:",
+ "description": "Informācija par šo Home Assistant instalāciju",
+ "documentation": "Dokumentācija",
+ "frontend": "lietotāja saskarne",
+ "frontend_version": "Lietotāja saskarnes versija: {version} - {type}",
+ "home_assistant_logo": "Home Assistant logotips",
+ "icons_by": "Ikonas no",
+ "integrations": "Integrācijas",
+ "issues": "Problēmas",
+ "license": "Publicēts saskaņā ar Apache 2.0 licenci",
+ "path_configuration": "Ceļš uz configuration.yaml: {path}",
+ "server": "serveris",
+ "source": "Pirmkods:",
+ "system_health_error": "System Health komponents nav ielādēts. Pievienojiet “system_health:” bloku configuration.yaml"
+ },
+ "integrations": {
+ "add_integration": "Pievienot integrāciju",
+ "attention": "Nepieciešama uzmanība",
+ "caption": "Integrācijas",
+ "config_entry": {
+ "area": "Apgabalā {area}",
+ "delete": "Dzēst",
+ "delete_confirm": "Vai tiešām vēlaties dzēst {title} integrāciju?",
+ "device_unavailable": "ierīce nav pieejama",
+ "devices": "{count} {count, plural,\n one {ierīce}\n other {ierīces}\n}",
+ "documentation": "Dokumentācija",
+ "entities": "{count} {count, plural,\n one {vienība}\n other {vienības}\n}",
+ "entity_unavailable": "vienība nav pieejama",
+ "firmware": "Programmaparatūra: {version}",
+ "hub": "Savienots caur",
+ "manuf": "{manufacturer}",
+ "no_area": "Nav apgabala",
+ "reload": "Pārlādēt",
+ "reload_confirm": "Integrācija tika pārlādēta",
+ "reload_restart_confirm": "Restartējiet Home Assistant, lai pabeigtu šīs integrācijas pārlādēšanu",
+ "rename": "Pārdēvēt",
+ "restart_confirm": "Restartēt Home Assistant, lai pabeigtu šīs integrācijas noņemšanu",
+ "services": "{count} {count, plural,\n one {serviss}\n other {servisi}\n}",
+ "system_options": "Sistēmas opcijas",
+ "unnamed_entry": "Ieraksts bez nosaukuma"
+ },
+ "config_flow": {
+ "aborted": "Pārtraukts",
+ "close": "Aizvērt",
+ "created_config": "Tika izveidota {name} integrācijas konfigurācija.",
+ "dismiss": "Aizvērt dialogu",
+ "error_saving_area": "Kļūda saglabājot apgabalu: {error}",
+ "external_step": {
+ "description": "Šī soļa pabeigšanai ir nepieciešams apmeklēt ārēju tīmekļa vietni.",
+ "open_site": "Atvērt tīmekļa vietni"
+ },
+ "finish": "Pabeigt",
+ "not_all_required_fields": "Ne visi obligātie lauki ir aizpildīti.",
+ "submit": "Iesniegt"
+ },
+ "configure": "Konfigurēt",
+ "configured": "Nokonfigurētās",
+ "confirm_new": "Vai vēlaties uzstādīt {integration}?",
+ "description": "Pārvaldiet integrācijas ar servisiem vai ierīcēm",
+ "details": "Integrācijas detaļas",
+ "disable": {
+ "show_disabled": "Rādīt atspējotās integrācijas"
+ },
+ "discovered": "Atklātās",
+ "home_assistant_website": "Home Assistant tīmekļa vietne",
+ "ignore": {
+ "confirm_delete_ignore": "Tas ļaus integrācijai atkal parādīties starp atklātajām integrācijām. Atklāšanai var būt nepieciešama restartēšana vai nepieciešams ilgāks laiks.",
+ "confirm_delete_ignore_title": "Pārtraukt ignorēt {name}?",
+ "confirm_ignore": "Vai tiešām nevēlaties iestatīt šo integrāciju? To varat atsaukt, augšējā labajā stūrī noklikšķinot uz “Rādīt ignorētās integrācijas” pārpildes izvēlnē.",
+ "confirm_ignore_title": "Ignorēt {name} atklāšanu?",
+ "ignore": "Ignorēt",
+ "ignored": "Ignorētās",
+ "show_ignored": "Rādīt ignorētās integrācijas",
+ "stop_ignore": "Pārtraukt ignorēšanu"
+ },
+ "integration": "integrācija",
+ "integration_not_found": "Integrācija nav atrasta.",
+ "new": "Pievienot jaunu integrāciju",
+ "no_integrations": "Šķiet, ka jums pagaidām nav nokonfigurēta neviena integrācija. Noklikšķiniet uz pogas zemāk, lai pievienotu savu pirmo integrāciju!",
+ "none": "Pagaidām nekas nav nokonfigurēts",
+ "none_found": "Integrācija nav atrasta",
+ "none_found_detail": "Pielāgot meklēšanas kritērijus.",
+ "note_about_integrations": "Neviena integrācija neatbilst meklēšanas kritērijiem. Integrācija, kuru vēlaties iestatīt, pagaidām var neatbalstīt iestatīšanu, izmantojot lietotāja saskarni.",
+ "note_about_website_reference": "Vairāk informācijas vietnē ",
+ "reconfigure": "Pārkonfigurēt",
+ "rename_dialog": "Rediģējiet šī konfigurācijas ieraksta nosaukumu",
+ "rename_input_label": "Ieraksta nosaukums",
+ "search": "Meklēt integrācijas"
+ },
+ "introduction": "Šeit iespējams konfigurēt Jūsu komponentus un pašu Home Assistant. Pagaidām ne visu ir iespējams konfigurēt, izmantojot lietotāja saskarni, bet mēs strādājam pie tā.",
+ "logs": {
+ "caption": "Žurnāli",
+ "clear": "Notīrīt",
+ "description": "Pārskatiet Home Assistant žurnālus",
+ "details": "Detaļas ({level})",
+ "load_full_log": "Ielādēt pilnu Home Assistant žurnālu",
+ "loading_log": "Kļūdu žurnāla ielāde...",
+ "multiple_messages": "ieraksts pirmo reizi parādījās {time} un pārādas {counter} reizes",
+ "no_errors": "Par kļūdām nav ziņots",
+ "no_issues": "Nav jaunu problēmu!",
+ "refresh": "Atsvaidzināt"
+ },
+ "lovelace": {
+ "caption": "Lovelace infopaneļi",
+ "dashboards": {
+ "cant_edit_default": "Standarta Lovelace infopaneli nevar rediģēt lietotāja saskarnē. Varat to paslēpt, iestatot citu infopaneli kā noklusēto.",
+ "cant_edit_yaml": "YAML definētos infopaneļus nevar rediģēt, izmantojot lietotāja saskarni. Mainiet tos konfigurācijā.yaml.",
+ "caption": "Infopaneļi",
+ "conf_mode": {
+ "storage": "UI kontrolēts",
+ "yaml": "YAML fails"
+ },
+ "confirm_delete": "Vai tiešām vēlaties izdzēst šo infopaneli?",
+ "default_dashboard": "Šis ir noklusējuma infopanelis",
+ "detail": {
+ "create": "Izveidot",
+ "delete": "Dzēst",
+ "dismiss": "Aizvērt",
+ "edit_dashboard": "Rediģēt infopaneli",
+ "icon": "Ikona",
+ "new_dashboard": "Pievienot jaunu infopaneli",
+ "remove_default": "Noņemt kā noklusējumu šajā ierīcē",
+ "require_admin": "Tikai administratoram",
+ "set_default": "Iestatīt kā noklusējumu šajā ierīcē",
+ "show_sidebar": "Rādīt sānjoslā",
+ "title": "Nosaukums",
+ "title_required": "Nosaukums ir obligāts.",
+ "update": "Atjaunināt",
+ "url": "URL",
+ "url_error_msg": "URL ir jāsatur - un tajā nedrīkst būt atstarpes vai speciālās rakstzīmes, izņemot _ un -"
+ },
+ "picker": {
+ "add_dashboard": "Pievienot infopaneli",
+ "headers": {
+ "conf_mode": "Konfigurācijas metode",
+ "default": "Noklusējuma",
+ "filename": "Faila nosaukums",
+ "require_admin": "Tikai administratoram",
+ "sidebar": "Rādīt sānjoslā",
+ "title": "Nosaukums"
+ },
+ "open": "Atvērt"
+ }
+ },
+ "description": "Pārvaldiet savus Lovelace infopaneļus",
+ "resources": {
+ "cant_edit_yaml": "Jūs izmantojat Lovelace YAML režīmā, tāpēc jūs nevarat pārvaldīt savus resursus, izmantojot lietotāja saskarni. Pārvaldiet tos konfigurācijā.yaml.",
+ "caption": "Resursi",
+ "detail": {
+ "url": "URL"
+ },
+ "picker": {
+ "headers": {
+ "url": "URL"
+ },
+ "no_resources": "Nav resursu"
+ }
+ }
+ },
+ "mqtt": {
+ "publish": "Publicēt",
+ "title": "MQTT",
+ "topic": "temats"
+ },
+ "ozw": {
+ "network_status": {
+ "unknown": "Nezināms"
+ }
+ },
+ "person": {
+ "add_person": "Pievienot personu",
+ "caption": "Personas",
+ "confirm_delete": "Vai tiešām vēlaties dzēst šo personu?",
+ "confirm_delete2": "Visas šai personai piederošās ierīces kļus par nepiesaistītām.",
+ "create_person": "Izveidot personu",
+ "description": "Pārvaldīt personas, kuras izseko Home Assistant.",
+ "detail": {
+ "admin": "Administrators",
+ "allow_login": "Atļaut personai pieteikties",
+ "confirm_delete_user": "Vai tiešām vēlaties dzēst lietotāja {name} kontu? Jūs joprojām varat izsekot lietotāju, taču persona vairs nevarēs pieteikties.",
+ "create": "Izveidot",
+ "delete": "Dzēst",
+ "device_tracker_intro": "Atlasiet ierīces, kas pieder šai personai.",
+ "device_tracker_pick": "Izvēlieties izsekojamo ierīci",
+ "device_tracker_picked": "Izsekot Ierīci",
+ "link_integrations_page": "Integrāciju lapa",
+ "link_presence_detection_integrations": "Klātbūtnes noteikšanas integrācijas",
+ "linked_user": "Saistītais lietotājs",
+ "name": "Vārds",
+ "name_error_msg": "Nepieciešams vārds",
+ "new_person": "Jauna persona",
+ "no_device_tracker_available_intro": "Ja jums ir ierīces, kas norāda uz personas klātbūtni, jūs šeit varēsit tās piesaistīt personai. Pirmo ierīci varat pievienot, integrāciju lapā pievienojot klātbūtnes noteikšanas integrāciju.",
+ "update": "Atjaunināt"
+ },
+ "introduction": "Šeit jūs varat definēt personas izmantošanai Home Assistant.",
+ "no_persons_created_yet": "Izskatās, ka vēl neesat izveidojis nevienu personu.",
+ "note_about_persons_configured_in_yaml": "Ievērībai: configuration.yaml konfigurētās personas nevar rediģēt, izmantojot lietotāja saskarni.",
+ "person_not_found": "Mēs nevarējām atrast personu, kuru mēģinājāt rediģēt.",
+ "person_not_found_title": "Persona nav atrasta"
+ },
+ "scene": {
+ "activated": "Aktivizēta aina {name}.",
+ "caption": "Ainas",
+ "description": "Pārvaldiet ainas",
+ "editor": {
+ "default_name": "Jauna aina",
+ "devices": {
+ "add": "Ierīces pievienošana",
+ "delete": "Dzēst ierīci",
+ "header": "Ierīces",
+ "introduction": "Pievienot ierīces kuras Jūs vēlaties iekļaut Jūsu ainā. Uzstādiet visu ierīču stāvokli kādu Jūs vēlaties šai ainai."
+ },
+ "entities": {
+ "add": "Pievienot vienību",
+ "delete": "Dzēst vienību",
+ "device_entities": "Ja pievienosiet vienību, kas pieder ierīcei, tad tā tiks pievienota.",
+ "header": "Vienības",
+ "introduction": "Šeit var iestatīt vienības, kas nepieder nevienai ierīcei.",
+ "without_device": "Vienības bez ierīcēm"
+ },
+ "introduction": "Izmantojiet ainas, lai Jūsu mājas padarītu dzīvas.",
+ "load_error_not_editable": "Tikai ainas ir rediģējamas scenes.yaml.",
+ "load_error_unknown": "Kļūda ielādējot ainu ({err_no}).",
+ "name": "Nosaukums",
+ "save": "Saglabāt",
+ "unsaved_confirm": "Jums ir nesaglabātas izmaiņas. Vai tiešām vēlaties pamest?"
+ },
+ "picker": {
+ "add_scene": "Pievienot ainu",
+ "delete_confirm": "Vai tiešām vēlaties izdzēst šo ainu?",
+ "delete_scene": "Dzēst ainu",
+ "edit_scene": "Rediģēt ainu",
+ "header": "Ainu redaktors",
+ "introduction": "Ainu redaktors ļauj Jums izveidot un rediģēt ainas. Lūdzu, sekojiet saitei zemāk, lai izlasītu instrukciju, ka Jūs esat pareizi konfigurējis Home Assistant.",
+ "learn_more": "Uzzināt vairāk par ainām",
+ "no_scenes": "Mēs nevarējām atrast nevienu rediģējamu ainu",
+ "only_editable": "Rediģēt var tikai ainas, kas definētas scenes.yaml.",
+ "pick_scene": "Izvēlaties ainu rediģēšanai",
+ "show_info_scene": "Rādīt informāciju par ainu"
+ }
+ },
+ "script": {
+ "caption": "Skripti",
+ "description": "Pārvaldiet skriptus",
+ "editor": {
+ "alias": "Nosaukums",
+ "default_name": "Jauns skripts",
+ "delete_confirm": "Vai tiešām vēlaties dzēst šo skriptu?",
+ "delete_script": "Dzēst skriptu",
+ "header": "Skripts: {name}",
+ "introduction": "Izmantojiet skriptus, lai izpildītu darbību secību.",
+ "link_available_actions": "Uzzināt vairāk par pieejamām darbībām.",
+ "load_error_not_editable": "Rediģējami ir tikai scripts.yaml esošie skripti.",
+ "sequence": "Secība",
+ "sequence_sentence": "Šī skripta darbību secība."
+ },
+ "picker": {
+ "add_script": "Pievienot jaunu skriptu",
+ "edit_script": "Rediģēt skriptu",
+ "header": "Skriptu redaktors",
+ "introduction": "Skriptu redaktors ļauj jums izveidot un rediģēt skriptus. Lūdzu, izmantojiet zemāk esošo saiti, lai izlasītu instrukcijas, lai pārliecinātos, ka esat pareizi konfigurējis Home Assistant.",
+ "learn_more": "Uzziniet vairāk par skriptiem",
+ "no_scripts": "Rediģējami skripti nav atrasti",
+ "show_info": "Rādīt informāciju par skriptu"
+ }
+ },
+ "server_control": {
+ "caption": "Servera vadība",
+ "description": "Home Assistant servera restartēšana un apturēšana",
+ "section": {
+ "reloading": {
+ "automation": "Pārlādēt automatizācijas",
+ "core": "Pārlādēt lokāciju un pielāgojumus",
+ "group": "Pārlādēt grupas, grupas vienības un notify servisus",
+ "heading": "YAML konfigurācijas pārlādēšana",
+ "history_stats": "Pārlādēt history stats vienības",
+ "introduction": "Atsevišķas Home Assistant daļas var pārlādēt bez nepieciešamības restartēt. Veicot pārlādēšanu, pašreizējā YAML konfigurācija tiks atiestatīta un tiks ielādēta jaunā.",
+ "mqtt": "Pārlādēt mqtt vienības",
+ "person": "Pārlādēt personas",
+ "reload": "Pārlādēt {domain}",
+ "rest": "Pārlādēt rest vienības un notify servisus",
+ "rpi_gpio": "Pārlādēt Raspberry Pi GPIO vienības",
+ "scene": "Pārlādēt ainas",
+ "script": "Pārlādēt skriptus",
+ "smtp": "Pārlādēt smtp notify servisus",
+ "telegram": "Pārlādēt telegram notify servisus",
+ "zone": "Pārlādēt zonas"
+ },
+ "server_management": {
+ "confirm_restart": "Vai tiešām vēlaties restartēt Home Assistant?",
+ "confirm_stop": "Vai tiešām vēlaties apturēt Home Assistant?",
+ "heading": "Servera pārvaldība",
+ "introduction": "Kontrolējiet savu Home Assistant serveri… no Home Assistant.",
+ "restart": "Restartēt",
+ "stop": "Apturēt"
+ },
+ "validation": {
+ "check_config": "Pārbaudīt konfigurāciju",
+ "heading": "Konfigurācijas pārbaude",
+ "introduction": "Veiciet konfigurācijas pārbaudi, ja nesen esat veicis izmaiņas konfigurācijā un vēlaties pārliecināties, ka tā nesatur kļūdas",
+ "invalid": "Konfigurācija kļūdaina",
+ "valid": "Konfigurācija korekta!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Pievienot birku",
+ "automation_title": "Birka {name} ir noskenēta",
+ "caption": "Birkas",
+ "create_automation": "Izveidot automatizāciju ar birku",
+ "detail": {
+ "create": "Izveidot",
+ "create_and_write": "Izveidot un rakstīt",
+ "delete": "Dzēst",
+ "description": "Apraksts",
+ "name": "Nosaukums",
+ "new_tag": "Jauna birka",
+ "tag_id": "Birkas id",
+ "tag_id_placeholder": "Autoģenerēts, ja nav ievadīts",
+ "update": "Atjaunināt"
+ },
+ "edit": "Rediģēt",
+ "headers": {
+ "last_scanned": "Pēdējo reizi skenēts",
+ "name": "Nosaukums"
+ },
+ "never_scanned": "Nekad nav skenēts",
+ "no_tags": "Nav nevienas birkas",
+ "write": "Rakstīt"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Lietotāja pievienošana",
+ "create": "Izveidot",
+ "password": "Parole",
+ "password_confirm": "Apstipriniet paroli",
+ "password_not_match": "Paroles nesakrīt"
+ },
+ "caption": "Lietotāji",
+ "description": "Pārvaldiet lietotājus",
+ "editor": {
+ "activate_user": "Aktivizēt lietotāju",
+ "active": "Aktīvs",
+ "admin": "Administrators",
+ "caption": "Skatīt lietotāju",
+ "change_password": "Mainīt paroli",
+ "confirm_user_deletion": "Vai tiešām vēlaties dzēst {name}?",
+ "deactivate_user": "Deaktivizēt lietotāju",
+ "delete_user": "Dzēst lietotāju",
+ "group": "Grupa",
+ "id": "ID",
+ "name": "Vārds",
+ "new_password": "Jauna parole",
+ "owner": "Īpašnieks",
+ "password_changed": "Parole tika veiksmīgi nomainīta",
+ "system_generated": "Sistēmas ģenerēts",
+ "system_generated_users_not_editable": "Sistēmas ģenerētos lietotājus nevar atjaunināt.",
+ "system_generated_users_not_removable": "Sistēmas ģenerētos lietotājus nevar dzēst.",
+ "unnamed_user": "Lietotājs bez vārda",
+ "update_user": "Atjaunināt",
+ "username": "Lietotājvārds"
+ },
+ "picker": {
+ "headers": {
+ "group": "Grupa",
+ "is_active": "Aktīvs",
+ "is_owner": "Īpašnieks",
+ "name": "Vārds",
+ "system": "Sistēmas",
+ "username": "Lietotājvārds"
+ }
+ },
+ "users_privileges_note": "Lietotāju grupa ir izstrādes procesā. Lietotājs nevarēs administrēt instalāciju, izmantojot lietotāja saskarni. Mēs joprojām pārbaudām pārvaldības API, lai pārliecinātos, ka tie pareizi ierobežo piekļuvi administratoriem."
+ },
+ "zha": {
+ "add_device": "Pievienot ierīci",
+ "add_device_page": {
+ "search_again": "Atkārtot meklēšanu",
+ "spinner": "Meklē ZHA Zigbee ierīces…"
+ },
+ "clusters": {
+ "header": "Kopas"
+ },
+ "common": {
+ "clusters": "Kopas",
+ "value": "Vērtība"
+ },
+ "device_pairing_card": {
+ "CONFIGURED_status_text": "Inicializē",
+ "INITIALIZED_status_text": "Ierīce ir gatava lietošanai"
+ },
+ "groups": {
+ "add_group": "Pievienot grupu",
+ "caption": "Grupas",
+ "group_id": "Grupas ID",
+ "group_name_placeholder": "Grupas nosaukums"
+ },
+ "visualization": {
+ "caption": "Vizualizācija",
+ "header": "Tīkla vizualizācija"
+ }
+ },
+ "zone": {
+ "add_zone": "Pievienot zonu",
+ "caption": "Zonas",
+ "configured_in_yaml": "configuration.yaml konfigurētās zonas nevar rediģēt, izmantojot lietotāja saskarni.",
+ "confirm_delete": "Vai tiešām vēlaties dzēst šo zonu?",
+ "create_zone": "Izveidot zonu",
+ "description": "Pārvaldiet zonas, kurās vēlaties izsekot personām.",
+ "detail": {
+ "create": "Izveidot",
+ "delete": "Dzēst",
+ "icon": "Ikona",
+ "icon_error_msg": "Ikonai jābūt formātā \"prefikss:nosaukums\", piemēram: \"mdi:home\"",
+ "latitude": "Platums",
+ "longitude": "Garums",
+ "name": "Nosaukums",
+ "new_zone": "Jauna zona",
+ "passive": "Pasīva",
+ "passive_note": "Pasīvās zonas netiek rādītas lietotāja saskarnē un netiek izmantotas kā atrašanās vieta ierīču izsekošanai. Tas ir noderīgi, ja vēlaties tās izmantot tikai automatizācijai.",
+ "radius": "Rādiuss",
+ "required_error_msg": "Šis lauks ir obligāts",
+ "update": "Atjaunināt"
+ },
+ "edit_home_zone": "Mājas zonas rādiusu pagaidām nevar rediģēt, izmantojot lietotāja saskarni. Velciet marķieri kartē, lai pārvietotu mājas zonu.",
+ "edit_home_zone_narrow": "Mājas zonas rādiusu pagaidām nevar rediģēt, izmantojot lietotāja saskarni. Atrašanās vietu var mainīt no vispārējās konfigurācijas.",
+ "go_to_core_config": "Doties uz vispārējo konfigurāciju?",
+ "home_zone_core_config": "Jūsu mājas zonas atrašanās vietu var rediģēt no vispārējās konfigurācijas lapas. Mājas zonas rādiusu pagaidām nevar rediģēt, izmantojot lietotāja saskarni. Vai vēlaties pāriet uz vispārīgo konfigurāciju?",
+ "introduction": "Zonas ļauj norādīt noteiktus reģionus uz zemes. Kad cilvēks atrodas zonā, vienības stāvoklim tiks izmantots zonas nosaukums. Zonas var izmantotas kā aktivators vai nosacījums automatizācijās.",
+ "no_zones_created_yet": "Izskatās, ka vēl neesat izveidojis nevienu zonu."
+ },
+ "zwave": {
+ "common": {
+ "index": "Indekss",
+ "instance": "Instance",
+ "unknown": "nezināms",
+ "value": "Vērtība",
+ "wakeup_interval": "Wakeup intervāls"
+ },
+ "description": "Pārvaldiet Z-Wave tīklu",
+ "network_management": {
+ "header": "Z-Wave tīkla pārvaldība",
+ "introduction": "Palaist komandas, kas ietekmē Z-Wave tīklu. Jūs nesaņemsit atpakaļsaiti par to, vai vairums komandu ir izdevušās, taču varat pārbaudīt OZW žurnālu, lai mēģinātu to uzzināt."
+ },
+ "network_status": {
+ "network_started": "Z-Wave tīkls startēts",
+ "network_started_note_all_queried": "Visi mezgli ir ierindoti.",
+ "network_started_note_some_queried": "Nomodā esoši megli ir ierindoti. Miega režimā esoši mezgli tiks ierindoti tiklīdz tie būs nomodā.",
+ "network_starting": "Z-Wave tīkla startēšana…",
+ "network_starting_note": "Tas var aizņemt kādu laiku atkarībā no Jūsu tīkla lieluma.",
+ "network_stopped": "Z-Wave tīkls apturēts"
+ },
+ "node_config": {
+ "config_parameter": "Konfigurācijas parametrs",
+ "config_value": "Konfigurētā vērtība",
+ "false": "Nepatiess",
+ "header": "Mezgla konfigurēšanas opcijas",
+ "seconds": "sekundes",
+ "set_config_parameter": "Iestatīt konfigurācijas parametru",
+ "set_wakeup": "Wakeup intervāla iestatīšana",
+ "true": "Patiess"
+ },
+ "services": {
+ "add_node": "Pievienot mezglu",
+ "add_node_secure": "Pievienot drošo mezglu",
+ "cancel_command": "Atcelt komandu",
+ "heal_network": "Labot tīklu",
+ "remove_node": "Noņemt mezglu",
+ "save_config": "Saglabāt konfigurāciju",
+ "soft_reset": "Vieglā atiestatīšana",
+ "start_network": "Startēt tīklu",
+ "stop_network": "Apturēt tīklu",
+ "test_network": "Pārbaudīt tīklu"
+ },
+ "values": {
+ "header": "Mezglu vērtības"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "view_device": "Skatīt Ierīci"
+ },
+ "common": {
+ "close": "Aizvērt",
+ "home_id": "Mājas ID",
+ "network": "Tīkls"
+ },
+ "dashboard": {
+ "driver_version": "Draivera versija",
+ "dump_not_ready_confirm": "Lejupielādēt",
+ "home_id": "Mājas ID",
+ "server_version": "Servera versija"
+ },
+ "navigation": {
+ "network": "Tīkls"
+ },
+ "network_status": {
+ "connected": "Savienots",
+ "connecting": "Savienojas",
+ "unknown": "Nezināms"
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Tai būs pieejami visi dati no Home Assistant",
+ "hide_message": "Pārskatiet komponentes panel_custom dokumentus, lai paslēptu šo paziņojumu",
+ "question_trust": "Vai Jūs uzticaties ārējam panelim {name} uz {link}?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "title": "Notikumi"
+ },
+ "services": {
+ "column_description": "Apraksts",
+ "column_example": "Piemērs",
+ "column_parameter": "Parametrs"
+ },
+ "states": {
+ "attributes": "Atribūti",
+ "title": "Stāvokļi"
+ }
+ }
+ },
+ "lovelace": {
+ "cards": {
+ "empty_state": {
+ "go_to_integrations_page": "Dodieties uz integrācijas lapu.",
+ "no_devices": "Šī lapa ļauj jums kontrolēt savas ierīces, tomēr izskatās, ka vēl nav izveidotas ierīces. Lai sāktu darbu, dodieties uz integrācijas lapu.",
+ "title": "Laipni lūgti mājās"
+ },
+ "picture-elements": {
+ "call_service": "Izsaukt servisu {name}",
+ "hold": "Turēt:",
+ "more_info": "Rādīt vairāk informācijas: {name}",
+ "navigate_to": "Dodieties uz {location}",
+ "tap": "Pieskarties:",
+ "toggle": "Pārslēgt {name}"
+ },
+ "shopping-list": {
+ "add_item": "Pievienot vienumu",
+ "checked_items": "Atzīmētie vienumi",
+ "clear_items": "Notīrīt atzīmētos vienumus"
+ }
+ },
+ "changed_toast": {
+ "message": "Šī informācijas paneļa Lovelace UI konfigurācija tika atjaunināta. Vēlaties atsvaidzināt, lai redzētu izmaiņas?"
+ },
+ "editor": {
+ "card": {
+ "button": {
+ "name": "Poga"
+ },
+ "calendar": {
+ "description": "Kalendāra kartītē tiek attēlots kalendārs ar dienas, nedēļas un saraksta skatiem",
+ "name": "Kalendārs"
+ },
+ "config": {
+ "optional": "Neobligāti",
+ "required": "Nepieciešams"
+ },
+ "entities": {
+ "toggle": "Pārslēgt vienības."
+ },
+ "entity": {
+ "description": "Vienības kartīte sniedz īsu pārskatu par jūsu vienības stāvokli.",
+ "name": "Vienība"
+ },
+ "generic": {
+ "attribute": "Atribūts",
+ "double_tap_action": "Dubultpieskāriena darbība",
+ "icon": "Ikona",
+ "search": "Meklēt",
+ "tap_action": "Pieskariena darbība",
+ "url": "URL"
+ },
+ "grid": {
+ "columns": "Kolonnas",
+ "square": "Attēlot kartiņas kā kvadrātus"
+ },
+ "humidifier": {
+ "description": "Mitrinātāja kartīte ļauj kontrolēt jūsu mitrinātāja vienību, sniedzot iespēju pielāgot vienības mitrumu un režīmu.",
+ "name": "Mitrinātājs"
+ },
+ "iframe": {
+ "name": "Tīmekļa lapa"
+ },
+ "light": {
+ "name": "Gaisma"
+ },
+ "map": {
+ "dark_mode": "Tumšais izskats?",
+ "default_zoom": "Noklusējuma mērogs",
+ "description": "Kartes kartīte ļauj attēlot vienības kartē.",
+ "geo_location_sources": "Ģeogrāfiskās atrašanās vietas avoti",
+ "hours_to_show": "Parādāmās stundas",
+ "name": "Karte",
+ "source": "Avots"
+ },
+ "markdown": {
+ "content": "Saturs",
+ "name": "Markdown"
+ },
+ "picture": {
+ "name": "Attēls"
+ },
+ "plant-status": {
+ "name": "Auga statuss"
+ },
+ "sensor": {
+ "name": "Sensors"
+ },
+ "shopping-list": {
+ "name": "Iepirkumu saraksts"
+ },
+ "thermostat": {
+ "name": "Termostats"
+ },
+ "weather-forecast": {
+ "name": "Laikapstākļu prognoze",
+ "show_forecast": "Rādīt laikapstākļu prognozi"
+ }
+ },
+ "cardpicker": {
+ "custom_card": "Pielāgota",
+ "no_description": "Apraksts nav pieejams."
+ },
+ "edit_card": {
+ "add": "Pievienot kartīti",
+ "delete": "Dzēst kartīti",
+ "edit": "Rediģēt",
+ "header": "Kartītes konfigurācija",
+ "move": "Pārvietot uz skatu",
+ "pick_card": "Kuru kartīti vēlaties pievienot?",
+ "toggle_editor": "Pārslēgt redaktoru"
+ },
+ "edit_lovelace": {
+ "edit_title": "Rediģēt virsrakstu",
+ "explanation": "Šis nosaukums tiek parādīts virs visiem jūsu Lovelace skatiem.",
+ "header": "Jūsu Lovelace UI virsraksts"
+ },
+ "edit_view": {
+ "add": "Pievienot skatu",
+ "delete": "Dzēst skatu",
+ "edit": "Rediģēt skatu",
+ "header": "Skatīt konfigurāciju",
+ "move_left": "Pārvietot skatu pa kreisi",
+ "move_right": "Pārvietot skatu pa labi",
+ "tab_settings": "Iestatījumi"
+ },
+ "header": "Rediģēt lietotāja saskarni",
+ "menu": {
+ "open": "Atvērt Lovelace UI izvēlni",
+ "raw_editor": "Konfigurācijas teksta redaktors"
+ },
+ "migrate": {
+ "header": "Nesaderīga konfigurācija",
+ "migrate": "Pārvietot konfigurāciju",
+ "para_migrate": "Home Assistant var automātiski pievienot ID visām kartītēm un skatiem, nospiežot pogu \"Pārvietot konfigurāciju\".",
+ "para_no_id": "Šim elementam nav ID. Lūdzu, pievienojiet ID šim elementam 'ui-lovelace.yaml' failā."
+ },
+ "raw_editor": {
+ "confirm_unsaved_changes": "Jums ir nesaglabātas izmaiņas. Vai esat pārliecināts, ka vēlaties iziet?",
+ "confirm_unsaved_comments": "Jūsu konfigurācija satur komentāru(s), tie netiks saglabāti. Vai vēlaties turpināt?",
+ "error_invalid_config": "Jūsu konfigurācija satur kļūdas: {error}",
+ "error_parse_yaml": "Nevar noparsēt YAML: {error}",
+ "error_save_yaml": "Nevar saglabāt YAML: {error}",
+ "header": "Konfigurācijas redaktors",
+ "resources_moved": "Resursus vairs nevajadzētu pievienot Lovelace konfigurācijai, bet tos var pievienot Lovelace konfigurācijas panelī.",
+ "save": "Saglabāt",
+ "saved": "Saglabāts",
+ "unsaved_changes": "Nesaglabātās izmaiņas"
+ },
+ "save_config": {
+ "close": "Aizvērt",
+ "header": "Pārņemt kontroli pār savu Lovelace lietotāja saskarni",
+ "para": "Šo infopaneli pašlaik konktrolē Home Assistant, automātiski atjauninot, kad kļūst pieejamas jaunas vienības vai Lovelace UI komponenti. Ja pārņemsiet kontroli, šis informācijas panelis vairs netiks automātiski atjaunināts. Izmēģinājumiem jūs vienmēr varat izveidot jaunu infopaneli konfigurācijā.",
+ "para_sure": "Vai tiešām vēlaties pārņemt kontroli pār lietotāja saskarni?",
+ "save": "Pārņemt kontroli"
+ }
+ },
+ "menu": {
+ "close": "Aizvērt",
+ "configure_ui": "Rediģēt lietotāja saskarni",
+ "exit_edit_mode": "Iziet no UI rediģēšanas režīma",
+ "help": "Palīdzība",
+ "reload_resources": "Pārlādēt resursus"
+ },
+ "reload_lovelace": "Pārlādēt lietotāja saskarni",
+ "unused_entities": {
+ "available_entities": "Šīs ir vienības, kuras Jums ir pieejamas, bet kuras vēl nav Lovelace UI.",
+ "domain": "Domēns",
+ "entity": "Vienība",
+ "entity_id": "Vienības ID",
+ "last_changed": "Pēdējo reizi mainīts",
+ "select_to_add": "Izvēlieties vienību, kuru vēlaties pievienot kartei, un pēc tam noklikšķiniet uz pogu pievienot karti.",
+ "title": "Neizmantotās vienības"
+ },
+ "warning": {
+ "entity_non_numeric": "Vienība nav skaitliska: {entity}",
+ "entity_not_found": "Vienība nav pieejama: {entity}"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Dzēst",
+ "delete_prompt": "Vai dzēst šo ziņojumu?",
+ "empty": "Jums nav ziņu",
+ "playback_title": "Ziņu atskaņošana"
+ },
+ "my": {
+ "error": "Radusies nezināma kļūda"
+ },
+ "page-authorize": {
+ "abort_intro": "Pieteikšanās pārtraukta",
+ "authorizing_client": "Jūs gatavojaties piešķirt {clientId} piekļuvi jūsu Home Assistant.",
+ "form": {
+ "error": "Kļūda: {error}",
+ "next": "Tālāk",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Sesija beigusies. Lūdzu, piesakaties vēlreiz."
+ },
+ "error": {
+ "invalid_auth": "Nederīgs lietotājvārds vai parole",
+ "invalid_code": "Nepareizs autorizācijas kods"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Parole",
+ "username": "Lietotājvārds"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Divpakāpju autorizācijas kods"
+ },
+ "description": "Atveriet **{mfa_module_name}** savā ierīcē, lai skatītu divu faktoru autentifikācijas kodu un verificētu savu identitāti:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Sesija beidzās, lūdzu, piesakieties vēlreiz."
+ },
+ "error": {
+ "invalid_auth": "Nederīgs lietotājvārds vai parole",
+ "invalid_code": "Nederīgs autentifikācijas kods"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Parole",
+ "username": "Lietotājvārds"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Divu faktoru autentifikācijas kods"
+ },
+ "description": "Atveriet **{mfa_module_name}** savā ierīcē, lai skatītu divu faktoru autentifikācijas kodu un verificētu savu identitāti:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Sesija beigusies. Lūdzu, piesakaties vēlreiz.",
+ "no_api_password_set": "Jums nav konfigurēta API parole."
+ },
+ "error": {
+ "invalid_auth": "Nederīga API parole",
+ "invalid_code": "Nederīgs autentifikācijas kods"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "API parole"
+ },
+ "description": "Lūdzu, ievadiet API paroli savā HTTP konfigurācijā:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Divu faktoru autentifikācijas kods"
+ },
+ "description": "Atveriet **{mfa_module_name}** savā ierīcē, lai skatītu divu faktoru autentifikācijas kodu un verificētu savu identitāti:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Jūsu dators nav atļauto sarakstā."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Lietotājs"
+ },
+ "description": "Lūdzu, atlasiet lietotāju, kuru vēlaties pieteikties kā:"
+ }
+ }
+ }
+ },
+ "start_over": "Sākt no jauna",
+ "unknown_error": "Kaut kas nogāja greizi",
+ "working": "Lūdzu uzgaidiet"
+ },
+ "initializing": "Inicializēšana",
+ "logging_in_to_with": "Pieteikšanās **{locationName}**, izmantojot **{authProviderName}**.",
+ "logging_in_with": "Pieteikšanās ar **{authProviderName}**.",
+ "pick_auth_provider": "Vai arī piesakaties, izmantojot"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "{name}",
+ "introduction": "Laipni lūgts mājās! Jūs esat sasniedzis Home Assistant demonstrāciju, kurā mēs parādām labākos lietotāja kopienas izveidotos lietotāja interfeisus.",
+ "learn_more": "Uzziniet vairāk par Home Assistant",
+ "next_demo": "Nākamā demonstrācija"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Aktivitāte",
+ "air": "Gaiss",
+ "commute_home": "Brauciens uz mājām",
+ "entertainment": "Izklaide",
+ "hdmi_input": "HDMI ievade",
+ "hdmi_switcher": "HDMI pārslēdzējs",
+ "information": "Informācija",
+ "lights": "Gaismas",
+ "morning_commute": "Rīta brauciens",
+ "total_tv_time": "Kopējais TV laiks",
+ "turn_tv_off": "Izslēgt televizoru",
+ "volume": "Skaļums"
+ },
+ "names": {
+ "family_room": "Ģimenes Istaba",
+ "hallway": "Gaitenis",
+ "kitchen": "Virtuve",
+ "left": "Pa kreisi",
+ "master_bedroom": "Galvenā guļamistaba",
+ "mirror": "Spogulis",
+ "patio": "Terase",
+ "right": "Pa labi",
+ "upstairs": "Augšstāvs"
+ },
+ "unit": {
+ "minutes_abbr": "min",
+ "watching": "skatotās"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Tālāk"
+ },
+ "core-config": {
+ "button_detect": "Noteikt",
+ "finish": "Tālāk",
+ "intro": "Sveiki {name}! Laipni lūdzam Home Assistant. Kā jūs vēlētos nosaukt savas mājas?",
+ "intro_location": "Mēs gribētu zināt, kur tu dzīvo. Šī informācija palīdzēs parādīt informāciju un iestatīt uz saules bāzes balstītas automātikas. Šie dati nekad netiek koplietoti ārpus jūsu tīkla.",
+ "intro_location_detect": "Mēs varam palīdzēt jums aizpildīt šo informāciju, iesniedzot vienreizēju pieprasījumu ārējam servisam.",
+ "location_name": "Jūsu Home Assistant instalācijas nosaukums",
+ "location_name_default": "Mājas"
+ },
+ "finish": "Pabeigt",
+ "integration": {
+ "finish": "Pabeigt",
+ "intro": "Home Assistant ierīces un servisi tiek attēloti kā integrācijas. Jūs varat tās iestatīt uzreiz vai vēlāk konfigurācijas ekrānā.",
+ "more_integrations": "Vairāk"
+ },
+ "intro": "Vai esat gatavs pamodināt savu māju, atgūt savu konfidencialitāti un pievienoties pasaules mēroga kopienai?",
+ "next": "Tālāk",
+ "restore": {
+ "description": "Varat arī atjaunot no iepriekšējās dublējumkopijas.",
+ "hide_log": "Slēpt pilno žurnālu",
+ "in_progress": "Notiek atjaunošana",
+ "show_log": "Rādīt pilnu žurnālu"
+ },
+ "user": {
+ "create_account": "Izveidot kontu",
+ "data": {
+ "name": "Vārds",
+ "password": "Parole",
+ "password_confirm": "Apstipriniet paroli",
+ "username": "Lietotājvārds"
+ },
+ "error": {
+ "password_not_match": "Paroles nesakrīt",
+ "required_fields": "Aizpildiet visus obligātos laukus"
+ },
+ "intro": "Sāksim ar lietotāja konta izveidi.",
+ "required_field": "Obligāts"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Atbloķē papildu funkcijas.",
+ "link_promo": "Uzziniet vairāk",
+ "title": "Detalizētais režīms"
+ },
+ "change_password": {
+ "confirm_new_password": "Apstipriniet jauno paroli",
+ "current_password": "Pašreizējā parole",
+ "error_new_is_old": "Jaunajai parolei ir jāatšķiras no pašreizējās paroles",
+ "error_new_mismatch": "Ievadītās jaunās paroles vērtības nesakrīt",
+ "error_required": "Obligāts",
+ "header": "Mainīt paroli",
+ "new_password": "Jauna parole",
+ "submit": "Iesniegt",
+ "success": "Parole veiksmīgi nomainīta"
+ },
+ "current_user": "Jūs šobrīd esat pieteicies kā {fullName}.",
+ "customize_sidebar": {
+ "button": "Rediģēt",
+ "description": "Varat arī nospiest un turēt sānjoslas galveni, lai aktivizētu rediģēšanas režīmu.",
+ "header": "Mainīt secību un slēpt sānjoslas vienumus"
+ },
+ "dashboard": {
+ "description": "Izvēlēties noklusējuma infopaneli šai ierīcei",
+ "dropdown_label": "Infopanelis",
+ "header": "Infopanelis"
+ },
+ "enable_shortcuts": {
+ "description": "Iespējojiet vai atspējojiet īsinājumtaustiņus dažādu darbību veikšanai lietotāja saskarnē.",
+ "header": "Īsinājumtaustiņi"
+ },
+ "force_narrow": {
+ "description": "Sānjosla pēc noklusējuma tiks slēpta, līdzīgi kā mobilajās ierīcēs.",
+ "header": "Vienmēr slēpt sānjoslu"
+ },
+ "is_owner": "Jūs esat īpašnieks.",
+ "language": {
+ "dropdown_label": "Valoda",
+ "header": "Valoda",
+ "link_promo": "Palīdziet tulkot"
+ },
+ "logout": "Iziet",
+ "logout_text": "Vai tiešām vēlaties iziet?",
+ "logout_title": "Iziet?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Vai tiešām vēlaties dzēst piekļuves pilnvaru {name}?",
+ "create": "Izveidot pilnvaru",
+ "create_failed": "Neizdevās izveidot piekļuves pilnvaru.",
+ "created": "Izveidota {date}",
+ "delete_failed": "Neizdevās dzēst piekļuves pilnvaru.",
+ "description": "Izveidojiet ilgtermiņa piekļuves pilnvaras, lai ļautu jūsu skriptiem mijiedarboties ar jūsu Home Assistant instanci. Katra pilnvara būs derīga 10 gadus pēc tās izveidošanas. Pašlaik ir aktīvas sekojošas ilgtermiņa piekļuves pilvaras.",
+ "empty_state": "Jums vēl nav ilgtermiņa piekļuves pilnvaru.",
+ "header": "Ilgtermiņa piekļuves pilnvaras",
+ "learn_auth_requests": "Uzziniet, kā veikt autentificētus pieprasījumus.",
+ "name": "Nosaukums",
+ "prompt_copy_token": "Kopējiet savu piekļuves pilnvaru. Tas vairs netiks rādīts.",
+ "prompt_name": "Pilnvaras nosaukums"
+ },
+ "mfa": {
+ "confirm_disable": "Vai tiešām vēlaties atspējot {name}?",
+ "disable": "Atspējot",
+ "enable": "Iespējot",
+ "header": "Daudzfaktoru autentifikācijas moduļi"
+ },
+ "mfa_setup": {
+ "close": "Aizvērt",
+ "step_done": "Iestatīšana ir pabeigta {step}",
+ "submit": "Iesniegt",
+ "title_aborted": "Priekšlaikus pārtraukta",
+ "title_success": "Veiksmīgi!"
+ },
+ "number_format": {
+ "description": "Izvēlieties skaitļu attēlošanas formātu.",
+ "dropdown_label": "Skaitļu formāts",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Auto (izmantot valodas iestatījumu)",
+ "none": "Nav",
+ "space_comma": "1 234 567,89",
+ "system": "Izmantot sistēmas lokalizāciju"
+ },
+ "header": "Skaitļu formāts"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Ierīces nosaukums",
+ "title": "Kā šo ierīci vajadzētu saukt?"
+ },
+ "description": "Sūtīt paziņojumus uz šo ierīci.",
+ "error_load_platform": "Konfigurēt notify.html5.",
+ "error_use_https": "Nepieciešama SSL iespējošana priekšgalsistēmai.",
+ "header": "Pašpiegādes paziņojumi",
+ "link_promo": "Uzziniet vairāk",
+ "push_notifications": "Pašpiegādes paziņojumi"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Vai tiešām vēlaties dzēst piekļuves pilnvaru {name}?",
+ "created_at": "Izveidota {date}",
+ "current_token_tooltip": "Nevar izdzēst pašreizējo atsvaidzināšanas pilnvaru",
+ "delete_failed": "Neizdevās dzēst atsvaidzināšanas pilnvaru.",
+ "description": "Katra atsvaidzināšanas pilvara apzīmē pieteikšanās sesiju. Atsvaidzināšanas pilvaras tiks automātiski noņemtas, kad Jūs izrakstīsieties. Jūsu kontam šobrīd aktīvas ir sekojošas atsvaidzināšanas pilvaras.",
+ "header": "Atsvaidzināšanas pilnvaras",
+ "last_used": "Pēdējo reizi izmantota {date} no {location}",
+ "not_used": "Nekad nav izmantots",
+ "token_title": "{clientId} atsvaidzināšanas pilnvara"
+ },
+ "suspend": {
+ "description": "Vai pārtraukt savienojumu ar serveri pēc 5 neaktivitātes minūtēm?",
+ "header": "Automātiski pārtraukt savienojumu"
+ },
+ "themes": {
+ "accent_color": "Akcenta krāsa",
+ "dark_mode": {
+ "auto": "Auto",
+ "dark": "Tumša",
+ "light": "Gaiša"
+ },
+ "dropdown_label": "Tēma",
+ "error_no_theme": "Nav nevienas tēmas",
+ "header": "Tēma",
+ "link_promo": "Uzziniet par tēmām",
+ "primary_color": "Galvenā krāsa",
+ "reset": "Atiestatīt"
+ },
+ "time_format": {
+ "description": "Izvēlieties laika attēlošanas formātu.",
+ "dropdown_label": "Laika formāts",
+ "formats": {
+ "12": "12 stundas (AM/PM)",
+ "24": "24 stundas",
+ "language": "Auto (izmantot valodas iestatījumu)",
+ "system": "Izmantot sistēmas lokalizāciju"
+ },
+ "header": "Laika formāts"
+ },
+ "vibrate": {
+ "description": "Iespējot vai atspējot vibrāciju šajā ierīcē, kontrolējot ierīces.",
+ "header": "Vibrācija"
+ }
+ }
+ },
+ "sidebar": {
+ "external_app_configuration": "Lietotņu konfigurēšana"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/nb.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/nb.json
new file mode 100644
index 00000000..e853c424
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/nb.json
@@ -0,0 +1,4673 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Config-oppføring",
+ "device": "Enhet",
+ "integration": "Integrasjon",
+ "user": "Bruker"
+ }
+ },
+ "groups": {
+ "owner": "Eier",
+ "system-admin": "Administratorer",
+ "system-read-only": "Brukere med lesetilgang",
+ "system-users": "Brukere"
+ },
+ "panel": {
+ "calendar": "Kalender",
+ "config": "Konfigurasjon",
+ "developer_tools": "Utviklerverktøy",
+ "energy": "Energi",
+ "history": "Historie",
+ "logbook": "Loggbok",
+ "mailbox": "Postkasse",
+ "map": "Kart",
+ "media_browser": "Medieleser",
+ "profile": "Profil",
+ "shopping_list": "Handleliste",
+ "states": "Oversikt"
+ },
+ "state": {
+ "default": {
+ "off": "Av",
+ "on": "På",
+ "unavailable": "Utilgjengelig",
+ "unknown": "Ukjent"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "",
+ "off": "Av",
+ "on": "På"
+ },
+ "hvac_action": {
+ "cooling": "Kjøling",
+ "drying": "Tørking",
+ "fan": "Vifte",
+ "heating": "Oppvarming",
+ "idle": "Inaktiv",
+ "off": "Av"
+ },
+ "preset_mode": {
+ "activity": "Aktivitet",
+ "away": "Borte",
+ "boost": "Øke",
+ "comfort": "Komfort",
+ "eco": "Øko",
+ "home": "Hjem",
+ "none": "Ingen",
+ "sleep": "Sove"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "",
+ "away": "Borte",
+ "baby": "",
+ "boost": "Øke",
+ "comfort": "Komfort",
+ "eco": "Øko",
+ "home": "Hjem",
+ "normal": "Normal",
+ "sleep": "Sove"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Aktivert",
+ "armed_away": "Aktivert",
+ "armed_custom_bypass": "Aktivert",
+ "armed_home": "Aktivert",
+ "armed_night": "Aktivert",
+ "armed_vacation": "Aktivert",
+ "arming": "Aktivererer",
+ "disarmed": "Deaktivere",
+ "disarming": "Deaktivere",
+ "pending": "Venter",
+ "triggered": "Utløs"
+ },
+ "default": {
+ "entity_not_found": "Enheten ble ikke funnet",
+ "error": "Feil",
+ "unavailable": "Utilgj",
+ "unknown": "Ukjent"
+ },
+ "device_tracker": {
+ "home": "Hjemme",
+ "not_home": "Borte"
+ },
+ "person": {
+ "home": "Hjemme",
+ "not_home": "Borte"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Standard",
+ "header": "Lyd",
+ "input": "Inngang",
+ "output": "Utgang"
+ },
+ "network": {
+ "container": "Container",
+ "disabled": "Deaktivert",
+ "header": "Nettverk",
+ "host": "Vert"
+ },
+ "no_configuration": "Dette tillegget eksponerer ikke konfigurasjon så du kan tulle med den…",
+ "options": {
+ "edit_in_ui": "Rediger i brukergrensesnittet",
+ "edit_in_yaml": "Rediger i YAML",
+ "header": "Alternativer",
+ "invalid_yaml": "Ugyldig YAML",
+ "show_unused_optional": "Vis ubrukte valgfrie konfigurasjonsalternativer"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Kunne ikke hente endringslogg for tillegg",
+ "go_to_config": "Rediger konfig",
+ "install": "Kunne ikke installere tillegget",
+ "restart": "Kunne ikke starte tillegget på nytt",
+ "start": "Kunne ikke starte tillegget",
+ "start_invalid_config": "Gå til konfigurasjon",
+ "stop": "Kunne ikke stoppe tillegget",
+ "uninstall": "Kunne ikke avinstallere tillegget",
+ "validate_config": "Kunne ikke validere tilleggskonfigurasjonen"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor ('Application Armor') er en sikkerhetsmodul for Linux-kjernen som begrenser tilleggsfunksjoner som nettverkstilgang, rå socket-tilgang og tillatelse til å lese, skrive eller kjøre bestemte filer.\n\nTilleggsforfattere kan oppgi sikkerhetsprofilene sine, optimalisert for tillegget, eller be om at det deaktiveres. Hvis AppArmor er deaktivert, vil det øke sikkerhetsrisikoen og har derfor en negativ innvirkning på sikkerhetspoengsummen for tillegget.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "Et tillegg kan autentisere brukere mot Home Assistant, slik at tillegg kan gi brukerne muligheten til å logge på applikasjoner som kjører i tillegg, ved hjelp av brukernavnet / passordet til Home Assistant. Dette merket indikerer om tilleggsforfatteren ber om denne muligheten.",
+ "title": "Godkjenning av Home Assistant"
+ },
+ "docker_api": {
+ "description": "Tilleggsforfatteren har bedt om at tillegget skal ha ledertilgang til Docker-forekomsten som kjører på systemet ditt. Denne modusen gir tilleggsprogrammet full tilgang og kontroll til hele ditt Home Assistant system, noe som gir sikkerhetsrisiko og kan skade systemet ditt når det misbrukes. Derfor påvirker denne funksjonen tilleggssikkerhetspoengene negativt.\n\nDette tilgangsnivået gis ikke automatisk og må bekreftes av deg. For å gjøre dette må du deaktivere beskyttelsesmodus på tillegget manuelt. Deaktiver bare beskyttelsesmodus hvis du vet, trenger OG stoler på kilden til dette tillegget.",
+ "title": "Full Docker-tilgang"
+ },
+ "full_access": {
+ "description": "Dette tillegget får full tilgang til maskinvaren til systemet ditt, på forespørsel fra tilleggsforfatteren. Tilgang er sammenlignbar med den privilegerte modusen i Docker. Siden dette åpner mulige sikkerhetsrisikoer, påvirker denne funksjonen tilleggssikkerhetspoengene negativt. \n\nDette tilgangsnivået gis ikke automatisk og må bekreftes av deg. For å gjøre dette må du deaktivere beskyttelsesmodus på tillegget manuelt. Deaktiver bare beskyttelsesmodus hvis du vet, trenger OG stoler på kilden til dette tillegget.",
+ "title": "Full maskinvaretilgang"
+ },
+ "hassio_api": {
+ "description": "Tillegget ble gitt tilgang til Supervisor API, på forespørsel fra tilleggsforfatteren. Som standard kan tillegget få tilgang til generell versjonsinformasjon om systemet ditt. Når tillegget ber om \"manager\" eller \"admin\" nivå tilgang til API, vil det få tilgang til å kontrollere flere deler av Home Assistant-systemet. Denne tillatelsen er angitt av dette merket og vil påvirke tilleggssikkerhetspoengene for tillegget negativt.",
+ "title": "Supervisor API-tilgang"
+ },
+ "homeassistant_api": {
+ "description": "Dette tillegget har tilgang til den kjørende Home Assistant forekomsten direkte via Home Assistant API. Denne modusen håndterer også autentisering for tillegget, som gjør det mulig for et tillegg å samhandle med Home Assistant uten behov for ekstra autentiseringstokener.",
+ "title": "Home Assistant API-tilgang"
+ },
+ "host_network": {
+ "description": "Tillegg kjøres vanligvis i sitt eget isolerte nettverkslag, noe som forhindrer dem i å få tilgang til nettverket til vertsoperativsystemet. I noen tilfeller kan denne nettverksisolasjonen begrense tillegg når det gjelder å tilby sine tjenester, og isolasjonen kan derfor løftes av tilleggsforfatteren, noe som gir tilleggsprogrammet full tilgang til vertsmaskinens nettverksfunksjoner. Dette gir tilleggsprogrammet flere nettverksmuligheter, men senker sikkerheten, og derfor vil sikkerhetsvurderingen av tillegget senkes når dette alternativet brukes av tillegget.",
+ "title": "Vertsnettverk"
+ },
+ "host_pid": {
+ "description": "Vanligvis er prosessene tillegget kjører, isolert fra alle andre systemprosesser. Tilleggsforfatteren har bedt tillegget om å ha tilgang til systemprosessene som kjører på vertssystemforekomsten, og la tillegget gyte prosesser på vertssystemet også. Denne modusen gir tillegget full tilgang og kontroll til hele Home Assistant-systemet, som legger til sikkerhetsrisikoer, og kan skade systemet når det misbrukes. Denne funksjonen påvirker derfor sikkerhetspoengsummen negativt.\n\nDette tilgangsnivået gis ikke automatisk og må bekreftes av deg. Hvis du vil gjøre dette, må du deaktivere beskyttelsesmodus på tillegget manuelt. Deaktiver bare beskyttelsesmodus hvis du vet, trenger og stoler på kilden til dette tillegget.",
+ "title": "Vert behandler navneområdet"
+ },
+ "ingress": {
+ "description": "Dette tillegget bruker Ingress til å bygge grensesnittet sikkert inn i Home Assistant.",
+ "title": "Ingress"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "Auth",
+ "core": "Kjerne",
+ "docker": "Docker",
+ "hardware": "Maskinvare",
+ "hass": "Hass",
+ "hassio": "HassIO",
+ "host": "Vert",
+ "host_pid": "vert pid",
+ "ingress": "ingress",
+ "rating": "Vurdering",
+ "stage": "Nivå"
+ },
+ "rating": {
+ "description": "Home Assistant gir en sikkerhetsvurdering for hvert av tilleggene, som indikerer risikoen ved bruk av dette tillegget. Jo mer tilgang et tillegg krever på systemet ditt, desto lavere poengsum, og dermed øker den mulige sikkerhetsrisikoen.\n\nEn poengsum er på en skala fra 1 til 6. Der 1 er den laveste poengsummen (ansett som den mest usikre og høyeste risikoen) og en score på 6 er den høyeste poengsummen (regnes som den sikreste og laveste risikoen).",
+ "title": "Sikkerhetsvurdering for tillegg"
+ },
+ "role": {
+ "admin": "admin",
+ "backup": "sikkerhetskopi",
+ "default": "Standard",
+ "homeassistant": "homeassistant",
+ "manager": "Manager"
+ },
+ "stage": {
+ "description": "Tillegg kan ha en av tre trinn: \n\n{icon_stable} ** Stabil **: Disse er tillegg som er klare til å brukes i produksjon.\n\n{icon_experimental} ** Eksperimentell **: Disse kan inneholde feil og kan være uferdige.\n\n{icon_deprecated} ** Utdatert **: Disse tilleggene mottar ikke lenger noen oppdateringer.",
+ "title": "Tilleggstrinn"
+ },
+ "stages": {
+ "deprecated": "Avviklet",
+ "experimental": "Eksperimentell"
+ }
+ },
+ "changelog": "Endringslogg",
+ "cpu_usage": "Tilleggets CPU-forbruk",
+ "hostname": "Vertsnavn",
+ "install": "Installer",
+ "new_update_available": "{name} {version} er tilgjengelig",
+ "not_available_arch": "Dette tillegget er ikke kompatibelt med prosessoren på enheten din eller operativsystemet du har installert på enheten",
+ "not_available_version": "Du kjører Home Assistant {core_version_installed}, for å oppdatere til denne versjonen av tillegget trenger du minst versjon {core_version_needed} av Home Assistant",
+ "open_web_ui": "Åpne nettgrensesnitt",
+ "option": {
+ "auto_update": {
+ "description": "Oppdater tillegget automatisk når det er en ny versjon tilgjengelig",
+ "title": "Automatisk oppdatering"
+ },
+ "boot": {
+ "description": "Få tillegget til å starte under en systemoppstart",
+ "title": "Start ved oppstart"
+ },
+ "ingress_panel": {
+ "description": "Legg til dette tillegget i sidepanelet",
+ "title": "Vis i sidepanelet"
+ },
+ "protected": {
+ "description": "Blokkerer forhøyet systemtilgang fra tillegget",
+ "title": "Beskyttelsesmodus"
+ },
+ "watchdog": {
+ "description": "Dette vil starte tillegget hvis det krasjer",
+ "title": "Vakthund"
+ }
+ },
+ "protection_mode": {
+ "content": "Beskyttelsesmodus på dette tillegget er deaktivert! Dette gir tillegget full tilgang til hele systemet, noe som utgjør en sikkerhetsrisiko, og kan skade systemet ditt om det brukes feil. Deaktiver bare beskyttelsesmodus hvis du vet, trenger OG stoler på kilden til dette tillegget.",
+ "enable": "Aktivér",
+ "title": "Beskyttelsesmodus er deaktivert!"
+ },
+ "ram_usage": "Tillegg RAM forbruk",
+ "rebuild": "Gjenoppbygg",
+ "restart": "Omstart",
+ "start": "Start",
+ "stop": "Stopp",
+ "uninstall": "Avinstaller",
+ "visit_addon_page": "Gå til {name}-siden for flere detaljer"
+ },
+ "documentation": {
+ "get_documentation": "Kunne ikke hente tilleggsdokumentasjon, {error}"
+ },
+ "failed_to_reset": "Kunne ikke tilbakestille tilleggskonfigurasjonen, {error}",
+ "failed_to_save": "Kunne ikke lagre tilleggskonfigurasjonen, {error}",
+ "logs": {
+ "get_logs": "Kunne ikke hente tilleggslogger, {error}"
+ },
+ "panel": {
+ "configuration": "Konfigurasjon",
+ "documentation": "Dokumentasjon",
+ "info": "Info",
+ "log": "Logg"
+ },
+ "state": {
+ "installed": "Tillegget er installert",
+ "not_available": "Tillegget er ikke tilgjengelig for systemet ditt",
+ "not_installed": "Tillegget er ikke installert"
+ }
+ },
+ "backup": {
+ "addons": "Tillegg",
+ "confirm_password": "Bekreft passord for sikkerhetskopiering",
+ "could_not_create": "Kan ikke opprette sikkerhetskopi",
+ "create": "Opprett",
+ "create_backup": "Opprett sikkerhetskopi",
+ "create_blocked_not_running": "Det er ikke mulig å opprette en sikkerhetskopi akkurat nå fordi systemet er i {state}-tilstand.",
+ "created": "Opprettet",
+ "delete_backup_confirm": "slett",
+ "delete_backup_text": "Vil du slette {number} {number, plural,\n one {sikkerhetskopi}\n other {sikkerhetskopier}\n}?",
+ "delete_backup_title": "Slett sikkerhetskopi",
+ "delete_selected": "Slett valgte sikkerhetskopier",
+ "download_backup": "Last ned backup",
+ "enter_password": "Vennligst skriv inn et passord",
+ "failed_to_delete": "Kunne ikke slette",
+ "folders": "Mapper",
+ "full_backup": "Full sikkerhetskopiering",
+ "name": "Navn på sikkerhetskopi",
+ "no_backups": "Du har ingen sikkerhetskopier ennå.",
+ "partial_backup": "Delvis sikkerhetskopiering",
+ "password": "Passord for sikkerhetskopiering",
+ "password_protection": "Passordbeskyttelse",
+ "passwords_not_matching": "Passordene samsvarer ikke",
+ "select_type": "Velg hva du vil gjenopprette",
+ "selected": "{number} valgt",
+ "size": "Størrelse",
+ "type": "Type sikkerhetskopiering",
+ "upload_backup": "Last opp sikkerhetskopi"
+ },
+ "common": {
+ "cancel": "Avbryt",
+ "close": "Lukk",
+ "description": "Beskrivelse",
+ "error": {
+ "unknown": "Ukjent feil",
+ "update_failed": "Oppdatering mislyktes"
+ },
+ "failed_to_restart_name": "Kunne ikke starte {name} på nytt",
+ "failed_to_update_name": "Kunne ikke oppdatere {name}",
+ "learn_more": "Lær mer",
+ "menu": "Meny",
+ "new_version_available": "Ny versjon tilgjengelig",
+ "newest_version": "Nyeste versjon",
+ "no": "Nei",
+ "refresh": "Oppdater",
+ "release_notes": "Utgivelsesmerknader",
+ "reload": "Last inn på nytt",
+ "reset_defaults": "Tilbakestill til standardinnstillinger",
+ "reset_options": "Tilbakestill innstillinger",
+ "restart": "Omstart",
+ "restart_name": "Start {name} på nytt",
+ "review": "anmeldelse",
+ "running_version": "Du kjører for øyeblikket versjon {version}",
+ "save": "Lagre",
+ "show": "Vis",
+ "show_more": "Vis mer informasjon om dette",
+ "update": "Oppdater",
+ "update_available": "{count, plural,\n one {Oppdatering}\n other {{count} oppdateringer}\n} pending",
+ "version": "Versjon",
+ "yes": "Ja"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Er du sikker på at du vil tilbakestille alle innstillingene dine?",
+ "title": "Tilbakestill innstillinger"
+ },
+ "restart": {
+ "text": "Er du sikker på at du vil starte {name} på nytt?",
+ "title": "Start {name} på nytt"
+ },
+ "update": {
+ "text": "Er du sikker på at du vil oppdatere {name} til version {version} ?",
+ "title": "Oppdater {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Ny versjon tilgjengelig",
+ "addon_running": "Tillegget kjører",
+ "addon_stopped": "Tillegget er stoppet",
+ "addons": "Installerte tillegg",
+ "no_addons": "Du har ikke installert tilleggsprogrammer ennå. Gå over til tilleggsbutikken for å komme i gang!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Avbryt",
+ "description": "Du bruker for tiden '' {current_path} '' som datadisk. Når du flytter datadisker, startes enheten på nytt, og det anslås å ta {time} minutter. Installasjonen av Home Assistant vil ikke være tilgjengelig i denne perioden. Ikke koble fra strømmen under flyttingen!",
+ "loading_devices": "Laster inn entiteter",
+ "move": "Flytt",
+ "moving": "Flytte datadisk",
+ "moving_desc": "Starter på nytt og flytter datadisk. Vær tålmodig",
+ "no_devices": "Finner ingen passende tilkoblede enheter",
+ "select_device": "Velg ny datadisk",
+ "title": "Flytt datadisk"
+ },
+ "hardware": {
+ "attributes": "Attributter",
+ "device_path": "Bane til enhet",
+ "id": "ID",
+ "search": "Søk i maskinvare",
+ "subsystem": "Delsystem",
+ "title": "Maskinvare"
+ },
+ "network": {
+ "connected_to": "Koblet til {ssid}",
+ "dhcp": "",
+ "disabled": "Deaktivert",
+ "dns_servers": "DNS-servere",
+ "failed_to_change": "Kunne ikke endre nettverksinnstillingene",
+ "gateway": "Gateway-adresse",
+ "ip_netmask": "IP-adresse / nettmaske",
+ "open": "Åpen",
+ "scan_ap": "Skann etter tilgangspunkter",
+ "static": "Statisk",
+ "title": "Nettverksinnstillinger",
+ "unsaved": "Du har ikke lagrede endringer, disse vil gå tapt hvis du bytter fane, vil du fortsette?",
+ "warning": "Hvis du endrer Wi-Fi, IP eller gateway-adressene, kan du miste tilkoblingen!",
+ "wep": "WEP",
+ "wpa": "WPA-PSK"
+ },
+ "registries": {
+ "add_new_registry": "Legg til nytt register",
+ "add_registry": "Legg til register",
+ "failed_to_add": "Kunne ikke legge til registeret",
+ "failed_to_remove": "Kunne ikke fjerne registeret",
+ "no_registries": "Ingen registre er konfigurert",
+ "password": "Passord",
+ "registry": "Register",
+ "remove": "Fjern",
+ "title_add": "Legg til nytt containerregister",
+ "title_manage": "Behandle containerregistre",
+ "username": "Brukernavn"
+ },
+ "repositories": {
+ "add": "Legg til",
+ "remove": "Fjern",
+ "title": "Behandle tilleggspakkelagre",
+ "used": "Repositoriet er i bruk for installerte tillegg og kan ikke fjernes."
+ },
+ "restart_addon": {
+ "confirm_text": "Start tillegg på nytt",
+ "text": "Ønsker du å starte tillegget på nytt med endringene dine?"
+ },
+ "update": {
+ "backup": "Sikkerhetskopi",
+ "create_backup": "Opprett en sikkerhetskopi av {name} før oppdatering",
+ "creating_backup": "Oppretter sikkerhetskopi av {name}",
+ "updating": "Oppdaterer {name} til version {version}"
+ }
+ },
+ "my": {
+ "error": "En ukjent feil har oppstått",
+ "error_addon_no_ingress": "Det etterspurte tillegget støtter ikke ingress",
+ "error_addon_not_found": "Tillegget ble ikke funnet",
+ "error_addon_not_installed": "Det forespurte tillegget er ikke installert. Vennligst installer den først",
+ "error_addon_not_started": "Det valgte tillegget kjører ikke. Vennligst start den først",
+ "faq_link": "Vanlige spørsmål om Min Home Assistant",
+ "not_supported": "Denne viderekoblingen støttes ikke av Home Assistant-forekomsten. Se på {link} for viderekoblinger som støttes, og hvilken versjon de ble introdusert."
+ },
+ "panel": {
+ "addons": "Tillegg",
+ "backups": "Sikkerhetskopier",
+ "dashboard": "Dashboard",
+ "store": "Tilleggsbutikk",
+ "system": "System"
+ },
+ "store": {
+ "check_updates": "Sjekk for oppdateringer",
+ "missing_addons": "Manglende tillegg? Aktivere avansert modus på din brukerprofilside",
+ "no_results_found": "Ingen resultater funnet i {repository}",
+ "registries": "Registre",
+ "repositories": "Datalagre"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Core CPU-forbruk",
+ "ram_usage": "Core RAM forbruk"
+ },
+ "host": {
+ "change": "Endre",
+ "change_hostname": "Endre vertsnavn",
+ "confirm_reboot": "Er du sikker på at du vil starte verten på nytt?",
+ "confirm_shutdown": "Er du sikker på at du vil slå av verten?",
+ "deployment": "Distribusjon",
+ "docker_version": "Docker versjon",
+ "emmc_lifetime_used": "eMMC levetid brukt",
+ "failed_to_get_hardware_list": "Kunne ikke hente maskinvarelisten",
+ "failed_to_import_from_usb": "Kunne ikke importere fra USB",
+ "failed_to_move": "Kunne ikke flytte datadisken",
+ "failed_to_reboot": "Kunne ikke starte verten på nytt",
+ "failed_to_set_hostname": "Angi vertsnavn mislyktes",
+ "failed_to_shutdown": "Kunne ikke slå av verten",
+ "hardware": "Maskinvare",
+ "hostname": "Vertsnavn",
+ "import_from_usb": "Importer fra USB",
+ "ip_address": "IP adresse",
+ "move_datadisk": "Flytt datadisk",
+ "new_hostname": "Vennligst skriv inn et nytt vertsnavn:",
+ "operating_system": "Operativsystem",
+ "reboot_host": "Start verten på nytt",
+ "shutdown_host": "Slå av vert",
+ "used_space": "Brukt lagringsplass"
+ },
+ "log": {
+ "get_logs": "Kunne ikke hente {provider}-logger, {error}",
+ "log_provider": "Loggleverandør"
+ },
+ "supervisor": {
+ "beta_backup": "Forsikre deg om at du har sikkerhetskopier av dataene dine før du aktiverer denne funksjonen",
+ "beta_join_confirm": "Vil du bli med i beta-kanalen?",
+ "beta_release_items": "Dette inkluderer betaversjoner for:",
+ "beta_warning": "Betautgivelser er for testere og tidlige brukere og kan inneholde ustabile kodeendringer",
+ "channel": "Kanal",
+ "cpu_usage": "Supervisor CPU-forbruk",
+ "failed_to_reload": "Kunne ikke laste inn Supervisor på nytt",
+ "failed_to_set_option": "Kunne ikke sette Supervisor-innstilling",
+ "failed_to_update": "Kunne ikke oppdatere Supervisor",
+ "join_beta_action": "Bli med i beta-kanalen",
+ "join_beta_description": "Få beta-oppdateringer for Home Assistant (RCs), Supervisor og vert",
+ "leave_beta_action": "Forlat beta-kanalen",
+ "leave_beta_description": "Få stabile oppdateringer for Home Assistant, Supervisor og vert",
+ "ram_usage": "Supervisor RAM forbruk",
+ "reload_supervisor": "Last inn Supervisor på nytt",
+ "search": "Søk",
+ "share_diagnostics": "Del diagnostikk",
+ "share_diagnostics_description": "Del krasjrapporter og diagnoseinformasjon",
+ "share_diagonstics_description": "Vil du automatisk dele krasjrapporter og diagnostisk informasjon når Supervisor møter på uventede feil? {line_break} Dette vil tillate oss å løse problemene, informasjonen er bare tilgjengelig for Home Assistant Core-teamet og deles ikke med andre. {line_break} Dataene inkluderer ikke privat / sensitiv informasjon, og du kan deaktivere dette i innstillingene når som helst.",
+ "share_diagonstics_title": "Hjelp med å forbedre Home Assistant",
+ "unhealthy_description": "Å kjøre en usunn installasjon vil forårsake problemer. Nedenfor er en liste over problemer som er funnet med installasjonen din. Klikk på lenkene for å lære hvordan du kan løse problemene.",
+ "unhealthy_reason": {
+ "docker": "Docker-miljøet fungerer ikke som det skal",
+ "privileged": "Supervisor er ikke privilegert",
+ "setup": "Installasjonen av Supervisor mislyktes",
+ "supervisor": "Supervisor kunne ikke oppdatere",
+ "untrusted": "Oppdaget ikke-klarert innhold"
+ },
+ "unhealthy_title": "Installasjonen din er usunn",
+ "unsupported_description": "Nedenfor er en liste over problemer som er funnet med installasjonen din. Klikk på lenkene for å lære hvordan du kan løse problemene.",
+ "unsupported_reason": {
+ "apparmor": "AppArmor er ikke aktivert på verten",
+ "container": "Containere som er kjent for å forårsake problemer",
+ "content-trust": "Validering av innholds klarering er deaktivert",
+ "content_trust": "Validering av innholds klarering er deaktivert",
+ "dbus": "",
+ "docker_configuration": "Docker-konfigurasjon",
+ "docker_version": "Docker-versjon",
+ "job_conditions": "Ignorerte arbeidsforhold",
+ "lxc": "",
+ "network_manager": "Nettverksbehandler",
+ "os": "Operativsystem",
+ "os_agent": "OS-agent",
+ "privileged": "Supervisor er ikke privilegert",
+ "software": "Programvare som ikke støttes oppdaget",
+ "source_mods": "Kildeendringer",
+ "systemd": ""
+ },
+ "unsupported_title": "Du kjører en installasjon som ikke støttes",
+ "update_supervisor": "Oppdater Supervisor",
+ "warning": "ADVARSEL"
+ }
+ },
+ "update_available": {
+ "core_note": "Supervisor vil rulles tilbake til versjon {version} hvis din instans ikke starter etter oppdateringen.",
+ "create_backup": "Opprett sikkerhetskopi før oppdatering",
+ "creating_backup": "Oppretter sikkerhetskopi av {name}",
+ "description": "Du har {version} installert. Klikk oppdater for å oppdatere til versjon {newest_version}",
+ "no_update": "Ingen oppdatering tilgjengelig for {name}",
+ "open_release_notes": "Åpne utgivelsesmerknader",
+ "update_name": "Oppdater {name}",
+ "updating": "Oppdaterer {name} til versjon {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Vil du forbli innlogget på denne enheten?",
+ "confirm": "Ja",
+ "decline": "Nei"
+ },
+ "backup": {
+ "upload_backup": "Last opp backup"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Aktiver borte",
+ "arm_custom_bypass": "Tilpasset bypass",
+ "arm_home": "Aktiver hjemme",
+ "arm_night": "Aktiver natt",
+ "arm_vacation": "Aktiver ferie",
+ "clear_code": "Tøm",
+ "code": "Kode",
+ "disarm": "Deaktivere"
+ },
+ "area": {
+ "area_not_found": "Fant ikke området."
+ },
+ "automation": {
+ "last_triggered": "Sist utløst",
+ "trigger": "Kjør handlinger"
+ },
+ "button": {
+ "press": "trykk"
+ },
+ "camera": {
+ "not_available": "Bilde ikke tilgjengelig"
+ },
+ "climate": {
+ "aux_heat": "Aux varme",
+ "away_mode": "Bortemodus",
+ "cooling": "{name} kjøler",
+ "current_temperature": "{name} nåværende temperatur",
+ "currently": "Er nå",
+ "fan_mode": "Viftemodus",
+ "heating": "{name} varmer",
+ "high": "høy",
+ "low": "lav",
+ "on_off": "På / av",
+ "operation": "Operasjon",
+ "preset_mode": "Forhåndsinnstilling",
+ "swing_mode": "Svingmodus",
+ "target_humidity": "Satt luftfuktighet",
+ "target_temperature": "Satt temperatur",
+ "target_temperature_entity": "{name} satt temperatur",
+ "target_temperature_mode": "{name} satt temperatur {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "redusere",
+ "increment": "øke",
+ "reset": "tilbakestille"
+ }
+ },
+ "cover": {
+ "position": "Posisjon",
+ "tilt_position": "Vend posisjon"
+ },
+ "fan": {
+ "direction": "Retning",
+ "forward": "Framover",
+ "oscillate": "Vandring",
+ "preset_mode": "Forhåndsinnstilt modus",
+ "reverse": "Omvendt",
+ "speed": "Hastighet"
+ },
+ "humidifier": {
+ "humidity": "Målfuktighet",
+ "mode": "Modus",
+ "on_entity": "{name} på",
+ "target_humidity_entity": "{name} målfuktighet"
+ },
+ "light": {
+ "brightness": "Lysstyrke",
+ "cold_white_value": "Kald hvit lysstyrke",
+ "color_brightness": "Farge lysstyrke",
+ "color_temperature": "Fargetemperatur",
+ "effect": "Effekt",
+ "warm_white_value": "Varm hvit lysstyrke",
+ "white_value": "Hvit lysstyrke"
+ },
+ "lock": {
+ "code": "Kode",
+ "lock": "Lås",
+ "unlock": "Lås opp"
+ },
+ "media_player": {
+ "browse_media": "Bla gjennom medier",
+ "media_next_track": "Neste spor",
+ "media_pause": "Pause",
+ "media_play": "Spill av",
+ "media_play_pause": "Spill av/pause",
+ "media_previous_track": "Forrige spor",
+ "media_stop": "Stopp",
+ "media_volume_down": "Volum ned",
+ "media_volume_mute": "Dempet volum",
+ "media_volume_unmute": "Opphev demping av volum",
+ "media_volume_up": "Volum opp",
+ "nothing_playing": "Ingenting spiller",
+ "sound_mode": "Lydmodus",
+ "source": "Kilde",
+ "text_to_speak": "Tekst til tale",
+ "turn_off": "Slå av",
+ "turn_on": "Slå på"
+ },
+ "persistent_notification": {
+ "dismiss": "Avvis"
+ },
+ "scene": {
+ "activate": "Aktiver"
+ },
+ "script": {
+ "cancel": "Avbryt",
+ "cancel_multiple": "Avbryt {number}",
+ "run": "Kjør"
+ },
+ "service": {
+ "run": "Kjør"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "Avbryt",
+ "finish": "Ferdig",
+ "pause": "",
+ "start": ""
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Gjenoppta rengjøring",
+ "return_to_base": "Returner til dokken",
+ "start_cleaning": "Start rengjøring",
+ "turn_off": "Slå av",
+ "turn_on": "Slå på"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Bortemodus",
+ "currently": "Temperatur nå",
+ "on_off": "På / av",
+ "operation": "Drift",
+ "target_temperature": "Ønsket temperatur"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Lufttrykk",
+ "humidity": "Luftfuktighet",
+ "precipitation": "Nedbør",
+ "temperature": "Temperatur",
+ "visibility": "Sikt",
+ "wind_speed": "Vindstyrke"
+ },
+ "cardinal_direction": {
+ "e": "Ø",
+ "ene": "ØNØ",
+ "ese": "ØSØ",
+ "n": "",
+ "ne": "NØ",
+ "nne": "NNØ",
+ "nnw": "NNV",
+ "nw": "NV",
+ "s": "",
+ "se": "SØ",
+ "sse": "SSØ",
+ "ssw": "SSV",
+ "sw": "SV",
+ "w": "V",
+ "wnw": "VNV",
+ "wsw": "VSV"
+ },
+ "day": "Dag",
+ "forecast": "Prognose",
+ "high": "Høy",
+ "low": "Lav",
+ "night": "Natt"
+ }
+ },
+ "common": {
+ "and": "og",
+ "back": "Tilbake",
+ "cancel": "Avbryt",
+ "clear": "Tøm",
+ "close": "Lukk",
+ "continue": "Fortsette",
+ "copied": "Kopiert",
+ "copied_clipboard": "Kopiert til utklippstavle",
+ "delete": "Slett",
+ "disable": "Deaktiver",
+ "enable": "Aktivér",
+ "error_required": "Nødvendig",
+ "help": "Hjelp",
+ "leave": "Forlate",
+ "loading": "Laster",
+ "menu": "Meny",
+ "move": "Flytt",
+ "next": "Neste",
+ "no": "Nei",
+ "not_now": "Ikke nå",
+ "overflow_menu": "Overløpsmeny",
+ "previous": "Forrige",
+ "refresh": "Oppdater",
+ "remove": "Fjerne",
+ "rename": "Gi nytt navn",
+ "save": "Lagre",
+ "skip": "Hopp over",
+ "stay": "Bli",
+ "submit": "Send inn",
+ "successfully_deleted": "Sletting vellykket",
+ "successfully_saved": "Lagring vellykket",
+ "undo": "Angre",
+ "yes": "Ja"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Tillegg",
+ "error": {
+ "fetch_addons": {
+ "description": "Det oppsto en feil ved lasting av tillegg.",
+ "title": "Feil ved innlasting av tillegg"
+ },
+ "no_supervisor": {
+ "description": "Tillegg støttes ikke.",
+ "title": "Ingen supervisor"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Legg til",
+ "failed_create_area": "Kunne ikke opprette område.",
+ "name": "Navn",
+ "text": "Fyll inn navnet på det nye området.",
+ "title": "Legg til nytt område"
+ },
+ "add_new": "Legg til nytt område…",
+ "area": "Område",
+ "clear": "Tøm",
+ "no_areas": "Du har ingen områder",
+ "no_match": "Fant ingen samsvarende områder",
+ "show_areas": "Vis områder"
+ },
+ "attributes": {
+ "expansion_header": "Attributter"
+ },
+ "blueprint-picker": {
+ "add_user": "Legg til bruker",
+ "remove_user": "Fjern bruker",
+ "select_blueprint": "Velg en Blueprint"
+ },
+ "calendar": {
+ "my_calendars": "Mine kalendere",
+ "today": "I dag"
+ },
+ "data-table": {
+ "clear": "Tøm",
+ "filtering_by": "Filtrering etter",
+ "hidden": "{number} skjult",
+ "no-data": "Ingen data",
+ "search": "Søk"
+ },
+ "date-range-picker": {
+ "end_date": "Sluttdato",
+ "ranges": {
+ "last_week": "Forrige uke",
+ "this_week": "Denne uken",
+ "today": "I dag",
+ "yesterday": "I går"
+ },
+ "select": "Velg",
+ "start_date": "Startdato"
+ },
+ "device-picker": {
+ "clear": "Tøm",
+ "device": "Enhet",
+ "no_area": "Ingen område",
+ "no_devices": "Du har ingen enheter",
+ "no_match": "Fant ingen samsvarende enheter",
+ "show_devices": "Vis enheter",
+ "toggle": "Veksle"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Attributt",
+ "show_attributes": "Vis attributter"
+ },
+ "entity-picker": {
+ "clear": "Tøm",
+ "edit": "Rediger",
+ "entity": "Entitet",
+ "no_match": "Fant ingen samsvarende entiteter",
+ "show_entities": "Vis entiteter"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "Historieintegrasjon deaktivert",
+ "loading_history": "Laster statushistorikk…",
+ "no_history_found": "Ingen statushistorikk funnet"
+ },
+ "logbook": {
+ "by": "av",
+ "by_service": "av tjenesten",
+ "entries_not_found": "Ingen loggbokhendelser funnet.",
+ "messages": {
+ "became_unavailable": "ble utilgjengelig",
+ "changed_to_state": "endret til {state}",
+ "cleared_device_class": "klar (ingen {device_class} oppdaget)",
+ "cleared_tampering": "fjernet manipulering",
+ "detected_device_class": "oppdaget {device_class}",
+ "detected_tampering": "oppdaget manipulering",
+ "is_closing": "stenger",
+ "is_opening": "åpner",
+ "rose": "soloppgang",
+ "set": "solnedgang",
+ "turned_off": "slått av",
+ "turned_on": "slått på",
+ "was_at_home": "ble oppdaget hjemme",
+ "was_at_state": "ble oppdaget på {state}",
+ "was_away": "ble oppdaget borte",
+ "was_closed": "ble lukket",
+ "was_connected": "var tilkoblet",
+ "was_disconnected": "ble frakoblet",
+ "was_locked": "ble låst",
+ "was_low": "var lav",
+ "was_normal": "var normal",
+ "was_opened": "ble åpnet",
+ "was_plugged_in": "ble tilkoblet",
+ "was_safe": "var trygg",
+ "was_unlocked": "ble låst opp",
+ "was_unplugged": "ble frakoblet",
+ "was_unsafe": "var utrygt"
+ },
+ "retrieval_error": "Kunne ikke laste loggboken",
+ "show_trace": "Vis sporing"
+ },
+ "media-browser": {
+ "audio_not_supported": "Nettleseren din støtter ikke lydelementet.",
+ "choose_player": "Velg spiller",
+ "class": {
+ "album": "Album",
+ "app": "App",
+ "artist": "Artist",
+ "channel": "Kanal",
+ "composer": "Komponist",
+ "contributing_artist": "Medvirkende artist",
+ "directory": "Bibliotek",
+ "episode": "",
+ "game": "Spill",
+ "genre": "Sjanger",
+ "image": "Bilde",
+ "movie": "Film",
+ "music": "Musikk",
+ "playlist": "Spilleliste",
+ "podcast": "Podcast",
+ "season": "Sesong",
+ "track": "Spor",
+ "tv_show": "TV Serie",
+ "url": "URL",
+ "video": "Video"
+ },
+ "documentation": "dokumentasjon",
+ "learn_adding_local_media": "Lær mer om å legge til medier i {documentation}.",
+ "local_media_files": "Plasser video-, lyd- og bildefilene dine i mediekatalogen for å kunne bla gjennom og spille dem av i nettleseren eller på støttede mediaspillere.",
+ "media-player-browser": "Nettleser for Mediespiller",
+ "media_browsing_error": "Feil ved medievisning",
+ "media_not_supported": "Browser Media Player støtter ikke denne typen medier",
+ "media_player": "Mediaspiller",
+ "no_items": "Ingen elementer",
+ "no_local_media_found": "Ingen lokale medier funnet",
+ "no_media_folder": "Det ser ut til at du ennå ikke har opprettet en mediekatalog.",
+ "pick": "Velg",
+ "pick-media": "Velg Media",
+ "play": "Spill av",
+ "play-media": "Spill media",
+ "setup_local_help": "Sjekk {documentation} for hvordan du konfigurerer lokale medier.",
+ "video_not_supported": "Nettleseren din støtter ikke videoelementet.",
+ "web-browser": "Nettleser"
+ },
+ "picture-upload": {
+ "label": "Bilde",
+ "unsupported_format": "Formatet støttes ikke, vennligst velge et JPEG-, PNG- eller GIF-bilde."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Skriv inn QR-kodeverdi",
+ "manual_input": "Du kan skanne QR-koden med en annen QR-skanner og lime inn koden i inndatafeltet nedenfor",
+ "not_supported": "Din nettleser støtter ikke QR-skanning.",
+ "only_https_supported": "Du kan bare bruke kameraet til å skanne en QR-kode når du bruker HTTPS.",
+ "select_camera": "Velg kamera"
+ },
+ "related-filter-menu": {
+ "filter": "Filter",
+ "filter_by_area": "Filtrer etter område",
+ "filter_by_device": "Filtrer etter enhet",
+ "filter_by_entity": "Filtrer etter enhet",
+ "filtered_by_area": "område: {area_name}",
+ "filtered_by_device": "enhet: {device_name}",
+ "filtered_by_entity": "enhet: {entity_name}"
+ },
+ "related-items": {
+ "area": "Område",
+ "automation": "Del av følgende automasjoner",
+ "device": "Enhet",
+ "entity": "Beslektede entiteter",
+ "group": "Del av følgende grupper",
+ "integration": "Integrasjon",
+ "no_related_found": "Ingen relaterte elementer funnet.",
+ "scene": "Del av følgende scener",
+ "script": "Del av følgende skript"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one {dag}\n other {dager}\n}",
+ "hour": "{count} {count, plural,\n one {time}\n other {timer}\n}",
+ "minute": "{count} {count, plural,\n one {minutt}\n other {minutter}\n}",
+ "second": "{count} {count, plural,\n one {sekund}\n other {sekunder}\n}",
+ "week": "{count} {count, plural,\n one {uke}\n other {uker}\n}"
+ },
+ "future_duration": {
+ "day": "Om {count} {count, plural,\n one {dag}\n other {dager}\n}",
+ "hour": "Om {count} {count, plural,\n one {time}\n other {timer}\n}",
+ "minute": "Om {count} {count, plural,\n one {minutt}\n other {minutter}\n}",
+ "second": "Om {count} {count, plural,\n one {sekund}\n other {sekunder}\n}",
+ "week": "Om {count} {count, plural,\n one {uke}\n other {uker}\n}"
+ },
+ "just_now": "Akkurat nå",
+ "never": "Aldri",
+ "past_duration": {
+ "day": "{count} {count, plural,\n one {dag}\n other {dager}\n} siden",
+ "hour": "{count} {count, plural,\n one {time}\n other {timer}\n} siden",
+ "minute": "{count} {count, plural,\n one {minutt}\n other {minutter}\n} siden",
+ "second": "{count} {count, plural,\n one {sekund}\n other {sekunder}\n} siden",
+ "week": "{count} {count, plural,\n one {uke}\n other {uker}\n} siden"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Dokumentasjon for integrering",
+ "required": "Dette feltet er påkrevd",
+ "service_data": "Tjenestedata",
+ "target": "Mål",
+ "target_description": "Hva skal denne tjenesten bruke som målrettede områder, enheter eller enheter."
+ },
+ "service-picker": {
+ "service": "Tjeneste"
+ },
+ "statistic-picker": {
+ "learn_more": "Lær mer om statistikk",
+ "missing_entity": "Hvorfor er ikke entiteten min oppført?",
+ "no_match": "Fant ingen samsvarende statistikk",
+ "no_statistics": "Du har ingen statistikk",
+ "statistic": "Statistikk"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Laster inn statistikk…",
+ "no_statistics_found": "Ingen statistikk funnet.",
+ "statistic_types": {
+ "max": "maks",
+ "mean": "gjennomsnitt",
+ "min": "min",
+ "sum": "sum"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Velg område",
+ "add_device_id": "Velg kilde",
+ "add_entity_id": "Velg enhet",
+ "expand": "Utvide",
+ "expand_area_id": "Del dette området inn i separate enheter og enheter.",
+ "expand_device_id": "Del denne enheten i separate enheter.",
+ "remove": "Fjern",
+ "remove_area_id": "Fjern område",
+ "remove_device_id": "Fjern enhet",
+ "remove_entity_id": "Fjern entitet"
+ },
+ "user-picker": {
+ "add_user": "Legg til bruker",
+ "no_user": "Ingen bruker",
+ "remove_user": "Fjern bruker"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Hvis nylig oppdagede enheter for {integration} skal legges til automatisk.",
+ "enable_new_entities_label": "Aktiver entiteter som nylig er lagt til.",
+ "enable_polling_description": "Hvis Home Assistant automatisk skal avstemme {integration} enheter for oppdateringer.",
+ "enable_polling_label": "Aktiver avstemning for oppdateringer.",
+ "restart_home_assistant": "Du må starte Home Assistant på nytt for at endringene skal tre i kraft.",
+ "title": "Systemalternativer for {integration}",
+ "update": "Oppdater"
+ },
+ "domain_toggler": {
+ "reset_entities": "Tilbakestill entiteter",
+ "title": "Veksle domener"
+ },
+ "entity_registry": {
+ "control": "Kontroll",
+ "customize_link": "enhetstilpasninger",
+ "dismiss": "Avvis",
+ "editor": {
+ "advanced": "Avanserte innstillinger",
+ "area": "Angi bare enhetsområde",
+ "area_note": "Enhetene til en enhet er som standard i samme område som enheten. Hvis du endrer området til denne enheten, vil den ikke lenger følge området på enheten.",
+ "change_device_area": "Endre enhetsområdet",
+ "confirm_delete": "Er du sikker på at du vil slette denne enheten?",
+ "delete": "Slett",
+ "device_class": "Vis som",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Dør",
+ "garage_door": "Garasje dør",
+ "opening": "Annen",
+ "window": "Vindu"
+ },
+ "cover": {
+ "door": "Dør",
+ "garage": "Garasje dør",
+ "window": "Vindu"
+ }
+ },
+ "device_disabled": "Enheten til denne enhtiteen er deaktivert",
+ "enabled_cause": "Deaktivert av {cause}.",
+ "enabled_delay_confirm": "De aktiverte enhetene blir lagt til i Home Assistant om {delay} sekunder",
+ "enabled_description": "Deaktiverte entiteter vil ikke bli lagt til i Home Assistant.",
+ "enabled_label": "Aktiver entitet",
+ "enabled_restart_confirm": "Start Home Assistant på nytt for å fullføre aktiveringen av enhetene",
+ "entity_id": "Entitets-ID",
+ "follow_device_area": "Følg enhetsområdet",
+ "icon": "Ikon",
+ "icon_error": "Ikoner bør være i formatet 'prefiks:ikonnavn', f.eks 'mdi:home'",
+ "name": "Navn",
+ "note": "Merk: Dette fungerer kanskje ikke ennå med alle integrasjoner.",
+ "open_device_settings": "Åpne enhetsinnstillinger",
+ "unavailable": "Denne enheten er utilgjengelig.",
+ "update": "Oppdater"
+ },
+ "faq": "dokumentasjon",
+ "info_customize": "Du kan overskrive noen attributter i delen {customize_link}.",
+ "no_unique_id": "Denne enheten ('' {entity_id} '') har ikke en unik ID, derfor kan dens innstillinger ikke administreres fra brukergrensesnittet. Se {faq_link} for mer informasjon.",
+ "related": "Relaterte",
+ "settings": "Innstillinger"
+ },
+ "generic": {
+ "cancel": "Avbryt",
+ "close": "Lukk",
+ "default_confirmation_title": "Er du sikker?",
+ "ok": "OK"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Opprinnelig verdi",
+ "maximum": "Maksimumsverdi",
+ "minimum": "Minimumsverdi",
+ "restore": "Gjenopprett den sist kjente verdien når Home Assistant starter",
+ "step": "Trinnstørrelse"
+ },
+ "generic": {
+ "icon": "Ikon",
+ "name": "Navn"
+ },
+ "input_datetime": {
+ "date": "Dato",
+ "datetime": "Dato og tid",
+ "mode": "Hva vil du legge inn",
+ "time": "Tid"
+ },
+ "input_number": {
+ "box": "Inndatafelt",
+ "max": "Maksimumsverdi",
+ "min": "Minimumsverdi",
+ "mode": "Visningsmodus",
+ "slider": "Glidebryter",
+ "step": "Trinnstørrelse",
+ "unit_of_measurement": "Måleenhet"
+ },
+ "input_select": {
+ "add": "Legg til",
+ "add_option": "Legg til alternativ",
+ "no_options": "Det er ingen alternativer ennå.",
+ "options": "Alternativer"
+ },
+ "input_text": {
+ "max": "Maksimumslengde",
+ "min": "Minimumslengde",
+ "mode": "Visningsmodus",
+ "password": "Passord",
+ "pattern": "Regex-mønster for validering på klientsiden",
+ "text": "Tekst"
+ },
+ "platform_not_loaded": "Integrasjonen av {platform} er ikke lastet. Legg den til i konfigurasjonen din enten ved å legge til 'default_config:' eller ''{platform}:''.",
+ "required_error_msg": "Dette feltet er påkrevd",
+ "timer": {
+ "duration": "Varighet"
+ },
+ "yaml_not_editable": "Innstillingene for denne entiteten kan ikke redigeres fra brukergrensesnittet. Bare entiteter som er satt opp fra brukergrensesnittet, kan konfigureres fra brukergrensesnittet."
+ },
+ "image_cropper": {
+ "crop": "Beskjære"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Lukk dekselet",
+ "close_tile_cover": "Lukk dekkevinkel",
+ "close_tilt_cover": "Lukk",
+ "open_cover": "Åpne dekselet",
+ "open_tilt_cover": "Åpne dekkevinkel",
+ "stop_cover": "Stopp deksel"
+ },
+ "details": "Detaljer",
+ "dismiss": "Avvis dialog",
+ "edit": "Redigér entitet",
+ "history": "Historie",
+ "last_changed": "Sist endret",
+ "last_updated": "Sist oppdatert",
+ "logbook": "Loggbok",
+ "person": {
+ "create_zone": "Opprett sone fra gjeldende plassering"
+ },
+ "remote": {
+ "activity": "Nåværende aktivitet"
+ },
+ "restored": {
+ "confirm_remove_text": "Er du sikker på at du vil fjerne denne entiteten?",
+ "confirm_remove_title": "Vil du fjerne entiteten?",
+ "not_provided": "Denne entiteten er ikke tilgjengelig for øyeblikket og er foreldreløs til en fjernet, endret eller ikke-fungerende integrasjon eller enhet.",
+ "remove_action": "Fjern entitet",
+ "remove_intro": "Hvis entiteten ikke lenger er i bruk, kan du rense opp ved å fjerne den."
+ },
+ "script": {
+ "last_action": "Siste handling",
+ "last_triggered": "Sist utløst"
+ },
+ "settings": "Entitetsinnstillinger",
+ "show_more": "Vis mer",
+ "sun": {
+ "elevation": "Elevasjon",
+ "rising": "Soloppgang",
+ "setting": "Solnedgang"
+ },
+ "updater": {
+ "title": "Oppdateringsanvisning"
+ },
+ "vacuum": {
+ "clean_spot": "Rengjør flekk",
+ "commands": "Støvsugerkommandoer:",
+ "fan_speed": "Viftehastighet",
+ "locate": "Lokaliser",
+ "pause": "",
+ "return_home": "Returner hjem",
+ "start": "",
+ "start_pause": "Start / Pause",
+ "status": "",
+ "stop": "Stopp"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Forsøk å analysere MQTT-meldinger som JSON",
+ "entities": "Entiteter",
+ "no_entities": "Ingen entiteter",
+ "no_triggers": "Ingen utløsere",
+ "payload_display": "Nyttelastvisning",
+ "recent_messages": "{n} sist mottatte melding(er)",
+ "show_as_yaml": "Vis som YAML",
+ "title": "{device} feilsøkingsinfo",
+ "triggers": "Utløsere"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Alternativer"
+ },
+ "loading": {
+ "loading_flow": "Vennligst vent mens alternativene for {integration} initialiseres",
+ "loading_step": "Laster inn neste steg for {integration}"
+ },
+ "success": {
+ "description": "Alternativene er lagret."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Områder",
+ "automation": "Automasjoner",
+ "blueprint": "Blueprinter",
+ "core": "Generelt",
+ "customize": "Tilpasninger",
+ "devices": "Enheter",
+ "energy": "Energi",
+ "entities": "Entiteter",
+ "helpers": "Hjelpere",
+ "info": "Informasjon",
+ "integrations": "Integrasjoner",
+ "logs": "Logger",
+ "lovelace": "Lovelace instrumentbord",
+ "person": "Personer",
+ "scene": "Scener",
+ "script": "Skript",
+ "server_control": "Serverstyring",
+ "tag": "Tagger",
+ "users": "Brukere",
+ "zone": "Soner"
+ },
+ "reload": {
+ "automation": "Automasjoner",
+ "command_line": "Kommandolinjeenheter",
+ "core": "Plassering og tilpasninger",
+ "filesize": "Enheter for filstørrelse",
+ "filter": "Filtrere entiteter",
+ "generic": "Generiske IP-kameraenheter",
+ "generic_thermostat": "Generiske termostatenheter",
+ "group": "Grupper, gruppeenheter og varslingstjenester",
+ "history_stats": "Historikkstatistiske enheter",
+ "homekit": "HomeKit",
+ "input_boolean": "Boolske inndata",
+ "input_datetime": "Inndata dato-tid",
+ "input_number": "Inndata tall",
+ "input_select": "Inndata valg",
+ "input_text": "Inndata tekst",
+ "min_max": "Min/maks enheter",
+ "mqtt": "Manuelt konfigurerte MQTT-enheter",
+ "person": "Personer",
+ "ping": "Ping binære sensorenheter",
+ "reload": "{domain}",
+ "rest": "Rest-enheter og varslingstjenester",
+ "rpi_gpio": "Raspberry Pi GPIO-enheter",
+ "scene": "Scener",
+ "script": "Skript",
+ "smtp": "SMTP-varslingstjenester",
+ "statistics": "Statistiske enheter",
+ "telegram": "Telegram varslingstjenester",
+ "template": "Malenheter",
+ "themes": "Temaer",
+ "trend": "Trend enheter",
+ "universal": "Enheter for universell mediaspiller",
+ "zone": "Soner"
+ },
+ "server_control": {
+ "perform_action": "{action} server",
+ "restart": "Omstart",
+ "stop": "Stopp"
+ },
+ "types": {
+ "navigation": "Navigere",
+ "reload": "Last inn på nytt",
+ "server_control": "Server"
+ }
+ },
+ "filter_placeholder": "Entitetsfilter",
+ "key_c_hint": "Trykk 'c' på hvilken som helst side for å åpne søkefeltet",
+ "nothing_found": "Fant ingenting!",
+ "title": "Hurtigsøk"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant hørte ikke noe",
+ "error": "Beklager, det har oppstått en feil",
+ "found": "Jeg fant følgende for deg:",
+ "how_can_i_help": "Hvordan kan jeg hjelpe?",
+ "label": "Fyll inn et spørsmål og trykk 'Enter'",
+ "label_voice": "Fyll inn og trykk 'Enter', eller trykk på mikrofonen for å snakke"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Legg til enheter via denne enheten",
+ "clusters": "Behandle Clusters",
+ "device_children": "Vis barn",
+ "reconfigure": "Rekonfigurer enhet",
+ "remove": "Fjern enhet",
+ "view_in_visualization": "Visning i visualisering",
+ "zigbee_information": "ZigBee-enhetssignatur"
+ },
+ "confirmations": {
+ "remove": "Er du sikker på at du vil fjerne enheten?"
+ },
+ "device_children": "Zigbee-enhet barn",
+ "device_signature": "ZigBee-enhetssignatur",
+ "last_seen": "Sist sett",
+ "manuf": "av {manufacturer}",
+ "no_area": "Intet område",
+ "power_source": "Strømkilde",
+ "quirk": "",
+ "services": {
+ "reconfigure": "Rekonfigurer ZHA-enhet (helbrede enhet). Bruk dette hvis du har problemer med enheten. Hvis den aktuelle enheten er en batteridrevet enhet, sørg for at den er våken og aksepterer kommandoer når du bruker denne tjenesten.",
+ "remove": "Fjern en enhet fra ZigBee-nettverket.",
+ "updateDeviceName": "Angi et egendefinert navn for denne enheten i enhetsregisteret.",
+ "zigbee_information": "Vis ZigBee-informasjon for enheten."
+ },
+ "unknown": "Ukjent",
+ "zha_device_card": {
+ "device_name_placeholder": "Endre enhetsnavn"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Attributt",
+ "battery_device_warning": "Du må vekke batteridrevne enheter før du starter omkonfigureringsprosessen. Se enhetens håndbok for instruksjoner om hvordan du vekker enheten.",
+ "bind_header": "Binding",
+ "button_hide": "Skjul detaljer",
+ "button_show": "Vis detaljer",
+ "cluster_header": "Klynge",
+ "configuration_complete": "Enhetskonfigurering fullført.",
+ "configuration_failed": "Enhetskonfigurasjonen mislyktes. Ytterligere informasjon kan være tilgjengelig i loggene.",
+ "configuring_alt": "Konfigurerer",
+ "heading": "Konfigurerer enheten på nytt",
+ "in_progress": "Enheten konfigureres på nytt. Dette kan ta litt tid.",
+ "introduction": "Konfigurer en enhet på nytt på Zigbee-nettverket. Bruk denne funksjonen hvis enheten ikke fungerer som den skal.",
+ "min_max_change": "min/maks/endring",
+ "reporting_header": "Rapportering",
+ "run_in_background": "Du kan lukke denne dialogen, og omkonfigurasjonen vil fortsette i bakgrunnen.",
+ "start_reconfiguration": "Start rekonfigurasjon"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\n one {dag}\n other {dager}\n}",
+ "hour": "{count} {count, plural,\n one {time}\n other {timer}\n}",
+ "minute": "{count} {count, plural,\none {minutt}\nother {minutter}\n}",
+ "second": "{count} {count, plural,\none {sekund}\nother {sekunder}\n}",
+ "week": "{count} {count, plural,\n one {uke}\n other {uker}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Du kan fortsatt redigere konfigurasjonen din i YAML.",
+ "editor_not_available": "Ingen visuell editor tilgjengelig for typen ' {type} ' '.",
+ "editor_not_supported": "Visual editor støttes ikke for denne konfigurasjonen",
+ "error_detected": "Konfigurasjonsfeil oppdaget",
+ "key_missing": "Nødvendig nøkkel '' {key} '' mangler.",
+ "key_not_expected": "Nøkkelen ' {key} ' 'forventes ikke eller støttes ikke av den visuelle redaktøren.",
+ "key_wrong_type": "Den oppgitte verdien for '' {key} '' støttes ikke av den visuelle redaktøren. Vi støtter ( {type_correct} ), men mottok ( {type_wrong} ).",
+ "no_state_array_support": "Flere tilstandsverdier støttes ikke i visuell editor",
+ "no_template_editor_support": "Maler støttes ikke i visual editor",
+ "no_type_provided": "Ingen type oppgitt."
+ },
+ "supervisor": {
+ "ask": "Be om hjelp",
+ "observer": "Sjekk observatøren",
+ "reboot": "Prøv en omstart av verten",
+ "system_health": "Sjekk systemtilstand",
+ "title": "Kunne ikke laste Supervisor-panelet!",
+ "wait": "Hvis du nettopp startet, må du sørge for at du har gitt Supervisor nok tid til å starte."
+ }
+ },
+ "login-form": {
+ "log_in": "Logg inn",
+ "password": "Passord",
+ "remember": "Husk"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Klikk på knappen for å konfigurere {entity}",
+ "close": "Lukk",
+ "dismiss_all": "Avvis alle",
+ "empty": "Ingen varsler",
+ "title": "Varsler"
+ },
+ "notification_toast": {
+ "connection_lost": "Mistet forbindelsen. Kobler til på nytt…",
+ "dismiss": "Avvis",
+ "integration_starting": "Starter {integration}. Ikke alt er tilgjengelig før lasting er ferdig.",
+ "service_call_failed": "Kunne ikke tilkalle tjenesten: {service}",
+ "started": "Home Assistant har startet!",
+ "starting": "Home Assistant starter, alt er ikke tilgjengelig før starten er fullført.",
+ "triggered": "Utløst {name}",
+ "wrapping_up_startup": "Oppstart pågår, ikke alt er tilgjengelig før den er ferdig."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Manglende konfigurasjonsalternativer? Aktivér avansert modus",
+ "link_profile_page": "profilsiden din"
+ },
+ "areas": {
+ "add_picture": "Legg til et bilde",
+ "assigned_to_area": "Tildelt dette området",
+ "caption": "Områder",
+ "data_table": {
+ "area": "Område",
+ "devices": "Enheter",
+ "entities": "Entiteter"
+ },
+ "delete": {
+ "confirmation_text": "Alle enheter som tilhører dette området vil ikke bli tildelt.",
+ "confirmation_title": "Er du sikker på at du vil slette dette området?"
+ },
+ "description": "Gruppere enheter og enheter i områder",
+ "edit_settings": "Områdeinnstillinger",
+ "editor": {
+ "area_id": "Område ID",
+ "create": "Opprett",
+ "default_name": "Nytt område",
+ "delete": "Slett",
+ "linked_entities_caption": "Entiteter",
+ "name": "Navn",
+ "name_required": "Navn er påkrevd",
+ "no_linked_entities": "Det er ingen entiteter knyttet til dette området.",
+ "unknown_error": "Ukjent feil",
+ "update": "Oppdater"
+ },
+ "picker": {
+ "create_area": "Opprett område",
+ "header": "Områder",
+ "integrations_page": "Integrasjonsside",
+ "introduction": "Områder brukes til å organisere hvor enheter er. Denne informasjonen vil bli brukt gjennomgående i Home Assistant for å hjelpe deg med å organisere grensesnittet, tillatelser og integrasjoner med andre systemer.",
+ "introduction2": "For å plassere enheter i et område, bruk linken under for å navigere til integrasjonssiden og klikk deretter på en konfigurert integrasjon for å komme til enhetskortene.",
+ "no_areas": "Det ser ikke ut som om du har noen områder enda!"
+ },
+ "targeting_area": "Målretting mot dette området"
+ },
+ "automation": {
+ "caption": "Automasjoner",
+ "description": "Lag egendefinerte atferdsregler for hjemmet ditt",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Bruke en blueprint"
+ },
+ "header": "Opprette en ny automasjon",
+ "how": "Hvordan vil du opprette din nye automasjon?",
+ "start_empty": "Start med en tom automasjon",
+ "start_empty_description": "Opprette en ny automatisering fra grunnen av",
+ "thingtalk": {
+ "create": "Opprett",
+ "header": "Beskriv automasjonen du vil opprette",
+ "input_label": "Hva skal denne automasjonen gjøre?",
+ "intro": "Og vi vil prøve å skape det for deg. For eksempel: Slå av lysene når jeg drar."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Legg til handling",
+ "delete": "Slett",
+ "delete_confirm": "Er du sikker på at du vil slette dette?",
+ "duplicate": "Dupliser",
+ "header": "Handlinger",
+ "introduction": "Handlingene er det Home Assistant vil utføre når en automasjon utløses",
+ "learn_more": "Lær mer om handlinger",
+ "name": "Handling",
+ "type": {
+ "choose": {
+ "add_option": "Legg til alternativ",
+ "conditions": "Betingelser",
+ "default": "Standard handlinger",
+ "label": "Velg",
+ "option": "Alternativ {number}",
+ "remove_option": "Fjern alternativ",
+ "sequence": "Handlinger"
+ },
+ "condition": {
+ "label": "Betingelse"
+ },
+ "delay": {
+ "delay": "Varighet",
+ "label": "Vent til tiden går (forsinkelse)"
+ },
+ "device_id": {
+ "action": "Handling",
+ "extra_fields": {
+ "brightness_pct": "Lysstyrke",
+ "code": "Kode",
+ "flash": "Blits",
+ "humidity": "Fuktighet",
+ "message": "Melding",
+ "mode": "Modus",
+ "position": "Posisjon",
+ "title": "Tittel",
+ "value": "Verdi"
+ },
+ "label": "Enhet"
+ },
+ "event": {
+ "event": "Hendelse",
+ "label": "Utfør hendelse",
+ "service_data": "Tjenestedata"
+ },
+ "repeat": {
+ "label": "Gjenta",
+ "sequence": "Handlinger",
+ "type": {
+ "count": {
+ "label": "Antall"
+ },
+ "until": {
+ "conditions": "Inntil betingelser",
+ "label": "Til"
+ },
+ "while": {
+ "conditions": "Mens betingelser",
+ "label": "Mens"
+ }
+ },
+ "type_select": "Gjenta type"
+ },
+ "scene": {
+ "label": "Aktiver scene"
+ },
+ "service": {
+ "label": "Tilkall tjeneste"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Fortsett ved tidsavbrudd",
+ "label": "Vent på en utløser",
+ "timeout": "Tidsavbrudd (valgfritt)"
+ },
+ "wait_template": {
+ "continue_timeout": "Fortsett ved tidsavbrudd",
+ "label": "Vent på en mal",
+ "timeout": "Tidsavbrudd (valgfritt)",
+ "wait_template": "Ventemal"
+ }
+ },
+ "type_select": "Handlingstype",
+ "unsupported_action": "Ingen støtte for visuell redigering for handling: {action}"
+ },
+ "alias": "Navn",
+ "blueprint": {
+ "blueprint_to_use": "Blueprint å bruke",
+ "header": "Blueprint",
+ "no_blueprints": "Du har ingen Blueprinter",
+ "no_inputs": "Denne Blueprinten har ingen innganger"
+ },
+ "conditions": {
+ "add": "Legg til betingelse",
+ "delete": "Slett",
+ "delete_confirm": "Er du sikker på at du vil slette dette?",
+ "duplicate": "Dupliser",
+ "header": "Betingelser",
+ "introduction": "Betingelsene er valgfrie og vil hindre at automasjonen kjøres med mindre alle betingelsene er oppfylt.",
+ "learn_more": "Lær mer om betingelser",
+ "name": "Betingelse",
+ "type": {
+ "and": {
+ "label": "Og"
+ },
+ "device": {
+ "condition": "Betingelse",
+ "extra_fields": {
+ "above": "Over",
+ "below": "Under",
+ "for": "Varighet",
+ "hvac_mode": "HVAC-modus",
+ "preset_mode": "Forhåndsinnstilt modus"
+ },
+ "label": "Enhet"
+ },
+ "not": {
+ "label": "Ikke"
+ },
+ "numeric_state": {
+ "above": "Over",
+ "below": "Under",
+ "label": "Numerisk tilstand",
+ "value_template": "Verdimal (valgfritt)"
+ },
+ "or": {
+ "label": "Eller"
+ },
+ "state": {
+ "label": "Tilstand",
+ "state": "Tilstand"
+ },
+ "sun": {
+ "after": "Etter:",
+ "after_offset": "Etter forskyvning (valgfritt)",
+ "before": "Før:",
+ "before_offset": "Før forskyvning (valgfritt)",
+ "label": "Sol",
+ "sunrise": "Soloppgang",
+ "sunset": "Solnedgang"
+ },
+ "template": {
+ "label": "Mal",
+ "value_template": "Verdimal"
+ },
+ "time": {
+ "after": "Etter",
+ "before": "Før",
+ "label": "Tid",
+ "type_input": "Verdien til en dato/tid hjelper",
+ "type_value": "Bestemt tid",
+ "weekdays": {
+ "fri": "Fredag",
+ "mon": "Mandag",
+ "sat": "Lørdag",
+ "sun": "Søndag",
+ "thu": "Torsdag",
+ "tue": "Tirsdag",
+ "wed": "Onsdag"
+ }
+ },
+ "trigger": {
+ "id": "Utløser-ID",
+ "label": "Utløser",
+ "no_triggers": "Ingen utløsere tilgjengelig"
+ },
+ "zone": {
+ "entity": "Entitet med posisjon",
+ "label": "Sone",
+ "zone": "Sone"
+ }
+ },
+ "type_select": "Betingelse",
+ "unsupported_condition": "Ingen støtte for visuell redigering for betingelse: {condition}"
+ },
+ "copy_to_clipboard": "Kopier til utklippstavle",
+ "default_name": "Ny automasjon",
+ "description": {
+ "label": "Beskrivelse",
+ "placeholder": "Valgfri beskrivelse"
+ },
+ "edit_ui": "Rediger i visuell editor",
+ "edit_yaml": "Rediger i YAML",
+ "enable_disable": "Aktivere/deaktivere automasjon",
+ "introduction": "Bruk automasjoner for å bringe hjemmet ditt til live.",
+ "load_error_not_editable": "Kun automasjoner i automations.yaml kan redigeres",
+ "load_error_unknown": "Feil ved lasting av automasjon ({err_no}).",
+ "max": {
+ "parallel": "Maks antall parallelle kjøringer",
+ "queued": "Kølengde"
+ },
+ "modes": {
+ "description": "Modusen styrer hva som skjer når automasjonen utløses mens handlingene fremdeles kjører fra en tidligere trigger. Sjekk {documentation_link} for mer info.",
+ "documentation": "automasjon dokumentasjon",
+ "label": "Modus",
+ "parallel": "Parallell",
+ "queued": "I kø",
+ "restart": "Omstart",
+ "single": "Enkel (standard)"
+ },
+ "move_down": "Flytt ned",
+ "move_up": "Flytt opp",
+ "save": "Lagre",
+ "show_trace": "Vis sporing",
+ "triggers": {
+ "add": "Legg til utløser",
+ "delete": "Slett",
+ "delete_confirm": "Er du sikker på at du vil slette dette?",
+ "duplicate": "Dupliser",
+ "edit_id": "Rediger utløser-ID",
+ "header": "Utløsere",
+ "id": "Utløser-ID",
+ "introduction": "Utløsere er det som starter en automasjonsregel. Det er mulig å spesifisere flere utløsere for samme regel. Når en utløser aktiveres, vil Home Assistant bekrefte betingelsene, hvis noen, og utføre handlingen. \n\n[Lær mer om utløsere.](https://home-assistant.io/docs/automation/trigger/)",
+ "learn_more": "Lær mer om utløsere",
+ "name": "Utløser",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Over",
+ "below": "Under",
+ "for": "Varighet (valgfritt)",
+ "zone": "Sone"
+ },
+ "label": "Enhet",
+ "trigger": "Utløser"
+ },
+ "event": {
+ "context_user_pick": "Velg bruker",
+ "context_user_picked": "Bruker avfyrer hendelse",
+ "context_users": "Begrens til hendelser utløst av",
+ "event_data": "Hendelse data",
+ "event_type": "Hendelse type",
+ "label": "Hendelse"
+ },
+ "geo_location": {
+ "enter": "Ankommer",
+ "event": "Hendelse:",
+ "label": "Geolokasjon",
+ "leave": "Forlate",
+ "source": "Kilde",
+ "zone": "Sone"
+ },
+ "homeassistant": {
+ "event": "Hendelse:",
+ "label": "",
+ "shutdown": "Slå av",
+ "start": ""
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Nyttelast (valgfritt)",
+ "topic": "Emne"
+ },
+ "numeric_state": {
+ "above": "Over",
+ "below": "Under",
+ "label": "Numerisk tilstand",
+ "value_template": "Verdimal (valgfritt)"
+ },
+ "state": {
+ "attribute": "Attributt (valgfritt)",
+ "for": "For (valgfritt)",
+ "from": "Fra (valgfritt)",
+ "label": "Tilstand",
+ "to": "Til (valgfritt)"
+ },
+ "sun": {
+ "event": "Hendelse:",
+ "label": "Sol",
+ "offset": "Forskyvning (valgfritt)",
+ "sunrise": "Soloppgang",
+ "sunset": "Solnedgang"
+ },
+ "tag": {
+ "label": "Tag"
+ },
+ "template": {
+ "label": "Mal",
+ "value_template": "Verdimal"
+ },
+ "time": {
+ "at": "På tidspunktet",
+ "label": "Tid",
+ "type_input": "Verdien til en dato/tid hjelper",
+ "type_value": "Bestemt tid"
+ },
+ "time_pattern": {
+ "hours": "Timer",
+ "label": "Tidsmønster",
+ "minutes": "Minutter",
+ "seconds": "Sekunder"
+ },
+ "webhook": {
+ "label": "",
+ "webhook_id": ""
+ },
+ "zone": {
+ "enter": "Ankommer",
+ "entity": "Entitet med posisjon",
+ "event": "Hendelse:",
+ "label": "Sone",
+ "leave": "Forlate",
+ "zone": "Sone"
+ }
+ },
+ "type_select": "Utløser",
+ "unsupported_platform": "Ingen støtte for visuell redigering for plattform: {platform}"
+ },
+ "unsaved_confirm": "Du har ulagrede endringer. Er du sikker på at du vil lukke?"
+ },
+ "picker": {
+ "add_automation": "Legg til automasjon",
+ "delete_automation": "Slett automasjon",
+ "delete_confirm": "Er du sikker på at du vil slette denne automasjonen?",
+ "dev_automation": "Feilsøk automasjon",
+ "dev_only_editable": "Bare automasjoner som har en unik ID tildelt, kan feilsøkes.",
+ "duplicate": "Dupliser",
+ "duplicate_automation": "Dupliser automasjon",
+ "edit_automation": "Rediger automasjon",
+ "header": "Automasjonsredigering",
+ "headers": {
+ "name": "Navn"
+ },
+ "introduction": "Automasjonsredigeringen lar deg lage og redigere automasjoner. Følg lenken under for å forsikre deg om at du har konfigurert Home Assistant riktig.",
+ "learn_more": "Lær mer om automasjoner",
+ "no_automations": "Vi kunne ikke finne noen automasjoner",
+ "only_editable": "Bare automasjoner definert i automations.yaml kan redigeres.",
+ "pick_automation": "Velg automasjon for å redigere",
+ "show_info_automation": "Vis informasjon om automasjon"
+ },
+ "thingtalk": {
+ "create": "Opprett automasjon",
+ "link_devices": {
+ "ambiguous_entities": "En eller flere enheter har mer enn en samsvarende entitet. Velg den du vil bruke.",
+ "header": "Flott! Nå må vi koble til noen enheter",
+ "unknown_placeholder": "Ukjent plassholder"
+ },
+ "task_selection": {
+ "error_empty": "Skriv inn en kommando, eller trykk hopp over.",
+ "error_unsupported": "Vi kunne ikke lage en automasjon for det (ennå?)",
+ "for_example": "For eksempel:",
+ "header": "Opprette en ny automasjon",
+ "introduction": "Skriv nedenfor hva denne automasjonen skal gjøre, og vi vil prøve å konvertere den til en Home Assistant automasjon",
+ "language_note": "Merk: Bare engelsk støttes foreløpig."
+ }
+ },
+ "trace": {
+ "download_trace": "Last ned sporing",
+ "edit_automation": "Rediger automasjon",
+ "newer_trace": "Nyere sporing",
+ "older_trace": "Eldre sporing",
+ "refresh": "Oppdater"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "fellesskapsforum",
+ "error_no_url": "Vennligst skriv inn URL-en til Blueprinten",
+ "file_name": "Blueprint bane",
+ "header": "Importer en Blueprint",
+ "import_btn": "Forhåndsvisning av Blueprint",
+ "import_header": "Blueprint '' {name} ''",
+ "import_introduction_link": "Du kan importere Blueprinter av andre brukere fra GitHub og {community_link}. Skriv inn URL-en til blueprinten nedenfor.",
+ "importing": "Laster inn blåkopi...",
+ "raw_blueprint": "Blueprint innhold",
+ "save_btn": "Importer Blueprint",
+ "saving": "Importerer Blueprint…",
+ "unsupported_blueprint": "Denne Blueprinten støttes ikke",
+ "url": "URL til Blueprinten"
+ },
+ "caption": "Blueprinter",
+ "description": "Administrer Blueprinter",
+ "overview": {
+ "add_blueprint": "Importer Blueprint",
+ "confirm_delete_header": "Slette denne Blueprinten?",
+ "confirm_delete_text": "Er du sikker på at du vil slette denne Blueprinten",
+ "create_automation": "Opprett automasjon",
+ "create_script": "Opprett skript",
+ "delete_blueprint": "Slett Blueprint",
+ "discover_more": "Oppdag flere blueprinter",
+ "header": "Blueprint-redigering",
+ "headers": {
+ "domain": "Domene",
+ "file_name": "Filnavn",
+ "name": "Navn",
+ "type": "Type"
+ },
+ "introduction": "Med Blueprint-konfigurasjonen kan du importere og behandle dine Blueprinter",
+ "learn_more": "Finn ut mer om hvordan du bruker Blueprinter",
+ "share_blueprint": "Del blueprint",
+ "share_blueprint_no_url": "Kan ikke dele blueprint: ingen kilde-url",
+ "types": {
+ "automation": "Automasjon",
+ "script": "Skript"
+ },
+ "use_blueprint": "Opprett automasjon"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Konfigurasjonsdokumentasjon",
+ "disable": "deaktiver",
+ "enable": "aktiver",
+ "enable_ha_skill": "Aktivere Home Assistant-ferdigheten for Alexa",
+ "enable_state_reporting": "Aktiver tilstandsrapportering",
+ "info": "Med Alexa-integrasjonen for Home Assistant Cloud vil du kunne kontrollere alle dine Home Assistant-enheter via hvilken som helst Alexa-aktivert enhet.",
+ "info_state_reporting": "Hvis du aktiverer tilstandsrapportering, vil Home Assistant sende alle tilstandsendringer av eksponerte entiteter til Amazon. Dette lar deg alltid se de siste tilstandene i Alexa-appen og bruke tilstandsendringene til å lage rutiner.",
+ "manage_entities": "Håndtér entiteter",
+ "state_reporting_error": "Kan ikke {enable_disable} rapportere status.",
+ "sync_entities": "Synkroniser enheter til Amazon",
+ "sync_entities_error": "Kunne ikke synkronisere entiteter:",
+ "title": ""
+ },
+ "connected": "Tilkoblet",
+ "connecting": "Kobler til…",
+ "connection_status": "Status for skytilkobling",
+ "fetching_subscription": "Henter abonnement…",
+ "google": {
+ "config_documentation": "Konfigurasjonsdokumentasjon",
+ "devices_pin": "PIN for sikkerhetsenheter",
+ "enable_ha_skill": "Aktiver Home Assistant Cloud-ferdigheten for Google Assistant",
+ "enable_state_reporting": "Aktiver tilstandsrapportering",
+ "enter_pin_error": "Kan ikke lagre PIN:",
+ "enter_pin_hint": "Angi en PIN-kode for å bruke sikkerhetsenheter",
+ "enter_pin_info": "Angi en PIN-kode for å samhandle med sikkerhetsenheter. Sikkerhetsinnretninger er dører, garasjeporter og låser. Du blir bedt om å si / angi denne PIN-koden når du kommuniserer med slike enheter via Google Assistant.",
+ "info": "Med Google Assistant-integrasjonen for Home Assistant Cloud vil du kunne kontrollere alle dine Home Assistant-enheter via hvilken som helst Google Assistant-aktivert enhet.",
+ "info_state_reporting": "Hvis du aktiverer tilstandsrapportering, vil Home Assistant sende alle tilstandsendringer av eksponerte entiteter til Google. Dette lar deg alltid se de siste tilstandene i Google-appen.",
+ "manage_entities": "Håndtér entiteter",
+ "not_configured_text": "Før du kan bruke Google Assistant, må du aktivere Home Assistant Cloud-ferdigheten for Google Assistant i Google Home-appen.",
+ "not_configured_title": "Google Assistant er ikke aktivert",
+ "security_devices": "Sikkerhetsenheter",
+ "sync_entities": "Synkronisér entiteter til Google",
+ "sync_entities_404_message": "Kunne ikke synkronisere entitetene dine med Google, be Google 'Hei Google, synkroniser enhetene mine' for å synkronisere entitetene dine.",
+ "title": ""
+ },
+ "integrations": "Integrasjoner",
+ "integrations_introduction": "Integrasjoner for Home Assistant Cloud lar deg koble til tjenester i skyen uten å måtte avsløre Home Assistant-forekomsten offentlig på internett.",
+ "integrations_introduction2": "Sjekk nettstedet for ",
+ "integrations_link_all_features": " alle tilgjengelige funksjoner",
+ "manage_account": "Administrer konto",
+ "nabu_casa_account": "Nabu Casa konto",
+ "not_connected": "Ikke tilkoblet",
+ "remote": {
+ "access_is_being_prepared": "Fjernkontroll forberedes. Vi vil varsle deg når den er klar.",
+ "certificate_info": "Sertifikatinformasjon",
+ "connected": "Tilkoblet",
+ "info": "Home Assistant Cloud gir en sikker ekstern tilkobling til forekomsten din mens du er borte fra hjemmet.",
+ "instance_is_available": "Din forekomst er tilgjengelig på",
+ "instance_will_be_available": "Din forekomst vil være tilgjengelig på",
+ "link_learn_how_it_works": "Lær hvordan det fungerer",
+ "not_connected": "Ikke tilkoblet",
+ "reconnecting": "Ikke tilkoblet. Prøver å koble til på nytt.",
+ "remote_enabled": {
+ "caption": "Koble til automatisk",
+ "description": "Aktiver dette alternativet for å sikre at Home Assistant-forekomsten alltid er eksternt tilgjengelig."
+ },
+ "title": "Fjernkontroll"
+ },
+ "sign_out": "Logg ut",
+ "thank_you_note": "Takk for at du er en del av Home Assistant Cloud. Det er på grunn av personer som deg at vi er i stand til å lage en flott hjemmeautomasjon opplevelse for alle. Tusen takk!",
+ "tts": {
+ "default_language": "Standardspråk som skal brukes",
+ "dialog": {
+ "create_automation": "Opprett automatisering",
+ "example_message": "Hei {name}, du kan spille hvilken som helst tekst på en hvilken som helst mediaspiller som støttes!",
+ "header": "Prøv Tekst-til-tale",
+ "play": "Spill av",
+ "target": "Mål",
+ "target_browser": "Nettleser"
+ },
+ "female": "Kvinne",
+ "info": "Ta med personlighet hjem ved å få den til å snakke med deg ved å bruke våre tekst-til-tale-tjenester. Du kan bruke dette i automasjoner og skript ved hjelp av tjenesten {service}.",
+ "male": "Mann",
+ "title": "Tekst til tale",
+ "try": "Prøve"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Kan ikke deaktivere webhook:",
+ "info": "Alt som er konfigurert til å utløses av en webhook, kan gis en offentlig tilgjengelig URL-adresse for å tillate deg å sende data tilbake til Home Assistant fra hvor som helst, uten å utsette forekomsten din for Internett.",
+ "link_learn_more": "Finn ut mer om hvordan du oppretter webhook-drevne automasjoner.",
+ "loading": "Laster inn…",
+ "manage": "Administrer",
+ "no_hooks_yet": "Ser ut som du ikke har noen webhook'er ennå. Kom i gang ved å konfigurere en ",
+ "no_hooks_yet2": " eller ved å opprette en ",
+ "no_hooks_yet_link_automation": "webhook-automasjon",
+ "no_hooks_yet_link_integration": "webhook-basert integrasjon",
+ "title": "Webhook'er"
+ }
+ },
+ "alexa": {
+ "banner": "Redigere hvilke entiteter som vises via dette grensesnittet er deaktivert fordi du har konfigurert entitetsfilter i configuration.yaml.",
+ "dont_expose_entity": "Ikke eksponer entitet",
+ "expose": "Eksponer til Alexa",
+ "expose_entity": "Eksponer entitet",
+ "exposed": "{selected} eksponert",
+ "exposed_entities": "Eksponerte entiteter",
+ "follow_domain": "Følg domenet",
+ "manage_domains": "Administrer domener",
+ "not_exposed": "{selected} ikke eksponert",
+ "not_exposed_entities": "Ikke eksponerte entiteter",
+ "title": ""
+ },
+ "description_features": "Styr hjemmet når du er borte og integrer med Alexa og Google Assistant",
+ "description_login": "Logget inn som {email}",
+ "description_not_login": "Ikke pålogget",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Utløpsdato for sertifikat:",
+ "certificate_information": "Sertifikatinformasjon",
+ "close": "Lukk",
+ "fingerprint": "Fingeravtrykk for sertifikat:",
+ "will_be_auto_renewed": "vil automatisk bli fornyet"
+ },
+ "dialog_cloudhook": {
+ "available_at": "Webhooken er tilgjengelig på følgende URL:",
+ "close": "Lukk",
+ "confirm_disable": "Er du sikker på at du vil deaktivere denne webhook'en?",
+ "copied_to_clipboard": "Kopiert til utklippstavle",
+ "info_disable_webhook": "Hvis du ikke lenger ønsker å bruke denne webhook'en, kan du",
+ "link_disable_webhook": "deaktiver den",
+ "managed_by_integration": "Denne webhook'en administreres av en integrasjon og kan ikke deaktiveres.",
+ "view_documentation": "Vis dokumentasjon",
+ "webhook_for": "Webhook for {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "Sjekk e-posten din for instruksjoner om hvordan du tilbakestiller passordet.",
+ "email": "E-post",
+ "email_error_msg": "Ugyldig e-postadresse",
+ "instructions": "Fyll inn din e-postadresse og vi vil sende deg en link for å tilbakestille passordet ditt.",
+ "send_reset_email": "Send tilbakestilling av passord via e-post",
+ "subtitle": "Glemt passord",
+ "title": "Glemt passord"
+ },
+ "google": {
+ "banner": "Redigere hvilke entiteter som vises via dette grensesnittet er deaktivert fordi du har konfigurert entitetsfilter i configuration.yaml.",
+ "disable_2FA": "Deaktiver totrinnsbekreftelse",
+ "dont_expose_entity": "Ikke eksponer entitet",
+ "expose": "Eksponer til Google Assistant",
+ "expose_entity": "Eksponer entitet",
+ "exposed": "{selected} eksponert",
+ "exposed_entities": "Eksponerte entiteter",
+ "follow_domain": "Følg domenet",
+ "manage_domains": "Administrer domener",
+ "not_exposed": "{selected} ikke eksponert",
+ "not_exposed_entities": "Ikke eksponerte entiteter",
+ "sync_to_google": "Synkroniserer endringer til Google.",
+ "title": ""
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Du må bekrefte e-posten din før du logger inn.",
+ "alert_password_change_required": "Du må endre passordet før du logger inn.",
+ "dismiss": "Avvis",
+ "email": "E-post",
+ "email_error_msg": "Ugyldig e-postadresse",
+ "forgot_password": "Glemt passord?",
+ "introduction": "Home Assistant Cloud gir deg en sikker ekstern tilkobling til din forekomst mens du er borte fra hjemmet. Du kan også koble til med skytjenester: Amazon Alexa og Google Assistant.",
+ "introduction2": "Denne tjenesten drives av vår partner",
+ "introduction2a": ", et selskap grunnlagt av grunnleggerne av Home Assistant.",
+ "introduction3": "Home Assistant Cloud er en abonnementstjeneste med en gratis prøveperiode på en måned. Ingen betalingsinformasjon nødvendig.",
+ "learn_more_link": "Lær mer om Home Assistant Cloud",
+ "password": "Passord",
+ "password_error_msg": "Passord er minst 8 tegn",
+ "sign_in": "Logg inn",
+ "start_trial": "Start en gratis prøveperiode på 1 måned",
+ "title": "Cloud Logg inn",
+ "trial_info": "Ingen betalingsinformasjon er nødvendig"
+ },
+ "register": {
+ "account_created": "Konto opprettet! Sjekk e-posten din for instruksjoner om hvordan du aktiverer kontoen din.",
+ "create_account": "Opprett konto",
+ "email_address": "Epostadresse",
+ "email_error_msg": "Ugyldig e-postadresse",
+ "feature_amazon_alexa": "Integrasjon med Amazon Alexa",
+ "feature_google_home": "Integrasjon med Google Assistant",
+ "feature_remote_control": "Kontroller Home Assistant når du er borte fra hjemmet",
+ "feature_webhook_apps": "Enkel integrasjon med webhookbaserte apper som OwnTracks",
+ "headline": "Start prøveversjon",
+ "information": "Opprett en konto for å starte en gratis prøveperiode på en måned med Home Assistant Cloud. Ingen betalingsinformasjon nødvendig.",
+ "information2": "Prøveperioden vil gi deg tilgang til alle fordelene med Home Assistant Cloud, inkludert:",
+ "information3": "Denne tjenesten drives av vår partner",
+ "information3a": ", et selskap grunnlagt av grunnleggerne av Home Assistant.",
+ "information4": "Ved å registrere en konto samtykker du til følgende vilkår og betingelser.",
+ "link_privacy_policy": "Personvern",
+ "link_terms_conditions": "Vilkår og betingelser",
+ "password": "Passord",
+ "password_error_msg": "Passord er minst 8 tegn",
+ "resend_confirm_email": "Send bekreftelses e-post på nytt",
+ "start_trial": "Start prøveversjon",
+ "title": "Registrer konto"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Du har ulagrede endringer. Er du sikker på at du vil lukke?"
+ },
+ "learn_more": "Lær mer"
+ },
+ "core": {
+ "caption": "Generelt",
+ "description": "Plassering, nettverk og analyser",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Valuta",
+ "edit_requires_storage": "Redigering deaktivert da konfigurasjonen er lagret i configuration.yaml.",
+ "elevation": "Høyde",
+ "elevation_meters": "meter",
+ "external_url": "Ekstern URL",
+ "find_currency_value": "Finn din valutakode",
+ "imperial_example": "Fahrenheit, pund",
+ "internal_url": "Intern URL",
+ "latitude": "Breddegrad",
+ "location_name": "Navn på Home Assistant-installasjonen",
+ "longitude": "Lengdegrad",
+ "metric_example": "Celsius, kilogram",
+ "save_button": "Lagre",
+ "time_zone": "Tidssone",
+ "unit_system": "Enhetssystem",
+ "unit_system_imperial": "Imperisk",
+ "unit_system_metric": "Metrisk"
+ },
+ "header": "Generell konfigurasjon",
+ "introduction": "Administrer plassering, nettverk og analyser."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Følgende attributter er allerede angitt i customize.yaml",
+ "attributes_not_set": "Følgende attributter ble ikke angitt. Sett dem hvis du vil.",
+ "attributes_outside": "Følgende attributter tilpasses utenfra customize.yaml",
+ "attributes_override": "Du kan overstyre dem hvis du vil.",
+ "attributes_set": "Følgende attributter for entiteten angis programmatisk.",
+ "caption": "Tilpasninger",
+ "description": "Tilpass dine oppføringer",
+ "different_include": "Muligens via et domene, en glob eller noe annent som er inkluderet",
+ "pick_attribute": "Velg et attributt som skal overstyres",
+ "picker": {
+ "documentation": "Dokumentasjon for tilpassing",
+ "header": "Tilpasninger",
+ "introduction": "Justér attributter per entitet. Lagt til eller redigerte tilpasninger trer i kraft umiddelbart. Fjernede tilpasninger trer i kraft når entiteten blir oppdatert."
+ },
+ "warning": {
+ "include_link": "inkludér customize.yaml",
+ "include_sentence": "Det ser ut til at din configuration.yaml ikke er riktig",
+ "not_applied": "Endringer gjort her er skrevet i den, men vil ikke bli brukt etter en konfigurasjonsinnlasting med mindre inkluderingen er på plass."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Administrer automatiseringer, scener, skript og hjelpere",
+ "title": "Automatisering og scener"
+ },
+ "blueprints": {
+ "description": "Administrer Blueprinter",
+ "title": "Blueprinter"
+ },
+ "companion": {
+ "description": "Plassering og varsler",
+ "title": "Kompanjong app"
+ },
+ "dashboards": {
+ "description": "Opprett tilpassede sett med kort for å styre hjemmet ditt",
+ "title": "Instrumentbord"
+ },
+ "devices": {
+ "description": "Integrasjoner, enheter, entiteter og områder",
+ "title": "Enheter og tjenester"
+ },
+ "energy": {
+ "description": "Overvåk din energiproduksjon- og forbruk",
+ "title": "Energi"
+ },
+ "people": {
+ "description": "Administrer personene og sonene som Home Assistant sporer",
+ "title": "Personer og soner"
+ },
+ "settings": {
+ "description": "Grunnleggende innstillinger, serverstyring, logger og informasjon",
+ "title": "Innstillinger"
+ },
+ "supervisor": {
+ "description": "Lag sikkerhetskopier, sjekk logger eller start systemet på nytt",
+ "title": "Tillegg, sikkerhetskopier og Supervisor"
+ },
+ "tags": {
+ "description": "Utløs automatiseringer når en NFC-tag, QR-kode osv. skannes",
+ "title": "Tagger"
+ }
+ },
+ "devices": {
+ "add_prompt": "Ingen {name} er lagt til ved hjelp av denne enheten ennå. Du kan legge til en ved å klikke på + knappen ovenfor.",
+ "automation": {
+ "actions": {
+ "caption": "Når noe er utløst…",
+ "no_actions": "Ingen handlinger",
+ "unknown_action": "Ukjent handling"
+ },
+ "automations": "Automasjoner",
+ "conditions": {
+ "caption": "Bare gjør noe hvis…",
+ "no_conditions": "Ingen betingelser",
+ "unknown_condition": "Ukjent tilstand"
+ },
+ "create": "Lag automasjon med enheten",
+ "create_disable": "Kan ikke opprette automasjon med deaktivert enhet",
+ "no_automations": "Ingen automasjoner",
+ "no_device_automations": "Det er ingen automasjoner tilgjengelig for denne enheten.",
+ "triggers": {
+ "caption": "Gjør noe når...",
+ "no_triggers": "Ingen utløsere",
+ "unknown_trigger": "Ukjent utløser"
+ },
+ "unknown_automation": "Ukjent automasjon"
+ },
+ "cant_edit": "Du kan bare redigere elementer som er opprettet i brukergrensesnittet.",
+ "caption": "Enheter",
+ "confirm_delete": "Er du sikker på at du vil slette denne enheten?",
+ "confirm_disable_config_entry": "Det er ikke flere enheter for konfigurasjonsoppføringen {entry_name}, vil du i stedet deaktivere konfigurasjonsoppføringen?",
+ "confirm_rename_entity_ids": "Vil du også endre enhets-ID-ene til enhetene dine?",
+ "confirm_rename_entity_ids_warning": "Dette vil ikke endre noen konfigurasjon (som automasjoner, skript, scener, dashbord) som for øyeblikket bruker disse enhetene! Du må oppdatere dem selv for å bruke de nye enhets-IDene!",
+ "data_table": {
+ "area": "Område",
+ "battery": "Batteri",
+ "device": "Enhet",
+ "integration": "Integrasjon",
+ "manufacturer": "Produsent",
+ "model": "Modell",
+ "no_devices": "Ingen enheter",
+ "no_integration": "Ingen integrasjon"
+ },
+ "delete": "Slett",
+ "description": "Administrer konfigurerte enheter",
+ "device_info": "Enhetsinformasjon",
+ "device_not_found": "Enhet ikke funnet",
+ "disabled": "Deaktivert",
+ "disabled_by": {
+ "config_entry": "Config-oppføring",
+ "integration": "Integrasjon",
+ "user": "Bruker"
+ },
+ "download_diagnostics": "Last ned diagnostikk",
+ "edit_settings": "Redigere innstillinger",
+ "enabled_cause": "Enheten er deaktivert av {cause}",
+ "enabled_description": "Deaktiverte enheter vises ikke, og entiteter som tilhører enheten deaktiveres og ikke legges til i Home Assistant",
+ "enabled_label": "Aktivér enhet",
+ "entities": {
+ "add_entities_lovelace": "Legg til i Lovelace",
+ "config": "Konfigurasjon",
+ "control": "Kontroller",
+ "diagnostic": "Diagnostisk",
+ "disabled_entities": "+{count} {count, plural,\n one {deaktivert entitet}\n other {deaktiverte entiteter}\n}",
+ "entities": "Entiteter",
+ "hide_disabled": "Skjul deaktiverte",
+ "none": "Denne enheten har ingen entiteter",
+ "sensor": "Sensorer",
+ "state": "Tilstand"
+ },
+ "name": "Navn",
+ "no_devices": "Ingen enheter",
+ "open_configuration_url_device": "Besøk enheten",
+ "open_configuration_url_service": "Besøk tjenesten",
+ "picker": {
+ "filter": {
+ "filter": "Filter",
+ "hidden_devices": "{number} {number, plural,\n one {skjult enhet}\n other {skjulte enheter}\n}",
+ "show_all": "Vis alle",
+ "show_disabled": "Vis deaktiverte enheter"
+ },
+ "search": "Søk etter enheter"
+ },
+ "scene": {
+ "create": "Lag scene med enheten",
+ "create_disable": "Kan ikke opprette scene med deaktivert enhet",
+ "no_scenes": "Ingen scener",
+ "scenes": "Scener"
+ },
+ "scenes": "Scener",
+ "script": {
+ "create": "Lag skript med enheten",
+ "create_disable": "Kan ikke opprette skript med deaktivert enhet",
+ "no_scripts": "Ingen skript",
+ "scripts": "Skript"
+ },
+ "scripts": "Skript",
+ "unknown_error": "Ukjent feil",
+ "unnamed_device": "Enhet uten navn",
+ "update": "Oppdater",
+ "update_device_error": "Oppdatering av enheten mislyktes"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Legg til batterisystem",
+ "battery_systems": "Batterisystemer",
+ "dialog": {
+ "energy_into_battery": "Energi som går inn i batteriet (kWt)",
+ "energy_out_of_battery": "Energi som kommer ut av batteriet (kWt)",
+ "header": "Konfigurer batterisystem"
+ },
+ "learn_more": "Mer informasjon om hvordan du kommer i gang.",
+ "sub": "Hvis du har et batterisystem, kan du konfigurere det til å overvåke hvor mye energi som ble lagret og brukt fra batteriet.",
+ "title": "Batterilagring"
+ },
+ "caption": "Energi",
+ "delete_integration": "Er du sikker på at du vil slette denne integreringen? Den vil fjerne entitetene den tilbyr",
+ "delete_source": "Er du sikker på at du vil slette denne kilden?",
+ "description": "Overvåk din energiproduksjon- og forbruk",
+ "device_consumption": {
+ "add_device": "Legg til enhet",
+ "add_stat": "Velg entitet å spore energien til",
+ "devices": "Enheter",
+ "dialog": {
+ "device_consumption_energy": "Enhetsforbruk energi (kWt)",
+ "header": "Legg til en enhet",
+ "selected_stat_intro": "Velg entiteten som representerer enhetens energiforbruk."
+ },
+ "learn_more": "Mer informasjon om hvordan du kommer i gang.",
+ "selected_stat": "Sporer energi for",
+ "sub": "Ved å spore energiforbruket til individuelle enheter kan Home Assistant bryte ned energiforbruket ditt etter enhet.",
+ "title": "Individuelle enheter"
+ },
+ "gas": {
+ "add_gas_source": "Legg til gasskilde",
+ "dialog": {
+ "cost_entity": "Bruk en entitet med gjeldende pris",
+ "cost_entity_input": "Entitet med gjeldende pris per {unit}",
+ "cost_number": "Bruk en statisk pris",
+ "cost_number_input": "Pris per {unit}",
+ "cost_number_suffix": "{currency}/m³",
+ "cost_para": "Velg hvordan Home Assistant skal holde oversikt over kostnadene for den forbrukte energien.",
+ "cost_stat": "Bruke en entitet som sporer de totale kostnadene",
+ "cost_stat_input": "Entitet med totale kostnader",
+ "energy_stat": "Forbrukt energi (m³)",
+ "gas_usage": "Gassbruk",
+ "header": "Konfigurer gassforbruk",
+ "m3_or_kWh": "ft³, m³, Wt, kWt eller MWt",
+ "no_cost": "Ikke spor kostnader",
+ "paragraph": "Gassforbruk er mengden gass som strømmer til hjemmet ditt."
+ },
+ "gas_consumption": "Gassforbruk",
+ "learn_more": "Mer informasjon om hvordan du kommer i gang.",
+ "sub": "La Home Assistant overvåke gassforbruket ditt.",
+ "title": "Gassforbruk"
+ },
+ "grid": {
+ "add_co2_signal": "Legg til CO2-signalintegrasjon",
+ "add_consumption": "Legg til forbruk",
+ "add_return": "Legg til retur",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Bruk en entitet med gjeldende pris",
+ "cost_entity_input": "Entitet med gjeldende pris",
+ "cost_number": "Bruk en statisk pris",
+ "cost_number_input": "Pris per kWt",
+ "cost_number_suffix": "{currency}/kWt",
+ "cost_para": "Velg hvordan Home Assistant skal holde oversikt over kostnadene for forbrukt energi.",
+ "cost_stat": "Bruk en enhet som sporer de totale kostnadene",
+ "cost_stat_input": "Totale kostnader enhet",
+ "energy_stat": "Forbrukt energi (kWt)",
+ "header": "Konfigurer strømnettforbruk",
+ "no_cost": "Ikke spor kostnader",
+ "paragraph": "Strømnettforbruk er energien som flyter fra strømnettet til hjemmet ditt."
+ },
+ "to": {
+ "cost_entity": "Bruk en entitet med gjeldende sats",
+ "cost_entity_input": "Entitet med gjeldende sats",
+ "cost_number": "Bruk en statisk sats",
+ "cost_number_input": "Sats per kWt",
+ "cost_number_suffix": "{currency}/kWt",
+ "cost_para": "Får du penger tilbake når du returnerer energi til strømnettet?",
+ "cost_stat": "Bruk en enhet som sporer de totale mottatte pengene",
+ "cost_stat_input": "Total kompensasjonsenhet",
+ "energy_stat": "Energi returnert til strømnettet (kWt)",
+ "header": "Konfigurer strømnettproduksjon",
+ "no_cost": "Jeg får ikke penger tilbake",
+ "paragraph": "Strømnettproduksjon er energien som flyter fra dine solcellepaneler til strømnettet."
+ }
+ },
+ "grid_carbon_footprint": "Karbonfotavtrykk i strømnettet",
+ "grid_consumption": "Strømnettforbruk",
+ "learn_more": "Mer informasjon om hvordan du kommer i gang.",
+ "return_to_grid": "Retur til strømnettet",
+ "sub": "Konfigurer mengden energi du bruker fra strømnettet-, og gir tilbake til strømnettet hvis du produserer energi. Dette gjør at Home Assistant kan spore hele energiforbruket i hjemmet.",
+ "title": "Strømnett"
+ },
+ "new_device_info": "Etter at du har konfigurert en ny enhet, kan det ta opptil 2 timer før nye data kommer til energidashbordet.",
+ "solar": {
+ "add_solar_production": "Legg til solproduksjon",
+ "dialog": {
+ "add_forecast": "Legg til prognose",
+ "dont_forecast_production": "Ikke forutse produksjonen",
+ "forecast_production": "Prognose produksjon",
+ "header": "Konfigurer solcellepaneler",
+ "solar_production_energy": "Solproduksjonsenergi (kWt)",
+ "solar_production_forecast": "Prognose for solproduksjon",
+ "solar_production_forecast_description": "Ved å legge til informasjon om solproduksjonsprognoser kan du raskt se forventet produksjon for i dag."
+ },
+ "learn_more": "Mer informasjon om hvordan du kommer i gang.",
+ "solar_production": "Solproduksjon",
+ "stat_predicted_production": "Prediksjon av solenergiproduksjonen din",
+ "stat_production": "Din solenergiproduksjon",
+ "stat_return_to_grid": "Solenergi returnert til strømnettet",
+ "sub": "La Home Assistant overvåke solcellepanelene dine og gi deg innsikt i ytelsen.",
+ "title": "Solcellepaneler"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "Følgende entiteter har en negativ tilstand mens en positiv tilstand forventes:",
+ "title": "Entiteten har en negativ tilstand"
+ },
+ "entity_not_defined": {
+ "description": "Kontroller integreringen eller konfigurasjonen som gir:",
+ "title": "Entiteten er ikke definert"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "Følgende enheter har tilstandsklasse 'måling', men 'siste_innstilling' mangler:",
+ "title": "Siste tilbakestilling mangler"
+ },
+ "entity_state_non_numeric": {
+ "description": "Følgende entiteter har en tilstand som ikke kan analyseres som et tall:",
+ "title": "Entiteten har en ikke-numerisk tilstand"
+ },
+ "entity_unavailable": {
+ "description": "Tilstanden for disse konfigurerte entitetene er for øyeblikket ikke tilgjengelig:",
+ "title": "Entitet utilgjengelig"
+ },
+ "entity_unexpected_device_class": {
+ "description": "Følgende entiteter har ikke den forventede enhetsklassen:",
+ "title": "Uventet enhetsklasse"
+ },
+ "entity_unexpected_state_class": {
+ "description": "Følgende enheter har ikke den forventede statsklassen:",
+ "title": "Uventet statsklasse"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "Følgende enhetiteter har ikke forventet tilstandsklasse \"total_increasing\"",
+ "title": "Uventet tilstandsklasse"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "Følgende entiteter har ikke de forventede måleenhetene 'Wt', 'kWt' eller 'MWt':",
+ "title": "Uventet målenhet"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "Følgende entiteter har ikke de forventede måleenhetene ''{currency}/kWt'', ''{currency}/Wt'' eller ''{currency}/MWt'':",
+ "title": "Uventet målenhet"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "Følgende enheter har ikke de forventede måleenhetene 'Wt', 'kWt' eller 'MWt' for energisensor, eller 'm³' eller 'ft³' for gass-sensor:",
+ "title": "Uventet måleenhet"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "Følgende entiteter har ikke de forventede måleenhetene ''{currency}/kWt'', ''{currency}/Wt'', ''{currency}/m³'' eller ''{currency}/ft³'' :",
+ "title": "Uventet måleenhet"
+ },
+ "recorder_untracked": {
+ "description": "Opptakeren er konfigurert til å ekskludere disse konfigurerte entitetene:",
+ "title": "Entiteten spores ikke"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Entiteter",
+ "description": "Administrer kjente entiteter",
+ "picker": {
+ "disable_selected": {
+ "button": "Deaktiver valgte",
+ "confirm_text": "Deaktiverte entiteter vil ikke bli lagt til i Home Assistant.",
+ "confirm_title": "Vil du deaktivere {number} {number, plural,\n one {enhet}\n other {enheter}\n}?"
+ },
+ "enable_selected": {
+ "button": "Aktiver valgte",
+ "confirm_text": "Dette vil gjøre dem tilgjengelige i Home Assistant igjen hvis de nå er deaktivert.",
+ "confirm_title": "Vil du aktivere {number} {number, plural,\n one {enhet}\n other {enheter}\n}?"
+ },
+ "filter": {
+ "filter": "",
+ "hidden_entities": "{number} {number, plural,\n one {skjult entitet}\n other {skjulte entiteter}\n}",
+ "show_all": "Vis alle",
+ "show_disabled": "Vis deaktiverte entiteter",
+ "show_readonly": "Vis skrivebeskyttede entiteter",
+ "show_unavailable": "Vis utilgjengelige entiteter"
+ },
+ "header": "Entiteter",
+ "headers": {
+ "area": "Område",
+ "disabled_by": "Deaktivert av",
+ "entity_id": "Entitets-ID",
+ "integration": "Integrasjon",
+ "name": "Navn",
+ "status": ""
+ },
+ "introduction": "Home Assistant bygger opp et register over hver entitet den har sett som kan identifiseres unikt. Hver av disse entitetene vil ha en ID som er reservert kun til denne.",
+ "introduction2": "Bruk entitetsregistret til å overstyre navnet, endre id-en eller fjerne den fra Home Assistant.",
+ "remove_selected": {
+ "button": "Fjern valgte",
+ "confirm_partly_text": "Du kan bare fjerne {removable} av de valgte {selected} enhetene. Enheter kan bare fjernes når integrasjonen ikke lenger leverer enhetene. Noen ganger må du starte Home Assistant på nytt før du kan fjerne enhetene til en fjernet integrasjon. Er du sikker på at du vil fjerne de flyttbare enhetene?",
+ "confirm_partly_title": "Bare {number} {number, plural,\n one {valgt enhet}\n other {valgte enheter}\n} kan fjernes.",
+ "confirm_text": "Du bør fjerne dem fra Lovelace-konfigurasjonen og automasjoner hvis de inneholder disse entitetene.",
+ "confirm_title": "Vil du fjerne {number} {number, plural,\n one {enhet}\n other {enheter}\n}?"
+ },
+ "search": "Søk entiteter",
+ "selected": "{number} valgte",
+ "status": {
+ "disabled": "Deaktivert",
+ "ok": "Ok",
+ "readonly": "Skrivebeskyttet",
+ "restored": "Gjennopprettet",
+ "unavailable": "Utilgjengelig"
+ }
+ }
+ },
+ "header": "Konfigurer Home Assistant",
+ "helpers": {
+ "caption": "Hjelpere",
+ "description": "Elementer som hjelper med å bygge automasjoner",
+ "dialog": {
+ "add_helper": "Legg til hjelper",
+ "add_platform": "Legg til {platform}",
+ "create": "Opprett"
+ },
+ "picker": {
+ "add_helper": "Legg hjelper",
+ "headers": {
+ "editable": "Redigerbare",
+ "entity_id": "Entitets-ID",
+ "name": "Navn",
+ "type": ""
+ },
+ "no_helpers": "Det ser ut som om du ikke har noen hjelpere ennå!"
+ },
+ "types": {
+ "counter": "Teller",
+ "input_boolean": "Veksle",
+ "input_button": "Knapp",
+ "input_datetime": "Dato og/eller klokkeslett",
+ "input_number": "Nummer",
+ "input_select": "",
+ "input_text": "Tekst",
+ "timer": "Timer"
+ }
+ },
+ "info": {
+ "built_using": "Bygget med",
+ "caption": "Informasjon",
+ "copy_github": "",
+ "copy_menu": "Kopier meny",
+ "copy_raw": "Rå tekst",
+ "custom_uis": "Tilpassede brukergrensesnitt:",
+ "description": "Versjon, systemhelse og lenker til dokumentasjon",
+ "developed_by": "Utviklet av en gjeng med fantastiske mennesker.",
+ "documentation": "Dokumentasjon",
+ "frontend": "frontend",
+ "frontend_version": "Brukergrensesnittet-versjon: {version} - {type}",
+ "home_assistant_logo": "",
+ "icons_by": "Ikoner fra",
+ "integrations": "Integrasjoner",
+ "issues": "Problemer",
+ "license": "Publisert under Apache 2.0-lisensen",
+ "path_configuration": "Bane til configuration.yaml: {path}",
+ "server": "core",
+ "setup_time": "Oppsettstid",
+ "source": "Kilder:",
+ "system_health": {
+ "manage": "Administrer",
+ "more_info": "mer informasjon"
+ },
+ "system_health_error": "System tilstand komponenten er ikke lastet inn. Legg til 'system_health:' i configuration.yaml"
+ },
+ "integrations": {
+ "add_integration": "Legg til integrasjon",
+ "attention": "Oppmerksomhet kreves",
+ "caption": "Integrasjoner",
+ "config_entry": {
+ "area": "I {area}",
+ "check_the_logs": "Kontroller loggene",
+ "configure": "Konfigurer",
+ "delete": "Slett",
+ "delete_confirm": "Er du sikker på at du vil slette {title} integrasjonen?",
+ "depends_on_cloud": "Avhenger av skyen",
+ "device_unavailable": "Enheten er utilgjengelig",
+ "devices": "{count} {count, plural,\n one {enhet}\n other {enheter}\n}",
+ "disable": {
+ "disable_confirm": "Er du sikker på at du vil deaktivere denne config-oppføringen? Enhetene og enhetene deaktiveres.",
+ "disabled": "Deaktivert",
+ "disabled_by": {
+ "device": "enhet",
+ "integration": "integrasjon",
+ "user": "bruker"
+ },
+ "disabled_cause": "Deaktivert av {cause}"
+ },
+ "disable_error": "Aktivering eller deaktivering av integrasjonen mislyktes",
+ "disable_restart_confirm": "Start Home Assistant på nytt for å fullføre deaktiveringen av denne integreringen",
+ "disabled_polling": "Automatisk avstemning for oppdaterte data deaktivert",
+ "documentation": "Dokumentasjon",
+ "download_diagnostics": "Last ned diagnostikk",
+ "enable_restart_confirm": "Start Home Assistant på nytt for å fullføre aktiveringen av denne integreringen",
+ "entities": "{count} {count, plural,\n one {entitet}\n other {entiteter}\n}",
+ "entity_unavailable": "Enhet utilgjengelig",
+ "firmware": "Fastvare: {version}",
+ "hardware": "Maskinvare: {version}",
+ "hub": "Tilkoblet via",
+ "known_issues": "Kjente problemer",
+ "manuf": "av {manufacturer}",
+ "no_area": "Intet område",
+ "not_loaded": "Ikke lastet",
+ "open_configuration_url": "Besøk enheten",
+ "provided_by_custom_integration": "Levert av en tilpasset integrasjon",
+ "reload": "Last inn på nytt",
+ "reload_confirm": "Integrasjonen ble lastet på nytt",
+ "reload_restart_confirm": "Start Home Assistant på nytt for å fullføre omlastingen av denne integrasjonen",
+ "rename": "Gi nytt navn",
+ "restart_confirm": "Start Home Assistant på nytt for å fullføre fjerningen av denne integrasjonen",
+ "services": "{count} {count, plural,\n one {tjeneste}\n other {tjenester}\n}",
+ "state": {
+ "failed_unload": "Kan ikke laste ut",
+ "loaded": "Lastet",
+ "migration_error": "Migrasjonsfeil",
+ "not_loaded": "Ikke lastet",
+ "setup_error": "Kunne ikke konfigurere",
+ "setup_retry": "Prøver på nytt oppsett"
+ },
+ "system_options": "Systemalternativer",
+ "unknown_via_device": "Ukjent enhet",
+ "unnamed_entry": "Ikke navngitt oppføring",
+ "via": "Tilkoblet via"
+ },
+ "config_flow": {
+ "aborted": "Avbrutt",
+ "close": "Lukk",
+ "could_not_load": "Konfigurasjonsflyt kunne ikke lastes inn",
+ "created_config": "Opprettet konfigurasjon for {name} .",
+ "dismiss": "Avvis dialog",
+ "error": "Feil",
+ "error_saving_area": "Feil ved lagring av område: {error}",
+ "external_step": {
+ "description": "Dette trinnet krever at du besøker et eksternt nettsted som skal fylles ut.",
+ "open_site": "Åpne nettsted"
+ },
+ "finish": "Fullfør",
+ "loading": {
+ "fallback_title": "integrasjonen",
+ "loading_flow": "Vennligst vent mens {integration} settes opp",
+ "loading_step": "Laster inn neste steg for {integration}"
+ },
+ "next": "Neste",
+ "not_all_required_fields": "Ikke alle obligatoriske felt er fylt ut.",
+ "not_loaded": "Integrasjonen kunne ikke lastes, prøv å starte Home Assistant på nytt.",
+ "pick_flow_step": {
+ "new_flow": "Nei, sett opp en annen forekomst av {integration}",
+ "title": "Vi oppdaget disse, vil du sette dem opp?"
+ },
+ "submit": "Send inn"
+ },
+ "configure": "Konfigurer",
+ "configured": "Konfigurert",
+ "confirm_new": "Vil du sette opp {integration}?",
+ "description": "Administrer integrasjoner med tjenester eller enheter",
+ "details": "Integrasjonsdetaljer",
+ "disable": {
+ "disabled_integrations": "{number} deaktivert",
+ "show": "Vis",
+ "show_disabled": "Vis deaktiverte integrasjoner"
+ },
+ "discovered": "Oppdaget",
+ "home_assistant_website": "Nettsted for Home Assistant",
+ "ignore": {
+ "confirm_delete_ignore": "Dette vil få integrasjonen til å vises i de oppdagede integrasjonene dine igjen når den blir oppdaget. Dette kan kreve omstart eller ta litt tid.",
+ "confirm_delete_ignore_title": "Slutt å ignorere {name}?",
+ "confirm_ignore": "Er du sikker på at du ikke vil sette opp denne integrasjonen? Du kan angre ved å klikke på 'Vis ignorerte integrasjoner' i overflow-menyen øverst til høyre.",
+ "confirm_ignore_title": "Ignorer automatisk oppdagelse av {name}?",
+ "ignore": "Ignorer",
+ "ignored": "Ignorert",
+ "show_ignored": "Vis ignorerte integrasjoner",
+ "stop_ignore": "Slutt å ignorere"
+ },
+ "integration": "integrasjon",
+ "integration_not_found": "Integrasjon ikke funnet.",
+ "new": "Sett opp en ny integrasjon",
+ "no_integrations": "Virker som du ikke har noen integrasjoner konfigurert ennå. Klikk på knappen nedenfor for å legge til din første integrasjon!",
+ "none": "Ingenting er konfigurert enda",
+ "none_found": "Ingen integrasjoner funnet",
+ "none_found_detail": "Juster dine søkekriterier",
+ "note_about_integrations": "Ingen integrasjoner samsvarte med søket, integreringen du vil konfigurere, er kanskje ikke tilgjengelig for konfigurering via brukergrensesnittet ennå.",
+ "note_about_website_reference": "Flere er tilgjengelige på",
+ "reconfigure": "Konfigurer på nytt",
+ "rename_dialog": "Redigere navnet på denne config-oppføringen",
+ "rename_input_label": "Navn på oppføring",
+ "search": "Søk i integrasjoner"
+ },
+ "introduction": "I denne visningen er det mulig å konfigurere komponentene og Home Assistant. Ikke alt er mulig å konfigurere fra brukergrensesnittet ennå, men vi jobber med det.",
+ "logs": {
+ "caption": "Logger",
+ "clear": "Tøm",
+ "copy": "Kopier loggoppføring",
+ "custom_integration": "tilpasset integrasjon",
+ "description": "Vis Home Assistant loggene",
+ "details": "Loggdetaljer ({level})",
+ "error_from_custom_integration": "Denne feilen stammer fra en tilpasset integrasjon.",
+ "level": {
+ "critical": "KRITISK",
+ "debug": "DEBUG",
+ "error": "FEIL",
+ "info": "INFO",
+ "warning": "ADVARSEL"
+ },
+ "load_full_log": "Last inn fullstendig Home Assistant logg",
+ "loading_log": "Laster inn feillogg...",
+ "multiple_messages": "meldingen oppstod først ved {time} og vist {counter} ganger",
+ "no_errors": "Ingen feil er rapportert",
+ "no_issues": "Det er ingen nye problemer!",
+ "refresh": "Oppdater"
+ },
+ "lovelace": {
+ "caption": "Lovelace instrumentbord",
+ "dashboards": {
+ "cant_edit_default": "Standard Lovelace -oversikt, Oversikt, kan ikke redigeres fra brukergrensesnittet. Du kan skjule det ved å angi et annet dashbord som standard.",
+ "cant_edit_yaml": "Instrumentbord som er definert i YAML, kan ikke redigeres fra brukergrensesnittet. Endringer gjøres i configuration.yaml.",
+ "caption": "Instrumentbord",
+ "conf_mode": {
+ "storage": "Brukergrensesnitt kontrollert",
+ "yaml": "YAML-fil"
+ },
+ "confirm_delete": "Er du sikker på at du vil slette dette instrumentbordet?",
+ "confirm_delete_text": "Dashbordet ditt blir slettet permanent.",
+ "confirm_delete_title": "Vil du slette {dashboard_title} ?",
+ "default_dashboard": "Dette er standard instrumentbord",
+ "detail": {
+ "create": "Opprett",
+ "delete": "Slett",
+ "dismiss": "Lukk",
+ "edit_dashboard": "Redigere instrumentbord",
+ "icon": "Ikon",
+ "new_dashboard": "Legg til nytt instrumentbord",
+ "remove_default": "Fjern som standard på denne enheten",
+ "require_admin": "Kun administrator",
+ "set_default": "Angi som standard på denne enheten",
+ "show_sidebar": "Vis i sidepanelet",
+ "title": "Tittel",
+ "title_required": "Tittel er påkrevd.",
+ "update": "Oppdater",
+ "url": "URL",
+ "url_error_msg": "URLen skal inneholde en - og kan ikke inneholde mellomrom eller spesialtegn, bortsett fra _ og -"
+ },
+ "picker": {
+ "add_dashboard": "Legg til instrumentbord",
+ "headers": {
+ "conf_mode": "Konfigurasjonsmetode",
+ "default": "Standard",
+ "filename": "Filnavn",
+ "require_admin": "Kun administrator",
+ "sidebar": "Vis i sidepanelet",
+ "title": "Tittel"
+ },
+ "open": "Åpne"
+ }
+ },
+ "description": "Opprett tilpassede sett med kort for å styre hjemmet ditt",
+ "resources": {
+ "cant_edit_yaml": "Du bruker Lovelace i YAML-modus, derfor kan du ikke administrere ressursene dine via brukergrensesnittet. Behandle dem i configuration.yaml.",
+ "caption": "Ressurser",
+ "confirm_delete": "Er du sikker på at du vil slette denne ressursen?",
+ "detail": {
+ "create": "Opprett",
+ "delete": "Slett",
+ "dismiss": "Lukk",
+ "new_resource": "Legg til ny ressurs",
+ "type": "Ressurstype",
+ "update": "Oppdater",
+ "url": "URL",
+ "url_error_msg": "URL-adresse er et obligatorisk felt",
+ "warning_header": "Vær forsiktig!",
+ "warning_text": "Det kan være farlig å legge til ressurser, sørg for at du kjenner kilden til ressursen og stoler på dem. Dårlige ressurser kan skade systemet ditt alvorlig."
+ },
+ "picker": {
+ "add_resource": "Legg til ressurs",
+ "headers": {
+ "type": "",
+ "url": "URL"
+ },
+ "no_resources": "Ingen ressurser"
+ },
+ "refresh_body": "Du må oppdatere siden for å fullføre fjerningen. Vil du oppdatere deg nå?",
+ "refresh_header": "Vil du oppdatere?",
+ "types": {
+ "css": "stilark",
+ "html": "HTML (utdatert)",
+ "js": "JavaScript-fil (utdatert)",
+ "module": "JavaScript-modul"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Lytt til et emne",
+ "description_publish": "Publiser en pakke",
+ "listening_to": "Lytter til",
+ "message_received": "Meldingen {id} ble mottatt på {topic} klokken {time}:",
+ "payload": "Nyttelast (mal tillatt)",
+ "publish": "Publiser",
+ "start_listening": "Begynn å lytte",
+ "stop_listening": "Slutt å lytte",
+ "subscribe_to": "Emne å abonnere på",
+ "title": "MQTT",
+ "topic": "emne"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Kontroller",
+ "instance": "Forekomst",
+ "network": "Nettverk",
+ "node_id": "Node-ID",
+ "ozw_instance": "OpenZWave Instance",
+ "query_stage": "Spørringsstadie",
+ "wakeup_instructions": "Instruksjoner for oppvåking",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Noden mislyktes",
+ "stage": "Scene",
+ "zwave_info": "Z-Wave Info"
+ },
+ "navigation": {
+ "network": "Nettverk",
+ "node": {
+ "config": "Konfigurasjon",
+ "dashboard": "Dashboard"
+ },
+ "nodes": "Noder",
+ "select_instance": "Velg Forekomst"
+ },
+ "network": {
+ "header": "Nettverksadministrasjon",
+ "introduction": "Administrer funksjoner for hele nettverket.",
+ "node_count": "{count} noder"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "Alle noder har blitt spurt",
+ "driverallnodesqueriedsomedead": "Alle noder har blitt spurt. Noen noder ble funnet døde",
+ "driverawakenodesqueries": "Alle våkne noder har blitt spurt",
+ "driverfailed": "Kunne ikke koble til Z-Wave-kontrolleren",
+ "driverready": "Initialiserer Z-Wave-kontrolleren",
+ "driverremoved": "Driveren er blitt fjernet",
+ "driverreset": "Driveren har blitt tilbakestilt",
+ "offline": "OZWDaemon frakoblet",
+ "ready": "Klar til å koble til",
+ "started": "Koblet til MQTT",
+ "starting": "Kobler til MQTT",
+ "stopped": "OpenZWave stoppet"
+ },
+ "offline": "Frakoblet",
+ "online": "Online",
+ "starting": "Starter",
+ "unknown": "Ukjent"
+ },
+ "node": {
+ "button": "Node detaljer",
+ "not_found": "Finner ikke noden"
+ },
+ "node_config": {
+ "header": "Nodekonfigurasjon",
+ "help_source": "Konfigurasjonsparameter beskrivelser og hjelpetekst er gitt av OpenZWave-prosjektet",
+ "introduction": "Administrer de forskjellige konfigurasjonsparametrene for en Z-Wave-node",
+ "wakeup_help": "Batteridrevne noder må være våkne for å endre konfigurasjonen. Hvis noden ikke er våken, vil OpenZWave prøve å oppdatere nodenes konfigurasjon neste gang den våkner, noe som kan være flere timer (eller dager) senere. Følg disse trinnene for å vekke enheten:"
+ },
+ "node_metadata": {
+ "product_manual": "Produkthåndbok"
+ },
+ "node_query_stages": {
+ "associations": "Oppdaterer tilknytningsgrupper og medlemskap",
+ "cacheload": "Laster inn informasjon fra Cachefilen for OpenZWave. Batterinoder vil bli på dette stadiet til noden våkner.",
+ "complete": "Intervjuprosessen er fullført",
+ "configuration": "Henter konfigurasjonsverdier fra noden",
+ "dynamic": "Henter ofte endrede verdier fra noden",
+ "instances": "Henter detaljer om hvilke forekomster eller kanaler en enhet støtter",
+ "manufacturerspecific1": "Henter produsent- og produkt-ID-koder fra noden",
+ "manufacturerspecific2": "Henter flere produsent- og produkt-ID-koder fra noden",
+ "neighbors": "Henter liste over nodens naboer",
+ "nodeinfo": "Henter støttede kommandoklasser fra noden",
+ "nodeplusinfo": "Henter Z-Wave + informasjon fra noden",
+ "probe": "Kontrollerer om noden er våken/levende",
+ "protocolinfo": "Henter grunnleggende Z-Wave-funksjoner i denne noden fra kontrolleren",
+ "session": "Henter verdier fra noden som sjeldent oppdateres",
+ "static": "Henter statiske verdier fra enheten",
+ "versions": "Henter informasjon om fastvare- og kommandoklasseversjoner",
+ "wakeup": "Konfigurere støtte for vekkekøer og meldinger"
+ },
+ "nodes_table": {
+ "failed": "Mislyktes",
+ "id": "ID",
+ "manufacturer": "Produsent",
+ "model": "Modell",
+ "query_stage": "Spørringsstadie",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Hvis noden er batteridrevet, må du passe på å vekke den før du fortsetter",
+ "button": "Oppdater node",
+ "complete": "Oppdatering av node fullført",
+ "description": "Dette vil fortelle OpenZWave å re-intervjue en node og oppdatere nodens kommandoklasser, kapabiliteter og verdier.",
+ "node_status": "Node-status",
+ "refreshing_description": "Oppdaterer nodeinformasjon…",
+ "start_refresh_button": "Start oppdatering",
+ "step": "Steg",
+ "title": "Oppdater nodeinformasjon",
+ "wakeup_header": "Instruksjoner for oppvåking for",
+ "wakeup_instructions_source": "Våkningsinstruksjoner kommer fra OpenZWave fellesskapsenhetsdatabase."
+ },
+ "select_instance": {
+ "header": "Velg en OpenZWave-forekomst",
+ "introduction": "Du har mer enn én OpenZWave-forekomst som kjører. Hvilken forekomst vil du administrere?",
+ "none_found": "Vi kunne ikke finne en OpenZWave-forekomst. Hvis du mener dette er feil, sjekk OpenZWave- og MQTT-oppsettene og sørg for at Home Assistant kan kommunisere med MQTT-megleren din."
+ },
+ "services": {
+ "add_node": "Legg til node",
+ "cancel_command": "Avbryt kommando",
+ "remove_node": "Fjern node"
+ }
+ },
+ "person": {
+ "add_person": "Legg til person",
+ "caption": "Personer",
+ "confirm_delete": "Er du sikker på at du vil slette denne personen?",
+ "confirm_delete2": "Alle enheter som tilhører denne personen vil ikke bli tildelt.",
+ "create_person": "Opprett person",
+ "description": "Administrere personene som Home Assistant sporer",
+ "detail": {
+ "admin": "Administrator",
+ "allow_login": "Tillat person å logge inn",
+ "confirm_delete_user": "Er du sikker på at du vil slette brukerkontoen for {name}? Du kan fortsatt spore brukeren, men personen vil ikke lenger kunne logge inn.",
+ "create": "Opprett",
+ "delete": "Slett",
+ "device_tracker_intro": "Velg enhetene som tilhører denne personen.",
+ "device_tracker_pick": "Velg en enhet å spore",
+ "device_tracker_picked": "Spor enhet",
+ "link_integrations_page": "Integrasjonsside",
+ "link_presence_detection_integrations": "Integrasjon for tilstedeværelsesdeteksjon",
+ "linked_user": "Koblet bruker",
+ "local_only": "Kan kun logge inn fra det lokale nettverket",
+ "name": "Navn",
+ "name_error_msg": "Navn er påkrevd",
+ "new_person": "Ny person",
+ "no_device_tracker_available_intro": "Når du har enheter som indikerer en persons tilstedeværelse, vil du kunne tilordne dem til en person herfra. Du kan legge til den første enheten ved å legge til en integrasjon for tilstedeværelsesgjenkjenning fra integrasjonssiden.",
+ "update": "Oppdater"
+ },
+ "introduction": "Her kan du definere hver person av interesse i Home Assistant.",
+ "learn_more": "Lær mer om personer",
+ "no_persons_created_yet": "Ser ut som du ikke har opprettet noen personer ennå.",
+ "note_about_persons_configured_in_yaml": "Merk: personer konfigurert i configuration.yaml kan ikke redigeres via brukergrensesnittet.",
+ "person_not_found": "Vi fant ikke personen du prøvde å redigere.",
+ "person_not_found_title": "Person ikke funnet"
+ },
+ "scene": {
+ "activated": "Aktiverte scene {name}.",
+ "caption": "Scener",
+ "description": "Ta opp enhetstilstander og få dem til å huske dem på en enkel måte senere",
+ "editor": {
+ "area": "Område",
+ "default_name": "Ny scene",
+ "devices": {
+ "add": "Legg til en enhet",
+ "delete": "Slett enhet",
+ "header": "Enheter",
+ "introduction": "Legg til enhetene du ønsker inkludert i scenen din. Sett alle enhetene til tilstanden du ønsker for denne scenen."
+ },
+ "entities": {
+ "add": "Legg til en entitet",
+ "delete": "Slett entitet",
+ "device_entities": "Hvis du legger til en entitet som tilhører en enhet, vil enheten også bli lagt til.",
+ "header": "Entiteter",
+ "introduction": "Entiteter som ikke tilhører en enhet kan angis her.",
+ "without_device": "Entiteter uten enhet"
+ },
+ "icon": "Ikon",
+ "introduction": "Bruk scener for å bringe hjemmet ditt til live.",
+ "load_error_not_editable": "Bare scener i scenes.yaml kan redigeres.",
+ "load_error_unknown": "Feil ved lasting av scene ({err_no}).",
+ "name": "Navn",
+ "save": "Lagre",
+ "unsaved_confirm": "Du har ulagrede endringer. Er du sikker på at du vil lukke?"
+ },
+ "picker": {
+ "add_scene": "Legg til scene",
+ "delete_confirm": "Er du sikker på at du vil slette denne scenen?",
+ "delete_scene": "Slett scene",
+ "duplicate": "Duplisere",
+ "duplicate_scene": "Dupliser scenen",
+ "edit_scene": "Rediger scene",
+ "header": "Scene-editor",
+ "headers": {
+ "name": "Navn"
+ },
+ "introduction": "Scene-editoren lar deg lage og redigere scener. Følg lenken nedenfor for å lese instruksjonene for å forsikre deg om at du har konfigurert Home Assistant riktig.",
+ "learn_more": "Lær mer om scener",
+ "no_scenes": "Vi fant ingen scener",
+ "only_editable": "Bare scener som er definert i scenes.yaml kan redigeres.",
+ "pick_scene": "Velg scene du vil redigere",
+ "show_info_scene": "Vis informasjon om scene"
+ }
+ },
+ "script": {
+ "caption": "Skript",
+ "description": "Utføre en sekvens med handlinger",
+ "editor": {
+ "alias": "Navn",
+ "default_name": "Nytt skript",
+ "delete_confirm": "Er du sikker på at du vil slette dette skriptet?",
+ "delete_script": "Slett skript",
+ "header": "Skript: {name}",
+ "icon": "Ikon",
+ "id": "Entitets-ID",
+ "id_already_exists": "Denne IDen finnes allerede",
+ "id_already_exists_save_error": "Du kan ikke lagre dette skriptet fordi IDen ikke er unik, velg en annen ID eller la den stå tom for automatisk å generere en.",
+ "introduction": "Bruk skript for å kjøre en sekvens av handlinger.",
+ "link_available_actions": "Finn ut mer om tilgjengelige handlinger.",
+ "load_error_not_editable": "Bare skript inne i script.yaml kan redigeres.",
+ "max": {
+ "parallel": "Maks antall parallelle kjøringer",
+ "queued": "Kølengde"
+ },
+ "modes": {
+ "description": "Modusen styrer hva som skjer når skriptet utløses mens det fremdeles kjører fra en eller flere tidligere påkallinger. Sjekk {documentation_link} for mer info.",
+ "documentation": "skript dokumentasjon",
+ "label": "Modus",
+ "parallel": "Parallell",
+ "queued": "I kø",
+ "restart": "Omstart",
+ "single": "Enkel (standard)"
+ },
+ "save_script": "Lagre skript",
+ "sequence": "Sekvens",
+ "sequence_sentence": "Sekvensen av handlingene til dette skriptet.",
+ "show_trace": "Vis sporing"
+ },
+ "picker": {
+ "add_script": "Legg til skript",
+ "dev_script": "Feilsøk skript",
+ "duplicate": "Dupliser",
+ "duplicate_script": "Dupliser skript",
+ "edit_script": "Rediger skript",
+ "header": "Skriptredigering",
+ "headers": {
+ "name": "Navn"
+ },
+ "introduction": "Skripteditoren lar deg lage og redigere skript. Følg lenken nedenfor for å lese instruksjonene for å forsikre deg om at du har konfigurert Home Assistant riktig.",
+ "learn_more": "Lær mer om skript",
+ "no_scripts": "Vi fant ingen skript",
+ "run_script": "Kjør skript",
+ "show_info": "Vis informasjon om skript"
+ }
+ },
+ "server_control": {
+ "caption": "Serverstyring",
+ "description": "Valider og start Home Assistant-serveren på nytt",
+ "section": {
+ "reloading": {
+ "automation": "Automasjoner",
+ "command_line": "Kommandolinjeenheter",
+ "core": "Plassering og tilpasninger",
+ "filesize": "Enheter for filstørrelse",
+ "filter": "Filtrere entiteter",
+ "generic": "Generiske IP-kameraenheter",
+ "generic_thermostat": "Generiske termostatenheter",
+ "group": "Grupper, gruppeenheter og varslingstjenester",
+ "heading": "YAML konfigurasjon lastes på nytt",
+ "history_stats": "Historikkstatistiske enheter",
+ "homekit": "HomeKit",
+ "input_boolean": "Boolske inndata",
+ "input_button": "Inndataknapper",
+ "input_datetime": "Inndata dato-tid",
+ "input_number": "Inndata tall",
+ "input_select": "Inndata valg",
+ "input_text": "Inndata tekst",
+ "introduction": "Noen deler av Home Assistant kan lastes inn på nytt uten at det krever omstart. Hvis du klikker på et av alternativene nedenfor, vil den nåværende YAML -konfigurasjonen lastes ut og den nye lastes inn.",
+ "min_max": "Min/maks enheter",
+ "mqtt": "Manuelt konfigurerte MQTT-enheter",
+ "person": "Personer",
+ "ping": "Ping binære sensorenheter",
+ "reload": "{domain}",
+ "rest": "Rest-enheter og varslingstjenester",
+ "rpi_gpio": "Raspberry Pi GPIO-enheter",
+ "scene": "Scener",
+ "script": "Skript",
+ "smtp": "SMTP-varslingstjenester",
+ "statistics": "Statistiske enheter",
+ "telegram": "Telegram varslingstjenester",
+ "template": "Malenheter",
+ "themes": "Temaer",
+ "timer": "Tidtakere",
+ "trend": "Trend enheter",
+ "universal": "Enheter for universell mediaspiller",
+ "zone": "Soner"
+ },
+ "server_management": {
+ "confirm_restart": "Er du sikker på at du vil starte Home Assistant på nytt?",
+ "confirm_stop": "Er du sikker på at du vil stoppe Home Assistant?",
+ "heading": "Serveradministrasjon",
+ "introduction": "Kontroller din Home Assistant.",
+ "restart": "Omstart",
+ "stop": "Stopp"
+ },
+ "validation": {
+ "check_config": "Sjekk konfigurasjonen",
+ "heading": "Validering av konfigurasjon",
+ "introduction": "Bekreft konfigurasjonen hvis du nylig har gjort noen endringer i konfigurasjonen og vil være sikker på at den er gyldig.",
+ "invalid": "Ugyldig konfigurasjon",
+ "valid": "Gyldig konfigurasjon"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Legg til tag",
+ "automation_title": "Tag {name} skannes",
+ "caption": "Tagger",
+ "confirm_remove": "Er du sikker på at du vil fjerne taggen {tag} ?",
+ "confirm_remove_title": "Fjerne tag?",
+ "create_automation": "Opprett automasjon med tag",
+ "description": "Utløs automatiseringer når en NFC-tag, QR-kode osv. skannes",
+ "detail": {
+ "companion_apps": "Kompanjong apper",
+ "create": "Opprett",
+ "create_and_write": "Opprette og skrive",
+ "delete": "Slett",
+ "description": "Beskrivelse",
+ "name": "Navn",
+ "new_tag": "Ny tag",
+ "tag_id": "Tag-ID",
+ "tag_id_placeholder": "Automatisk generert når den er tom",
+ "update": "Oppdater",
+ "usage": "En tag kan utløse en automasjon når den skannes, du kan bruke NFC-koder, QR-koder eller hvilken som helst annen type tag. Bruk {companion_link} til å skrive denne taggen til en programmerbar NFC-tag eller opprett en QR-kode nedenfor."
+ },
+ "edit": "Rediger",
+ "headers": {
+ "last_scanned": "Sist skannet",
+ "name": "Navn"
+ },
+ "learn_more": "Lær mer om tagger",
+ "never_scanned": "Aldri skannet",
+ "no_tags": "Ingen tagger",
+ "write": "Skrive"
+ },
+ "updates": {
+ "check_unavailable": {
+ "description": "Du må kjøre Home Assistant operativsystem for å kunne sjekke og innstallere oppdateringer fra Home Assistant brukergrensesnittet",
+ "title": "Kunne ikke sjekke oppdateringer"
+ },
+ "check_updates": "Sjekk oppdateringer",
+ "more_updates": "+ {count} oppdateringer",
+ "review": "anmeldelse",
+ "show": "Vis",
+ "show_all_updates": "Vis alle oppdateringer",
+ "title": "{count} {count, plural,\n one {oppdatering}\n other {oppdateringer}\n }",
+ "unable_to_fetch": "Kan ikke laste oppdateringer",
+ "version_available": "Versjon {version_available} er tilgjengelig"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Legg til bruker",
+ "create": "Opprett",
+ "local_only": "Kun lokalt",
+ "password": "Passord",
+ "password_confirm": "Bekreft passord",
+ "password_not_match": "Passord samsvarer ikke"
+ },
+ "caption": "Brukere",
+ "description": "Administrer Home Assistant-brukerkontoer",
+ "editor": {
+ "activate_user": "Aktiver bruker",
+ "active": "Aktiv",
+ "active_tooltip": "Kontrollerer om brukeren kan logge inn",
+ "admin": "",
+ "caption": "Vis bruker",
+ "change_password": "Endre passord",
+ "confirm_user_deletion": "Er du sikker på at du vil slette {name} ?",
+ "deactivate_user": "Deaktiver bruker",
+ "delete_user": "Slett bruker",
+ "group": "Gruppe",
+ "id": "Id",
+ "local_only": "Kan kun logge inn fra det lokale nettverket",
+ "name": "Visningsnavn",
+ "new_password": "Nytt passord",
+ "owner": "Eier",
+ "password_changed": "Passordet ble endret",
+ "system_generated": "Systembruker",
+ "system_generated_users_not_editable": "Kan ikke oppdatere systembrukere.",
+ "system_generated_users_not_removable": "Kan ikke fjerne systembrukere.",
+ "unnamed_user": "Bruker uten navn",
+ "update_user": "Oppdater",
+ "username": "Brukernavn"
+ },
+ "is_local": "Lokal bruker",
+ "is_not_active": "Deaktivert",
+ "is_owner": "Eier",
+ "is_system": "Systembruker",
+ "picker": {
+ "add_user": "Legg til bruker",
+ "headers": {
+ "group": "Gruppe",
+ "is_active": "Aktiv",
+ "is_owner": "Eier",
+ "local": "Lokalt",
+ "name": "Visningsnavn",
+ "system": "System",
+ "username": "Brukernavn"
+ }
+ },
+ "users_privileges_note": "Brukergruppefunksjonen er et pågående arbeid. Brukeren vil ikke kunne administrere forekomsten via brukergrensesnittet. Vi overvåker fortsatt alle administrasjons-API-endepunkter for å sikre at de begrenser tilgangen til administratorer på riktig måte."
+ },
+ "zha": {
+ "add_device": "Legg til enhet",
+ "add_device_page": {
+ "discovered_text": "Enheter vises her når de er oppdaget.",
+ "no_devices_found": "Ingen enheter ble funnet, sørg for at de er i paring-modus og hold dem våkne mens oppdagelsen kjører.",
+ "pairing_mode": "Kontroller at enhetene er i paringsmodus. Sjekk instruksjonene til enheten om hvordan du gjør dette.",
+ "search_again": "Søk på nytt",
+ "spinner": "Søker etter ZHA ZigBee-enheter…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Attributter for den valgte klyngen",
+ "get_zigbee_attribute": "Hent ZigBee-attributt",
+ "header": "Klyngeattributter",
+ "help_attribute_dropdown": "Velg et attributt for å se eller angi verdien.",
+ "help_get_zigbee_attribute": "Hent verdien for det valgte attributtet.",
+ "help_set_zigbee_attribute": "Angi attributtverdi for den spesifiserte klyngen på den angitte entiteten.",
+ "introduction": "Se og rediger klyngeattributter.",
+ "set_zigbee_attribute": "Angi ZigBee-attributt"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Kommandoer for den valgte klyngen",
+ "header": "Klynge kommandoer",
+ "help_command_dropdown": "Velg en kommando du vil samhandle med.",
+ "introduction": "Se og utgi klyngekommandoer.",
+ "issue_zigbee_command": "Send ZigBee-kommando"
+ },
+ "clusters": {
+ "header": "Klynger",
+ "help_cluster_dropdown": "Velg en klynge for å vise attributter og kommandoer.",
+ "introduction": "Klynger er byggesteinene for ZigBee-funksjonalitet. De skiller funksjonalitet i logiske enheter. Det finnes klient- og servertyper, og som består av attributter og kommandoer."
+ },
+ "common": {
+ "clusters": "Klynger",
+ "manufacturer_code_override": "Overstyring av produsentkode",
+ "value": "Verdi"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Snarveier",
+ "update_button": "Oppdater konfigurasjon"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Konfigurasjonen er fullført",
+ "CONFIGURED_status_text": "Initialiserer",
+ "INITIALIZED": "Initialiseringen er fullført",
+ "INITIALIZED_status_text": "Enheten er klar til bruk",
+ "INTERVIEW_COMPLETE": "Intervju fullført",
+ "INTERVIEW_COMPLETE_status_text": "Konfigurerer",
+ "PAIRED": "Enhet funnet",
+ "PAIRED_status_text": "Starter intervju"
+ },
+ "group_binding": {
+ "bind_button_help": "Bind den valgte gruppen til de valgte enhetsklyngene.",
+ "bind_button_label": "Bind gruppe",
+ "cluster_selection_help": "Velg klynger som skal bindes til den valgte gruppen.",
+ "group_picker_help": "Velg en gruppe for å utstede en bind-kommando.",
+ "group_picker_label": "Bindbare grupper",
+ "header": "Gruppebinding",
+ "introduction": "Bind og frigi grupper.",
+ "unbind_button_help": "Fjern bindingen fra den valgte gruppen fra de valgte enhetsklyngene.",
+ "unbind_button_label": "Frigi gruppe"
+ },
+ "groups": {
+ "add_group": "Legg til gruppe",
+ "add_members": "Legg til medlemmer",
+ "caption": "Grupper",
+ "create": "Opprett gruppe",
+ "create_group": "ZigBee Hjemmeautomasjon - Opprett gruppe",
+ "create_group_details": "Angi de nødvendige detaljene for å opprette en ny ZigBee-gruppe",
+ "creating_group": "Oppretter gruppe",
+ "delete": "Slett gruppe",
+ "group_details": "Her er alle detaljene for den valgte ZigBee-gruppen.",
+ "group_id": "Gruppe-ID",
+ "group_info": "Gruppeinformasjon",
+ "group_name_placeholder": "Gruppenavn",
+ "group_not_found": "Gruppe ikke funnet!",
+ "groups": "Grupper",
+ "members": "Medlemmer",
+ "remove_members": "Fjern medlemmer",
+ "removing_members": "Fjerner medlemmer"
+ },
+ "network": {
+ "caption": "Nettverk"
+ },
+ "visualization": {
+ "auto_zoom": "Automatisk zoom",
+ "caption": "Visualisering",
+ "enable_physics": "Aktiver fysikk",
+ "header": "Nettverksvisualisering",
+ "highlight_label": "Fremhev enheter",
+ "refresh_topology": "Oppdater topologi",
+ "zoom_label": "Zoom til enhet"
+ }
+ },
+ "zone": {
+ "add_zone": "Legg til sone",
+ "caption": "Soner",
+ "configured_in_yaml": "Soner som er konfigurert via configuration.yaml kan ikke redigeres via brukergrensesnittet.",
+ "confirm_delete": "Er du sikker på at du vil slette denne sonen?",
+ "create_zone": "Opprett sone",
+ "description": "Administrer sonene du vil spore folk i",
+ "detail": {
+ "create": "Opprett",
+ "delete": "Slett",
+ "icon": "Ikon",
+ "icon_error_msg": "Ikonet skal være i formatet '' prefiks: iconname '', for eksempel: '' mdi: home ''",
+ "latitude": "Breddegrad",
+ "longitude": "Lengdegrad",
+ "name": "Navn",
+ "new_zone": "Ny sone",
+ "passive": "Passiv",
+ "passive_note": "Passive soner er skjult i grensesnittet og brukes ikke som sted for enhetssporere. Dette er nyttig hvis du bare vil bruke dem til automasjoner.",
+ "radius": "",
+ "required_error_msg": "Dette feltet er påkrevd",
+ "update": "Oppdater"
+ },
+ "edit_home_zone": "Radiusen til Hjemmesonen kan ikke redigeres fra brukergrensesnittet ennå. Dra markøren på kartet for å flytte hjemmesonen.",
+ "edit_home_zone_narrow": "Radiusen til hjemsonen kan ikke redigeres fra brukergrensesnittet ennå. Plasseringen kan endres fra den generelle konfigurasjonen.",
+ "edit_zone": "Rediger sone",
+ "go_to_core_config": "Gå til generell konfigurasjon?",
+ "home_zone_core_config": "Plasseringen av hjemmesonen kan redigeres fra den generelle konfigurasjonssiden. Radiusen til hjemmesonen kan ikke redigeres fra brukergrensesnittet ennå. Vil du gå til den generelle konfigurasjonen?",
+ "introduction": "Med soner kan du angi bestemte områder på jorden. Når en person er innenfor en sone, vil tilstanden til enheten ta navnet fra sonen. Soner kan også brukes som en utløser eller betingelse i automasjoner.",
+ "no_zones_created_yet": "Det ser ikke ut som du har opprettet noen soner enda"
+ },
+ "zwave": {
+ "common": {
+ "index": "Indeks",
+ "instance": "Forekomst",
+ "unknown": "Ukjent",
+ "value": "Verdi",
+ "wakeup_interval": "Intervall for oppvåking"
+ },
+ "description": "Administrer ditt Z-Wave-nettverk",
+ "learn_more": "Lær mer om Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "Migrer til OpenZWave",
+ "introduction": "Denne veiviseren hjelper deg med å migrere fra den eldre Z-Wave-integrasjonen til OpenZWave-integrasjonen som for øyeblikket er i beta."
+ },
+ "zwave_js": {
+ "header": "Migrer til Z-Wave JS",
+ "introduction": "Denne integrasjonen opprettholdes ikke lenger, og vi anbefaler deg å gå til den nye Z-Wave JS-integrasjonen. Denne veiviseren hjelper deg med å migrere fra den eldre Z-Wave-integrasjonen til den nye Z-Wave JS-integrasjonen."
+ }
+ },
+ "network_management": {
+ "header": "Z-Wave nettverksadministrasjon",
+ "introduction": "Kjør kommandoer som påvirker Z-Wave nettverket. Du får ikke tilbakemelding på om de fleste kommandoer lykkes, men du kan sjekke OZW-loggen for å prøve å finne det ut."
+ },
+ "network_status": {
+ "network_started": "Z-Wave nettverk startet",
+ "network_started_note_all_queried": "Alle noder er forespurt.",
+ "network_started_note_some_queried": "Våkne noder har blitt forespurt. Sovende noder vil bli spurt når de våkner.",
+ "network_starting": "Starter Z-Wave nettverk…",
+ "network_starting_note": "Dette kan ta en stund, avhengig av størrelsen på nettverket ditt.",
+ "network_stopped": "Z-Wave nettverket stoppet"
+ },
+ "node_config": {
+ "config_parameter": "Konfigurasjonsparameter",
+ "config_value": "Konfigurasjonsverdi",
+ "false": "Usant",
+ "header": "Alternativer for nodekonfigurasjon",
+ "seconds": "sekunder",
+ "set_config_parameter": "Angi konfigurasjonsparameter",
+ "set_wakeup": "Angi oppvåkingsintervall",
+ "true": "Sant"
+ },
+ "node_management": {
+ "add_to_group": "Legg til gruppe",
+ "entities": "Entiteter fra denne noden",
+ "entity_info": "Entitetsinformasjon",
+ "exclude_entity": "Ekskluder denne entiteten fra Home Assistant",
+ "group": "Gruppe",
+ "header": "Z-Wave Node-administrasjon",
+ "introduction": "Kjør Z-Wave-kommandoer som påvirker en enkelt node. Velg en node for å se en liste over tilgjengelige kommandoer.",
+ "max_associations": "Maks tilknytninger:",
+ "node_group_associations": "Tilknytninger for nodegruppe",
+ "node_protection": "Node beskyttelse",
+ "node_to_control": "Node for å kontrollere",
+ "nodes": "Noder",
+ "nodes_hint": "Velg node for å vise alternativer per node",
+ "nodes_in_group": "Andre noder i denne gruppen:",
+ "pooling_intensity": "Intensitet for polling",
+ "protection": "Beskyttelse",
+ "remove_broadcast": "Fjern kringkasting",
+ "remove_from_group": "Fjern fra gruppen",
+ "set_protection": "Angi beskyttelse"
+ },
+ "ozw_log": {
+ "header": "OZW-logg",
+ "introduction": "Vis loggen. 0 er minimum (laster hele loggen) og 1000 er maksimum. Hent vil vise en statisk logg og Følg vil automatisk oppdatere med det siste spesifiserte antall linjer av loggen.",
+ "last_log_lines": "Antall siste logglinjer",
+ "load": "Hent",
+ "tail": "Følg"
+ },
+ "services": {
+ "add_node": "Legg til node",
+ "add_node_secure": "Legg til sikker node",
+ "cancel_command": "Avbryt kommando",
+ "heal_network": "Helbrede nettverk",
+ "heal_node": "Helbrede node",
+ "node_info": "Nodeinformasjon",
+ "print_node": "Skrive ut node",
+ "refresh_entity": "Oppdater entitet",
+ "refresh_node": "Oppdater node",
+ "remove_failed_node": "Fjern feilet node",
+ "remove_node": "Fjern node",
+ "replace_failed_node": "Erstatt feilet node",
+ "save_config": "Lagre konfigurasjon",
+ "soft_reset": "Myk tilbakestilling",
+ "start_network": "Start nettverk",
+ "stop_network": "Stopp nettverk",
+ "test_network": "Test nettverk",
+ "test_node": "Test node"
+ },
+ "values": {
+ "header": "Nodeverdier"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Avbryt inkludering",
+ "check_logs": "Vennligst sjekk loggene for mer informasjon.",
+ "choose_inclusion_strategy": "Hvordan vil du legge til enheten",
+ "controller_in_inclusion_mode": "Z-Wave-kontrolleren er nå i inkluderingsmodus",
+ "enter_qr_code": "Skriv inn QR-kodeverdi",
+ "follow_device_instructions": "Følg instruksjonene som fulgte med enheten for å utløse sammenkobling på enheten",
+ "inclusion_failed": "Enheten kunne ikke legges til.",
+ "inclusion_finished": "Enheten er lagt til.",
+ "interview_failed": "Enhetsintervjuet mislyktes. Ytterligere informasjon kan være tilgjengelig i loggene.",
+ "interview_started": "Enheten blir intervjuet. Dette kan ta litt tid.",
+ "introduction": "Denne veiviseren vil guide deg gjennom å legge til en node i Z-Wave-nettverket ditt",
+ "provisioning_finished": "Enheten er lagt til. Den vil bli tilgjengelig når du slår den på.",
+ "qr_code": "QR-kode",
+ "qr_code_paragraph": "Hvis enheten din støtter SmartStart, kan du skanne QR-koden for enkel sammenkobling.",
+ "scan_qr_code": "Skann QR-kode",
+ "searching_device": "Søker etter enhet",
+ "secure_inclusion_warning": "Sikre enheter krever ekstra båndbredde; for mange sikre enheter kan redusere Z-Wave-nettverket. Vi anbefaler bare å bruke sikker inkludering for enheter som krever det, for eksempel låser eller garasjeportåpnere.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Eksempel: Legacy dørlåser uten S2 -støtte",
+ "title": "S0 Legacy"
+ },
+ "S2_AccessControl": {
+ "description": "Eksempel: Dørlåser og garasjedører",
+ "title": "S2 Adgangskontroll"
+ },
+ "S2_Authenticated": {
+ "description": "Eksempel: Belysning, sensorer og sikkerhetssystemer",
+ "title": "S2 Godkjent"
+ },
+ "S2_Unauthenticated": {
+ "description": "Som S2 Authenticated, men uten bekreftelse på at riktig enhet er inkludert",
+ "title": "S2 Uautentisert"
+ }
+ },
+ "select_camera": "Velg kamera",
+ "start_inclusion": "Start inkludering",
+ "start_secure_inclusion": "Start sikker inkludering",
+ "title": "Legg til en Z-Wave-enhet",
+ "use_secure_inclusion": "Bruk sikker inkludering",
+ "view_device": "Vis enhet"
+ },
+ "common": {
+ "add_node": "Legg til enhet",
+ "back": "Tilbake",
+ "close": "Lukk",
+ "heal_network": "Helbrede nettverk",
+ "home_id": "Hjem-ID",
+ "network": "Nettverk",
+ "node_id": "Enhets -ID",
+ "reconfigure_server": "Konfigurer server på nytt",
+ "remove_node": "Fjern enheten",
+ "source": "Kilde"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n one {enhet}\n other {enheter}\n}",
+ "driver_version": "Driverversjon",
+ "dump_dead_nodes_text": "Noen av enhetene dine svarte ikke og antas å være døde. Disse vil ikke bli fullstendig eksportert.",
+ "dump_dead_nodes_title": "Noen av enhetene dine er døde",
+ "dump_debug": "Last ned data",
+ "dump_not_ready_confirm": "Last ned",
+ "dump_not_ready_text": "Hvis du oppretter en eksport mens ikke alle enhetene er klare, kan du gå glipp av nødvendige data. Gi nettverket litt tid til å spørre alle enheter. Vil du fortsette med dumpen?",
+ "dump_not_ready_title": "Ikke alle enheter er klare ennå",
+ "header": "Administrere Z-Wave-nettverket",
+ "home_id": "Hjem-ID",
+ "introduction": "Administrer Z-Wave-nettverket og Z-Wave-enhetene",
+ "nodes_ready": "Enheter klare",
+ "not_ready": "{count} er ikke klar",
+ "provisioned_devices": "Klargjorte enheter",
+ "server_url": "Server URL",
+ "server_version": "Serverversjon"
+ },
+ "device_info": {
+ "device_config": "Konfigurer enhet",
+ "heal_node": "Heal enhet",
+ "highest_security": "Høyeste sikkerhet",
+ "is_secure": "Sikker",
+ "node_ready": "Enheten er klar",
+ "node_status": "Enhetsstatus",
+ "reinterview_device": "Intervju enheten på nytt",
+ "remove_failed": "Fjern feilet enhet",
+ "unknown": "Ukjent",
+ "zwave_info": "Z-Wave Informasjon",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Versjon {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "Nettverkshelbredelse er avbrutt.",
+ "healing_complete": "Nettverksheling er fullført.",
+ "healing_failed": "Helbredelse mislyktes. Ytterligere informasjon kan være tilgjengelig i loggene.",
+ "in_progress": "Nettverkshelbredelse pågår. Dette vil ta litt tid.",
+ "introduction": "Start en nettverkshelbredelse på Z-Wave-nettverket. En nettverkshelbredelse vil føre til at alle enheter beregner rutene sine tilbake til kontrolleren, og anbefales hvis du nylig har flyttet enheter eller kontrolleren din.",
+ "run_in_background": "Du kan lukke denne dialogboksen, og nettverksreparasjonen fortsetter i bakgrunnen.",
+ "start_heal": "Begynn å helbrede",
+ "stop_heal": "Stopp helbredelse",
+ "title": "Helbred ditt Z-Wave-nettverk",
+ "traffic_warning": "Helbredelsesprosessen genererer stor trafikk på Z-Wave-nettverket. Dette kan føre til at enheter reagerer sakte (eller ikke i det hele tatt) mens legingen pågår."
+ },
+ "heal_node": {
+ "healing_complete": "{device} er helbredet.",
+ "healing_failed": "{device} kunne ikke helbredes.",
+ "healing_failed_check_logs": "Ytterligere informasjon kan være tilgjengelig i loggene.",
+ "in_progress": "Helbredelse av {device} pågår.",
+ "introduction": "Be {device} om å oppdatere sine ruter tilbake til kontrolleren. Dette kan hjelpe deg med kommunikasjonsproblemer hvis du nylig har flyttet enheten eller kontrolleren.",
+ "network_heal_in_progress": "Helbredelse av Z-Wave-nettverket pågår allerede. Vent til den er ferdig før du helbreder en individuell enhet.",
+ "start_heal": "Helbred Enhet",
+ "title": "Helbred en Z-Wave-enhet",
+ "traffic_warning": "Helbredelsesprosessen genererer en stor mengde trafikk på Z-Wave-nettverket. Dette kan føre til at enheter reagerer sakte (eller ikke i det hele tatt) mens helbredelsen pågår."
+ },
+ "logs": {
+ "download_logs": "Last ned logger",
+ "log_level": "Loggnivå",
+ "log_level_changed": "Loggnivå endret til: {level}",
+ "subscribed_to_logs": "Abonnerer på Z-Wave JS-loggmeldinger …",
+ "title": "Z-Wave JS-logger"
+ },
+ "navigation": {
+ "logs": "Logger",
+ "network": "Nettverk"
+ },
+ "network_status": {
+ "connected": "Tilkoblet",
+ "connecting": "Kobler til",
+ "unknown": "Ukjent"
+ },
+ "node_config": {
+ "attribution": "Enhetskonfigurasjonsparametere og beskrivelser er gitt av {device_database}",
+ "battery_device_notice": "Batterienheter må være våken for å oppdatere konfigurasjonen. Se enhetshåndboken for instruksjoner om hvordan du vekker enheten.",
+ "error_device_not_found": "Enhet ikke funnet",
+ "header": "Z-Wave enhetskonfigurasjon",
+ "introduction": "Behandle og justere enhetsspesifikke konfigurasjonsparametere for den valgte enheten",
+ "parameter": "Parameter",
+ "parameter_is_read_only": "Denne parameteren er skrivebeskyttet.",
+ "set_param_accepted": "Parameteren er oppdatert.",
+ "set_param_error": "Det oppstod en feil.",
+ "set_param_queued": "Parameterendringen har blitt satt i kø, og vil bli oppdatert når enheten våkner.",
+ "zwave_js_device_database": "Z-Wave JS Device Database"
+ },
+ "node_status": {
+ "alive": "Levende",
+ "asleep": "Sover",
+ "awake": "Våken",
+ "dead": "Død",
+ "unknown": "Ukjent"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "Hvis du fjerner tilgangen til enheten, blir den ikke lagt til Home Assistant når den slås på. Hvis den allerede er lagt til i Home Assistant, vil ikke fjerning av den klargjorte enheten fjerne den fra Home Assistant.",
+ "confirm_unprovision_title": "Er du sikker på at du vil fjerne tilgangen til enheten?",
+ "dsk": "DSK",
+ "included": "Inkludert",
+ "not_included": "Ikke inkludert",
+ "security_classes": "Sikkerhetsklasser",
+ "unprovison": "Uforbehold"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "Du må vekke batteridrevne enheter før du starter et nytt intervju. Se enhetens håndbok for instruksjoner om hvordan du vekker enheten.",
+ "in_progress": "Enheten blir intervjuet. Dette kan ta litt tid.",
+ "interview_complete": "Enhetsintervjuet er fullført.",
+ "interview_failed": "Enhetsintervjuet mislyktes. Ytterligere informasjon kan være tilgjengelig i loggene.",
+ "introduction": "Intervju en enhet på nytt på Z-Wave-nettverket. Bruk denne funksjonen hvis enheten mangler eller ikke har feil funksjonalitet.",
+ "run_in_background": "Du kan lukke denne dialogen, og intervjuet fortsetter i bakgrunnen.",
+ "start_reinterview": "Start Re-intervju",
+ "title": "Intervju en Z-Wave-enhet på nytt"
+ },
+ "remove_failed_node": {
+ "in_progress": "Fjerning av enheten pågår.",
+ "introduction": "Fjern en feilet enhet fra ditt Z-Wave-nettverk. Bruk dette hvis du ikke kan ekskludere en enhet på normalt vis, eksempelvis hvis enheten er ødelagt.",
+ "removal_failed": "Enheten kunne ikke fjernes fra ditt Z-Wave-nettverk.",
+ "removal_finished": "Enheten {id} er fjernet fra Z-Wave-nettverket.",
+ "remove_device": "Fjern enhet",
+ "title": "Fjern en feilet Z-Wave-enhet"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Avbryt ekskludering",
+ "controller_in_exclusion_mode": "Z-Wave-kontrolleren er nå i ekskluderingsmodus",
+ "exclusion_failed": "Enheten kunne ikke fjernes. Vennligst sjekk loggene for mer informasjon.",
+ "exclusion_finished": "Enheten {id} er fjernet fra Z-Wave-nettverket.",
+ "follow_device_instructions": "Følg instruksjonene som fulgte med enheten for å utløse ekskludering på enheten",
+ "introduction": "Fjern en enhet fra Z-Wave-nettverket, og fjern den tilknyttede enheten og enhetene fra Home Assistant.",
+ "start_exclusion": "Start ekskludering",
+ "title": "Fjern en Z-Wave-enhet"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Ingen"
+ },
+ "S0_Legacy": {
+ "description": "Eksempel: Eldre dørlåser uten S2-støtte",
+ "title": "S0 Legacy"
+ },
+ "S2_AccessControl": {
+ "description": "Eksempel: Dørlåser og garasjedører",
+ "title": "S2 Adgangskontroll"
+ },
+ "S2_Authenticated": {
+ "description": "Eksempel: Belysning, sensorer og sikkerhetssystemer",
+ "title": "S2 Autentisert"
+ },
+ "S2_Unauthenticated": {
+ "description": "Som S2 Autentisert, men uten bekreftelse på at riktig enhet er inkludert",
+ "title": "S2 Uautentisert"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Den vil ha tilgang til alle data i Home Assistant.",
+ "hide_message": "Sjekk dokumenter for panel_custom-komponenten for å skjule denne meldingen",
+ "question_trust": "Stoler du på det eksterne panelet {name} på {link} ?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Aktive lyttere",
+ "alert_event_type": "Hendelsetype er et obligatorisk felt",
+ "available_events": "Tilgjengelige hendelser",
+ "count_listeners": " ({count} lyttere)",
+ "data": "Hendelsedata (YAML, valgfritt)",
+ "description": "Send ut en hendelse på hendelsesbussen",
+ "documentation": "Dokumentasjon for hendelser",
+ "event_fired": "Hendelse {name} utført",
+ "fire_event": "Utfør hendelse",
+ "listen_to_events": "Lytt til hendelser",
+ "listening_to": "Lytte til",
+ "notification_event_fired": "Arrangementet {type} vellykket!",
+ "start_listening": "Begynn å lytte",
+ "stop_listening": "Stopp lytting",
+ "subscribe_to": "Hendelse å abonnere på",
+ "title": "Hendelser",
+ "type": "Hendelse type"
+ },
+ "services": {
+ "accepts_target": "Denne tjenesten godtar et mål, for eksempel: `entity_id: light.bed_light`",
+ "all_parameters": "Alle tilgjengelige parametere",
+ "call_service": "Tilkall tjeneste",
+ "column_description": "Beskrivelse",
+ "column_example": "Eksempel",
+ "column_parameter": "",
+ "description": "Tjenesteutviklingsverktøyet lar deg tilkalle alle tilgjengelige tjenester i Home Assistant.",
+ "fill_example_data": "Fyll ut eksempeldata",
+ "no_template_ui_support": "Brukergrensesnittet støtter ikke maler, du kan fortsatt bruke YAML-redigereren.",
+ "title": "Tjenester",
+ "ui_mode": "Gå til UI-modus",
+ "yaml_mode": "Gå til YAML-modus",
+ "yaml_parameters": "Parameter er bare tilgjengelig i YAML-modus"
+ },
+ "states": {
+ "alert_entity_field": "Entitet er et obligatorisk felt",
+ "attributes": "Attributter",
+ "copy_id": "Kopier ID til utklippstavlen",
+ "current_entities": "Gjeldende entiteter",
+ "description1": "Angi gjeldende tilstandsrepresentasjon for en entitet i Home Assistant.",
+ "description2": "Hvis entiteten tilhører en enhet, vil det ikke være noen faktisk kommunikasjon med den enheten.",
+ "entity": "Entitet",
+ "filter_attributes": "Filtrere attributter",
+ "filter_entities": "Filtrere entiteter",
+ "filter_states": "Filtrere tilstander",
+ "last_changed": "Sist endret",
+ "last_updated": "Sist oppdatert",
+ "more_info": "Mer info",
+ "no_entities": "Ingen entiteter",
+ "set_state": "Sett tilstand",
+ "state": "Tilstand",
+ "state_attributes": "Tilstandsattributter (YAML, valgfritt)",
+ "title": "Tilstander"
+ },
+ "statistics": {
+ "entity": "Entitet",
+ "fix_issue": {
+ "fix": "Løs problemet",
+ "units_changed": {
+ "clear": "Slett alle gamle statistikkdata for denne entiteten",
+ "fix": "Løs problemet",
+ "title": "Enheten til denne entiteten endret seg",
+ "update": "Oppdater de historiske statistikkverdiene fra '' {metadata_unit} '' til '' {state_unit} ''"
+ }
+ },
+ "issue": "Problem",
+ "issues": {
+ "entity_no_longer_recorded": "Denne entiteten blir ikke lenger registrert.",
+ "entity_not_recorded": "Denne entiteten er ekskludert fra å bli registrert.",
+ "no_state": "Ingen status er tilgjengelig for denne entiteten.",
+ "units_changed": "Enheten til denne entiteten endret seg fra ''{metadata_unit}'' til ''{state_unit}''.",
+ "unsupported_state_class": "Tilstandsklassen {state_class} for denne entiteten støttes ikke.",
+ "unsupported_unit": "Enheten (''{state_unit}'') for denne entiteten samsvarer ikke med enheten i enhetsklasse ''{device_class}''.",
+ "unsupported_unit_metadata": "Enheten (''{metadata_unit}'') for den registrerte statistikken samsvarer ikke med den støttede enheten ''{supported_unit}'' for ''{device_class}''.",
+ "unsupported_unit_state": "Enheten ('' {state_unit} '') for denne entiteten samsvarer ikke med enheten i {device_class} ''."
+ },
+ "no_issue": "Ikke noe problem",
+ "title": "Statistikk"
+ },
+ "templates": {
+ "all_listeners": "Denne malen lytter etter alle tilstand endret hendelser.",
+ "description": "Maler blir rendret ved hjelp av Jinja2-malmotoren med noen spesifikke utvidelser for Home Assistant.",
+ "domain": "Domene",
+ "editor": "Maleditor",
+ "entity": "Entitet",
+ "jinja_documentation": "Jinja2 mal dokumentasjon",
+ "listeners": "Denne malen lytter etter følgende tilstand endret hendelser:",
+ "no_listeners": "Denne malen lytter ikke etter noen hendelser og oppdateres ikke automatisk.",
+ "reset": "Tilbakestill til demomal",
+ "result_type": "Resultat type",
+ "template_extensions": "Mal utvidelser for Home Assistant",
+ "time": "Denne malen oppdateres i begynnelsen av hvert minutt",
+ "title": "Mal",
+ "unknown_error_template": "Ukjent feil ved rendring av mal"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Overvåk individuelle enheter",
+ "energy_distribution_title": "Energidistribusjon",
+ "energy_gas_graph_title": "Gassforbruk",
+ "energy_solar_graph_title": "Solproduksjon",
+ "energy_sources_table_title": "Kilder",
+ "energy_usage_graph_title": "Energibruk"
+ },
+ "charts": {
+ "by_device": "Forbruk etter enhet",
+ "solar": "Solenergi",
+ "stat_house_energy_meter": "Totalt energiforbruk"
+ },
+ "setup": {
+ "back": "Tilbake",
+ "done": "Vis meg mitt energidashboard!",
+ "next": "Neste"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Du kan bare bruke denne funksjonen når du har tatt kontroll over Lovelace brukergrensesnittet.",
+ "saving_failed": "Lagring av Lovelace brukergrensesnitt-konfigurasjon mislyktes.",
+ "yaml_unsupported": "Du kan ikke bruke denne funksjonen når du bruker Lovelace i YAML-modus."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Er du sikker på at du vil kjøre handlingen '' {action} ''?",
+ "no_entity_more_info": "Ingen enhet angitt for mer informasjon dialog",
+ "no_entity_toggle": "Ingen enhet gitt for å veksle",
+ "no_navigation_path": "Ingen navigasjonssti spesifisert",
+ "no_service": "Ingen tjeneste å kjøre angitt",
+ "no_url": "Ingen URL-adresse å åpne angitt"
+ },
+ "confirm_delete": "Er du sikker på at du vil slette dette kortet?",
+ "empty_state": {
+ "go_to_integrations_page": "Gå til integrasjonssiden.",
+ "no_devices": "Denne siden lar deg styre enhetene dine, men det ser ut til at du ikke har satt opp noen enheter ennå. Gå til integrasjonssiden for å komme i gang.",
+ "title": "Velkommen hjem"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "Dette kortet indikerer hvor mye av energien som forbrukes av hjemmet ditt ble generert ved bruk av ikke-fossilt brensel som sol, vind og kjernekraft. Jo høyere, jo bedre!",
+ "non_fossil_energy_consumed": "Ikke-fossil energi forbrukt",
+ "non_fossil_energy_not_calculated": "Forbrukt ikke-fossil energi kunne ikke beregnes"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Energibruk"
+ },
+ "energy_distribution": {
+ "battery": "Batteri",
+ "gas": "Gass",
+ "go_to_energy_dashboard": "Gå til energidashboardet",
+ "grid": "Strømnett",
+ "home": "Hjem",
+ "non_fossil": "Ikke-fossilt",
+ "solar": "Solenergi",
+ "title_today": "Energidistribusjon i dag"
+ },
+ "energy_solar_graph": {
+ "forecast": "Prognose {name}",
+ "production": "Produksjon {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Totalt batteri",
+ "cost": "Kostnad",
+ "energy": "Energi",
+ "grid_total": "Strømnett totalt",
+ "source": "Kilde",
+ "total_costs": "Totale kostnader"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Kombinert fra strømnett",
+ "consumed_battery": "Forbrukt batteri",
+ "consumed_solar": "Forbrukt solenergi",
+ "total_consumed": "Total forbruk {num} kWt",
+ "total_returned": "Totalt returnert {num} kWt"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Hvis nålen er i det lilla, returnerte du mer energi til nettet enn du brukte fra den. Hvis det er i det blå, brukte du mer energi fra nettet enn du returnerte.",
+ "energy_dependency": "Dette kortet angir netto energiforbruk.",
+ "grid_neutrality_not_calculated": "Nettnøytralitet kunne ikke beregnes",
+ "net_consumed_grid": "Netto forbruk fra nettet",
+ "net_returned_grid": "Netto returnert til nettet",
+ "red_green_color_explain": "Hvis det er grønt, betyr det at du produserte mer energi enn det du brukte fra strømnettet. Hvis det er rødt, betyr det at du benyttet strømnettet for en del av hjemmets energiforbruk."
+ },
+ "loading": "Laster inn...",
+ "no_data": "Det er ingen data å vise. Det kan ta opptil 2 timer før nye data kommer etter at du har konfigurert energidashbordet.",
+ "no_data_period": "Det finnes ingen data for denne perioden.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "Dette kortet angir hvor mye av solenergien du produserte som ble brukt av hjemmet ditt i stedet for å bli returnert til nettet.",
+ "card_indicates_solar_energy_used_charge_home_bat": "Hvis dette tallet vanligvis er veldig lavt, noe som indikerer overflødig solproduksjon, kan du vurdere å lade et hjemmebatteri eller en elbil fra solcellepanelene dine i tider med høy solproduksjon.",
+ "not_produced_solar_energy": "Du har ikke produsert noen solenergi",
+ "self_consumed_solar_could_not_calc": "Selvforbrukt solenergi kunne ikke beregnes",
+ "self_consumed_solar_energy": "Selvforbruket solenergi"
+ }
+ },
+ "entities": {
+ "never_triggered": "Aldri utløst"
+ },
+ "iframe": {
+ "error_secure_context": "Kan ikke laste inn iframes som peker på nettsteder som bruker {target_protocol} hvis Home Assistant blir vist over {context_protocol} ."
+ },
+ "map": {
+ "reset_focus": "Tilbakestill fokus"
+ },
+ "picture-elements": {
+ "call_service": "Tilkall tjeneste {name}",
+ "hold": "",
+ "more_info": "Vis mer informasjon: {name}",
+ "navigate_to": "Naviger til {location}",
+ "tap": "Trykk:",
+ "toggle": "Veksle {name}",
+ "url": "Åpne vindu til {url_path}"
+ },
+ "safe-mode": {
+ "description": "Home Assistant fikk problemer under lasting av konfigurasjonen og kjører nå i sikkermodus. Ta en titt på feilloggen for å se hva som gikk galt.",
+ "header": "Sikkermodus aktivert"
+ },
+ "shopping-list": {
+ "add_item": "Legg til",
+ "checked_items": "Merkede elementer",
+ "clear_items": "Fjern merkede elementer",
+ "drag_and_drop": "Dra og slipp",
+ "reorder_items": "Bestill varer på nytt"
+ },
+ "show_more_info": "Vis mer informasjon",
+ "starting": {
+ "description": "Home Assistant starter, vennligst vent…"
+ }
+ },
+ "changed_toast": {
+ "message": "Lovelace UI-konfigurasjonen for dette dashbordet ble oppdatert. Oppdater for å se endringer?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Dag",
+ "month": "Måned",
+ "next": "Neste",
+ "previous": "Forrige",
+ "today": "I dag",
+ "week": "Uke",
+ "year": "År"
+ },
+ "timestamp-display": {
+ "invalid": "Ugyldig tidsstempel",
+ "invalid_format": "Ugyldig visningsformat"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Tilkall tjeneste",
+ "default_action": "Standard handling",
+ "more-info": "Mer info",
+ "navigate": "Navigere",
+ "none": "Ingen handling",
+ "toggle": "Veksle",
+ "url": "URL"
+ },
+ "navigation_path": "Navigasjonsbane",
+ "url_path": "URL-bane"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Tilgjengelige tilstander",
+ "description": "Alarmpanelkortet lar deg til- og frakoble integreringene av alarmsentralen.",
+ "name": "Alarmpanel"
+ },
+ "area": {
+ "description": "Områdekortet viser automatisk entiteter i et spesifikt område.",
+ "name": "Område",
+ "show_camera": "Vis kamerafeed i stedet for områdebilde"
+ },
+ "button": {
+ "default_action_help": "Standardhandlingen avhenger av enhetens funksjoner, den vil enten bli vekslet eller mer informasjonsdialogboksen vises.",
+ "description": "The Button card lar deg legge til knapper for å utføre oppgaver.",
+ "name": "Knapp"
+ },
+ "calendar": {
+ "calendar_entities": "Kalender entiteter",
+ "description": "Kalenderkortet viser en kalender som inkluderer dag, uke og listevisninger",
+ "inital_view": "Første visning",
+ "name": "Kalender",
+ "views": {
+ "dayGridDay": "Dag",
+ "dayGridMonth": "Måned",
+ "listWeek": "Liste"
+ }
+ },
+ "conditional": {
+ "card": "Kort",
+ "change_type": "Endre type",
+ "condition_explanation": "Kortet vil vises når ALLE betingelser nedenfor er oppfylt.",
+ "conditions": "Betingelser",
+ "current_state": "Gjeldende",
+ "description": "Betingelseskortet viser et annet kort basert på entitetstilstander.",
+ "name": "Betinget",
+ "state_equal": "Tilstanden er lik",
+ "state_not_equal": "Tilstanden er ikke lik"
+ },
+ "config": {
+ "optional": "Valgfritt",
+ "required": "Nødvendig"
+ },
+ "entities": {
+ "description": "Entities card er den vanligste typen kort. Den grupperer elementer i lister.",
+ "edit_special_row": "Vis detaljene for denne raden ved å klikke på redigeringsknappen",
+ "entity_row": {
+ "attribute": "Attributt",
+ "button": "Knapp",
+ "buttons": "Knapper",
+ "call-service": "Tilkall tjeneste",
+ "cast": "Cast",
+ "conditional": "Betinget",
+ "divider": "Deler",
+ "section": "Seksjon",
+ "weblink": "Weblink"
+ },
+ "entity_row_editor": "Redigeringsprogram for enhetsrad",
+ "name": "Entiteter",
+ "secondary_info_values": {
+ "brightness": "Lysstyrke",
+ "entity-id": "Entitets-ID",
+ "last-changed": "Sist endret",
+ "last-triggered": "Sist utløst",
+ "last-updated": "Sist oppdatert",
+ "none": "Ingen sekundær info",
+ "position": "Posisjon",
+ "tilt-position": "Vippeposisjon"
+ },
+ "show_header_toggle": "Vis kortbryter?",
+ "special_row": "spesiell rad",
+ "toggle": "Aktivér/deaktivér entiteter."
+ },
+ "entity-filter": {
+ "description": "Entitetsfilter kortet lar deg definere en liste over entiteter du bare vil spore når de er i en viss tilstand.",
+ "name": "Entitetsfilter"
+ },
+ "entity": {
+ "description": "Entitetskortet gir deg en rask oversikt over entitetens tilstand.",
+ "name": "Entitet"
+ },
+ "gauge": {
+ "description": "Gauge-kortet er et grunnleggende kort som gjør det mulig å se sensordata visuelt.",
+ "name": "Måler",
+ "needle_gauge": "Vis som måler med nål?",
+ "severity": {
+ "define": "Definer alvorlighetsgrad?",
+ "green": "Grønn",
+ "red": "Rød",
+ "yellow": "Gul"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Størrelsesforholdet",
+ "attribute": "Attributt",
+ "camera_image": "Kameraentitet",
+ "camera_view": "Kameravisning",
+ "days_to_show": "Dager som skal vises",
+ "double_tap_action": "Dobbeltklikk handling",
+ "entities": "Entiteter",
+ "entity": "Entitet",
+ "hold_action": "Hold handling",
+ "hours_to_show": "Timer som skal vises",
+ "icon": "Ikon",
+ "icon_height": "Ikon høyde",
+ "image": "Bane til bilde",
+ "manual": "Manuell",
+ "manual_description": "Trenger du å legge til et tilpasset kort eller bare ønsker å manuelt skrive YAML?",
+ "maximum": "Maksimum",
+ "minimum": "",
+ "name": "Navn",
+ "no_theme": "Ingen tema",
+ "refresh_interval": "Oppdateringsintervall",
+ "search": "Søk",
+ "secondary_info_attribute": "Sekundær informasjonsattributt",
+ "show_icon": "Vis ikon?",
+ "show_name": "Vis navn?",
+ "show_state": "Vis tilstand?",
+ "state": "Tilstand",
+ "state_color": "Fargeikoner basert på tilstand?",
+ "tap_action": "Trykk handling",
+ "theme": "Tema",
+ "title": "Tittel",
+ "unit": "Betegnelse",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Kolonner",
+ "description": "Glance-kortet er nyttig for å gruppere flere sensorer i en kompakt oversikt.",
+ "name": "Blikk"
+ },
+ "grid": {
+ "columns": "Kolonner",
+ "description": "Med Rutenett-kortet kan du vise flere kort i et rutenett",
+ "name": "Rutenett",
+ "square": "Gjengi kort som firkanter"
+ },
+ "history-graph": {
+ "description": "Med Historikkgraf-kortet kan du vise en graf for hver av enhetene som er oppført.",
+ "name": "Historikkgraf"
+ },
+ "horizontal-stack": {
+ "description": "Horisontal stabel-kortet lar deg stable sammen flere kort, slik at de alltid sitter ved siden av hverandre i en kolonne.",
+ "name": "Horisontal stabel"
+ },
+ "humidifier": {
+ "description": "Luftfukterkortet gir kontroll over luftfukterentiteten din. Lar deg endre fuktigheten og modusen til entiteten.",
+ "name": "Luftfukter"
+ },
+ "iframe": {
+ "description": "Websidekortet lar deg legge inn favorittwebsiden din direkte i Home Assistant.",
+ "name": "Webside"
+ },
+ "light": {
+ "description": "Med Light-kortet kan du endre lysstyrken.",
+ "name": "Lys"
+ },
+ "logbook": {
+ "description": "Loggbok-kortet viser en liste over hendelser for entiteter",
+ "name": "Loggbok"
+ },
+ "map": {
+ "dark_mode": "Mørk modus?",
+ "default_zoom": "Standard zoom",
+ "description": "Kart kortet som lar deg vise entiteter på et kart.",
+ "geo_location_sources": "Kilder for geolokasjon",
+ "hours_to_show": "Timer som skal vises",
+ "name": "Kart",
+ "source": "Kilde"
+ },
+ "markdown": {
+ "content": "Innhold",
+ "description": "Markdown-kortet brukes til å gjengi Markdown.",
+ "name": ""
+ },
+ "media-control": {
+ "description": "Mediekontroll kortet brukes til å vise mediespiller entiteter på et grensesnitt med brukervennlige kontroller.",
+ "name": "Mediekontroll"
+ },
+ "picture-elements": {
+ "description": "Bildeelementer-kortet er et av de mest allsidige korttypene. Kortene lar deg plassere ikoner eller tekst og til og med tjenester! På et bilde basert på koordinater.",
+ "name": "Bildeelementer"
+ },
+ "picture-entity": {
+ "description": "Bilde entitet kortet viser en entitet i form av et bilde. I stedet for bilder fra URL, kan det også vise bilde av kameraentiteter.",
+ "name": "Bilde entitet"
+ },
+ "picture-glance": {
+ "description": "Bildetikk-kortet viser et bilde og tilsvarende enhetsstatuser som et ikon. Enhetene på høyre side tillater vekslehandlinger, andre viser dialogboksen mer informasjon.",
+ "name": "Bilde blikk",
+ "state_entity": "Statusentitet"
+ },
+ "picture": {
+ "description": "Bildekortet lar deg sette inn et bilde som skal brukes til navigasjon til forskjellige baner i grensesnittet ditt eller for å tilkalle en tjeneste.",
+ "name": "Bilde"
+ },
+ "plant-status": {
+ "description": "Plantestatus-kortet er for alle de flotte botanikerne der ute.",
+ "name": "Plantestatus"
+ },
+ "sensor": {
+ "description": "Sensorkortet gir deg en rask oversikt over sensortilstanden din med en valgfri graf for å visualisere endring over tid.",
+ "graph_type": "Graf type",
+ "name": "",
+ "show_more_detail": "Vis flere detaljer"
+ },
+ "shopping-list": {
+ "description": "På handlelistekortet kan du legge til, redigere, sjekke av og fjerne gjenstander fra handlelisten din.",
+ "integration_not_loaded": "Dette kortet krever at `shopping_list` integrasjonen er satt opp.",
+ "name": "Handleliste"
+ },
+ "statistics-graph": {
+ "description": "Med Statistics Graph -kortet kan du vise en graf over statistikken for hver av entitetene som er oppført.",
+ "name": "Statistikkgraf",
+ "period": "Periode",
+ "periods": {
+ "5minute": "5 minutter",
+ "day": "Dag",
+ "hour": "Time",
+ "month": "Måned"
+ }
+ },
+ "thermostat": {
+ "description": "Termostatkortet gir kontroll over din klimaentitet. Lar deg endre temperatur og modus for entiteten.",
+ "name": "Termostat"
+ },
+ "vertical-stack": {
+ "description": "Vertical stabel-kortet lar deg gruppere flere kort slik at de alltid sitter i samme kolonne.",
+ "name": "Vertikal stabel"
+ },
+ "weather-forecast": {
+ "description": "Værmeldingskortet viser været. Veldig nyttig å ta med på grensesnitt som folk viser på veggen.",
+ "name": "Værmelding",
+ "show_both": "Vis gjeldende vær og værmelding",
+ "show_forecast": "Vis prognose",
+ "show_only_current": "Vis bare gjeldende vær",
+ "show_only_forecast": "Vis bare prognose"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Etter kort",
+ "by_entity": "Etter entitet",
+ "custom_card": "Tilpasset",
+ "domain": "Domene",
+ "entity": "Entitet",
+ "no_description": "Ingen beskrivelse tilgjengelig."
+ },
+ "common": {
+ "add": "Legg til",
+ "clear": "Tøm",
+ "edit": "Rediger",
+ "none": "Ingen"
+ },
+ "edit_badges": {
+ "panel_mode": "Disse merkene vises ikke fordi denne visningen er i \"Panelmodus\"",
+ "view_no_badges": "Merker støttes ikke av den nåværende visningstypen."
+ },
+ "edit_card": {
+ "add": "Legg til kort",
+ "clear": "Tøm",
+ "confirm_cancel": "Er du sikker på at du vil avbryte?",
+ "delete": "Slett kort",
+ "duplicate": "Dupliser kort",
+ "edit": "Rediger",
+ "header": "Kortkonfigurasjon",
+ "move": "Flytt til visning",
+ "move_after": "Flytt kortet etter",
+ "move_before": "Flytt kortet før",
+ "move_down": "Flytt kortet ned",
+ "move_up": "Flytt kortet opp",
+ "options": "Flere alternativer",
+ "pick_card": "Hvilket kort vil du legge til?",
+ "pick_card_view_title": "Hvilket kort vil du legge til i {name} visningen?",
+ "search_cards": "Søk på kort",
+ "show_code_editor": "Vis koderedigering",
+ "show_visual_editor": "Vis visuell redigering",
+ "toggle_editor": "Bytt redigering",
+ "typed_header": "{type} Kortkonfigurasjon",
+ "unsaved_changes": "Du har endringer som ikke er lagret"
+ },
+ "edit_lovelace": {
+ "edit_title": "Rediger tittel",
+ "explanation": "Denne tittelen vises over alle visningene dine i Lovelace brukergrensesnittet.",
+ "header": "Tittel på ditt Lovelace brukergrensesnitt",
+ "title": "Tittel"
+ },
+ "edit_view": {
+ "add": "Legg til visning",
+ "delete": "Slett visning",
+ "edit": "Rediger visning",
+ "header": "Vis konfigurasjon",
+ "header_name": "{name} Vis konfigurasjon",
+ "move_left": "Flytt visningen til venstre",
+ "move_right": "Flytt visningen til høyre",
+ "tab_badges": "Merker",
+ "tab_settings": "Innstillinger",
+ "tab_visibility": "Synlighet",
+ "type": "Vis type",
+ "types": {
+ "masonry": "Murverk (standard)",
+ "panel": "Panel (1 kort)",
+ "sidebar": "Sidepanel"
+ },
+ "visibility": {
+ "select_users": "Velg hvilke brukere som skal se denne visningen i navigasjonen"
+ }
+ },
+ "header": "Rediger brukergrensesnitt",
+ "header-footer": {
+ "choose_header_footer": "Velg en {type}",
+ "footer": "Bunntekst",
+ "header": "Topptekst",
+ "types": {
+ "buttons": {
+ "name": "Knapper"
+ },
+ "graph": {
+ "name": "Kurve"
+ },
+ "picture": {
+ "name": "Bilde"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Administrer dashbord",
+ "manage_resources": "Administrer ressurser",
+ "open": "Åpne Lovelace brukergrensesnitt-menyen",
+ "raw_editor": "Redigeringsprogram for raw-konfigurasjon"
+ },
+ "migrate": {
+ "header": "Inkompatibel konfigurasjon",
+ "migrate": "Migrer konfigurasjon",
+ "para_migrate": "Home Assistant kan legge til ID-er til alle kortene og visningene dine automatisk for deg ved å trykke på 'Migrer konfigurasjon' -knappen.",
+ "para_no_id": "Dette elementet har ingen ID. Vennligst legg til en ID på dette elementet i 'ui-lovelace.yaml'."
+ },
+ "move_card": {
+ "header": "Velg en visning du vil flytte kortet til"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Vi vil automatisk opprette Lovelace-visningene dine med områdene og enhetene dine hvis du fjerner Lovelace-konfigurasjonen.",
+ "confirm_remove_config_title": "Er du sikker på at du vil fjerne Lovelace UI-konfigurasjonen?",
+ "confirm_unsaved_changes": "Du har ulagrede endringer, er du sikker på at du vil avslutte?",
+ "confirm_unsaved_comments": "Konfigurasjonen din kan inneholde kommentar(er), disse lagres ikke. Vil du fortsette?",
+ "error_invalid_config": "Konfigurasjonen din er ikke gyldig: {error}",
+ "error_parse_yaml": "Kan ikke analysere YAML: {error}",
+ "error_remove": "Kan ikke fjerne konfigurasjonen: {error}",
+ "error_save_yaml": "Kan ikke lagre YAML: {error}",
+ "header": "Rediger konfigurasjon",
+ "lovelace_changed": "Lovelace-konfigurasjonen ble oppdatert, vil du laste den oppdaterte konfigurasjonen i redigeringsprogrammet og miste gjeldende endringer?",
+ "reload": "Last inn på nytt",
+ "resources_moved": "Ressurser skal ikke lenger legges til Lovelace-konfigurasjonen, men kan legges til i Lovelace-konfigurasjonspanelet.",
+ "save": "Lagre",
+ "saved": "Lagret",
+ "unsaved_changes": "Ulagrede endringer"
+ },
+ "save_config": {
+ "close": "Lukk",
+ "empty_config": "Start med et tomt instrumentbord",
+ "header": "Ta kontroll over Lovelace brukergrensesnittet ditt",
+ "para": "Dette instrumentbordet vedlikeholdes for tiden av Home Assistant. Det oppdateres automatisk når nye enheter eller Lovelace brukergrensesnitt-komponenter blir tilgjengelige. Hvis du tar kontroll, vil dette instrumentbordet ikke lenger oppdateres automatisk. Du kan alltid lage et nytt instrumentbord i konfigurasjon å leke med.",
+ "para_sure": "Er du sikker på at du vil ta kontroll over brukergrensesnittet ditt?",
+ "save": "Ta kontroll",
+ "yaml_config": "For å hjelpe deg med å starte, her er den gjeldende konfigurasjonen av dette instrumentbordet:",
+ "yaml_control": "Hvis du vil ta kontroll i YAML-modus, oppretter du en YAML-fil med navnet du angav i konfigurasjonen for dette instrumentbordet, eller standard 'ui-lovelace.yaml'.",
+ "yaml_mode": "Du bruker YAML-modus for dette instrumentbordet, noe som betyr at du ikke kan endre Lovelace-konfigurasjonen fra brukergrensesnittet. Hvis du vil administrere dette instrumentbordet fra brukergrensesnittet, må du fjerne 'modus: yaml' fra Lovelace-konfigurasjonen i 'configuration.yaml'."
+ },
+ "select_view": {
+ "dashboard_label": "Dashboard",
+ "header": "Velg en visning",
+ "views_label": "Visnng"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Bunntekstredigerer",
+ "header": "Redigeringsprogram for topptekst",
+ "row": "Redigeringsprogram for enhetsrad"
+ }
+ },
+ "suggest_card": {
+ "add": "Legg til i Lovelace brukergrensesnitt",
+ "create_own": "Velg et annet kort",
+ "header": "Vi har laget et forslag til deg"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Denne visningen inneholder mer enn ett kort, men en panelvisning kan bare vise 1 kort."
+ }
+ }
+ },
+ "menu": {
+ "close": "Lukk",
+ "configure_ui": "Rediger brukergrensesnitt",
+ "exit_edit_mode": "Avslutt redigeringsmodus for brukergrensesnitt",
+ "help": "Hjelp",
+ "reload_resources": "Last inn ressurser på nytt",
+ "start_conversation": "Start samtale"
+ },
+ "reload_lovelace": "Last inn brukergrensesnittet på nytt",
+ "reload_resources": {
+ "refresh_body": "Du må oppdatere siden for å fullføre omlastingen. Vil du oppdatere deg nå?",
+ "refresh_header": "Vil du oppfriske?"
+ },
+ "unused_entities": {
+ "available_entities": "Dette er entitene som du har tilgjengelig, men som ikke er i Lovelace brukergrensesnittet ennå.",
+ "domain": "Domene",
+ "entity": "Entitet",
+ "entity_id": "Entitets-ID",
+ "last_changed": "Sist endret",
+ "no_data": "Ingen ubrukte entiteter funnet",
+ "search": "Søk etter entiteter",
+ "select_to_add": "Velg entitene du vil legge til et kort, og klikk deretter på knappen Legg til kort.",
+ "title": "Ubrukte entiteter"
+ },
+ "views": {
+ "confirm_delete": "Slette visning?",
+ "confirm_delete_existing_cards": "Sletting av denne visningen vil også slette kortene",
+ "confirm_delete_existing_cards_text": "Er du sikker på at du vil slette visningen '' {name} ''? Visningen inneholder {number} kort som blir slettet. Denne handlingen kan ikke angre.",
+ "confirm_delete_text": "Er du sikker på at du vil slette visningen '' {name} ''?"
+ },
+ "warning": {
+ "attribute_not_found": "Attributtet {attribute} er ikke tilgjengelig i: {entity}",
+ "entity_non_numeric": "Entiteten er ikke-numerisk: {entity}",
+ "entity_not_found": "Entitet ikke tilgjengelig: {entity}",
+ "entity_unavailable": "Enheten er for øyeblikket ikke tilgjengelig: {entity}",
+ "starting": "Home Assistant starter, kanskje ikke alt er tilgjengelig ennå"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Slett",
+ "delete_prompt": "Slette denne meldingen?",
+ "empty": "Du har ingen meldinger",
+ "playback_title": "Meldingsavspilling"
+ },
+ "map": {
+ "edit_zones": "Rediger soner"
+ },
+ "my": {
+ "component_not_loaded": "Denne viderekoblingen støttes ikke av Home Assistant-forekomsten. Du trenger integrasjonen {integration} å bruke denne viderekoblingen.",
+ "documentation": "dokumentasjon",
+ "error": "En ukjent feil har oppstått",
+ "faq_link": "Vanlige spørsmål om Min Home Assistant",
+ "no_supervisor": "Denne viderekoblingen støttes ikke av Home Assistant-installasjonen. Det trenger enten installasjonsmetoden Home Assistant OS eller Home Assistant Supervised. For mer informasjon, se {docs_link}.",
+ "not_supported": "Denne viderekoblingen støttes ikke av Home Assistant-forekomsten. Se på {link} for viderekoblinger som støttes, og hvilken versjon de ble introdusert."
+ },
+ "page-authorize": {
+ "abort_intro": "Innlogging avbrutt",
+ "authorizing_client": "Du er i ferd med å gi {clientId} tilgang til din Home Assistant",
+ "form": {
+ "error": "Feil: {error}",
+ "next": "Logg Inn",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Økten er utløpt, vennligst logg inn på nytt"
+ },
+ "error": {
+ "invalid_auth": "Ugyldig brukernavn eller passord",
+ "invalid_code": "Ugyldig godkjenningskode"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Passord",
+ "username": "Brukernavn"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Totrinns verifiseringskode"
+ },
+ "description": "Åpne **{mfa_module_name}** på enheten din for å se din tofaktors godkjenningskode og bekrefte identiteten din:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Økten er utløpt, vennligst logg inn på nytt"
+ },
+ "error": {
+ "invalid_auth": "Ugyldig brukernavn eller passord",
+ "invalid_code": "Ugyldig godkjenningskode"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Passord",
+ "username": "Brukernavn"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Totrinns verifiseringskode"
+ },
+ "description": "Åpne **{mfa_module_name}** på enheten din for å se din tofaktors godkjenningskode og bekrefte identiteten din:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Økten er utløpt, vennligst logg inn på nytt",
+ "no_api_password_set": "Du har ikke konfigurert et API-passord."
+ },
+ "error": {
+ "invalid_auth": "Ugyldig API-passord",
+ "invalid_code": "Ugyldig godkjenningskode"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "API-passord"
+ },
+ "description": "Vennligst fyll inn API-passordet i HTTP-konfigurasjonen:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Totrinns verifiseringskode"
+ },
+ "description": "Åpne **{mfa_module_name}** på enheten din for å se din tofaktors godkjenningskode og bekrefte identiteten din:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Datamaskinen din er ikke tillatt."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Bruker"
+ },
+ "description": "Vennligst velg en bruker du vil logge inn som:"
+ }
+ }
+ }
+ },
+ "start_over": "Start på nytt",
+ "unknown_error": "Noe gikk galt",
+ "working": "Vennligst vent"
+ },
+ "initializing": "Initialiserer",
+ "logging_in_to_with": "Logger på **{locationName}** med **{authProviderName}**.",
+ "logging_in_with": "Logg inn med **{authProviderName}**.",
+ "pick_auth_provider": "Eller logg inn med",
+ "store_token": "Hold meg pålogget"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "ved {name}",
+ "introduction": "Velkommen hjem! Du har nådd Home Assistant-demoen hvor vi viser frem de beste brukergrensesnittene som er opprettet av fellesskapet vårt.",
+ "learn_more": "Lær mer om Home Assistant",
+ "next_demo": "Neste demo"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Aktivitet",
+ "air": "Luft",
+ "commute_home": "Pendle til hjem",
+ "entertainment": "Underholdning",
+ "hdmi_input": "HDMI-inngang",
+ "hdmi_switcher": "HDMI-velger",
+ "information": "Informasjon",
+ "lights": "Lys",
+ "morning_commute": "Morgen pendling",
+ "total_tv_time": "Total TV-tid",
+ "turn_tv_off": "Slå TV av",
+ "volume": "Volum"
+ },
+ "names": {
+ "family_room": "Stue",
+ "hallway": "Gang",
+ "kitchen": "Kjøkken",
+ "left": "Venstre",
+ "master_bedroom": "Hovedsoverom",
+ "mirror": "Speil",
+ "patio": "Uteområdet",
+ "right": "Høyre",
+ "temperature_study": "Temperatur kontor",
+ "upstairs": "Oppe"
+ },
+ "unit": {
+ "minutes_abbr": "",
+ "watching": "Ser på"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Neste"
+ },
+ "core-config": {
+ "button_detect": "Oppdag",
+ "finish": "Neste",
+ "intro": "Hei {name}, velkommen til Home Assistant. Hva ønsker du å kalle hjemmet ditt?",
+ "intro_location": "Vi vil gjerne vite hvor du bor. Denne informasjonen vil bidra til å vise informasjon og sette opp automasjon basert på solen. Dette deles ikke ut av nettet ditt.",
+ "intro_location_detect": "Vi kan hjelpe deg med å fylle ut denne informasjonen ved å gjøre en engangsforespørsel til en ekstern tjeneste.",
+ "location_name": "Navn på Home Assistant-installasjonen",
+ "location_name_default": "Hjem"
+ },
+ "finish": "Fullfør",
+ "integration": {
+ "finish": "Fullfør",
+ "intro": "Enheter og tjenester er representert i Home Assistant som integrasjoner. Du kan sette dem opp nå eller gjøre det senere fra konfigurasjonen.",
+ "more_integrations": "Mer"
+ },
+ "intro": "Er du klar til å ta kontroll over hjemmet ditt, gjenvinne ditt privatliv og bli med i et verdensomspennende samfunn av entusiaster?",
+ "next": "Neste",
+ "restore": {
+ "addons": "Tillegg",
+ "confirm_password": "Bekreft passord for sikkerhetskopiering",
+ "description": "Alternativt kan du gjenopprette fra en tidligere sikkerhetskopi.",
+ "folders": "Mapper",
+ "full_backup": "Full sikkerhetskopiering",
+ "hide_log": "Skjul full logg",
+ "in_progress": "Gjenoppretting pågår",
+ "partial_backup": "Delvis sikkerhetskopiering",
+ "password": "Passord for sikkerhetskopiering",
+ "password_protection": "Passordbeskyttelse",
+ "select_type": "Velg hva du vil gjenopprette",
+ "show_log": "Vis full logg",
+ "type": "Type sikkerhetskopiering",
+ "upload_backup": "Last opp backup"
+ },
+ "user": {
+ "create_account": "Opprett konto",
+ "data": {
+ "name": "Navn",
+ "password": "Passord",
+ "password_confirm": "Bekreft passord",
+ "username": "Brukernavn"
+ },
+ "error": {
+ "password_not_match": "Passordene er ikke like",
+ "required_fields": "Fyll ut alle nødvendige felt"
+ },
+ "intro": "La oss begynne med å opprette en brukerkonto.",
+ "required_field": "Kreves"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Låser opp avanserte funksjoner.",
+ "link_promo": "Lær mer",
+ "title": "Avansert modus"
+ },
+ "change_password": {
+ "confirm_new_password": "Bekreft nytt passord",
+ "current_password": "Nåværende passord",
+ "error_new_is_old": "Nytt passord må være annerledes enn gjeldende passord",
+ "error_new_mismatch": "Oppgitte nye passordverdier stemmer ikke overens",
+ "error_required": "Nødvendig",
+ "header": "Endre passord",
+ "new_password": "Nytt passord",
+ "submit": "Send inn",
+ "success": "Passordet ble endret"
+ },
+ "current_user": "Du er logget inn som {fullName}.",
+ "customize_sidebar": {
+ "button": "Rediger",
+ "description": "Du kan også trykke på og holde nede overskriften på sidepanelet for å aktivere redigeringsmodus.",
+ "header": "Endre rekkefølgen og skjul elementer fra sidepanelet"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Oversikt (standard)",
+ "description": "Velg et standard instrumentbord for denne enheten.",
+ "dropdown_label": "",
+ "header": ""
+ },
+ "enable_shortcuts": {
+ "description": "Aktiver eller deaktiver hurtigtaster for å utføre forskjellige handlinger i brukergrensesnittet",
+ "header": "Hurtigtaster"
+ },
+ "force_narrow": {
+ "description": "Dette vil skjule sidepanelet som standard, tilsvarende opplevelsen på en mobil.",
+ "header": "Skjul alltid sidepanelet"
+ },
+ "is_owner": "Du er en eier",
+ "language": {
+ "dropdown_label": "Språk",
+ "header": "Språk",
+ "link_promo": "Bidra til å oversette"
+ },
+ "logout": "Logg ut",
+ "logout_text": "Er du sikker på at du vil logge av?",
+ "logout_title": "Logg av?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Er du sikker på at du vil slette tilgangstoken for {name}?",
+ "create": "Opprett Token",
+ "create_failed": "Kunne ikke opprette tilgangstoken.",
+ "created": "Opprettet {date}",
+ "delete_failed": "Kan ikke slette tilgangstokenet.",
+ "description": "Opprett langvarige tilgangstokener slik at skriptene dine kan samhandle med din Home Assistant instans. Hver token vil være gyldig i 10 år fra opprettelsen. Følgende langvarige tilgangstokener er for tiden aktive.",
+ "empty_state": "Du har ingen langvarige tilgangstokener ennå.",
+ "header": "Langvarige tilgangstokener",
+ "learn_auth_requests": "Lær hvordan du lager godkjente forespørsler.",
+ "name": "Navn",
+ "prompt_copy_token": "Kopier tilgangstoken. Det blir ikke vist igjen.",
+ "prompt_name": "Gi tokenet et navn"
+ },
+ "mfa": {
+ "confirm_disable": "Er du sikker på at du vil deaktivere {name}?",
+ "disable": "Deaktiver",
+ "enable": "Aktiver",
+ "header": "Flerfaktor godkjenningsmoduler"
+ },
+ "mfa_setup": {
+ "close": "Lukk",
+ "step_done": "Oppsett fullført for {step}",
+ "submit": "Send inn",
+ "title_aborted": "Avbrutt",
+ "title_success": "Suksess!"
+ },
+ "number_format": {
+ "description": "Velg hvordan tallene skal formateres.",
+ "dropdown_label": "Tallformat",
+ "formats": {
+ "comma_decimal": "1.234.567,89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Automatisk (bruk språkinnstilling)",
+ "none": "Ingen",
+ "space_comma": "1 234 567,89",
+ "system": "Bruk systemets lokasjonsinnstilling."
+ },
+ "header": "Tallformat"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Enhetsnavn",
+ "title": "Hva skal denne enheten hete?"
+ },
+ "description": "Send varsler til denne enheten.",
+ "error_load_platform": "Konfigurer notify.html5.",
+ "error_use_https": "Krever SSL aktivert for grensesnitt.",
+ "header": "Push varslinger",
+ "link_promo": "Lær mer",
+ "push_notifications": "Push varslinger"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Er du sikker på at du vil slette oppdateringstoken for {name}?",
+ "created_at": "Opprettet {date}",
+ "current_token_tooltip": "Kan ikke slette gjeldende oppdateringstoken",
+ "delete_failed": "Kunne ikke slette oppdateringstoken.",
+ "description": "Hver oppdateringstoken representerer en innloggingsøkt. Oppdateringstoken blir automatisk fjernet når du klikker på logg ut. Følgende oppdateringstoken er for tiden aktiv for kontoen din.",
+ "header": "Oppdater Tokens",
+ "last_used": "Sist brukt {date} fra {location}",
+ "not_used": "Har aldri blitt brukt",
+ "token_title": "Oppdateringstoken for {clientId}"
+ },
+ "suspend": {
+ "description": "Skal vi lukke tilkoblingen til serveren etter å ha vært gjemt i 5 minutter?",
+ "header": "Lukk tilkoblingen automatisk"
+ },
+ "themes": {
+ "accent_color": "Aksentfarge",
+ "dark_mode": {
+ "auto": "Auto",
+ "dark": "Mørk",
+ "light": "Lys"
+ },
+ "dropdown_label": "Tema",
+ "error_no_theme": "Ingen temaer er tilgjengelig.",
+ "header": "Tema",
+ "link_promo": "Lær om temaer",
+ "primary_color": "Primærfarge",
+ "reset": "Nullstille"
+ },
+ "time_format": {
+ "description": "Velg hvordan tidene skal formateres.",
+ "dropdown_label": "Tidsformat",
+ "formats": {
+ "12": "12 timer (AM/PM)",
+ "24": "24 timer",
+ "language": "Automatisk (bruk språkinnstilling)",
+ "system": "Bruk systemområdet"
+ },
+ "header": "Tidsformat"
+ },
+ "vibrate": {
+ "description": "Aktiver eller deaktiver vibrasjoner på denne enheten når du kontrollerer enheter.",
+ "header": "Vibrere"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Start samtale"
+ }
+ },
+ "sidebar": {
+ "done": "Ferdig",
+ "external_app_configuration": "Appkonfigurasjon",
+ "hide_panel": "Skjul panel",
+ "show_panel": "Vis panel",
+ "sidebar_toggle": "Vis/Skjul sidepanel"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/nl.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/nl.json
new file mode 100644
index 00000000..8e256ed8
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/nl.json
@@ -0,0 +1,4656 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Configuratie-item",
+ "device": "Apparaat",
+ "integration": "Integratie",
+ "user": "Gebruiker"
+ }
+ },
+ "groups": {
+ "owner": "Eigenaar",
+ "system-admin": "Beheerders",
+ "system-read-only": "Alleen-lezen gebruikers",
+ "system-users": "Gebruikers"
+ },
+ "panel": {
+ "calendar": "Kalender",
+ "config": "Instellingen",
+ "developer_tools": "Ontwikkelhulpmiddelen",
+ "energy": "Energie",
+ "history": "Geschiedenis",
+ "logbook": "Logboek",
+ "mailbox": "Postvak",
+ "map": "Kaart",
+ "media_browser": "Mediabrowser",
+ "profile": "Profiel",
+ "shopping_list": "Boodschappenlijst",
+ "states": "Overzicht"
+ },
+ "state": {
+ "default": {
+ "off": "Uit",
+ "on": "Aan",
+ "unavailable": "Niet beschikbaar",
+ "unknown": "Onbekend"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Auto",
+ "off": "Uit",
+ "on": "Aan"
+ },
+ "hvac_action": {
+ "cooling": "Koelen",
+ "drying": "Ontvochtigen",
+ "fan": "Ventilator",
+ "heating": "Verwarmen",
+ "idle": "Inactief",
+ "off": "Uit"
+ },
+ "preset_mode": {
+ "activity": "Activiteit",
+ "away": "Afwezig",
+ "boost": "Boost",
+ "comfort": "Comfort",
+ "eco": "Eco",
+ "home": "Thuis",
+ "none": "Geen",
+ "sleep": "Slapen"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Auto",
+ "away": "Afwezig",
+ "baby": "Baby",
+ "boost": "Boost",
+ "comfort": "Comfort",
+ "eco": "Eco",
+ "home": "Thuis",
+ "normal": "Normaal",
+ "sleep": "Slapen"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Actief",
+ "armed_away": "Actief",
+ "armed_custom_bypass": "Ingeschakeld",
+ "armed_home": "Actief",
+ "armed_night": "Actief",
+ "armed_vacation": "Ingeschakeld",
+ "arming": "Gaat aan",
+ "disarmed": "Uit",
+ "disarming": "Gaat uit",
+ "pending": "Wacht",
+ "triggered": "Gaat af"
+ },
+ "default": {
+ "entity_not_found": "Entiteit niet gevonden",
+ "error": "Fout",
+ "unavailable": "Niet besch",
+ "unknown": "Onbek."
+ },
+ "device_tracker": {
+ "home": "Thuis",
+ "not_home": "Afwezig"
+ },
+ "person": {
+ "home": "Thuis",
+ "not_home": "Afwezig"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Standaard",
+ "header": "Audio",
+ "input": "Invoer",
+ "output": "Uitvoer"
+ },
+ "network": {
+ "container": "Container",
+ "disabled": "Uitgeschakeld",
+ "header": "Netwerk",
+ "host": "Host"
+ },
+ "no_configuration": "Deze add-on laat geen configuratie zien waar je mee kunt spelen…",
+ "options": {
+ "edit_in_ui": "Bewerken in UI",
+ "edit_in_yaml": "Bewerken in YAML",
+ "header": "Opties",
+ "invalid_yaml": "Ongeldige YAML",
+ "show_unused_optional": "Ongebruikte optionele configuratieopties tonen"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Ophalen changelog van add-on is mislukt",
+ "go_to_config": "Configuratie bewerken",
+ "install": "De installatie van de invoegtoepassing is mislukt",
+ "restart": "Herstarten van de add-on is mislukt",
+ "start": "Starten van de add-on is mislukt",
+ "start_invalid_config": "Ga naar configuratie",
+ "stop": "Stoppen van de add-on is mislukt",
+ "uninstall": "Verwijderen van add-on is mislukt",
+ "validate_config": "De configuratie van de invoegtoepassing kon niet worden gevalideerd"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor ('Application Armor') is een beveiligingsmodule voor de Linux-kernel die de mogelijkheden van invoegtoepassingen beperkt, zoals netwerktoegang, toegang tot raw socket, en toestemming om specifieke bestanden te lezen, te schrijven of uit te voeren.\n\nAuteurs van invoegtoepassingen kunnen hun beveiligings-profielen opgeven, geoptimaliseerd voor de invoegtoepassing, of vragen om AppArmor uit te schakelen. Als deze is uitgeschakeld, verhoogt dit de beveiligingsrisico's en heeft het een negatieve invloed op de beveiligingsscore van de invoegtoepassing.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "Een invoegtoepassing kan gebruikers authenticeren bij Home Assistant met hun Home Assistant gebruikersnaam/wachtwoord. Hierdoor hebben invoegtoepassingen de mogelijkheid om gebruikers in te loggen bij applicaties die draaien in invoegtoepassingen. Deze badge geeft aan of de auteur van de invoegtoepassing deze mogelijkheid heeft aangevraagd.",
+ "title": "Home Assistant Authenticatie"
+ },
+ "docker_api": {
+ "description": "De auteur van deze invoegtoepassing heeft gevraagd of deze beheertoegang mag tot de Docker-instantie die op uw systeem draait. Deze modus geeft de invoegtoepassing volledige toegang en controle tot uw gehele Home Assistant-systeem, wat veiligheidsrisico's met zich mee brengt en bij misbruik uw systeem kan beschadigen. Daarom heeft deze functie een negatieve invloed op de beveiligingsscore van de invoegtoepassing.\n\nDit niveau van toegang wordt niet automatisch verleend en moet door u worden bevestigd. Om dit te doen moet u de beschermingsmodus op de invoegtoepassing handmatig uitschakelen. Schakel de beveiligingsmodus alleen uit als u de bron van deze invoegtoepassing kent, nodig hebt EN vertrouwt.",
+ "title": "Volledige Docker toegang"
+ },
+ "full_access": {
+ "description": "Op verzoek van de auteur van deze invoegtoepassing, heeft deze invoegtoepassing volledige toegang tot de hardware van uw systeem. De toegang is vergelijkbaar met de bevoorrechte modus in Docker. Omdat dit mogelijke veiligheidsrisico's met zich meebrengt, heeft deze eigenschap een negatieve invloed op de veiligheidsscore van de invoegtoepassing.\n\nDit toegangsniveau wordt niet automatisch verleend en moet door u worden bevestigd. Om dit te doen, moet u de beveiligingsmodus van de invoegtoepassing handmatig uitschakelen. Schakel de beveiligingsmodus alleen uit als u de bron van deze invoegtoepassing kent, nodig hebt EN vertrouwt.",
+ "title": "Volledige hardware toegang"
+ },
+ "hassio_api": {
+ "description": "Op verzoek van de auteur van de invoegtoepassing, heeft de invoegtoepassing toegang gekregen tot de Supervisor API. Standaard heeft deze toegang tot algemene versie-informatie van uw systeem. Wanneer de invoegtoepassing het toegangsniveau 'manager' of 'admin' tot de API aanvraagt, zal het toegang krijgen om meerdere delen van uw Home Assistant systeem te controleren. Deze toestemming wordt aangegeven met deze badge en zal de beveiligingsscore van de invoegtoepassing negatief beïnvloeden.",
+ "title": "Supervisor API Toegang"
+ },
+ "homeassistant_api": {
+ "description": "Deze invoegtoepassing heeft rechtstreeks toegang tot uw actieve Home Assistant-instantie via de Home Assistant API. Deze modus handelt ook de authenticatie voor de invoegtoepassing af, waardoor een invoegtoepassing kan communiceren met Home Assistant zonder de noodzaak van extra authenticatietokens.",
+ "title": "Home Assistant API Toegang"
+ },
+ "host_network": {
+ "description": "Invoegtoepassingen draaien gewoonlijk in hun eigen geïsoleerde netwerklaag waardoor ze geen toegang hebben tot het netwerk van het host-besturingssysteem. In sommige gevallen kan deze netwerkisolatie invoegtoepassingen beperken in het leveren van hun diensten en daarom kan de isolatie worden opgeheven door de auteur van deze invoegtoepassingen. Hierdoor heeft de invoegtoepassing volledige toegang tot de netwerk mogelijkheden van de host-machine. De invoegtoepassing heeft dan meer netwerkmogelijkheden maar verlaagt de beveiliging. Vandaar dat de beveiligingsscore van de invoegtoepassing zal worden verlaagd als deze optie door de invoegtoepassing wordt gebruikt.",
+ "title": "Hostnetwerk"
+ },
+ "host_pid": {
+ "description": "Gewoonlijk zijn de processen die de invoegtoepassing uitvoert, geïsoleerd van alle andere systeemprocessen. De auteur van de invoegtoepassing heeft toegang gevraagd tot de systeemprocessen die op het host-systeem draaien en om toe te staan dat de invoegtoepassing ook processen op het host-systeem start. Deze modus geeft de invoegtoepassing volledige toegang tot en controle over uw gehele Home Assistant-systeem, wat veiligheidsrisico's toevoegt. Bij misbruik kan uw systeem beschadigd worden. Daarom heeft deze functie een negatieve invloed op de beveiligingsscore van de invoegtoepassing.\n\nDit niveau van toegang wordt niet automatisch verleend en moet door u worden bevestigd. Om dit te doen moet u de beschermingsmodus op de invoegtoepassing handmatig uitschakelen. Schakel de beveiligingsmodus alleen uit als u de bron van deze invoegtoepassing kent, nodig hebt EN vertrouwt.",
+ "title": "Host Processes Namespace"
+ },
+ "ingress": {
+ "description": "Deze invoegtoepassing maakt gebruik van Ingress om zijn gebruikersinterface veilig te integreren in Home Assistant.",
+ "title": "Ingress"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "auth",
+ "core": "Core",
+ "docker": "docker",
+ "hardware": "hardware",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "host",
+ "host_pid": "host pid",
+ "ingress": "ingress",
+ "rating": "beoordeling",
+ "stage": "stadium"
+ },
+ "rating": {
+ "description": "Home Assistant geeft een veiligheidsscore aan elke add-on, die aangeeft welke risico's het gebruik van deze add-on met zich meebrengt. Hoe meer toegang een add-on tot je systeem vereist, hoe lager de score, waardoor de mogelijke veiligheidsrisico's toenemen.\n\nEen score is op een schaal van 1 tot 6. Waarbij 1 de laagste score is (beschouwd als het meest onveilige en het grootste risico) en een score van 6 de hoogste score is (beschouwd als het meest veilige en het minste risico).",
+ "title": "Beveilingsscore add-on"
+ },
+ "role": {
+ "admin": "admin",
+ "backup": "back-up",
+ "default": "standaard",
+ "homeassistant": "homeassistant",
+ "manager": "manager"
+ },
+ "stage": {
+ "description": "Add-ons kunnen een van de drie stadia hebben:\n\n{icon_stable} **Stabiel**: Dit zijn add-ons die klaar zijn om in productie gebruikt te worden.\n\n{icon_experimental} **Experimenteel**: Deze kunnen fouten bevatten en kunnen onvoltooid zijn.\n\n{icon_deprecated} **Vervallen**: Deze add-ons zullen niet langer updates ontvangen.",
+ "title": "Add-on stadium"
+ },
+ "stages": {
+ "deprecated": "Verouderd",
+ "experimental": "Experimenteel"
+ }
+ },
+ "changelog": "Wijzigingsoverzicht",
+ "cpu_usage": "Add-on CPU-gebruik",
+ "hostname": "Hostnaam",
+ "install": "installeren",
+ "new_update_available": "{name} {version} is beschikbaar",
+ "not_available_arch": "Deze add-on is niet compatibel met de processor van je apparaat of het besturingssysteem dat je op je apparaat hebt geïnstalleerd.",
+ "not_available_version": "Je draait Home Assistant {core_version_installed}. Om de add-on naar deze versie bij te werken moet je minimaal Home Assistant {core_version_needed} hebben.",
+ "open_web_ui": "Open web UI",
+ "option": {
+ "auto_update": {
+ "description": "Update automatisch de invoegtoepassing wanneer er een nieuwe versie beschikbaar is",
+ "title": "Automatisch bijwerken"
+ },
+ "boot": {
+ "description": "Start de add-on tijdens het opstarten van het systeem",
+ "title": "Start bij opstarten"
+ },
+ "ingress_panel": {
+ "description": "Deze invoegtoepassing toevoegen aan je zijbalk",
+ "title": "Weergeven in zijbalk"
+ },
+ "protected": {
+ "description": "Blokkeert systeemtoegang met extra rechten voor de invoegtoepassing",
+ "title": "Beschermingsmodus"
+ },
+ "watchdog": {
+ "description": "Dit zal de add-on starten als deze vastloopt",
+ "title": "Watchdog"
+ }
+ },
+ "protection_mode": {
+ "content": "Beschermingsmodus op deze add-on is uitgeschakeld! Dit geeft de add-on volledige toegang tot het hele systeem, wat veiligheidsrisico's toevoegt, en uw systeem kan beschadigen bij onjuist gebruik. Schakel de beveiligingsmodus alleen uit als u de bron van deze add-on kent, nodig hebt EN vertrouwt.",
+ "enable": "Inschakelen",
+ "title": "Beschermingsmodus is uitgeschakeld!"
+ },
+ "ram_usage": "Add-on RAM-gebruik",
+ "rebuild": "herbouw",
+ "restart": "herstart",
+ "start": "start",
+ "stop": "stop",
+ "uninstall": "verwijderen",
+ "visit_addon_page": "Bezoek de {name} pagina voor meer details"
+ },
+ "documentation": {
+ "get_documentation": "Ophalen documentatie van de add-on is mislukt, {error}"
+ },
+ "failed_to_reset": "Kan configuratie van add-on niet resetten, {error}",
+ "failed_to_save": "Mislukt om add-on configuratie op te slaan, {error}",
+ "logs": {
+ "get_logs": "Ophalen van het logboek van de invoegtoepassing is mislukt, {error}"
+ },
+ "panel": {
+ "configuration": "Configuratie",
+ "documentation": "Documentatie",
+ "info": "Informatie",
+ "log": "Logboek"
+ },
+ "state": {
+ "installed": "Add-on is geïnstalleerd",
+ "not_available": "Add-on is niet beschikbaar op uw systeem",
+ "not_installed": "Add-on is niet geïnstalleerd"
+ }
+ },
+ "backup": {
+ "addons": "Add-ons",
+ "confirm_password": "Bevestig backup-wachtwoord",
+ "could_not_create": "Kon geen back-up maken",
+ "create": "Maak",
+ "create_backup": "Maak back-up",
+ "create_blocked_not_running": "Het maken van een back-up is nu niet mogelijk omdat het systeem in {state} staat.",
+ "created": "Gemaakt",
+ "delete_backup_confirm": "verwijder",
+ "delete_backup_text": "Wilt u {number} {number, plural,\n one {back-up}\n other {back-ups}\n} verwijderen?",
+ "delete_backup_title": "Verwijder back-up",
+ "delete_selected": "Verwijder geselecteerde back-ups",
+ "enter_password": "Voer een wachtwoord in.",
+ "failed_to_delete": "Verwijderen mislukt",
+ "folders": "Mappen",
+ "full_backup": "Volledige back-up",
+ "name": "Back-up naam",
+ "no_backups": "U heeft nog geen back-ups.",
+ "partial_backup": "Gedeeltelijke back-up",
+ "password": "Back-up wachtwoord",
+ "password_protection": "Wachtwoord bescherming",
+ "passwords_not_matching": "De wachtwoorden komen niet overeen",
+ "select_type": "Selecteer wat u wilt herstellen",
+ "selected": "{number} geselecteerd",
+ "size": "Grootte",
+ "type": "Back-up type",
+ "upload_backup": "Upload back-up"
+ },
+ "common": {
+ "cancel": "Annuleren",
+ "close": "Sluiten",
+ "description": "Omschrijving",
+ "error": {
+ "unknown": "Onbekende fout",
+ "update_failed": "Update mislukt"
+ },
+ "failed_to_restart_name": "Herstarten {name} is mislukt",
+ "failed_to_update_name": "Bijwerken {name} is mislukt",
+ "learn_more": "Meer informatie",
+ "menu": "Menu",
+ "new_version_available": "Nieuwe versie beschikbaar",
+ "newest_version": "Nieuwste versie",
+ "no": "Nee",
+ "refresh": "Vernieuwen",
+ "release_notes": "Release-notities",
+ "reload": "Herlaad",
+ "reset_defaults": "Standaardinstellingen terugzetten",
+ "reset_options": "Reset opties",
+ "restart": "Herstart",
+ "restart_name": "Herstart {name}",
+ "review": "review",
+ "running_version": "Je gebruikt momenteel versie {version}",
+ "save": "Opslaan",
+ "show": "toon",
+ "show_more": "Toon meer informatie hierover",
+ "update": "Update",
+ "update_available": "{count, plural, one {Een update staat} other {{count} updates staan}} klaar",
+ "version": "Versie",
+ "yes": "Ja"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Weet u zeker dat u al uw opties opnieuw wilt instellen?",
+ "title": "Reset opties"
+ },
+ "restart": {
+ "text": "Weet u zeker dat u {name} opnieuw wilt starten?",
+ "title": "Herstart {name}"
+ },
+ "update": {
+ "text": "Weet u zeker dat u {name} wilt updaten naar versie {version}?",
+ "title": "Update {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Nieuwe versie beschikbaar",
+ "addon_running": "Add-on wordt uitgevoerd",
+ "addon_stopped": "Add-on is gestopt",
+ "addons": "Geïnstalleerde add-ons",
+ "no_addons": "Je hebt nog geen add-ons geïnstalleerd. Ga naar de add-on store om te beginnen!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Annuleren",
+ "description": "U gebruikt momenteel '' {current_path} '' als datadisk. Als u gegevensschijven verplaatst, wordt uw apparaat opnieuw opgestart en dit duurt naar schatting {time} minuten. Uw Home Assistant-installatie is gedurende deze periode niet toegankelijk. Koppel de stroom niet los tijdens de verplaatsing!",
+ "loading_devices": "Apparaten laden",
+ "move": "Verplaats",
+ "moving": "Verplaatsen datadisk",
+ "moving_desc": "Herstarten en verplaatsen van datadisk. even geduld aub",
+ "no_devices": "Geen geschikte aangesloten apparaten gevonden",
+ "select_device": "Selecteer nieuwe datadisk",
+ "title": "Verplaats datadisk"
+ },
+ "hardware": {
+ "attributes": "Attributen",
+ "device_path": "Apparaatpad",
+ "id": "ID",
+ "search": "Zoek hardware",
+ "subsystem": "Subsysteem",
+ "title": "Hardware"
+ },
+ "network": {
+ "connected_to": "Verbonden met {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Uitgeschakeld",
+ "dns_servers": "DNS-servers",
+ "failed_to_change": "Wijzigen netwerkinstellingen mislukt",
+ "gateway": "Gateway-adres",
+ "ip_netmask": "IP-adres/Netmask",
+ "open": "Open",
+ "scan_ap": "Scan voor toegangspunten",
+ "static": "Statisch",
+ "title": "Netwerkinstellingen",
+ "unsaved": "U heeft niet-opgeslagen wijzigingen, deze gaan verloren als u van tabblad verandert, wilt u doorgaan?",
+ "warning": "Als u het Wi-Fi-, IP- of gateway-adres verandert, kunt u de verbinding verliezen!",
+ "wep": "WEP",
+ "wpa": "wpa-psk"
+ },
+ "registries": {
+ "add_new_registry": "Nieuw register toevoegen",
+ "add_registry": "Register toevoegen",
+ "failed_to_add": "Register toevoegen mislukt",
+ "failed_to_remove": "Register verwijderen mislukt",
+ "no_registries": "Geen registers geconfigureerd",
+ "password": "Wachtwoord",
+ "registry": "Register",
+ "remove": "Verwijderen",
+ "title_add": "Nieuwe container registratie toevoegen",
+ "title_manage": "Beheer containerregisters",
+ "username": "Gebruikersnaam"
+ },
+ "repositories": {
+ "add": "Toevoegen",
+ "remove": "Verwijderen",
+ "title": "Beheer de add-on repositories",
+ "used": "Repository wordt gebruikt voor geïnstalleerde add-ons en kan niet worden voor verwijderd."
+ },
+ "restart_addon": {
+ "confirm_text": "Herstart de invoegtoepassing",
+ "text": "Wilt u de invoegtoepassing opnieuw starten met uw wijzigingen?"
+ },
+ "update": {
+ "backup": "Back-up",
+ "create_backup": "Maak een backup van {name} voordat er wordt geüpdatet",
+ "creating_backup": "Back-up maken van {name}",
+ "updating": "Bijwerken van {name} naar versie {version}"
+ }
+ },
+ "my": {
+ "error": "Er is een onbekende fout opgetreden",
+ "error_addon_no_ingress": "De gevraagde add-on ondersteunt geen ingress",
+ "error_addon_not_found": "Invoegtoepassing niet gevonden",
+ "error_addon_not_installed": "De gevraagde add-on is niet geïnstalleerd. Gelieve deze eerst te installeren",
+ "error_addon_not_started": "De gevraagde add-on is niet actief. Start deze a.u.b. eerst",
+ "faq_link": "My Home Assistant FAQ",
+ "not_supported": "Deze redirect wordt niet ondersteund door uw Home Assistant instantie. Controleer de {link} voor de ondersteunde redirects en de versie waarin ze zijn geïntroduceerd."
+ },
+ "panel": {
+ "addons": "Add-ons",
+ "backups": "Back-ups",
+ "dashboard": "Dashboard",
+ "store": "Add-on Store",
+ "system": "Systeem"
+ },
+ "store": {
+ "check_updates": "Controleer op updates",
+ "missing_addons": "Mis je de invoegtoepassingen? Schakel de geavanceerde modus in op uw gebruikersprofiel pagina",
+ "no_results_found": "Geen resultaten gevonden in {repository}.",
+ "registries": "Registers",
+ "repositories": "Repositories"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Core CPU-gebruik",
+ "ram_usage": "Core RAM-gebruik"
+ },
+ "host": {
+ "change": "Wijzig",
+ "change_hostname": "Hostnaam wijzigen",
+ "confirm_reboot": "Weet u zeker dat u de host wilt herstarten?",
+ "confirm_shutdown": "Weet je zeker dat je de host wilt afsluiten?",
+ "deployment": "Uitrol",
+ "docker_version": "Docker versie",
+ "emmc_lifetime_used": "eMMC Levensduur Gebruikt",
+ "failed_to_get_hardware_list": "Kan geen hardware lijst krijgen",
+ "failed_to_import_from_usb": "Importeren vanaf USB mislukt",
+ "failed_to_move": "Verplaatsen van datadisk mislukt",
+ "failed_to_reboot": "Herstarten host mislukt",
+ "failed_to_set_hostname": "Instellen hostnaam mislukt",
+ "failed_to_shutdown": "Afsluiten host mislukt",
+ "hardware": "Hardware",
+ "hostname": "Hostnaam",
+ "import_from_usb": "Importeren van USB",
+ "ip_address": "IP-adres",
+ "move_datadisk": "Verplaats datadisk",
+ "new_hostname": "Voer een nieuwe hostnaam in:",
+ "operating_system": "Besturingssysteem",
+ "reboot_host": "Host herstarten",
+ "shutdown_host": "Host afsluiten",
+ "used_space": "Gebruikte ruimte"
+ },
+ "log": {
+ "get_logs": "Ophalen {provider} logs mislukt, {error}",
+ "log_provider": "Logboekprovider"
+ },
+ "supervisor": {
+ "beta_backup": "Zorg ervoor dat je back-ups van je gegevens hebt voordat je deze functie activeert.",
+ "beta_join_confirm": "Wil je meedoen met de bèta releases?",
+ "beta_release_items": "Dit omvat bèta releases voor:",
+ "beta_warning": "Bèta-releases zijn voor testers en early adopters en kunnen onstabiele codewijzigingen bevatten",
+ "channel": "Kanaal",
+ "cpu_usage": "Supervisor CPU-gebruik",
+ "failed_to_reload": "Herladen van de Supervisor is mislukt",
+ "failed_to_set_option": "Instellen van Supervisor-optie is mislukt",
+ "failed_to_update": "Bijwerken van de Supervisor is mislukt",
+ "join_beta_action": "Word lid van het bèta-kanaal",
+ "join_beta_description": "Ontvang bèta-updates voor Home Assistant (RC's), Supervisor en host",
+ "leave_beta_action": "Verlaat bèta-kanaal",
+ "leave_beta_description": "Krijg stabiele updates voor Home Assistant, Supervisor en host",
+ "ram_usage": "Supervisor RAM-gebruik",
+ "reload_supervisor": "Herlaad de Supervisor",
+ "search": "Zoek",
+ "share_diagnostics": "Diagnostische gegevens delen",
+ "share_diagnostics_description": "Deel crash rapporten en diagnostische informatie.",
+ "share_diagonstics_description": "Zou je automatisch crash rapporten en diagnostische informatie willen delen wanneer de Supervisor onverwachte fouten tegenkomt? {line_break} Dit stelt ons in staat om de problemen op te lossen, de informatie is alleen toegankelijk voor het Home Assistant Core team en zal niet met anderen gedeeld worden.{line_break} De gegevens bevatten geen privé/gevoelige informatie en u kunt dit in de instellingen op elk gewenst moment uitschakelen.",
+ "share_diagonstics_title": "Help Home Assistant te verbeteren",
+ "unhealthy_description": "Het draaien van een onvolledige installatie zal problemen veroorzaken. Hieronder vindt u een lijst met problemen die gevonden zijn met uw installatie, klik op de links om te leren hoe u de problemen kunt oplossen.",
+ "unhealthy_reason": {
+ "docker": "De Docker omgeving werkt niet goed",
+ "privileged": "Supervisor heeft onvoldoende toegangsrechten",
+ "setup": "Setup van de Supervisor mislukt",
+ "supervisor": "Supervisor kon niet worden bijgewerkt",
+ "untrusted": "Niet-vertrouwde inhoud gedetecteerd"
+ },
+ "unhealthy_title": "Er is iets mis met je installatie",
+ "unsupported_description": "Hieronder vindt je een lijst met problemen die bij je installatie zijn aangetroffen. Klik op de links om te zien hoe je de problemen kunt oplossen.",
+ "unsupported_reason": {
+ "apparmor": "AppArmor is niet ingeschakeld op de host",
+ "container": "Containers waarvan bekend is dat ze problemen veroorzaken",
+ "content-trust": "Validatie van content-trust is uitgeschakeld",
+ "content_trust": "Validatie van content-trust is uitgeschakeld",
+ "dbus": "DBUS",
+ "docker_configuration": "Docker Configuratie",
+ "docker_version": "Docker versie",
+ "job_conditions": "Genegeerde taakvoorwaarden",
+ "lxc": "LXC",
+ "network_manager": "Netwerkmanager",
+ "os": "Besturingssysteem",
+ "os_agent": "OS Agent",
+ "privileged": "Supervisor heeft onvoldoende toegangsrechten",
+ "software": "Niet-ondersteunde software gedetecteerd",
+ "source_mods": "Bronwijzigingen",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Je gebruikt een niet-ondersteunde installatie",
+ "update_supervisor": "Supervisor bijwerken",
+ "warning": "WAARSCHUWING"
+ }
+ },
+ "update_available": {
+ "core_note": "De supervisor zal terugdraaien naar versie {version} als uw instantie niet opkomt na de update.",
+ "create_backup": "Maak een back-up voordat u gaat updaten",
+ "creating_backup": "Back-up maken van {name}",
+ "description": "U heeft {version} geïnstalleerd. Klik op update om bij te werken naar versie {newest_version}",
+ "no_update": "Geen update beschikbaar voor {name}",
+ "open_release_notes": "Open release notes",
+ "update_name": "Update {name}",
+ "updating": "Bijwerken van {name} naar versie {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Wil je ingelogd blijven?",
+ "confirm": "Ja",
+ "decline": "Nee"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Inschakelen voor vertrek",
+ "arm_custom_bypass": "Inschakelen met overbrugging",
+ "arm_home": "Inschakelen voor thuis",
+ "arm_night": "Inschakelen voor 's nachts",
+ "arm_vacation": "Inschakelen voor vakantie",
+ "clear_code": "Wis",
+ "code": "Code",
+ "disarm": "Uitschakelen"
+ },
+ "area": {
+ "area_not_found": "Gebied niet gevonden."
+ },
+ "automation": {
+ "last_triggered": "Laatst uitgevoerd",
+ "trigger": "Uitvoeren"
+ },
+ "button": {
+ "press": "Klik"
+ },
+ "camera": {
+ "not_available": "Afbeelding niet beschikbaar"
+ },
+ "climate": {
+ "aux_heat": "Extra warmte",
+ "away_mode": "Afwezigheidsmodus",
+ "cooling": "{name} koeling",
+ "current_temperature": "{name} huidige temperatuur",
+ "currently": "Momenteel",
+ "fan_mode": "Ventilatormodus",
+ "heating": "{name} verwarming",
+ "high": "hoog",
+ "low": "laag",
+ "on_off": "Aan / uit",
+ "operation": "Werking",
+ "preset_mode": "Voorinstelling",
+ "swing_mode": "Swingmodus",
+ "target_humidity": "Gewenste luchtvochtigheid",
+ "target_temperature": "Gewenste temperatuur",
+ "target_temperature_entity": "{name} doeltemperatuur",
+ "target_temperature_mode": "{name} doeltemperatuur {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "verlagen",
+ "increment": "verhoging",
+ "reset": "reset"
+ }
+ },
+ "cover": {
+ "position": "Positie",
+ "tilt_position": "Kantelpositie"
+ },
+ "fan": {
+ "direction": "Richting",
+ "forward": "Voorwaarts",
+ "oscillate": "Oscilleren",
+ "preset_mode": "Vooraf ingestelde modus",
+ "reverse": "Omkeren",
+ "speed": "Snelheid"
+ },
+ "humidifier": {
+ "humidity": "Doel luchtvochtigheid",
+ "mode": "Modus",
+ "on_entity": "{name} aan",
+ "target_humidity_entity": "{name} doel luchtvochtigheid"
+ },
+ "light": {
+ "brightness": "Helderheid",
+ "cold_white_value": "Koud wit helderheid",
+ "color_brightness": "Kleurhelderheid",
+ "color_temperature": "Kleurtemperatuur",
+ "effect": "Effect",
+ "warm_white_value": "Warm wit helderheid",
+ "white_value": "Witwaarde"
+ },
+ "lock": {
+ "code": "Code",
+ "lock": "Vergrendelen",
+ "unlock": "Ontgrendelen"
+ },
+ "media_player": {
+ "browse_media": "Door media bladeren",
+ "media_next_track": "Volgende nummer",
+ "media_pause": "Pauzeer",
+ "media_play": "Speel",
+ "media_play_pause": "Afspelen/pauzeren",
+ "media_previous_track": "Vorige nummer",
+ "media_stop": "Stop",
+ "media_volume_down": "Volume omlaag",
+ "media_volume_mute": "Volume dempen",
+ "media_volume_unmute": "Volume dempen opheffen",
+ "media_volume_up": "Volume omhoog",
+ "nothing_playing": "Niets aan het spelen",
+ "sound_mode": "Geluidsmodus",
+ "source": "Bron",
+ "text_to_speak": "Tekst naar spraak",
+ "turn_off": "Uitschakelen",
+ "turn_on": "Inschakelen"
+ },
+ "persistent_notification": {
+ "dismiss": "Sluiten"
+ },
+ "scene": {
+ "activate": "Activeren"
+ },
+ "script": {
+ "cancel": "Annuleer",
+ "cancel_multiple": "Annuleer {number}",
+ "run": "Uitvoeren"
+ },
+ "service": {
+ "run": "Uitvoeren"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "annuleren",
+ "finish": "voltooien",
+ "pause": "pauze",
+ "start": "start"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Hervat schoonmaak",
+ "return_to_base": "Keer terug naar dock",
+ "start_cleaning": "Begin schoonmaak",
+ "turn_off": "Uitschakelen",
+ "turn_on": "Inschakelen"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Afwezigheidsmodus",
+ "currently": "Momenteel",
+ "on_off": "Aan / uit",
+ "operation": "Werking",
+ "target_temperature": "Gewenste temperatuur"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Luchtdruk",
+ "humidity": "Vochtigheid",
+ "precipitation": "Neerslag",
+ "temperature": "Temperatuur",
+ "visibility": "Zicht",
+ "wind_speed": "Windsnelheid"
+ },
+ "cardinal_direction": {
+ "e": "O",
+ "ene": "ONO",
+ "ese": "OZO",
+ "n": "N",
+ "ne": "NO",
+ "nne": "NNO",
+ "nnw": "NNW",
+ "nw": "NW",
+ "s": "Z",
+ "se": "ZO",
+ "sse": "ZZO",
+ "ssw": "ZZW",
+ "sw": "ZW",
+ "w": "W",
+ "wnw": "WNW",
+ "wsw": "WZW"
+ },
+ "day": "Dag",
+ "forecast": "Verwachting",
+ "high": "Hoog",
+ "low": "Laag",
+ "night": "Nacht"
+ }
+ },
+ "common": {
+ "and": "en",
+ "back": "Terug",
+ "cancel": "Annuleren",
+ "clear": "Wis",
+ "close": "Sluiten",
+ "continue": "Ga verder",
+ "copied": "Gekopieerd",
+ "copied_clipboard": "Gekopieerd naar het klembord",
+ "delete": "Verwijderen",
+ "disable": "Uitschakelen",
+ "enable": "Inschakelen",
+ "error_required": "Verplicht",
+ "help": "Help",
+ "leave": "Verlaten",
+ "loading": "Bezig met laden",
+ "menu": "Menu",
+ "move": "Verplaats",
+ "next": "Volgende",
+ "no": "Nee",
+ "not_now": "Niet nu",
+ "overflow_menu": "Overloopmenu",
+ "previous": "Vorige",
+ "refresh": "Vernieuwen",
+ "remove": "Verwijderen",
+ "rename": "Naam wijzigen",
+ "save": "Opslaan",
+ "skip": "Overslaan",
+ "stay": "Blijf",
+ "submit": "Verzenden",
+ "successfully_deleted": "Succesvol verwijderd",
+ "successfully_saved": "Succesvol opgeslagen",
+ "undo": "Ongedaan maken",
+ "yes": "Ja"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Add-on",
+ "error": {
+ "fetch_addons": {
+ "description": "Er is een fout opgetreden bij het laden van add-ons.",
+ "title": "Fout bij ophalen add-ons"
+ },
+ "no_supervisor": {
+ "description": "Add-ons worden niet ondersteund.",
+ "title": "Geen Supervisor"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Toevoegen",
+ "failed_create_area": "Kan het gebied niet maken.",
+ "name": "Naam",
+ "text": "Geef de naam op van het nieuwe gebied.",
+ "title": "Gebied toevoegen"
+ },
+ "add_new": "Nieuw gebied toevoegen…",
+ "area": "Gebied",
+ "clear": "Wis",
+ "no_areas": "Je hebt geen gebieden",
+ "no_match": "Geen overeenkomende gebieden gevonden",
+ "show_areas": "Toon gebieden"
+ },
+ "attributes": {
+ "expansion_header": "Attributen"
+ },
+ "blueprint-picker": {
+ "add_user": "Gebruiker toevoegen",
+ "remove_user": "Gebruiker verwijderen",
+ "select_blueprint": "Selecteer een Blueprint"
+ },
+ "calendar": {
+ "my_calendars": "Mijn agenda's",
+ "today": "Vandaag"
+ },
+ "data-table": {
+ "clear": "Wis",
+ "filtering_by": "Filteren op",
+ "hidden": "{number} verborgen",
+ "no-data": "Geen gegevens",
+ "search": "Zoek"
+ },
+ "date-range-picker": {
+ "end_date": "Einddatum",
+ "ranges": {
+ "last_week": "Vorige week",
+ "this_week": "Deze week",
+ "today": "Vandaag",
+ "yesterday": "Gisteren"
+ },
+ "select": "Selecteer",
+ "start_date": "Startdatum"
+ },
+ "device-picker": {
+ "clear": "Wis",
+ "device": "Apparaat",
+ "no_area": "Geen gebied",
+ "no_devices": "Je hebt geen apparaten",
+ "no_match": "Geen overeenkomende apparaten gevonden",
+ "show_devices": "Apparaten weergeven",
+ "toggle": "Omschakelen"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Attribuut",
+ "show_attributes": "Toon attributen"
+ },
+ "entity-picker": {
+ "clear": "Wis",
+ "edit": "Bewerken",
+ "entity": "Entiteit",
+ "no_match": "Geen overeenkomende entiteiten gevonden",
+ "show_entities": "Entiteiten weergeven"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "Geschiedenis integratie uitgeschakeld",
+ "loading_history": "Geschiedenis laden…",
+ "no_history_found": "Geen geschiedenis gevonden"
+ },
+ "logbook": {
+ "by": "door",
+ "by_service": "door service",
+ "entries_not_found": "Geen logboekvermeldingen gevonden.",
+ "messages": {
+ "became_unavailable": "is niet meer beschikbaar",
+ "changed_to_state": "gewijzigd in {state}",
+ "cleared_device_class": "niets gedetecteerd (geen {device_class} gedetecteerd)",
+ "cleared_tampering": "sabotage gewist",
+ "detected_device_class": "{device_class} gedetecteerd",
+ "detected_tampering": "ontdekte sabotage",
+ "is_closing": "aan het sluiten",
+ "is_opening": "Aan het openen",
+ "rose": "opkomst",
+ "set": "ondergang",
+ "turned_off": "is uitgeschakeld",
+ "turned_on": "is ingeschakeld",
+ "was_at_home": "was thuis",
+ "was_at_state": "was bij {state}",
+ "was_away": "was afwezig",
+ "was_closed": "gesloten",
+ "was_connected": "verbonden",
+ "was_disconnected": "verbroken",
+ "was_locked": "vergrendeld",
+ "was_low": "was laag",
+ "was_normal": "was normaal",
+ "was_opened": "geopend",
+ "was_plugged_in": "is aangesloten",
+ "was_safe": "was veilig",
+ "was_unlocked": "ontgrendeld",
+ "was_unplugged": "is niet aangesloten",
+ "was_unsafe": "was onveilig"
+ },
+ "retrieval_error": "Kan logboek niet laden",
+ "show_trace": "Tracering weergeven"
+ },
+ "media-browser": {
+ "audio_not_supported": "Uw browser ondersteunt het audio-element niet.",
+ "choose_player": "Kies speler",
+ "class": {
+ "album": "Album",
+ "app": "App",
+ "artist": "Artiest",
+ "channel": "Kanaal",
+ "composer": "Componist",
+ "contributing_artist": "Bijdragende artiest",
+ "directory": "Bibliotheek",
+ "episode": "Aflevering",
+ "game": "Spel",
+ "genre": "Genre",
+ "image": "Afbeelding",
+ "movie": "Film",
+ "music": "Muziek",
+ "playlist": "Afspeellijst",
+ "podcast": "Podcast",
+ "season": "Seizoen",
+ "track": "Nummer",
+ "tv_show": "TV-programma",
+ "url": "URL",
+ "video": "Video"
+ },
+ "documentation": "documentatie",
+ "learn_adding_local_media": "Leer meer over media toevoegen in de {documentation}.",
+ "local_media_files": "Plaats je video, audio en foto bestanden in de media map om bestanden te kunnen doorzoeken en afspelen in de browser of op ondersteunde mediaspelers.",
+ "media-player-browser": "Mediaspeler-browser",
+ "media_browsing_error": "Fout bij bladeren door media",
+ "media_not_supported": "De Browser Media Player ondersteunt dit type media niet",
+ "media_player": "Mediaspeler",
+ "no_items": "Niets gevonden",
+ "no_local_media_found": "Geen lokale media gevonden",
+ "no_media_folder": "Het lijkt erop dat je nog geen media map hebt gemaakt.",
+ "pick": "Kies",
+ "pick-media": "Kies Media",
+ "play": "Speel",
+ "play-media": "Media afspelen",
+ "setup_local_help": "Raadpleeg de {documentation} voor het instellen van lokale media.",
+ "video_not_supported": "Uw browser ondersteunt het video-element niet.",
+ "web-browser": "Webbrowser"
+ },
+ "picture-upload": {
+ "label": "Afbeelding",
+ "unsupported_format": "Niet-ondersteund formaat. Kies een JPEG-, PNG- of GIF-afbeelding."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Voer de waarde van de QR-code in",
+ "manual_input": "U kunt de QR-code scannen met een andere QR-scanner en de code in het onderstaande veld plakken",
+ "not_supported": "Uw browser heeft geen ondersteuning voor het scannen van QR-codes.",
+ "only_https_supported": "Het is alleen mogelijk om QR-codes met uw camera te scannen bij gebruik van HTTPS.",
+ "select_camera": "Selecteer camera"
+ },
+ "related-filter-menu": {
+ "filter": "Filter",
+ "filter_by_area": "Filter op gebied",
+ "filter_by_device": "Filter op apparaat",
+ "filter_by_entity": "Filter op entiteit",
+ "filtered_by_area": "gebied: {area_name}",
+ "filtered_by_device": "apparaat: {device_name}",
+ "filtered_by_entity": "entiteit: {entity_name}"
+ },
+ "related-items": {
+ "area": "Gebied",
+ "automation": "Onderdeel van de volgende automatiseringen",
+ "device": "Apparaat",
+ "entity": "Gerelateerde entiteiten",
+ "group": "Onderdeel van de volgende groepen",
+ "integration": "Integratie",
+ "no_related_found": "Geen gerelateerde items gevonden.",
+ "scene": "Onderdeel van de volgende scènes",
+ "script": "Onderdeel van de volgende scripts"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\none {dag}\nother {dagen}\n}",
+ "hour": "{count} {count, plural,\none {uur}\nother {uur}\n}",
+ "minute": "{count} {count, plural,\none {minuut}\nother {minuten}\n}",
+ "second": "{count} {count, plural,\none {seconde}\nother {seconden}\n}",
+ "week": "{count} {count, plural,\none {week}\nother {weken}\n}"
+ },
+ "future_duration": {
+ "day": "Binnen {count} {count, plural,\n one {dag}\n other {dagen}\n}",
+ "hour": "Binnen {count} {count, plural,\n one {uur}\n other {uren}\n}",
+ "minute": "Binnen {count} {count, plural,\n one {minuut}\n other {minuten}\n}",
+ "second": "Binnen {count} {count, plural,\n one {seconde}\n other {seconden}\n}",
+ "week": "Binnen {count} {count, plural,\n one {week}\n other {weken}\n}"
+ },
+ "just_now": "Zojuist",
+ "never": "Nooit",
+ "past_duration": {
+ "day": "{count} {count, plural,\n one {dag}\n other {dagen}\n} geleden",
+ "hour": "{count} {count, plural,\n one {uur}\n other {uren}\n} geleden",
+ "minute": "{count} {count, plural,\n one {minuut}\n other {minuten}\n} geleden",
+ "second": "{count} {count, plural,\n one {seconde}\n other {seconden}\n} geleden",
+ "week": "{count} {count, plural,\n one {week}\n other {weken}\n} geleden"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Integratiedocumentatie",
+ "required": "Dit veld is verplicht",
+ "service_data": "Service data",
+ "target": "Doelen",
+ "target_description": "Wat moet deze dienst gebruiken als doelgebieden, apparaten of entiteiten."
+ },
+ "service-picker": {
+ "service": "Service"
+ },
+ "statistic-picker": {
+ "learn_more": "Meer informatie over statistieken",
+ "missing_entity": "Waarom staat mijn entiteit niet in de lijst?",
+ "no_match": "Geen overeenkomende statistieken gevonden",
+ "no_statistics": "U heeft geen statistieken",
+ "statistic": "Statistiek"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Statistieken laden…",
+ "no_statistics_found": "Geen statistieken gevonden.",
+ "statistic_types": {
+ "max": "max",
+ "mean": "gemiddeld",
+ "min": "min",
+ "sum": "som"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Kies gebied",
+ "add_device_id": "Kies apparaat",
+ "add_entity_id": "Kies entiteit",
+ "expand": "Uitbreiden",
+ "expand_area_id": "Breid dit gebied uit in de afzonderlijke apparaten en entiteiten.",
+ "expand_device_id": "Breid dit apparaat uit in afzonderlijke entiteiten.",
+ "remove": "Verwijderen",
+ "remove_area_id": "Verwijder gebied",
+ "remove_device_id": "Verwijder apparaat",
+ "remove_entity_id": "Verwijder entiteit"
+ },
+ "user-picker": {
+ "add_user": "Gebruiker toevoegen",
+ "no_user": "Geen gebruiker",
+ "remove_user": "Gebruiker verwijderen"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Of nieuw ontdekte apparaten voor {integration} automatisch moeten worden toegevoegd.",
+ "enable_new_entities_label": "Voeg nieuwe entiteiten automatisch toe",
+ "enable_polling_description": "Of Home Assistant automatisch moet pollen voor {integration} entiteiten updates.",
+ "enable_polling_label": "Schakel polling voor updates in.",
+ "restart_home_assistant": "U moet Home Assistant opnieuw starten om uw wijzigingen door te voeren.",
+ "title": "Systeeminstellingen voor {integration}",
+ "update": "Bijwerken"
+ },
+ "domain_toggler": {
+ "reset_entities": "Entiteiten opnieuw instellen",
+ "title": "Domeinen in- en uitschakelen"
+ },
+ "entity_registry": {
+ "control": "Bediening",
+ "customize_link": "entiteitsaanpassingen",
+ "dismiss": "Sluiten",
+ "editor": {
+ "advanced": "Geavanceerde instellingen",
+ "area": "Alleen entiteitsgebied instellen",
+ "area_note": "Standaard liggen de entiteiten van een apparaat in hetzelfde gebied als het apparaat. Als u het gebied van deze entiteit wijzigt, zal het niet langer het gebied van het apparaat volgen.",
+ "change_device_area": "Verander het apparaatgebied",
+ "confirm_delete": "Weet u zeker dat u dit item wilt verwijderen?",
+ "delete": "Verwijderen",
+ "device_class": "Toon als",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Deur",
+ "garage_door": "Garagedeur",
+ "opening": "Ander",
+ "window": "Raam"
+ },
+ "cover": {
+ "door": "Deur",
+ "garage": "Garagedeur",
+ "window": "Raam"
+ }
+ },
+ "device_disabled": "Het apparaat van deze entiteit is uitgeschakeld.",
+ "enabled_cause": "Uitgeschakeld vanwege {cause}",
+ "enabled_delay_confirm": "De ingeschakelde entiteiten worden over {delay} seconden aan Home Assistant toegevoegd",
+ "enabled_description": "Uitgeschakelde entiteiten zullen niet aan Home Assistant worden toegevoegd",
+ "enabled_label": "Schakel entiteit in",
+ "enabled_restart_confirm": "Start Home Assistant opnieuw om het inschakelen van de entiteiten te voltooien",
+ "entity_id": "Entiteits-ID",
+ "follow_device_area": "Volg het apparaatgebied",
+ "icon": "Pictogram",
+ "icon_error": "Pictogrammen moeten de notatie 'prefix:pictogramnaam' hebben, bijvoorbeeld 'mdi:home'",
+ "name": "Naam",
+ "note": "Opmerking: dit werkt mogelijk nog niet met alle integraties.",
+ "open_device_settings": "Open de apparaatinstellingen",
+ "unavailable": "Deze entiteit is niet beschikbaar.",
+ "update": "Bijwerken"
+ },
+ "faq": "documentatie",
+ "info_customize": "U kunt sommige attributen overschrijven in de {customize_link} sectie.",
+ "no_unique_id": "Deze entiteit (\"{entity_id}\") heeft geen unieke ID, daarom kunnen de instellingen ervan niet worden beheerd vanuit de gebruikersinterface. Zie de {faq_link} voor meer details.",
+ "related": "Gerelateerd",
+ "settings": "instellingen"
+ },
+ "generic": {
+ "cancel": "Annuleren",
+ "close": "Sluiten",
+ "default_confirmation_title": "Weet je het zeker?",
+ "ok": "OK"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Beginwaarde",
+ "maximum": "Maximale waarde",
+ "minimum": "Minimale waarde",
+ "restore": "Herstel de laatst bekende waarde wanneer Home Assistant start",
+ "step": "Stapgrootte"
+ },
+ "generic": {
+ "icon": "Pictogram",
+ "name": "Naam"
+ },
+ "input_datetime": {
+ "date": "Datum",
+ "datetime": "Datum en tijd",
+ "mode": "Wat wil je invoeren",
+ "time": "Tijd"
+ },
+ "input_number": {
+ "box": "Invoerveld",
+ "max": "Maximale waarde",
+ "min": "Minimale waarde",
+ "mode": "Weergavemodus",
+ "slider": "Schuifregelaar",
+ "step": "Stapgrootte",
+ "unit_of_measurement": "Meeteenheid"
+ },
+ "input_select": {
+ "add": "Toevoegen",
+ "add_option": "Optie toevoegen",
+ "no_options": "Er zijn nog geen opties.",
+ "options": "Opties"
+ },
+ "input_text": {
+ "max": "Maximale lengte",
+ "min": "Minimale lengte",
+ "mode": "Weergavemodus",
+ "password": "Wachtwoord",
+ "pattern": "Regex-patroon voor clientvalidatie",
+ "text": "Tekst"
+ },
+ "platform_not_loaded": "De {platform} integratie is niet geladen. Voeg het aan je configuratie toe door 'default_config:' of ''{platform}:'' toe te voegen.",
+ "required_error_msg": "Dit veld is verplicht",
+ "timer": {
+ "duration": "Duur"
+ },
+ "yaml_not_editable": "De instellingen van deze entiteit kunnen niet worden bewerkt vanuit de gebruikersinterface. Alleen entiteiten die zijn ingesteld vanuit de gebruikersinterface, kunnen worden geconfigureerd vanuit de gebruikersinterface."
+ },
+ "image_cropper": {
+ "crop": "Snijd bij"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Sluit zonnewering",
+ "close_tile_cover": "Sluit klep",
+ "close_tilt_cover": "Sluit klep kanteling",
+ "open_cover": "Open zonnewering",
+ "open_tilt_cover": "Open klep",
+ "stop_cover": "Stop beweging van zonnewering"
+ },
+ "details": "Details",
+ "dismiss": "Dialoogvenster sluiten",
+ "edit": "Entiteit bewerken",
+ "history": "Geschiedenis",
+ "last_changed": "Laatst gewijzigd",
+ "last_updated": "Laatst bijgewerkt",
+ "logbook": "Logboek",
+ "person": {
+ "create_zone": "Creëer zone van huidige locatie"
+ },
+ "remote": {
+ "activity": "Huidige activiteit"
+ },
+ "restored": {
+ "confirm_remove_text": "Weet je zeker dat je dit item wilt verwijderen?",
+ "confirm_remove_title": "Entiteit verwijderen?",
+ "not_provided": "Deze entiteit is momenteel niet beschikbaar en is een wees voor een verwijderde, gewijzigde of disfunctionele integratie of apparaat.",
+ "remove_action": "Entiteit verwijderen",
+ "remove_intro": "Als de entiteit niet meer in gebruik is, kan je deze opruimen door het te verwijderen."
+ },
+ "script": {
+ "last_action": "Laatste actie",
+ "last_triggered": "Laatst geactiveerd"
+ },
+ "settings": "Entiteit instellingen",
+ "show_more": "Toon meer",
+ "sun": {
+ "elevation": "Hoogtehoek",
+ "rising": "Opkomst",
+ "setting": "Ondergang"
+ },
+ "updater": {
+ "title": "Update-instructies"
+ },
+ "vacuum": {
+ "clean_spot": "Plek schoonmaken",
+ "commands": "Stofzuigeropdrachten:",
+ "fan_speed": "Ventilatiesnelheid",
+ "locate": "Zoek",
+ "pause": "Pauze",
+ "return_home": "Terugkeren",
+ "start": "Start",
+ "start_pause": "Start/Pauze",
+ "status": "Status",
+ "stop": "Stop"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Probeer MQTT-berichten als JSON te ontleden",
+ "entities": "Entiteiten",
+ "no_entities": "Geen entiteiten",
+ "no_triggers": "Geen triggers",
+ "payload_display": "Payload-display",
+ "recent_messages": "{n} meest recent ontvangen bericht(en)",
+ "show_as_yaml": "Toon als YAML",
+ "title": "{device} foutopsporingsgegevens",
+ "triggers": "Triggers"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Instellingen"
+ },
+ "loading": {
+ "loading_flow": "Even geduld a.u.b. terwijl de opties voor {integration} worden geïnitialiseerd",
+ "loading_step": "Volgende stap laden voor {integration}"
+ },
+ "success": {
+ "description": "Instellingen succesvol opgeslagen."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Gebieden",
+ "automation": "Automatiseringen",
+ "blueprint": "Blueprints",
+ "core": "Algemeen",
+ "customize": "Aanpassingen",
+ "devices": "Apparaten",
+ "energy": "Energie configuratie",
+ "entities": "Entiteiten",
+ "helpers": "Helpers",
+ "info": "Info",
+ "integrations": "Integraties",
+ "logs": "Logs",
+ "lovelace": "Lovelace Dashboards",
+ "person": "Personen",
+ "scene": "Scènes",
+ "script": "Scripts",
+ "server_control": "Server Controls",
+ "tag": "Tags",
+ "users": "Gebruikers",
+ "zone": "Zones"
+ },
+ "reload": {
+ "automation": "Automatiseringen",
+ "command_line": "Opdrachtregel-entiteiten",
+ "core": "Locatie en aanpassingen",
+ "filesize": "Bestandsgrootte entiteiten",
+ "filter": "Filter-entiteiten",
+ "generic": "Generieke IP camera entiteiten",
+ "generic_thermostat": "Generieke thermostaat entiteiten",
+ "group": "Groepen, groepsentiteiten en notify services",
+ "history_stats": "Historische statistieken entiteiten",
+ "homekit": "HomeKit",
+ "input_boolean": "Input booleans",
+ "input_datetime": "Input date times",
+ "input_number": "Input numbers",
+ "input_select": "Input selects",
+ "input_text": "Input texts",
+ "min_max": "Min/max entiteiten",
+ "mqtt": "Handmatig geconfigureerde MQTT-entiteiten",
+ "person": "Personen",
+ "ping": "Ping binaire sensor entiteiten",
+ "reload": "{domain}",
+ "rest": "Rest-entiteiten en notify-services",
+ "rpi_gpio": "Raspberry Pi GPIO-entiteiten",
+ "scene": "Scenes",
+ "script": "Scripts",
+ "smtp": "SMTP notify services",
+ "statistics": "Statistische entiteiten",
+ "telegram": "Telegram notify services",
+ "template": "Template entiteiten",
+ "themes": "Thema's",
+ "trend": "Trend-entiteiten",
+ "universal": "Universele mediaspeler entiteiten",
+ "zone": "Zones"
+ },
+ "server_control": {
+ "perform_action": "{action} Server",
+ "restart": "Herstarten",
+ "stop": "Stop"
+ },
+ "types": {
+ "navigation": "Navigeer",
+ "reload": "Herlaad",
+ "server_control": "Server"
+ }
+ },
+ "filter_placeholder": "Entiteitsfilter",
+ "key_c_hint": "Druk op 'c' op een willekeurige pagina om deze zoekbalk te openen",
+ "title": "Snel zoeken"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant heeft niets gehoord",
+ "error": "Oeps, er is een fout opgetreden",
+ "found": "Ik heb het volgende voor je gevonden:",
+ "how_can_i_help": "Hoe kan ik helpen?",
+ "label": "Typ een vraag en druk op 'Enter'",
+ "label_voice": "Typ en druk op 'Enter' of tik op de microfoon om te spreken"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Apparaten toevoegen via dit apparaat",
+ "clusters": "Clusters beheren",
+ "device_children": "Bekijk onderliggende apparaten",
+ "reconfigure": "Apparaat opnieuw configureren",
+ "remove": "Verwijder apparaat",
+ "view_in_visualization": "Bekijk in Visualisatie",
+ "zigbee_information": "Zigbee-apparaathandtekening"
+ },
+ "confirmations": {
+ "remove": "Weet je zeker dat je het apparaat wilt verwijderen?"
+ },
+ "device_children": "Kinderen van Zigbee-apparaat",
+ "device_signature": "Handtekening van het Zigbee-apparaat",
+ "last_seen": "Laatst gezien",
+ "manuf": "door {manufacturer}",
+ "no_area": "Geen Gebied",
+ "power_source": "Stroombron",
+ "quirk": "Quirk",
+ "services": {
+ "reconfigure": "Herconfigureer het ZHA-apparaat (heal device). Gebruik dit als je problemen hebt met het apparaat. Als het een apparaat met batterij is, zorg dan dat het wakker is en commando's accepteert wanneer je deze service gebruikt.",
+ "remove": "Verwijder een apparaat uit het Zigbee-netwerk.",
+ "updateDeviceName": "Stel een aangepaste naam in voor dit apparaat in het apparaatregister.",
+ "zigbee_information": "Bekijk de Zigbee-informatie voor het apparaat."
+ },
+ "unknown": "Onbekend",
+ "zha_device_card": {
+ "device_name_placeholder": "Wijzig apparaatnaam"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Attribuut",
+ "battery_device_warning": "U moet apparaten met een batterij wekken voordat u het herconfiguratieproces start. Raadpleeg de handleiding van uw toestel voor instructies over hoe u het toestel kunt wekken.",
+ "bind_header": "Binding",
+ "button_hide": "Details verbergen",
+ "button_show": "Details weergeven",
+ "cluster_header": "Cluster",
+ "configuration_complete": "Herconfiguratie van apparaat voltooid.",
+ "configuration_failed": "De herconfiguratie van het apparaat is mislukt. Mogelijk is er aanvullende informatie beschikbaar in de logboeken.",
+ "configuring_alt": "Configureren",
+ "heading": "Apparaat opnieuw configureren",
+ "in_progress": "Het apparaat wordt opnieuw geconfigureerd. Dit kan wat tijd kosten.",
+ "introduction": "Herconfigureer een apparaat op uw Zigbee netwerk. Gebruik deze functie als uw apparaat niet correct functioneert.",
+ "min_max_change": "min/max/verandering",
+ "reporting_header": "Rapporteren",
+ "run_in_background": "U kunt dit dialoogvenster sluiten en de herconfiguratie wordt op de achtergrond voortgezet.",
+ "start_reconfiguration": "Start herconfiguratie"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\none {dag}\nother {dagen}\n}",
+ "hour": "{count} {count, plural,\none {uur}\nother {uur}\n}",
+ "minute": "{count} {count, plural,\none {minuut}\nother {minuten}\n}",
+ "second": "{count} {count, plural,\none {seconde}\nother {seconden}\n}",
+ "week": "{count} {count, plural,\none {week}\nother {weken}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Je kan nog steeds de configuratie in YAML bewerken.",
+ "editor_not_available": "Geen visuele editor beschikbaar voor type \"{type}\".",
+ "editor_not_supported": "Visuele editor wordt niet ondersteund voor deze configuratie",
+ "error_detected": "Configuratiefouten ontdekt",
+ "key_missing": "Verplichte sleutel \"{key}\" ontbreekt.",
+ "key_not_expected": "Sleutel \"{key}\" wordt niet verwacht of ondersteund door de visuele editor.",
+ "key_wrong_type": "De opgegeven waarde voor \" {key} \" wordt niet ondersteund door de visuele editor. We ondersteunen ( {type_correct} ) maar hebben ( {type_wrong} ) ontvangen.",
+ "no_state_array_support": "Meerdere statuswaarden worden niet ondersteund in de visuele editor",
+ "no_template_editor_support": "Sjablonen worden niet ondersteund in de visuele editor",
+ "no_type_provided": "Geen type opgegeven."
+ },
+ "supervisor": {
+ "ask": "Vraag om hulp",
+ "observer": "Controleer de Observer",
+ "reboot": "Probeer een herstart van de host",
+ "system_health": "Controleer de systeemstatus",
+ "title": "Kan het supervisorpaneel niet laden!",
+ "wait": "Als Home Assistant net is gestart, zorg ervoor dat de supervisor genoeg tijd heeft gehad om op te starten."
+ }
+ },
+ "login-form": {
+ "log_in": "Aanmelden",
+ "password": "Wachtwoord",
+ "remember": "Onthouden"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Klik op de knop om {entity} te configureren",
+ "close": "Sluiten",
+ "dismiss_all": "Alles verbergen",
+ "empty": "Geen notificaties",
+ "title": "Notificaties"
+ },
+ "notification_toast": {
+ "connection_lost": "Verbinding verbroken. Opnieuw verbinden…",
+ "dismiss": "Negeren",
+ "integration_starting": "{integration} starten, niet alles is beschikbaar totdat het voltooid is.",
+ "service_call_failed": "Kan service {service} niet aanroepen",
+ "started": "Home Assistant is gestart!",
+ "starting": "Home Assistant is aan het opstarten. Tijdens het opstarten is niet alles beschikbaar.",
+ "triggered": "Geactiveerd {name}",
+ "wrapping_up_startup": "Opstarten aan het afronden, niet alles is beschikbaar totdat het voltooid is."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Ontbrekende configuratie-opties? Schakel geavanceerde modus in",
+ "link_profile_page": "je profielpagina"
+ },
+ "areas": {
+ "add_picture": "Voeg een afbeelding toe",
+ "assigned_to_area": "Toegewezen aan dit gebied",
+ "caption": "Gebieden",
+ "data_table": {
+ "area": "Gebied",
+ "devices": "Apparaten",
+ "entities": "Entiteiten"
+ },
+ "delete": {
+ "confirmation_text": "Alle apparaten in dit gebied zullen niet meer toegewezen zijn.",
+ "confirmation_title": "Weet je zeker dat je dit gebied wilt verwijderen?"
+ },
+ "description": "Groepeer apparaten en entiteiten in gebieden",
+ "edit_settings": "Gebied instellingen",
+ "editor": {
+ "area_id": "Gebieds-ID",
+ "create": "Aanmaken",
+ "default_name": "Nieuw Gebied",
+ "delete": "Verwijderen",
+ "linked_entities_caption": "Entiteiten",
+ "name": "Naam",
+ "name_required": "Naam is vereist",
+ "no_linked_entities": "Er zijn geen entiteiten gekoppeld aan dit gebied.",
+ "unknown_error": "Onbekende fout",
+ "update": "Bijwerken"
+ },
+ "picker": {
+ "create_area": "Gebied maken",
+ "header": "Gebieden",
+ "integrations_page": "Integratiespagina",
+ "introduction": "Gebieden worden gebruikt om te bepalen waar apparaten zijn. Deze informatie wordt overal in de Home Assistant gebruikt om je te helpen bij het organiseren van je interface, machtigingen en integraties met andere systemen.",
+ "introduction2": "Als u apparaten in een gebied wilt plaatsen, gebruikt u de onderstaande koppeling om naar de integratiespagina te gaan en vervolgens op een geconfigureerde integratie te klikken om naar de apparaatkaarten te gaan.",
+ "no_areas": "Het lijkt erop dat je nog geen gebieden hebt!"
+ }
+ },
+ "automation": {
+ "caption": "Automatiseringen",
+ "description": "Maak aangepaste gedragsregels voor uw huis",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Gebruik een Blueprint"
+ },
+ "header": "Een nieuwe automatisering maken",
+ "how": "Hoe wil je je nieuwe automatisering maken?",
+ "start_empty": "Begin met een lege automatisering",
+ "start_empty_description": "Maak een nieuwe automatisering vanaf het begin",
+ "thingtalk": {
+ "create": "Creëer",
+ "header": "Beschrijf de automatisering die je wilt maken",
+ "input_label": "Wat moet deze automatisering doen?",
+ "intro": "En we zullen proberen het voor je te maken. Bijvoorbeeld: doe de lichten uit als ik wegga."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Actie toevoegen",
+ "delete": "Verwijderen",
+ "delete_confirm": "Wil je dit echt verwijderen?",
+ "duplicate": "Dupliceer",
+ "header": "Acties",
+ "introduction": "De acties zijn wat Home Assistant zal doen wanneer de automatisering wordt geactiveerd.",
+ "learn_more": "Meer informatie over acties",
+ "name": "Actie",
+ "type": {
+ "choose": {
+ "add_option": "Optie toevoegen",
+ "conditions": "Voorwaarden",
+ "default": "Standaardacties",
+ "label": "Kies",
+ "option": "Optie {number}",
+ "remove_option": "Verwijder optie",
+ "sequence": "Acties"
+ },
+ "condition": {
+ "label": "Voorwaarde"
+ },
+ "delay": {
+ "delay": "Vertraging",
+ "label": "Wacht tot de tijd voorbij is (vertraging)"
+ },
+ "device_id": {
+ "action": "Actie",
+ "extra_fields": {
+ "brightness_pct": "Helderheid",
+ "code": "Code",
+ "flash": "Flash",
+ "humidity": "Vochtigheid",
+ "message": "Bericht",
+ "mode": "Modus",
+ "position": "Positie",
+ "title": "Titel",
+ "value": "Waarde"
+ },
+ "label": "Apparaat"
+ },
+ "event": {
+ "event": "Gebeurtenis",
+ "label": "Gebeurtenis uitvoeren",
+ "service_data": "Service data"
+ },
+ "repeat": {
+ "label": "Herhaling",
+ "sequence": "Acties",
+ "type": {
+ "count": {
+ "label": "Telling"
+ },
+ "until": {
+ "conditions": "Totdat voldaan is aan",
+ "label": "Totdat"
+ },
+ "while": {
+ "conditions": "Zolang voldaan is aan voorwaarden",
+ "label": "Zolang"
+ }
+ },
+ "type_select": "Herhaal-type"
+ },
+ "scene": {
+ "label": "Activeer scène"
+ },
+ "service": {
+ "label": "Service aanroepen"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Ga verder op time-out",
+ "label": "Wacht op een trigger",
+ "timeout": "Time-out (optioneel)"
+ },
+ "wait_template": {
+ "continue_timeout": "Ga verder op time-out",
+ "label": "Wacht op een template",
+ "timeout": "Timeout (optioneel)",
+ "wait_template": "Wachtsjabloon"
+ }
+ },
+ "type_select": "Type actie",
+ "unsupported_action": "Geen UI-ondersteuning voor actie: {action}"
+ },
+ "alias": "Naam",
+ "blueprint": {
+ "blueprint_to_use": "Blueprint om te gebruiken",
+ "header": "Blueprint",
+ "no_blueprints": "Je hebt geen Blueprints",
+ "no_inputs": "Deze Blueprint heeft geen inputs."
+ },
+ "conditions": {
+ "add": "Voorwaarde toevoegen",
+ "delete": "Verwijderen",
+ "delete_confirm": "Zeker weten dat je wilt verwijderen?",
+ "duplicate": "Dupliceren",
+ "header": "Voorwaarden",
+ "introduction": "Voorwaarden zijn optioneel en verhinderen verdere uitvoering tenzij aan alle voorwaarden is voldaan.",
+ "learn_more": "Meer informatie over condities",
+ "name": "Voorwaarde",
+ "type": {
+ "and": {
+ "label": "En"
+ },
+ "device": {
+ "condition": "Voorwaarde",
+ "extra_fields": {
+ "above": "Boven",
+ "below": "Onder",
+ "for": "Duur",
+ "hvac_mode": "HVAC-modus",
+ "preset_mode": "Vooraf ingestelde modus"
+ },
+ "label": "Apparaat"
+ },
+ "not": {
+ "label": "Niet"
+ },
+ "numeric_state": {
+ "above": "Boven",
+ "below": "Onder",
+ "label": "Numerieke staat",
+ "value_template": "Waardetemplate (optioneel)"
+ },
+ "or": {
+ "label": "Of"
+ },
+ "state": {
+ "label": "Staat",
+ "state": "Staat"
+ },
+ "sun": {
+ "after": "Na:",
+ "after_offset": "Afwijking na (optioneel)",
+ "before": "Voor:",
+ "before_offset": "Afwijking voor (optioneel)",
+ "label": "Zon",
+ "sunrise": "Zonsopkomst",
+ "sunset": "Zonsondergang"
+ },
+ "template": {
+ "label": "Sjabloon",
+ "value_template": "Waardesjabloon"
+ },
+ "time": {
+ "after": "Nadat",
+ "before": "Voordat",
+ "label": "Tijd",
+ "type_input": "Waarde van een datum/tijdhelper",
+ "type_value": "Vaste tijd",
+ "weekdays": {
+ "fri": "vrijdag",
+ "mon": "maandag",
+ "sat": "zaterdag",
+ "sun": "zondag",
+ "thu": "donderdag",
+ "tue": "dinsdag",
+ "wed": "woensdag"
+ }
+ },
+ "trigger": {
+ "id": "Trigger ID",
+ "label": "Trigger",
+ "no_triggers": "Geen triggers beschikbaar"
+ },
+ "zone": {
+ "entity": "Entiteit met locatie",
+ "label": "Zone",
+ "zone": "Zone"
+ }
+ },
+ "type_select": "Type voorwaarde",
+ "unsupported_condition": "Geen UI-ondersteuning voor voorwaarde: {condition}"
+ },
+ "copy_to_clipboard": "Kopieer naar klembord",
+ "default_name": "Nieuwe automatisering",
+ "description": {
+ "label": "Beschrijving",
+ "placeholder": "Optionele beschrijving"
+ },
+ "edit_ui": "Bewerken met UI",
+ "edit_yaml": "Bewerken als YAML",
+ "enable_disable": "Schakel automatisering in/uit",
+ "introduction": "Gebruik automatiseringen om uw huis tot leven te brengen.",
+ "load_error_not_editable": "Alleen automatiseringen in automations.yaml kunnen worden bewerkt.",
+ "load_error_unknown": "Fout bij laden van automatisering ({err_no}).",
+ "max": {
+ "parallel": "Maximale aantal parallelle runs",
+ "queued": "Lengte van de wachtrij"
+ },
+ "modes": {
+ "description": "De modus bepaalt wat er gebeurt wanneer de automatisering wordt geactiveerd terwijl de acties nog steeds worden uitgevoerd door een vorige trigger. Controleer de {documentation_link} voor meer informatie.",
+ "documentation": "Automatisering documentatie",
+ "label": "Modus",
+ "parallel": "Parallel",
+ "queued": "In de wachtrij geplaatst",
+ "restart": "Herstarten",
+ "single": "Enkelvoudig (standaard)"
+ },
+ "move_down": "Verplaats omlaag",
+ "move_up": "Verplaats omhoog",
+ "save": "Opslaan",
+ "show_trace": "Tracering weergeven",
+ "triggers": {
+ "add": "Trigger toevoegen",
+ "delete": "Verwijderen",
+ "delete_confirm": "Weet je zeker dat je dit item wilt verwijderen?",
+ "duplicate": "Dupliceren",
+ "edit_id": "Bewerk trigger ID",
+ "header": "",
+ "id": "Trigger-ID (gebruikt door de triggervoorwaarde)",
+ "introduction": "Triggers starten de verwerking van een automatiseringsregel. Het is mogelijk om meerdere triggers voor dezelfde regel op te geven. Zodra een trigger start, valideert Home Assistant de eventuele voorwaarden en roept hij de actie aan.",
+ "learn_more": "Meer informatie over triggers",
+ "name": "Trigger",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Boven",
+ "below": "Onder",
+ "for": "Duur (optioneel)",
+ "zone": "Zone"
+ },
+ "label": "Apparaat",
+ "trigger": "Trigger"
+ },
+ "event": {
+ "context_user_pick": "Selecteer gebruiker",
+ "context_user_picked": "Gebeurtenis door gebruiker",
+ "context_users": "Limiet voor gebeurtenissen die zijn geactiveerd door",
+ "event_data": "Gebeurtenisdata",
+ "event_type": "Gebeurtenistype",
+ "label": "Gebeurtenis"
+ },
+ "geo_location": {
+ "enter": "Invoeren",
+ "event": "Gebeurtenis:",
+ "label": "Geolocatie",
+ "leave": "Verlaten",
+ "source": "Bron",
+ "zone": "Zone"
+ },
+ "homeassistant": {
+ "event": "Gebeurtenis:",
+ "label": "",
+ "shutdown": "Afsluiten",
+ "start": "Opstarten"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Payload (optioneel)",
+ "topic": "Onderwerp"
+ },
+ "numeric_state": {
+ "above": "Boven",
+ "below": "Onder",
+ "label": "Numerieke staat",
+ "value_template": "Waardesjabloon (optioneel)"
+ },
+ "state": {
+ "attribute": "Attribuut (Optioneel)",
+ "for": "Voor",
+ "from": "Van (optioneel)",
+ "label": "Staat",
+ "to": "Naar (optioneel)"
+ },
+ "sun": {
+ "event": "Gebeurtenis:",
+ "label": "Zon",
+ "offset": "Offset (optioneel)",
+ "sunrise": "Zonsopkomst",
+ "sunset": "Zonsondergang"
+ },
+ "tag": {
+ "label": "Tag"
+ },
+ "template": {
+ "label": "Sjabloon",
+ "value_template": "Waardesjabloon"
+ },
+ "time": {
+ "at": "Op tijd",
+ "label": "Tijd",
+ "type_input": "Waarde van een datum/tijdhelper",
+ "type_value": "Vaste tijd"
+ },
+ "time_pattern": {
+ "hours": "Uren",
+ "label": "Tijdspatroon",
+ "minutes": "Minuten",
+ "seconds": "Seconden"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook ID"
+ },
+ "zone": {
+ "enter": "Betreden",
+ "entity": "Entiteit met locatie",
+ "event": "Gebeurtenis:",
+ "label": "Zone",
+ "leave": "Verlaten",
+ "zone": "Zone"
+ }
+ },
+ "type_select": "Trigger-type",
+ "unsupported_platform": "Geen UI-ondersteuning voor platform: {platform}"
+ },
+ "unsaved_confirm": "Je hebt niet-opgeslagen wijzigingen. Weet je zeker dat je wilt afsluiten?"
+ },
+ "picker": {
+ "add_automation": "Automatisering toevoegen",
+ "delete_automation": "Verwijder automatisering",
+ "delete_confirm": "Weet je zeker dat je deze automatisering wilt verwijderen?",
+ "dev_automation": "Debug automatisering",
+ "dev_only_editable": "Alleen automatiseringen waaraan een uniek ID is toegewezen, kunnen worden gedebugd",
+ "duplicate": "Dupliceren",
+ "duplicate_automation": "Dupliceer automatisering",
+ "edit_automation": "Bewerk automatisering",
+ "header": "Automatiseringsbewerker",
+ "headers": {
+ "name": "Naam"
+ },
+ "introduction": "Met de automatiseringseditor editor kun je automatiseringen maken en bewerken. Volg de link hieronder om er zeker van te zijn dat je Home Assistant juist hebt geconfigureerd.",
+ "learn_more": "Meer informatie over automatiseringen",
+ "no_automations": "We konden geen automatiseringen vinden",
+ "only_editable": "Alleen automatiseringen in automations.yaml kunnen worden bewerkt.",
+ "pick_automation": "Kies te bewerken automatisering",
+ "show_info_automation": "Informatie weergeven over automatisering"
+ },
+ "thingtalk": {
+ "create": "Automatisering maken",
+ "link_devices": {
+ "ambiguous_entities": "Een of meer apparaten hebben meer dan één overeenkomende entiteit. Kies het apparaat dat u wilt gebruiken.",
+ "header": "Geweldig! Nu moeten we enkele apparaten koppelen",
+ "unknown_placeholder": "Onbekende tijdelijke aanduiding"
+ },
+ "task_selection": {
+ "error_empty": "Voer een commando in of druk op overslaan.",
+ "error_unsupported": "Daar konden we (nog) geen automatisering voor maken.",
+ "for_example": "Bijvoorbeeld:",
+ "header": "Een nieuwe automatisering maken",
+ "introduction": "Typ hieronder wat deze automatisering zou moeten doen, en we zullen proberen om het om te zetten in een Home Assistant automatisering.",
+ "language_note": "Opmerking: voorlopig wordt alleen Engels ondersteund."
+ }
+ },
+ "trace": {
+ "download_trace": "Download trace",
+ "edit_automation": "Automatisering wijzigen",
+ "newer_trace": "Nieuwere trace",
+ "older_trace": "Oudere trace",
+ "refresh": "Ververs"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "communityforums",
+ "error_no_url": "Voer de URL van de Blueprint in.",
+ "file_name": "Blueprint pad",
+ "header": "Voeg een nieuwe Blueprint toe",
+ "import_btn": "Bekijk deze Blueprint",
+ "import_header": "Blueprint \"{name}\"",
+ "import_introduction_link": "U kunt Blueprints van andere gebruikers importeren vanuit Github en de {community_link} . Voer de URL van de Blueprint hieronder in.",
+ "importing": "Blueprint importeren ...",
+ "raw_blueprint": "Blueprint inhoud",
+ "save_btn": "Blueprint importeren",
+ "saving": "Blueprint importeren …",
+ "unsupported_blueprint": "Deze Blueprint wordt niet ondersteund",
+ "url": "URL van de Blueprint"
+ },
+ "caption": "Blueprints",
+ "description": "Beheer Blueprints",
+ "overview": {
+ "add_blueprint": "Blueprint importeren",
+ "confirm_delete_header": "Deze Blueprint verwijderen?",
+ "confirm_delete_text": "Weet je zeker dat je deze Blueprint wilt verwijderen?",
+ "create_automation": "Automatisering maken",
+ "create_script": "Script maken",
+ "delete_blueprint": "Verwijder Blueprint",
+ "discover_more": "Ontdek meer Blueprints",
+ "header": "Blueprinteditor",
+ "headers": {
+ "domain": "Domein",
+ "file_name": "Bestandsnaam",
+ "name": "Naam",
+ "type": "Type"
+ },
+ "introduction": "Met de Blueprinteditor kunt je Blueprints maken en bewerken.",
+ "learn_more": "Meer informatie over Blueprints",
+ "share_blueprint": "Deel Blueprint",
+ "share_blueprint_no_url": "Kan Blueprint niet delen: geen bron-URL",
+ "types": {
+ "automation": "Automatisering",
+ "script": "Script"
+ },
+ "use_blueprint": "Automatisering maken"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Configuratie documentatie",
+ "disable": "uitschakelen",
+ "enable": "inschakelen",
+ "enable_ha_skill": "Schakel de Home Assistant skill voor Alexa",
+ "enable_state_reporting": "Statusrapportage inschakelen",
+ "info": "Met de Alexa integratie voor Home Assistant Cloud kun je al je Home Assistant apparaten bedienen via elk apparaat met Alexa-ondersteuning.",
+ "info_state_reporting": "Als u statusrapportage inschakelt, stuurt Home Assistant alle statuswijzigingen van opengestelde entiteiten naar Amazon. Hiermee kunt u altijd de laatste status zien in de Alexa app en kunt u de statuswijzigingen gebruiken om routines te maken.",
+ "manage_entities": "Entiteiten beheren",
+ "state_reporting_error": "Kan de rapportstatus niet {aanzetten_uitzetten}",
+ "sync_entities": "Entiteiten synchroniseren naar Amazon",
+ "sync_entities_error": "Kan entiteiten niet synchroniseren:",
+ "title": "Alexa"
+ },
+ "connected": "Verbonden",
+ "connecting": "Verbinden…",
+ "connection_status": "Cloud verbindingsstatus",
+ "fetching_subscription": "Abonnement ophalen…",
+ "google": {
+ "config_documentation": "Configuratie documentatie",
+ "devices_pin": "Pincode van beveiligingsapparaten",
+ "enable_ha_skill": "Activeer Home Assistant voor Google Assistant",
+ "enable_state_reporting": "Statusrapportage inschakelen",
+ "enter_pin_error": "Kan pincode niet opslaan:",
+ "enter_pin_hint": "Voer een pincode in om beveiligingsapparaten te gebruiken",
+ "enter_pin_info": "Voer een pincode in om te communiceren met beveiligingsapparaten. Beveiligingsapparaten zijn deuren, garagedeuren en sloten. U wordt gevraagd om deze pincode uit te spreken of in te voeren bij interactie met dergelijke apparaten via Google Assistant.",
+ "info": "Met de Google Assistant integratie voor Home Assistant Cloud kun je al je Home Assistant apparaten bedienen via elk apparaat waarop Google Assistant is ingeschakeld.",
+ "info_state_reporting": "Als u statusrapportage inschakelt, stuurt Home Assistant alle statuswijzigingen van blootgestelde entiteiten naar Google. Hierdoor kunt u altijd de meest actuele statussen in de Google-app zien.",
+ "manage_entities": "Entiteiten beheren",
+ "not_configured_text": "Voordat u Google Assistant kunt gebruiken, moet u de Home Assistant Cloud-skill voor Google Assistant activeren in de Google Home-app.",
+ "not_configured_title": "Google Assistant is niet geactiveerd",
+ "security_devices": "Beveiligingsapparaten",
+ "sync_entities": "Synchroniseer entiteiten met Google",
+ "sync_entities_404_message": "Kan uw entiteiten niet synchroniseren met Google, vraag Google 'Hey Google, synchroniseer mijn apparaten' om uw entiteiten te synchroniseren.",
+ "title": "Google Assistant"
+ },
+ "integrations": "Integraties",
+ "integrations_introduction": "Met integraties voor Home Assistant Cloud kunt u verbinding maken met services in de cloud zonder dat u uw Home Assistant-instantie openbaar hoeft te maken op internet.",
+ "integrations_introduction2": "Kijk op de website voor",
+ "integrations_link_all_features": "alle beschikbare functies",
+ "manage_account": "Beheer account",
+ "nabu_casa_account": "Nabu Casa-account",
+ "not_connected": "Niet verbonden",
+ "remote": {
+ "access_is_being_prepared": "Toegang op afstand wordt voorbereid. We zullen u op de hoogte brengen wanneer het klaar is.",
+ "certificate_info": "Certificaatinfo",
+ "connected": "Verbonden",
+ "info": "Home Assistant Cloud biedt een veilige externe verbinding met uw exemplaar terwijl u niet thuis bent.",
+ "instance_is_available": "Uw exemplaar is beschikbaar op",
+ "instance_will_be_available": "Uw exemplaar zal beschikbaar zijn op",
+ "link_learn_how_it_works": "Leer hoe het werkt",
+ "not_connected": "Niet verbonden",
+ "reconnecting": "Niet verbonden. Er wordt geprobeerd om opnieuw te verbinden.",
+ "remote_enabled": {
+ "caption": "Automatisch verbinden",
+ "description": "Schakel deze optie in om ervoor te zorgen dat uw Home Assistant instantie altijd op afstand toegankelijk is."
+ },
+ "title": "Afstand Bediening"
+ },
+ "sign_out": "Afmelden",
+ "thank_you_note": "Bedankt voor uw deelname aan Home Assistant Cloud. Het is vanwege mensen zoals u dat we een geweldige domotica-ervaring voor iedereen kunnen maken. Dank je!",
+ "tts": {
+ "default_language": "Standaardtaal om te gebruiken",
+ "dialog": {
+ "create_automation": "Creëer automatisering",
+ "example_message": "Hallo {name}, je kunt elke tekst afspelen op elke ondersteunde mediaspeler!",
+ "header": "Probeer Tekst naar Spraak",
+ "play": "Speel",
+ "target": "Doel",
+ "target_browser": "Browser"
+ },
+ "female": "Vrouw",
+ "info": "Breng persoonlijkheid in uw huis door het tegen u te laten spreken met behulp van onze Tekst-naar-Spraak diensten. U kunt dit gebruiken in automatiseringen en scripts door gebruik te maken van de {service} service.",
+ "male": "Man",
+ "title": "Tekst naar spraak",
+ "try": "Probeer"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Kan webhook niet uitschakelen:",
+ "info": "Alles wat is geconfigureerd om door een webhook te worden geactiveerd, kan een openbaar toegankelijke URL krijgen zodat u gegevens overal naar Home Assistant kunt terugsturen, zonder uw exemplaar aan internet bloot te stellen.",
+ "link_learn_more": "Meer informatie over het maken van door webhook aangedreven automatiseringen.",
+ "loading": "Laden…",
+ "manage": "Beheer",
+ "no_hooks_yet": "Het lijkt erop dat je nog geen webhooks hebt. Ga aan de slag door het configureren van een ",
+ "no_hooks_yet2": "of door het maken van een",
+ "no_hooks_yet_link_automation": "webhook automatisering",
+ "no_hooks_yet_link_integration": "webhook gebaseerde integratie",
+ "title": "Webhooks"
+ }
+ },
+ "alexa": {
+ "banner": "Het bewerken van de entiteiten die via deze gebruikersinterface worden weergegeven is uitgeschakeld, omdat je entiteitenfilters hebt geconfigureerd in configuration.yaml.",
+ "dont_expose_entity": "Entiteit niet beschikbaar maken",
+ "expose": "Blootstellen aan Alexa",
+ "expose_entity": "Enititeit beschikbaar maken",
+ "exposed": "{selected} blootgesteld",
+ "exposed_entities": "Blootgestelde entiteiten",
+ "follow_domain": "Domein volgen",
+ "manage_domains": "Beheer domeinen",
+ "not_exposed": "{selected} niet blootgesteld",
+ "not_exposed_entities": "Niet blootgestelde entiteiten",
+ "title": "Alexa"
+ },
+ "description_features": "Bedien uw huis wanneer u weg bent en integreer met Alexa en Google Assistant",
+ "description_login": "Ingelogd als {email}",
+ "description_not_login": "Niet ingelogd",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Vervaldatum certificaat:",
+ "certificate_information": "Certificaatinfo",
+ "close": "Sluiten",
+ "fingerprint": "Certificaat vingerafdruk:",
+ "will_be_auto_renewed": "wordt automatisch vernieuwd"
+ },
+ "dialog_cloudhook": {
+ "available_at": "De webhook is beschikbaar op de volgende URL:",
+ "close": "Sluiten",
+ "confirm_disable": "Weet je zeker dat je deze webhook wilt uitschakelen?",
+ "copied_to_clipboard": "Gekopieerd naar het klembord",
+ "info_disable_webhook": "Als je deze webhook niet langer wilt gebruiken, kun je het",
+ "link_disable_webhook": "uitschakelen",
+ "managed_by_integration": "Deze webhook wordt beheerd door een integratie en kan niet worden uitgeschakeld.",
+ "view_documentation": "Bekijk documentatie",
+ "webhook_for": "Webhook voor {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "Controleer uw e-mail voor instructies voor het resetten van uw wachtwoord.",
+ "email": "E-mail",
+ "email_error_msg": "Ongeldig e-mail",
+ "instructions": "Voer je e-mailadres in en wij sturen je een link om je wachtwoord opnieuw in te stellen.",
+ "send_reset_email": "Reset e-mail verzenden",
+ "subtitle": "Wachtwoord vergeten",
+ "title": "Wachtwoord vergeten"
+ },
+ "google": {
+ "banner": "Het bewerken van de entiteiten die via deze gebruikersinterface worden weergegeven is uitgeschakeld, omdat je entiteitenfilters hebt geconfigureerd in configuration.yaml.",
+ "disable_2FA": "Schakel tweestapsverificatie uit",
+ "dont_expose_entity": "Entiteit niet beschikbaar maken",
+ "expose": "Blootstellen aan Google Assistant",
+ "expose_entity": "Enititeit beschikbaar maken",
+ "exposed": "{selected} blootgesteld",
+ "exposed_entities": "Blootgestelde entiteiten",
+ "follow_domain": "Domein volgen",
+ "manage_domains": "Beheer domeinen",
+ "not_exposed": "{selected} niet blootgesteld",
+ "not_exposed_entities": "Niet blootgestelde entiteiten",
+ "sync_to_google": "Wijzigingen synchroniseren met Google.",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Je moet je e-mailadres bevestigen voordat je inlogt.",
+ "alert_password_change_required": "Je moet je wachtwoord wijzigen voordat je je aanmeldt.",
+ "dismiss": "Sluiten",
+ "email": "E-mail",
+ "email_error_msg": "Ongeldig e-mailadres",
+ "forgot_password": "Wachtwoord vergeten?",
+ "introduction": "Home Assistant Cloud biedt u een veilige externe verbinding met uw Home Assistant terwijl u niet thuis bent. Hiermee kunt u ook verbinding maken met cloudservices: Amazon, Alexa en Google Assistant.",
+ "introduction2": "Deze service wordt uitgevoerd door onze partner ",
+ "introduction2a": ", een bedrijf dat is opgericht door de oprichters van Home Assistent.",
+ "introduction3": "Home Assistant Cloud is een abonnementsdienst met een gratis proefperiode van een maand. Geen betalingsinformatie nodig.",
+ "learn_more_link": "Meer informatie over Home Assistant Cloud",
+ "password": "Wachtwoord",
+ "password_error_msg": "Wachtwoorden moeten uit ten minste 8 tekens bestaan",
+ "sign_in": "Aanmelden",
+ "start_trial": "Start uw gratis proefperiode van 1 maand",
+ "title": "Cloud aanmelding",
+ "trial_info": "Geen betalingsinformatie nodig"
+ },
+ "register": {
+ "account_created": "Account is aangemaakt! Controleer uw e-mailadres voor instructies over het activeren van uw account.",
+ "create_account": "Account aanmaken",
+ "email_address": "E-mailadres",
+ "email_error_msg": "Ongeldig e-mailadres",
+ "feature_amazon_alexa": "Integratie met Amazon Alexa",
+ "feature_google_home": "Integratie met Google Assistent",
+ "feature_remote_control": "Beheer van Home Assistant van buitenaf",
+ "feature_webhook_apps": "Eenvoudige integratie met webhook gebaseerde apps zoals OwnTracks",
+ "headline": "Start uw gratis proefperiode",
+ "information": "Maak een account om uw gratis proefperiode van een maand te starten met Home Assistant Cloud. Geen betalingsinformatie nodig.",
+ "information2": "De proefversie geeft u toegang tot alle voordelen van Home Assistant Cloud, waaronder:",
+ "information3": "Deze service wordt uitgevoerd door onze partner",
+ "information3a": ", een bedrijf dat is opgericht door de oprichters van Home Assistant.",
+ "information4": "Door het registreren van het account gaat u akkoord met de volgende voorwaarden.",
+ "link_privacy_policy": "Privacybeleid",
+ "link_terms_conditions": "Algemene voorwaarden",
+ "password": "Wachtwoord",
+ "password_error_msg": "Wachtwoorden moeten uit ten minste 8 tekens bestaan",
+ "resend_confirm_email": "Bevestigingsmail opnieuw verzenden",
+ "start_trial": "Start proefperiode",
+ "title": "Account aanmaken"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Je hebt niet-opgeslagen wijzigingen. Weet je zeker dat je wilt afsluiten?"
+ },
+ "learn_more": "Leer meer"
+ },
+ "core": {
+ "caption": "Algemeen",
+ "description": "Locatie, netwerk en analytics",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Munteenheid",
+ "edit_requires_storage": "Editor uitgeschakeld omdat de configuratie is opgeslagen in configuration.yaml",
+ "elevation": "Hoogte",
+ "elevation_meters": "meter",
+ "external_url": "Externe URL",
+ "find_currency_value": "Valutawaarde vinden",
+ "imperial_example": "Fahrenheit, ponden",
+ "internal_url": "Interne URL",
+ "latitude": "Breedtegraad",
+ "location_name": "Naam van Home Assistant installatie",
+ "longitude": "Lengtegraad",
+ "metric_example": "Celsius, kilogram",
+ "save_button": "Opslaan",
+ "time_zone": "Tijdzone",
+ "unit_system": "Maatsysteem",
+ "unit_system_imperial": "Imperiaal",
+ "unit_system_metric": "Metrisch"
+ },
+ "header": "Algemene Configuratie",
+ "introduction": "Beheer uw locatie, netwerk en analytics"
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "De volgende attributen zijn al ingesteld in adjust.yaml",
+ "attributes_not_set": "De volgende attributen zijn nog niet ingesteld. Je kunt ze instellen als je wilt.",
+ "attributes_outside": "De volgende kenmerken worden aangepast van buiten customize.yaml",
+ "attributes_override": "Je kunt ze overschrijven als je wilt.",
+ "attributes_set": "De volgende attributen van de entiteit zijn automatisch ingevuld.",
+ "caption": "Aanpassingen",
+ "description": "Pas uw entiteiten aan",
+ "different_include": "Mogelijk via een domein, een glob of een andere include.",
+ "pick_attribute": "Kies een attribuut om te overschrijven",
+ "picker": {
+ "documentation": "Documentatie van aanpassingen",
+ "header": "Aanpassingen",
+ "introduction": "Pas attributen per entiteit aan. Toegevoegde/gewijzigde aanpassingen worden onmiddellijk van kracht. Verwijderde aanpassingen worden van kracht wanneer de entiteit wordt bijgewerkt."
+ },
+ "warning": {
+ "include_link": "inclusief customize.yaml",
+ "include_sentence": "Het lijkt erop dat uw configuratie.yaml niet correct werkt",
+ "not_applied": "Wijzigingen die hier zijn aangebracht, worden erin geschreven, maar worden niet toegepast totdat de configuratie opnieuw is geladen, tenzij de include al is geïnstalleerd."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Beheer automatiseringen, scenes, scripts en helpers",
+ "title": "Automatiseringen & Scènes"
+ },
+ "blueprints": {
+ "description": "Automatiseringen en scripts gemaakt door de community",
+ "title": "Blueprints"
+ },
+ "companion": {
+ "description": "Locatie en notificaties",
+ "title": "Companion App"
+ },
+ "dashboards": {
+ "description": "Maak aangepaste om uw huis te bedienen",
+ "title": "Dashboards"
+ },
+ "devices": {
+ "description": "Integraties, apparaten, entiteiten en gebieden",
+ "title": "Apparaten & Diensten"
+ },
+ "energy": {
+ "description": "Monitor uw energieproductie en verbruik",
+ "title": "Energie"
+ },
+ "people": {
+ "description": "Beheer de personen en zones die Home Assistant volgt",
+ "title": "Personen & Zones"
+ },
+ "settings": {
+ "description": "Algemene instellingen, serverbeheer, logboek en informatie",
+ "title": "Instellingen"
+ },
+ "supervisor": {
+ "description": "Maak back-ups, controleer logboek of start uw systeem opnieuw op",
+ "title": "Add-ons, Back-ups en Supervisor"
+ },
+ "tags": {
+ "description": "Activeer automatiseringen wanneer een NFC-tag, QR-code, etc. wordt gescand",
+ "title": "Tags"
+ }
+ },
+ "devices": {
+ "add_prompt": "Er zijn nog geen {name} toegevoegd met dit apparaat. U kunt er één toevoegen door op de + knop hierboven te klikken.",
+ "automation": {
+ "actions": {
+ "caption": "Wanneer iets wordt getriggerd…",
+ "no_actions": "Geen acties",
+ "unknown_action": "Onbekende actie"
+ },
+ "automations": "Automatiseringen",
+ "conditions": {
+ "caption": "Doe alleen iets als…",
+ "no_conditions": "Geen toestanden",
+ "unknown_condition": "Onbekende toestand"
+ },
+ "create": "Maak een automatisering aan met het apparaat",
+ "create_disable": "Kan geen automatisering maken met een uitgeschakeld apparaat",
+ "no_automations": "Geen automatiseringen",
+ "no_device_automations": "Er zijn geen automatiseringen beschikbaar voor dit apparaat.",
+ "triggers": {
+ "caption": "Doe iets wanneer...",
+ "no_triggers": "Geen triggers",
+ "unknown_trigger": "Onbekende trigger"
+ },
+ "unknown_automation": "Onbekende automatisering"
+ },
+ "cant_edit": "Je kunt alleen items bewerken die in de gebruikersinterface zijn gemaakt.",
+ "caption": "Apparaten",
+ "confirm_delete": "Weet je zeker dat je dit apparaat wilt verwijderen?",
+ "confirm_disable_config_entry": "Er zijn geen apparaten meer voor deze configuratie {entry_name}, wil je in plaats daarvan deze configuratie uitschakelen?",
+ "confirm_rename_entity_ids": "Wil je ook de entiteits-ID's van je entiteiten hernoemen?",
+ "confirm_rename_entity_ids_warning": "Dit zal geen enkele configuratie wijzigen (zoals automatiseringen, scripts, scènes, dashboards) die momenteel deze entiteiten gebruikt! U moet ze zelf bijwerken om de nieuwe entiteits-ID's te gebruiken!",
+ "data_table": {
+ "area": "Gebied",
+ "battery": "Batterij",
+ "device": "Apparaat",
+ "integration": "Integratie",
+ "manufacturer": "Fabrikant",
+ "model": "Model",
+ "no_devices": "Geen apparaten",
+ "no_integration": "Geen integratie"
+ },
+ "delete": "Verwijderen",
+ "description": "Beheer geconfigureerde apparaten",
+ "device_info": "Apparaat info",
+ "device_not_found": "Apparaat niet gevonden.",
+ "disabled": "Uitgeschakeld",
+ "disabled_by": {
+ "config_entry": "Configuratie-item",
+ "integration": "Integratie",
+ "user": "Gebruiker"
+ },
+ "download_diagnostics": "Diagnostiek downloaden",
+ "edit_settings": "Wijzig instellingen",
+ "enabled_cause": "Het apparaat is uitgeschakeld door {cause}.",
+ "enabled_description": "Uitgeschakelde apparaten worden niet weergegeven en entiteiten die bij het apparaat horen, worden uitgeschakeld en niet toegevoegd aan Home Assistant.",
+ "enabled_label": "Schakel apparaat in",
+ "entities": {
+ "add_entities_lovelace": "Voeg toe aan de Lovelace gebruikersinterface",
+ "config": "Configuratie",
+ "control": "Bediening",
+ "diagnostic": "Diagnose",
+ "disabled_entities": "+{count} {count, plural,\n one {uitgeschakelde entiteit}\n other {uitgeschakelde entiteiten}\n}",
+ "entities": "Entiteiten",
+ "hide_disabled": "Verberg uitgeschakeld",
+ "none": "Dit apparaat heeft geen entiteiten",
+ "sensor": "Sensoren",
+ "state": "Toestand"
+ },
+ "name": "Naam",
+ "no_devices": "Geen apparaten",
+ "open_configuration_url_device": "Naar apparaat",
+ "open_configuration_url_service": "Naar service",
+ "picker": {
+ "filter": {
+ "filter": "Filter",
+ "hidden_devices": "{number} verborgen {number, plural,\n one {apparaat}\n other {apparaten}\n}",
+ "show_all": "Alles weergeven",
+ "show_disabled": "Toon uitgeschakelde apparaten"
+ },
+ "search": "Zoek apparaten"
+ },
+ "scene": {
+ "create": "Maak een scène aan met het apparaat",
+ "create_disable": "Kan geen scène maken met een uitgeschakeld apparaat",
+ "no_scenes": "Geen scènes",
+ "scenes": "Scènes"
+ },
+ "scenes": "Scènes",
+ "script": {
+ "create": "Maak een script aan met het apparaat",
+ "create_disable": "Kan geen script maken met een uitgeschakeld apparaat",
+ "no_scripts": "Geen scripts",
+ "scripts": "Scripts"
+ },
+ "scripts": "Scripts",
+ "unknown_error": "Onbekende fout",
+ "unnamed_device": "Naamloos apparaat",
+ "update": "Bijwerken",
+ "update_device_error": "Bijwerken van het apparaat mislukt"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Batterijsysteem toevoegen",
+ "battery_systems": "Batterijsystemen",
+ "dialog": {
+ "energy_into_battery": "Energie die naar de batterij gaat (kWh)",
+ "energy_out_of_battery": "Energie afkomstig van batterij (kWh)",
+ "header": "Batterijsysteem configureren"
+ },
+ "learn_more": "Meer informatie over hoe u aan de slag kunt gaan.",
+ "sub": "Als u een accusysteem hebt, kunt u het configureren om te controleren hoeveel energie uit uw accu is opgeslagen en verbruikt.",
+ "title": "Accu-opslag voor thuis"
+ },
+ "caption": "Energie",
+ "delete_integration": "Weet u zeker dat u deze integratie wilt verwijderen? Het zal de entiteiten die het biedt verwijderen",
+ "delete_source": "Weet je zeker dat je deze bron wilt verwijderen?",
+ "description": "Monitor uw energieproductie en verbruik",
+ "device_consumption": {
+ "add_device": "Apparaat toevoegen",
+ "add_stat": "Kies entiteit om verbruik van bij te houden",
+ "devices": "Apparaten",
+ "dialog": {
+ "device_consumption_energy": "Apparaatconsumptie-energie (kWh)",
+ "header": "Apparaat toevoegen",
+ "selected_stat_intro": "Selecteer de entiteit die het energieverbruik van het apparaat weergeeft."
+ },
+ "learn_more": "Meer informatie over hoe u aan de slag kunt gaan.",
+ "selected_stat": "Verbruik bijhouden voor",
+ "sub": "Door het energieverbruik van afzonderlijke apparaten bij te houden, kan Home Assistant uw energieverbruik per apparaat uitsplitsen.",
+ "title": "Individuele apparaten"
+ },
+ "gas": {
+ "add_gas_source": "Gasbron toevoegen",
+ "dialog": {
+ "cost_entity": "Gebruik een entiteit met de huidige prijs",
+ "cost_entity_input": "Entiteit met de huidige prijs per {unit}",
+ "cost_number": "Gebruik een vaste prijs",
+ "cost_number_input": "Prijs per {unit}",
+ "cost_number_suffix": "{currency}/m³",
+ "cost_para": "Selecteer hoe Home Assistant de kosten van de verbruikte energie moet bijhouden.",
+ "cost_stat": "Gebruik een entiteit die de totale kosten bijhoudt",
+ "cost_stat_input": "Totale kosten entiteit",
+ "energy_stat": "Verbruikte Energie (m³)",
+ "gas_usage": "Gasverbruik",
+ "header": "Gasverbruik configureren",
+ "m3_or_kWh": "ft³, m³, Wh, kWh of MWh",
+ "no_cost": "Kosten niet bijhouden",
+ "paragraph": "Gasverbruik is het gasvolume dat naar uw huis stroomt."
+ },
+ "gas_consumption": "Gasverbruik",
+ "learn_more": "Meer informatie over hoe u aan de slag kunt gaan.",
+ "sub": "Laat Home Assistant uw gasverbruik monitoren.",
+ "title": "Gasverbruik"
+ },
+ "grid": {
+ "add_co2_signal": "CO2-signaalintegratie toevoegen",
+ "add_consumption": "Verbruik toevoegen",
+ "add_return": "Teruggave toevoegen",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Een entiteit met de huidige prijs gebruiken",
+ "cost_entity_input": "Entiteit met de huidige prijs",
+ "cost_number": "Gebruik een vaste prijs",
+ "cost_number_input": "Prijs per kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Selecteer hoe Home Assistant de kosten van de verbruikte energie moet bijhouden.",
+ "cost_stat": "Een entiteit gebruiken die de totale kosten bijhoudt",
+ "cost_stat_input": "Totale kosten entiteit",
+ "energy_stat": "Verbruikte energie (kWh)",
+ "header": "Netverbruik configureren",
+ "no_cost": "Kosten niet bijhouden",
+ "paragraph": "Netverbruik is de energie die van het energienet naar uw woning stroomt."
+ },
+ "to": {
+ "cost_entity": "Een entiteit met het huidige tarief gebruiken",
+ "cost_entity_input": "Entiteit met het huidige tarief",
+ "cost_number": "Gebruik een vaste prijs",
+ "cost_number_input": "Prijs per kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Krijg je geld terug als je energie teruglevert aan het net?",
+ "cost_stat": "Een entiteit gebruiken die het totale ontvangen geld bijhoudt",
+ "cost_stat_input": "Totale-vergoeding entiteit",
+ "energy_stat": "Teruggeleverde energie (kWh)",
+ "header": "Netproductie configureren",
+ "no_cost": "Ik krijg geen geld terug",
+ "paragraph": "Netproductie is de energie die van uw zonnepanelen naar het net stroomt."
+ }
+ },
+ "grid_carbon_footprint": "CO2-voetafdruk van het net",
+ "grid_consumption": "Netverbruik",
+ "learn_more": "Meer informatie over hoe u aan de slag kunt gaan.",
+ "return_to_grid": "Geef terug aan het net",
+ "sub": "Configureer de verschillende tarieven voor de energie die u van het net verbruikt en als u energie teruglevert aan het net, de energie die u teruglevert aan het net. Hierdoor kan Home Assistant het energieverbruik van uw gehele huis bijhouden.",
+ "title": "Elektriciteitsnet"
+ },
+ "new_device_info": "Er zijn geen gegevens om weer te geven. Het kan tot 2 uur duren voordat nieuwe gegevens binnenkomen nadat u uw energiedashboard heeft geconfigureerd.",
+ "solar": {
+ "add_solar_production": "Zonneproductie toevoegen",
+ "dialog": {
+ "add_forecast": "Voorspelling toevoegen",
+ "dont_forecast_production": "Maak geen voorspelling van de productie",
+ "forecast_production": "Voorspelling productie",
+ "header": "Zonnepanelen configureren",
+ "solar_production_energy": "Zonneproductie energie (kWh)",
+ "solar_production_forecast": "Voorspelling zonne-energieproductie",
+ "solar_production_forecast_description": "Door informatie over de productie van zonne-energie toe te voegen, kunt u snel uw verwachte productie voor vandaag zien."
+ },
+ "learn_more": "Meer informatie over hoe u aan de slag kunt gaan.",
+ "solar_production": "Zonne-energieproductie",
+ "stat_predicted_production": "Voorspelling van uw zonne-energieproductie",
+ "stat_production": "Uw zonne-energieproductie",
+ "stat_return_to_grid": "Zonne-energie teruggeleverd aan het net",
+ "sub": "Laat Home Assistant uw zonnepanelen monitoren en u inzicht geven in hun prestaties.",
+ "title": "Zonnepanelen"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "De volgende entiteiten hebben een negatieve staat terwijl een positieve staat wordt verwacht:",
+ "title": "Entiteit heeft een negatieve staat"
+ },
+ "entity_not_defined": {
+ "description": "Controleer de integratie of uw configuratie die voorziet in:",
+ "title": "Entiteit niet gedefinieerd"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "De volgende entiteiten hebben de status klasse 'measurement' maar 'last_reset' ontbreekt:",
+ "title": "Last reset ontbreekt"
+ },
+ "entity_state_non_numeric": {
+ "description": "De volgende entiteiten hebben een staat die niet als getal kan worden weergegeven:",
+ "title": "Entiteit heeft een niet-numerieke staat"
+ },
+ "entity_unavailable": {
+ "description": "De status van deze geconfigureerde entiteiten is momenteel niet beschikbaar:",
+ "title": "Entiteit niet beschikbaar"
+ },
+ "entity_unexpected_device_class": {
+ "description": "De volgende entiteiten hebben niet de verwachte device class:",
+ "title": "Onverwachte device class"
+ },
+ "entity_unexpected_state_class": {
+ "description": "De volgende entiteiten hebben niet de verwachte status klasse",
+ "title": "Onverwachte status klasse"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "De volgende entiteiten hebben niet de verwachte state class \"total_increasing\"",
+ "title": "Onverwachte state class"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "De volgende entiteiten hebben niet de verwachte meeteenheden 'Wh', 'kWh' of 'MWh':",
+ "title": "Onverwachte meeteenheid"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "De volgende entiteiten hebben niet de verwachte meeteenheden \"{currency}/kWh\" of \"{currency}/Wh\" of \"{currency}/MWh\":",
+ "title": "Onverwachte meeteenheid"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "De volgende entiteiten hebben niet de verwachte meeteenheden 'Wh', 'kWh' of 'MWh' voor een energiesensor of 'm³' of 'ft³' voor een gassensor:",
+ "title": "Onverwachte meeteenheid"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "De volgende entiteiten hebben niet de verwachte meeteenheden ''{currency}/kWh'', ''{currency}/Wh'', \"{currency}/Wh\", ''{currency}/m³'' of ''{currency}/ft ³'':",
+ "title": "Onverwachte meeteenheid"
+ },
+ "recorder_untracked": {
+ "description": "De recorder is geconfigureerd om deze geconfigureerde entiteiten uit te sluiten:",
+ "title": "Entiteit niet bijgehouden"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Entiteiten",
+ "description": "Overzicht van alle geregistreerde entiteiten",
+ "picker": {
+ "disable_selected": {
+ "button": "Geselecteerde uitschakelen",
+ "confirm_text": "Uitgeschakelde entiteiten zullen niet aan Home Assistant worden toegevoegd",
+ "confirm_title": "Wilt u het volgende uitschakelen {number} {number, plural,\n one {entiteit}\n other {entiteiten}\n}?"
+ },
+ "enable_selected": {
+ "button": "Geselecteerde inschakelen",
+ "confirm_text": "Dit maakt ze weer beschikbaar in Home Assistant als ze nu zijn uitgeschakeld.",
+ "confirm_title": "Wilt je {number} {number, plural,\n one {entiteit}\n other {entiteiten}\n} inschakelen?"
+ },
+ "filter": {
+ "filter": "filter",
+ "hidden_entities": "{number} verborgen {number, plural,\n one {entiteit}\n other {entiteiten}\n}",
+ "show_all": "Alles weergeven",
+ "show_disabled": "Uitgeschakelde entiteiten weergeven",
+ "show_readonly": "Alleen-lezen entiteiten weergeven",
+ "show_unavailable": "Onbeschikbare entiteiten weergeven"
+ },
+ "header": "Entiteiten",
+ "headers": {
+ "area": "Gebied",
+ "disabled_by": "Uitgeschakeld door",
+ "entity_id": "Entiteits-ID",
+ "integration": "Integratie",
+ "name": "Naam",
+ "status": "Status"
+ },
+ "introduction": "Home Assistant houdt een register bij van elke entiteit die het ooit heeft gezien en die uniek kan worden geïdentificeerd. Elk van deze entiteiten krijgt een entiteit-ID toegewezen die alleen voor deze entiteit wordt gereserveerd.",
+ "introduction2": "Gebruik het entiteitenregister om de naam te overschrijven, de entiteits-ID te wijzigen of het item te verwijderen uit Home Assistant.",
+ "remove_selected": {
+ "button": "Verwijder geselecteerde",
+ "confirm_partly_text": "U kunt alleen {removable} van de geselecteerde {selected} entiteiten verwijderen. Entiteiten kunnen alleen worden verwijderd als de integratie de entiteiten niet meer levert. Soms moet u Home Assistant opnieuw opstarten voordat u de entiteiten van een verwijderde integratie kunt verwijderen. Weet u zeker dat u de verwijderbare entiteiten wilt verwijderen?",
+ "confirm_partly_title": "Alleen {number} {number, plural,\n one {geselecteerde entiteit}\n other {geselecteerde entiteiten}\n} kunnen worden verwijderd.",
+ "confirm_text": "Je moet ze zelf nog verwijderen uit je Lovelace-configuratie en automatiseringen als ze deze entiteiten bevatten.",
+ "confirm_title": "Wilt u het volgende verwijderen {number} {number, plural,\n one {entiteit}\n other {entiteiten}\n}?"
+ },
+ "search": "Zoek entiteiten",
+ "selected": "{number} geselecteerd",
+ "status": {
+ "disabled": "Uitgeschakeld",
+ "ok": "OK",
+ "readonly": "Alleen-lezen",
+ "restored": "Hersteld",
+ "unavailable": "Onbeschikbaar"
+ }
+ }
+ },
+ "header": "Configureer Home Assistant",
+ "helpers": {
+ "caption": "Helpers",
+ "description": "Elementen die kunnen helpen bij het maken van automatiseringen",
+ "dialog": {
+ "add_helper": "Helper toevoegen",
+ "add_platform": "{platform} toevoegen",
+ "create": "Aanmaken"
+ },
+ "picker": {
+ "add_helper": "Helper toevoegen",
+ "headers": {
+ "editable": "Bewerkbaar",
+ "entity_id": "Entiteits-ID",
+ "name": "Naam",
+ "type": "Type"
+ },
+ "no_helpers": "Er zijn geen helpers gevonden!"
+ },
+ "types": {
+ "counter": "Teller",
+ "input_boolean": "Schakelaar",
+ "input_button": "Knop",
+ "input_datetime": "Datum en/of tijd",
+ "input_number": "Numeriek",
+ "input_select": "Keuzelijst",
+ "input_text": "Tekst",
+ "timer": "Timer"
+ }
+ },
+ "info": {
+ "built_using": "Gebouwd met behulp van",
+ "caption": "Info",
+ "copy_github": "Voor GitHub",
+ "copy_menu": "Kopieer menu",
+ "copy_raw": "Ruwe tekst",
+ "custom_uis": "Aangepaste UI's:",
+ "description": "Versie, systeemstatus en links naar documentatie",
+ "developed_by": "Ontwikkeld door een stel geweldige mensen.",
+ "documentation": "Documentatie",
+ "frontend": "Frontend",
+ "frontend_version": "Frontend-versie: {version} - {type}",
+ "home_assistant_logo": "Home Assistant-logo",
+ "icons_by": "Pictogrammen door",
+ "integrations": "Integraties",
+ "issues": "Problemen",
+ "license": "Gepubliceerd onder de Apache 2.0-licentie",
+ "path_configuration": "Pad naar configuration.yaml: {path}",
+ "server": "Server",
+ "setup_time": "Insteltijd",
+ "source": "Bron:",
+ "system_health": {
+ "manage": "Beheer",
+ "more_info": "meer informatie"
+ },
+ "system_health_error": "De systeemstatus component is niet geladen. Voeg ' system_health: ' toe aan het configuratiebestand."
+ },
+ "integrations": {
+ "add_integration": "Integratie toevoegen",
+ "attention": "Aandacht vereist",
+ "caption": "Integraties",
+ "config_entry": {
+ "area": "In {area}",
+ "check_the_logs": "Controleer de logboeken",
+ "configure": "Configureer",
+ "delete": "Verwijder",
+ "delete_confirm": "Weet u zeker dat de integratie {title} wilt verwijderen?",
+ "depends_on_cloud": "Cloud afhankelijk",
+ "device_unavailable": "Apparaat niet beschikbaar",
+ "devices": "{count} {count, plural,\n one {apparaat}\n other {apparaten}\n}",
+ "disable": {
+ "disable_confirm": "Weet je zeker dat je deze configuratie wilt uitschakelen? Al diens apparaten en entiteiten zullen worden uitgeschakeld.",
+ "disabled": "Uitgeschakeld",
+ "disabled_by": {
+ "device": "apparaat",
+ "integration": "integratie",
+ "user": "gebruiker"
+ },
+ "disabled_cause": "Uitgeschakeld door {cause}"
+ },
+ "disable_error": "In- of uitschakelen van de integratie mislukt",
+ "disable_restart_confirm": "Start Home Assistant opnieuw op om het uitzetten van deze integratie te voltooien",
+ "disabled_polling": "Automatische polling voor bijgewerkte gegevens uitgeschakeld",
+ "documentation": "Documentatie",
+ "download_diagnostics": "Diagnostiek downloaden",
+ "enable_restart_confirm": "Start Home Assistant opnieuw op om het opzetten van deze integratie te voltooien",
+ "entities": "{count} {count, plural,\n one {entiteit}\n other {entiteiten}\n}",
+ "entity_unavailable": "Entiteit niet beschikbaar",
+ "firmware": "Firmware: {version}",
+ "hardware": "Hardware: {version}",
+ "hub": "Verbonden via",
+ "known_issues": "Bekende problemen",
+ "manuf": "door {manufacturer}",
+ "no_area": "Geen Gebied",
+ "not_loaded": "Niet geladen",
+ "open_configuration_url": "Naar apparaat",
+ "provided_by_custom_integration": "Geleverd door een aangepaste integratie",
+ "reload": "Herlaad",
+ "reload_confirm": "De integratie is opnieuw geladen",
+ "reload_restart_confirm": "Start Home Assistant opnieuw om het opnieuw laden van deze integratie te voltooien",
+ "rename": "Naam wijzigen",
+ "restart_confirm": "Herstart Home Assistant om het verwijderen van deze integratie te voltooien",
+ "services": "{count} {count, plural,\n one {service}\n other {services}\n}",
+ "state": {
+ "failed_unload": "Uitladen mislukt",
+ "loaded": "Geladen",
+ "migration_error": "Migratiefout",
+ "not_loaded": "Niet geladen",
+ "setup_error": "Instellen mislukt",
+ "setup_retry": "Opnieuw proberen in te stellen"
+ },
+ "system_options": "Systeeminstellingen",
+ "unknown_via_device": "Onbekend apparaat",
+ "unnamed_entry": "Naamloze invoer",
+ "via": "Verbonden via"
+ },
+ "config_flow": {
+ "aborted": "Afgebroken",
+ "close": "Sluiten",
+ "could_not_load": "Config flow kon niet geladen worden",
+ "created_config": "Configuratie gemaakt voor {name}.",
+ "dismiss": "Dialoogvenster sluiten",
+ "error": "Fout",
+ "error_saving_area": "Fout bij het opslaan van gebied: {error}",
+ "external_step": {
+ "description": "Deze stap vereist dat je een externe website bezoekt om dit te voltooien.",
+ "open_site": "Open website"
+ },
+ "finish": "Voltooien",
+ "loading": {
+ "fallback_title": "de integratie",
+ "loading_flow": "Een ogenblik geduld terwijl {integration} wordt ingesteld",
+ "loading_step": "Volgende stap laden voor {integration}"
+ },
+ "next": "Volgende",
+ "not_all_required_fields": "Niet alle verplichte velden zijn ingevuld.",
+ "not_loaded": "De integratie kan niet worden geladen, probeer Home Assistant opnieuw te starten.",
+ "pick_flow_step": {
+ "new_flow": "Nee, zet een andere instantie van {integration} op",
+ "title": "We hebben deze ontdekt. Wil je ze instellen?"
+ },
+ "submit": "Opslaan"
+ },
+ "configure": "Configureer",
+ "configured": "Geconfigureerd",
+ "confirm_new": "Wilt u {integration} instellen?",
+ "description": "Beheer integraties met services of apparaten",
+ "details": "Integratiedetails",
+ "disable": {
+ "disabled_integrations": "{number} uitgeschakeld",
+ "show": "Toon",
+ "show_disabled": "Toon uitgeschakelde integraties"
+ },
+ "discovered": "Ontdekt",
+ "home_assistant_website": "Home Assistant-website",
+ "ignore": {
+ "confirm_delete_ignore": "Hierdoor verschijnt de integratie weer in uw ontdekte integraties wanneer deze wordt ontdekt. Dit kan een herstart vereisen of enige tijd duren.",
+ "confirm_delete_ignore_title": "Stop met negeren van {name}?",
+ "confirm_ignore": "Weet je zeker dat je deze integratie niet wilt instellen? Je kan dit ongedaan maken door in het overloopmenu rechtsboven op 'Genegeerde integraties weergeven' te klikken.",
+ "confirm_ignore_title": "Detectie van {name} negeren?",
+ "ignore": "Negeren",
+ "ignored": "Genegeerd",
+ "show_ignored": "Toon genegeerde integraties",
+ "stop_ignore": "Stop met negeren"
+ },
+ "integration": "integratie",
+ "integration_not_found": "Integratie niet gevonden.",
+ "new": "Stel een nieuwe integratie in",
+ "no_integrations": "Het lijkt erop dat u nog geen integraties heeft geconfigureerd. Klik op de knop hieronder om uw eerste integratie toe te voegen!",
+ "none": "Er is nog niets geconfigureerd",
+ "none_found": "Geen integraties gevonden",
+ "none_found_detail": "Pas uw zoekcriteria aan.",
+ "note_about_integrations": "Er kwamen geen integraties overeen met uw zoekopdracht. De integratie die u wilt instellen, is mogelijk nog niet beschikbaar om via de gebruikersinterface in te stellen.",
+ "note_about_website_reference": "Meer zijn beschikbaar op de ",
+ "reconfigure": "Herconfigureer",
+ "rename_dialog": "Bewerk de naam van dit configuratie item",
+ "rename_input_label": "Invoernaam",
+ "search": "Zoek integraties"
+ },
+ "introduction": "Hier kunt u uw componenten en Home Assistant configureren. Het is nog niet mogelijk om alles te configureren vanuit de interface, maar we werken er aan.",
+ "logs": {
+ "caption": "Logboek",
+ "clear": "Wis",
+ "copy": "Logboekinvoer kopiëren",
+ "custom_integration": "aangepaste integratie",
+ "description": "Home Assistant logboek bekijken",
+ "details": "Logboekdetails ({level})",
+ "error_from_custom_integration": "Deze fout is ontstaan door een aangepaste integratie.",
+ "level": {
+ "critical": "KRITISCH",
+ "debug": "DEBUG",
+ "error": "FOUT",
+ "info": "INFO",
+ "warning": "WAARSCHUWING"
+ },
+ "load_full_log": "Laad volledige Home Assistant logboek",
+ "loading_log": "Foutenlogboek laden...",
+ "multiple_messages": "bericht kwam voor het eerst om {time} en verschijnt {counter} keer",
+ "no_errors": "Er zijn geen fouten gemeld",
+ "no_issues": "Er zijn geen problemen!",
+ "refresh": "Vernieuwen"
+ },
+ "lovelace": {
+ "caption": "Lovelace-dashboards",
+ "dashboards": {
+ "cant_edit_default": "Het standaard Lovelace-dashboard, Overzicht, kan niet vanuit de gebruikersinterface worden bewerkt. U kunt het verbergen door standaard een ander dashboard in te stellen.",
+ "cant_edit_yaml": "Dashboards die zijn gedefinieerd in YAML kunnen niet worden bewerkt vanuit de gebruikersinterface. Wijzig ze in configuration.yaml.",
+ "caption": "Dashboards",
+ "conf_mode": {
+ "storage": "Gebruikersinterface gestuurd",
+ "yaml": "YAML-bestand"
+ },
+ "confirm_delete": "Weet je zeker dat je dit dashboard wilt verwijderen?",
+ "confirm_delete_text": "Uw dashboard wordt permanent verwijderd.",
+ "confirm_delete_title": "Verwijder {dashboard_title}?",
+ "default_dashboard": "Dit is het standaard dashboard",
+ "detail": {
+ "create": "Aanmaken",
+ "delete": "Verwijderen",
+ "dismiss": "Sluiten",
+ "edit_dashboard": "Dashboard bewerken",
+ "icon": "Pictogram",
+ "new_dashboard": "Nieuw dashboard toevoegen",
+ "remove_default": "Verwijderen als standaard op dit apparaat",
+ "require_admin": "Alleen beheerder",
+ "set_default": "Als standaard instellen op dit apparaat",
+ "show_sidebar": "Toon in de zijbalk",
+ "title": "Titel",
+ "title_required": "Titel is vereist.",
+ "update": "Bijwerken",
+ "url": "URL",
+ "url_error_msg": "De URL moet een - bevatten en mag geen spaties of speciale tekens bevatten, behalve _ en -"
+ },
+ "picker": {
+ "add_dashboard": "Dashboard toevoegen",
+ "headers": {
+ "conf_mode": "Configuratiemethode",
+ "default": "Standaard",
+ "filename": "Bestandsnaam",
+ "require_admin": "Alleen beheerder",
+ "sidebar": "Toon in de zijbalk",
+ "title": "Titel"
+ },
+ "open": "Open"
+ }
+ },
+ "description": "Maak aangepaste sets van cards om uw huis te besturen",
+ "resources": {
+ "cant_edit_yaml": "Je gebruikt Lovelace in YAML-modus, daarom kun je je bronnen niet beheren via de gebruikersinterface. Beheer ze in configuration.yaml.",
+ "caption": "Bronnen",
+ "confirm_delete": "Weet u zeker dat u deze bron wilt verwijderen?",
+ "detail": {
+ "create": "Aanmaken",
+ "delete": "Verwijder",
+ "dismiss": "Sluiten",
+ "new_resource": "Voeg nieuwe bron toe",
+ "type": "Type bron",
+ "update": "Bijwerken",
+ "url": "URL",
+ "url_error_msg": "URL is een verplicht veld",
+ "warning_header": "Wees voorzichtig!",
+ "warning_text": "Het toevoegen van bronnen kan gevaarlijk zijn, zorg ervoor dat u de bron van de bron kent en vertrouw ze. Slechte bronnen kunnen uw systeem ernstig beschadigen."
+ },
+ "picker": {
+ "add_resource": "Voeg bron toe",
+ "headers": {
+ "type": "Type",
+ "url": "URL"
+ },
+ "no_resources": "Geen bronnen"
+ },
+ "refresh_body": "U moet de pagina vernieuwen om de verwijdering te voltooien. Wilt u nu vernieuwen?",
+ "refresh_header": "Wil je verversen?",
+ "types": {
+ "css": "Stylesheet",
+ "html": "HTML (verouderd)",
+ "js": "JavaScript-bestand (verouderd)",
+ "module": "JavaScript-module"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Luisteren naar onderwerp",
+ "description_publish": "Publiceer een pakket",
+ "listening_to": "Luisteren naar",
+ "message_received": "Bericht {id} ontvangen op {topic} om {time}:",
+ "payload": "Payload (sjabloon toegestaan)",
+ "publish": "Publiceer",
+ "start_listening": "Begin te luisteren",
+ "stop_listening": "Stop met luisteren",
+ "subscribe_to": "Gebeurtenis om op te abonneren",
+ "title": "MQTT",
+ "topic": "onderwerp"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Controller",
+ "instance": "Instantie",
+ "network": "Netwerk",
+ "node_id": "Knooppunt-ID",
+ "ozw_instance": "Instantie van OpenZWave",
+ "query_stage": "Vraagfase",
+ "wakeup_instructions": "Wekinstructies",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Knoop gefaald",
+ "stage": "Stadium",
+ "zwave_info": "Z-Wave informatie"
+ },
+ "navigation": {
+ "network": "Netwerk",
+ "node": {
+ "config": "Configuratie",
+ "dashboard": "Dashboard"
+ },
+ "nodes": "Knooppunten",
+ "select_instance": "Instantie selecteren"
+ },
+ "network": {
+ "header": "Netwerkbeheer",
+ "introduction": "Beheer netwerkbrede functies.",
+ "node_count": "{count} knooppunten"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "Alle knooppunten zijn opgevraagd",
+ "driverallnodesqueriedsomedead": "Alle knooppunten zijn opgevraagd. Sommige knooppunten werden dood aangetroffen",
+ "driverawakenodesqueries": "Alle knooppunten die wakker zijn, zijn opgevraagd",
+ "driverfailed": "Kan geen verbinding maken met de Z-Wave-controller",
+ "driverready": "Initialiseren van de Z-Wave-controller",
+ "driverremoved": "De driver is verwijderd",
+ "driverreset": "De driver is gereset",
+ "offline": "OZWDaemon offline",
+ "ready": "Klaar om te verbinden",
+ "started": "Verbonden met MQTT",
+ "starting": "Verbinding maken met MQTT",
+ "stopped": "OpenZWave is gestopt"
+ },
+ "offline": "Offline",
+ "online": "Online",
+ "starting": "Aan het starten",
+ "unknown": "Onbekend"
+ },
+ "node": {
+ "button": "Node details",
+ "not_found": "Node niet gevonden"
+ },
+ "node_config": {
+ "header": "Node Configuratie",
+ "help_source": "Configuratieparameterbeschrijvingen en helptekst worden geleverd door het OpenZWave-project.",
+ "introduction": "Beheer de verschillende configuratieparameters voor een Z-Wave-Node.",
+ "wakeup_help": "Batterijgevoede Nodes moeten wakker zijn om hun configuratie te wijzigen. Als de Node niet wakker is, zal OpenZWave proberen de configuratie van de Node bij te werken de volgende keer dat het ontwaakt, wat meerdere uren (of dagen) later kan zijn. Volg deze stappen om je apparaat uit de slaapstand te halen:"
+ },
+ "node_metadata": {
+ "product_manual": "Producthandleiding"
+ },
+ "node_query_stages": {
+ "associations": "Associatiegroepen en lidmaatschappen verversen",
+ "cacheload": "Informatie laden uit het OpenZWave-cachebestand. Knooppunten met batterij blijven in dit stadium totdat het knooppunt ontwaakt.",
+ "complete": "Het ondervragingsproces is voltooid",
+ "configuration": "Configuratiewaarden ophalen van het knooppunt",
+ "dynamic": "Het verkrijgen van frequent veranderende waarden uit het knooppunt",
+ "instances": "Details verkrijgen over welke instanties of kanalen een apparaat ondersteunt",
+ "manufacturerspecific1": "Verkrijgen van fabrikant- en productidentificatiecodes van het knooppunt",
+ "manufacturerspecific2": "Extra fabrikant- en product-ID-codes verkrijgen van het knooppunt",
+ "neighbors": "Een lijst ophalen met de buren van het knooppunt",
+ "nodeinfo": "Verkrijgen van ondersteunde commandoklassen van het knooppunt",
+ "nodeplusinfo": "Z-Wave+ informatie verkrijgen van het knooppunt",
+ "probe": "Controleren of het knooppunt wakker/levend is",
+ "protocolinfo": "Het verkrijgen van basis Z-Wave-mogelijkheden van dit knooppunt uit de controller",
+ "session": "Het verkrijgen van zelden veranderende waarden uit het knooppunt",
+ "static": "Statische waarden ophalen van het apparaat",
+ "versions": "Het verkrijgen van informatie over firmware en commandoklasseversies",
+ "wakeup": "Ondersteuning instellen voor wek-wachtrijen en berichten"
+ },
+ "nodes_table": {
+ "failed": "Mislukt",
+ "id": "ID",
+ "manufacturer": "Fabrikant",
+ "model": "Model",
+ "query_stage": "Vraagfase",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Als het knooppunt op batterijen werkt, moet u het uit de sluimerstand halen voordat u verder gaat",
+ "button": "Node verversen",
+ "complete": "Knooppunt vernieuwen voltooid",
+ "description": "Dit zal OpenZWave vertellen om een knooppunt opnieuw te ondervragen en de opdrachtklassen, mogelijkheden en waarden van het knooppunt bij te werken.",
+ "node_status": "Knooppuntstatus",
+ "refreshing_description": "Knooppuntinformatie vernieuwen…",
+ "start_refresh_button": "Start Vernieuwen",
+ "step": "Stap",
+ "title": "Vernieuw knooppuntinformatie",
+ "wakeup_header": "Wekinstructies voor",
+ "wakeup_instructions_source": "Wekinstructies zijn afkomstig uit de OpenZWave-gemeenschapsapparaatdatabase."
+ },
+ "select_instance": {
+ "header": "Selecteer een OpenZWave instantie",
+ "introduction": "Je hebt meer dan één OpenZWave instantie lopen. Welke instantie wil je beheren?",
+ "none_found": "We konden geen OpenZWave-instantie vinden. Als u denkt dat dit niet klopt, controleer dan uw OpenZWave- en MQTT-instellingen en zorg ervoor dat Home Assistant kan communiceren met uw MQTT-broker."
+ },
+ "services": {
+ "add_node": "Knooppunt toevoegen",
+ "cancel_command": "Opdracht annuleren",
+ "remove_node": "Knooppunt verwijderen"
+ }
+ },
+ "person": {
+ "add_person": "Persoon toevoegen",
+ "caption": "Personen",
+ "confirm_delete": "Weet je zeker dat je deze persoon wilt verwijderen?",
+ "confirm_delete2": "Alle apparaten die behoren tot deze persoon zullen worden ontkoppeld.",
+ "create_person": "Persoon aanmaken",
+ "description": "Beheer de personen die Home Assistant volgt",
+ "detail": {
+ "admin": "Administrator",
+ "allow_login": "Persoon toestaan om in te loggen",
+ "confirm_delete_user": "Weet u zeker dat u het gebruikersaccount voor {name} wilt verwijderen? U kunt de gebruiker nog steeds volgen, maar de persoon zal niet meer kunnen inloggen.",
+ "create": "Aanmaken",
+ "delete": "Verwijderen",
+ "device_tracker_intro": "Selecteer de apparaten die bij deze persoon horen.",
+ "device_tracker_pick": "Kies apparaat om te volgen",
+ "device_tracker_picked": "Volg apparaat",
+ "link_integrations_page": "Integratiespagina",
+ "link_presence_detection_integrations": "Aanwezigheidsdetectie-integraties",
+ "linked_user": "Gekoppelde gebruiker",
+ "local_only": "Kan alleen inloggen vanaf het lokale netwerk",
+ "name": "Naam",
+ "name_error_msg": "Naam is vereist",
+ "new_person": "Nieuw persoon",
+ "no_device_tracker_available_intro": "Wanneer je apparaten hebt die de aanwezigheid van een persoon detecteren, kan je deze aan een persoon toewijzen. Je kan het eerste apparaat toevoegen door een integratie voor aanwezigheidsdetectie toe te voegen vanaf de integratiepagina.",
+ "update": "Bijwerken"
+ },
+ "introduction": "Hier kan je personen toevoegen die gebruik maken van Home Assistant.",
+ "learn_more": "Meer informatie over personen",
+ "no_persons_created_yet": "Het lijkt erop dat je nog geen personen hebt aangemaakt.",
+ "note_about_persons_configured_in_yaml": "Opmerking: personen die zijn geconfigureerd via configuration.yaml kunnen niet worden bewerkt via de UI.",
+ "person_not_found": "We kunnen de persoon die u probeerde te bewerken niet vinden.",
+ "person_not_found_title": "Persoon niet gevonden"
+ },
+ "scene": {
+ "activated": "Scène {name} geactiveerd.",
+ "caption": "Scènes",
+ "description": "Leg apparaatstatussen vast en roep ze later gemakkelijk op",
+ "editor": {
+ "area": "Gebied",
+ "default_name": "Nieuwe scène",
+ "devices": {
+ "add": "Apparaat toevoegen",
+ "delete": "Apparaat verwijderen",
+ "header": "Apparaten",
+ "introduction": "Voeg de apparaten toe die je in je scène wilt opnemen. Stel alle apparaten in op de gewenste status voor deze scène."
+ },
+ "entities": {
+ "add": "Voeg een entiteit toe",
+ "delete": "Verwijderen entiteit",
+ "device_entities": "Als je een entiteit toevoegt die tot een apparaat hoort, wordt het apparaat ook toegevoegd.",
+ "header": "Entiteiten",
+ "introduction": "Entiteiten die niet bij apparaten horen kunnen hier ingesteld worden.",
+ "without_device": "Entiteiten zonder apparaat"
+ },
+ "icon": "Pictogram",
+ "introduction": "Gebruik scènes om je huis tot leven te brengen.",
+ "load_error_not_editable": "Alleen scènes die zijn gedefinieerd in scenes.yaml kunnen worden bewerkt.",
+ "load_error_unknown": "Fout bij het laden van de scène ({err_no}).",
+ "name": "Naam",
+ "save": "Opslaan",
+ "unsaved_confirm": "U heeft niet-opgeslagen wijzigingen. Weet je zeker dat je wilt afsluiten?"
+ },
+ "picker": {
+ "add_scene": "Voeg scène toe",
+ "delete_confirm": "Weet je zeker dat je deze scène wilt verwijderen?",
+ "delete_scene": "Scène verwijderen",
+ "duplicate": "Dupliceer",
+ "duplicate_scene": "Dupliceer scene",
+ "edit_scene": "Scène bewerken",
+ "header": "Scene Editor",
+ "headers": {
+ "name": "Naam"
+ },
+ "introduction": "Met de scene editor kun je scenes maken en bewerken. Volg de onderstaande link om de instructies te lezen om ervoor te zorgen dat je Home Assistant correct hebt geconfigureerd.",
+ "learn_more": "Meer informatie over scènes",
+ "no_scenes": "We konden geen scènes vinden",
+ "only_editable": "Alleen scènes die zijn gedefinieerd in scenes.yaml kunnen worden bewerkt.",
+ "pick_scene": "Kies een scène om te bewerken",
+ "show_info_scene": "Informatie weergeven over scène"
+ }
+ },
+ "script": {
+ "caption": "Scripts",
+ "description": "Voer een reeks acties uit",
+ "editor": {
+ "alias": "Naam",
+ "default_name": "Nieuw script",
+ "delete_confirm": "Weet je zeker dat je dit script wilt verwijderen?",
+ "delete_script": "Verwijder script",
+ "header": "Script: {name}",
+ "icon": "Pictogram",
+ "id": "Entiteits-ID",
+ "id_already_exists": "Deze ID bestaat al",
+ "id_already_exists_save_error": "U kunt dit script niet opslaan omdat de ID niet uniek is, kies een andere ID of laat deze leeg om er automatisch een te genereren.",
+ "introduction": "Gebruik scripts om een reeks acties uit te voeren.",
+ "link_available_actions": "Meer informatie over beschikbare acties.",
+ "load_error_not_editable": "Alleen scripts in scripts.yaml kunnen worden bewerkt.",
+ "max": {
+ "parallel": "Maximum aantal parallelle runs",
+ "queued": "Lengte van de wachtrij"
+ },
+ "modes": {
+ "description": "De modus bepaalt wat er gebeurt wanneer het script wordt aangeroepen terwijl het nog steeds wordt uitgevoerd vanuit een of meer eerdere aanroepen. Controleer de {documentation_link} voor meer informatie.",
+ "documentation": "Scriptdocumentatie",
+ "label": "Modus",
+ "parallel": "Parallel",
+ "queued": "In de wachtrij geplaatst",
+ "restart": "Herstarten",
+ "single": "Enkelvoudig (standaard)"
+ },
+ "save_script": "Script opslaan",
+ "sequence": "Reeks",
+ "sequence_sentence": "De reeks van acties in dit script.",
+ "show_trace": "Tracering weergeven"
+ },
+ "picker": {
+ "add_script": "Voeg script toe",
+ "dev_script": "Debug script",
+ "duplicate": "Dupliceer",
+ "duplicate_script": "Script dupliceren",
+ "edit_script": "Bewerk script",
+ "header": "Script Editor",
+ "headers": {
+ "name": "Naam"
+ },
+ "introduction": "Met de editor kunt u scripts maken en bewerken. Volg de onderstaande link om de instructies te lezen om ervoor te zorgen dat u Home Assistant correct hebt geconfigureerd.",
+ "learn_more": "Meer informatie over scripts",
+ "no_scripts": "We hebben geen scripts gevonden",
+ "run_script": "Script uitvoeren",
+ "show_info": "Toon info over script"
+ }
+ },
+ "server_control": {
+ "caption": "Serverbeheer",
+ "description": "Valideer en herstart de Home Assistant-server",
+ "section": {
+ "reloading": {
+ "automation": "Automatiseringen",
+ "command_line": "Opdrachtregel-entiteiten",
+ "core": "Locatie en aanpassingen",
+ "filesize": "Bestandsgrootte entiteiten",
+ "filter": "Filter-entiteiten",
+ "generic": "Generieke IP camera entiteiten",
+ "generic_thermostat": "Generieke thermostaat entiteiten",
+ "group": "Groepen, groepsentiteiten en notify services",
+ "heading": "Configuratie herladen",
+ "history_stats": "Historische statistieken entiteiten",
+ "homekit": "HomeKit",
+ "input_boolean": "Input booleans",
+ "input_button": "Invoerknoppen",
+ "input_datetime": "Input date times",
+ "input_number": "Input numbers",
+ "input_select": "Input selects",
+ "input_text": "Input texts",
+ "introduction": "Sommige onderdelen van Home Assistant kunnen opnieuw geladen worden zonder dat een herstart nodig is. Als u op een van de onderstaande opties klikt, wordt de huidige YAML-configuratie verwijderd en de nieuwe geladen.",
+ "min_max": "Min/max entiteiten",
+ "mqtt": "Handmatig geconfigureerde MQTT-entiteiten",
+ "person": "Personen",
+ "ping": "Ping binaire sensor entiteiten",
+ "reload": "{domain}",
+ "rest": "Rest-entiteiten en notify-services",
+ "rpi_gpio": "Raspberry Pi GPIO-entiteiten",
+ "scene": "Scenes",
+ "script": "Scripts",
+ "smtp": "SMTP notify services",
+ "statistics": "Statistische entiteiten",
+ "telegram": "Telegram notify services",
+ "template": "Template entiteiten",
+ "themes": "Thema's",
+ "timer": "Timers",
+ "trend": "Trend-entiteiten",
+ "universal": "Universele mediaspeler entiteiten",
+ "zone": "Zones"
+ },
+ "server_management": {
+ "confirm_restart": "Weet je zeker dat je Home Assistant opnieuw wilt starten?",
+ "confirm_stop": "Weet je zeker dat je Home Assistant wilt afsluiten?",
+ "heading": "Serverbeheer",
+ "introduction": "Beheer uw Home Assistant",
+ "restart": "Herstarten",
+ "stop": "Stop"
+ },
+ "validation": {
+ "check_config": "Controleer configuratie",
+ "heading": "Valideer configuratie",
+ "introduction": "Controleer uw configuratie als u onlangs wijzigingen hebt aangebracht en zeker wilt weten dat ze geldig zijn",
+ "invalid": "Ongeldige configuratie",
+ "valid": "Geldige configuratie!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Tag toevoegen",
+ "automation_title": "Tag {name} is gescand",
+ "caption": "Tags",
+ "confirm_remove": "Weet je zeker dat je tag {tag} wilt verwijderen?",
+ "confirm_remove_title": "Tag verwijderen?",
+ "create_automation": "Creëer automatisering met tag",
+ "description": "Activeer automatiseringen wanneer een NFC-tag, QR-code, enz. wordt gescand",
+ "detail": {
+ "companion_apps": "bijbehorende apps",
+ "create": "Creëer",
+ "create_and_write": "Creëer en schrijf",
+ "delete": "Verwijder",
+ "description": "Beschrijving",
+ "name": "Naam",
+ "new_tag": "Nieuwe tag",
+ "tag_id": "Tag-ID",
+ "tag_id_placeholder": "Automatisch gegenereerd wanneer leeg gelaten",
+ "update": "Werk bij",
+ "usage": "Een tag kan een automatisering activeren wanneer deze wordt gescand, u kunt NFC-tags, QR-codes of een ander soort tag gebruiken. Gebruik onze {companion_link} om deze tag naar een programmeerbare NFC-tag te schrijven of maak hieronder een QR-code."
+ },
+ "edit": "Bewerk",
+ "headers": {
+ "last_scanned": "Laatst gescand",
+ "name": "Naam"
+ },
+ "learn_more": "Meer informatie over tags",
+ "never_scanned": "Nooit gescand",
+ "no_tags": "Geen tags",
+ "write": "Schrijf"
+ },
+ "updates": {
+ "more_updates": "+ {count} Updates",
+ "review": "review",
+ "show": "toon",
+ "show_all_updates": "Toon alle updates",
+ "title": "{count} {count, plural,\n one {update}\n other {updates}\n}",
+ "unable_to_fetch": "Kan updates niet laden",
+ "version_available": "Versie {version_available} is beschikbaar"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Gebruiker toevoegen",
+ "create": "Maken",
+ "local_only": "Alleen lokaal",
+ "password": "Wachtwoord",
+ "password_confirm": "Bevestig wachtwoord",
+ "password_not_match": "Wachtwoorden komen niet overeen"
+ },
+ "caption": "Gebruikers",
+ "description": "Gebruikers van Home Assistant beheren",
+ "editor": {
+ "activate_user": "Activeer gebruiker",
+ "active": "Actief",
+ "active_tooltip": "Bepaal of de gebruiker kan inloggen",
+ "admin": "Beheerder",
+ "caption": "Bekijk gebruiker",
+ "change_password": "Wachtwoord wijzigen",
+ "confirm_user_deletion": "Weet je zeker dat je {name} wilt verwijderen?",
+ "deactivate_user": "Deactiveer gebruiker",
+ "delete_user": "Verwijder gebruiker",
+ "group": "Groep",
+ "id": "ID",
+ "local_only": "Kan alleen inloggen vanaf het lokale netwerk",
+ "name": "Weergavenaam",
+ "new_password": "Nieuw wachtwoord",
+ "owner": "Eigenaar",
+ "password_changed": "Het wachtwoord is gewijzigd!",
+ "system_generated": "Systeemgebruiker",
+ "system_generated_users_not_editable": "Kan systeemgebruikers niet bijwerken.",
+ "system_generated_users_not_removable": "Kan systeemgebruikers niet verwijderen.",
+ "unnamed_user": "Naamloze gebruiker",
+ "update_user": "Bijwerken",
+ "username": "Gebruikersnaam"
+ },
+ "is_local": "Lokale gebruiker",
+ "is_not_active": "Uitgeschakeld",
+ "is_owner": "Eigenaar",
+ "is_system": "Systeemgebruiker",
+ "picker": {
+ "add_user": "Gebruiker toevoegen",
+ "headers": {
+ "group": "Groep",
+ "is_active": "Actief",
+ "is_owner": "Eigenaar",
+ "local": "Lokaal",
+ "name": "Weergavenaam",
+ "system": "Systeem",
+ "username": "Gebruikersnaam"
+ }
+ },
+ "users_privileges_note": "Gebruikersgroepen zijn nog in ontwikkeling. De gebruiker kan de instantie niet beheren via de interface. We controleren nog steeds alle beheer API eindpunten om ervoor te zorgen dat ze de toegang tot beheerders correct beperken."
+ },
+ "zha": {
+ "add_device": "Apparaat toevoegen",
+ "add_device_page": {
+ "discovered_text": "Apparaten zullen hier verschijnen zodra ze zijn ontdekt.",
+ "no_devices_found": "Geen apparaten gevonden, zorg ervoor dat ze in de koppelingsmodus staan en dat de apparaten actief blijven gedurende het koppelen.",
+ "pairing_mode": "Zorg ervoor dat de apparaten in de koppelingsmodus staan. Kijk in de instructies van het apparaat hoe dit moet.",
+ "search_again": "Opnieuw zoeken",
+ "spinner": "Zoeken naar ZHA Zigbee-apparaten …"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Attributen van het geselecteerde cluster",
+ "get_zigbee_attribute": "Haal Zigbee attribuut op",
+ "header": "Cluster Attributen",
+ "help_attribute_dropdown": "Selecteer een attribuut om deze te bekijken of de waarde in te stellen",
+ "help_get_zigbee_attribute": "Haal de waarde voor de geselecteerde attribuut op",
+ "help_set_zigbee_attribute": "Stel attribuutwaarde in voor het gespecificeerde cluster op de gespecificeerde entiteit.",
+ "introduction": "Weergeven en bewerken cluster attributen.",
+ "set_zigbee_attribute": "Stel Zigbee attribuut in"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Commando's van het geselecteerde cluster",
+ "header": "Cluster commando's",
+ "help_command_dropdown": "Selecteer een commando om mee te communiceren.",
+ "introduction": "Bekijk en geef opdrachten voor clustercommando's.",
+ "issue_zigbee_command": "Zigbee opdracht uitvoeren"
+ },
+ "clusters": {
+ "header": "Clusters",
+ "help_cluster_dropdown": "Selecteer een cluster om attributen en commando's te bekijken.",
+ "introduction": "Clusters zijn de bouwstenen voor Zigbee-functionaliteit. Ze scheiden functionaliteit in logische eenheden. Er zijn client- en servertypen en deze bestaan uit attributen en opdrachten."
+ },
+ "common": {
+ "clusters": "Clusters",
+ "manufacturer_code_override": "Fabrikant Code Override",
+ "value": "Waarde"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Snelkoppelingen",
+ "update_button": "Update configuratie"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Configuratie voltooid",
+ "CONFIGURED_status_text": "Initialiseren",
+ "INITIALIZED": "Initialisatie voltooid",
+ "INITIALIZED_status_text": "Het apparaat is klaar voor gebruik",
+ "INTERVIEW_COMPLETE": "Interview compleet",
+ "INTERVIEW_COMPLETE_status_text": "Configureren",
+ "PAIRED": "Apparaat gevonden",
+ "PAIRED_status_text": "Start interview"
+ },
+ "group_binding": {
+ "bind_button_help": "Koppel de geselecteerde groep van de geselecteerde apparaatclusters.",
+ "bind_button_label": "Koppel groep",
+ "cluster_selection_help": "Selecteer clusters om aan de geselecteerde groep te koppelen.",
+ "group_picker_help": "Selecteer een groep om een koppel opdracht uit te voeren.",
+ "group_picker_label": "Te koppelen groepen",
+ "header": "Groep koppelingen",
+ "introduction": "Groepen koppelen en ontkoppelen",
+ "unbind_button_help": "Ontkoppel de geselecteerde groep van de geselecteerde apparaatclusters.",
+ "unbind_button_label": "Ontkoppel groep"
+ },
+ "groups": {
+ "add_group": "Groep toevoegen",
+ "add_members": "Leden toevoegen",
+ "caption": "Groepen",
+ "create": "Groep maken",
+ "create_group": "Zigbee Home Automation - Aanmaken groep",
+ "create_group_details": "Voer de vereiste gegevens in om een nieuwe Zigbee groep te maken",
+ "creating_group": "Groep aanmaken",
+ "delete": "Verwijder Groep",
+ "group_details": "Hier zijn alle details voor de geselecteerde Zigbee groep.",
+ "group_id": "Groep",
+ "group_info": "Groepsinformatie",
+ "group_name_placeholder": "Groepsnaam",
+ "group_not_found": "Groep niet gevonden!",
+ "groups": "groepen",
+ "members": "Leden",
+ "remove_members": "Leden verwijderen",
+ "removing_members": "Leden verwijderen"
+ },
+ "network": {
+ "caption": "Netwerk"
+ },
+ "visualization": {
+ "auto_zoom": "Automatische zoom",
+ "caption": "Visualisatie",
+ "header": "Netwerkvisualisatie",
+ "highlight_label": "Markeer Apparaten",
+ "refresh_topology": "Topologie vernieuwen",
+ "zoom_label": "Zoom naar apparaat"
+ }
+ },
+ "zone": {
+ "add_zone": "Zone toevoegen",
+ "caption": "Zones",
+ "configured_in_yaml": "Zones die via configuration.yaml zijn geconfigureerd kunnen niet worden bewerkt in de gebruikers",
+ "confirm_delete": "Weet je zeker dat je deze zone wilt verwijderen?",
+ "create_zone": "Creëer Zone",
+ "description": "Beheer de zones waarin u personen wilt volgen",
+ "detail": {
+ "create": "Aanmaken",
+ "delete": "Verwijder",
+ "icon": "Pictogram",
+ "icon_error_msg": "Het pictogram moet de volgende opmaak hebben \"voorvoegsel:pictogramnaam\", bijvoorbeeld: \"mdi:home\"",
+ "latitude": "Breedtegraad",
+ "longitude": "Lengtegraad",
+ "name": "Naam",
+ "new_zone": "Nieuwe zone",
+ "passive": "Passief",
+ "passive_note": "Passieve zones zijn verborgen in het frontend en worden niet gebruikt als locaties voor apparaattrackers. Dit is handig als je de zone wilt gebruiken voor automatiseringen.",
+ "radius": "Straal",
+ "required_error_msg": "Dit veld is verplicht",
+ "update": "Bijwerken"
+ },
+ "edit_home_zone": "De straal van de thuiszone kan nog niet vanaf de frontend worden bewerkt. Sleep de markering op de kaart om de thuiszone te verplaatsen.",
+ "edit_home_zone_narrow": "De straal van de thuiszone kan nog niet vanaf de frontend worden bewerkt. De locatie kan worden gewijzigd vanuit de algemene instellingen.",
+ "edit_zone": "Wijzig Zone",
+ "go_to_core_config": "Ga naar de algemene instellingen?",
+ "home_zone_core_config": "De locatie van uw thuiszone kan worden bewerkt vanuit de algemene instellingen-pagina. De straal van de thuiszone kan nog niet vanaf de frontend worden bewerkt. Wil je naar de algemene instellingen gaan?",
+ "introduction": "Met zones kan je bepaalde regio's op aarde opgeven. Wanneer een persoon zich in een zone bevindt, dan wordt de staat de naam uit de zone. Zones kunnen ook worden gebruikt als trigger of voorwaarde in automatiseringen.",
+ "no_zones_created_yet": "Het lijkt erop dat je nog geen zones hebt aangemaakt."
+ },
+ "zwave": {
+ "common": {
+ "index": "Index",
+ "instance": "Exemplaar",
+ "unknown": "onbekend",
+ "value": "Waarde",
+ "wakeup_interval": "Wek-interval"
+ },
+ "description": "Beheer je Z-Wave-netwerk",
+ "learn_more": "Meer informatie over Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "Migreren naar OpenZWave",
+ "introduction": "Deze wizard helpt u te migreren van de oude Z-Wave integratie naar de OpenZWave integratie die momenteel in bèta is."
+ },
+ "zwave_js": {
+ "header": "Migreren naar Z-Wave JS",
+ "introduction": "Deze integratie wordt niet langer onderhouden, en wij adviseren u om over te stappen naar de nieuwe Z-Wave JS-integratie. Deze wizard helpt u bij de migratie van de oude Z-Wave integratie naar de nieuwe Z-Wave JS-integratie."
+ }
+ },
+ "network_management": {
+ "header": "Z-Wave netwerkbeheer",
+ "introduction": "Voer opdrachten uit die van invloed zijn op het Z-Wave-netwerk. Je krijgt geen terugkoppeling of de meeste commando's gelukt zijn, maar je kunt wel het OZW Logboek raadplegen om te proberen uit te vinden of het gelukt is."
+ },
+ "network_status": {
+ "network_started": "Z-Wave netwerk gestart",
+ "network_started_note_all_queried": "Alle knooppunten zijn opgevraagd.",
+ "network_started_note_some_queried": "Alle actieve knooppunten zijn opgevraagd. Inactieve knooppunten worden opgevraagd wanneer ze actief worden.",
+ "network_starting": "Z-Wave netwerk starten…",
+ "network_starting_note": "Dit kan een tijdje duren, afhankelijk van de grootte van je netwerk.",
+ "network_stopped": "Z-Wave netwerk gestopt"
+ },
+ "node_config": {
+ "config_parameter": "Configuratie Parameter",
+ "config_value": "Configuratiewaarde",
+ "false": "Niet waar",
+ "header": "Knooppunt Configuratie Opties",
+ "seconds": "Seconden",
+ "set_config_parameter": "Stel de configuratieparameter in",
+ "set_wakeup": "Wek-interval instellen",
+ "true": "Waar"
+ },
+ "node_management": {
+ "add_to_group": "Toevoegen aan groep",
+ "entities": "Entiteiten van dit knooppunt",
+ "entity_info": "Entiteitsinformatie",
+ "exclude_entity": "Sluit deze entiteit uit van Home Assistant",
+ "group": "Groep",
+ "header": "Z-Wave Knooppunt-beheer",
+ "introduction": "Voer Z-Wave commando's uit die een enkel knooppunt beïnvloeden. Kies een knooppunt om een lijst met beschikbare commando's te zien.",
+ "max_associations": "Maximale associaties:",
+ "node_group_associations": "Knooppuntgroepassociaties",
+ "node_protection": "Knooppunt beveiliging",
+ "node_to_control": "Knooppunt om te besturen",
+ "nodes": "Knooppunten",
+ "nodes_hint": "Selecteer knooppunt om de opties per knooppunt te bekijken",
+ "nodes_in_group": "Andere nodes in deze groep:",
+ "pooling_intensity": "Polling intensiteit",
+ "protection": "Bescherming",
+ "remove_broadcast": "Broadcast verwijderen",
+ "remove_from_group": "Verwijderen uit groep",
+ "set_protection": "Bescherming instellen"
+ },
+ "ozw_log": {
+ "header": "OZW-logboek",
+ "introduction": "Bekijk het logboek. 0 is het minimum (laadt het gehele logboek) en 1000 is het maximum. Laad toont een statisch logboek en Tail wordt automatisch bijgewerkt met het laatst opgegeven aantal regels van het logboek.",
+ "last_log_lines": "Aantal laatste logboekregels",
+ "load": "Laden",
+ "tail": "Tail"
+ },
+ "services": {
+ "add_node": "Knooppunt toevoegen",
+ "add_node_secure": "Beveiligd knooppunt toevoegen",
+ "cancel_command": "Opdracht annuleren",
+ "heal_network": "Herstel Netwerk",
+ "heal_node": "Herstel knooppunt",
+ "node_info": "Knooppunt informatie",
+ "print_node": "Print knooppunt",
+ "refresh_entity": "Entiteit vernieuwen",
+ "refresh_node": "Knooppunt verversen",
+ "remove_failed_node": "Verwijder gefaald knooppunt",
+ "remove_node": "Knooppunt verwijderen",
+ "replace_failed_node": "Vervang gefaald knooppunt",
+ "save_config": "Configuratie Opslaan",
+ "soft_reset": "Soft Reset",
+ "start_network": "Start netwerk",
+ "stop_network": "Stop Netwerk",
+ "test_network": "Test Netwerk",
+ "test_node": "Test knooppunt"
+ },
+ "values": {
+ "header": "Knooppunt waarden"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Opname annuleren",
+ "check_logs": "Raadpleeg de logboeken voor meer informatie.",
+ "choose_inclusion_strategy": "Hoe wilt u uw apparaat toevoegen",
+ "controller_in_inclusion_mode": "Uw Z-Wave controller bevindt zich nu in de opnamemodus.",
+ "enter_qr_code": "Voer QR-code waarde in",
+ "follow_device_instructions": "Volg de aanwijzingen die bij het apparaat zijn geleverd om de koppeling van het apparaat te activeren.",
+ "inclusion_failed": "Het apparaat kon niet worden toegevoegd.",
+ "inclusion_finished": "Het apaaraat is toegevoegd.",
+ "interview_failed": "Het apparaat \"interview\" is mislukt. Aanvullende informatie is mogelijk beschikbaar in de logboeken.",
+ "interview_started": "Het apparaat wordt \"geïnterviewd\". Dit kan wat tijd kosten.",
+ "introduction": "Deze wizard begeleidt u bij het toevoegen van een knooppunt aan uw Z-Wave netwerk.",
+ "provisioning_finished": "Het apparaat is toegevoegd. Zodra u het aanzet, wordt het beschikbaar.",
+ "qr_code": "QR-code",
+ "qr_code_paragraph": "Als uw toestel SmartStart ondersteunt, kunt u de QR-code scannen voor eenvoudige koppeling.",
+ "scan_qr_code": "Scan QR code",
+ "searching_device": "Zoeken naar apparaat",
+ "secure_inclusion_warning": "Beveiligde apparaten vereisen extra bandbreedte; te veel beveiligde apparaten kunnen uw Z-Wave-netwerk vertragen. We raden aan om alleen veilige opname te gebruiken voor apparaten die dat vereisen, zoals sloten of garagedeuropeners.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Voorbeeld: Oudere deursloten zonder S2-ondersteuning",
+ "title": "S0 Legacy"
+ },
+ "S2_AccessControl": {
+ "description": "Voorbeeld: Deursloten en garagedeuren",
+ "title": "S2 Toegangscontrole"
+ },
+ "S2_Authenticated": {
+ "description": "Voorbeeld: verlichting, sensoren en beveiligingssystemen",
+ "title": "S2 Geauthenticeerd"
+ },
+ "S2_Unauthenticated": {
+ "description": "Zoals S2 Geauthenticeerd, maar zonder verificatie dat het juiste apparaat is toegevoegd",
+ "title": "S2 Niet-geverifieerd"
+ }
+ },
+ "select_camera": "Selecteer camera",
+ "start_inclusion": "Start Opname",
+ "start_secure_inclusion": "Start Veilige Opname",
+ "title": "Voeg een Z-Wave apparaat toe",
+ "use_secure_inclusion": "Gebruik veilige opname",
+ "view_device": "Bekijk apparaat"
+ },
+ "common": {
+ "add_node": "Apparaat toevoegen",
+ "back": "Terug",
+ "close": "Sluiten",
+ "heal_network": "Herstel netwerk",
+ "home_id": "Home ID",
+ "network": "Netwerk",
+ "node_id": "Apparaat ID",
+ "reconfigure_server": "Herconfigureer server",
+ "remove_node": "Apparaat verwijderen",
+ "source": "Bron"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n one {apparaat}\n other {apparaten}\n}",
+ "driver_version": "Driver Versie",
+ "dump_dead_nodes_text": "Sommige van uw apparaten reageerden niet en worden verondersteld onbereikbaar te zijn. Deze worden niet volledig geëxporteerd.",
+ "dump_dead_nodes_title": "Sommige apparaten zijn onbereikbaar",
+ "dump_debug": "Download data",
+ "dump_not_ready_confirm": "Downloaden",
+ "dump_not_ready_text": "Als u een export maakt terwijl niet alle apparaten gereed zijn, mist u mogelijk de benodigde gegevens. Geef uw netwerk wat tijd om alle apparaten op te halen. Wilt u doorgaan met de dump?",
+ "dump_not_ready_title": "Nog niet alle apparaten zijn gereed",
+ "header": "Beheer je Z-Wave netwerk",
+ "home_id": "Home ID",
+ "introduction": "Beheer uw Z-Wave netwerk en Z-Wave apparaten",
+ "nodes_ready": "Apparaten gereed",
+ "not_ready": "{count} niet klaar",
+ "server_url": "Server URL",
+ "server_version": "Server Versie"
+ },
+ "device_info": {
+ "device_config": "Configureer Apparaat",
+ "heal_node": "Heal apparaat",
+ "highest_security": "Hoogste beveiliging",
+ "is_secure": "Veilig",
+ "node_ready": "Apparaat gereed",
+ "node_status": "Apparaat status",
+ "reinterview_device": "Apparaat opnieuw interviewen",
+ "remove_failed": "Verwijder defect apparaat",
+ "unknown": "Onbekend",
+ "zwave_info": "Z-Wave info",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Versie {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "Netwerkherstel is geannuleerd.",
+ "healing_complete": "Netwerkherstel is compleet.",
+ "healing_failed": "Herstellen mislukt. Aanvullende informatie is mogelijk beschikbaar in de logboeken.",
+ "in_progress": "Netwerkherstel wordt uitgevoerd. Dit zal even duren.",
+ "introduction": "Start een netwerkherstel op uw Z-Wave netwerk. Een netwerkherstel zorgt ervoor dat alle apparaten hun routes naar de controller opnieuw berekenen en wordt aanbevolen als je recent apparaten of uw controller hebt verplaatst.",
+ "run_in_background": "U kunt dit dialoogvenster sluiten en het netwerkherstel zal voortzetten op de achtergrond.",
+ "start_heal": "Start herstellen",
+ "stop_heal": "Stop herstellen",
+ "title": "Herstel uw Z-Wave netwerk",
+ "traffic_warning": "Het herstelproces genereert een grote hoeveelheid verkeer op het Z-wave netwerk. Dit kan ertoe leiden dat apparaten traag reageren (of helemaal niet) als het herstel wordt uitgevoerd."
+ },
+ "heal_node": {
+ "healing_complete": "{device} is gehealed",
+ "healing_failed": "{device} kan niet worden gehealed",
+ "healing_failed_check_logs": "Aanvullende informatie is mogelijk beschikbaar in de logboeken.",
+ "in_progress": "{device} healing wordt uitgevoerd.",
+ "introduction": "Vertel {device} om de routes terug naar de controller te updaten. Dit kan helpen bij communicatieproblemen als je het apparaat of je controller onlangs hebt verplaatst.",
+ "network_heal_in_progress": "Een Z-Wave-netwerkherstel is al aan de gang. Wacht tot het is voltooid voordat u een afzonderlijk apparaat herstelt.",
+ "start_heal": "Heal apparaat",
+ "title": "Heal een Z-Wave apparaat",
+ "traffic_warning": "Het healing-proces genereert een grote hoeveelheid verkeer op het Z-Wave-netwerk. Dit kan ertoe leiden dat apparaten langzaam (of helemaal niet) reageren terwijl healing wordt uitgevoerd."
+ },
+ "logs": {
+ "download_logs": "Download logboeken",
+ "log_level": "Log niveau",
+ "log_level_changed": "Logboekniveau gewijzigd in: {level}",
+ "subscribed_to_logs": "Geabonneerd op Z-Wave JS log berichten…",
+ "title": "Z-Wave JS Logs"
+ },
+ "navigation": {
+ "logs": "Logs",
+ "network": "Netwerk"
+ },
+ "network_status": {
+ "connected": "Verbonden",
+ "connecting": "Verbinden",
+ "unknown": "Onbekend"
+ },
+ "node_config": {
+ "attribution": "Apparaat configuratie parameters en beschrijvingen worden geleverd door de {device_database}",
+ "battery_device_notice": "Batterij-apparaten moeten wakker zijn om hun configuratie bij te werken. Raadpleeg de handleiding van uw toestel voor instructies over hoe u het toestel kunt wekken.",
+ "error_device_not_found": "Apparaat niet gevonden",
+ "header": "Z-Wave apparaatconfiguratie",
+ "introduction": "Beheren en aanpassen van apparaat specifieke configuratieparameters voor het geselecteerde apparaat",
+ "parameter": "Parameter",
+ "parameter_is_read_only": "Deze parameter is alleen-lezen.",
+ "set_param_accepted": "De parameter is bijgewerkt.",
+ "set_param_error": "Er is een fout opgetreden.",
+ "set_param_queued": "De parameterwijziging is in een wachtrij geplaatst, en zal worden bijgewerkt wanneer het apparaat wakker wordt.",
+ "zwave_js_device_database": "Z-Wave JS Apparaat Database"
+ },
+ "node_status": {
+ "alive": "Levend",
+ "asleep": "In slaap",
+ "awake": "Wakker",
+ "dead": "Onbereikbaar",
+ "unknown": "Onbekend"
+ },
+ "provisioned": {
+ "dsk": "DSK",
+ "included": "Inclusief",
+ "not_included": "Exclusief",
+ "security_classes": "Beveiligingsklassen"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "U moet apparaten met batterijvoeding uit de slaapstand halen voordat u een nieuw \"interview\" begint. Raadpleeg de handleiding van uw apparaat voor instructies over hoe u het apparaat uit de slaapstand haalt.",
+ "in_progress": "Het apparaat wordt \"geïnterviewd\". Dit kan wat tijd kosten.",
+ "interview_complete": "Apparaat interview voltooid.",
+ "interview_failed": "Het apparaat \"interview\" is mislukt. Aanvullende informatie is mogelijk beschikbaar in de logboeken.",
+ "introduction": "\"Interview\" een apparaat op uw Z-Wave-netwerk opnieuw. Gebruik deze functie als uw apparaat een ontbrekende of onjuiste functionaliteit heeft.",
+ "run_in_background": "U kunt dit dialoogvenster sluiten en het \"interview\" zal op de achtergrond worden voortgezet.",
+ "start_reinterview": "Start opnieuw \"interview\"",
+ "title": "\"Interview\" een Z-Wave-apparaat opnieuw"
+ },
+ "remove_failed_node": {
+ "in_progress": "Het verwijderen van het apparaat is bezig.",
+ "introduction": "Verwijder een defect apparaat uit uw Z-Wave-netwerk. Gebruik dit als u een apparaat niet normaal kunt uitsluiten omdat het kapot is.",
+ "removal_failed": "Het apparaat kon niet uit uw Z-Wave netwerk worden verwijderd.",
+ "removal_finished": "Apparaat {id} is verwijderd uit uw Z-Wave-netwerk.",
+ "remove_device": "Verwijder apparaat",
+ "title": "Een mislukt Z-Wave-apparaat verwijderen"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Uitsluiting annuleren",
+ "controller_in_exclusion_mode": "Uw Z-Wave controller bevindt zich nu in de uitsluitingsmodus.",
+ "exclusion_failed": "Hetapparaat kon niet worden verwijderd. Controleer de logboeken voor meer informatie.",
+ "exclusion_finished": "Apparaat {id} is verwijderd uit het Z-Wave-netwerk.",
+ "follow_device_instructions": "Volg de instructies die bij uw apparaat zijn geleverd om uitsluiting op het apparaat te activeren.",
+ "introduction": "Verwijder een apparaat uit uw Z-Wave-netwerk, en verwijder het gekoppelde apparaat met bijbehorende entiteiten uit Home Assistant.",
+ "start_exclusion": "Start uitsluiting",
+ "title": "Een Z-Wave apparaat verwijderen"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Geen"
+ },
+ "S0_Legacy": {
+ "description": "Voorbeeld: Legacy deursloten zonder S2-ondersteuning",
+ "title": "S0 Legacy"
+ },
+ "S2_AccessControl": {
+ "description": "Voorbeeld: Deursloten en garagedeuren",
+ "title": "S2 Toegangscontrole"
+ },
+ "S2_Authenticated": {
+ "description": "Voorbeeld: Verlichting, Sensoren en Beveiligingssystemen",
+ "title": "S2 Geauthenticeerd"
+ },
+ "S2_Unauthenticated": {
+ "description": "Zoals S2 Geauthenticeerd, maar zonder verificatie dat het juiste apparaat is ingesloten",
+ "title": "S2 Niet-geverifieerd"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Het geeft toegang tot alle data van Home Assistant.",
+ "hide_message": "Raadpleeg de documentatie voor de panel_custom component hoe deze melding te verbergen",
+ "question_trust": "Vertrouw je het externe paneel {name} op {link} ?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Actieve luisteraars",
+ "alert_event_type": "Het type gebeurtenis is een verplicht veld",
+ "available_events": "Beschikbare gebeurtenissen",
+ "count_listeners": " ({count} luisteraars)",
+ "data": "Gebeurtenis data (YAML, optioneel)",
+ "description": "Vermeld een gebeurtenis in de gebeurtenisbus.",
+ "documentation": "Gebeurtenissen documentatie",
+ "event_fired": "Gebeurtenis {name} uitgevoerd",
+ "fire_event": "Gebeurtenis uitvoeren",
+ "listen_to_events": "Luisteren naar gebeurtenissen",
+ "listening_to": "Luisteren naar",
+ "notification_event_fired": "Gebeurtenis {type} met succes uitgevoerd!",
+ "start_listening": "Begin te luisteren",
+ "stop_listening": "Stop met luisteren",
+ "subscribe_to": "Gebeurtenis om op te abonneren",
+ "title": "Gebeurtenissen",
+ "type": "Type gebeurtenis"
+ },
+ "services": {
+ "accepts_target": "Deze service accepteert een doel, bijvoorbeeld: `entity_id: light.bed_light`",
+ "all_parameters": "Alle beschikbare parameters",
+ "call_service": "Aanroepen service",
+ "column_description": "Beschrijving",
+ "column_example": "Voorbeeld",
+ "column_parameter": "Parameter",
+ "description": "Met het service ontwikkelhulpmiddel kunt je elke beschikbare service in Home Assistant aanroepen.",
+ "fill_example_data": "Voorbeeldgegeven invullen",
+ "no_template_ui_support": "De UI ondersteunt geen sjablonen, u kunt nog steeds de YAML editor gebruiken.",
+ "title": "Services",
+ "ui_mode": "Ga naar UI modus",
+ "yaml_mode": "Ga naar YAML mode",
+ "yaml_parameters": "Parameters alleen beschikbaar in YAML mode"
+ },
+ "states": {
+ "alert_entity_field": "Entiteit is een verplicht veld",
+ "attributes": "Attributen",
+ "copy_id": "Kopieer ID naar klembord",
+ "current_entities": "Huidige entiteiten",
+ "description1": "Stelt de weergave van een entiteit in Home Assistant in.",
+ "description2": "Als de entiteit tot een apparaat behoort, dan is er geen daadwerkelijke communicatie met dat apparaat.",
+ "entity": "Entiteit",
+ "filter_attributes": "Filter attributen",
+ "filter_entities": "Filter entiteiten",
+ "filter_states": "Filter toestanden",
+ "last_changed": "Laatst gewijzigd",
+ "last_updated": "Laatst bijgewerkt",
+ "more_info": "Meer informatie",
+ "no_entities": "Geen entiteiten",
+ "set_state": "Definieer toestand",
+ "state": "Toestand",
+ "state_attributes": "Status attributen (YAML, optioneel)",
+ "title": "Toestanden"
+ },
+ "statistics": {
+ "entity": "Entiteit",
+ "fix_issue": {
+ "fix": "Probleem oplossen",
+ "units_changed": {
+ "clear": "Verwijder alle oude statistische data voor deze entiteit",
+ "fix": "Probleem oplossen",
+ "title": "De eenheid van deze entiteit is gewijzigd",
+ "update": "Wijzig de historische statistische van ''{metadata_unit}'' naar ''{state_unit}''"
+ }
+ },
+ "issue": "Probleem",
+ "issues": {
+ "entity_no_longer_recorded": "Deze entiteit wordt niet meer opgenomen.",
+ "entity_not_recorded": "Deze entiteit is uitgesloten van opname.",
+ "no_state": "De status voor deze entiteit is niet beschikbaar.",
+ "units_changed": "De eenheid van deze entiteit is gewijzigd van ''{metadata_unit}'' naar ''{state_unit}''.",
+ "unsupported_state_class": "De state class \"{state_class}\" van deze entiteit wordt niet ondersteund.",
+ "unsupported_unit": "De eenheid (''{state_unit}'') van deze entiteit komt niet overeen met een eenheid van apparaatklasse ''{device_class}''.",
+ "unsupported_unit_metadata": "De eenheid (''{metadata_unit}'') van de opgenomen statistieken komt niet overeen met de ondersteunde eenheid ''{supported_unit}'' van apparaatklasse ''{device_class}''.",
+ "unsupported_unit_state": "De eenheid ('' {state_unit} '') van deze entiteit komt niet overeen met een eenheid van device class '' {device_class} ''."
+ },
+ "no_issue": "Geen probleem",
+ "title": "Statistieken"
+ },
+ "templates": {
+ "all_listeners": "Deze template luistert naar alle gebeurtenissen met gewijzigde status.",
+ "description": "Sjablonen worden weergegeven met de Jinja2-sjabloonediter samen met enkele extensies van Home Assistant.",
+ "domain": "Domein",
+ "editor": "Sjabloonediter",
+ "entity": "Entiteit",
+ "jinja_documentation": "Jinja2-sjabloondocumentatie",
+ "listeners": "Deze template luistert naar de volgende gebeurtenissen met gewijzigde status:",
+ "no_listeners": "Deze template luistert niet naar gebeurtenissen met statuswijziging en wordt niet automatisch bijgewerkt.",
+ "reset": "Resetten naar demosjabloon",
+ "result_type": "Resultaattype",
+ "template_extensions": "Home Assistant sjabloon extensies",
+ "time": "Deze template wordt elke 60 seconden bijgewerkt na de laatste statuswijziging.",
+ "title": "Sjablonen",
+ "unknown_error_template": "Onbekende fout bij weergave sjabloon"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Monitor individuele apparaten",
+ "energy_distribution_title": "Energiedistributie",
+ "energy_gas_graph_title": "Gasverbruik",
+ "energy_solar_graph_title": "Zonne-energieproductie",
+ "energy_sources_table_title": "Bronnen",
+ "energy_usage_graph_title": "Energieverbruik"
+ },
+ "charts": {
+ "by_device": "Verbruik per apparaat",
+ "solar": "Zonne-energie",
+ "stat_house_energy_meter": "Totaal energieverbruik"
+ },
+ "setup": {
+ "back": "Terug",
+ "done": "Laat me mijn energie dashboard zien!",
+ "next": "Verder"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Je kan deze functie alleen gebruiken als je de controle over de Lovelace gebruikersinterface hebt overgenomen",
+ "saving_failed": "Opslaan van de Lovelace gebruikersinterface is mislukt.",
+ "yaml_unsupported": "Je kunt deze functie niet gebruiken wanneer je de Lovelace gebruikersinterface gebruikt in YAML modus."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Weet je zeker dat je actie \"{action}\" wilt uitvoeren?",
+ "no_entity_more_info": "Geen entiteit voorzien voor meer info dialoog",
+ "no_entity_toggle": "Geen entiteit opgegeven om te schakelen",
+ "no_navigation_path": "Geen navigatiepad opgegeven",
+ "no_service": "Geen service geselecteerd",
+ "no_url": "Geen URL om te openen opgegeven"
+ },
+ "confirm_delete": "Weet je zeker dat je deze kaart wilt verwijderen?",
+ "empty_state": {
+ "go_to_integrations_page": "Ga naar de integraties pagina.",
+ "no_devices": "Op deze pagina kun je je apparaten bedienen, maar het lijkt er op dat je nog geen apparaten hebt ingesteld. Ga naar de integraties pagina om te beginnen.",
+ "title": "Welkom thuis"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "Deze kaart geeft aan hoeveel van de energie die uw huis heeft verbruikt, is opgewekt met niet-fossiele brandstoffen zoals zon, wind en kernenergie. Hoe hoger, hoe beter!",
+ "non_fossil_energy_consumed": "Niet-fossiele energie verbruikt",
+ "non_fossil_energy_not_calculated": "Verbruikte niet-fossiele energie kon niet worden berekend"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Energieverbruik"
+ },
+ "energy_distribution": {
+ "battery": "Batterij",
+ "gas": "Gas",
+ "go_to_energy_dashboard": "Ga naar energie dashboard",
+ "grid": "Net",
+ "home": "Thuis",
+ "non_fossil": "Niet-fossiel",
+ "solar": "Zonne-energie",
+ "title_today": "Energiedistributie vandaag"
+ },
+ "energy_solar_graph": {
+ "forecast": "Verwachting {name}",
+ "production": "Productie {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Batterij totaal",
+ "cost": "Kostprijs",
+ "energy": "Energie",
+ "grid_total": "Net totaal",
+ "source": "Bron",
+ "total_costs": "Totale kosten"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Gecombineerd van net",
+ "consumed_battery": "Verbruik batterij",
+ "consumed_solar": "Verbruik zonne-energie",
+ "total_consumed": "Totaal verbruikt {num} kWh",
+ "total_returned": "Totaal teruggeleverd {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Als de naald in het paars staat, heeft u meer energie teruggegeven aan het net dan u ervan heeft verbruikt. Als de naald in het blauw staat, heeft u meer energie van het net verbruikt dan teruggegeven.",
+ "energy_dependency": "Deze kaart geeft uw netto-energieverbruik weer.",
+ "grid_neutrality_not_calculated": "Net neutraliteit kon niet berekend worden",
+ "net_consumed_grid": "Verbruikte energie",
+ "net_returned_grid": "Teruggeleverde energie",
+ "red_green_color_explain": "Als het groen is, betekent dit dat je meer energie hebt opgewekt dan je van het net hebt verbruikt. Als het in het rood staat, betekent dit dat je voor een deel van het energieverbruik van je huis afhankelijk was van het net."
+ },
+ "loading": "Laden...",
+ "no_data": "Er zijn geen gegevens om weer te geven. Het kan tot 2 uur duren voordat nieuwe gegevens binnenkomen nadat u uw energiedashboard heeft geconfigureerd.",
+ "no_data_period": "Er zijn geen gegevens voor deze periode.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "Deze kaart geeft aan hoeveel van de geproduceerde zonne-energie door uw huis is gebruikt in plaats van teruggeleverd aan het net.",
+ "card_indicates_solar_energy_used_charge_home_bat": "Als dit aantal doorgaans erg laag is, wat wijst op een overmatige productie van zonne-energie, kunt u overwegen om een thuisbatterij of elektrische auto op te laden vanaf uw zonnepanelen in tijden van hoge zonneproductie.",
+ "not_produced_solar_energy": "U heeft geen zonne-energie geproduceerd",
+ "self_consumed_solar_could_not_calc": "Zelfverbruikte zonne-energie kon niet worden berekend",
+ "self_consumed_solar_energy": "Zelf verbruikte zonne-energie"
+ }
+ },
+ "entities": {
+ "never_triggered": "Nooit uitgevoerd"
+ },
+ "iframe": {
+ "error_secure_context": "Kan iframes verwijzend naar websites over {target_protocol} niet laden als Home Assistant verbinding maakt over {context_protocol}."
+ },
+ "map": {
+ "reset_focus": "Reset focus"
+ },
+ "picture-elements": {
+ "call_service": "Roep service {name} aan",
+ "hold": "Vasthouden:",
+ "more_info": "Meer informatie weergeven: {name}",
+ "navigate_to": "Navigeer naar {location}",
+ "tap": "Tik:",
+ "toggle": "Omschakelen {name}",
+ "url": "Open venster naar {url_path}"
+ },
+ "safe-mode": {
+ "description": "Home Assistant heeft problemen ondervonden tijdens het laden van uw configuratie en werkt nu in de veilige modus. Bekijk het foutenlogboek om te zien wat er mis is gegaan.",
+ "header": "Veilige modus geactiveerd"
+ },
+ "shopping-list": {
+ "add_item": "Item toevoegen",
+ "checked_items": "Geselecteerde items",
+ "clear_items": "Geselecteerde items wissen",
+ "drag_and_drop": "Slepen en neerzetten",
+ "reorder_items": "Artikelen opnieuw ordenen"
+ },
+ "show_more_info": "Toon meer informatie",
+ "starting": {
+ "description": "Home Assistant is aan het opstarten, even geduld…"
+ }
+ },
+ "changed_toast": {
+ "message": "De Lovelace UI-configuratie voor dit dashboard is bijgewerkt. Vernieuwen om wijzigingen te zien?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Dag",
+ "month": "Maand",
+ "next": "Volgende",
+ "previous": "Vorige",
+ "today": "Vandaag",
+ "week": "Week",
+ "year": "Jaar"
+ },
+ "timestamp-display": {
+ "invalid": "Ongeldige tijdstempel",
+ "invalid_format": "Ongeldige weergave formaat"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Service aanroepen",
+ "default_action": "Standaardactie",
+ "more-info": "Meer informatie",
+ "navigate": "Navigeer",
+ "none": "Geen actie",
+ "toggle": "Schakelaar",
+ "url": "URL"
+ },
+ "navigation_path": "Navigatiepad",
+ "url_path": "URL-pad"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Beschikbare toestanden",
+ "description": "Met de alarmpaneelkaart kunt u uw alarmcentrale-integraties in- en uitschakelen.",
+ "name": "Alarmpaneel"
+ },
+ "area": {
+ "description": "De Gebiedskaart toont automatisch entiteiten van een bepaald gebied.",
+ "name": "Gebied",
+ "show_camera": "Toon camerafeed in plaats van gebiedsfoto"
+ },
+ "button": {
+ "default_action_help": "De standaard actie is afhankelijk van de mogelijkheden van de entiteit. Deze kan worden omgeschakeld of meer informatie kan worden getoond.",
+ "description": "Met de Button-kaart kun je knoppen toevoegen om taken uit te voeren.",
+ "name": "Knop"
+ },
+ "calendar": {
+ "calendar_entities": "Agenda entiteiten",
+ "description": "De kalenderkaart toont een kalender met dag-, week- en lijstweergaven",
+ "inital_view": "Eerste weergave",
+ "name": "Kalender",
+ "views": {
+ "dayGridDay": "Dag",
+ "dayGridMonth": "Maand",
+ "listWeek": "Lijst"
+ }
+ },
+ "conditional": {
+ "card": "Kaart",
+ "change_type": "Wijzig type",
+ "condition_explanation": "De kaart wordt weergegeven als aan ALLE onderstaande voorwaarden is voldaan.",
+ "conditions": "Voorwaarden",
+ "current_state": "huidige",
+ "description": "Op de Conditional-kaart wordt een andere kaart weergegeven op basis van entiteitstoestanden.",
+ "name": "Conditioneel",
+ "state_equal": "Staat is gelijk aan",
+ "state_not_equal": "Staat is niet gelijk aan"
+ },
+ "config": {
+ "optional": "Optioneel",
+ "required": "Verplicht"
+ },
+ "entities": {
+ "description": "De Entities-kaart is het meest voorkomende type kaart. Het groepeert items samen in lijsten.",
+ "edit_special_row": "Bekijk de details van deze rij door op de knop Bewerken te klikken",
+ "entity_row": {
+ "attribute": "Attribuut",
+ "button": "Knop",
+ "buttons": "Knoppen",
+ "call-service": "Aanroepen service",
+ "cast": "Cast",
+ "conditional": "Conditioneel",
+ "divider": "Verdeler",
+ "section": "Sectie",
+ "weblink": "Web link"
+ },
+ "entity_row_editor": "Entiteitsrij editor",
+ "name": "Entiteiten",
+ "secondary_info_values": {
+ "brightness": "Helderheid",
+ "entity-id": "Entiteit ID",
+ "last-changed": "Laatst gewijzigd",
+ "last-triggered": "Voor het laatst uitgevoerd",
+ "last-updated": "Laatst bijgewerkt",
+ "none": "Geen secundaire informatie",
+ "position": "Positie",
+ "tilt-position": "Kantelpositie"
+ },
+ "show_header_toggle": "Titel schakelaar weergeven?",
+ "special_row": "speciale rij",
+ "toggle": "Entiteiten in- en uitschakelen"
+ },
+ "entity-filter": {
+ "description": "Met de Entity Filter-kaart kunt u een lijst met entiteiten definiëren die u alleen wilt volgen in een bepaalde staat.",
+ "name": "Entiteit-filter"
+ },
+ "entity": {
+ "description": "De Entiteitskaart geeft u een snel overzicht van de status van uw entiteit.",
+ "name": "Entiteit"
+ },
+ "gauge": {
+ "description": "De meterkaart is een basiskaart waarmee u sensorgegevens visueel kunt zien.",
+ "name": "Meter",
+ "needle_gauge": "Weergeven als naaldmeter?",
+ "severity": {
+ "define": "Ernst definiëren?",
+ "green": "Groen",
+ "red": "Rood",
+ "yellow": "Geel"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Beeldverhouding",
+ "attribute": "Kenmerk",
+ "camera_image": "Camera-entiteit",
+ "camera_view": "Cameraweergave",
+ "days_to_show": "Zichtbare dagen",
+ "double_tap_action": "Actie bij dubbel-tik",
+ "entities": "Entiteiten",
+ "entity": "Entiteit",
+ "hold_action": "Actie vasthouden",
+ "hours_to_show": "Uren om weer te geven",
+ "icon": "Pictogram",
+ "icon_height": "Pictogram hoogte",
+ "image": "Afbeeldingspad",
+ "manual": "Handmatig",
+ "manual_description": "Wilt u een aangepaste kaart toevoegen of wilt u de YAML handmatig schrijven?",
+ "maximum": "Maximaal",
+ "minimum": "Minimum",
+ "name": "Naam",
+ "no_theme": "Geen thema",
+ "refresh_interval": "Vernieuwingsinterval",
+ "search": "Zoek",
+ "secondary_info_attribute": "Secundair Info attribuut",
+ "show_icon": "Pictogram Weergeven?",
+ "show_name": "Naam weergeven?",
+ "show_state": "Staat tonen?",
+ "state": "Toestand",
+ "state_color": "Kleur pictogrammen op basis van status?",
+ "tap_action": "Tik Actie",
+ "theme": "Thema",
+ "title": "Titel",
+ "unit": "Eenheid",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Kolommen",
+ "description": "De Glance-kaart is handig om meerdere sensoren in een compact overzicht te groeperen.",
+ "name": "Oogopslag"
+ },
+ "grid": {
+ "columns": "Kolommen",
+ "description": "Met de rasterkaart kun je meerdere kaarten in een raster tonen.",
+ "name": "Raster",
+ "square": "Geef kaarten weer als vierkanten"
+ },
+ "history-graph": {
+ "description": "Met de History Graph-kaart kunt u een grafiek weergeven voor elk van de vermelde entiteiten.",
+ "name": "Geschiedenis grafiek"
+ },
+ "horizontal-stack": {
+ "description": "Met de Horizontal Stack-kaart kun je meerdere kaarten op elkaar stapelen, zodat ze altijd naast elkaar in de ruimte van één kolom zitten.",
+ "name": "Horizontale stapel"
+ },
+ "humidifier": {
+ "description": "De luchtbevochtiger-kaart geeft controle over de entiteit van de luchtbevochtiger. Hiermee kun je de vochtigheid en de modus van de entiteit wijzigen.",
+ "name": "Bevochtiger"
+ },
+ "iframe": {
+ "description": "Met de Webpage-kaart kunt u uw favoriete webpagina rechtstreeks in de Home Assistant insluiten.",
+ "name": "Webpagina"
+ },
+ "light": {
+ "description": "Met de Light-kaart kunt u de helderheid van het licht wijzigen.",
+ "name": "Lamp"
+ },
+ "logbook": {
+ "description": "De Logboekkaart toont een lijst met gebeurtenissen voor entiteiten.",
+ "name": "Logboek"
+ },
+ "map": {
+ "dark_mode": "Donkere modus?",
+ "default_zoom": "Standaard zoom",
+ "description": "Met de Map-kaart kun je entiteiten op een kaart weergeven.",
+ "geo_location_sources": "Geolocatiebronnen",
+ "hours_to_show": "Uren om weer te geven",
+ "name": "Kaart",
+ "source": "Bron"
+ },
+ "markdown": {
+ "content": "Inhoud",
+ "description": "De Markdown-kaart wordt gebruikt om Markdown weer te geven.",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "description": "De Media Control-kaart wordt gebruikt om entiteiten van mediaspelers weer te geven op een interface met gebruiksvriendelijke bedieningselementen.",
+ "name": "Mediaspeler"
+ },
+ "picture-elements": {
+ "description": "De Picture Elements-kaart is een van de meest veelzijdige soorten kaarten. Met de kaarten kunt u pictogrammen of tekst en zelfs services plaatsen! Op een afbeelding gebaseerd op coördinaten.",
+ "name": "Afbeeldingselementen"
+ },
+ "picture-entity": {
+ "description": "De Picture Entity-kaart geeft een entiteit weer in de vorm van een afbeelding. In plaats van afbeeldingen van URL, kan het ook de afbeelding van camera-entiteiten weergeven.",
+ "name": "Afbeelding-entiteit"
+ },
+ "picture-glance": {
+ "description": "De Afbeelding oogopslag-kaart toont een afbeelding en de bijbehorende entiteitstoestanden als een pictogram. De entiteiten aan de rechterkant staan schakelacties toe, andere tonen het dialoogvenster met meer informatie.",
+ "name": "Afbeelding oogopslag",
+ "state_entity": "Status entiteit"
+ },
+ "picture": {
+ "description": "Met de Picture-kaart kunt u een afbeelding instellen voor navigatie naar verschillende paden in uw interface of om een service te activeren.",
+ "name": "Afbeelding"
+ },
+ "plant-status": {
+ "description": "De Plant Status-kaart is voor alle mooie botanici die er zijn.",
+ "name": "toestand plant"
+ },
+ "sensor": {
+ "description": "De Sensor-kaart geeft u een snel overzicht van de status van uw sensoren met een optionele grafiek om veranderingen in de tijd te visualiseren.",
+ "graph_type": "Grafiektype",
+ "name": "Sensor",
+ "show_more_detail": "Laat meer details zien"
+ },
+ "shopping-list": {
+ "description": "Met de Shopping List-kaart kunt u items aan uw boodschappenlijst toevoegen, bewerken, afvinken en wissen.",
+ "integration_not_loaded": "Voor deze kaart moet de integratie 'shopping_list' zijn ingesteld.",
+ "name": "Boodschappenlijst"
+ },
+ "statistics-graph": {
+ "description": "Met de Statistieken grafiek kaart kunt u een grafiek van de statistieken voor elk van de aangegeven entiteiten weergeven.",
+ "name": "Statistieken grafiek",
+ "period": "Periode",
+ "periods": {
+ "5minute": "5 minuten",
+ "day": "Dag",
+ "hour": "Uur",
+ "month": "Maand"
+ }
+ },
+ "thermostat": {
+ "description": "De Thermostaat-kaart geeft controle over uw klimaateenheid. Hiermee kunt u de temperatuur en modus van de entiteit wijzigen.",
+ "name": "Thermostaat"
+ },
+ "vertical-stack": {
+ "description": "Met de Vertical Stack-kaart kunt u meerdere kaarten groeperen, zodat ze altijd in dezelfde kolom zitten.",
+ "name": "Verticale stapel"
+ },
+ "weather-forecast": {
+ "description": "De Weather Forecast-kaart geeft het weer weer. Erg handig om op te nemen op interfaces die mensen aan de muur hangen.",
+ "name": "Weersverwachting",
+ "show_both": "Toon het huidige weer en weersvoorspelling",
+ "show_forecast": "Toon Weersvoorspelling",
+ "show_only_current": "Toon alleen het huidige weer",
+ "show_only_forecast": "Toon alleen weersvoorspelling"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Per kaart",
+ "by_entity": "Per entiteit",
+ "custom_card": "Aangepaste",
+ "domain": "Domein",
+ "entity": "Entiteit",
+ "no_description": "Er is geen beschrijving beschikbaar"
+ },
+ "common": {
+ "add": "Toevoegen",
+ "clear": "Wis",
+ "edit": "Bewerk",
+ "none": "Geen"
+ },
+ "edit_badges": {
+ "panel_mode": "Deze badges worden niet weergegeven omdat deze weergave zich in de \"Paneelmodus\" bevindt.",
+ "view_no_badges": "Badges worden niet ondersteund door het huidige weergavetype."
+ },
+ "edit_card": {
+ "add": "Kaart toevoegen",
+ "clear": "Leegmaken",
+ "confirm_cancel": "Weet u zeker dat u wilt afbreken?",
+ "delete": "Verwijder kaart",
+ "duplicate": "Dupliceer kaart",
+ "edit": "Bewerken",
+ "header": "Kaart configuratie",
+ "move": "Verplaats naar weergave",
+ "move_after": "Verplaats kaart na",
+ "move_before": "Verplaats kaart voor",
+ "move_down": "Verplaats card omlaag",
+ "move_up": "Verplaats card omhoog",
+ "options": "Meer opties",
+ "pick_card": "Welke kaart wil je toevoegen?",
+ "pick_card_view_title": "Welke kaart wil je toevoegen aan je {name} weergave?",
+ "search_cards": "Zoek kaarten",
+ "show_code_editor": "Code-editor weergeven",
+ "show_visual_editor": "Visual Editor weergeven",
+ "toggle_editor": "Toggle Editor",
+ "typed_header": "{type} Kaartconfiguratie",
+ "unsaved_changes": "U heeft niet-opgelsagen wijzigingen"
+ },
+ "edit_lovelace": {
+ "edit_title": "Wijzig titel",
+ "explanation": "Deze titel wordt getoond in al je Lovelace weergaven.",
+ "header": "Titel van je Lovelace UI",
+ "title": "Titel"
+ },
+ "edit_view": {
+ "add": "Weergave toevoegen",
+ "delete": "Weergave verwijderen",
+ "edit": "Weergave bewerken",
+ "header": "Bekijk de configuratie",
+ "header_name": "{name} Bekijk de configuratie",
+ "move_left": "Verplaats weergave naar links",
+ "move_right": "Verplaats weergave naar rechts",
+ "tab_badges": "Badges",
+ "tab_settings": "Instellingen",
+ "tab_visibility": "Zichtbaarheid",
+ "type": "Weergavetype",
+ "types": {
+ "masonry": "Tegelvorm (standaard)",
+ "panel": "Paneel (1 kaart)",
+ "sidebar": "Zijbalk"
+ },
+ "visibility": {
+ "select_users": "Selecteer welke gebruikers deze weergave in de navigatie moeten zien"
+ }
+ },
+ "header": "Bewerk UI",
+ "header-footer": {
+ "choose_header_footer": "Kies een {type}",
+ "footer": "Voettekst",
+ "header": "Koptekst",
+ "types": {
+ "buttons": {
+ "name": "Knoppen"
+ },
+ "graph": {
+ "name": "Grafiek"
+ },
+ "picture": {
+ "name": "Afbeelding"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Beheer dashboards",
+ "manage_resources": "Beheer bronnen",
+ "open": "Open het Lovelace-menu",
+ "raw_editor": "Ruwe configuratie-editor"
+ },
+ "migrate": {
+ "header": "Configuratie incompatibel",
+ "migrate": "Configuratie migreren",
+ "para_migrate": "Home Assistant kan automatisch ID's aan al je kaarten en weergaven toevoegen door op de knop 'Configuratie migreren' te drukken.",
+ "para_no_id": "Dit element heeft geen ID. Voeg een ID toe aan dit element in 'ui-lovelace.yaml'."
+ },
+ "move_card": {
+ "header": "Kies een weergave om de kaart naartoe te verplaatsen"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "We zullen je Lovelace gebruikersinterface automatisch genereren met je gebieden en apparaten als je de huidige Lovelace gebruikersinterface verwijdert.",
+ "confirm_remove_config_title": "Weet je zeker dat je je Lovelace UI-configuratie wilt verwijderen?",
+ "confirm_unsaved_changes": "Er zijn nog niet-opgeslagen wijzigingen, weet je zeker dat je wilt afsluiten?",
+ "confirm_unsaved_comments": "Uw configuratie bevat opmerkingen, deze worden niet opgeslagen. Wil je doorgaan?",
+ "error_invalid_config": "Uw configuratie is niet geldig: {error}",
+ "error_parse_yaml": "Kan YAML niet parseren: {error}",
+ "error_remove": "Kan configuratie niet verwijderen: {error}",
+ "error_save_yaml": "Kan YAML niet opslaan: {error}",
+ "header": "Configuratie bewerken",
+ "lovelace_changed": "De Lovelace configuratie is bijgewerkt, wil je de bijgewerkte configuratie in de editor laden en je huidige wijzigingen verliezen?",
+ "reload": "Herlaad",
+ "resources_moved": "Bronnen moeten niet langer worden toegevoegd aan de Lovelace-configuratie, maar kunnen worden toegevoegd in het Lovelace-configuratiepaneel.",
+ "save": "Opslaan",
+ "saved": "Opgeslagen",
+ "unsaved_changes": "Niet-opgeslagen wijzigingen"
+ },
+ "save_config": {
+ "close": "Sluiten",
+ "empty_config": "Begin met een leeg dashboard",
+ "header": "Neem de controle over je Lovelace UI",
+ "para": "Home Assistant onderhoudt je gebruikersinterface en update die met nieuwe entiteiten of Lovelace-onderdelen wanneer deze beschikbaar zijn. Als je het beheer overneemt, zullen we niet langer automatisch wijzigingen aanbrengen. Je kunt later altijd een nieuw dashboard in de configuratie toevoegen om mee te spelen.",
+ "para_sure": "Weet je zeker dat je de controle wilt over je gebruikersinterface?",
+ "save": "Neem over",
+ "yaml_config": "Om je te helpen te beginnen, hier is de huidige configuratie van dit dashboard:",
+ "yaml_control": "Om de controle over te nemen in de YAML-modus, maak je een YAML-bestand met de naam die je hebt opgegeven in je configuratie voor dit dashboard, of de standaard 'ui-lovelace.yaml'.",
+ "yaml_mode": "Je gebruikt de YAML-modus, wat betekent dat je jouw Lovelace-configuratie niet vanuit de gebruikersinterface kunt wijzigen. Als je Lovelace vanuit de gebruikersinterface wilt wijzigen, verwijder dan 'mode: yaml' uit de Lovelace-configuratie in 'configuration.yaml'."
+ },
+ "select_view": {
+ "dashboard_label": "Dashboard",
+ "header": "Kies een weergave",
+ "views_label": "Weergave"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Voettekst Editor",
+ "header": "Koptekst Editor",
+ "row": "Entiteitsrij Editor"
+ }
+ },
+ "suggest_card": {
+ "add": "Voeg toe aan de Lovelace gebruikersinterface",
+ "create_own": "Kies een andere kaart",
+ "header": "We hebben een suggestie voor je gemaakt"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Deze weergave bevat meer dan één kaart, maar een paneelweergave kan slechts 1 kaart tonen."
+ }
+ }
+ },
+ "menu": {
+ "close": "Sluiten",
+ "configure_ui": "Configureer UI",
+ "exit_edit_mode": "UI-bewerkingsmodus afsluiten",
+ "help": "Help",
+ "reload_resources": "Herlaad bronnen",
+ "start_conversation": "Gesprek starten"
+ },
+ "reload_lovelace": "Lovelace herladen",
+ "reload_resources": {
+ "refresh_body": "U moet de pagina vernieuwen om het herladen te voltooien. Wilt u nu vernieuwen?",
+ "refresh_header": "Wil je de gegevens vernieuwen?"
+ },
+ "unused_entities": {
+ "available_entities": "Dit zijn de entiteiten die je beschikbaar hebt, maar die nog niet in je Lovelace UI staan.",
+ "domain": "Domein",
+ "entity": "Entiteit",
+ "entity_id": "Entiteits-ID",
+ "last_changed": "Laatst gewijzigd",
+ "no_data": "Geen ongebruikte entiteiten gevonden",
+ "search": "Zoek entiteiten",
+ "select_to_add": "Selecteer de entiteiten die je aan een kaart wilt toevoegen en klik vervolgens op de knop Kaart toevoegen.",
+ "title": "Ongebruikte entiteiten"
+ },
+ "views": {
+ "confirm_delete": "Weergave verwijderen?",
+ "confirm_delete_existing_cards": "Als u deze weergave verwijdert, worden ook de kaarten verwijderd",
+ "confirm_delete_existing_cards_text": "Weet u zeker dat u uw weergave ''{name}'' wilt verwijderen? De weergave bevat {number} kaarten die worden verwijderd. Deze actie kan niet ongedaan gemaakt worden.",
+ "confirm_delete_text": "Weet u zeker dat u uw ''{name}''-weergave wilt verwijderen?"
+ },
+ "warning": {
+ "attribute_not_found": "Kenmerk {attribute} niet beschikbaar in: {entity}",
+ "entity_non_numeric": "Entiteit is niet-numeriek: {entity}",
+ "entity_not_found": "Entiteit niet beschikbaar: {entity}",
+ "entity_unavailable": "Entiteit is momenteel niet beschikbaar: {entity}",
+ "starting": "Home Assistant is aan het opstarten, nog niet alles is beschikbaar"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Verwijderen",
+ "delete_prompt": "Bericht verwijderen?",
+ "empty": "Je hebt geen berichten",
+ "playback_title": "Bericht afspelen"
+ },
+ "map": {
+ "edit_zones": "Wijzig Zones"
+ },
+ "my": {
+ "component_not_loaded": "Deze omleiding wordt niet ondersteund door uw Home Assistant-instantie. U heeft de integratie {integration} nodig om deze omleiding te gebruiken.",
+ "documentation": "documentatie",
+ "error": "Er is een onbekende fout opgetreden",
+ "faq_link": "My Home Assistant FAQ",
+ "no_supervisor": "Deze omleiding wordt niet ondersteund door uw Home Assistant-installatie. Het vereist ofwel het Home Assistant besturingssysteem of de Home Assistant gecontroleerde installatiemethode. Voor meer informatie, zie de {docs_link}.",
+ "not_supported": "Deze redirect wordt niet ondersteund door uw Home Assistant instantie. Controleer de {link} voor de ondersteunde redirects en de versie waarin ze zijn geïntroduceerd."
+ },
+ "page-authorize": {
+ "abort_intro": "Inloggen afgebroken",
+ "authorizing_client": "Je staat op het punt {clientId} toegang te geven tot je Home Assistant-instantie.",
+ "form": {
+ "error": "Fout: {error}",
+ "next": "Login",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Sessie verlopen, meld je opnieuw aan."
+ },
+ "error": {
+ "invalid_auth": "Ongeldige gebruikersnaam of wachtwoord",
+ "invalid_code": "Onjuiste authenticatiecode"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Wachtwoord",
+ "username": "Gebruikersnaam"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Twee-factor authenticatie code"
+ },
+ "description": "Open de **{mfa_module_name}** op je apparaat om je twee-factor-authenticatiecode te bekijken en verifieer je identiteit:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Sessie verlopen, meld je opnieuw aan."
+ },
+ "error": {
+ "invalid_auth": "Ongeldige gebruikersnaam of wachtwoord",
+ "invalid_code": "Ongeldige authenticatiecode"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Wachtwoord",
+ "username": "Gebruikersnaam"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Twee-factor-authenticatiecode"
+ },
+ "description": "Open de **{mfa_module_name}** op je apparaat om je twee-factor-authenticatiecode te bekijken en verifieer je identiteit:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Sessie verlopen, meld je opnieuw aan.",
+ "no_api_password_set": "Er is geen API-wachtwoord ingesteld."
+ },
+ "error": {
+ "invalid_auth": "Ongeldig API-wachtwoord",
+ "invalid_code": "Ongeldige authenticatiecode"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "API-wachtwoord"
+ },
+ "description": "Voer het API-wachtwoord in van je http-configuratie:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Twee-factor-authenticatiecode"
+ },
+ "description": "Open de **{mfa_module_name}** op je apparaat om je twee-factor-authenticatiecode te bekijken en verifieer je identiteit:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Uw computer is niet toegestaan."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Gebruiker"
+ },
+ "description": "Selecteer een gebruiker waarmee je je wilt aanmelden:"
+ }
+ }
+ }
+ },
+ "start_over": "Begin opnieuw",
+ "unknown_error": "Er ging iets mis",
+ "working": "Een ogenblik geduld"
+ },
+ "initializing": "Initialiseren",
+ "logging_in_to_with": "Aanmelden bij **{locationName}** met **{authProviderName}**.",
+ "logging_in_with": "Aan het inloggen met **{authProviderName}**.",
+ "pick_auth_provider": "Of log in met",
+ "store_token": "Ik wil ingelogd blijven"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "door {name}",
+ "introduction": "Welkom thuis! Je hebt de Home Assistant demo bereikt waar we de beste UI's van onze community laten zien.",
+ "learn_more": "Meer informatie over Home Assistant",
+ "next_demo": "Volgende demo"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Activiteit",
+ "air": "Lucht",
+ "commute_home": "Reis naar huis",
+ "entertainment": "Entertainment",
+ "hdmi_input": "HDMI-ingang",
+ "hdmi_switcher": "HDMI-switcher",
+ "information": "Informatie",
+ "lights": "Lichten",
+ "morning_commute": "Ochtend reis",
+ "total_tv_time": "Totale TV-tijd",
+ "turn_tv_off": "Schakel televisie uit",
+ "volume": "Volume"
+ },
+ "names": {
+ "family_room": "Woonkamer",
+ "hallway": "Gang",
+ "kitchen": "Keuken",
+ "left": "Links",
+ "master_bedroom": "Slaapkamer",
+ "mirror": "Spiegel",
+ "patio": "Achtertuin",
+ "right": "Rechts",
+ "temperature_study": "Temperatuur studeerkamer",
+ "upstairs": "Boven"
+ },
+ "unit": {
+ "minutes_abbr": "min",
+ "watching": "kijkend"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Volgende"
+ },
+ "core-config": {
+ "button_detect": "Detecteren",
+ "finish": "Volgende",
+ "intro": "Hallo {name}, welkom bij Home Assistant. Welke naam wil je je huis geven?",
+ "intro_location": "We willen graag weten waar je woont. Deze informatie zal helpen bij het weergeven van informatie en het instellen van op de zon gebaseerde automatiseringen. Deze gegevens worden nooit gedeeld buiten je netwerk.",
+ "intro_location_detect": "Wij kunnen u helpen deze informatie in te vullen door eenmalig een verbinding te maken met een externe service.",
+ "location_name": "Naam van de Home Assistant installatie",
+ "location_name_default": "Huis"
+ },
+ "finish": "Voltooien",
+ "integration": {
+ "finish": "Voltooien",
+ "intro": "Apparaten en services worden in Home Assistant weergegeven als integraties. U kunt ze nu instellen of later via het configuratiescherm.",
+ "more_integrations": "Meer"
+ },
+ "intro": "Ben je klaar om je huis wakker te maken, je privacy terug te winnen en deel te nemen aan een wereldwijde gemeenschap van knutselaars?",
+ "next": "Volgende",
+ "restore": {
+ "addons": "Add-ons",
+ "confirm_password": "Bevestig backup-wachtwoord",
+ "description": "Je kunt ook herstellen vanaf een eerdere back-up.",
+ "folders": "Mappen",
+ "full_backup": "Volledige back-up",
+ "hide_log": "Verberg volledig logboek",
+ "in_progress": "Herstel in uitvoering",
+ "partial_backup": "Gedeeltelijke back-up",
+ "password": "Back-up wachtwoord",
+ "password_protection": "Wachtwoord bescherming",
+ "select_type": "Selecteer wat u wilt herstellen",
+ "show_log": "Volledig logboek weergeven",
+ "type": "Back-up type"
+ },
+ "user": {
+ "create_account": "Account aanmaken",
+ "data": {
+ "name": "Naam",
+ "password": "Wachtwoord",
+ "password_confirm": "Bevestig wachtwoord",
+ "username": "Gebruikersnaam"
+ },
+ "error": {
+ "password_not_match": "Wachtwoorden komen niet overeen",
+ "required_fields": "Vul alle verplichte velden in"
+ },
+ "intro": "Laten we beginnen door een gebruikersaccount aan te maken.",
+ "required_field": "Verplicht"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Ontgrendelt geavanceerde functies.",
+ "link_promo": "Meer informatie",
+ "title": "Geavanceerde modus"
+ },
+ "change_password": {
+ "confirm_new_password": "Bevestig nieuw wachtwoord",
+ "current_password": "Huidige wachtwoord",
+ "error_new_is_old": "Het nieuwe wachtwoord moet anders zijn dan het huidige wachtwoord",
+ "error_new_mismatch": "Ingevoerde wachtwoordwaarden komen niet overeen",
+ "error_required": "Verplicht",
+ "header": "Wachtwoord wijzigen",
+ "new_password": "Nieuw wachtwoord",
+ "submit": "Verzenden",
+ "success": "Wachtwoord is succesvol veranderd"
+ },
+ "current_user": "Je bent momenteel ingelogd als {fullName}.",
+ "customize_sidebar": {
+ "button": "Bewerken",
+ "description": "U kunt ook de koptekst van de zijbalk ingedrukt houden om de bewerkingsmodus te activeren.",
+ "header": "Wijzig de volgorde en verberg items van de zijbalk"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Overzicht (standaard)",
+ "description": "Kies een standaard dashboard voor dit apparaat.",
+ "dropdown_label": "Dashboard",
+ "header": "Dashboard"
+ },
+ "enable_shortcuts": {
+ "description": "Schakel sneltoetsen in of uit voor het uitvoeren van verschillende acties in de UI.",
+ "header": "Toetsenbord sneltoetsen"
+ },
+ "force_narrow": {
+ "description": "De zijbalk standaard verbergen, vergelijkbaar met de mobiele ervaring.",
+ "header": "Zijbalk altijd verbergen"
+ },
+ "is_owner": "Je bent eigenaar.",
+ "language": {
+ "dropdown_label": "Taal",
+ "header": "Taal",
+ "link_promo": "Help met vertalen"
+ },
+ "logout": "Uitloggen",
+ "logout_text": "Weet je zeker dat je wilt uitloggen?",
+ "logout_title": "Afmelden?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Weet je zeker dat je de toegangstoken voor {name} wilt verwijderen?",
+ "create": "Token aanmaken",
+ "create_failed": "De toegangstoken kon niet worden aangemaakt.",
+ "created": "Gemaakt op {date}",
+ "delete_failed": "Verwijderen van de toegangstoken is mislukt.",
+ "description": "Maak toegangstokens met een lange levensduur zodat je scripts kunnen communiceren met je Home Assistant-instantie. Elk token is tien jaar geldig vanaf de aanmaakdatum. De volgende langlevende toegangstokens zijn momenteel actief.",
+ "empty_state": "Je hebt nog geen langdurige toegangstokens.",
+ "header": "Toegangtokens met lange levensduur",
+ "learn_auth_requests": "Kom te weten hoe je geverifieerde verzoeken kunt maken",
+ "name": "Naam",
+ "prompt_copy_token": "Kopieer je toegangstoken. Het wordt niet meer getoond.",
+ "prompt_name": "Geef het token een naam"
+ },
+ "mfa": {
+ "confirm_disable": "Weet je zeker dat je {name} wilt uitschakelen?",
+ "disable": "Uitschakelen",
+ "enable": "Inschakelen",
+ "header": "Twee-factor-authenticatie modules"
+ },
+ "mfa_setup": {
+ "close": "Sluiten",
+ "step_done": "Instellen voltooid voor {step}",
+ "submit": "Verzenden",
+ "title_aborted": "Afgebroken",
+ "title_success": "Gelukt!"
+ },
+ "number_format": {
+ "description": "Kies hoe getallen worden opgemaakt.",
+ "dropdown_label": "Getalnotatie",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Automatisch (taalinstelling gebruiken)",
+ "none": "Geen",
+ "space_comma": "1 234 567,89",
+ "system": "Systeemlokalen gebruiken"
+ },
+ "header": "Getalnotatie"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Naam van het apparaat",
+ "title": "Hoe moet dit apparaat genoemd worden?"
+ },
+ "description": "Verstuur meldingen naar dit apparaat.",
+ "error_load_platform": "Configureer notify.html5.",
+ "error_use_https": "Vereist SSL voor de frontend",
+ "header": "Push-meldingen",
+ "link_promo": "Meer informatie",
+ "push_notifications": "Push-meldingen"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Weet je zeker dat je de verversingstoken voor {name} wilt verwijderen?",
+ "created_at": "Gemaakt op {date}",
+ "current_token_tooltip": "Kan huidige verversingstoken niet verwijderen",
+ "delete_failed": "Verwijderen van de toegangstoken is mislukt.",
+ "description": "Elk toegangstoken vertegenwoordigt een inlogsessie. Toegangstokens worden automatisch verwijderd wanneer u op Uitloggen klikt. De volgende toegangstokens zijn momenteel actief voor uw account.",
+ "header": "Tokens vernieuwen",
+ "last_used": "Laatst gebruikt op {date} vanaf {location}",
+ "not_used": "Is nog nooit gebruikt",
+ "token_title": "Token voor {clientId}"
+ },
+ "suspend": {
+ "description": "Moeten we de verbinding met de server verbreken na 5 minuten verborgen te zijn geweest?",
+ "header": "Verbinding automatisch verbreken"
+ },
+ "themes": {
+ "accent_color": "Accentkleur",
+ "dark_mode": {
+ "auto": "Automatisch",
+ "dark": "Donker",
+ "light": "Licht"
+ },
+ "dropdown_label": "Thema",
+ "error_no_theme": "Geen thema's beschikbaar.",
+ "header": "Thema",
+ "link_promo": "Meer informatie over thema's",
+ "primary_color": "Primaire kleur",
+ "reset": "Herstel"
+ },
+ "time_format": {
+ "description": "Kies hoe tijden worden opgemaakt.",
+ "dropdown_label": "Tijdformaat",
+ "formats": {
+ "12": "12 uur (AM/PM)",
+ "24": "24 uur",
+ "language": "Automatisch (taalinstelling gebruiken)",
+ "system": "Gebruik systeemlandinstelling"
+ },
+ "header": "Tijdformaat"
+ },
+ "vibrate": {
+ "description": "Schakel trillingen op dit apparaat in of uit wanneer u apparaten bestuurt.",
+ "header": "Trillen"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Gesprek starten"
+ }
+ },
+ "sidebar": {
+ "done": "Klaar",
+ "external_app_configuration": "App configuratie",
+ "hide_panel": "Paneel verbergen",
+ "show_panel": "Toon paneel",
+ "sidebar_toggle": "Zijbalk in- en uitschakelen"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/nn.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/nn.json
new file mode 100644
index 00000000..7aa14c97
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/nn.json
@@ -0,0 +1,2303 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Konfigurer oppføring",
+ "integration": "Integrasjon",
+ "user": "Brukar"
+ }
+ },
+ "groups": {
+ "system-admin": "Administratorer",
+ "system-read-only": "Lesebegrensa brukarar",
+ "system-users": "Brukarar"
+ },
+ "panel": {
+ "calendar": "Kalendrar",
+ "config": "Konfigurasjon",
+ "developer_tools": "Utviklarverktøy",
+ "energy": "Energi",
+ "history": "Historie",
+ "logbook": "Loggbok",
+ "mailbox": "Postkasse",
+ "map": "Kart",
+ "profile": "Profil",
+ "shopping_list": "Handleliste",
+ "states": "Oversikt"
+ },
+ "state": {
+ "default": {
+ "off": "Av",
+ "on": "På",
+ "unavailable": "Utilgjengeleg",
+ "unknown": "Ukjent"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Auto",
+ "off": "Av",
+ "on": "På"
+ },
+ "hvac_action": {
+ "cooling": "Nedkjøling",
+ "drying": "Tørkar",
+ "fan": "Vifte",
+ "heating": "Oppvarming",
+ "idle": "Tomgang",
+ "off": "Av"
+ },
+ "preset_mode": {
+ "activity": "Aktivitet",
+ "away": "Borte",
+ "boost": "Auke",
+ "comfort": "Komfort",
+ "eco": "Øko",
+ "home": "Heime",
+ "none": "Inga",
+ "sleep": "Søvn"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Påslått",
+ "armed_away": "Påslått",
+ "armed_custom_bypass": "Påslått",
+ "armed_home": "Påslått",
+ "armed_night": "Påslått",
+ "armed_vacation": "Armert",
+ "arming": "Slår på",
+ "disarmed": "Deaktiver",
+ "disarming": "Slå av",
+ "pending": "Ventar",
+ "triggered": "Utløys"
+ },
+ "default": {
+ "entity_not_found": "Fann ikkje einheten",
+ "error": "Feil",
+ "unavailable": "Utilgjengeleg",
+ "unknown": "Ukjent"
+ },
+ "device_tracker": {
+ "home": "Heime",
+ "not_home": "Borte "
+ },
+ "person": {
+ "home": "Heime",
+ "not_home": "Borte "
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "panel": {
+ "configuration": "Konfigurasjon ",
+ "documentation": "Dokumentasjon ",
+ "info": "Info",
+ "log": "Logg"
+ }
+ },
+ "backup": {
+ "confirm_password": "Stadfest sikkerheitskopipassordet",
+ "create_backup": "Lag ein sikkerheitskopi",
+ "created": "Laga",
+ "delete_backup_confirm": "slett ",
+ "delete_backup_text": "Vil du slette {number} {number, plural,\n one {backup}\n other {backups}\n}?",
+ "delete_backup_title": "Slett sikkerheitskopi",
+ "delete_selected": "Slett valte sikkerheitskopiar",
+ "failed_to_delete": "Sletting mislukka",
+ "full_backup": "Full sikkerheitskopi",
+ "no_backups": "Du har ikkje noko sikkerheitskopi endå.",
+ "partial_backup": "Delvis sikkerheitskopi",
+ "passwords_not_matching": "Passorda stemmer ikkje overeins",
+ "select_type": "Vel kva du skal gjenopprette",
+ "selected": "{number} valt",
+ "upload_backup": "Last opp sikkerheitskopi"
+ },
+ "common": {
+ "cancel": "Avbryt",
+ "close": "Lukk",
+ "menu": "Meny",
+ "newest_version": "Nyaste versjon",
+ "release_notes": "Utgjevingsnotat",
+ "update": "Oppdater ",
+ "version": "Versjon"
+ },
+ "confirm": {
+ "update": {
+ "text": "Er du sikker på at du vil oppdatere {name} til versjon {version}",
+ "title": "Oppdater {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Ny versjon tilgjengeleg",
+ "addon_running": "Tillegg køyrer",
+ "addon_stopped": "Tillegg stoppa",
+ "addons": "Tillegg",
+ "no_addons": "Du har ikkje installert nokon tillegg endå. Gå til tilleggsbutikken for å kome i gang!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Avbryt",
+ "description": "Akkuratt no brukar du '' {current_path} '' som datadisk. Å flytte datadisk vil starte eininge du om på nytt, og det er estimert å ta {time} minutt. Installasjonen av Home Assistant vil ikkje vere tilgjengeleg i denne perioden. Ikkje koble frå straumen under flyttinga!",
+ "loading_devices": "Lastar einingar",
+ "move": "Flytt",
+ "moving": "Flyttar datadisk",
+ "moving_desc": "Startar om og flyttar datadisken. Ver tolmodig.",
+ "no_devices": "Inga passande tilknytta eining funne.",
+ "select_device": "Vel ein ny datadisk",
+ "title": "Flytt datadisk"
+ },
+ "hardware": {
+ "attributes": "Attributtar",
+ "device_path": "Einingssti",
+ "id": "ID",
+ "search": "Søk etter maskinvare",
+ "subsystem": "Delsystem",
+ "title": "Maskinvare"
+ },
+ "repositories": {
+ "remove": "Fjern",
+ "used": "Kodelageret er i bruk av eit installert tillegg og kan ikkje fjernast."
+ },
+ "restart_addon": {
+ "confirm_text": "Start tillegget på nytt"
+ },
+ "update": {
+ "backup": "Sikkerheitskopi",
+ "create_backup": "Lag ein sikkerheitskopi av {name} før du oppdaterar",
+ "creating_backup": "Lagar ein sikkerheitskopi av {name}"
+ }
+ },
+ "my": {
+ "error_addon_no_ingress": "Det etterspurte tillegget støttar ikkje ingress",
+ "error_addon_not_installed": "Det etterspurte tillegget er ikkje installert. Ver vennleg og installer det først.",
+ "error_addon_not_started": "Det etterspurte tillegget køyrer ikkje. Ver vennleg og start det først. "
+ },
+ "panel": {
+ "backups": "Sikkerheitskopiar",
+ "dashboard": "Skrivebord",
+ "store": "Tillegsbutikk",
+ "system": "System"
+ },
+ "system": {
+ "host": {
+ "failed_to_move": "Flytting av datadisk mislukka",
+ "move_datadisk": "Flytt datadisk"
+ },
+ "supervisor": {
+ "search": "Søk",
+ "unsupported_reason": {
+ "content_trust": "Innhaldstillitvalidering er deaktivert",
+ "os_agent": "OS-agent",
+ "source_mods": "Kjeldeendringar"
+ }
+ }
+ },
+ "update_available": {
+ "no_update": "Inga oppdatering tilgjengeleg for {name}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Vil du lagre denne pålogginga?",
+ "confirm": "Lagre innlogging",
+ "decline": "Nei takk"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Bortemodus",
+ "arm_custom_bypass": "Tilpassa bypass",
+ "arm_home": "Heimemodus",
+ "arm_night": "Aktiver natt",
+ "arm_vacation": "Armert feriemodus",
+ "clear_code": "Slett alt",
+ "code": "Kode",
+ "disarm": "Skru av"
+ },
+ "automation": {
+ "last_triggered": "Sist utløyst",
+ "trigger": "Utfør"
+ },
+ "camera": {
+ "not_available": "Bilete ikkje tilgjengeleg"
+ },
+ "climate": {
+ "aux_heat": "Aux-varme",
+ "away_mode": "Bortemodus",
+ "currently": "Akkurat no",
+ "fan_mode": "Viftemodus",
+ "on_off": "På / av",
+ "operation": "Operasjon",
+ "preset_mode": "Mal",
+ "swing_mode": "Svingmodus",
+ "target_humidity": "Fuktigheitsmål",
+ "target_temperature": "Temperaturmål"
+ },
+ "cover": {
+ "position": "Posisjon",
+ "tilt_position": "Tiltposisjon"
+ },
+ "fan": {
+ "direction": "Retning",
+ "forward": "Framover",
+ "oscillate": "Sving",
+ "preset_mode": "Malmodus",
+ "reverse": "Bakover",
+ "speed": "Fart"
+ },
+ "light": {
+ "brightness": "Lysstyrke",
+ "cold_white_value": "Kaldkvit-lysstyrke",
+ "color_brightness": "Fargelysstyrke",
+ "color_temperature": "Fargetemperatur",
+ "effect": "Effekt",
+ "warm_white_value": "Varmkvit-lysstyrke",
+ "white_value": "Kvitverdi"
+ },
+ "lock": {
+ "code": "Kode",
+ "lock": "Lås",
+ "unlock": "Lås opp"
+ },
+ "media_player": {
+ "media_pause": "Pause",
+ "media_stop": "Stopp",
+ "media_volume_down": "Skru volum ned",
+ "media_volume_mute": "Skru av volum",
+ "media_volume_unmute": "Skru på volum",
+ "media_volume_up": "Skru volum opp",
+ "sound_mode": "Lydmodus",
+ "source": "Kjelde",
+ "text_to_speak": "Tekst til tale"
+ },
+ "persistent_notification": {
+ "dismiss": "Avvis"
+ },
+ "scene": {
+ "activate": "Aktiver"
+ },
+ "script": {
+ "cancel": "Avbryt",
+ "cancel_multiple": "Avbryt {number}",
+ "run": "Køyr"
+ },
+ "service": {
+ "run": "Køyr"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "avbryt",
+ "finish": "fullfør",
+ "pause": "pause",
+ "start": "start"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Fortsett reingjeringa",
+ "return_to_base": "Gå tilbake til ladestasjonen",
+ "start_cleaning": "Start reingjering",
+ "turn_off": "Skru av",
+ "turn_on": "Skru på"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Bortemodus",
+ "currently": "For augeblinken",
+ "on_off": "På / av",
+ "operation": "Operasjon",
+ "target_temperature": "Temperaturmål"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Lufttrykk",
+ "humidity": "Fuktigheit",
+ "precipitation": "Nedbør",
+ "temperature": "Temperatur",
+ "visibility": "Sikt",
+ "wind_speed": "Vindfart"
+ },
+ "cardinal_direction": {
+ "e": "Ø",
+ "ene": "ØNØ",
+ "ese": "ØSØ",
+ "n": "N",
+ "ne": "NØ",
+ "nne": "NNØ",
+ "nnw": "NNV",
+ "nw": "NV",
+ "s": "S",
+ "se": "SØ",
+ "sse": "SSØ",
+ "ssw": "SSV",
+ "sw": "SV",
+ "w": "V",
+ "wnw": "VNV",
+ "wsw": "VSV"
+ },
+ "forecast": "Vêrmelding",
+ "high": "Høgt",
+ "low": "Lågt"
+ }
+ },
+ "common": {
+ "and": "og",
+ "back": "Tilbake",
+ "cancel": "Avbryt",
+ "delete": "Slett",
+ "error_required": "Påkrevd",
+ "loading": "Lastar",
+ "menu": "Meny",
+ "next": "Neste",
+ "previous": "Førre",
+ "refresh": "Oppdater ",
+ "save": "Lagre",
+ "submit": "Send inn",
+ "successfully_deleted": "Vellukka sletting",
+ "successfully_saved": "Vellukka lagring"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Tillegg",
+ "error": {
+ "fetch_addons": {
+ "description": "Henter tillegget som gav feilen.",
+ "title": "Feil ved henting av tillegg."
+ },
+ "no_supervisor": {
+ "description": "Fann ikkje Supervisor, så tillegget kunne ikkje lastast.",
+ "title": "Inga Supervisor"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Legg til",
+ "failed_create_area": "Klarte ikkje å opprette område.",
+ "name": "Namn",
+ "text": "Legg til namnet til det nye området.",
+ "title": "Legg til nytt område "
+ },
+ "add_new": "Legg til nytt område…",
+ "area": "Område",
+ "clear": "Klar ",
+ "show_areas": "Vis områda"
+ },
+ "attributes": {
+ "expansion_header": "Eigenskapar"
+ },
+ "data-table": {
+ "no-data": "Ingen data"
+ },
+ "date-range-picker": {
+ "ranges": {
+ "last_week": "Førre veke",
+ "this_week": "Denne veka",
+ "today": "I dag",
+ "yesterday": "I går"
+ }
+ },
+ "device-picker": {
+ "device": "Enhet",
+ "no_area": "Inga område",
+ "toggle": "Veksl "
+ },
+ "entity": {
+ "entity-picker": {
+ "entity": "Eining",
+ "show_entities": "Vis oppføringar"
+ }
+ },
+ "history_charts": {
+ "loading_history": "Lastar tilstandshistoria…",
+ "no_history_found": "Inga tilstandshistorie funne"
+ },
+ "logbook": {
+ "messages": {
+ "is_closing": "stenger",
+ "is_opening": "opnar"
+ },
+ "retrieval_error": "Feil under henting av loggbokoppføring "
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Skriv inn QR-kodeverdi",
+ "manual_input": "Du kan skanne QR-koden med ein annan QR-skanner og lime inn koden i inndataa nedanfor",
+ "not_supported": "Nettlesaren din støttar ikkje QR-skanning",
+ "only_https_supported": "Du kan berre bruke kameraet ditt til å skanne QR-koder når du bruker HTTPS.",
+ "select_camera": "Vel kamera"
+ },
+ "related-filter-menu": {
+ "filter": "Filter"
+ },
+ "related-items": {
+ "area": "Område",
+ "device": "Eining",
+ "integration": "Integrasjon"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\none {dag}\nother {dagar}\n}",
+ "hour": "{count} {count, plural,\none {time}\nother {timar}\n}",
+ "minute": "{count} {count, plural,\none {minutt}\nother {minutt}\n}",
+ "second": "{count} {count, plural,\none {sekund}\nother {sekundar}\n}",
+ "week": "{count} {count, plural,\none {veke}\nother {veker}\n}"
+ },
+ "never": "Aldri"
+ },
+ "service-control": {
+ "integration_doc": "Integrasjonsdokumentasjon",
+ "required": "Dette feltet obligatorisk",
+ "service_data": "Tenestedata",
+ "target": "Mål",
+ "target_description": "Kva skal denne tenesta bruke som målretta område, einingar og oppføringar."
+ },
+ "service-picker": {
+ "service": "Teneste"
+ },
+ "statistic-picker": {
+ "learn_more": "Lær meir om statistikk",
+ "missing_entity": "Kvifor er ikkje oppføringa mi opplista?",
+ "no_match": "Ingen matchande statistikk funne",
+ "no_statistics": "Du har ikkje noko statistikk",
+ "statistic": "Statistikk"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Laster statsistikk…",
+ "no_statistics_found": "Ingen statistikk funne ",
+ "statistic_types": {
+ "max": "maks",
+ "mean": "gjennomsnittleg",
+ "min": "min",
+ "sum": "sum"
+ }
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Dersom denne er deaktivert, kjem ikkje nyoppdaga oppføringar til å bli automatisk lagt til i Home Assistant.",
+ "enable_new_entities_label": "Aktiver nyleg tillagde oppføringar.",
+ "enable_polling_description": "Dersom Home Assistant automatisk skal spørje {integration}-oppføringar om oppdateringar. ",
+ "enable_polling_label": "Aktiver etterspørjing av oppdateringar.",
+ "restart_home_assistant": "Du må starte Home Assistant omatt for at endringane dine skal tre i kraft.",
+ "title": "Systemval",
+ "update": "Oppdater"
+ },
+ "entity_registry": {
+ "editor": {
+ "confirm_delete": "Er du sikker på at du vil slette denne oppføringa?",
+ "delete": "SLETT",
+ "device_class": "Vis som",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Dør",
+ "garage_door": "Garasjedør",
+ "opening": "Anna",
+ "window": "Vindauge"
+ },
+ "cover": {
+ "door": "Dør",
+ "garage": "Garasjedør",
+ "window": "Vindauge"
+ }
+ },
+ "enabled_cause": "Deaktivert av {cause}.",
+ "enabled_description": "Dekativere oppføringar kjem ikkje til å bli lagt til i Home Assistant",
+ "enabled_label": "Aktiver oppføringa",
+ "entity_id": "Oppførings-ID",
+ "name": "Namnoverskriding",
+ "note": "Merk: dette fungerer kanskje ikkje med alle integrasjonane.",
+ "unavailable": "Denne eininga er for augeblinken ikkje tilgjengeleg.",
+ "update": "OPPDATER"
+ }
+ },
+ "generic": {
+ "cancel": "Avbryt",
+ "default_confirmation_title": "Er du sikker?",
+ "ok": "OK"
+ },
+ "more_info_control": {
+ "edit": "Rediger oppføringa",
+ "person": {
+ "create_zone": "Opprett sone frå gjeldande stad"
+ },
+ "script": {
+ "last_action": "Siste handling"
+ },
+ "sun": {
+ "elevation": "Høgde",
+ "rising": "Soloppgang",
+ "setting": "Solnedgang"
+ },
+ "updater": {
+ "title": "Oppdater instruksane"
+ },
+ "vacuum": {
+ "clean_spot": "Reingjer området",
+ "commands": "Støvsugarkommandoar",
+ "fan_speed": "Viftefart",
+ "locate": "Lokaliser",
+ "pause": "Sett på pause",
+ "return_home": "Returner heim ",
+ "start": "Start ",
+ "start_pause": "Start/Sett på pause",
+ "status": "Status",
+ "stop": "Stopp "
+ }
+ },
+ "mqtt_device_debug_info": {
+ "entities": "Oppføringar",
+ "no_entities": "Ingen oppføringar",
+ "no_triggers": "Ingen utløysarar",
+ "payload_display": "Nyttelastvisning",
+ "recent_messages": "{n} sist mottekne melding(ar)",
+ "show_as_yaml": "Vis som YAML",
+ "triggers": "Utløysarar"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Val"
+ },
+ "loading": {
+ "loading_flow": "Ver vennleg og vent medan vala for {integration} initialiserast",
+ "loading_step": "Lastar neste steg for {integration}"
+ },
+ "success": {
+ "description": "Vala vart lagra vellukka."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "energy": "Energi",
+ "tag": "Merknader"
+ },
+ "reload": {
+ "themes": "Tema"
+ }
+ }
+ },
+ "zha_device_info": {
+ "buttons": {
+ "view_in_visualization": "Visning i visualisering"
+ },
+ "confirmations": {
+ "remove": "Er du sikker på at du vil fjerne eininga?"
+ },
+ "manuf": "av {manufacturer}",
+ "no_area": "Inga område",
+ "services": {
+ "reconfigure": "Konfigurer ZHA-eininga (heal device) på nytt. Bruk dette om du har problem med eininga. Dersom eininga går på batteri, ver sikker på at den er vaken og tek i mot kommandar når du brukar denne tenesta.",
+ "remove": "Fjern eining frå Zigbee-nettverket",
+ "updateDeviceName": "Gje eininga eit tilpassa namn i einingsregisteret. "
+ },
+ "unknown": "Ukjent",
+ "zha_device_card": {
+ "device_name_placeholder": "Endre navn på eining"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Attributt",
+ "battery_device_warning": "Du må vekke batteridrivne einignar før du startar omkonfigureringsprosessen. Sjå i einingshandboka for å finne ut korleis du skal vekke eininga.",
+ "bind_header": "Bind ",
+ "button_hide": "Gøym detaljane",
+ "button_show": "Vis detaljane",
+ "cluster_header": "Klynge",
+ "configuration_complete": "Einingskonfigurasjonen er fullført.",
+ "configuration_failed": "Einingskonfigurasjonen mislukka. Ytterlegare informasjon kan vere tilgjengeleg i loggane.",
+ "configuring_alt": "Konfigurerar",
+ "in_progress": "Eininga vert konfigurert på nytt. Dette kan ta noko tid.",
+ "introduction": "Konfigurer ei eining på Zigbeenettverket. Bruk denne funksjonen om eininga ikkje fungerer skikkeleg.",
+ "min_max_change": "min/maks/endring",
+ "reporting_header": "Rapporterer",
+ "run_in_background": "Du kan lukke denne dialogboksa og omkonfigurasjonen vil halde fram i bakgrunnen.",
+ "start_reconfiguration": "Start omkonfigureringa."
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\none {dag}\nother {dagar}\n}",
+ "hour": "{count} {count, plural,\none {time}\nother {timar}\n}",
+ "minute": "{count} {count, plural,\none {minutt}\nother {minutt}\n}",
+ "second": "{count} {count, plural,\none {sekund}\nother {sekundar}\n}",
+ "week": "{count} {count, plural,\none {veke}\nother {veker}\n}"
+ },
+ "errors": {
+ "config": {
+ "key_not_expected": "Nøkkelen \"{key}\" er ikkje forventa eller støtta av den visuelle redigeraren.",
+ "key_wrong_type": "Den gitte verdien for \"{key}\" er ikkje støtta av den visuelle redigeraren. Vi støttar ({type_correct}), men mottok ({type_wrong})."
+ }
+ },
+ "login-form": {
+ "log_in": "Logg inn",
+ "password": "Passord",
+ "remember": "Hugs"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Klikk på knappen for å konfigurere {entity}",
+ "empty": "Ingen varslar",
+ "title": "Varsler"
+ },
+ "notification_toast": {
+ "connection_lost": "Tilkopling mista. Prøver å kople til på nytt…",
+ "integration_starting": "Startar {integration}. Alt vil ikkje vere tilgjengeleg før den er ferdig.",
+ "service_call_failed": "Klarte ikkje å kalle tenesten {service}.",
+ "started": "Home Assistant har starta!",
+ "starting": "Home Assistant held på å starte. Alt er ikkje tilgjengeleg før den er ferdig starta."
+ },
+ "panel": {
+ "config": {
+ "areas": {
+ "assigned_to_area": "Knytta til dette området",
+ "caption": "Områderegister",
+ "data_table": {
+ "area": "Område",
+ "devices": "Einingar",
+ "entities": "Oppføringar"
+ },
+ "description": "Oversikt over områda i heimen din.",
+ "editor": {
+ "area_id": "Område-ID",
+ "create": "LAG",
+ "delete": "SLETT",
+ "linked_entities_caption": "Oppføringar",
+ "name": "Namn",
+ "name_required": "Namn er kravd",
+ "no_linked_entities": "Det er ingen oppføringar knytta til dette området.",
+ "unknown_error": "Ukjent feil",
+ "update": "OPPDATER"
+ },
+ "picker": {
+ "header": "Områderegister",
+ "integrations_page": "Integrasjonsside",
+ "introduction": "Områda vert brukt til å organisere kvar einingar er. Denne informasjonen vil bli brukt av Home Assistant for å hjelpe deg å organisere brukargrensesnittet, løyver og integrasjoner med andre system.",
+ "introduction2": "For å plassere ei eining i eit område, bruk linken under for å navigere til integrasjonssida og trykk deretter på konfigurer integrasjon for å opne einingskortet."
+ },
+ "targeting_area": "Målretta dette området"
+ },
+ "automation": {
+ "caption": "Automasjon",
+ "description": "Lag og rediger automasjonar",
+ "dialog_new": {
+ "start_empty_description": "Lag ein ny automasjon frå botnen av"
+ },
+ "editor": {
+ "actions": {
+ "add": "Legg til handling",
+ "delete": "Slett",
+ "delete_confirm": "Er du sikker på at du vil slette?",
+ "duplicate": "Dupliser",
+ "header": "Handlingar",
+ "introduction": "Handlinga Home Assistant vil gjennomføre når automasjonen vert utløyst.",
+ "learn_more": "Lær meir om handlingar",
+ "name": "Handling",
+ "type": {
+ "condition": {
+ "label": "Føresetnad"
+ },
+ "delay": {
+ "delay": "Forsinking",
+ "label": "Forseinking"
+ },
+ "device_id": {
+ "action": "Handling ",
+ "extra_fields": {
+ "position": "Posisjon"
+ },
+ "label": "Eining"
+ },
+ "event": {
+ "event": "Hending",
+ "label": "Køyr hending",
+ "service_data": "Tenestedata"
+ },
+ "repeat": {
+ "label": "Gjenta"
+ },
+ "service": {
+ "label": "Utfør tenestekall"
+ },
+ "wait_template": {
+ "label": "Vent",
+ "timeout": "Tidsavbrot (valfritt)",
+ "wait_template": "Ventemal"
+ }
+ },
+ "type_select": "Handlingstype",
+ "unsupported_action": "Ikkje støtta handling: {action}"
+ },
+ "alias": "Namn",
+ "conditions": {
+ "add": "Legg til føresetnad",
+ "delete": "Slett",
+ "delete_confirm": "Er du sikker på at du vil slette?",
+ "duplicate": "Dupliser",
+ "header": "Føresetnadar",
+ "introduction": "Føresetnadar er valfrie og vil hindre vidare framgang i automasjonen med mindre alle føresetnadene er møtt.",
+ "learn_more": "Lær meir om føresetnader",
+ "name": "Betingelse",
+ "type": {
+ "device": {
+ "condition": "Føresetnad ",
+ "extra_fields": {
+ "above": "Over",
+ "below": "Under"
+ },
+ "label": "Eining"
+ },
+ "not": {
+ "label": "Ikkje"
+ },
+ "numeric_state": {
+ "above": "Over",
+ "below": "Under",
+ "label": "Numerisk tilstand",
+ "value_template": "Verdimal (valfritt)"
+ },
+ "state": {
+ "label": "Tilstand",
+ "state": "Tilstand"
+ },
+ "sun": {
+ "after": "Etter:",
+ "after_offset": "Etter utsetjing",
+ "before": "Før:",
+ "before_offset": "Før utsetjing",
+ "label": "Sol",
+ "sunrise": "Soloppgang",
+ "sunset": "Solnedgang"
+ },
+ "template": {
+ "label": "Mal",
+ "value_template": "Verdimal"
+ },
+ "time": {
+ "after": "Etter",
+ "before": "Før",
+ "label": "Tid",
+ "weekdays": {
+ "mon": "mandag"
+ }
+ },
+ "trigger": {
+ "id": "Utløysar-ID",
+ "label": "Utløysar ",
+ "no_triggers": "Ingen utløsarar tilgjengeleg"
+ },
+ "zone": {
+ "entity": "Eining med posisjon",
+ "label": "Sone",
+ "zone": "Sone"
+ }
+ },
+ "type_select": "Føresetnadstype",
+ "unsupported_condition": "Ikkje støtta føresetnad: {condition}"
+ },
+ "default_name": "Ny automasjon",
+ "enable_disable": "Aktiver/Deaktiver automasjon",
+ "introduction": "Bruk automasjonar til å gi liv til heimen din",
+ "load_error_not_editable": "Berre automasjonar i automations.yaml kan redigerast.",
+ "load_error_unknown": "Feil ved lasting av automasjon ({err_no}).",
+ "modes": {
+ "restart": "Omstart"
+ },
+ "move_down": "Flytt ned",
+ "move_up": "Flytt opp",
+ "save": "Lagre",
+ "triggers": {
+ "add": "Legg til utløysar",
+ "delete": "Slett",
+ "delete_confirm": "Er du sikker på at du vil slette?",
+ "duplicate": "Dupliser",
+ "edit_id": "Rediger utløysar-ID",
+ "header": "Utløysarar",
+ "id": "Utløysar-ID (brukt i utløysings-føresetnaden)",
+ "introduction": "Utløysarar er det som startar ein prosess i ein automasjonsregel. Det er mogleg å spesifisere fleire utløysarar for same regel. Når ein utløysar startar, vil Home Assistant validere føresetnadane, dersom der er nokon, og så setje i gang handlinga.",
+ "learn_more": "Lær meir om utløysarar",
+ "name": "Utløysar",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Over",
+ "below": "Under"
+ },
+ "label": "Oppføring",
+ "trigger": "Utfør"
+ },
+ "event": {
+ "event_data": "TIlstandsdata",
+ "event_type": "Hendingstype",
+ "label": "Hending"
+ },
+ "geo_location": {
+ "enter": "Gå inn",
+ "event": "Hending:",
+ "label": "Geolokasjon",
+ "leave": "Forlat",
+ "source": "Kjelde",
+ "zone": "Sone"
+ },
+ "homeassistant": {
+ "event": "Hending:",
+ "label": "Home Assistant",
+ "shutdown": "Slå av",
+ "start": "Oppstart"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Nyttelast (valfritt)",
+ "topic": "Emne"
+ },
+ "numeric_state": {
+ "above": "Over",
+ "below": "Under",
+ "label": "Numerisk tilstand",
+ "value_template": "Verdimal (valfritt)"
+ },
+ "state": {
+ "for": "For",
+ "from": "Frå",
+ "label": "Tilstand",
+ "to": "Til"
+ },
+ "sun": {
+ "event": "Hending:",
+ "label": "Sol",
+ "offset": "Utsetjing (valfritt)",
+ "sunrise": "Soloppgang",
+ "sunset": "Solnedgang"
+ },
+ "template": {
+ "label": "Mal",
+ "value_template": "Verdimal"
+ },
+ "time": {
+ "at": "Ved",
+ "label": "Tid"
+ },
+ "time_pattern": {
+ "hours": "Timar",
+ "label": "Tidsmønster",
+ "minutes": "Minutt",
+ "seconds": "Sekundar"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook ID"
+ },
+ "zone": {
+ "enter": "Kjem",
+ "entity": "Eining med posisjon",
+ "event": "Hending:",
+ "label": "Sone",
+ "leave": "Forlet",
+ "zone": "Sone"
+ }
+ },
+ "type_select": "Utløysartype",
+ "unsupported_platform": "Ikkje støtta plattform: {platform}"
+ },
+ "unsaved_confirm": "Du har endringar som ikkje er lagra. Er du sikker på at du vil forlate?"
+ },
+ "picker": {
+ "add_automation": "Legg til automasjon",
+ "header": "Automasjonsredigerar",
+ "headers": {
+ "name": "Namn"
+ },
+ "introduction": "Automasjonsredigeringa tillet deg å lage og redigere automasjonar. Ver vennleg og les [instruksjonane](https://home-assistant.io/docs/automation/editor/) for å vere sikker på om du har konfigurert Home Assistant rett.",
+ "learn_more": "Lær meir om automasjonar",
+ "no_automations": "Vi klarte ikkje å finne nokon automasjonar som kunne redigerast",
+ "pick_automation": "Vel ein automasjon for å redigere"
+ },
+ "trace": {
+ "download_trace": "Last ned spor",
+ "edit_automation": "Rediger automasjon",
+ "newer_trace": "Nyare spor",
+ "older_trace": "Eldre spor",
+ "refresh": "Frisk opp"
+ }
+ },
+ "cloud": {
+ "account": {
+ "connecting": "Koplar til…",
+ "remote": {
+ "connected": "Tilkopla",
+ "not_connected": "Ikkje tilkopla",
+ "reconnecting": "Kopler til igjen",
+ "remote_enabled": {
+ "caption": "Kople til automatisk ",
+ "description": "Aktiver dette valet for å sikre at Home Assistant-førekomsten din alltid er tilgjengeleg eksternt."
+ }
+ },
+ "tts": {
+ "dialog": {
+ "create_automation": "Lag automasjon ",
+ "example_message": "Hei {name}! Du kan spele kva som heilst tekst på kva som heilst støtta mediaspelar\"",
+ "header": "Prøv tekst til tale",
+ "play": "Spel",
+ "target": "Mål",
+ "target_browser": "Nettlesar"
+ },
+ "try": "Prøv "
+ }
+ },
+ "alexa": {
+ "title": "Alexa"
+ },
+ "description_features": "Kontroller når du ikkje er heime og integrer med Alexa og Google Assistant",
+ "description_login": "Logga inn som {email}",
+ "description_not_login": "Ikkje logga inn",
+ "forgot_password": {
+ "email": "E-post",
+ "subtitle": "Gløymt passordet ditt",
+ "title": "Gløymt passord"
+ },
+ "login": {
+ "email": "E-post",
+ "forgot_password": "gløymt passordet?",
+ "password": "Passord",
+ "password_error_msg": "Passord er minst 8 teikn",
+ "sign_in": "Logg inn"
+ }
+ },
+ "common": {
+ "learn_more": "Lær meir"
+ },
+ "core": {
+ "caption": "Generelt",
+ "description": "Valider konfigurasjonsfilen din og kontroller serveren",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Valuta",
+ "edit_requires_storage": "Redigeringsverktøy deaktivert sidan konfigurasjonen er lagra i configuration.yaml",
+ "elevation": "Høgde",
+ "elevation_meters": "Meter",
+ "external_url": "Ekstern URL",
+ "find_currency_value": "Finn verdien din",
+ "imperial_example": "Fahrenheit, pound",
+ "internal_url": "Intern URL",
+ "latitude": "Breiddegrad",
+ "location_name": "Namnet på Home Assistant-installasjonen din.",
+ "longitude": "Lengdegrad",
+ "metric_example": "Celsius, kilogram",
+ "save_button": "Lagre",
+ "time_zone": "Tidssone",
+ "unit_system": "Måleining",
+ "unit_system_imperial": "Imperisk",
+ "unit_system_metric": "Metrisk"
+ },
+ "header": "Konfigurasjon og serverkontroll",
+ "introduction": "Vi veit at endringar i konfigurasjonen kan vere ein slitsam prosess. Denne delen vil forsøke å gjere livet ditt litt lettare."
+ }
+ }
+ },
+ "customize": {
+ "caption": "Tilpassing",
+ "description": "Tilpass dine einingar",
+ "picker": {
+ "header": "Tilpasning",
+ "introduction": "Modifiser oppføringsattributtane. Dei nyleg lagt til/endra endringane kjem til å bli sett til verks med ein gang. Fjerna endringar kjem i gang når oppføringa er oppdatert."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Administrer atuomasjonar, scener, skript og hjelparar",
+ "title": "Automasjon og scener"
+ },
+ "blueprints": {
+ "description": "Førehandsdefinerte automasjonar og skript laga av fellesskapet",
+ "title": "Teikningar"
+ },
+ "companion": {
+ "description": "Lokasjon og varslar",
+ "title": "Medfølgande app"
+ },
+ "dashboards": {
+ "description": "Lag tilpassa sett med kort for å kontrollere heimen din",
+ "title": "Skrivebord "
+ },
+ "devices": {
+ "description": "Integrasjonar, einingar, oppføringar og område ",
+ "title": "Einingar og tenester"
+ },
+ "energy": {
+ "description": "Overvak energiproduksjon og forbruk",
+ "title": "Energi"
+ },
+ "people": {
+ "description": "Administrer folk og sonene som Home Assistant sporer",
+ "title": "Folk og soner"
+ },
+ "settings": {
+ "description": "Grunnleggande innstillingar, serverkontroll, loggar og info",
+ "title": "Innstillingar"
+ },
+ "supervisor": {
+ "description": "Lag sikkerheitskopiar, sjekk loggar og start systemet ditt på nytt",
+ "title": "TIllegg, sikkkerheitskopiar og vegleiar"
+ },
+ "tags": {
+ "description": "Utløys automatiseringar når ein NFC-tag, QR-kode, og liknande er skanna",
+ "title": "Taggar"
+ }
+ },
+ "devices": {
+ "automation": {
+ "automations": "Automasjonar",
+ "create": "Lag automasjon med eininga",
+ "no_automations": "Ingen automasjonar",
+ "no_device_automations": "Ingen tilgjenglege automasjonar for denne eininga."
+ },
+ "cant_edit": "Du kan berre redigere element som er laga i brukargrensesnittet.",
+ "caption": "Einingar",
+ "confirm_disable_config_entry": "Det er ikkje fleire einingar for konfigurasjonsoppføringa {entry_name}. Vil du heller deaktivere konfigurasjonsoppføringa?",
+ "confirm_rename_entity_ids": "Vil du også endre ID-ane til oppføringane dine?",
+ "data_table": {
+ "area": "Område",
+ "battery": "Batteri",
+ "manufacturer": "Produsent",
+ "model": "Modell",
+ "no_integration": "Inga integrasjon "
+ },
+ "description": "Administrer tilkopla einingar",
+ "device_info": "Einingsinfo ",
+ "download_diagnostics": "Last ned diagnostikk",
+ "edit_settings": "Rediger innstillingar",
+ "entities": {
+ "config": "Konfigurasjon",
+ "diagnostic": "Diagnostisk",
+ "disabled_entities": "+{count} {count, plural,\n one {deaktivert oppføring}\n other {deaktiverte oppføringar}\n}",
+ "entities": "Oppføringar",
+ "hide_disabled": "Skjul deaktiverte",
+ "state": "Tilstand"
+ },
+ "name": "Namn",
+ "no_devices": "Ingen einingar",
+ "open_configuration_url_device": "Besøk eining",
+ "open_configuration_url_service": "Besøk teneste ",
+ "scene": {
+ "create": "Lag ei scene med denne eininga",
+ "no_scenes": "Ingen scener",
+ "scenes": "Scener"
+ },
+ "scenes": "Scener",
+ "script": {
+ "create": "Lag skript med eininga",
+ "no_scripts": "Ingen skript ",
+ "scripts": "Skript "
+ },
+ "scripts": "Skript ",
+ "update": "Oppdater",
+ "update_device_error": "Oppdatering av eininga mislukkast."
+ },
+ "energy": {
+ "battery": {
+ "learn_more": "Meir informasjon om korleis ein skal kome i gang.",
+ "sub": "Dersom du har eit batterisystem, kan du konfigurere det for å monitorere kor mykje energi som vart lagra og brukt frå batteriet ditt.",
+ "title": "Heimebatterilagring"
+ },
+ "caption": "Energi",
+ "description": "Monitorer energiproduksjon og energiforbruket ditt",
+ "device_consumption": {
+ "add_stat": "Vel oppføring for å spore energien til",
+ "dialog": {
+ "selected_stat_intro": "Vel oppføringa som skal representere einings-energiforbruket"
+ },
+ "learn_more": "Meir informasjon om korleis ein skal kome i gang.",
+ "selected_stat": "Spor energi til ",
+ "sub": "Ved å spore energiforbrukettil enkelteiningar kan Home Assistant sortere energiforbruket ditt etter einingane.",
+ "title": "Individuelle einingar"
+ },
+ "gas": {
+ "dialog": {
+ "cost_entity": "Bruk ei oppføring med gjeldande pris",
+ "cost_entity_input": "Oppføring med gjeldande pris",
+ "cost_number": "Bruk ein statisk pris",
+ "cost_number_input": "Pris per m³",
+ "cost_number_suffix": "{currency}/m³",
+ "cost_para": "Vel korleis Home Assistant skal halde styr på kostnadene av den brukte energien.",
+ "cost_stat": "Bruk ei oppføring som sporar dei totale kostnadene",
+ "cost_stat_input": "Totale kostnader-oppføring",
+ "energy_stat": "Brukt energi (m³)",
+ "header": "Konfigurer gassforbruk",
+ "no_cost": "Ikkje spor kostnader",
+ "paragraph": "Gassforbruk er mengden volum av gass som strøymer til heimen din. "
+ },
+ "learn_more": "Meir informasjon om korleis ein skal kome i gang.",
+ "sub": "Lat Home Assistant overvake gassforbruket ditt.",
+ "title": "Gassforbruk"
+ },
+ "grid": {
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Bruk ei oppføring med gjeldande pris",
+ "cost_entity_input": "Oppføring med gjeldande pris",
+ "cost_number": "Bruk ein statisk pris",
+ "cost_number_input": "Pris per kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Vel korleis Home Assistant skal halde styr på kostnadene av den brukte energien.",
+ "cost_stat": "Bruk ei oppføring som sporar dei totale kostnadene",
+ "cost_stat_input": "Totale kostnader-oppføring",
+ "energy_stat": "Brukt energi (kWh)",
+ "header": "Konfigurer nettforbruk",
+ "no_cost": "Ikkje spor kostnader",
+ "paragraph": "Nettforbruket er energien som strøymer frå straumnettet inn til heimen din."
+ },
+ "to": {
+ "cost_entity": "Bruk ei oppføring med gjeldande pris",
+ "cost_entity_input": "Oppføring med gjeldande pris",
+ "cost_number": "Bruk ein statisk pris",
+ "cost_number_input": "Pris per kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Får du pengar tilabke når du gir energi tilbake til straumnettet?",
+ "cost_stat": "Bruk ei oppføring som sporar dei totalt mottekne pengane",
+ "cost_stat_input": "Total kompensasjonsoppføring",
+ "energy_stat": "Energi gitt tilbake til straumnettet (kWh)",
+ "header": "Konfigurer nettproduksjon",
+ "no_cost": "Eg får ikkje pengar tilbake",
+ "paragraph": "Straumnettsproduksjon er energien som strøymer frå solpanela dine til straumnettet."
+ }
+ },
+ "learn_more": "Meir informasjon om korleis ein skal kome i gang.",
+ "sub": "Konfigurer mengda energi du forbruker frå nettet og, dersom du produserer energi, gi tilbake til nettet. Denne gir Home Assistant moglegheita til å spore energiforbruket til heile huset ditt.",
+ "title": "Straumnett"
+ },
+ "solar": {
+ "learn_more": "Meir informasjon om korleis ein skal kome i gang.",
+ "stat_predicted_production": "Forutsjå solenergiproduksjonen din",
+ "stat_production": "Solenergiproduksjonen din",
+ "stat_return_to_grid": "Solenergi returnert tilbake til nettet",
+ "sub": "Lat Home Assistant monitorere solcellepanela dine og gi deg innsikt i ytinga deira.",
+ "title": "Solcellepanel"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "Dei følgande oppføringane har negativ tilstand medan ein positiv tilstand er forventa:",
+ "title": "Oppføringa har ein negativ tilstand"
+ },
+ "entity_not_defined": {
+ "description": "Sjekk integrasjonen eller konfigurasjonen din som gir:",
+ "title": "Oppføringa er ikkje definert"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "Følgande oppføringane har tilstandsklasse 'measurement' men 'last_reset' manglar:",
+ "title": "Siste tilbakestilling manglar"
+ },
+ "entity_state_non_numeric": {
+ "description": "Den følgande oppføringa har ein tilstand som ikkje kan analyserast som eit tal:",
+ "title": "Oppføringa har ein ikkje-numerisk tilstand"
+ },
+ "entity_unavailable": {
+ "description": "Tilstanden til dei konfigurerte oppføringane er foreløpig ikkje tilgjengelege:",
+ "title": "Oppføringa utilgjengeleg"
+ },
+ "entity_unexpected_device_class": {
+ "description": "Dei følgande oppføringane har ikkje den forventa einingsklassa:",
+ "title": "Uventa einingsklasse"
+ },
+ "entity_unexpected_state_class": {
+ "description": "Følgande oppføringane har ikkje den forventa tilstandsklassa:",
+ "title": "Uventa tilstandklasse"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "Følgande oppføringar har ikkje den forventa statusklassa 'total_increasing'",
+ "title": "Uventa statusklasse"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "Den følgande oppføringa har ikkje den forventa måleeininga 'kWh' eller 'Wh':",
+ "title": "Uforventa måleeining"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "Den følgande oppføringa har ikkje den forventa måleeininga \"{currency}/kWh\" eller \"{currency}/Wh\":",
+ "title": "Uforventa måleeining"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "Dei følgande oppføringane har ikkje den forventa måleeingina 'kWh', 'm³' eller 'ft³':",
+ "title": "Uforventa måleeining "
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "Dei følgande oppføringane har ikkje den forventa måleeininga \"{currency}/kWh\", \"{currency}/Wh\", \"{currency}/m³\" eller \"{currency}/ft³\":",
+ "title": "Uventa måleeining "
+ },
+ "recorder_untracked": {
+ "description": "Opptakaren er konfigurert til å ekskludere desse konfigurerte oppføringane:",
+ "title": "Oppføring ikkje spora"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Oppføringsregister",
+ "description": "Oversikt over alle kjende oppføringar.",
+ "picker": {
+ "header": "Oppføringsregisteret",
+ "headers": {
+ "disabled_by": "Deaktivert av",
+ "entity_id": "Oppførings-ID",
+ "integration": "Integrasjon",
+ "name": "Namn"
+ },
+ "introduction": "Home Assistant har eit register over alle oppføringane den nokon gang har sett som kan unikt identifiserast. Kvar av desse oppføringane har ein eigen oppføringsidentifikasjon som er reservert for akkurat denne oppføringa.",
+ "introduction2": "Bruk oppføringsregisteret til å skrive over namn, endre oppføringsidentifikasjonane eller fjerne oppføringar frå Home Assistant. Merk deg at å fjerne oppføringa i oppføringregisteret ikkje fjernar sjølve oppføringa. For å gjere dette, gå vidare inn på linken under og fjern oppføringa i integrasjonssida.",
+ "search": "Søk i oppføringar"
+ }
+ },
+ "header": "Konfigurer Home Assistant",
+ "helpers": {
+ "types": {
+ "input_button": "Knapp"
+ }
+ },
+ "info": {
+ "caption": "Info",
+ "copy_menu": "Kopier meny",
+ "documentation": "Dokumentasjon ",
+ "integrations": "Integrasjonar",
+ "issues": "Problem ",
+ "setup_time": "Oppsettstid"
+ },
+ "integrations": {
+ "add_integration": "Legg til integrasjon ",
+ "caption": "Integrasjoner",
+ "config_entry": {
+ "check_the_logs": "Sjekk loggane",
+ "configure": "Konfigurer",
+ "delete": "Slett",
+ "delete_confirm": "Er du sikker på at du vil slette denne integrasjonen?",
+ "depends_on_cloud": "Avhengig av skya",
+ "device_unavailable": "Eininga utilgjengeleg",
+ "devices": "{count} {count, plural,\n one {eining}\n other {einingar}\n}",
+ "disable": {
+ "disable_confirm": "Er du sikker på at du vil deaktivere denne konfigurasjonsoppføringa? Einingane og oppføringane vil verte deaktivert.",
+ "disabled": "Deaktivert ",
+ "disabled_by": {
+ "device": "eining ",
+ "integration": "integrasjon ",
+ "user": "brukar "
+ },
+ "disabled_cause": "Deaktivert av {cause}"
+ },
+ "disable_error": "Aktivering eller deaktivering av integasjonen mislukkast",
+ "disable_restart_confirm": "Start Home Assistant på nytt for å fullføre deaktiveringa av denne integrasjonen",
+ "disabled_polling": "Automatisk trekking av oppdatert data er deaktivert",
+ "download_diagnostics": "Last ned diagnostikk",
+ "enable_restart_confirm": "Start Home Assistant på nytt for å fullføre aktiveringa av denne integrasjonen",
+ "entities": "{count} {count, plural,\n one {oppføring}\n other {oppføringar}\n}",
+ "entity_unavailable": "Oppføringa utilgjengeleg",
+ "firmware": "Firmware: {version}",
+ "hardware": "Maskinvare: {version}",
+ "hub": "Tilkopla via",
+ "known_issues": "Kjente problem",
+ "manuf": "av {manufacturer}",
+ "no_area": "Inga område",
+ "open_configuration_url": "Besøk eining",
+ "provided_by_custom_integration": "Levert av ein tilpassa integrasjon ",
+ "rename": "Endre namn",
+ "restart_confirm": "Restart Home Assistant for å fjerne denne integrasjonen",
+ "state": {
+ "failed_unload": "Kunne ikkje laste av",
+ "loaded": "Lasta",
+ "migration_error": "Migrasjonsfeil",
+ "not_loaded": "Ikkje lasta",
+ "setup_error": "Kunne ikkje sette opp ",
+ "setup_retry": "Prøver oppsettet på nytt"
+ },
+ "system_options": "Systemval",
+ "unnamed_entry": "Oppføring utan namn"
+ },
+ "config_flow": {
+ "close": "Lukk",
+ "could_not_load": "Konfigurasjonsflyt kunne ikkje lastast inn",
+ "dismiss": "Avvis dialogboksa",
+ "error": "Feil",
+ "external_step": {
+ "description": "Ei ekstern nettside må besøkast for å fullføre dette steget.",
+ "open_site": "Opne nettside"
+ },
+ "finish": "Fullfør",
+ "loading": {
+ "fallback_title": "integrasjonen",
+ "loading_flow": "Vent medan {integration} vert sett opp",
+ "loading_step": "Laster neste steg for {integration}"
+ },
+ "next": "Neste",
+ "pick_flow_step": {
+ "new_flow": "Nei, sett opp ein anna førekomst av {integration}",
+ "title": "Vi oppdaga desse. Vil du sette dei opp?"
+ },
+ "submit": "Send inn"
+ },
+ "configure": "Konfigurer",
+ "configured": "Konfigurer",
+ "confirm_new": "Vil du sette opp {integration}?",
+ "description": "Administrer tilkopla einingar og tenester",
+ "disable": {
+ "disabled_integrations": "{number} deaktivert ",
+ "show_disabled": "Vis deaktiverte integrasjonar"
+ },
+ "discovered": "Oppdaga",
+ "integration": "integrasjon ",
+ "new": "Sett opp ein ny integrasjon",
+ "no_integrations": "Ser ut til at du ikkje har nokon integrasjonar konfigurert endå. Trykk på knappen under for å legge til din fyrste integrasjon!",
+ "none": "Ikkje noko konfiguert endå",
+ "none_found": "Ingen integrasjonar funne",
+ "none_found_detail": "Juster søkekriteria dine.",
+ "rename_dialog": "Rediger namnet til denne konfigurasjonsoppføringa",
+ "rename_input_label": "Oppføringsnavn"
+ },
+ "introduction": "Her er det mogleg å konfigurere dine komponenter og Home Assistant. Ikkje alt er mogleg å konfigurere frå brukarsnittet endå, men vi jobbar med saka.",
+ "logs": {
+ "caption": "Loggar",
+ "copy": "Kopier loggoppføring ",
+ "custom_integration": "tilpassa integrasjon ",
+ "error_from_custom_integration": "Denne feilen kjem frå ein tilpassa integrasjon."
+ },
+ "lovelace": {
+ "dashboards": {
+ "confirm_delete_text": "Skrivebordet ditt vil bli permanent sletta.",
+ "confirm_delete_title": "Vil du slette {dashboard_title}?"
+ }
+ },
+ "mqtt": {
+ "title": "MQTT"
+ },
+ "ozw": {
+ "network_status": {
+ "unknown": "Ukjent"
+ }
+ },
+ "person": {
+ "caption": "Personar",
+ "description": "Administrer personane Home Assistant sporer.",
+ "detail": {
+ "device_tracker_intro": "Vel eininga som høyrer til denne personen.",
+ "device_tracker_pick": "Vel eining for å spore",
+ "device_tracker_picked": "Spor eining",
+ "local_only": "Kan berre logge inn frå det lokale nettverket",
+ "name": "Namn"
+ }
+ },
+ "scene": {
+ "editor": {
+ "entities": {
+ "add": "Legg til ei oppføring",
+ "delete": "Slett oppføring",
+ "header": "Oppføringar"
+ },
+ "icon": "Ikon"
+ },
+ "picker": {
+ "duplicate": "Dupliser ",
+ "duplicate_scene": "Dupliser scene ",
+ "headers": {
+ "name": "Namn"
+ }
+ }
+ },
+ "script": {
+ "caption": "Skript",
+ "description": "Lag og rediger skript",
+ "editor": {
+ "icon": "Ikon",
+ "id_already_exists": "Denne ID-en finnast allereie",
+ "modes": {
+ "label": "Modus",
+ "restart": "Omstart"
+ },
+ "show_trace": "Vis sti"
+ },
+ "picker": {
+ "dev_script": "Feilsøk skriptet",
+ "headers": {
+ "name": "Namn"
+ },
+ "show_info": "Vis info om skriptet"
+ }
+ },
+ "server_control": {
+ "caption": "Serverkontroll",
+ "description": "Start om att og stopp Home Assistant-serveren",
+ "section": {
+ "reloading": {
+ "automation": "Oppdater automasjonane",
+ "core": "Oppdater kjerna",
+ "group": "Oppdater gruppene",
+ "heading": "Konfigurasjonsomlasting",
+ "input_button": "Inndataknappar",
+ "introduction": "Nokre delar av Home Assistant kan oppdaterast utan ein omstart. Ved å trykke på oppdater, vil Home Assistant forkaste den gjeldande konfigurasjonen og erstatte den med den nye.",
+ "scene": "Omlast scenene",
+ "script": "Oppdater skripta",
+ "themes": "Tema",
+ "timer": "Tidtakarar"
+ },
+ "server_management": {
+ "confirm_restart": "Er du sikker på at du ønsker å starte Home Assistant omatt?",
+ "confirm_stop": "Er du sikker på at du ønsker å stoppe Home Assistant?",
+ "heading": "Serveradministrasjon",
+ "introduction": "Kontroller Home Assistant-serveren din... frå Home Assistant.",
+ "restart": "Omstart",
+ "stop": "Stopp"
+ },
+ "validation": {
+ "check_config": "Sjekk konfigurasjonen",
+ "heading": "Konfigurasjonsvalidering",
+ "introduction": "Valider konfigurasjonen dersom du nyleg har gjort endringar, og vil vere sikker på at alt er gyldig.",
+ "invalid": "Konfigurasjonen er ikkje gyldig",
+ "valid": "Konfigurasjone er gyldig!"
+ }
+ }
+ },
+ "users": {
+ "add_user": {
+ "caption": "Legg til brukar",
+ "create": "Lag",
+ "local_only": "Berre lokalt",
+ "password": "Passord"
+ },
+ "caption": "Brukarar",
+ "description": "Administrer brukarar",
+ "editor": {
+ "activate_user": "Aktiver brukaren",
+ "admin": "Administrator",
+ "caption": "Sjå brukaren",
+ "change_password": "Bytt passord",
+ "deactivate_user": "Deaktiver brukaren",
+ "delete_user": "Slett brukar",
+ "local_only": "Kan berre logge inn frå det lokale nettverket",
+ "name": "Namn",
+ "system_generated_users_not_editable": "Kan ikkje oppdatere dei systemgenererte brukarane",
+ "update_user": "Oppdater"
+ },
+ "is_local": "Lokal brukar",
+ "is_not_active": "Deaktivert",
+ "is_owner": "Eigar",
+ "is_system": "Systembrukar",
+ "picker": {
+ "headers": {
+ "group": "Gruppe ",
+ "local": "Lokal ",
+ "name": "Namn",
+ "system": "System "
+ }
+ }
+ },
+ "zha": {
+ "add_device_page": {
+ "spinner": "Leitar etter ZHA Zigbee-apparat…"
+ },
+ "clusters": {
+ "header": "Klynger",
+ "introduction": "Klynger er byggesteinane for Zigbee-funksjonaliteten. Dei sepererar funksjonaliteten i logiske einingar. Det er klient- og servertyper, som består av attributtar og kommandoar."
+ },
+ "configuration_page": {
+ "shortcuts_title": "Snarvegar",
+ "update_button": "Oppdater konfigurasjon"
+ },
+ "group_binding": {
+ "bind_button_help": "Huk den merka gruppa til den merka einingsklynga.",
+ "bind_button_label": "Huk gruppa",
+ "cluster_selection_help": "Vel klynga som skal bindast til den valde gruppa.",
+ "group_picker_help": "Vel ei gruppe for å sende bindekommandoen til.",
+ "group_picker_label": "Grupper som kan bindast",
+ "header": "Gruppebinding",
+ "introduction": "Huk og huk av grupper.",
+ "unbind_button_help": "Huk av den merka gruppa frå den merka einingsklynga.",
+ "unbind_button_label": "Huk av gruppa"
+ },
+ "groups": {
+ "caption": "Grupper",
+ "delete": "Slett gruppe"
+ },
+ "visualization": {
+ "enable_physics": "Aktiver fysikk",
+ "refresh_topology": "Oppdater topologi"
+ }
+ },
+ "zone": {
+ "configured_in_yaml": "Sonene defingert i configuration.yaml, kan ikkje redigerast via brukargrensesnittet.",
+ "detail": {
+ "create": "Lag",
+ "delete": "Slett",
+ "required_error_msg": "Dette feltet obligatorisk",
+ "update": "Oppdater"
+ },
+ "edit_home_zone": "Plasseringa av heimen din kan endrast i den generelle konfigurasjonen.",
+ "edit_zone": "Rediger sone "
+ },
+ "zwave": {
+ "common": {
+ "index": "Indeks",
+ "instance": "Førekomst",
+ "unknown": "Ukjent",
+ "value": "Verdi",
+ "wakeup_interval": "Vekkarintervall"
+ },
+ "description": "Administrer Z-Wave-nettverket ditt",
+ "migration": {
+ "ozw": {
+ "header": "Migrer til OpenZWave",
+ "introduction": "Denne vegvisaren vil hjelpe deg å migrere frå den eldre Z-Wave-integrasjonen til OpenZWave-integrasjonen som for augneblinken er i beta."
+ },
+ "zwave_js": {
+ "header": "Migrere til Z-Wave JS",
+ "introduction": "Denne integrasjonen vert ikkje oppretthaldt lenger, og vi vil dermed råde deg til å flytte over til den nye Z-Wave JS-integrasjonen. Denne vegvisaren vil hjelpe deg å migrere frå den utdaterte Z-Wave-integrasjonen til den nye Z-Wave JS-integrasjonen."
+ }
+ },
+ "network_management": {
+ "header": "Z-Wave-nettverksadministrering",
+ "introduction": "Køyr kommandoar som påverkar Z-wave-nettverket. Du kjem ikkje til å få tilbakemelding om kommandoande lukkast, men du kan sjekke i OZW-loggen, og prøve å finne ut av det."
+ },
+ "network_status": {
+ "network_started": "Z-Wave-nettverket starta",
+ "network_started_note_all_queried": "Alle nodene er etterspurt.",
+ "network_started_note_some_queried": "Vakne noder er etterspurt. Sovande noder vert spurt når dei vaknar.",
+ "network_starting": "Startar Z-Wave-nettverket",
+ "network_starting_note": "Dette kan ta ei stund, avhengig av storleiken på nettverket",
+ "network_stopped": "Stoppa Z-Wave-nettverket"
+ },
+ "node_config": {
+ "config_parameter": "Konfigurer parameter",
+ "config_value": "Konfigurer verdi",
+ "false": "Falsk",
+ "header": "Alternativer for nodekonfigurasjon",
+ "seconds": "sekund",
+ "set_config_parameter": "Angi konfigurasjonsparameter",
+ "set_wakeup": "Sett eit vekkarintervall",
+ "true": "Sann"
+ },
+ "node_management": {
+ "add_to_group": "Legg til i gruppa",
+ "entities": "Oppføringar for denne noda",
+ "entity_info": "Oppføringsinformasjon",
+ "exclude_entity": "Ekskluder denne oppføringa frå Home Assistant",
+ "group": "Gruppe ",
+ "header": "Z-Wave-nodeadministrasjon",
+ "introduction": "Køyr Z-Wavekommando som påverker ei enkel node. Vel ei node for å sjå listene med tilgjengelege kommandoar.",
+ "max_associations": "Maks forbindingar:",
+ "node_group_associations": "Nodegruppeassosiering ",
+ "node_protection": "Nodevern",
+ "node_to_control": "Node til kontroll ",
+ "nodes": "Noder",
+ "nodes_hint": "Vel node å vise i per-nodevala",
+ "nodes_in_group": "Andre noder i denne gruppa:",
+ "pooling_intensity": "Innhentingsintensitet",
+ "protection": "Vern",
+ "remove_broadcast": "Fjern kringkasting",
+ "remove_from_group": "Fjern frå gruppa",
+ "set_protection": "Set vern"
+ },
+ "ozw_log": {
+ "last_log_lines": "Tal på logglinjer",
+ "load": "Last inn",
+ "tail": "Hale"
+ },
+ "services": {
+ "add_node": "Legg til node",
+ "add_node_secure": "Legg til sikker node",
+ "cancel_command": "Avbryt kommando",
+ "heal_network": "Helbred nettverket",
+ "heal_node": "Lækjenode",
+ "node_info": "Nodeinformasjon",
+ "print_node": "Printnode",
+ "refresh_entity": "Oppdater oppføringa",
+ "refresh_node": "Oppdater node ",
+ "remove_failed_node": "Fjern mislukka node ",
+ "remove_node": "Fjern noden",
+ "replace_failed_node": "Erstatt mislukka node ",
+ "save_config": "Lagre konfigurasjon",
+ "soft_reset": "Mjuk tilbakestilling",
+ "start_network": "Start nettverket",
+ "stop_network": "Stopp nettverket",
+ "test_network": "Test nettverket",
+ "test_node": "Testnode"
+ },
+ "values": {
+ "header": "Nodeverdi"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "interview_failed": "Einingsintervjuet mislukka. Ytterlegare informasjon kan vere tilgjengeleg i loggane.",
+ "interview_started": "Eininga blir intervjua. Dette kan ta noko tid.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Eksempel: Utgåtte dørlåsar utan S2-støtte",
+ "title": "S0-utgått"
+ },
+ "S2_AccessControl": {
+ "description": "Eksempel: Dørlåsar og garasjedører",
+ "title": "S2-tilgangskontroll"
+ },
+ "S2_Authenticated": {
+ "description": "Eksempel: Belysning, sensorar og sikkerheitssystem",
+ "title": "S2-autentisert"
+ },
+ "S2_Unauthenticated": {
+ "description": "Som S2-autentisert, men utan verifikasjonen av at den riktige eininga er inkludert",
+ "title": "S2-uautentisert"
+ }
+ }
+ },
+ "common": {
+ "back": "TIlbake",
+ "heal_network": "Læk nettverket",
+ "reconfigure_server": "Konfigurer serveren på nytt",
+ "source": "Kjelde"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n one {eining}\n other {einingar}\n}",
+ "not_ready": "{count} ikkje klar",
+ "provisioned_devices": "Klargjorte einingar",
+ "server_url": "Server-URL"
+ },
+ "device_info": {
+ "heal_node": "Læk eining",
+ "is_secure": "Sikker",
+ "reinterview_device": "Intervju eininga på nytt",
+ "remove_failed": "Fjern mislukka eining",
+ "unknown": "Ukjent"
+ },
+ "heal_network": {
+ "healing_cancelled": "Nettverkslæking har vore avbrote.",
+ "healing_complete": "Nettverkslæking er fullført.",
+ "healing_failed": "Læking mislukka. Ytterlegare informasjon kan vere tilgjengeleg i loggane.",
+ "in_progress": "Nettverkslæking pågår. Dette kan ta noko tid.",
+ "introduction": "Sett i gang ei nettverkslæking på Z-Wavenettverket. Ei nettverkslæking vil føre til at alle einignane lager nye ruter tilbake til kontrollaren og dette er anbefalt å gjennomføre om du nettopp har flytta kontrollaren din.",
+ "run_in_background": "Du kan lukke denne dialogboksa og nettverkslækinga vil halde fram i bakgrunnen.",
+ "start_heal": "Sett i gang læking",
+ "stop_heal": "Stopp læking.",
+ "title": "Sett i gang læking av Z-Wavenettverket ditt",
+ "traffic_warning": "Lækingsprosessen genererer mykje trafikk på Z-Wavenettverket. Dette kan føre til at einingane svarer seint (eller ikkje i det heile) medan lækingsprosessen er i gang."
+ },
+ "heal_node": {
+ "healing_complete": "{device} har vorte lækt.",
+ "healing_failed": "{device} kunne ikkje lækjast. ",
+ "healing_failed_check_logs": "Ytterlegare informasjon kan vere tilgjengeleg i loggane.",
+ "in_progress": "{device}-lækjing er i gang",
+ "introduction": "Fortel {device} å oppdatere rutene sine tilbake til kontrollaren. Dette kan hjelpe på kommunikasjonsproblem dersom du nettopp har flytta på eininga eller kontrollaren.",
+ "network_heal_in_progress": "Ei Z-Wavenettverk-læking er allereie i gang. Ver vennleg og vent på at den skal fullførast før du lækjer ei enkeleining.",
+ "start_heal": "Læk eining",
+ "title": "Læk ei Z-Waveeining",
+ "traffic_warning": "Lækingsprosessen genererer mykje trafikk på Z-Wavenettverket. Dette kan føre til at einingane svarer seint (eller ikkje i det heile) medan lækingsprosessen er i gang."
+ },
+ "logs": {
+ "download_logs": "Last ned loggar",
+ "log_level": "Loggnivå",
+ "log_level_changed": "Loggnivå endra til: {level}",
+ "subscribed_to_logs": "Abonner på Z-Wave JS-loggmeldingar",
+ "title": "Z-Wave JS-loggar"
+ },
+ "navigation": {
+ "logs": "Loggar"
+ },
+ "node_config": {
+ "parameter": "Parameter",
+ "set_param_accepted": "Parameteren har blitt oppdatert.",
+ "set_param_error": "Ein feil oppstod.",
+ "set_param_queued": "Parameterendringa har blitt sett i køa, og vil bli oppdatert når eininga vakner."
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "Dersom du fjernar tilgangen til eininga kjem den ikkje til å bli lagt til i Home Assistant når den vert skrudd på. Dersom den allereie er lagt til i Home Assistant, vil ikkje fjerning av den klargjorte eininga fjerne den frå Home Assistant.",
+ "confirm_unprovision_title": "Er du sikker på at du vil fjerne eininga?",
+ "dsk": "DSK",
+ "included": "Inkludert",
+ "not_included": "Ikkje inkludert",
+ "security_classes": "Sikkerheitsklasser",
+ "unprovison": "Fjern"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "Du må vekke batteridrivne einingar før du startar nytt intervju. Sjå einingshandboka for instruksjoner om korleis du skal vekke eininga.",
+ "in_progress": "Eininga blir intervjua. Dette kan ta noko tid.",
+ "interview_complete": "EIningsintervjuet fullført.",
+ "interview_failed": "Einingsintervjuet mislukka. Ytterlegare informasjon kan vere tilgjengeleg i loggane.",
+ "introduction": "Intervju ei eining på Z-Wavenettverket ditt på nytt. Bruk denne funksjonen dersom eininga har manglande eller feil funksjonalitet.",
+ "run_in_background": "Du kan lukke denne dialogboksa og intervjuet vil halde fram i bakgrunnen.",
+ "start_reinterview": "Intervju på nytt",
+ "title": "Intervju ei Z-Waveeining på nytt"
+ },
+ "remove_failed_node": {
+ "in_progress": "Fjerning av eining held på.",
+ "introduction": "Fjer mislukka eining frå Z-Wavenettverket. Bruk denne dersom du ikkje kan eksludere eininga normalt fordi den er øydelagt. ",
+ "removal_failed": "Eininga kunne ikkje fjernast frå Z-Wavenettverket.",
+ "removal_finished": "Node {id} vart fjerna frå Z-Wavenettverket.",
+ "remove_device": "Fjern eining",
+ "title": "Fjern ei mislukka Z-Waveeining"
+ }
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Aktive lyttarar",
+ "title": "Hendingar"
+ },
+ "services": {
+ "accepts_target": "Denne tenesta godtek eit mål, for eksempel: `entity_id: light.bed_light`",
+ "all_parameters": "Alle tilgjengelege parameter ",
+ "title": "Tenester",
+ "ui_mode": "Gå til UI-modus",
+ "yaml_mode": "Gå til YAML-modus",
+ "yaml_parameters": "Parameter berre tilgjengeleg i YAML-modus"
+ },
+ "states": {
+ "copy_id": "Kopier ID til utklippstavla",
+ "no_entities": "Ingen oppføringar",
+ "title": "Statusar"
+ },
+ "statistics": {
+ "entity": "Oppføring ",
+ "fix_issue": {
+ "fix": "Løys problemet",
+ "units_changed": {
+ "clear": "Slett all gammal statistikkdata for denne oppføringa",
+ "fix": "Løys problemet",
+ "title": "Eininga til denne oppføringa endra seg",
+ "update": "Oppdater dei historiske statistikkverdiane frå \"{metadata_uni}\" til \"{state_unit}\""
+ }
+ },
+ "issue": "Problem ",
+ "issues": {
+ "entity_not_recorded": "Denne oppføringa er ekskludert frå å bli loggført.",
+ "units_changed": "Eininga til denne oppføringa endra seg frå \"{metadata_unit}\" til \"{state_unit}\".",
+ "unsupported_state_class": "Tilstandsklassa \"{state_class}\" til denne oppføringa er ikkje støtta. ",
+ "unsupported_unit": "Eininga (\"{state_unit}\") til denne oppføringa samsvarar ikkje med eininga til einingsklassa \"{device_class}\".",
+ "unsupported_unit_metadata": "Eininga (\"{metadata_unit}\") av den loggførte statistikken samsvarar ikkje med den støtta eininga \"{supported_unit}\" av einingsklassa \"{device_class}\".",
+ "unsupported_unit_state": "Eininga (\"{state_unit}\") til denne oppføringa samsvarar ikkje med eininga til einingsklassa \"{device_class}\"."
+ },
+ "no_issue": "Ingen problem",
+ "title": "Statistikkar"
+ },
+ "templates": {
+ "title": "Malar"
+ }
+ }
+ },
+ "energy": {
+ "charts": {
+ "by_device": "Einingsforbruk",
+ "solar": "Solcellepanel",
+ "stat_house_energy_meter": "Totalt energiforbruk"
+ },
+ "setup": {
+ "back": "Tilbake",
+ "done": "Vis meg energiskrivebordet!",
+ "next": "Neste"
+ }
+ },
+ "lovelace": {
+ "cards": {
+ "empty_state": {
+ "go_to_integrations_page": "Gå til integrasjonssida",
+ "no_devices": "Denne sida let deg ta kontroll på einingane dine, men det ser ut til at du ikkje har sett opp noko endå. Gå til integrasjonssida for å setje i gang.",
+ "title": "Velkommen heim"
+ },
+ "entities": {
+ "never_triggered": "Aldri utløyst"
+ },
+ "iframe": {
+ "error_secure_context": "Kan ikkje å laste inn iframane som peiker på nettsidene som bruker {target_protocol} dersom Home Assistant vert levert over {context_protocol}."
+ },
+ "map": {
+ "reset_focus": "Tilbakestill fokus"
+ },
+ "picture-elements": {
+ "call_service": "Tilkall teneste {name}",
+ "hold": "Hald:",
+ "more_info": "Vis meir-info: {name}",
+ "navigate_to": "Naviger til {location}",
+ "tap": "Rør:",
+ "toggle": "Endre {name}"
+ },
+ "shopping-list": {
+ "add_item": "Legg til element",
+ "checked_items": "Markerte elementa",
+ "clear_items": "Fjern dei markerrte elementa"
+ },
+ "show_more_info": "Vis meir informasjon",
+ "starting": {
+ "description": "Home Assistant held på å starte. Ver vennleg og vent."
+ }
+ },
+ "changed_toast": {
+ "message": "Lovelace-konfigurasjonen vart oppdatert. Ønsker du å friske opp?"
+ },
+ "editor": {
+ "card": {
+ "area": {
+ "show_camera": "Vis kamerastraum i staden for områdebilde"
+ },
+ "button": {
+ "description": "Knappekortet let deg legge til knappar som kan uføre oppgåver.",
+ "name": "Knapp"
+ },
+ "conditional": {
+ "card": "Kort",
+ "change_type": "Endre type",
+ "condition_explanation": "Kortet vil visast når alle føresetnadene under er oppfylt.",
+ "conditions": "Føresetnadar",
+ "current_state": "gjeldande",
+ "state_equal": "Tilstanden er lik",
+ "state_not_equal": "Tilstanden er ikkje lik"
+ },
+ "config": {
+ "optional": "Valfri",
+ "required": "Påkrevd"
+ },
+ "entities": {
+ "description": "Oppføringskortet er den vanlegaste korttypen. Den kan gruppere ting inn i lister.",
+ "name": "Oppføringar"
+ },
+ "entity-filter": {
+ "description": "Oppføringsfilterkortet let deg definere ei liste med oppføringar som du vil vise berre når dei har ein spesiell tilstand."
+ },
+ "entity": {
+ "name": "Oppføring "
+ },
+ "gauge": {
+ "description": "Målarkortet er eit enkelt kort som let deg visuelt sjå sensordata.",
+ "needle_gauge": "Vis som ei nål?",
+ "severity": {
+ "green": "Grøn",
+ "red": "Rød"
+ }
+ },
+ "generic": {
+ "attribute": "Attributt",
+ "days_to_show": "Dagar som skal visast",
+ "double_tap_action": "Dobbeltrykk-handling",
+ "icon": "Ikon",
+ "manual": "Manuelt",
+ "manual_description": "Vil du legge til eit tilpassa kort eller vil du berre skrive yaml manuelt?",
+ "maximum": "Maksimum",
+ "minimum": "Minimum",
+ "name": "Namn",
+ "secondary_info_attribute": "Sekundærinfo-attributt",
+ "state": "Tilstand"
+ },
+ "glance": {
+ "description": "Gløttekortet er nyttig dersom du vil gruppere fleire sensorar i ei kompakt oversikt."
+ },
+ "history-graph": {
+ "description": "Historiekortet let deg vise ein graf for kvar opplista oppføring."
+ },
+ "horizontal-stack": {
+ "description": "Horisontalstablekortet let deg stable kort saman horisontalt, slik at dei alltid står ved sidan av kvarandre i same rom som ei kolonne."
+ },
+ "iframe": {
+ "description": "Websidekortet let deg vise favorittwebsida di rett inn i Home Assistant",
+ "name": "iFrame"
+ },
+ "light": {
+ "description": "Lyskortet gjer slik at du kan endre lysstyrka til eit lys."
+ },
+ "map": {
+ "description": "Kartkortet som let deg vise oppføringar på eit kart.",
+ "hours_to_show": "Timar som visast"
+ },
+ "shopping-list": {
+ "integration_not_loaded": "Dette kortet krev at \"shopping_list\"-integrasjonen er sett opp."
+ },
+ "statistics-graph": {
+ "description": "Statistikkgraf-kortet let deg vise grafar over statstikk for kvar enkelt opplista oppføring.",
+ "name": "Statistikkgraf",
+ "period": "Periode",
+ "periods": {
+ "5minute": "5 minutt",
+ "day": "Dag",
+ "hour": "Time",
+ "month": "Månad"
+ }
+ },
+ "weather-forecast": {
+ "show_forecast": "Vis vêrmeldinga"
+ }
+ },
+ "cardpicker": {
+ "custom_card": "Tilpassa",
+ "no_description": "Inga skildring tilgjengeleg"
+ },
+ "edit_badges": {
+ "view_no_badges": "Merke er ikkje støtta i denne visningstypen."
+ },
+ "edit_card": {
+ "add": "Legg til kort",
+ "confirm_cancel": "Er du sikker på at du vil avbryte?",
+ "delete": "Slett",
+ "edit": "Redigere",
+ "header": "Kortkonfigurasjon",
+ "move": "Rørsle",
+ "move_down": "Flytt kort ned",
+ "move_up": "Flytt kort opp",
+ "pick_card": "Vel kortet du vil legge til.",
+ "toggle_editor": "Bytt redigeringsverktøy",
+ "unsaved_changes": "Du har endringar som ikkje er lagra"
+ },
+ "edit_lovelace": {
+ "explanation": "Denne tittelen vert vist over alle visningane dine i Lovelace",
+ "header": "Tittelen til Lovelace-brukargrensesnittet"
+ },
+ "edit_view": {
+ "add": "Legg til side",
+ "delete": "Slett sida",
+ "edit": "Rediger sida",
+ "header": "Vis konfigurasjon",
+ "type": "Visningstype",
+ "types": {
+ "masonry": "Murverk (standard)",
+ "panel": "Panel (eitt kort)",
+ "sidebar": "Sidefelt"
+ }
+ },
+ "header": "Rediger brukargrensesnitt",
+ "menu": {
+ "manage_dashboards": "Administrer skriveborda",
+ "manage_resources": "Adminstrer ressursar",
+ "raw_editor": "Rå konfigurasjonsredigerar"
+ },
+ "migrate": {
+ "header": "Konfigurasjonen er ikkje kompatibel",
+ "migrate": "Overfør konfigurasjon",
+ "para_migrate": "Home assistant kan legge til ID-ar til alle korta og sidene dine automatisk for deg ved å trykke \"Overfør konfigurasjon\"-knappen.",
+ "para_no_id": "Dette elementet har ikkje ein ID. Ver vennleg og legg til ein ID til dette elementet i \"ui-lovelace.yaml\"-fila di."
+ },
+ "raw_editor": {
+ "header": "Rediger konfigurasjon",
+ "lovelace_changed": "Lovelace-konfigurasjonen vart oppdatert. Vil du laste den oppdaterte konfigurasjonen i redigeringsprogrammet og miste gjeldende endringar?",
+ "reload": "Last inn på nytt",
+ "save": "Lagre",
+ "saved": "Lagra",
+ "unsaved_changes": "Ikkje lagra endringar"
+ },
+ "save_config": {
+ "empty_config": "Start med eit tomt dashboard",
+ "header": "Ta kontroll over Lovelace-brukargrensesnittet",
+ "para": "Som standard kjem Home Assistant til å vedlikehalde brukargrensesnittet, og oppdatere det når nye oppføringar eller Lovelace-komponentar vert tilgjengelege. Dersom du tek kontroll, vil vi ikkje lenger kunne lage dette til automatisk for deg.",
+ "para_sure": "Er du sikker på at du vil ta kontroll over brukergrensesnittet ditt?",
+ "save": "Ta kontroll"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Denne sida har fleire enn eitt kort, men panelvisning kan berre vise eitt kort i gangen."
+ }
+ }
+ },
+ "menu": {
+ "close": "Lukk",
+ "configure_ui": "Konfigurer brukargrensesnitt",
+ "help": "Hjelp"
+ },
+ "reload_lovelace": "Omlast Lovelace",
+ "unused_entities": {
+ "domain": "Domene",
+ "entity": "Oppføring ",
+ "entity_id": "Oppførings-ID",
+ "last_changed": "Sist endra",
+ "no_data": "Ingen ubrukte oppføringar funne",
+ "search": "Søk i oppføringar",
+ "title": "Ubrukte oppføringar"
+ },
+ "warning": {
+ "entity_non_numeric": "Oppføringa er ikkje numerisk: {entity}",
+ "entity_not_found": "Oppføringa er utilgjengeleg: {entity}",
+ "entity_unavailable": "{entity} er utilgjengeleg for augeblinken",
+ "starting": "Home Assistant held på å starte. Det kan hende at alt ikkje er tilgjengeleg endå."
+ }
+ },
+ "mailbox": {
+ "delete_button": "Slett",
+ "delete_prompt": "Vil du slette denne meldinga?",
+ "empty": "Du har ingen meldingar",
+ "playback_title": "Meldingsavspeling"
+ },
+ "map": {
+ "edit_zones": "Rediger soner"
+ },
+ "my": {
+ "component_not_loaded": "Denne viderekoplinga er ikkje støtta av Home Assistant-førekomsten. Du treng {integration}-integrasjonen å bruke denne viderekoplinga.",
+ "documentation": "dokumentasjon",
+ "error": "Det hende ein ukjent feil ",
+ "faq_link": "Mine Home Assitant-FAQ",
+ "no_supervisor": "Denne viderekoplinga er ikkje støtta av Home Assistant-installasjonen. Det trengs anten installasjonsmetoden Home Assistant eller Home Assistant Supervised. For meir informasjon, sjå {docs_link} .",
+ "not_supported": "Denne viderekoplinga er ikkje støtta av Home Assistant-førekomsten. Sjå {link} for dei støtta vidarekoplingane og ved kva versjon dei vart introdusert."
+ },
+ "page-authorize": {
+ "abort_intro": "Innlogging avbrote",
+ "authorizing_client": "Du held på å gi {clientId} tilgang til Home Assistant-instansen din.",
+ "form": {
+ "error": "Feil: {error}",
+ "next": "Neste",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Økta er utgått. Ver vennleg å logg inn igjen."
+ },
+ "error": {
+ "invalid_auth": "Ugyldig brukarnamn eller passord",
+ "invalid_code": "Ugyldig autentiseringskode"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Passord",
+ "username": "Brukarnamn"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "To-faktorautentiseringskode"
+ },
+ "description": "Opne **{mfa_module_name}** på eininga di for å sjå to-faktor-autentiseringskoda og verifiser identiteten din:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Økt utløpt. Ver vennleg og logg inn igjen."
+ },
+ "error": {
+ "invalid_auth": "Ugyldig brukarnamn eller passord",
+ "invalid_code": "Ugyldig autentiseringskode"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Passord",
+ "username": "Brukarnamn"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "To-faktor-autentiseringskode"
+ },
+ "description": "Opne **{mfa_module_name}** på eininga di for å sjå to-faktor-autentiseringskoda og verifiser identiteten din:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Økt utløpt. Ver vennleg å logg inn igjen.",
+ "no_api_password_set": "Du har ikkje laga til eit API-passord"
+ },
+ "error": {
+ "invalid_auth": "Ugyldig API-passord",
+ "invalid_code": "Ugyldig autentiseringskode"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "API-passord"
+ },
+ "description": "Ver vennleg og skriv inn API-passordet i HTTP-konfigurasjonen din:"
+ },
+ "mfa": {
+ "data": {
+ "code": "To-faktor-autentiseringskode"
+ },
+ "description": "Opne **{mfa_module_name}** på eininga di for å sjå to-faktor-autentiseringskoda og verifiser identiteten din:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "step": {
+ "init": {
+ "data": {
+ "user": "Brukar"
+ },
+ "description": "Ver vennleg og vel ein brukar du vil logge inn som:"
+ }
+ }
+ }
+ },
+ "start_over": "Start på nytt",
+ "unknown_error": "Noko gjekk gale",
+ "working": "Ver vennleg og vent"
+ },
+ "initializing": "Set i gang",
+ "logging_in_with": "Loggar inn med **{authProviderName}**",
+ "pick_auth_provider": "Eller logg inn med"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "av {name}",
+ "introduction": "Velkommen heim! Du har no nådd Home Assistant-demoen, der vi viser fram nokre av dei beste brukargrensesnitta laga av samfunnet våra.",
+ "learn_more": "Lær meir om Home Assistant",
+ "next_demo": "Neste demo"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Aktivitet",
+ "air": "Luft",
+ "commute_home": "Reise heim",
+ "entertainment": "Underhaldning",
+ "hdmi_input": "HDMI-inngang",
+ "hdmi_switcher": "HDMI-veljar",
+ "information": "Informasjon",
+ "lights": "Lys",
+ "morning_commute": "Morgonreise",
+ "total_tv_time": "Total TV-tid",
+ "turn_tv_off": "Slå av TV",
+ "volume": "Volum"
+ },
+ "names": {
+ "family_room": "Stove",
+ "hallway": "Gang",
+ "kitchen": "Kjøkken",
+ "left": "Left",
+ "master_bedroom": "Hovudsoverom",
+ "mirror": "Spegel",
+ "patio": "Patio",
+ "right": "Høgre",
+ "upstairs": "Oppe"
+ },
+ "unit": {
+ "minutes_abbr": "min",
+ "watching": "ser"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "core-config": {
+ "button_detect": "Oppdag",
+ "finish": "Neste",
+ "intro": "Hei {name}! Velkomen til Home Assistant. Kva for namn ønsker du å gi heimen din?",
+ "intro_location": "Vi vil gjerne vite kvar du bur. Denne informasjonen kjem til å hjelpe deg å vise fram informasjon og sette opp solbaserte automasjonar. Dataa vert aldri delt utanom nettverket ditt.",
+ "intro_location_detect": "Vi kan hjelpe deg med å fylle ut denne informasjonen ved å sende ein eingangsførespurnad til ei ekstern teneste.",
+ "location_name_default": "Heim"
+ },
+ "integration": {
+ "finish": "Fullfør",
+ "intro": "Einingar og tenester er representerte i Home Assistant som integrasjonar. Du kan sette dei opp no, eller gjer det seinare i konfigurasjonsmenyen.",
+ "more_integrations": "Meir"
+ },
+ "intro": "Er du klar til å vekke heimen din til liv, vinne tilbake privatlivet ditt og vli med i eit verdsomspennande samfunn av tinkerers?",
+ "restore": {
+ "confirm_password": "Stadfest sikkerheitskopipassordet",
+ "full_backup": "Full sikkerheitskopi",
+ "partial_backup": "Delvis sikkerheitskopi",
+ "select_type": "Vel kva du skal gjenopprette"
+ },
+ "user": {
+ "create_account": "Lag konto",
+ "data": {
+ "name": "Namn",
+ "password": "Passord",
+ "password_confirm": "Stadfest passord",
+ "username": "Brukarnamn"
+ },
+ "error": {
+ "password_not_match": "Passorda er ikkje eins",
+ "required_fields": "Fyll ut dei nødvendige felta"
+ },
+ "intro": "Lat oss begynne med å opprette ein brukarkonto.",
+ "required_field": "Krav"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "link_promo": "Lær meir"
+ },
+ "change_password": {
+ "confirm_new_password": "Stadfest nytt passord",
+ "current_password": "Noverande passord",
+ "error_required": "Krav",
+ "header": "Bytt passord",
+ "new_password": "Nytt passord",
+ "submit": "Send inn"
+ },
+ "current_user": "Du er for augeblinken logga inn som {fullName}.",
+ "dashboard": {
+ "default_dashboard_label": "Oversikt (standard)",
+ "description": "Vel standard-dashboardet for denne eininga.",
+ "dropdown_label": "Dashboard",
+ "header": "Dashboard"
+ },
+ "force_narrow": {
+ "description": "Dette vil skjule sidefeltet som standard. Likner på mobilopplevinga.",
+ "header": "Skjul alltid sidefeltet"
+ },
+ "is_owner": "Du er ein eigar",
+ "language": {
+ "dropdown_label": "Språk",
+ "header": "Språk",
+ "link_promo": "Hjelp å oversette"
+ },
+ "logout": "Logg ut",
+ "logout_text": "Er du sikker på at du vil logge ut?",
+ "logout_title": "Logg ut?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Er du sikker på at du vil slette tilgangstoken for {name}?",
+ "create": "Lag token",
+ "create_failed": "Klarte ikkje å lage tilgangstoken.",
+ "delete_failed": "Klarte ikkje å slette tilgangstoken",
+ "description": "Lag ein langtidslevande tilgangstoken som tillet skripta dine å samhandle med Home Assistant-instansen. Kvar token vil vere gyldig i 10 år etter oppretting. Dei fylgande langtidslevande tokenane er for tida aktive.",
+ "empty_state": "Du har ikkje langtidslevande tilgangstoken endå.",
+ "header": "Langtidslevande tilgangstokenar",
+ "learn_auth_requests": "Lær korleis du lagar ein autentisert førespurnad.",
+ "prompt_copy_token": "Kopier tilgangstoken. Den vil ikkje visast igjen.",
+ "prompt_name": "Namn?"
+ },
+ "mfa": {
+ "confirm_disable": "Er du sikker på at du vil deaktivere {name}?",
+ "disable": "Deaktiver",
+ "enable": "Aktiver",
+ "header": "Flerfaktorautentiseringsmoduler"
+ },
+ "mfa_setup": {
+ "close": "Lukk",
+ "step_done": "Oppsett ferdig for {step}",
+ "submit": "Send inn",
+ "title_aborted": "Avslutta",
+ "title_success": "Suksess!"
+ },
+ "push_notifications": {
+ "description": "Send varslar til denne einiga",
+ "error_load_platform": "Konfigurer notify.html5",
+ "error_use_https": "Krev SSL-aktivert til frontend",
+ "header": "Pushvarslar",
+ "link_promo": "Lær meir",
+ "push_notifications": "Pushvarslar"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Er du sikker på at du vil slette oppdateringstoken for {name}?",
+ "created_at": "Laga den {date}",
+ "current_token_tooltip": "Kan ikkje slette gjeldande oppdateringstoken",
+ "delete_failed": "Kunne ikkje slette oppdateringstoken",
+ "description": "Kvar oppdateringstoken representerer ei innloggingsøkt. Oppdateringstokenane vil autoamtisk bli fjerna når du loggar ut. Dei fylgande oppdateringstokenane er aktive på kontoen din.",
+ "header": "Oppdateringstokenar",
+ "last_used": "Sist brukt den {date} frå {location}",
+ "not_used": "Har aldri vore brukt",
+ "token_title": "Oppdater token for {clientId}"
+ },
+ "themes": {
+ "dropdown_label": "Tema",
+ "error_no_theme": "Ingen tema tilgjengeleg",
+ "header": "Tema",
+ "link_promo": "Lær om temaer"
+ },
+ "time_format": {
+ "description": "Vel korleis tider er formater.",
+ "dropdown_label": "Tidsformat",
+ "formats": {
+ "12": "12 timar (AM/PM)",
+ "24": "24 timar",
+ "language": "Automatisk (bruk språkinnstilling)",
+ "system": "Bruk systemplassering"
+ },
+ "header": "Tidsformat"
+ },
+ "vibrate": {
+ "header": "Vibrer"
+ }
+ }
+ },
+ "sidebar": {
+ "external_app_configuration": "App-konfigurasjon"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/pl.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/pl.json
new file mode 100644
index 00000000..7c924179
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/pl.json
@@ -0,0 +1,4662 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Wpis konfiguracji",
+ "device": "Urządzenie",
+ "integration": "Integracja",
+ "user": "Użytkownik"
+ }
+ },
+ "groups": {
+ "owner": "Właściciel",
+ "system-admin": "Administratorzy",
+ "system-read-only": "Użytkownicy (tylko odczyt)",
+ "system-users": "Użytkownicy"
+ },
+ "panel": {
+ "calendar": "Kalendarz",
+ "config": "Konfiguracja",
+ "developer_tools": "Narzędzia deweloperskie",
+ "energy": "Energia",
+ "history": "Historia",
+ "logbook": "Dziennik",
+ "mailbox": "Poczta",
+ "map": "Mapa",
+ "media_browser": "Odtwarzacz mediów",
+ "profile": "Profil",
+ "shopping_list": "Lista zakupów",
+ "states": "Przegląd"
+ },
+ "state": {
+ "default": {
+ "off": "wył.",
+ "on": "wł.",
+ "unavailable": "niedostępny",
+ "unknown": "nieznany"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "automatyczny",
+ "off": "wył.",
+ "on": "wł."
+ },
+ "hvac_action": {
+ "cooling": "chłodzenie",
+ "drying": "osuszanie",
+ "fan": "wentylator",
+ "heating": "grzanie",
+ "idle": "nieaktywny",
+ "off": "wył."
+ },
+ "preset_mode": {
+ "activity": "aktywność",
+ "away": "poza domem",
+ "boost": "wzmocnienie",
+ "comfort": "komfort",
+ "eco": "eko",
+ "home": "w domu",
+ "none": "brak",
+ "sleep": "noc"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "automatyczny",
+ "away": "poza domem",
+ "baby": "dziecko",
+ "boost": "wzmocnienie",
+ "comfort": "komfort",
+ "eco": "ekonomiczny",
+ "home": "w domu",
+ "normal": "normalny",
+ "sleep": "noc"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "uzbr",
+ "armed_away": "uzbr",
+ "armed_custom_bypass": "uzbr",
+ "armed_home": "uzbr",
+ "armed_night": "uzbr",
+ "armed_vacation": "uzbr",
+ "arming": "uzbr",
+ "disarmed": "rozbr",
+ "disarming": "rozbr",
+ "pending": "oczek",
+ "triggered": "wyzw"
+ },
+ "default": {
+ "entity_not_found": "Nie znaleziono encji",
+ "error": "błąd",
+ "unavailable": "niedos",
+ "unknown": "niezn"
+ },
+ "device_tracker": {
+ "home": "w domu",
+ "not_home": "poza domem"
+ },
+ "person": {
+ "home": "w domu",
+ "not_home": "poza domem"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Domyślne",
+ "header": "Audio",
+ "input": "Wejście",
+ "output": "Wyjście"
+ },
+ "network": {
+ "container": "Kontener",
+ "disabled": "Wyłączona",
+ "header": "Sieć",
+ "host": "Host"
+ },
+ "no_configuration": "Ten dodatek nie udostępnia konfiguracji, abyś mógł w niej grzebać.",
+ "options": {
+ "edit_in_ui": "Edytuj w interfejsie użytkownika",
+ "edit_in_yaml": "Edytuj w trybie YAML",
+ "header": "Opcje",
+ "invalid_yaml": "Nieprawidłowy YAML",
+ "show_unused_optional": "Pokaż nieużywane opcjonalne opcje konfiguracji"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Nie udało się uzyskać listy zmian dodatku",
+ "go_to_config": "Edytuj konfigurację",
+ "install": "Nie udało się zainstalować dodatku",
+ "restart": "Nie udało się ponownie uruchomić dodatku",
+ "start": "Nie udało się uruchomić dodatku",
+ "start_invalid_config": "Przejdź do konfiguracji",
+ "stop": "Nie udało się zatrzymać dodatku",
+ "uninstall": "Nie udało się odinstalować dodatku",
+ "validate_config": "Nie powiodło się sprawdzenie konfiguracji dodatku"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor ('Application Armor') to moduł bezpieczeństwa jądra Linuksa, który ogranicza możliwości dodatków, takie jak dostęp do sieci, dostęp do gniazda typu RAW i uprawnienia do odczytu, zapisu lub wykonywania określonych plików. \n\nAutorzy dodatków mogą podać swoje profile bezpieczeństwa, zoptymalizowane dla dodatku lub zażądać jego wyłączenia. Jeśli AppArmor jest wyłączony, zwiększy to zagrożenie bezpieczeństwa, a zatem ma negatywny wpływ na ocenę zabezpieczeń dodatku.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "Dodatek może uwierzytelniać użytkowników względem Home Assistant, umożliwiając dodatkom możliwości logowania się do aplikacji działających wewnątrz dodatków przy użyciu nazwy użytkownika/hasła Home Assistant. Ta plakietka wskazuje, czy autor dodatku żąda takiej możliwości.",
+ "title": "Uwierzytelnianie Home Assistant"
+ },
+ "docker_api": {
+ "description": "Autor dodatku zażądał, aby dodatek miał dostęp administracyjny do dockera działającej w Twoim systemie. Ten tryb zapewnia dodatkowi pełny dostęp i kontrolę nad całym systemem Home Assistant, co zwiększa ryzyko bezpieczeństwa i może uszkodzić system w przypadku niewłaściwego użycia. Dlatego ta funkcja negatywnie wpływa na ocenę zabezpieczeń dodatku. \n\nTen poziom dostępu nie jest przyznawany automatycznie i musi zostać potwierdzony przez Ciebie. Aby to zrobić, musisz ręcznie wyłączyć tryb ochrony w dodatku. Wyłącz tryb ochrony tylko wtedy, gdy znasz, potrzebujesz i ufasz źródłowi tego dodatku.",
+ "title": "Pełny dostęp do dockera"
+ },
+ "full_access": {
+ "description": "Ten dodatek otrzymuje pełny dostęp do sprzętu Twojego systemu, na żądanie autora dodatku. Dostęp jest porównywalny z trybem uprzywilejowanym w dockerze. Ponieważ otwiera to potencjalne zagrożenia bezpieczeństwa, ta funkcja negatywnie wpływa na ocenę zabezpieczeń dodatku. \n\nTen poziom dostępu nie jest przyznawany automatycznie i musi zostać potwierdzony przez Ciebie. Aby to zrobić, musisz ręcznie wyłączyć tryb ochrony w dodatku. Wyłącz tryb ochrony tylko wtedy, gdy znasz, potrzebujesz i ufasz źródłowi tego dodatku.",
+ "title": "Pełny dostęp do sprzętu"
+ },
+ "hassio_api": {
+ "description": "Dodatek uzyskał dostęp do interfejsu API Supervisora na żądanie autora dodatku. Domyślnie dodatek może uzyskać dostęp do ogólnych informacji o wersji systemu. Gdy dodatek zażąda dostępu do API na poziomie „menedżera” lub „administratora”, uzyska dostęp do kontroli wielu części systemu Home Assistanta. To uprawnienie jest oznaczone tą plakietką i będzie miało negatywny wpływ na ocenę zabezpieczeń dodatku.",
+ "title": "Dostęp do interfejsu API Supervisora"
+ },
+ "homeassistant_api": {
+ "description": "Ten dodatek może uzyskać dostęp do uruchomionej instancji Home Assistant bezpośrednio przez interfejs API. Ten tryb obsługuje również uwierzytelnianie dla dodatku, co umożliwia dodatkowi interakcję z Home Assistantem bez potrzeby stosowania dodatkowych tokenów uwierzytelniających.",
+ "title": "Dostęp do interfejsu API Home Assistanta"
+ },
+ "host_network": {
+ "description": "Dodatki zwykle działają we własnej izolowanej warstwie sieciowej, co uniemożliwia im dostęp do sieci systemu operacyjnego hosta. W niektórych przypadkach ta izolacja sieciowa może ograniczyć dodatki w świadczeniu ich usług, a zatem izolacja może zostać zniesiona przez autora dodatku, zapewniając dodatkowi pełny dostęp do możliwości sieciowych komputera hosta. Daje to dodatkowe możliwości sieciowe, ale obniża poziom bezpieczeństwa, dlatego ocena bezpieczeństwa dodatku zostanie obniżona, gdy ta opcja jest używana przez dodatek.",
+ "title": "Sieć hosta"
+ },
+ "host_pid": {
+ "description": "Zwykle procesy uruchamiane przez dodatek są odizolowane od wszystkich innych procesów systemowych. Autor dodatku zażądał, aby dodatek miał dostęp do procesów systemowych działających w systemie hosta i zezwolił dodatkowi na uruchamianie procesów również w systemie hosta. Ten tryb zapewnia dodatkowi pełny dostęp i kontrolę nad całym systemem Home Assistant, co zwiększa ryzyko bezpieczeństwa i może uszkodzić system w przypadku niewłaściwego użycia. Dlatego ta funkcja negatywnie wpływa na ocenę zabezpieczeń dodatku. \n\nTen poziom dostępu nie jest przyznawany automatycznie i musi zostać potwierdzony przez Ciebie. Aby to zrobić, musisz ręcznie wyłączyć tryb ochrony w dodatku. Wyłącz tryb ochrony tylko wtedy, gdy znasz, potrzebujesz i ufasz źródłowi tego dodatku.",
+ "title": "Procesy hosta"
+ },
+ "ingress": {
+ "description": "Ten dodatek używa Ingress do bezpiecznego osadzania swojego interfejsu w Home Assistant.",
+ "title": "Osadzanie"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "uwierzyt",
+ "core": "Core",
+ "docker": "docker",
+ "hardware": "sprzęt",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "host",
+ "host_pid": "pid hosta",
+ "ingress": "osadz.",
+ "rating": "ocena",
+ "stage": "etap"
+ },
+ "rating": {
+ "description": "Home Assistant zapewnia ocenę bezpieczeństwa dla każdego z dodatków, która wskazuje ryzyko związane z używaniem tego dodatku. Im większy dostęp wymaga w systemie dodatek, tym niższa ocena, a tym samym zwiększa potencjalne zagrożenie bezpieczeństwa. \n\nOcena jest w skali od 1 do 6, gdzie 1 to najniższa ocena (uważany za najbardziej niepewny i najwyższy poziom ryzyka), a 6 to najwyższa ocena (uważany za najbardziej bezpieczny i najniższy poziom ryzyka).",
+ "title": "Ocena bezpieczeństwa dodatku"
+ },
+ "role": {
+ "admin": "admin",
+ "backup": "kopia zap.",
+ "default": "domyślne",
+ "homeassistant": "homeassistant",
+ "manager": "menedżer"
+ },
+ "stage": {
+ "description": "Dodatki mogą mieć jeden z trzech etapów: \n\n {icon_stable} **Stabilny**: to dodatki gotowe do użycia w środowisku produkcyjnym\n\n {icon_experimental} **Eksperymentalny**: mogą zawierać błędy i być niedokończone\n\n {icon_deprecated} **Wycofane**: te dodatki nie będą już otrzymywać żadnych aktualizacji",
+ "title": "Etap dodatku"
+ },
+ "stages": {
+ "deprecated": "Przestarzałe",
+ "experimental": "Eksperymentalne"
+ }
+ },
+ "changelog": "Lista zmian",
+ "cpu_usage": "Użycie procesora przez dodatek",
+ "hostname": "Nazwa hosta",
+ "install": "zainstaluj",
+ "new_update_available": "{name} {version} jest dostępna",
+ "not_available_arch": "Ten dodatek nie jest zgodny z typem procesora lub systemem operacyjnym zainstalowanym na Twoim urządzeniu.",
+ "not_available_version": "Masz wersję {core_version_installed} Home Assistanta, aby zaktualizować dodatek do tej wersji, potrzebujesz co najmniej wersji {core_version_needed} Home Assistanta.",
+ "open_web_ui": "Otwórz interfejs użytkownika",
+ "option": {
+ "auto_update": {
+ "description": "Automatycznie aktualizuj dodatek, gdy pojawi się nowa wersja",
+ "title": "Automatyczna aktualizacja"
+ },
+ "boot": {
+ "description": "Uruchom dodatek podczas startu systemu",
+ "title": "Uruchamianie przy starcie"
+ },
+ "ingress_panel": {
+ "description": "Dodaj ten dodatek do bocznego paska",
+ "title": "Pokaż na pasku bocznym"
+ },
+ "protected": {
+ "description": "Blokuje podwyższony dostęp do systemu z poziomu dodatku",
+ "title": "Tryb ochrony"
+ },
+ "watchdog": {
+ "description": "Ponowne uruchomienie dodatku, jeśli się zawiesi",
+ "title": "Obserwator"
+ }
+ },
+ "protection_mode": {
+ "content": "Tryb ochrony tego dodatku jest wyłączony! Daje to dodatkowi pełny dostęp do całego systemu, co zwiększa ryzyko bezpieczeństwa i może uszkodzić system, gdy jest używany nieprawidłowo. Wyłącz tryb ochrony tylko wtedy, gdy znasz, potrzebujesz i ufasz źródłowi tego dodatku.",
+ "enable": "Włącz",
+ "title": "Tryb ochrony jest wyłączony!"
+ },
+ "ram_usage": "Użycie pamięci przez dodatek",
+ "rebuild": "przeinstaluj",
+ "restart": "uruchom ponownie",
+ "start": "uruchom",
+ "stop": "zatrzymaj",
+ "uninstall": "odinstaluj",
+ "visit_addon_page": "Odwiedź stronę {name}, aby uzyskać więcej szczegółów."
+ },
+ "documentation": {
+ "get_documentation": "Nie udało się uzyskać dokumentacji dodatku, {error}"
+ },
+ "failed_to_reset": "Nie udało się zresetować konfiguracji dodatku, {error}",
+ "failed_to_save": "Nie udało się zapisać konfiguracji dodatku, {error}",
+ "logs": {
+ "get_logs": "Nie udało się uzyskać logów dodatku, {error}"
+ },
+ "panel": {
+ "configuration": "Konfiguracja",
+ "documentation": "Dokumentacja",
+ "info": "Informacje",
+ "log": "Logi"
+ },
+ "state": {
+ "installed": "Dodatek jest zainstalowany",
+ "not_available": "Dodatek nie jest dostępny na Twoim systemie",
+ "not_installed": "Dodatek nie jest zainstalowany"
+ }
+ },
+ "backup": {
+ "addons": "Dodatki",
+ "confirm_password": "Potwierdź hasło kopii zapasowej",
+ "could_not_create": "Nie udało się utworzyć kopii zapasowej",
+ "create": "Utwórz",
+ "create_backup": "Wykonaj kopię zapasową",
+ "create_blocked_not_running": "Tworzenie kopii zapasowej nie jest teraz możliwe, ponieważ system jest w stanie: {state}.",
+ "created": "Utworzony",
+ "delete_backup_confirm": "usuń",
+ "delete_backup_text": "Czy chcesz usunąć {number} {number, plural,\n one {kopię zapasową}\n few {kopie zapasowe}\n many {kopii zapasowych}\n other {kopii zapasowych}\n}?",
+ "delete_backup_title": "Usuń kopię zapasową",
+ "delete_selected": "Usuń wybrane kopie zapasowe",
+ "enter_password": "Proszę wprowadzić hasło",
+ "failed_to_delete": "Nie udało się usunąć",
+ "folders": "Foldery",
+ "full_backup": "Pełna kopia zapasowa",
+ "name": "Nazwa kopii zapasowej",
+ "no_backups": "Nie masz jeszcze żadnych kopii zapasowych.",
+ "partial_backup": "Częściowa kopia zapasowa",
+ "password": "Hasło kopii zapasowej",
+ "password_protection": "Ochrona hasłem",
+ "passwords_not_matching": "Hasła nie są takie same",
+ "select_type": "Wybierz, co przywrócić",
+ "selected": "wybrano {number}",
+ "size": "Rozmiar",
+ "type": "Typ kopii zapasowej",
+ "upload_backup": "Prześlij kopię zapasową"
+ },
+ "common": {
+ "cancel": "Anuluj",
+ "close": "Zamknij",
+ "description": "Opis",
+ "error": {
+ "unknown": "Nieznany błąd",
+ "update_failed": "Aktualizacja nie powiodła się"
+ },
+ "failed_to_restart_name": "Nie udało się ponownie uruchomić {name}",
+ "failed_to_update_name": "Nie udało się zaktualizować {name}",
+ "learn_more": "Dowiedz się więcej",
+ "menu": "Menu",
+ "new_version_available": "Dostępna nowa wersja",
+ "newest_version": "Najnowsza wersja",
+ "no": "Nie",
+ "refresh": "Odśwież",
+ "release_notes": "Informacje o wydaniu",
+ "reload": "Wczytaj ponownie",
+ "reset_defaults": "Przywróć domyślne",
+ "reset_options": "Resetuj opcje",
+ "restart": "Uruchom ponownie",
+ "restart_name": "Uruchom ponownie",
+ "review": "przegląd",
+ "running_version": "Aktualnie używasz wersji {version}",
+ "save": "Zapisz",
+ "show": "pokaż",
+ "show_more": "Pokaż więcej informacji na ten temat",
+ "update": "Aktualizuj",
+ "update_available": "{count, plural,\n one {Oczekująca aktualizacja}\n few {Oczekujące aktualizacje}\n many {Oczekujących aktualizacji}\n other {{count} Oczekujące aktualizacje}\n}",
+ "version": "Wersja",
+ "yes": "Tak"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Czy na pewno chcesz zresetować wszystkie opcje?",
+ "title": "Resetuj opcje"
+ },
+ "restart": {
+ "text": "Czy na pewno chcesz ponownie uruchomić {name}?",
+ "title": "Uruchom ponownie"
+ },
+ "update": {
+ "text": "Czy na pewno chcesz zaktualizować {name} do wersji {version}?",
+ "title": "Aktualizacja {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Nowa wersja dostępna",
+ "addon_running": "Dodatek jest uruchomiony",
+ "addon_stopped": "Dodatek jest zatrzymany",
+ "addons": "Zainstalowane dodatki",
+ "no_addons": "Nie masz jeszcze zainstalowanych żadnych dodatków. Przejdź do sklepu z dodatkami, aby rozpocząć!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Anuluj",
+ "description": "Obecnie używasz '\"{current_path}\"' jako dysku danych. Przeniesienie dysku z danymi spowoduje zrestartowanie urządzenia i szacuje się, że zajmie to {time} min. Twoja instalacja Home Assistant nie będzie dostępna w tym czasie. Nie odłączaj zasilania podczas przenoszenia!",
+ "loading_devices": "Wczytywanie urządzeń",
+ "move": "Przenieś",
+ "moving": "Przenoszenie dysku danych",
+ "moving_desc": "Ponowne uruchamianie i przenoszenie dysku danych. Prosimy o cierpliwość.",
+ "no_devices": "Nie znaleziono odpowiednich podłączonych urządzeń",
+ "select_device": "Wybierz nowy dysk danych",
+ "title": "Przenieś dysk danych"
+ },
+ "hardware": {
+ "attributes": "Atrybuty",
+ "device_path": "Ścieżka urządzenia",
+ "id": "Identyfikator",
+ "search": "Wyszukaj sprzęt",
+ "subsystem": "Podsystem",
+ "title": "Sprzęt"
+ },
+ "network": {
+ "connected_to": "Połączono z {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Wyłączona",
+ "dns_servers": "Serwery DNS",
+ "failed_to_change": "Nie udało się zmienić ustawień sieciowych",
+ "gateway": "Adres bramki dostępu",
+ "ip_netmask": "Adres IP/Maska sieci",
+ "open": "Otwórz",
+ "scan_ap": "Wyszukaj punkty dostępu",
+ "static": "Stały",
+ "title": "Ustawienia sieci",
+ "unsaved": "Masz niezapisane zmiany, które zostaną utracone, jeśli zmienisz karty. Czy chcesz kontynuować?",
+ "warning": "Jeśli zmieniasz Wi-Fi, adres IP lub adres bramki dostępu, możesz utracić połączenie!",
+ "wep": "WEP",
+ "wpa": "wpa-psk"
+ },
+ "registries": {
+ "add_new_registry": "Dodaj nowy rejestr",
+ "add_registry": "Dodaj rejestr",
+ "failed_to_add": "Nie udało się dodać rejestru",
+ "failed_to_remove": "Nie udało się usunąć rejestru",
+ "no_registries": "Brak skonfigurowanych rejestrów",
+ "password": "Hasło",
+ "registry": "Rejestr",
+ "remove": "Usuń",
+ "title_add": "Dodaj nowy rejestr kontenera",
+ "title_manage": "Zarządzaj rejestrami kontenera",
+ "username": "Nazwa użytkownika"
+ },
+ "repositories": {
+ "add": "Dodaj",
+ "remove": "Usuń",
+ "title": "Zarządzaj repozytoriami dodatków",
+ "used": "Repozytorium jest używane dla zainstalowanych dodatków i nie można go usunąć."
+ },
+ "restart_addon": {
+ "confirm_text": "Uruchom ponownie dodatek",
+ "text": "Czy chcesz ponownie uruchomić dodatek ze zmianami?"
+ },
+ "update": {
+ "backup": "Kopia zapasowa",
+ "create_backup": "Utwórz kopię zapasową {name} przed aktualizacją",
+ "creating_backup": "Tworzenie kopii zapasowej {name}",
+ "updating": "Aktualizacja {name} do wersji {version}"
+ }
+ },
+ "my": {
+ "error": "Wystąpił nieznany błąd",
+ "error_addon_no_ingress": "Żądany dodatek nie obsługuje osadzania",
+ "error_addon_not_found": "Nie znaleziono dodatku",
+ "error_addon_not_installed": "Żądany dodatek nie jest zainstalowany. Najpierw go zainstaluj.",
+ "error_addon_not_started": "Żądany dodatek nie jest uruchomiony. Proszę najpierw go uruchomić.",
+ "faq_link": "Mój Home Assistant - często zadawane pytania",
+ "not_supported": "To przekierowanie nie jest obsługiwane przez Twoją instancję Home Assistanta. Sprawdź {link} aby znaleźć obsługiwane przekierowania i wersję, w której zostały wprowadzone."
+ },
+ "panel": {
+ "addons": "Dodatki",
+ "backups": "Kopie zapasowe",
+ "dashboard": "Dashboard",
+ "store": "Sklep z dodatkami",
+ "system": "System"
+ },
+ "store": {
+ "check_updates": "Sprawdź aktualizacje",
+ "missing_addons": "Brakuje dodatków? Włącz tryb zaawansowany na stronie profilu użytkownika.",
+ "no_results_found": "Brak wyników w {repository}.",
+ "registries": "Rejestry",
+ "repositories": "Repozytoria"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Użycie procesora przez Core",
+ "ram_usage": "Użycie pamięci przez Core"
+ },
+ "host": {
+ "change": "Zmień",
+ "change_hostname": "Zmień nazwę hosta",
+ "confirm_reboot": "Czy na pewno chcesz ponownie uruchomić hosta?",
+ "confirm_shutdown": "Czy na pewno chcesz zamknąć hosta?",
+ "deployment": "Wdrożenie",
+ "docker_version": "Wersja dockera",
+ "emmc_lifetime_used": "Czas zużycia eMMC",
+ "failed_to_get_hardware_list": "Nie udało się pobrać listy sprzętu",
+ "failed_to_import_from_usb": "Nie udało się zaimportować z USB",
+ "failed_to_move": "Nie udało się przenieść dysku danych",
+ "failed_to_reboot": "Nie udało się ponownie uruchomić hosta",
+ "failed_to_set_hostname": "Ustawienie nazwy hosta nie powiodło się",
+ "failed_to_shutdown": "Nie udało się zamknąć hosta",
+ "hardware": "Sprzęt",
+ "hostname": "Nazwa hosta",
+ "import_from_usb": "Importuj z USB",
+ "ip_address": "Adres IP",
+ "move_datadisk": "Przenieś dysk danych",
+ "new_hostname": "Wprowadź nową nazwę hosta:",
+ "operating_system": "System operacyjny",
+ "reboot_host": "Uruchom ponownie",
+ "shutdown_host": "Wyłącz",
+ "used_space": "Zajęte miejsce"
+ },
+ "log": {
+ "get_logs": "Nie udało się pobrać logów od {provider} {error}",
+ "log_provider": "Dostawca logów"
+ },
+ "supervisor": {
+ "beta_backup": "Przed aktywacją tej funkcji upewnij się, że masz kopie zapasowe swoich danych.",
+ "beta_join_confirm": "Czy chcesz dołączyć do kanału beta?",
+ "beta_release_items": "Obejmuje to wersje beta dla:",
+ "beta_warning": "Wersje beta są przeznaczone dla testerów i wczesnych użytkowników i mogą zawierać niestabilne zmiany w kodzie",
+ "channel": "Kanał",
+ "cpu_usage": "Użycie procesora przez Supervisora",
+ "failed_to_reload": "Nie udało się wczytać ponownie Supervisora",
+ "failed_to_set_option": "Nie udało się ustawić opcji Supervisora",
+ "failed_to_update": "Nie udało się zaktualizować Supervisora",
+ "join_beta_action": "Dołącz do kanału beta",
+ "join_beta_description": "Pobieraj aktualizacje beta dla Home Assistanta (RC), Supervisora i hosta",
+ "leave_beta_action": "Opuść kanał beta",
+ "leave_beta_description": "Pobieraj stabilne aktualizacje dla Home Assistanta, Supervisora i hosta",
+ "ram_usage": "Użycie pamięci przez Supervisora",
+ "reload_supervisor": "Wczytaj ponownie",
+ "search": "Szukaj",
+ "share_diagnostics": "Udostępnij dane diagnostyczne",
+ "share_diagnostics_description": "Udostępniaj raporty o awariach i informacje diagnostyczne.",
+ "share_diagonstics_description": "Czy chcesz automatycznie udostępniać raporty o awariach i informacje diagnostyczne, gdy Supervisor napotka nieoczekiwane błędy? {line_break} Pozwoli nam to rozwiązać problemy, informacje są dostępne tylko dla głównego zespołu Home Assistant Core i nie będą udostępniane innym. {line_break} Dane nie zawierają żadnych prywatnych/wrażliwych informacji i możesz to wyłączyć w ustawieniach w dowolnym momencie.",
+ "share_diagonstics_title": "Pomóż ulepszyć Home Assistanta",
+ "unhealthy_description": "Używanie \"niezdrowej\" instalacji spowoduje problemy. Poniżej znajduje się lista problemów z Twoją instalacją. Kliknij łącza, aby dowiedzieć się, jak możesz je rozwiązać.",
+ "unhealthy_reason": {
+ "docker": "Środowisko dockera nie działa poprawnie",
+ "privileged": "Supervisor nie jest uprzywilejowany",
+ "setup": "Konfiguracja Supervisora nie powiodła się",
+ "supervisor": "Supervisor nie mógł się zaktualizować",
+ "untrusted": "Wykryto niezaufaną zawartość"
+ },
+ "unhealthy_title": "Twoja instalacja jest \"niezdrowa\"",
+ "unsupported_description": "Poniżej znajduje się lista problemów z Twoją instalacją. Kliknij łącza, aby dowiedzieć się, jak możesz je rozwiązać.",
+ "unsupported_reason": {
+ "apparmor": "AppArmor nie jest włączony na hoście",
+ "container": "Kontenery, o których wiadomo, że powodują problemy",
+ "content-trust": "Weryfikacja zaufania zawartości jest wyłączona",
+ "content_trust": "Weryfikacja zaufania zawartości jest wyłączona",
+ "dbus": "DBUS",
+ "docker_configuration": "Konfiguracja dockera",
+ "docker_version": "Wersja dockera",
+ "job_conditions": "Zignorowane warunki pracy",
+ "lxc": "LXC",
+ "network_manager": "Menedżer sieci",
+ "os": "System operacyjny",
+ "os_agent": "Agent Systemu Operacyjnego",
+ "privileged": "Supervisor nie jest uprzywilejowany",
+ "software": "Wykryto nieobsługiwane oprogramowanie",
+ "source_mods": "Modyfikacje źródła",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Używasz nieobsługiwanej instalacji",
+ "update_supervisor": "Zaktualizuj Supervisora",
+ "warning": "OSTRZEŻENIE"
+ }
+ },
+ "update_available": {
+ "core_note": "Supervisor przywróci wersję {version} jeśli instancja nie pojawi się po aktualizacji.",
+ "create_backup": "Utwórz kopię zapasową przed aktualizacją",
+ "creating_backup": "Tworzenie kopii zapasowej {name}",
+ "description": "Aktualnie zainstalowana jest wersja {version} Kliknij zaktualizuj, aby zaktualizować do wersji {newest_version}",
+ "no_update": "Brak dostępnych aktualizacji dla {name}",
+ "open_release_notes": "Informacje o wydaniu",
+ "update_name": "Aktualizacja {name}",
+ "updating": "Aktualizacja {name} do wersji {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Czy chcesz pozostać zalogowany?",
+ "confirm": "Potwierdź",
+ "decline": "Rezygnuj"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Uzbrój (poza domem)",
+ "arm_custom_bypass": "Niestandardowy bypass",
+ "arm_home": "Uzbrój (w domu)",
+ "arm_night": "Uzbrój (noc)",
+ "arm_vacation": "Uzbrój (tryb wakacyjny)",
+ "clear_code": "Wyczyść",
+ "code": "Kod",
+ "disarm": "Rozbrój"
+ },
+ "area": {
+ "area_not_found": "Nie znaleziono obszaru."
+ },
+ "automation": {
+ "last_triggered": "Ostatnie uruchomienie",
+ "trigger": "Uruchom akcje"
+ },
+ "button": {
+ "press": "Naciśnij"
+ },
+ "camera": {
+ "not_available": "Obraz niedostępny"
+ },
+ "climate": {
+ "aux_heat": "Zewnętrznie podłączone źródło",
+ "away_mode": "Tryb poza domem",
+ "cooling": "{name} chłodzenie",
+ "current_temperature": "{name} aktualna temperatura",
+ "currently": "Obecnie",
+ "fan_mode": "Tryb nawiewu",
+ "heating": "{name} grzanie",
+ "high": "wysoka",
+ "low": "niska",
+ "on_off": "wł. / wył.",
+ "operation": "Tryb pracy",
+ "preset_mode": "Ustawienie predefiniowane",
+ "swing_mode": "Tryb ruchu łopatek",
+ "target_humidity": "Wilgotność docelowa",
+ "target_temperature": "Temperatura docelowa",
+ "target_temperature_entity": "{name} temperatura docelowa",
+ "target_temperature_mode": "{name} temperatura docelowa {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "zmniejsz",
+ "increment": "zwiększ",
+ "reset": "zresetuj"
+ }
+ },
+ "cover": {
+ "position": "Pozycja",
+ "tilt_position": "Pochylenie"
+ },
+ "fan": {
+ "direction": "Kierunek",
+ "forward": "Naprzód",
+ "oscillate": "Oscylacja",
+ "preset_mode": "Ustawienie predefiniowane",
+ "reverse": "Wstecz",
+ "speed": "Prędkość"
+ },
+ "humidifier": {
+ "humidity": "Wilgotność docelowa",
+ "mode": "Tryb pracy",
+ "on_entity": "{name} włączony",
+ "target_humidity_entity": "{name} wilgotność docelowa"
+ },
+ "light": {
+ "brightness": "Jasność",
+ "cold_white_value": "Jasność zimnej bieli",
+ "color_brightness": "Jasność koloru",
+ "color_temperature": "Temperatura barwy",
+ "effect": "Efekt",
+ "warm_white_value": "Jasność ciepłej bieli",
+ "white_value": "Jasność bieli"
+ },
+ "lock": {
+ "code": "Kod",
+ "lock": "Zablokuj",
+ "unlock": "Odblokuj"
+ },
+ "media_player": {
+ "browse_media": "Przeglądaj media",
+ "media_next_track": "Następny utwór",
+ "media_pause": "Pauza",
+ "media_play": "Odtwarzaj",
+ "media_play_pause": "Odtwarzaj/pauza",
+ "media_previous_track": "Poprzedni utwór",
+ "media_stop": "Zatrzymaj",
+ "media_volume_down": "Ciszej",
+ "media_volume_mute": "Wycisz",
+ "media_volume_unmute": "Wyłącz wyciszenie",
+ "media_volume_up": "Głośniej",
+ "nothing_playing": "Nic nie gra",
+ "sound_mode": "Tryb dźwięku",
+ "source": "Źródło",
+ "text_to_speak": "Zamień tekst na mowę",
+ "turn_off": "Wyłącz",
+ "turn_on": "Włącz"
+ },
+ "persistent_notification": {
+ "dismiss": "Odrzuć"
+ },
+ "scene": {
+ "activate": "Aktywuj"
+ },
+ "script": {
+ "cancel": "Anuluj",
+ "cancel_multiple": "Anuluj {number}",
+ "run": "Uruchom"
+ },
+ "service": {
+ "run": "Uruchom"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "anuluj",
+ "finish": "koniec",
+ "pause": "wstrzymaj",
+ "start": "start"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Wznów sprzątanie",
+ "return_to_base": "Powrót do stacji dokującej",
+ "start_cleaning": "Rozpocznij sprzątanie",
+ "turn_off": "Wyłącz",
+ "turn_on": "Włącz"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Tryb poza domem",
+ "currently": "Obecnie",
+ "on_off": "wł. / wył.",
+ "operation": "Tryb pracy",
+ "target_temperature": "Temperatura docelowa"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Ciśnienie atmosferyczne",
+ "humidity": "Wilgotność powietrza",
+ "precipitation": "Opady",
+ "temperature": "Temperatura",
+ "visibility": "Widzialność",
+ "wind_speed": "Prędkość wiatru"
+ },
+ "cardinal_direction": {
+ "e": "zach.",
+ "ene": "wsch. płn.-wsch.",
+ "ese": "wsch. płd.-wsch.",
+ "n": "płn.",
+ "ne": "płn.-wsch.",
+ "nne": "płn. płn.-wsch.",
+ "nnw": "płn. płn.-zach.",
+ "nw": "płn.-zach.",
+ "s": "płd.",
+ "se": "płd.-wsch.",
+ "sse": "płd. płd.-wsch.",
+ "ssw": "płd. płd.-zach.",
+ "sw": "płd.-zach.",
+ "w": "zach.",
+ "wnw": "zach. płn.-zach.",
+ "wsw": "zach. płd.-zach."
+ },
+ "day": "Dzień",
+ "forecast": "Prognoza",
+ "high": "wysoka",
+ "low": "niska",
+ "night": "Noc"
+ }
+ },
+ "common": {
+ "and": "i",
+ "back": "Wstecz",
+ "cancel": "Anuluj",
+ "clear": "Wyczyść",
+ "close": "Zamknij",
+ "continue": "Kontynuuj",
+ "copied": "Skopiowano",
+ "copied_clipboard": "Skopiowano do schowka",
+ "delete": "Usuń",
+ "disable": "Wyłącz",
+ "enable": "Włącz",
+ "error_required": "To pole jest wymagane",
+ "help": "Pomoc",
+ "leave": "Wyjdź",
+ "loading": "Wczytywanie",
+ "menu": "Menu",
+ "move": "Przenieś",
+ "next": "Dalej",
+ "no": "Nie",
+ "not_now": "Nie teraz",
+ "overflow_menu": "Menu",
+ "previous": "Poprzedni",
+ "refresh": "Odśwież",
+ "remove": "Usuń",
+ "rename": "Zmień nazwę",
+ "save": "Zapisz",
+ "skip": "Pomiń",
+ "stay": "Zostań",
+ "submit": "Zatwierdź",
+ "successfully_deleted": "Pomyślnie usunięto",
+ "successfully_saved": "Pomyślnie zapisano",
+ "undo": "Cofnij",
+ "yes": "Tak"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Dodatek",
+ "error": {
+ "fetch_addons": {
+ "description": "Wystąpił błąd podczas ładowania dodatków.",
+ "title": "Błąd podczas ładowania dodatków"
+ },
+ "no_supervisor": {
+ "description": "Dodatki nie są obsługiwane.",
+ "title": "Brak Supervisora"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Dodaj",
+ "failed_create_area": "Nie udało się utworzyć obszaru.",
+ "name": "Nazwa",
+ "text": "Wprowadź nazwę nowego obszaru.",
+ "title": "Dodaj nowy obszar"
+ },
+ "add_new": "Dodaj nowy obszar…",
+ "area": "Obszar",
+ "clear": "Wyczyść",
+ "no_areas": "Nie masz żadnych obszarów",
+ "no_match": "Nie znaleziono pasujących obszarów",
+ "show_areas": "Pokaż obszary"
+ },
+ "attributes": {
+ "expansion_header": "Atrybuty"
+ },
+ "blueprint-picker": {
+ "add_user": "Dodaj użytkownika",
+ "remove_user": "Usuń użytkownika",
+ "select_blueprint": "Wybierz schemat"
+ },
+ "calendar": {
+ "my_calendars": "Moje kalendarze",
+ "today": "Dzisiaj"
+ },
+ "data-table": {
+ "clear": "Wyczyść",
+ "filtering_by": "Filtrowanie przez",
+ "hidden": "{numer} ukryte(-ych)",
+ "no-data": "Brak danych",
+ "search": "Szukaj"
+ },
+ "date-range-picker": {
+ "end_date": "Data końcowa",
+ "ranges": {
+ "last_week": "Poprzedni tydzień",
+ "this_week": "Ten tydzień",
+ "today": "Dziś",
+ "yesterday": "Wczoraj"
+ },
+ "select": "Wybierz",
+ "start_date": "Data początkowa"
+ },
+ "device-picker": {
+ "clear": "Wyczyść",
+ "device": "Urządzenie",
+ "no_area": "Brak obszaru",
+ "no_devices": "Nie masz żadnych urządzeń",
+ "no_match": "Nie znaleziono pasujących urządzeń",
+ "show_devices": "Pokaż urządzenia",
+ "toggle": "Przełącz"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Atrybut",
+ "show_attributes": "Pokaż atrybuty"
+ },
+ "entity-picker": {
+ "clear": "Wyczyść",
+ "edit": "Edytuj",
+ "entity": "Encja",
+ "no_match": "Nie znaleziono pasujących encji",
+ "show_entities": "Pokaż encje"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "Integracja historia wyłączona",
+ "loading_history": "Wczytywanie historii…",
+ "no_history_found": "Nie znaleziono historii."
+ },
+ "logbook": {
+ "by": "przez",
+ "by_service": "przez usługę",
+ "entries_not_found": "Nie znaleziono wpisów w dzienniku.",
+ "messages": {
+ "became_unavailable": "encja stała się niedostępna",
+ "changed_to_state": "nastąpiła zmiana stanu na {state}",
+ "cleared_device_class": "brak",
+ "cleared_tampering": "brak naruszenia",
+ "detected_device_class": "wykryto",
+ "detected_tampering": "wykryto naruszenie",
+ "is_closing": "zamyka się",
+ "is_opening": "otwiera się",
+ "rose": "wzeszło",
+ "set": "zaszło",
+ "turned_off": "nastąpiło wyłączenie",
+ "turned_on": "nastąpiło włączenie",
+ "was_at_home": "nastąpiła zmiana stanu na \"w domu\"",
+ "was_at_state": "nastąpiła zmiana stanu na \"{state}\"",
+ "was_away": "nastąpiła zmiana stanu na \"poza domem\"",
+ "was_closed": "nastąpiło zamknięcie",
+ "was_connected": "nastąpiło podłączenie",
+ "was_disconnected": "nastąpiło odłączenie",
+ "was_locked": "nastąpiło zamknięcie",
+ "was_low": "nastąpiła zmiana stanu na niski",
+ "was_normal": "nastąpiła zmiana stanu na normalny",
+ "was_opened": "nastąpiło otwarcie",
+ "was_plugged_in": "nastąpiło podłączenie",
+ "was_safe": "brak zagrożenia",
+ "was_unlocked": "nastąpiło otwarcie",
+ "was_unplugged": "nastąpiło odłączenie",
+ "was_unsafe": "wykryto zagrożenie"
+ },
+ "retrieval_error": "Nie udało się załadować dziennika",
+ "show_trace": "Pokaż ślad"
+ },
+ "media-browser": {
+ "audio_not_supported": "Twoja przeglądarka nie obsługuje elementu audio.",
+ "choose_player": "Wybierz odtwarzacz",
+ "class": {
+ "album": "Album",
+ "app": "Aplikacja",
+ "artist": "Artysta",
+ "channel": "Kanał",
+ "composer": "Kompozytor",
+ "contributing_artist": "Artysta współpracujący",
+ "directory": "Biblioteka",
+ "episode": "Odcinek",
+ "game": "Gra",
+ "genre": "Gatunek",
+ "image": "Obraz",
+ "movie": "Film",
+ "music": "Muzyka",
+ "playlist": "Playlista",
+ "podcast": "Podcast",
+ "season": "Sezon",
+ "track": "Ścieżka",
+ "tv_show": "Program telewizyjny",
+ "url": "URL",
+ "video": "Wideo"
+ },
+ "documentation": "dokumentacja",
+ "learn_adding_local_media": "Dowiedz się więcej o dodawaniu multimediów w {documentation}.",
+ "local_media_files": "Umieść pliki wideo, audio i obrazy w folderze multimediów, aby móc je przeglądać i odtwarzać w przeglądarce lub obsługiwanych odtwarzaczach multimedialnych.",
+ "media-player-browser": "Przeglądarka odtwarzacza mediów",
+ "media_browsing_error": "Błąd przeglądania multimediów",
+ "media_not_supported": "Przeglądarka odtwarzacza mediów nie obsługuje tego typu mediów",
+ "media_player": "Odtwarzacz mediów",
+ "no_items": "Brak elementów",
+ "no_local_media_found": "Nie znaleziono mediów lokalnych",
+ "no_media_folder": "Wygląda na to, że nie utworzyłeś jeszcze folderu multimediów.",
+ "pick": "Wybierz",
+ "pick-media": "Wybierz media",
+ "play": "Odtwarzaj",
+ "play-media": "Odtwarzaj media",
+ "setup_local_help": "Zapoznaj się z {documentation}, by skonfigurować media lokalne.",
+ "video_not_supported": "Twoja przeglądarka nie obsługuje elementu wideo.",
+ "web-browser": "Przeglądarka internetowa"
+ },
+ "picture-upload": {
+ "label": "Obraz",
+ "unsupported_format": "Nieobsługiwany format, wybierz obraz JPEG, PNG lub GIF."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Wprowadź wartość kodu QR",
+ "manual_input": "Możesz zeskanować kod QR innym skanerem QR i wkleić kod w polu poniżej",
+ "not_supported": "Twoja przeglądarka nie obsługuje skanowania kodów QR.",
+ "only_https_supported": "Możesz użyć aparatu do zeskanowania kodu QR tylko podczas korzystania z protokołu HTTPS.",
+ "select_camera": "Wybierz kamerę"
+ },
+ "related-filter-menu": {
+ "filter": "Filtr",
+ "filter_by_area": "Filtruj według obszaru",
+ "filter_by_device": "Filtruj według urządzenia",
+ "filter_by_entity": "Filtruj według encji",
+ "filtered_by_area": "obszar: {area_name}",
+ "filtered_by_device": "urządzenie: {device_name}",
+ "filtered_by_entity": "encja: {entity_name}"
+ },
+ "related-items": {
+ "area": "Obszar",
+ "automation": "Element następujących automatyzacji",
+ "device": "Urządzenie",
+ "entity": "Powiązane encje",
+ "group": "Element następujących grup",
+ "integration": "Integracja",
+ "no_related_found": "Nie znaleziono powiązanych elementów.",
+ "scene": "Element następujących scen",
+ "script": "Element następujących skryptów"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one {dzień}\n other {dni}\n}",
+ "hour": "{count} {count, plural,\n one {godzina}\n few {godziny}\n many {godzin}\n other {godzin}\n}",
+ "minute": "{count} {count, plural,\n one {minuta}\n few {minuty}\n many {minut}\n other {minut}\n}",
+ "second": "{count} {count, plural,\n one {sekunda}\n few {sekundy}\n many {sekund}\n other {sekund}\n}",
+ "week": "{count} {count, plural,\n one {tydzień}\n few {tygodnie}\n many {tygodni}\n other {tygodni}\n}"
+ },
+ "future_duration": {
+ "day": "Za {count} {count, plural,\n one {dzień}\n other {dni}\n}",
+ "hour": "Za {count} {count, plural,\n one {godzinę}\n few {godziny}\n many {godzin}\n other {godzin}\n}",
+ "minute": "Za {count} {count, plural,\n one {minutę}\n few {minuty}\n many {minut}\n other {minut}\n}",
+ "second": "Za {count} {count, plural,\n one {sekundę}\n few {sekundy}\n many {sekund}\n other {sekund}\n}",
+ "week": "Za {count} {count, plural,\n one {tydzień}\n few {tygodnie}\n many {tygodni}\n other {tygodni}\n}"
+ },
+ "just_now": "Właśnie teraz",
+ "never": "Nigdy",
+ "past_duration": {
+ "day": "{count} {count, plural,\n one {dzień}\n other {dni}\n} temu",
+ "hour": "{count} {count, plural,\n one {godzinę}\n few {godziny}\n many {godzin}\n other {godzin}\n} temu",
+ "minute": "{count} {count, plural,\n one {minutę}\n few {minuty}\n many {minut}\n other {minut}\n} temu",
+ "second": "{count} {count, plural,\n one {sekundę}\n few {sekundy}\n many {sekund}\n other {sekund}\n} temu",
+ "week": "{count} {count, plural,\n one {tydzień}\n few {tygodnie}\n many {tygodni}\n other {tygodni}\n} temu"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Dokumentacja integracji",
+ "required": "To pole jest wymagane",
+ "service_data": "Dane usługi",
+ "target": "Cele",
+ "target_description": "Jaki powinien być docelowy obszar, urządzenie lub encja do wywołania tej usługi."
+ },
+ "service-picker": {
+ "service": "Usługa"
+ },
+ "statistic-picker": {
+ "learn_more": "Dowiedz się więcej o statystykach",
+ "missing_entity": "Dlaczego mojej encji nie ma na liście?",
+ "no_match": "Nie znaleziono pasujących statystyk",
+ "no_statistics": "Nie masz żadnych statystyk",
+ "statistic": "Statystyka"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Wczytywanie statystyk…",
+ "no_statistics_found": "Nie znaleziono statystyk.",
+ "statistic_types": {
+ "max": "maks",
+ "mean": "średnia",
+ "min": "min",
+ "sum": "suma"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Wybierz obszar",
+ "add_device_id": "Wybierz urządzenie",
+ "add_entity_id": "Wybierz encję",
+ "expand": "Rozwiń",
+ "expand_area_id": "Podziel ten obszar na oddzielne urządzenia i encje.",
+ "expand_device_id": "Podziel to urządzenie na oddzielne encje.",
+ "remove": "Usuń",
+ "remove_area_id": "Usuń obszar",
+ "remove_device_id": "Usuń urządzenie",
+ "remove_entity_id": "Usuń encję"
+ },
+ "user-picker": {
+ "add_user": "Dodaj użytkownika",
+ "no_user": "Brak użytkownika",
+ "remove_user": "Usuń użytkownika"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Jeśli nowo odkryte urządzenia dla integracji {integration} powinny zostać dodane automatycznie.",
+ "enable_new_entities_label": "Włącz dodawanie nowych encji.",
+ "enable_polling_description": "Czy Home Assistant powinien automatycznie odpytywać encje {integration} w poszukiwaniu aktualizacji.",
+ "enable_polling_label": "Włącz odpytywanie o aktualizacje.",
+ "restart_home_assistant": "Aby zmiany zostały wprowadzone, musisz ponownie uruchomić Home Assistanta.",
+ "title": "Opcje systemowe dla {integration}",
+ "update": "Aktualizuj"
+ },
+ "domain_toggler": {
+ "reset_entities": "Zresetuj encje",
+ "title": "Włączanie domen"
+ },
+ "entity_registry": {
+ "control": "Kontrola",
+ "customize_link": "dostosowywania encji",
+ "dismiss": "Odrzuć",
+ "editor": {
+ "advanced": "Zaawansowane ustawienia",
+ "area": "Ustaw obszar encji",
+ "area_note": "Domyślnie encje urządzenia znajdują się w tym samym obszarze co urządzenie. Jeśli zmienisz obszar tej encji, nie będzie ona już występować w obszarze urządzenia.",
+ "change_device_area": "Zmień obszar urządzenia",
+ "confirm_delete": "Czy na pewno chcesz usunąć tę encję?",
+ "delete": "Usuń",
+ "device_class": "Pokaż jako",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Drzwi",
+ "garage_door": "Brama garażowa",
+ "opening": "Inne",
+ "window": "Okno"
+ },
+ "cover": {
+ "door": "Drzwi",
+ "garage": "Brama garażowa",
+ "window": "Okno"
+ }
+ },
+ "device_disabled": "Urządzenie tej encji jest wyłączone",
+ "enabled_cause": "Wyłączone przez {cause}.",
+ "enabled_delay_confirm": "Włączone encje zostaną dodane do Home Assistanta po {delay} sekundach",
+ "enabled_description": "Wyłączone encje nie będą dostępne w Home Assistant.",
+ "enabled_label": "Włącz encję",
+ "enabled_restart_confirm": "Uruchom ponownie Home Assistanta, aby zakończyć włączanie encji",
+ "entity_id": "Identyfikator encji",
+ "follow_device_area": "Użyj obszaru urządzenia",
+ "icon": "Ikona",
+ "icon_error": "Ikony powinny mieć format 'prefix:iconname', np. 'mdi:home'",
+ "name": "Nazwa",
+ "note": "Uwaga: to może jeszcze nie działać ze wszystkimi integracjami.",
+ "open_device_settings": "Otwórz ustawienia urządzenia",
+ "unavailable": "Ta encja nie jest obecnie dostępna.",
+ "update": "Aktualizuj"
+ },
+ "faq": "dokumentacja",
+ "info_customize": "Możesz nadpisać niektóre atrybuty w sekcji {customize_link}.",
+ "no_unique_id": "Ta encja (\"{entity_id}\") nie ma unikalnego identyfikatora, dlatego z poziomu interfejsu użytkownika nie można zarządzać jej ustawieniami. Więcej szczegółów znajdziesz w {faq_link}.",
+ "related": "Powiązane",
+ "settings": "Ustawienia"
+ },
+ "generic": {
+ "cancel": "Anuluj",
+ "close": "zamknij",
+ "default_confirmation_title": "Jesteś pewny?",
+ "ok": "OK"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Wartość początkowa",
+ "maximum": "Wartość maksymalna",
+ "minimum": "Wartość minimalna",
+ "restore": "Przywróć ostatnią znaną wartość po uruchomieniu Home Assistanta",
+ "step": "Skok"
+ },
+ "generic": {
+ "icon": "Ikona",
+ "name": "Nazwa"
+ },
+ "input_datetime": {
+ "date": "Data",
+ "datetime": "Data i czas",
+ "mode": "Co chcesz wprowadzić?",
+ "time": "Czas"
+ },
+ "input_number": {
+ "box": "pole",
+ "max": "Maksymalna wartość",
+ "min": "Minimalna wartość",
+ "mode": "Tryb wyświetlania",
+ "slider": "suwak",
+ "step": "Rozmiar kroku",
+ "unit_of_measurement": "Jednostka miary"
+ },
+ "input_select": {
+ "add": "Dodaj",
+ "add_option": "Dodaj opcję",
+ "no_options": "Nie ma jeszcze opcji.",
+ "options": "Opcje"
+ },
+ "input_text": {
+ "max": "Maksymalna długość",
+ "min": "Minimalna długość",
+ "mode": "Tryb wyświetlania",
+ "password": "Hasło",
+ "pattern": "Wyrażenie regularne do sprawdzania poprawności po stronie klienta",
+ "text": "Pole tekstowe"
+ },
+ "platform_not_loaded": "Komponent {platform} nie jest wczytany, dodaj go do swojej konfiguracji dodając 'default_config:' lub ''{platform}:''.",
+ "required_error_msg": "To pole jest wymagane",
+ "timer": {
+ "duration": "Czas"
+ },
+ "yaml_not_editable": "Ustawienia tej encji nie mogą być edytowane z interfejsu użytkownika. Tylko encje dodane z interfejsu użytkownika można konfigurować z poziomu interfejsu użytkownika."
+ },
+ "image_cropper": {
+ "crop": "Przytnij"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Zamknij roletę",
+ "close_tile_cover": "Przechylenie zamkniętej rolety",
+ "close_tilt_cover": "Przechylenie zamkniętej rolety",
+ "open_cover": "Otwórz roletę",
+ "open_tilt_cover": "Przechylenie otwartej rolety",
+ "stop_cover": "Zatrzymanie rolety"
+ },
+ "details": "Szczegóły",
+ "dismiss": "Zamknij okno dialogowe",
+ "edit": "Edytuj encję",
+ "history": "Historia",
+ "last_changed": "Ostatnia zmiana",
+ "last_updated": "Ostatnio zaktualizowano",
+ "logbook": "Dziennik",
+ "person": {
+ "create_zone": "Utwórz strefę z bieżącej lokalizacji"
+ },
+ "remote": {
+ "activity": "Aktualna czynność"
+ },
+ "restored": {
+ "confirm_remove_text": "Czy na pewno chcesz usunąć tę encję?",
+ "confirm_remove_title": "Usunąć encję?",
+ "not_provided": "Ta encja jest obecnie niedostępna i jest osierocona po usuniętej, zmienionej lub dysfunkcyjnej integracji, lub urządzeniu.",
+ "remove_action": "Usuń encję",
+ "remove_intro": "Jeśli encja nie jest używana możesz ją usunąć."
+ },
+ "script": {
+ "last_action": "Ostatnia akcja",
+ "last_triggered": "Ostatnie uruchomienie"
+ },
+ "settings": "Ustawienia encji",
+ "show_more": "Pokaż więcej",
+ "sun": {
+ "elevation": "Wysokość",
+ "rising": "Wschód",
+ "setting": "Zachód"
+ },
+ "updater": {
+ "title": "Instrukcje aktualizacji"
+ },
+ "vacuum": {
+ "clean_spot": "Wyczyść miejsce",
+ "commands": "Polecenia odkurzacza:",
+ "fan_speed": "Prędkość wentylatora",
+ "locate": "Zlokalizuj",
+ "pause": "Wstrzymaj",
+ "return_home": "Powrót do domu",
+ "start": "Start",
+ "start_pause": "Start/Wstrzymaj",
+ "status": "Status",
+ "stop": "Zatrzymaj"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Próba parsowania komunikatów MQTT jako JSON",
+ "entities": "Encje",
+ "no_entities": "Brak encji",
+ "no_triggers": "Brak wyzwalaczy",
+ "payload_display": "Wyświetl payload",
+ "recent_messages": "{n} ostatnio otrzymanych wiadomości",
+ "show_as_yaml": "Pokaż jako YAML",
+ "title": "Informacje o {device}",
+ "triggers": "Wyzwalacze"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Opcje"
+ },
+ "loading": {
+ "loading_flow": "Proszę czekać, trwa inicjalizacja opcji dla {integration}",
+ "loading_step": "Wczytuję następny krok dla {integration}"
+ },
+ "success": {
+ "description": "Opcje pomyślnie zapisane."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Obszary",
+ "automation": "Automatyzacje",
+ "blueprint": "Schematy",
+ "core": "Ogólne",
+ "customize": "Dostosowywanie",
+ "devices": "Urządzenia",
+ "energy": "Energia",
+ "entities": "Rejestr encji",
+ "helpers": "Pomocnicy",
+ "info": "Informacje",
+ "integrations": "Integracje",
+ "logs": "Logi",
+ "lovelace": "Dashboardy",
+ "person": "Osoby",
+ "scene": "Sceny",
+ "script": "Skrypty",
+ "server_control": "Kontrola serwera",
+ "tag": "Tagi",
+ "users": "Użytkownicy",
+ "zone": "Strefy"
+ },
+ "reload": {
+ "automation": "Automatyzacje",
+ "command_line": "Encje komponentu linia komend",
+ "core": "Lokalizacja i dostosowywanie",
+ "filesize": "Encje komponentu wielkość pliku",
+ "filter": "Encje komponentu filtr",
+ "generic": "Encje komponentu kamera IP generic",
+ "generic_thermostat": "Encje komponentu termostatu generic",
+ "group": "Grupy, ich encje oraz usługi powiadomień",
+ "history_stats": "Encje komponentu historia stanów",
+ "homekit": "HomeKit",
+ "input_boolean": "Pomocnicy typu przełącznik",
+ "input_datetime": "Pomocnicy typu data i czas",
+ "input_number": "Pomocnicy typu numer",
+ "input_select": "Pomocnicy typu pole wyboru",
+ "input_text": "Pomocnicy typu tekst",
+ "min_max": "Encje komponentu min/max",
+ "mqtt": "Encje komponentu MQTT",
+ "person": "Osoby",
+ "ping": "Encje komponentu ping",
+ "reload": "Domenę {domain}",
+ "rest": "Encje komponentu rest i usługi powiadomień",
+ "rpi_gpio": "Encje komponentu Raspberry Pi GPIO",
+ "scene": "Sceny",
+ "script": "Skrypty",
+ "smtp": "Usługi powiadomień komponentu SMTP",
+ "statistics": "Encje komponentu statystyka",
+ "telegram": "Usługi powiadomień komponentu Telegram",
+ "template": "Encje zdefiniowane szablonami",
+ "themes": "Motywy",
+ "trend": "Encje komponentu trend",
+ "universal": "Encje komponentu uniwersalny odtwarzacz mediów",
+ "zone": "Strefy"
+ },
+ "server_control": {
+ "perform_action": "{action} serwer",
+ "restart": "Uruchom ponownie",
+ "stop": "Zatrzymaj"
+ },
+ "types": {
+ "navigation": "Przejdź",
+ "reload": "Wczytaj ponownie",
+ "server_control": "Serwer"
+ }
+ },
+ "filter_placeholder": "Filtr encji",
+ "key_c_hint": "Naciśnij „c” na dowolnej stronie, aby otworzyć ten pasek wyszukiwania",
+ "title": "Szybkie wyszukiwanie"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant niczego nie usłyszał",
+ "error": "Ups, wystąpił błąd",
+ "found": "Znalazłem dla Ciebie:",
+ "how_can_i_help": "Jak mogę pomóc?",
+ "label": "Wpisz pytanie i naciśnij 'Enter'",
+ "label_voice": "Wpisz i naciśnij 'Enter' lub dotknij ikonę mikrofonu, aby mówić"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Dodaj urządzenia za pomocą tego urządzenia",
+ "clusters": "Zarządzaj klastrami",
+ "device_children": "Wyświetl urządzenia-dzieci",
+ "reconfigure": "Rekonfiguracja urządzenia",
+ "remove": "Usuń urządzenie",
+ "view_in_visualization": "Wyświetl w wizualizacji",
+ "zigbee_information": "Sygnatura urządzenia Zigbee"
+ },
+ "confirmations": {
+ "remove": "Czy na pewno chcesz usunąć urządzenie?"
+ },
+ "device_children": "Urządzenia-dzieci Zigbee",
+ "device_signature": "Sygnatura urządzenia Zigbee",
+ "last_seen": "Ostatnio widziane",
+ "manuf": "Producent: {manufacturer}",
+ "no_area": "Brak obszaru",
+ "power_source": "Źródło zasilania",
+ "quirk": "Quirk",
+ "services": {
+ "reconfigure": "Ponowna konfiguracja urządzenia ZHA (uzdrawianie urządzenia). Użyj tego polecenia, jeśli masz problemy z urządzeniem. Jeśli urządzenie jest zasilane bateryjnie, upewnij się, że nie jest uśpione i przyjmie polecenie rekonfiguracji.",
+ "remove": "Usuń urządzenie z sieci Zigbee.",
+ "updateDeviceName": "Wprowadź niestandardową nazwę tego urządzenia w rejestrze urządzeń.",
+ "zigbee_information": "Wyświetl informacje o urządzeniu Zigbee."
+ },
+ "unknown": "Nieznany",
+ "zha_device_card": {
+ "device_name_placeholder": "Zmień nazwę urządzenia"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Atrybut",
+ "battery_device_warning": "Przed rozpoczęciem ponownej konfiguracji, urządzenia zasilane bateryjnie muszą zostać wybudzone. Zapoznaj się z instrukcją obsługi urządzenia, aby uzyskać informacje dotyczące wybudzania.",
+ "bind_header": "Wiązanie",
+ "button_hide": "Ukryj szczegóły",
+ "button_show": "Pokaż szczegóły",
+ "cluster_header": "Klaster",
+ "configuration_complete": "Ponowna konfiguracja urządzenia zakończona.",
+ "configuration_failed": "Ponowna konfiguracja urządzenia nie powiodła się. Dodatkowe informacje mogą być dostępne w logach.",
+ "configuring_alt": "Konfigurowanie",
+ "heading": "Ponowne konfigurowanie urządzenia",
+ "in_progress": "Urządzenie jest ponownie konfigurowane. To może zająć trochę czasu.",
+ "introduction": "Skonfiguruj ponownie urządzenie w sieci Zigbee. Użyj tej funkcji, jeśli urządzenie nie działa poprawnie.",
+ "min_max_change": "min/max/zmiana",
+ "reporting_header": "Raportowanie",
+ "run_in_background": "Możesz zamknąć to okno, a ponowna konfiguracja będzie kontynuowane w tle.",
+ "start_reconfiguration": "Rozpocznij konfigurację urządzenia"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\n one {dzień}\n other {dni}\n}",
+ "hour": "{count} {count, plural,\n one {godzina}\n few {godziny}\n many {godzin}\n other {godzin}\n}",
+ "minute": "{count} {count, plural,\n one {minuta}\n few {minuty}\n many {minut}\n other {minut}\n}",
+ "second": "{count} {count, plural,\n one {sekunda}\n few {sekundy}\n many {sekund}\n other {sekund}\n}",
+ "week": "{count} {count, plural,\n one {tydzień}\n few {tygodnie}\n many {tygodni}\n other {tygodni}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Nadal możesz edytować konfigurację w YAML.",
+ "editor_not_available": "Brak edytora wizualnego dla typu \"{type}\".",
+ "editor_not_supported": "Edytor wizualny nie jest obsługiwany dla tej konfiguracji",
+ "error_detected": "Wykryto błędy konfiguracji",
+ "key_missing": "Brak wymaganego klucza \"{key}\".",
+ "key_not_expected": "Klucz \"{key}\" nie jest oczekiwany lub nie jest obsługiwany przez edytor wizualny.",
+ "key_wrong_type": "Wprowadzona wartość dla \"{key}\" nie jest obsługiwana przez edytor wizualny. Obsługujemy ({type_correct}), a otrzymaliśmy ({type_wrong}).",
+ "no_state_array_support": "Wielokrotne wartości stanu nie są obsługiwane w edytorze wizualnym",
+ "no_template_editor_support": "Szablony nie są obsługiwane w edytorze wizualnym",
+ "no_type_provided": "Nie wprowadzono typu."
+ },
+ "supervisor": {
+ "ask": "Poproś o pomoc",
+ "observer": "Sprawdź obserwatora",
+ "reboot": "Spróbuj ponownie uruchomić hosta",
+ "system_health": "Sprawdź kondycję systemu",
+ "title": "Nie można wczytać panelu Supervisora!",
+ "wait": "Jeśli właśnie uruchomiłeś system, upewnij się, że dałeś Supervisorowi wystarczająco dużo czasu na start."
+ }
+ },
+ "login-form": {
+ "log_in": "Zaloguj",
+ "password": "Hasło",
+ "remember": "Zapamiętaj"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Kliknij przycisk, aby skonfigurować {entity}",
+ "close": "Zamknij",
+ "dismiss_all": "Odrzuć wszystkie",
+ "empty": "Brak powiadomień",
+ "title": "Powiadomienia"
+ },
+ "notification_toast": {
+ "connection_lost": "Utracono połączenie. Łączę ponownie…",
+ "dismiss": "Ukryj",
+ "integration_starting": "{integration} uruchamia się, nie wszystko będzie dostępne, dopóki uruchamianie się nie zakończy.",
+ "service_call_failed": "Nie udało się wywołać usługi {service}.",
+ "started": "Home Assistant uruchomił się!",
+ "starting": "Home Assistant uruchamia się, nie wszystko będzie dostępne, dopóki uruchamianie się nie zakończy.",
+ "triggered": "Wyzwolenie {name}",
+ "wrapping_up_startup": "Home Assistant uruchamia się, nie wszystko będzie dostępne, dopóki uruchamianie się nie zakończy."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Brakuje opcji konfiguracji? Włącz tryb zaawansowany",
+ "link_profile_page": "strona Twojego profilu"
+ },
+ "areas": {
+ "add_picture": "Dodaj zdjęcie",
+ "assigned_to_area": "Przypisane do obszaru",
+ "caption": "Obszary",
+ "data_table": {
+ "area": "Obszar",
+ "devices": "Urządzenia",
+ "entities": "Encje"
+ },
+ "delete": {
+ "confirmation_text": "Wszystkie urządzenia z tego obszaru pozostaną bez przypisanego obszaru.",
+ "confirmation_title": "Czy na pewno chcesz usunąć ten obszar?"
+ },
+ "description": "Grupuj urządzenia i encje w obszary",
+ "edit_settings": "Ustawienia obszaru",
+ "editor": {
+ "area_id": "Identyfikator obszaru",
+ "create": "Utwórz",
+ "default_name": "Nowy obszar",
+ "delete": "Usuń",
+ "linked_entities_caption": "Encje",
+ "name": "Nazwa",
+ "name_required": "Nazwa jest wymagana",
+ "no_linked_entities": "Brak encji powiązanych z tym obszarem.",
+ "unknown_error": "Nieznany błąd",
+ "update": "Aktualizuj"
+ },
+ "picker": {
+ "create_area": "Utwórz obszar",
+ "header": "Obszary",
+ "integrations_page": "Strona integracji",
+ "introduction": "Obszary służą do organizacji urządzeń. Informacje te będą używane w Home Assistant, aby pomóc w organizacji interfejsu, uprawnień i integracji z innymi systemami.",
+ "introduction2": "Aby umieścić urządzenia w danym obszarze, użyj poniższego linku, aby przejść do strony integracji, a następnie kliknij skonfigurowaną integrację, aby dostać się do kart urządzeń.",
+ "no_areas": "Wygląda na to, że jeszcze nie masz zdefiniowanych obszarów!"
+ },
+ "targeting_area": "Nakierowane na obszar"
+ },
+ "automation": {
+ "caption": "Automatyzacje",
+ "description": "Twórz niestandardowe zasady zachowania w swoim domu",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Użyj schematu"
+ },
+ "header": "Utwórz nową automatyzację",
+ "how": "Jak chcesz utworzyć nową automatyzację?",
+ "start_empty": "Zacznij od pustej automatyzacji",
+ "start_empty_description": "Stwórz nową automatyzację",
+ "thingtalk": {
+ "create": "Utwórz",
+ "header": "Opisz automatyzację, którą chcesz utworzyć",
+ "input_label": "Co powinna zrobić ta automatyzacja?",
+ "intro": "A my postaramy się ją dla Ciebie utworzyć. Na przykład: Wyłącz światła, kiedy wyjdę."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Dodaj akcję",
+ "delete": "Usuń",
+ "delete_confirm": "Czy na pewno chcesz to usunąć?",
+ "duplicate": "Duplikuj",
+ "header": "Akcje",
+ "introduction": "Akcje są wykonywane przez Home Assistanta po uruchomieniu automatyzacji.",
+ "learn_more": "Dowiedz się więcej o akcjach",
+ "name": "Akcja",
+ "type": {
+ "choose": {
+ "add_option": "Dodaj opcję",
+ "conditions": "Warunki",
+ "default": "Akcje domyślne",
+ "label": "Wybór",
+ "option": "Opcja {number}",
+ "remove_option": "Usuń opcję",
+ "sequence": "Akcje"
+ },
+ "condition": {
+ "label": "Warunek"
+ },
+ "delay": {
+ "delay": "Czas trwania",
+ "label": "Opóźnienie"
+ },
+ "device_id": {
+ "action": "Akcja",
+ "extra_fields": {
+ "brightness_pct": "Jasność",
+ "code": "Kod",
+ "flash": "Flash",
+ "humidity": "Wilgotność",
+ "message": "Wiadomość",
+ "mode": "Tryb",
+ "position": "Pozycja",
+ "title": "Tytuł",
+ "value": "Wartość"
+ },
+ "label": "Urządzenie"
+ },
+ "event": {
+ "event": "Zdarzenie",
+ "label": "Wywołanie zdarzenia",
+ "service_data": "Dane usługi"
+ },
+ "repeat": {
+ "label": "Powtórzenie",
+ "sequence": "Akcje",
+ "type": {
+ "count": {
+ "label": "Licznik"
+ },
+ "until": {
+ "conditions": "Warunki dopóki",
+ "label": "Dopóki"
+ },
+ "while": {
+ "conditions": "Warunki podczas",
+ "label": "Podczas"
+ }
+ },
+ "type_select": "Typ powtórzenia"
+ },
+ "scene": {
+ "label": "Aktywuj scenę"
+ },
+ "service": {
+ "label": "Wywołanie usługi"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Kontynuuj po przekroczeniu limitu czasu",
+ "label": "Czekaj na wyzwalacz",
+ "timeout": "Limit czasu (opcjonalnie)"
+ },
+ "wait_template": {
+ "continue_timeout": "Kontynuuj po przekroczeniu limitu czasu",
+ "label": "Oczekiwanie na szablon",
+ "timeout": "Limit czasu (opcjonalnie)",
+ "wait_template": "Szablon czekania"
+ }
+ },
+ "type_select": "Typ akcji",
+ "unsupported_action": "Brak wsparcia edytora wizualnego dla akcji: {action}"
+ },
+ "alias": "Nazwa",
+ "blueprint": {
+ "blueprint_to_use": "Wybierz schemat",
+ "header": "Schemat",
+ "no_blueprints": "Nie masz żadnych schematów",
+ "no_inputs": "Ten schemat nie ma żadnych danych wejściowych"
+ },
+ "conditions": {
+ "add": "Dodaj warunek",
+ "delete": "Usuń",
+ "delete_confirm": "Czy na pewno chcesz to usunąć?",
+ "duplicate": "Duplikuj",
+ "header": "Warunki",
+ "introduction": "Warunki nie są wymagane w automatyzacji, ale zastosowanie ich wykluczy jej potencjalnie niechciane uruchomienia, póki logika każdego z nich przyjmuje wartość pozytywną.",
+ "learn_more": "Dowiedz się więcej o warunkach",
+ "name": "Warunek",
+ "type": {
+ "and": {
+ "label": "I"
+ },
+ "device": {
+ "condition": "Warunek",
+ "extra_fields": {
+ "above": "Powyżej",
+ "below": "Poniżej",
+ "for": "Czas trwania",
+ "hvac_mode": "Tryb pracy HVAC",
+ "preset_mode": "Ustawienie predefiniowane"
+ },
+ "label": "Urządzenie"
+ },
+ "not": {
+ "label": "Nie"
+ },
+ "numeric_state": {
+ "above": "Powyżej",
+ "below": "Poniżej",
+ "label": "Stan numeryczny",
+ "value_template": "Szablon wartości (opcjonalnie)"
+ },
+ "or": {
+ "label": "Lub"
+ },
+ "state": {
+ "label": "Stan",
+ "state": "Stan"
+ },
+ "sun": {
+ "after": "Po:",
+ "after_offset": "Po przesunięciu (opcjonalnie)",
+ "before": "Przed:",
+ "before_offset": "Przed przesunięciem (opcjonalnie)",
+ "label": "Słońce",
+ "sunrise": "Wschód słońca",
+ "sunset": "zachód słońca"
+ },
+ "template": {
+ "label": "Szablon",
+ "value_template": "Szablon wartości"
+ },
+ "time": {
+ "after": "Po",
+ "before": "Przed",
+ "label": "Czas",
+ "type_input": "Wartość pomocnika typu data/czas",
+ "type_value": "Ustalony czas",
+ "weekdays": {
+ "fri": "Piątek",
+ "mon": "Poniedziałek",
+ "sat": "Sobota",
+ "sun": "Niedziela",
+ "thu": "Czwartek",
+ "tue": "Wtorek",
+ "wed": "Środa"
+ }
+ },
+ "trigger": {
+ "id": "Identyfikator wyzwalacza",
+ "label": "Wyzwalacz",
+ "no_triggers": "Brak dostępnych wyzwalaczy"
+ },
+ "zone": {
+ "entity": "Encja z lokalizacją",
+ "label": "Strefa",
+ "zone": "Strefa"
+ }
+ },
+ "type_select": "Typ warunku",
+ "unsupported_condition": "Brak wsparcia edytora wizualnego dla warunku: {condition}"
+ },
+ "copy_to_clipboard": "Skopiuj do schowka",
+ "default_name": "Nowa automatyzacja",
+ "description": {
+ "label": "Opis",
+ "placeholder": "Opcjonalny opis"
+ },
+ "edit_ui": "Edytuj w edytorze wizualnym",
+ "edit_yaml": "Edycja w YAML",
+ "enable_disable": "Włącz/wyłącz automatyzację",
+ "introduction": "Użyj automatyzacji, aby ożywić swój dom",
+ "load_error_not_editable": "Tylko automatyzacje zdefiniowane w pliku automations.yaml są edytowalne",
+ "load_error_unknown": "Wystąpił błąd podczas wczytywania automatyzacji ({err_no})",
+ "max": {
+ "parallel": "Maksymalna liczba równoległych uruchomień",
+ "queued": "Długość kolejki"
+ },
+ "modes": {
+ "description": "Tryb kontroluje, co się dzieje podczas uruchamiania automatyzacji, gdy jest ona nadal wykonywana z jednego lub kilku poprzednich uruchomień. Zapoznaj się z {documentation_link} aby uzyskać więcej informacji.",
+ "documentation": "dokumentacją automatyzacji",
+ "label": "Tryb",
+ "parallel": "Równolegle",
+ "queued": "Kolejkowanie",
+ "restart": "Restart",
+ "single": "Pojedynczy (domyślnie)"
+ },
+ "move_down": "Przesuń w dół",
+ "move_up": "Przesuń w górę",
+ "save": "Zapisz",
+ "show_trace": "Pokaż ślad",
+ "triggers": {
+ "add": "Dodaj wyzwalacz",
+ "delete": "Usuń",
+ "delete_confirm": "Czy na pewno chcesz to usunąć?",
+ "duplicate": "Duplikuj",
+ "edit_id": "Edytuj identyfikator wyzwalacza",
+ "header": "Wyzwalacze",
+ "id": "Identyfikator wyzwalacza",
+ "introduction": "Wyzwalacze uruchamiają przetwarzanie automatyzacji. Możliwe jest stworzenie wielu wyzwalaczy dla tej samej automatyzacji. Po uruchomieniu wyzwalacza Home Assistant sprawdzi ewentualne warunki i wywoła akcje.",
+ "learn_more": "Dowiedz się więcej o wyzwalaczach",
+ "name": "Wyzwalacz",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Powyżej",
+ "below": "Poniżej",
+ "for": "Czas trwania (opcjonalnie)",
+ "zone": "Strefa"
+ },
+ "label": "Urządzenie",
+ "trigger": "Wyzwalacz"
+ },
+ "event": {
+ "context_user_pick": "Wybierz użytkownika",
+ "context_user_picked": "Użytkownik wywołujący zdarzenie",
+ "context_users": "Tylko zdarzenia wywołane przez",
+ "event_data": "Dane zdarzenia",
+ "event_type": "Typ zdarzenia",
+ "label": "Zdarzenie"
+ },
+ "geo_location": {
+ "enter": "wejście",
+ "event": "Zdarzenie:",
+ "label": "Geolokalizacja",
+ "leave": "wyjście",
+ "source": "Źródło",
+ "zone": "Strefa"
+ },
+ "homeassistant": {
+ "event": "Zdarzenie:",
+ "label": "Home Assistant",
+ "shutdown": "zakończenie",
+ "start": "uruchomienie"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Payload (opcjonalnie)",
+ "topic": "Temat"
+ },
+ "numeric_state": {
+ "above": "Powyżej",
+ "below": "Poniżej",
+ "label": "Stan numeryczny",
+ "value_template": "Szablon wartości (opcjonalnie)"
+ },
+ "state": {
+ "attribute": "Atrybut (opcjonalnie)",
+ "for": "Przez (opcjonalnie)",
+ "from": "Z (opcjonalnie)",
+ "label": "Stan",
+ "to": "Na (opcjonalnie)"
+ },
+ "sun": {
+ "event": "Zdarzenie:",
+ "label": "Słońce",
+ "offset": "Przesunięcie (opcjonalnie)",
+ "sunrise": "wschód słońca",
+ "sunset": "zachód słońca"
+ },
+ "tag": {
+ "label": "Tag"
+ },
+ "template": {
+ "label": "Szablon",
+ "value_template": "Szablon wartości"
+ },
+ "time": {
+ "at": "O",
+ "label": "Czas",
+ "type_input": "Wartość pomocnika typu data/czas",
+ "type_value": "Ustalony czas"
+ },
+ "time_pattern": {
+ "hours": "Godziny",
+ "label": "Szablon czasu",
+ "minutes": "Minuty",
+ "seconds": "Sekundy"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Identyfikator Webhook"
+ },
+ "zone": {
+ "enter": "Wprowadź",
+ "entity": "Encja z lokalizacją",
+ "event": "Zdarzenie:",
+ "label": "Strefa",
+ "leave": "Opuść",
+ "zone": "Strefa"
+ }
+ },
+ "type_select": "Typ wyzwalacza",
+ "unsupported_platform": "Brak wsparcia edytora wizualnego dla platformy: {platform}"
+ },
+ "unsaved_confirm": "Masz niezapisane zmiany. Na pewno chcesz wyjść?"
+ },
+ "picker": {
+ "add_automation": "Dodaj automatyzację",
+ "delete_automation": "Usuń automatyzację",
+ "delete_confirm": "Czy na pewno chcesz usunąć tę automatyzację?",
+ "dev_automation": "Debuguj automatyzację",
+ "dev_only_editable": "Można debugować tylko automatyzacje mające unikalne identyfikatory.",
+ "duplicate": "Duplikuj",
+ "duplicate_automation": "Duplikuj automatyzację",
+ "edit_automation": "Edytuj automatyzację",
+ "header": "Edytor automatyzacji",
+ "headers": {
+ "name": "Nazwa"
+ },
+ "introduction": "Edytor automatyzacji pozwala tworzyć i edytować automatyzacje Kliknij poniższy link, aby przeczytać instrukcję, jak poprawnie konfigurować automatyzacje w Home Assistant.",
+ "learn_more": "Dowiedz się więcej o automatyzacjach",
+ "no_automations": "Nie znaleziono żadnych automatyzacji",
+ "only_editable": "Tylko automatyzacje zdefiniowane w pliku automations.yaml są edytowalne.",
+ "pick_automation": "Wybierz automatyzację do edycji",
+ "show_info_automation": "Pokaż informacje o automatyzacji"
+ },
+ "thingtalk": {
+ "create": "Utwórz automatyzację",
+ "link_devices": {
+ "ambiguous_entities": "Co najmniej jedno urządzenie ma więcej niż jedną pasującą encję. Wybierz tę, której chcesz użyć.",
+ "header": "Wspaniale! Teraz musimy podłączyć jakieś urządzenia",
+ "unknown_placeholder": "Nieznany symbol zastępczy"
+ },
+ "task_selection": {
+ "error_empty": "Wprowadź polecenie lub naciśnij \"Pomiń\"",
+ "error_unsupported": "Nie mogliśmy (jeszcze?) utworzyć takiej automatyzacji",
+ "for_example": "Na przykład:",
+ "header": "Utwórz nową automatyzację",
+ "introduction": "Wpisz poniżej, co ma robić ta automatyzacja, a my spróbujemy przekształcić ją w automatyzację Home Assistanta.",
+ "language_note": "Uwaga: obecnie obsługiwany jest tylko język angielski."
+ }
+ },
+ "trace": {
+ "download_trace": "Pobierz ślad",
+ "edit_automation": "Edytuj automatyzację",
+ "newer_trace": "Nowszy ślad",
+ "older_trace": "Starszy ślad",
+ "refresh": "Odśwież"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "fora społeczności",
+ "error_no_url": "Wprowadź adres URL schematu.",
+ "file_name": "Ścieżka do schematu",
+ "header": "Importuj schemat",
+ "import_btn": "Podgląd schematu",
+ "import_header": "Schemat: \"{name}\"",
+ "import_introduction_link": "Możesz importować schematy innych użytkowników z Githuba i {community_link}. Wpisz poniżej adres URL schematu.",
+ "importing": "Wczytywanie schematu...",
+ "raw_blueprint": "Zawartość schematu",
+ "save_btn": "Importuj schemat",
+ "saving": "Importowanie schematu…",
+ "unsupported_blueprint": "Ten schemat nie jest obsługiwany",
+ "url": "URL schematu"
+ },
+ "caption": "Schematy",
+ "description": "Zarządzaj schematami",
+ "overview": {
+ "add_blueprint": "Importuj schemat",
+ "confirm_delete_header": "Usunąć ten schemat?",
+ "confirm_delete_text": "Czy na pewno chcesz usunąć ten schemat?",
+ "create_automation": "Utwórz automatyzację",
+ "create_script": "Utwórz skrypt",
+ "delete_blueprint": "Usuń schemat",
+ "discover_more": "Odkryj więcej schematów",
+ "header": "Edytor schematów",
+ "headers": {
+ "domain": "Domena",
+ "file_name": "Nazwa pliku",
+ "name": "Nazwa",
+ "type": "Typ"
+ },
+ "introduction": "Konfiguracja schematów umożliwia ich importowanie i zarządzanie nimi.",
+ "learn_more": "Dowiedz się więcej o używaniu schematów",
+ "share_blueprint": "Udostępnij schemat",
+ "share_blueprint_no_url": "Nie można udostępnić schematu: brak źródłowego adresu URL",
+ "types": {
+ "automation": "Automatyzacja",
+ "script": "Skrypt"
+ },
+ "use_blueprint": "Utwórz automatyzację"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Dokumentacja konfiguracji",
+ "disable": "Wyłącz",
+ "enable": "Włącz",
+ "enable_ha_skill": "Włącz skill Home Assistant dla Alexy",
+ "enable_state_reporting": "Włącz raportowanie stanów",
+ "info": "Dzięki integracji z Alexą dla Chmury Home Assistant będzie możliwe kontrolowanie wszystkich urządzeń Home Assistanta za pośrednictwem dowolnego urządzenia obsługującego Amazon Alexa.",
+ "info_state_reporting": "Jeśli włączysz raportowanie stanów, Home Assistant wyśle wszystkie zmiany stanu udostępnionych encji na serwery Amazona. Dzięki temu zawsze możesz zobaczyć najnowsze stany w aplikacji Alexa i używać zmian stanów do tworzenia rutyn.",
+ "manage_entities": "Zarządzanie encjami",
+ "state_reporting_error": "Nie można przesłać stanu {enable_disable}",
+ "sync_entities": "Synchronizuj encje z Amazon",
+ "sync_entities_error": "Nie udało się zsynchronizować encji:",
+ "title": "Alexa"
+ },
+ "connected": "połączono",
+ "connecting": "Łączenie…",
+ "connection_status": "Status połączenia z chmurą",
+ "fetching_subscription": "Pobieranie subskrypcji…",
+ "google": {
+ "config_documentation": "Dokumentacja konfiguracji",
+ "devices_pin": "Kod PIN urządzeń bezpieczeństwa",
+ "enable_ha_skill": "Włącz skill Chmury Home Assistant dla Asystenta Google",
+ "enable_state_reporting": "Włącz raportowanie stanów",
+ "enter_pin_error": "Nie można zapisać kodu PIN:",
+ "enter_pin_hint": "Wprowadź kod PIN",
+ "enter_pin_info": "Wpisz kod PIN, aby wejść w interakcję z urządzeniami bezpieczeństwa. Urządzeniami bezpieczeństwa są drzwi, drzwi garażowe i zamki. Podczas interakcji z takimi urządzeniami za pośrednictwem Asystenta Google zostaniesz poproszony o wprowadzenie tego kodu PIN.",
+ "info": "Dzięki integracji z Asystentem Google dla Chmury Home Assistant będzie możliwe kontrolowanie wszystkich urządzeń Home Assistanta za pośrednictwem dowolnego urządzenia obsługującego Asystenta Google.",
+ "info_state_reporting": "Jeśli włączysz raportowanie stanów, Home Assistant wyśle wszystkie zmiany stanu udostępnionych encji na serwery Google. Dzięki temu zawsze możesz zobaczyć najnowsze stany w aplikacji Google.",
+ "manage_entities": "Zarządzanie encjami",
+ "not_configured_text": "Aby móc korzystać z Asystenta Google, musisz aktywować skill Chmury Home Assistant dla Asystenta Google w aplikacji Google Home.",
+ "not_configured_title": "Asystent Google nie jest aktywowany",
+ "security_devices": "Urządzenia bezpieczeństwa",
+ "sync_entities": "Synchronizuj encje",
+ "sync_entities_404_message": "Nie udało się zsynchronizować encji z Google, poproś Google Asystenta 'Hej, Google, zsynchronizuj moje urządzenia', aby ponowić próbę synchronizacji.",
+ "title": "Asystent Google"
+ },
+ "integrations": "Integracje",
+ "integrations_introduction": "Integracje Chmury Home Assistant pozwalają łączyć się z usługami w chmurze bez konieczności publicznego udostępniania instancji Home Assistant w Internecie.",
+ "integrations_introduction2": "Wejdź na stronę, aby poznać ",
+ "integrations_link_all_features": "wszystkie dostępne funkcje",
+ "manage_account": "Zarządzanie kontem",
+ "nabu_casa_account": "Konto Nabu Casa",
+ "not_connected": "brak połączenia",
+ "remote": {
+ "access_is_being_prepared": "Trwa przygotowywanie dostępu zdalnego. Powiadomimy Cię, gdy będzie gotowy.",
+ "certificate_info": "Informacje o certyfikacie",
+ "connected": "Połączono",
+ "info": "Chmura Home Assistant umożliwia bezpieczny zdalny dostęp do instancji Home Assistanta z dala od domu.",
+ "instance_is_available": "Twoja instancja jest dostępna pod adresem",
+ "instance_will_be_available": "Twoja instancja będzie dostępna pod adresem",
+ "link_learn_how_it_works": "Dowiedz się, jak to działa",
+ "not_connected": "Brak połączenia",
+ "reconnecting": "Nie połączono. Próba ponownego połączenia.",
+ "remote_enabled": {
+ "caption": "Połącz automatycznie",
+ "description": "Włącz tę opcję, aby mieć pewność, że ta instancja Home Assistant jest zawsze dostępna zdalnie."
+ },
+ "title": "Dostęp zdalny"
+ },
+ "sign_out": "Wyloguj",
+ "thank_you_note": "Dziękujemy, że jesteś częścią Chmury Home Assistant. To dzięki ludziom takim jak Ty jesteśmy w stanie zapewnić wszystkim wspaniałe doświadczenia z automatyzacją domu. Dziękuję Ci!",
+ "tts": {
+ "default_language": "Używany język domyślny",
+ "dialog": {
+ "create_automation": "Utwórz automatyzację",
+ "example_message": "Witaj {name} , możesz odtwarzać dowolny tekst na dowolnym obsługiwanym odtwarzaczu multimedialnym!",
+ "header": "Wypróbuj zamiany tekstu na mowę",
+ "play": "Odtwarzaj",
+ "target": "Cel",
+ "target_browser": "Przeglądarka"
+ },
+ "female": "Kobieta",
+ "info": "Podaruj swemu domu osobowość dając mu możliwość mówienia do Ciebie za pomocą naszych usług zamiany tekstu na mowę. Możesz ich użyć w automatyzacjach i skryptach, korzystając z usługi {service}.",
+ "male": "Mężczyzna",
+ "title": "Zamiana tekstu na mowę",
+ "try": "Wypróbuj"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Nie udało się wyłączyć webhook:",
+ "info": "Wszystko, co jest skonfigurowane do działania poprzez webhook, może otrzymać publicznie dostępny adres URL, aby umożliwić wysyłanie danych do Home Assistanta z dowolnego miejsca, bez narażania instancji na publiczny dostęp z Internetu.",
+ "link_learn_more": "Dowiedz się więcej o tworzeniu automatyzacji opartych na webhookach.",
+ "loading": "Wczytywanie…",
+ "manage": "Zarządzanie",
+ "no_hooks_yet": "Wygląda na to, że nie ma jeszcze żadnych webhooków. Rozpocznij od skonfigurowania ",
+ "no_hooks_yet2": " lub tworząc ",
+ "no_hooks_yet_link_automation": "Automatyzacja webhook",
+ "no_hooks_yet_link_integration": "Integracja oparta na webhookach",
+ "title": "Webhooki"
+ }
+ },
+ "alexa": {
+ "banner": "Edytowanie, które encje są udostępnione za pomocą interfejsu użytkownika, jest wyłączone, ponieważ skonfigurowano filtry encji w pliku configuration.yaml.",
+ "dont_expose_entity": "Nie udostępniaj encji",
+ "expose": "Udostępnione do Alexy",
+ "expose_entity": "Udostępniaj encję",
+ "exposed": "{selected} udostępniona",
+ "exposed_entities": "Udostępnione encje",
+ "follow_domain": "Obserwuj domenę",
+ "manage_domains": "Zarządzaj domenami",
+ "not_exposed": "{selected} nieudostępniona",
+ "not_exposed_entities": "Nieudostępnione encje",
+ "title": "Alexa"
+ },
+ "description_features": "Sterowanie spoza domu i integracja z Alexą i Asystentem Google.",
+ "description_login": "Zalogowany jako {email}",
+ "description_not_login": "Nie zalogowany",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Data ważności certyfikatu:",
+ "certificate_information": "Informacja o certyfikacie",
+ "close": "Zamknij",
+ "fingerprint": "Odcisk palca certyfikatu:",
+ "will_be_auto_renewed": "będzie automatycznie odnawiany"
+ },
+ "dialog_cloudhook": {
+ "available_at": "Webhook jest dostępny pod następującym adresem URL:",
+ "close": "Zamknij",
+ "confirm_disable": "Czy na pewno chcesz wyłączyć ten webhook?",
+ "copied_to_clipboard": "Skopiowano do schowka",
+ "info_disable_webhook": "Jeśli nie chcesz już używać tego webhooka, możesz",
+ "link_disable_webhook": "wyłączyć go",
+ "managed_by_integration": "Ten webhook jest zarządzany przez integrację i nie można go wyłączyć.",
+ "view_documentation": "Dokumentacja",
+ "webhook_for": "Webhook dla {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "Sprawdź pocztę e-mail, aby uzyskać instrukcje dotyczące resetowania hasła.",
+ "email": "Adres e-mail",
+ "email_error_msg": "Niepoprawny adres e-mail",
+ "instructions": "Wprowadź swój adres e-mail, a my wyślemy Ci link resetowania hasła.",
+ "send_reset_email": "Wyślij wiadomość e-mail",
+ "subtitle": "Zapomniałeś hasła",
+ "title": "Zapomniane hasło"
+ },
+ "google": {
+ "banner": "Edytowanie, które encje są udostępnione za pomocą interfejsu użytkownika, jest wyłączone, ponieważ skonfigurowano filtry encji w pliku configuration.yaml.",
+ "disable_2FA": "Wyłącz uwierzytelnianie dwuskładnikowe",
+ "dont_expose_entity": "Nie udostępniaj encji",
+ "expose": "Udostępnione do Asystenta Google",
+ "expose_entity": "Udostępniaj encję",
+ "exposed": "{selected} udostępniona",
+ "exposed_entities": "Udostępnione encje",
+ "follow_domain": "Obserwuj domenę",
+ "manage_domains": "Zarządzaj domenami",
+ "not_exposed": "{selected} nieudostępniona",
+ "not_exposed_entities": "Nieudostępnione encje",
+ "sync_to_google": "Synchronizowanie zmian z Google.",
+ "title": "Asystent Google"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Przed zalogowaniem musisz potwierdzić swój adres e-mail.",
+ "alert_password_change_required": "Musisz zmienić hasło przed zalogowaniem.",
+ "dismiss": "Odrzuć",
+ "email": "Adres e-mail",
+ "email_error_msg": "Niepoprawny adres e-mail",
+ "forgot_password": "Zapomniałeś hasła?",
+ "introduction": "Chmura Home Assistant zapewnia bezpieczne zdalne połączenie z instancją z dala od domu. Umożliwia także łączenie się z usługami w chmurze: Amazon Alexa i Google Assistant.",
+ "introduction2": "Ta usługa jest prowadzona przez naszego partnera ",
+ "introduction2a": ", firmę założoną przez założycieli Home Assistant.",
+ "introduction3": "Chmura Home Assistant to usługa subskrypcyjna z bezpłatnym miesięcznym okresem próbnym. Informacje o środkach płatności nie są konieczne.",
+ "learn_more_link": "Dowiedz się więcej o Chmurze Home Assistant",
+ "password": "Hasło",
+ "password_error_msg": "Hasło musi zawierać przynajmniej 8 znaków",
+ "sign_in": "Zaloguj",
+ "start_trial": "Rozpocznij bezpłatny miesięczny okres próbny",
+ "title": "Logowanie do chmury",
+ "trial_info": "Informacje o środkach płatności nie są konieczne"
+ },
+ "register": {
+ "account_created": "Konto utworzone! Sprawdź pocztę e-mail, aby uzyskać instrukcje dotyczące aktywacji konta.",
+ "create_account": "Utwórz konto",
+ "email_address": "Adres e-mail",
+ "email_error_msg": "Niepoprawny adres e-mail",
+ "feature_amazon_alexa": "integracja z Amazon Alexa",
+ "feature_google_home": "integracja z Google Assistant",
+ "feature_remote_control": "kontrola Home Assistantem z dala od domu",
+ "feature_webhook_apps": "prosta integracja z aplikacjami opartymi na webhookach, takimi jak OwnTracks",
+ "headline": "Rozpocznij darmowy okres próbny",
+ "information": "Utwórz konto, aby rozpocząć bezpłatny miesięczny okres próbny Chmury Home Assistant. Informacje o środkach płatności nie są konieczne.",
+ "information2": "Wersja próbna zapewni Ci dostęp do wszystkich zalet Chmury Home Assistant, w tym:",
+ "information3": "Ta usługa jest prowadzona przez naszego partnera ",
+ "information3a": ", firmę założoną przez założycieli Home Assistant.",
+ "information4": "Rejestrując konto, wyrażasz zgodę na następujące warunki.",
+ "link_privacy_policy": "Polityka prywatności",
+ "link_terms_conditions": "Zasady i warunki",
+ "password": "Hasło",
+ "password_error_msg": "Hasło musi zawierać przynajmniej 8 znaków",
+ "resend_confirm_email": "Wyślij ponownie wiadomość e-mail z potwierdzeniem",
+ "start_trial": "Rozpocznij darmowy okres próbny",
+ "title": "Zarejestruj konto"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Masz niezapisane zmiany. Na pewno chcesz wyjść?"
+ },
+ "learn_more": "Dowiedz się więcej"
+ },
+ "core": {
+ "caption": "Ogólne",
+ "description": "Lokalizacja, sieć i analityka",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Waluta",
+ "edit_requires_storage": "Edytor wyłączony, ponieważ konfiguracja jest przechowywana w pliku configuration.yaml.",
+ "elevation": "Wysokość",
+ "elevation_meters": "metry/-ów",
+ "external_url": "Publiczny adres URL",
+ "find_currency_value": "Znajdź wartość",
+ "imperial_example": "stopnie Fahrenheita, funty",
+ "internal_url": "Lokalny adres URL",
+ "latitude": "Szerokość geograficzna",
+ "location_name": "Nazwa instalacji Home Assistant",
+ "longitude": "Długość geograficzna",
+ "metric_example": "stopnie Celsjusza, kilogramy",
+ "save_button": "Zapisz",
+ "time_zone": "Strefa czasowa",
+ "unit_system": "System metryczny",
+ "unit_system_imperial": "Imperialny",
+ "unit_system_metric": "Metryczny"
+ },
+ "header": "Konfiguracja ogólna",
+ "introduction": "Zarządzaj swoją lokalizacją, siecią i analityką."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Następujące atrybuty mają już zmienione wartości w pliku customize.yaml",
+ "attributes_not_set": "Następujące atrybuty nie mają wartości. Możesz nadać im wartość, jeśli chcesz.",
+ "attributes_outside": "Następujące atrybuty są zmienione spoza pliku customize.yaml",
+ "attributes_override": "Możesz nadpisać wartość, jeśli chcesz.",
+ "attributes_set": "Następujące atrybuty encji mają wartość.",
+ "caption": "Dostosowywanie",
+ "description": "Dostosuj swoje encje",
+ "different_include": "Możliwe poprzez domenę, globalnie lub inny plik.",
+ "pick_attribute": "Wybierz atrybut do nadpisania",
+ "picker": {
+ "documentation": "Dokumentacja dostosowywania",
+ "header": "Dostosowywanie",
+ "introduction": "Dostosuj atrybuty encji. Dodawane/edytowane dostosowywania zostaną wprowadzone natychmiast. Usunięte dostosowania zostaną uwzględnione, gdy encja zostanie zaktualizowana."
+ },
+ "warning": {
+ "include_link": "plik customize.yaml.",
+ "include_sentence": "Wygląda na to, że Twój plik configuration.yaml nieprawidłowo załącza",
+ "not_applied": "Wprowadzone tutaj zmiany są w nim zapisane, ale nie zostaną zastosowane po ponownym wczytaniu konfiguracji, chyba że dołączony plik jest na miejscu."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Zarządzaj automatyzacjami, scenami, skryptami oraz pomocnikami",
+ "title": "Automatyzacje oraz sceny"
+ },
+ "blueprints": {
+ "description": "Gotowe automatyzacje i skrypty stworzone przez społeczność",
+ "title": "Schematy"
+ },
+ "companion": {
+ "description": "Lokalizacja oraz powiadomienia",
+ "title": "Aplikacja towarzysząca"
+ },
+ "dashboards": {
+ "description": "Twórz niestandardowe zestawy kart do sterowania domem",
+ "title": "Dashboardy"
+ },
+ "devices": {
+ "description": "Integracje, urządzenia, rejestr encji oraz obszary",
+ "title": "Urządzenia oraz usługi"
+ },
+ "energy": {
+ "description": "Monitoruj produkcję i użycie energii",
+ "title": "Energia"
+ },
+ "people": {
+ "description": "Zarządzaj osobami oraz strefami, które śledzi Home Assistant",
+ "title": "Osoby oraz strefy"
+ },
+ "settings": {
+ "description": "Ustawienia ogólne, kontrola serwera, logi oraz informacje",
+ "title": "Ustawienia"
+ },
+ "supervisor": {
+ "description": "Twórz kopie zapasowe, sprawdzaj logi oraz uruchom ponownie system",
+ "title": "Dodatki, kopie zapasowe oraz Supervisor"
+ },
+ "tags": {
+ "description": "Uruchamiaj automatyzacje po zeskanowaniu tagu NFC, kodu QR, itp",
+ "title": "Tagi"
+ }
+ },
+ "devices": {
+ "add_prompt": "{name} używające tego urządzenia nie zostały jeszcze dodane. Możesz je dodać, klikając przycisk + powyżej.",
+ "automation": {
+ "actions": {
+ "caption": "Wykonaj akcje…",
+ "no_actions": "Brak akcji",
+ "unknown_action": "Nieznana akcja"
+ },
+ "automations": "Automatyzacje",
+ "conditions": {
+ "caption": "Jeśli…",
+ "no_conditions": "Brak warunków",
+ "unknown_condition": "Nieznany warunek"
+ },
+ "create": "Utwórz automatyzację z urządzeniem",
+ "create_disable": "Nie można utworzyć automatyzacji z wyłączonym urządzeniem",
+ "no_automations": "Brak automatyzacji",
+ "no_device_automations": "Brak dostępnych automatyzacji dla tego urządzenia.",
+ "triggers": {
+ "caption": "Gdy...",
+ "no_triggers": "Brak wyzwalaczy",
+ "unknown_trigger": "Nieznany wyzwalacz"
+ },
+ "unknown_automation": "Nieznana automatyzacja"
+ },
+ "cant_edit": "Możesz edytować tylko elementy utworzone w interfejsie użytkownika.",
+ "caption": "Urządzenia",
+ "confirm_delete": "Czy na pewno chcesz usunąć to urządzenie?",
+ "confirm_disable_config_entry": "Nie ma więcej urządzeń dla wpisu konfiguracji {entry_name}, czy zamiast tego chcesz wyłączyć ten wpis konfiguracyjny?",
+ "confirm_rename_entity_ids": "Czy chcesz także zmienić identyfikatory encji?",
+ "confirm_rename_entity_ids_warning": "Nie zmieni to konfiguracji (automatyzacji, skryptów, scen, dashboardów), które obecnie używają tych encji. Będziesz musiał je zaktualizować samemu, by używać nowych identyfikatorów encji!",
+ "data_table": {
+ "area": "Obszar",
+ "battery": "Bateria",
+ "device": "Urządzenie",
+ "integration": "Integracja",
+ "manufacturer": "Producent",
+ "model": "Model",
+ "no_devices": "Brak urządzeń",
+ "no_integration": "Brak integracji"
+ },
+ "delete": "Usuń",
+ "description": "Zarządzaj skonfigurowanymi urządzeniami",
+ "device_info": "Informacje o urządzeniu",
+ "device_not_found": "Urządzenie nie zostało znalezione.",
+ "disabled": "Wyłączone",
+ "disabled_by": {
+ "config_entry": "Wpis konfiguracji",
+ "integration": "Integracja",
+ "user": "Użytkownik"
+ },
+ "download_diagnostics": "Pobierz diagnostykę",
+ "edit_settings": "Edytuj ustawienia",
+ "enabled_cause": "Urządzenie jest wyłączone przez {cause}",
+ "enabled_description": "Wyłączone urządzenia nie będą wyświetlane, a encje do niego należące zostaną wyłączone i nie zostaną dodane do Home Assistanta.",
+ "enabled_label": "Włącz urządzenie",
+ "entities": {
+ "add_entities_lovelace": "Dodaj do interfejsu użytkownika Lovelace",
+ "config": "Konfiguracja",
+ "control": "Sterowanie",
+ "diagnostic": "Diagnostyka",
+ "disabled_entities": "+{count} {count, plural,\n one {wyłączona encja}\n few {wyłączone encje}\n many {wyłączonych encji}\n other {wyłączonych encji}\n}",
+ "entities": "Encje",
+ "hide_disabled": "Ukryj wyłączone",
+ "none": "To urządzenie nie ma żadnych encji",
+ "sensor": "Sensory",
+ "state": "Stan"
+ },
+ "name": "Nazwa",
+ "no_devices": "Brak urządzeń",
+ "open_configuration_url_device": "Przejdź do urządzenia",
+ "open_configuration_url_service": "Przejdź do usługi",
+ "picker": {
+ "filter": {
+ "filter": "Filtr",
+ "hidden_devices": "{number} {number, plural,\n one {ukryte urządzenie}\n few {ukryte urządzenia}\n many {ukrytych urządzeń}\n other {ukrytych urządzeń}\n}",
+ "show_all": "Pokaż wszystkie",
+ "show_disabled": "Pokaż wyłączone urządzenia"
+ },
+ "search": "Wyszukiwanie urządzeń"
+ },
+ "scene": {
+ "create": "Utwórz scenę z urządzeniem",
+ "create_disable": "Nie można utworzyć sceny z wyłączonym urządzeniem",
+ "no_scenes": "Brak scen",
+ "scenes": "Sceny"
+ },
+ "scenes": "Sceny",
+ "script": {
+ "create": "Utwórz skrypt z urządzeniem",
+ "create_disable": "Nie można utworzyć skryptu z wyłączonym urządzeniem",
+ "no_scripts": "Brak skryptów",
+ "scripts": "Skrypty"
+ },
+ "scripts": "Skrypty",
+ "unknown_error": "Nieznany błąd",
+ "unnamed_device": "Nienazwane urządzenie",
+ "update": "Aktualizuj",
+ "update_device_error": "Aktualizacja urządzenia nie powiodła się"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Dodaj system akumulatorowy",
+ "battery_systems": "Systemy akumulatorowe",
+ "dialog": {
+ "energy_into_battery": "Energia wchodząca do akumulatora (kWh)",
+ "energy_out_of_battery": "Energia wychodząca z akumulatora (kWh)",
+ "header": "Konfiguracja systemu akumulatorowego"
+ },
+ "learn_more": "Więcej informacji o tym, jak zacząć.",
+ "sub": "Jeśli masz akumulatory, możesz skonfigurować je tak, aby monitorować ilość przechowanej i użytej energii z akumulatorów.",
+ "title": "Domowy magazyn energii"
+ },
+ "caption": "Energia",
+ "delete_integration": "Czy na pewno chcesz usunąć tę integrację? Encje, które dostarcza, również zostaną usunięte.",
+ "delete_source": "Czy na pewno chcesz usunąć to źródło?",
+ "description": "Monitoruj produkcję i użycie energii",
+ "device_consumption": {
+ "add_device": "Dodaj urządzenie",
+ "add_stat": "Wybierz encję do śledzenia energii",
+ "devices": "Urządzenia",
+ "dialog": {
+ "device_consumption_energy": "Użycie energii przez urządzenie (kWh)",
+ "header": "Dodaj urządzenie",
+ "selected_stat_intro": "Wybierz encję, która reprezentuje zużycie energii przez urządzenie."
+ },
+ "learn_more": "Więcej informacji o tym, jak zacząć.",
+ "selected_stat": "Śledzenie energii dla",
+ "sub": "Śledzenie użycia energii przez poszczególne urządzenia pozwala Home Assistantowi na rozbicie użycia energii według urządzeń.",
+ "title": "Poszczególne urządzenia"
+ },
+ "gas": {
+ "add_gas_source": "Dodaj źródło gazu",
+ "dialog": {
+ "cost_entity": "Użyj encji z bieżącą ceną",
+ "cost_entity_input": "Encja z aktualną ceną za {unit}",
+ "cost_number": "Użyj stałej ceny",
+ "cost_number_input": "Cena za {unit}",
+ "cost_number_suffix": "{currency}/m³",
+ "cost_para": "Wybierz sposób, w jaki Home Assistant powinien śledzić koszty użytego gazu.",
+ "cost_stat": "Użyj encji do śledzenia kosztów całkowitych",
+ "cost_stat_input": "Encja kosztów całkowitych",
+ "energy_stat": "Użyty gaz (m³)",
+ "gas_usage": "Użycie gazu",
+ "header": "Konfiguracja użycia gazu",
+ "m3_or_kWh": "ft³, m³, Wh, kWh lub MWh",
+ "no_cost": "Nie śledź kosztów",
+ "paragraph": "Użycie gazu to jego objętość, która płynie do twojego domu."
+ },
+ "gas_consumption": "Użycie gazu",
+ "learn_more": "Więcej informacji o tym, jak zacząć.",
+ "sub": "Zezwól Home Assistantowi na monitorowanie użycia gazu.",
+ "title": "Użycie gazu"
+ },
+ "grid": {
+ "add_co2_signal": "Dodaj integrację sygnału CO2",
+ "add_consumption": "Dodaj użycie energii",
+ "add_return": "Dodaj produkcję",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Użyj encji z bieżącą ceną",
+ "cost_entity_input": "Encja z bieżącą ceną",
+ "cost_number": "Użyj stałej ceny",
+ "cost_number_input": "Cena za kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Wybierz sposób, w jaki Home Assistant powinien śledzić koszty użytej energii.",
+ "cost_stat": "Użyj encji do śledzenia całkowitych kosztów",
+ "cost_stat_input": "Encja kosztów całkowitych",
+ "energy_stat": "Użyta energia (kWh)",
+ "header": "Konfiguracja użycia energii",
+ "no_cost": "Nie śledź kosztów",
+ "paragraph": "Użycie to energia, która płynie z sieci energetycznej do Twojego domu."
+ },
+ "to": {
+ "cost_entity": "Użyj encji z aktualną stawką",
+ "cost_entity_input": "Encja z bieżącą stawką",
+ "cost_number": "Użyj stałej stawki",
+ "cost_number_input": "Stawka za kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Czy otrzymujesz zwrot pieniędzy, gdy zwracasz energię do sieci?",
+ "cost_stat": "Użyj encji do śledzenia łącznej kwoty zarobionych pieniędzy",
+ "cost_stat_input": "Encja całkowitego zwrotu",
+ "energy_stat": "Energia zwrócona do sieci (kWh)",
+ "header": "Konfiguracja produkcji energii",
+ "no_cost": "Nie otrzymuję zwrotu pieniędzy",
+ "paragraph": "Produkcja to energia, która przepływa z paneli słonecznych do sieci."
+ }
+ },
+ "grid_carbon_footprint": "Ślad węglowy użycia z sieci",
+ "grid_consumption": "Użycie energii z sieci",
+ "learn_more": "Więcej informacji o tym, jak zacząć.",
+ "return_to_grid": "Produkcja do sieci",
+ "sub": "Skonfiguruj ilość energii, której używasz i, jeśli produkujesz energię, którą oddajesz z powrotem. Dzięki temu Home Assistant może śledzić całe użycie energii w domu.",
+ "title": "Sieć elektryczna"
+ },
+ "new_device_info": "Po skonfigurowaniu nowego urządzenia może minąć do 2 godzin, zanim nowe dane pojawią się w panelu energetycznym.",
+ "solar": {
+ "add_solar_production": "Dodaj produkcję z energii słonecznej",
+ "dialog": {
+ "add_forecast": "Dodaj prognozę",
+ "dont_forecast_production": "Nie prognozuj produkcji",
+ "forecast_production": "Prognozowanie produkcji",
+ "header": "Skonfiguruj panele słoneczne",
+ "solar_production_energy": "Produkcja z energii słonecznej (kWh)",
+ "solar_production_forecast": "Prognoza produkcji z energii słonecznej",
+ "solar_production_forecast_description": "Dodanie informacji o prognozie produkcji z energii słonecznej pozwoli Ci szybko zobaczyć oczekiwaną produkcję na dziś."
+ },
+ "learn_more": "Więcej informacji o tym, jak zacząć.",
+ "solar_production": "Produkcja z energii słonecznej",
+ "stat_predicted_production": "Prognoza produkcji energii słonecznej",
+ "stat_production": "Twoja produkcja energii słonecznej",
+ "stat_return_to_grid": "Energia słoneczna oddana do sieci",
+ "sub": "Pozwól Home Assistantowi monitorować panele słoneczne i dać Ci wgląd w ich wydajność.",
+ "title": "Panele słoneczne"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "Następujące encje mają ujemną wartość, podczas gdy oczekiwana jest wartość dodatnia",
+ "title": "Encja ma ujemną wartość"
+ },
+ "entity_not_defined": {
+ "description": "Sprawdź integrację lub konfigurację, która zapewnia:",
+ "title": "Encja niezdefiniowana"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "Następujące encje mają klasę stanu \"measurement\", ale brakuje danych o \"last_reset\":",
+ "title": "Brak danych o ostatnim resecie"
+ },
+ "entity_state_non_numeric": {
+ "description": "Następujące jednostki mają stan, którego nie można sparsować jako liczby:",
+ "title": "Encja nie jest numeryczna"
+ },
+ "entity_unavailable": {
+ "description": "Stany tych skonfigurowanych encji są obecnie niedostępne:",
+ "title": "Encja niedostępna"
+ },
+ "entity_unexpected_device_class": {
+ "description": "Następujące encje nie mają oczekiwanej klasy urządzenia:",
+ "title": "Nieoczekiwana klasa urządzenia"
+ },
+ "entity_unexpected_state_class": {
+ "description": "Następujące encje nie mają oczekiwanej klasy stanu:",
+ "title": "Nieoczekiwana klasa stanu"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "Następujące encje nie mają oczekiwanej klasy stanu „total_increasing”",
+ "title": "Nieoczekiwana klasa stanu"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "Następujące encje nie mają wymaganej jednostki miary (Wh, kWh lub MWh):",
+ "title": "Niewłaściwa jednostka miary"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "Następujące encje nie mają wymaganej jednostki miary (''{currency}/Wh\", ''{currency}/kWh\" lub \"{currency}/MWh\"):",
+ "title": "Niewłaściwa jednostka miary"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "Następujące encje nie mają wymaganej jednostki miary \"Wh\", \"kWh\" lub \"MWh\" dla sensora energii lub m³ lub ft³ dla sensora gazu:",
+ "title": "Niewłaściwa jednostka miary"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "Następujące encje nie mają wymaganej jednostki miary (\"{currency}/Wh\", \"{currency}/kWh\", \"{currency}/MWh\", \"{currency}/m³\" lub \"{currency}/ft³\"):",
+ "title": "Niewłaściwa jednostka miary"
+ },
+ "recorder_untracked": {
+ "description": "Rejestrator (recorder) został skonfigurowany tak, aby wykluczyć te skonfigurowane encje:",
+ "title": "Encja nie jest śledzona"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Rejestr encji",
+ "description": "Zarządzaj znanymi encjami",
+ "picker": {
+ "disable_selected": {
+ "button": "Wyłącz wybrane",
+ "confirm_text": "Wyłączone encje nie będą dostępne w Home Assistant.",
+ "confirm_title": "Czy chcesz wyłączyć {number} {number, plural,\n one {encję}\n few {encje}\n many {encji}\n other {encji}\n}?"
+ },
+ "enable_selected": {
+ "button": "Włącz wybrane",
+ "confirm_text": "Dzięki temu będą ponownie dostępne w Home Assistant, jeśli są teraz wyłączone.",
+ "confirm_title": "Czy chcesz włączyć {number} {number, plural,\n one {encję}\n few {encje}\n many {encji}\n other {encji}\n}?"
+ },
+ "filter": {
+ "filter": "Filtr",
+ "hidden_entities": "{number} {number, plural,\n one {encja ukryta}\n few {encje ukryte}\n many {encji ukrytych}\n other {encji ukrytych}\n}",
+ "show_all": "Pokaż wszystkie",
+ "show_disabled": "Wyświetlaj wyłączone encje",
+ "show_readonly": "Wyświetlaj encje tylko do odczytu",
+ "show_unavailable": "Wyświetlaj niedostępne encje"
+ },
+ "header": "Rejestr encji",
+ "headers": {
+ "area": "Obszar",
+ "disabled_by": "Wyłączone przez",
+ "entity_id": "Identyfikator encji",
+ "integration": "Integracja",
+ "name": "Nazwa",
+ "status": "Status"
+ },
+ "introduction": "Home Assistant prowadzi rejestr każdej encji, jaką kiedykolwiek widział i którą można jednoznacznie zidentyfikować. Każda z tych encji będzie miała przypisany unikalny identyfikator, który będzie zarezerwowany tylko dla niej.",
+ "introduction2": "Użyj rejestru encji, aby nadpisać jej nazwę, zmienić jej identyfikator lub usunąć ją z Home Assistanta. Uwaga: usunięcie wpisu rejestru encji nie spowoduje usunięcia encji. Aby to zrobić, kliknij poniższy link i usuń integracje encji.",
+ "remove_selected": {
+ "button": "Usuń wybrane",
+ "confirm_partly_text": "Można usunąć tylko {removable} z wybranych {selected} encji. Encje można usunąć tylko wtedy, gdy integracja wspiera taką możliwość. Czasami trzeba ponownie uruchomić Home Assistanta, zanim będzie można usunąć encje usuniętej integracji. Czy na pewno chcesz usunąć usuwalne encje?",
+ "confirm_partly_title": "Można usunąć tylko {number} {number, plural,\n one {encję}\n few {encje}\n many {encji}\n other {encji}\n}.",
+ "confirm_text": "Powinieneś uprzednio usunąć integrację z automatyzacji i konfiguracji Lovelace, jeśli encje w niej występują.",
+ "confirm_title": "Czy chcesz usunąć {number} {number, plural,\n one {encję}\n few {encje}\n many {encji}\n other {encji}\n}?"
+ },
+ "search": "Szukaj encji",
+ "selected": "wybrano {number}",
+ "status": {
+ "disabled": "Wyłączone",
+ "ok": "Ok",
+ "readonly": "Tylko do odczytu",
+ "restored": "Przywrócono",
+ "unavailable": "Niedostępne"
+ }
+ }
+ },
+ "header": "Konfiguruj Home Assistanta",
+ "helpers": {
+ "caption": "Pomocnicy",
+ "description": "Elementy, które pomagają w tworzeniu automatyzacji",
+ "dialog": {
+ "add_helper": "Dodaj pomocnika",
+ "add_platform": "Dodaj {platform}",
+ "create": "Utwórz"
+ },
+ "picker": {
+ "add_helper": "Dodaj pomocnika",
+ "headers": {
+ "editable": "Edytowalne",
+ "entity_id": "Identyfikator encji",
+ "name": "Nazwa",
+ "type": "Typ"
+ },
+ "no_helpers": "Wygląda na to, że jeszcze nie masz pomocników!"
+ },
+ "types": {
+ "counter": "Licznik",
+ "input_boolean": "Przełącznik",
+ "input_button": "Przycisk",
+ "input_datetime": "Data/czas",
+ "input_number": "Numer",
+ "input_select": "Pole wyboru",
+ "input_text": "Tekst",
+ "timer": "Minutnik"
+ }
+ },
+ "info": {
+ "built_using": "Zbudowany przy użyciu",
+ "caption": "Informacje",
+ "copy_github": "Dla GitHuba",
+ "copy_menu": "Skopiuj menu",
+ "copy_raw": "Tekst",
+ "custom_uis": "Niestandardowe interfejsy użytkownika:",
+ "description": "Wersja, kondycja systemu i linki do dokumentacji",
+ "developed_by": "Opracowany przez grono wspaniałych ludzi.",
+ "documentation": "Dokumentacja",
+ "frontend": "frontend-ui",
+ "frontend_version": "Wersja interfejsu użytkownika: {version} - {type}",
+ "home_assistant_logo": "Logo Home Assistant",
+ "icons_by": "ikon",
+ "integrations": "Integracje",
+ "issues": "Problemy",
+ "license": "Opublikowany na licencji Apache 2.0",
+ "path_configuration": "Ścieżka do pliku configuration.yaml: {path}",
+ "server": "serwer",
+ "setup_time": "Czas konfiguracji",
+ "source": "Źródło:",
+ "system_health": {
+ "manage": "Zarządzaj",
+ "more_info": "więcej info"
+ },
+ "system_health_error": "Komponent kondycji systemu nie jest wczytany. Dodaj 'system_health:' do pliku configuration.yaml"
+ },
+ "integrations": {
+ "add_integration": "Dodaj integrację",
+ "attention": "Wymaga uwagi",
+ "caption": "Integracje",
+ "config_entry": {
+ "area": "obszar: {area}",
+ "check_the_logs": "Sprawdź logi",
+ "configure": "Konfiguruj",
+ "delete": "Usuń",
+ "delete_confirm": "Czy na pewno chcesz usunąć integrację {title}?",
+ "depends_on_cloud": "Zależny od chmury",
+ "device_unavailable": "Urządzenie niedostępne",
+ "devices": "{count} {count, plural,\n one {urządzenie}\n few {urządzenia}\n many {urządzeń}\n other {urządzeń}\n}",
+ "disable": {
+ "disable_confirm": "Czy na pewno chcesz wyłączyć ten wpis w konfiguracji? Jego urządzenia i instancje zostaną wyłączone.",
+ "disabled": "Wyłączone",
+ "disabled_by": {
+ "device": "Urządzenie",
+ "integration": "integracja",
+ "user": "Użytkownik"
+ },
+ "disabled_cause": "Wyłączone przez {cause}."
+ },
+ "disable_error": "Nie udało się włączyć lub wyłączyć integracji",
+ "disable_restart_confirm": "Zrestartuj Home Assistanta, aby zakończyć wyłączanie tej integracji",
+ "disabled_polling": "Automatyczne odpytywanie o zaktualizowane dane jest wyłączone",
+ "documentation": "Dokumentacja",
+ "download_diagnostics": "Pobierz diagnostykę",
+ "enable_restart_confirm": "Uruchom ponownie Home Assistanta, aby dokończyć uruchamianie tej integracji",
+ "entities": "{count} {count, plural,\n one {encja}\n few {encje}\n many {encji}\n other {encji}\n}",
+ "entity_unavailable": "encja niedostępna",
+ "firmware": "oprogramowanie: {version}",
+ "hardware": "Sprzęt: {version}",
+ "hub": "połączony poprzez:",
+ "known_issues": "Znane problemy",
+ "manuf": "producent: {manufacturer}",
+ "no_area": "brak",
+ "not_loaded": "Nie wczytano",
+ "open_configuration_url": "Przejdź do urządzenia",
+ "provided_by_custom_integration": "Dostarczone przez niestandardowy komponent",
+ "reload": "Wczytaj ponownie",
+ "reload_confirm": "Integracja została ponownie wczytana",
+ "reload_restart_confirm": "Uruchom ponownie Home Assistanta, aby dokończyć ponowne wczytywanie tej integracji",
+ "rename": "Zmień nazwę",
+ "restart_confirm": "Zrestartuj Home Assistanta, aby zakończyć usuwanie tej integracji",
+ "services": "{count} {count, plural,\n one {usługa}\n few {usługi}\n many {usług}\n other {usług}\n}",
+ "state": {
+ "failed_unload": "Błąd usuwania",
+ "loaded": "Wczytano",
+ "migration_error": "Błąd migracji",
+ "not_loaded": "Nie wczytano",
+ "setup_error": "Błąd konfiguracji",
+ "setup_retry": "Próbuję ponownie skonfigurować"
+ },
+ "system_options": "Opcje systemowe",
+ "unknown_via_device": "Nieznane urządzenie",
+ "unnamed_entry": "Nienazwany wpis",
+ "via": "Połączony przez"
+ },
+ "config_flow": {
+ "aborted": "Przerwano",
+ "close": "Zamknij",
+ "could_not_load": "Nie udało się wczytać interfejsu konfiguracji",
+ "created_config": "Utworzono konfigurację dla {name}.",
+ "dismiss": "Okno dialogowe odrzucenia",
+ "error": "Błąd",
+ "error_saving_area": "Błąd podczas zapisywania obszaru: {error}",
+ "external_step": {
+ "description": "Ten krok wymaga od Ciebie odwiedzenia zewnętrznej strony.",
+ "open_site": "Otwórz stronę"
+ },
+ "finish": "Zakończ",
+ "loading": {
+ "fallback_title": "integracja",
+ "loading_flow": "Proszę czekać, trwa konfiguracja {integration}",
+ "loading_step": "Wczytuję następny krok dla {integration}"
+ },
+ "next": "Dalej",
+ "not_all_required_fields": "Nie wszystkie wymagane pola są wypełnione.",
+ "not_loaded": "Nie udało się wczytać integracji, spróbuj ponownie uruchomić Home Assistanta.",
+ "pick_flow_step": {
+ "new_flow": "Nie, skonfiguruj inną instancję integracji {integration}",
+ "title": "Odkryliśmy je, chcesz je skonfigurować?"
+ },
+ "submit": "Zatwierdź"
+ },
+ "configure": "Konfiguruj",
+ "configured": "Skonfigurowane",
+ "confirm_new": "Czy chcesz skonfigurować {integration}?",
+ "description": "Zarządzaj integracjami z usługami lub urządzeniami",
+ "details": "Szczegóły integracji",
+ "disable": {
+ "disabled_integrations": "Wyłączonych: {number}",
+ "show": "Pokaż",
+ "show_disabled": "Pokaż wyłączone integracje"
+ },
+ "discovered": "Wykryte",
+ "home_assistant_website": "Home Assistant",
+ "ignore": {
+ "confirm_delete_ignore": "Spowoduje to, że integracja pojawi się ponownie w wykrytych integracjach. Może to wymagać ponownego uruchomienia lub czasu.",
+ "confirm_delete_ignore_title": "Wyłączenie ignorowania {name}",
+ "confirm_ignore": "Czy na pewno chcesz ignorować tę integrację? Możesz cofnąć ignorowanie, wybierając 'Wyświetlaj ignorowane integracje' w menu w prawym górnym rogu.",
+ "confirm_ignore_title": "Ignorowanie {name}",
+ "ignore": "Ignoruj",
+ "ignored": "Ignorowana",
+ "show_ignored": "Wyświetlaj ignorowane integracje",
+ "stop_ignore": "Wyłącz ignorowanie"
+ },
+ "integration": "integracja",
+ "integration_not_found": "Nie znaleziono integracji.",
+ "new": "Konfiguruj nową integrację",
+ "no_integrations": "Wygląda na to, że nie masz jeszcze skonfigurowanych żadnych integracji. Kliknij przycisk poniżej, aby dodać pierwszą integrację!",
+ "none": "Nic jeszcze nie zostało skonfigurowane",
+ "none_found": "Nie znaleziono integracji",
+ "none_found_detail": "Dostosuj kryteria wyszukiwania.",
+ "note_about_integrations": "Żadne integracje nie pasują do Twojego wyszukiwania. Integracja, którą chcesz skonfigurować, może być jeszcze niedostępna do skonfigurowania za pomocą interfejsu użytkownika.",
+ "note_about_website_reference": "Więcej jest dostępnych na stronie integracji ",
+ "reconfigure": "Zmień konfigurację",
+ "rename_dialog": "Edytuj nazwę tego wpisu konfiguracji",
+ "rename_input_label": "Nazwa wpisu",
+ "search": "Szukaj integracji"
+ },
+ "introduction": "Tutaj możesz skonfigurować Home Assistanta i jego komponenty. Nie wszystkie opcje można konfigurować z interfejsu użytkownika, ale pracujemy nad tym.",
+ "logs": {
+ "caption": "Logi",
+ "clear": "Wyczyść",
+ "copy": "Skopiuj wpis dziennika",
+ "custom_integration": "niestandardowa integracja",
+ "description": "Wyświetlanie logów Home Assistanta",
+ "details": "Szczegóły loga ({level})",
+ "error_from_custom_integration": "Ten błąd pochodzi z niestandardowej integracji.",
+ "level": {
+ "critical": "KRYTYCZNE",
+ "debug": "DEBUG",
+ "error": "BŁĘDY",
+ "info": "INFO",
+ "warning": "OSTRZEŻENIA"
+ },
+ "load_full_log": "Wczytaj cały log Home Assistanta",
+ "loading_log": "Wczytywanie loga błędów…",
+ "multiple_messages": "wiadomość pojawiła się po raz pierwszy {time} i powtarzała się {counter} razy",
+ "no_errors": "Nie zgłoszono żadnych błędów",
+ "no_issues": "Nie ma nowych problemów!",
+ "refresh": "Odśwież"
+ },
+ "lovelace": {
+ "caption": "Dashboardy",
+ "dashboards": {
+ "cant_edit_default": "Domyślnego dashboardu Lovelace (Przegląd) nie można edytować za pomocą interfejsu użytkownika. Możesz go ukryć, ustawiając jako domyślny inny dashboard.",
+ "cant_edit_yaml": "Dashboardy zdefiniowane w plikach YAML nie mogą być edytowane z poziomu interfejsu użytkownika. Zmień je w pliku configuration.yaml.",
+ "caption": "Dashboardy",
+ "conf_mode": {
+ "storage": "Konfigurowalny z interfejsu użytkownika",
+ "yaml": "Plik YAML"
+ },
+ "confirm_delete": "Czy na pewno chcesz usunąć ten dashboard?",
+ "confirm_delete_text": "Twój dashboard zostanie trwale usunięty.",
+ "confirm_delete_title": "Usunąć {dashboard_title}?",
+ "default_dashboard": "To jest domyślny dashboard",
+ "detail": {
+ "create": "Utwórz",
+ "delete": "Usuń",
+ "dismiss": "Zamknij",
+ "edit_dashboard": "Edytuj dashboard",
+ "icon": "Ikona w pasku bocznym",
+ "new_dashboard": "Dodaj nowy dashboard",
+ "remove_default": "Nie używaj jako domyślny na tym urządzeniu",
+ "require_admin": "Tylko dla administratorów",
+ "set_default": "Ustaw jako domyślny na tym urządzeniu",
+ "show_sidebar": "Wyświetlanie na pasku bocznym",
+ "title": "Tytuł w pasku bocznym",
+ "title_required": "Tytuł jest wymagany",
+ "update": "Aktualizuj",
+ "url": "URL",
+ "url_error_msg": "Adres URL powinien zawierać -, a nie może zawierać spacji ani znaków specjalnych, z wyjątkiem _ i -"
+ },
+ "picker": {
+ "add_dashboard": "Dodaj dashboard",
+ "headers": {
+ "conf_mode": "Metoda konfiguracji",
+ "default": "Domyślny",
+ "filename": "Nazwa pliku",
+ "require_admin": "Tylko administrator",
+ "sidebar": "Na pasku bocznym",
+ "title": "Tytuł"
+ },
+ "open": "Otwórz"
+ }
+ },
+ "description": "Twórz niestandardowe zestawy kart do sterowania domem",
+ "resources": {
+ "cant_edit_yaml": "Korzystasz z interfejsu użytkownika Lovelace w trybie YAML, dlatego nie możesz zarządzać zasobami za pomocą interfejsu użytkownika. Zarządzaj nimi w pliku configuration.yaml.",
+ "caption": "Zasoby",
+ "confirm_delete": "Czy na pewno chcesz usunąć ten zasób?",
+ "detail": {
+ "create": "Utwórz",
+ "delete": "Usuń",
+ "dismiss": "Zamknij",
+ "new_resource": "Dodaj nowy zasób",
+ "type": "Typ zasobu",
+ "update": "Aktualizuj",
+ "url": "URL",
+ "url_error_msg": "URL jest wymagany",
+ "warning_header": "Bądź ostrożny!",
+ "warning_text": "Dodawanie zasobów może być niebezpieczne, upewnij się, że znasz źródło zasobu i ufasz mu. Nieprawidłowe zasoby mogą poważnie uszkodzić twój system."
+ },
+ "picker": {
+ "add_resource": "Dodaj zasób",
+ "headers": {
+ "type": "Typ",
+ "url": "URL"
+ },
+ "no_resources": "Brak zasobów"
+ },
+ "refresh_body": "Musisz odświeżyć stronę, aby zakończyć usuwanie. Odświeżyć teraz?",
+ "refresh_header": "Czy chcesz odświeżyć?",
+ "types": {
+ "css": "Arkusz stylów",
+ "html": "HTML (przestarzałe)",
+ "js": "Plik JavaScript (przestarzałe)",
+ "module": "Moduł JavaScript (przestarzałe)"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Nasłuch tematu",
+ "description_publish": "Opublikuj pakiet",
+ "listening_to": "Nasłuchiwanie…",
+ "message_received": "Wiadomość {id} otrzymana w {topic} o godzinie {time}:",
+ "payload": "Payload (z możliwością użycia szablonów)",
+ "publish": "Opublikuj",
+ "start_listening": "Rozpocznij nasłuch",
+ "stop_listening": "Zatrzymaj nasłuch",
+ "subscribe_to": "Temat do zasubskrybowania",
+ "title": "MQTT",
+ "topic": "temat"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Kontroler",
+ "instance": "Instancja",
+ "network": "Sieć",
+ "node_id": "Identyfikator węzła",
+ "ozw_instance": "Instancja OpenZWave",
+ "query_stage": "Etap odpytywania",
+ "wakeup_instructions": "Instrukcje wybudzania",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Węzeł uszkodzony",
+ "stage": "Etap",
+ "zwave_info": "Informacje Z-Wave"
+ },
+ "navigation": {
+ "network": "Sieć",
+ "node": {
+ "config": "Konfiguracja",
+ "dashboard": "Dashboard"
+ },
+ "nodes": "Węzły",
+ "select_instance": "Wybierz instancję"
+ },
+ "network": {
+ "header": "Zarządzanie siecią",
+ "introduction": "Zarządzaj funkcjami w całej sieci.",
+ "node_count": "{count} węzłów"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "Wszystkie węzły zostały odpytane",
+ "driverallnodesqueriedsomedead": "Wszystkie węzły zostały odpytane. Niektóre węzły zostały znalezione martwe.",
+ "driverawakenodesqueries": "Wszystkie wybudzone węzły zostały odpytane",
+ "driverfailed": "Nie udało się połączyć z kontrolerem Z-Wave",
+ "driverready": "Inicjalizacja kontrolera Z-Wave",
+ "driverremoved": "Sterownik został usunięty",
+ "driverreset": "Sterownik został zresetowany",
+ "offline": "OZWDaemon jest offline",
+ "ready": "Gotowy do połączenia",
+ "started": "Połączono z MQTT",
+ "starting": "Łączenie się z MQTT",
+ "stopped": "OpenZWave zatrzymany"
+ },
+ "offline": "Offline",
+ "online": "Online",
+ "starting": "Uruchamianie",
+ "unknown": "Nieznany"
+ },
+ "node": {
+ "button": "Szczegóły węzła",
+ "not_found": "Nie znaleziono węzła"
+ },
+ "node_config": {
+ "header": "Konfiguracja węzła",
+ "help_source": "Opisy parametrów konfiguracji i teksty pomocy są dostarczane przez projekt OpenZWave.",
+ "introduction": "Zarządzaj różnymi parametrami konfiguracyjnymi węzła Z-Wave.",
+ "wakeup_help": "Węzły zasilanie bateryjnie muszą być wybudzone, aby zmienić ich konfigurację. Jeśli węzeł nie jest wybudzony, OpenZwave spróbuje zaktualizować jego konfigurację przy następnym wybudzeniu węzła, co może potrwać kilka godzin (lub dni). Wykonaj poniższe kroki, by wybudzić twoje urządzenie:"
+ },
+ "node_metadata": {
+ "product_manual": "Instrukcja obsługi"
+ },
+ "node_query_stages": {
+ "associations": "Odświeżanie grup skojarzeń i członkostwa",
+ "cacheload": "Wczytywanie informacji z pliku pamięci podręcznej OpenZWave. Węzły baterii pozostaną na tym etapie, dopóki węzeł się nie wybudzi.",
+ "complete": "Proces odpytywania jest zakończony",
+ "configuration": "Pobieranie wartości konfiguracyjnych z węzła",
+ "dynamic": "Pobieranie często zmieniających się wartości z węzła",
+ "instances": "Pobieranie szczegółowych informacji o instancjach lub kanałach obsługiwanych przez urządzenie",
+ "manufacturerspecific1": "Pobieranie kodów producenta i produktu z węzła",
+ "manufacturerspecific2": "Pobieranie dodatkowych kodów producenta i produktu z węzła",
+ "neighbors": "Pobieranie listy sąsiadów węzła",
+ "nodeinfo": "Pobieranie obsługiwanych klas poleceń z węzła",
+ "nodeplusinfo": "Pobieranie informacji Z-Wave+ z węzła",
+ "probe": "Sprawdzanie, czy węzeł jest wybudzony/żywy",
+ "protocolinfo": "Pobieranie z kontrolera informacji o podstawowych możliwościach Z-Wave tego węzła",
+ "session": "Pobieranie rzadko zmieniających się wartości z węzła",
+ "static": "Pobieranie wartości statycznych z urządzenia",
+ "versions": "Pobieranie informacji o wersjach oprogramowania i klas poleceń",
+ "wakeup": "Konfigurowanie obsługi kolejek wybudzania i wiadomości"
+ },
+ "nodes_table": {
+ "failed": "Uszkodzony",
+ "id": "Identyfikator",
+ "manufacturer": "Producent",
+ "model": "Model",
+ "query_stage": "Etap odpytywania",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Jeśli węzeł jest zasilany bateryjnie, przed kontynuowaniem należy go wybudzić",
+ "button": "Odśwież węzeł",
+ "complete": "Odświeżanie węzła zakończone",
+ "description": "Poinformuje to OpenZWave o konieczności ponownego odpytania węzła i zaktualizowaniu jego klas poleceń, możliwości i wartości.",
+ "node_status": "Stan węzła",
+ "refreshing_description": "Odświeżanie informacji o węźle…",
+ "start_refresh_button": "Rozpocznij odświeżanie",
+ "step": "Krok",
+ "title": "Odświeżanie informacji o węźle",
+ "wakeup_header": "Instrukcje wybudzania dla",
+ "wakeup_instructions_source": "Instrukcje wybudzania pochodzą z bazy danych urządzeń społeczności OpenZWave."
+ },
+ "select_instance": {
+ "header": "Wybierz instancję OpenZWave",
+ "introduction": "Masz uruchomionych więcej niż jedną instancję OpenZWave. Którą instancją chcesz zarządzać?",
+ "none_found": "Nie mogliśmy znaleźć instancji OpenZWave. Jeśli uważasz, że to nieprawda, sprawdź ustawienia OpenZWave oraz MQTT i upewnij się, że Home Assistant może komunikować się z Twoim brokerem MQTT."
+ },
+ "services": {
+ "add_node": "Dodaj węzeł",
+ "cancel_command": "Anuluj polecenie",
+ "remove_node": "Usuń węzeł"
+ }
+ },
+ "person": {
+ "add_person": "Dodaj osobę",
+ "caption": "Osoby",
+ "confirm_delete": "Czy na pewno chcesz usunąć tę osobę?",
+ "confirm_delete2": "Wszystkie urządzenia należące do tej osoby zostaną nieprzypisane.",
+ "create_person": "Utwórz osobę",
+ "description": "Zarządzaj osobami, które śledzi Home Assistant",
+ "detail": {
+ "admin": "Administrator",
+ "allow_login": "Zezwalaj osobie na logowanie",
+ "confirm_delete_user": "Czy na pewno chcesz usunąć konto użytkownika {name}? Nadal możesz śledzić tego użytkownika, ale osoba ta nie będzie już mogła się zalogować.",
+ "create": "Utwórz",
+ "delete": "Usuń",
+ "device_tracker_intro": "Wybierz urządzenia należące do tej osoby.",
+ "device_tracker_pick": "Wybierz urządzenie do śledzenia",
+ "device_tracker_picked": "Śledź urządzenie",
+ "link_integrations_page": "Strona integracji",
+ "link_presence_detection_integrations": "Integracje wykrywania obecności",
+ "linked_user": "Połączony użytkownik",
+ "local_only": "Możliwość logowania tylko z sieci lokalnej",
+ "name": "Imię",
+ "name_error_msg": "Imię jest wymagane",
+ "new_person": "Nowa osoba",
+ "no_device_tracker_available_intro": "Jeśli masz urządzenia wskazujące obecność osoby, możesz tutaj przypisać ją do tej osoby. Możesz dodać swoje pierwsze urządzenie, dodając integrację wykrywania obecności ze strony integracji.",
+ "update": "Aktualizuj"
+ },
+ "introduction": "Tutaj można zdefiniować osoby, których obecność będzie śledzona w Home Assistant.",
+ "learn_more": "Dowiedz się więcej o osobach",
+ "no_persons_created_yet": "Wygląda na to, że nie utworzyłeś jeszcze żadnych osób.",
+ "note_about_persons_configured_in_yaml": "Uwaga: osób skonfigurowanych za pomocą pliku configuration.yaml nie można edytować za pomocą interfejsu użytkownika.",
+ "person_not_found": "Nie znaleziono osoby, którą próbujesz edytować.",
+ "person_not_found_title": "Nie znaleziono osoby"
+ },
+ "scene": {
+ "activated": "Aktywowana scena {name}.",
+ "caption": "Sceny",
+ "description": "Przechwytuj stany urządzeń i łatwo przywołuj je później",
+ "editor": {
+ "area": "Obszar",
+ "default_name": "Nowa scena",
+ "devices": {
+ "add": "Dodaj urządzenie",
+ "delete": "Usuń urządzenie",
+ "header": "Urządzenia",
+ "introduction": "Dodaj urządzenia, które chcesz uwzględnić w scenie. Ustaw dla wszystkich urządzeń żądane stany dla tej sceny."
+ },
+ "entities": {
+ "add": "Dodaj encję",
+ "delete": "Usuń encję",
+ "device_entities": "Jeśli dodasz encję należącą do urządzenia, urządzenie to zostanie dodane.",
+ "header": "Encje",
+ "introduction": "W tym miejscu można konfigurować encje, które nie należą do żadnego urządzenia.",
+ "without_device": "Encje bez urządzenia"
+ },
+ "icon": "Ikona",
+ "introduction": "Użyj scen, aby ożywić swój dom.",
+ "load_error_not_editable": "Tylko sceny zdefiniowane w pliku scenes.yaml są edytowalne",
+ "load_error_unknown": "Błąd wczytywania sceny ({err_no})",
+ "name": "Nazwa",
+ "save": "Zapisz",
+ "unsaved_confirm": "Masz niezapisane zmiany. Na pewno chcesz wyjść?"
+ },
+ "picker": {
+ "add_scene": "Dodaj scenę",
+ "delete_confirm": "Czy na pewno chcesz usunąć tę scenę?",
+ "delete_scene": "Usuń scenę",
+ "duplicate": "Duplikuj",
+ "duplicate_scene": "Duplikuj scenę",
+ "edit_scene": "Edytuj scenę",
+ "header": "Edytor scen",
+ "headers": {
+ "name": "Nazwa"
+ },
+ "introduction": "Edytor scen pozwala tworzyć i edytować sceny. Kliknij poniższy link, aby przeczytać instrukcję, jak poprawnie konfigurować sceny w Home Assistant.",
+ "learn_more": "Dowiedz się więcej o scenach",
+ "no_scenes": "Nie znaleziono żadnych scen",
+ "only_editable": "Tylko sceny zdefiniowane w pliku scenes.yaml są edytowalne.",
+ "pick_scene": "Wybierz scenę do edycji",
+ "show_info_scene": "Pokaż informacje o scenie"
+ }
+ },
+ "script": {
+ "caption": "Skrypty",
+ "description": "Wykonywanie sekwencji akcji",
+ "editor": {
+ "alias": "Nazwa",
+ "default_name": "Nowy skrypt",
+ "delete_confirm": "Czy na pewno chcesz usunąć ten skrypt?",
+ "delete_script": "Usuń skrypt",
+ "header": "Skrypt: {name}",
+ "icon": "Ikona",
+ "id": "Identyfikator encji",
+ "id_already_exists": "Ten identyfikator już istnieje",
+ "id_already_exists_save_error": "Nie możesz zapisać tego skryptu, ponieważ identyfikator nie jest unikalny, wprowadź inny identyfikator lub pozostaw pole puste, aby wygenerować go automatycznie.",
+ "introduction": "Użyj skryptów, aby uruchomić sekwencję akcji.",
+ "link_available_actions": "Dowiedz się więcej o dostępnych akcjach.",
+ "load_error_not_editable": "Tylko skrypty zdefiniowane w pliku scripts.yaml są edytowalne",
+ "max": {
+ "parallel": "Maksymalna liczba równoległych uruchomień",
+ "queued": "Długość kolejki"
+ },
+ "modes": {
+ "description": "Tryb kontroluje, co się dzieje podczas uruchamiania skryptu, gdy jest on nadal wykonywany z jednego lub kilku poprzednich uruchomień. Zapoznaj się z {documentation_link} aby uzyskać więcej informacji.",
+ "documentation": "dokumentacją skryptów",
+ "label": "Tryb",
+ "parallel": "Równolegle",
+ "queued": "Kolejkowanie",
+ "restart": "Restart",
+ "single": "Pojedynczy (domyślnie)"
+ },
+ "save_script": "Zapisz skrypt",
+ "sequence": "Sekwencja",
+ "sequence_sentence": "Sekwencja akcji tego skryptu.",
+ "show_trace": "Pokaż ślad"
+ },
+ "picker": {
+ "add_script": "Dodaj skrypt",
+ "dev_script": "Debuguj skrypt",
+ "duplicate": "Duplikuj",
+ "duplicate_script": "Duplikuj skrypt",
+ "edit_script": "Edytuj skrypt",
+ "header": "Edytor skryptów",
+ "headers": {
+ "name": "Nazwa"
+ },
+ "introduction": "Edytor skryptów pozwala tworzyć i edytować skrypty. Kliknij poniższy link, aby przeczytać instrukcję, jak poprawnie konfigurować skrypty w Home Assistant.",
+ "learn_more": "Dowiedz się więcej o skryptach",
+ "no_scripts": "Nie znaleziono żadnych skryptów",
+ "run_script": "Uruchom skrypt",
+ "show_info": "Pokaż informacje o skrypcie"
+ }
+ },
+ "server_control": {
+ "caption": "Kontrola serwera",
+ "description": "Sprawdź i uruchom ponownie serwer Home Assistant",
+ "section": {
+ "reloading": {
+ "automation": "Automatyzacje",
+ "command_line": "Encje komponentu linia komend",
+ "core": "Lokalizacja i dostosowywanie",
+ "filesize": "Encje komponentu wielkość pliku",
+ "filter": "Encje komponentu filtr",
+ "generic": "Encje komponentu kamera IP generic",
+ "generic_thermostat": "Encje komponentu termostatu generic",
+ "group": "Grupy, ich encje oraz usługi powiadomień",
+ "heading": "Ponowne wczytanie konfiguracji YAML",
+ "history_stats": "Encje komponentu historia stanów",
+ "homekit": "HomeKit",
+ "input_boolean": "Pomocnicy typu przełącznik",
+ "input_button": "Przyciski wprowadzania",
+ "input_datetime": "Pomocnicy typu data i czas",
+ "input_number": "Pomocnicy typu numer",
+ "input_select": "Pomocnicy typu pole wyboru",
+ "input_text": "Pomocnicy typu tekst",
+ "introduction": "Niektóre fragmenty konfiguracji można wczytać ponownie bez konieczności restartowania Home Assistanta. Poniższe przyciski usuną z pamięci wybraną część konfiguracji YAML i wczytają ją ponownie.",
+ "min_max": "Encje komponentu min/max",
+ "mqtt": "Encje komponentu MQTT",
+ "person": "Osoby",
+ "ping": "Encje komponentu ping",
+ "reload": "Domenę {domain}",
+ "rest": "Encje komponentu rest i usługi powiadomień",
+ "rpi_gpio": "Encje komponentu Raspberry Pi GPIO",
+ "scene": "Sceny",
+ "script": "Skrypty",
+ "smtp": "Usługi powiadomień komponentu SMTP",
+ "statistics": "Encje komponentu statystyka",
+ "telegram": "Usługi powiadomień komponentu Telegram",
+ "template": "Encje zdefiniowane szablonami",
+ "themes": "Motywy",
+ "timer": "Timery",
+ "trend": "Encje komponentu trend",
+ "universal": "Encje komponentu uniwersalny odtwarzacz mediów",
+ "zone": "Strefy"
+ },
+ "server_management": {
+ "confirm_restart": "Czy na pewno chcesz ponownie uruchomić Home Assistanta?",
+ "confirm_stop": "Czy na pewno chcesz zatrzymać Home Assistanta?",
+ "heading": "Zarządzanie serwerem",
+ "introduction": "Kontroluj serwer Home Assistant.",
+ "restart": "Uruchom ponownie",
+ "stop": "Zatrzymaj"
+ },
+ "validation": {
+ "check_config": "Sprawdź konfigurację",
+ "heading": "Sprawdzanie konfiguracji",
+ "introduction": "Kliknij Sprawdź konfigurację, by upewnić się, że jest ona prawidłowa.",
+ "invalid": "Konfiguracja nieprawidłowa",
+ "valid": "Konfiguracja prawidłowa!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Dodaj tag",
+ "automation_title": "Tag {name} jest skanowany",
+ "caption": "Tagi",
+ "confirm_remove": "Czy na pewno chcesz usunąć tag {tag}?",
+ "confirm_remove_title": "Usunąć tag?",
+ "create_automation": "Utwórz automatyzację z tagiem",
+ "description": "Uruchamiaj automatyzacje po zeskanowaniu tagu NFC, kodu QR, itp",
+ "detail": {
+ "companion_apps": "aplikacji towarzyszącej",
+ "create": "Utwórz",
+ "create_and_write": "Utwórz i zapisz",
+ "delete": "Usuń",
+ "description": "Opis",
+ "name": "Nazwa",
+ "new_tag": "Nowy tag",
+ "tag_id": "Identyfikator tagu",
+ "tag_id_placeholder": "Generowany automatycznie, gdy pole pozostawione puste",
+ "update": "Aktualizuj",
+ "usage": "Tag może wywołać automatyzację podczas skanowania, możesz użyć tagów NFC, kodów QR lub dowolnego innego rodzaju tagu. Skorzystaj z naszej {companion_link} aby zapisać ten tag do programowalnego tagu NFC lub utwórz kod QR poniżej."
+ },
+ "edit": "Edytuj",
+ "headers": {
+ "last_scanned": "Ostatnie skanowanie",
+ "name": "Nazwa"
+ },
+ "learn_more": "Dowiedz się więcej o tagach",
+ "never_scanned": "Nigdy nie zeskanowany",
+ "no_tags": "Brak tagów",
+ "write": "Zapisz"
+ },
+ "updates": {
+ "more_updates": "+ {count} {count, plural,\n one {aktualizacja}\n few {aktualizacje}\n many {aktualizacji}\n other {aktualizacji}\n}",
+ "review": "przegląd",
+ "show": "pokaż",
+ "show_all_updates": "Pokaż wszystkie aktualizacje",
+ "title": "{count} {count, plural,\n one {aktualizacja}\n few {aktualizacje}\n many {aktualizacji}\n other {aktualizacje}\n}",
+ "unable_to_fetch": "Nie można załadować aktualizacji",
+ "version_available": "Dostępna jest wersja {version_available}"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Dodaj użytkownika",
+ "create": "Utwórz",
+ "local_only": "Tylko lokalnie",
+ "password": "Hasło",
+ "password_confirm": "Potwierdź hasło",
+ "password_not_match": "Hasła nie są takie same"
+ },
+ "caption": "Użytkownicy",
+ "description": "Zarządzaj kontami użytkowników Home Assistanta",
+ "editor": {
+ "activate_user": "Aktywuj użytkownika",
+ "active": "Aktywny",
+ "active_tooltip": "Określa, czy użytkownik może się zalogować",
+ "admin": "Administrator",
+ "caption": "Wyświetl użytkownika",
+ "change_password": "Zmień hasło",
+ "confirm_user_deletion": "Czy na pewno chcesz usunąć {name}?",
+ "deactivate_user": "Dezaktywuj użytkownika",
+ "delete_user": "Usuń użytkownika",
+ "group": "Grupa",
+ "id": "Identyfikator",
+ "local_only": "Możliwość logowania tylko z sieci lokalnej",
+ "name": "Wyświetlana nazwa",
+ "new_password": "Nowe hasło",
+ "owner": "Właściciel",
+ "password_changed": "Hasło zostało zmienione pomyślnie",
+ "system_generated": "Użytkownik systemu",
+ "system_generated_users_not_editable": "Nie można zaktualizować użytkowników generowanych przez system.",
+ "system_generated_users_not_removable": "Nie można usunąć użytkowników wygenerowanych przez system.",
+ "unnamed_user": "Nienazwany użytkownik",
+ "update_user": "Aktualizuj",
+ "username": "Nazwa użytkownika"
+ },
+ "is_local": "Użytkownik lokalny",
+ "is_not_active": "Wyłączony",
+ "is_owner": "Właściciel",
+ "is_system": "Użytkownik systemu",
+ "picker": {
+ "add_user": "Dodaj użytkownika",
+ "headers": {
+ "group": "Grupa",
+ "is_active": "Aktywny",
+ "is_owner": "Właściciel",
+ "local": "Tylko lokalnie",
+ "name": "Wyświetlana nazwa",
+ "system": "Wygenerowany przez system",
+ "username": "Nazwa użytkownika"
+ }
+ },
+ "users_privileges_note": "Prace nad grupami użytkowników trwają. Użytkownik nie może administrować instancją za pomocą interfejsu użytkownika. Nadal kontrolujemy wszystkie punkty końcowe interfejsu API zarządzania, aby upewnić się, że poprawnie ograniczają dostęp tylko dla administratorów."
+ },
+ "zha": {
+ "add_device": "Dodaj urządzenie",
+ "add_device_page": {
+ "discovered_text": "Urządzenia pojawią się tutaj, jak tylko zostaną wykryte.",
+ "no_devices_found": "Nie znaleziono urządzeń, upewnij się, że są w trybie parowania i nie są w trybie uśpienia podczas wykrywania.",
+ "pairing_mode": "Upewnij się, że urządzenie jest w trybie parowania. Zapoznaj się z instrukcją obsługi urządzenia, by dowiedzieć się, jak to zrobić.",
+ "search_again": "Szukaj ponownie",
+ "spinner": "Wyszukiwanie urządzeń ZHA Zigbee…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Atrybuty wybranego klastra",
+ "get_zigbee_attribute": "Wyświetl atrybut Zigbee",
+ "header": "Atrybuty klastra",
+ "help_attribute_dropdown": "Wybierz atrybut, aby wyświetlić lub ustawić jego wartość",
+ "help_get_zigbee_attribute": "Wyświetl wartość dla wybranego atrybutu",
+ "help_set_zigbee_attribute": "Ustaw wartość atrybutu dla określonego klastra i określonej encji",
+ "introduction": "Wyświetl i edytuj atrybuty klastra.",
+ "set_zigbee_attribute": "Ustaw atrybut Zigbee"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Polecenia wybranego klastra",
+ "header": "Komendy klastra",
+ "help_command_dropdown": "Wybierz polecenie do interakcji",
+ "introduction": "Wyświetl i wydaj polecenia klastra",
+ "issue_zigbee_command": "Wydaj polecenie Zigbee"
+ },
+ "clusters": {
+ "header": "Klastry",
+ "help_cluster_dropdown": "Wybierz klaster, aby wyświetlić atrybuty i polecenia.",
+ "introduction": "Klastry są elementami składowymi funkcjonalności Zigbee. Dzielą one funkcjonalność na jednostki logiczne. Istnieją typy klientów i serwerów, które składają się z atrybutów i poleceń."
+ },
+ "common": {
+ "clusters": "Klastry",
+ "manufacturer_code_override": "Zastąpienie kodu producenta",
+ "value": "Wartość"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Skróty",
+ "update_button": "Zaktualizuj konfigurację"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Konfigurowanie zakończone",
+ "CONFIGURED_status_text": "Inicjalizacja",
+ "INITIALIZED": "Inicjalizacja zakończona",
+ "INITIALIZED_status_text": "Urządzenie jest gotowe do użycia",
+ "INTERVIEW_COMPLETE": "Odpytywanie zakończone",
+ "INTERVIEW_COMPLETE_status_text": "Konfigurowanie",
+ "PAIRED": "Znaleziono urządzenie",
+ "PAIRED_status_text": "Rozpoczęcie odpytywania"
+ },
+ "group_binding": {
+ "bind_button_help": "Powiąż wybraną grupę z wybranymi klastrami urządzeń.",
+ "bind_button_label": "Powiąż grupę",
+ "cluster_selection_help": "Wybierz klastry, aby powiązać z wybraną grupą.",
+ "group_picker_help": "Wybierz grupę, aby wydać polecenie powiązania.",
+ "group_picker_label": "Grupy do powiązania",
+ "header": "Powiązanie grupowe",
+ "introduction": "Powiąż i usuń powiązania grup.",
+ "unbind_button_help": "Usuń powiązanie wybranej grupy z wybranych klastrów urządzeń.",
+ "unbind_button_label": "Usuń powiązanie grupy"
+ },
+ "groups": {
+ "add_group": "Dodaj grupę",
+ "add_members": "Dodaj członków",
+ "caption": "Grupy",
+ "create": "Utwórz grupę",
+ "create_group": "Zigbee Home Automation - utwórz grupę",
+ "create_group_details": "Wprowadź wymagane dane, aby utworzyć nową grupę Zigbee",
+ "creating_group": "Tworzenie grupy",
+ "delete": "Usuń grupę",
+ "group_details": "Oto wszystkie szczegóły dotyczące zaznaczonej grupy Zigbee.",
+ "group_id": "Identyfikator grupy",
+ "group_info": "Informacje o grupie",
+ "group_name_placeholder": "Nazwa grupy",
+ "group_not_found": "Grupa nie znaleziona!",
+ "groups": "Grupy",
+ "members": "Członkowie",
+ "remove_members": "Usuń członków",
+ "removing_members": "Usuwanie członków"
+ },
+ "network": {
+ "caption": "Sieć"
+ },
+ "visualization": {
+ "auto_zoom": "Auto Zoom",
+ "caption": "Wizualizacja",
+ "enable_physics": "Włącz fizykę",
+ "header": "Wizualizacja sieci",
+ "highlight_label": "Zaznacz urządzenia",
+ "refresh_topology": "Odśwież topologię",
+ "zoom_label": "Powiększ do urządzenia"
+ }
+ },
+ "zone": {
+ "add_zone": "Dodaj strefę",
+ "caption": "Strefy",
+ "configured_in_yaml": "Stref skonfigurowanych za pomocą pliku configuration.yaml nie można edytować za pomocą interfejsu użytkownika.",
+ "confirm_delete": "Czy na pewno chcesz usunąć tę strefę?",
+ "create_zone": "Utwórz strefę",
+ "description": "Zarządzaj strefami, w których chcesz śledzić osoby",
+ "detail": {
+ "create": "Utwórz",
+ "delete": "Usuń",
+ "icon": "Ikona",
+ "icon_error_msg": "Ikona powinna mieć format \"prefiks:nazwa-ikony\", na przykład: mdi:home",
+ "latitude": "Szerokość geograficzna",
+ "longitude": "Długość geograficzna",
+ "name": "Nazwa",
+ "new_zone": "Nowa strefa",
+ "passive": "Pasywna",
+ "passive_note": "Strefy pasywne nie są widoczne w interfejsie użytkownika i nie są używane jako lokalizacje dla śledzonych urządzeń. Są one przydatne do tworzenia automatyzacji.",
+ "radius": "Promień",
+ "required_error_msg": "To pole jest wymagane",
+ "update": "Aktualizuj"
+ },
+ "edit_home_zone": "Lokalizację strefy domowej można zmienić w konfiguracji ogólnej.",
+ "edit_home_zone_narrow": "Promienia strefy domowej nie można jeszcze edytować z poziomu interfejsu użytkownika. Lokalizację tej strefy można zmienić w konfiguracji ogólnej.",
+ "edit_zone": "Edytuj strefę",
+ "go_to_core_config": "Czy chcesz przejść do konfiguracji ogólnej?",
+ "home_zone_core_config": "Lokalizację strefy domowej można edytować w konfiguracji ogólnej. Promienia strefy domowej nie można jeszcze edytować z poziomu interfejsu użytkownika. Czy chcesz przejść do konfiguracji ogólnej?",
+ "introduction": "Strefy pozwalają określić regiony na ziemi. Gdy dana osoba znajduje się w strefie, jej encja pobierze stan z nazwy strefy. Strefy mogą być również używane jako wyzwalacz lub warunek w automatyzacjach.",
+ "no_zones_created_yet": "Wygląda na to, że nie utworzyłeś jeszcze żadnych stref."
+ },
+ "zwave": {
+ "common": {
+ "index": "Indeks",
+ "instance": "Instancja",
+ "unknown": "nieznany",
+ "value": "Wartość",
+ "wakeup_interval": "Częstotliwość wybudzania"
+ },
+ "description": "Zarządzaj siecią Z-Wave",
+ "learn_more": "Dowiedz się więcej o Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "Migruj do OpenZWave",
+ "introduction": "Ten kreator pomoże Ci w migracji ze starszej integracji Z-Wave do integracji OpenZWave, która jest obecnie w wersji beta."
+ },
+ "zwave_js": {
+ "header": "Migruj do Z-Wave JS",
+ "introduction": "Ta integracja nie jest już wspierana i radzimy przejść do nowej integracji Z-Wave JS. Ten kreator pomoże Ci przeprowadzić migrację ze starszej integracji Z-Wave do nowej integracji Z-Wave JS."
+ }
+ },
+ "network_management": {
+ "header": "Zarządzanie siecią Z-Wave",
+ "introduction": "Uruchom polecenia sterujące siecią Z-Wave. Nie otrzymasz informacji o tym, czy wykonanie poleceń się powiodło, ale możesz szukać informacji na ten temat w logu OZW."
+ },
+ "network_status": {
+ "network_started": "Uruchomiono sieć Z-Wave",
+ "network_started_note_all_queried": "Wszystkie węzły zostały odpytane.",
+ "network_started_note_some_queried": "Wybudzone węzły zostały odpytane. Niewybudzone węzły będą odpytane, kiedy się wybudzą.",
+ "network_starting": "Uruchamianie sieci Z-Wave …",
+ "network_starting_note": "Może to chwilę potrwać, w zależności od rozmiaru sieci.",
+ "network_stopped": "Zatrzymano sieć Z-Wave"
+ },
+ "node_config": {
+ "config_parameter": "Parametr",
+ "config_value": "Wartość",
+ "false": "Fałsz",
+ "header": "Parametry konfiguracji węzła",
+ "seconds": "sekundy",
+ "set_config_parameter": "Ustaw parametr",
+ "set_wakeup": "Ustaw częstotliwość wybudzania",
+ "true": "Prawda"
+ },
+ "node_management": {
+ "add_to_group": "Dodaj do grupy",
+ "entities": "Encje tego węzła",
+ "entity_info": "Informacje o encji",
+ "exclude_entity": "Wyklucz tę encję z Home Assistant",
+ "group": "Grupa",
+ "header": "Zarządzanie węzłami Z-Wave",
+ "introduction": "Uruchom polecenia Z-Wave, które wpływają na pojedynczy węzeł. Wybierz węzeł, aby wyświetlić listę dostępnych poleceń.",
+ "max_associations": "Maksimum asocjacji:",
+ "node_group_associations": "Asocjacja grupy węzła",
+ "node_protection": "Ochrona węzła",
+ "node_to_control": "Węzeł do kontroli",
+ "nodes": "Węzły",
+ "nodes_hint": "Wybierz węzeł, aby wyświetlić jego opcje",
+ "nodes_in_group": "Inne węzły w tej grupie:",
+ "pooling_intensity": "Częstotliwość odpytywania",
+ "protection": "Ochrona",
+ "remove_broadcast": "Usuń broadcast",
+ "remove_from_group": "Usuń z grupy",
+ "set_protection": "Ustaw ochronę"
+ },
+ "ozw_log": {
+ "header": "Log OpenZWave",
+ "introduction": "Określ liczbowo długość loga. 0 to minimum (ładuje całość), a 1000 to maksimum. Klawisz 'Wczytaj cały' ładuje i statycznie wyświetla cały log.\nKlawisz 'Wczytaj końcowe linie' ładuje i dynamicznie wyświetla określoną liczbę ostatnich linii logu.",
+ "last_log_lines": "Liczba końcowych linii loga",
+ "load": "Wczytaj cały",
+ "tail": "Wczytaj końcowe linie"
+ },
+ "services": {
+ "add_node": "Dodaj węzeł",
+ "add_node_secure": "Dodaj bezpieczny węzeł",
+ "cancel_command": "Anuluj polecenie",
+ "heal_network": "Uzdrawiaj sieć",
+ "heal_node": "Uzdrawiaj węzeł",
+ "node_info": "Informacje o węźle",
+ "print_node": "Informacje o węźle",
+ "refresh_entity": "Odśwież encję",
+ "refresh_node": "Odśwież węzeł",
+ "remove_failed_node": "Usuń uszkodzony węzeł",
+ "remove_node": "Usuń węzeł",
+ "replace_failed_node": "Zastąp uszkodzony węzeł",
+ "save_config": "Zapisz konfigurację",
+ "soft_reset": "Miękki reset",
+ "start_network": "Uruchom sieć",
+ "stop_network": "Zatrzymaj sieć",
+ "test_network": "Testuj sieć",
+ "test_node": "Testuj węzeł"
+ },
+ "values": {
+ "header": "Wartości węzła"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Anuluj dodawanie węzła",
+ "check_logs": "Sprawdź logi, aby uzyskać więcej informacji.",
+ "choose_inclusion_strategy": "Jak chcesz dodać swoje urządzenie?",
+ "controller_in_inclusion_mode": "Kontroler Z-Wave jest teraz w trybie dodawania węzła.",
+ "enter_qr_code": "Wprowadź kod QR",
+ "follow_device_instructions": "Postępuj zgodnie ze wskazówkami dołączonymi do urządzenia, aby wywołać dodawanie do sieci.",
+ "inclusion_failed": "Nie udało się dodać urządzenia.",
+ "inclusion_finished": "Urządzenie zostało dodane.",
+ "interview_failed": "Odpytywanie urządzenia nie powiodło się. Dodatkowe informacje mogą być dostępne w logach.",
+ "interview_started": "Urządzenie jest odpytywane. To może zająć trochę czasu.",
+ "introduction": "Ten kreator poprowadzi Cię przez proces dodawania węzła do sieci Z-Wave.",
+ "provisioning_finished": "Urządzenie zostało dodane. Będzie dostępne po włączeniu.",
+ "qr_code": "Kod QR",
+ "qr_code_paragraph": "Jeśli Twoje urządzenie obsługuje SmartStart, możesz zeskanować kod QR w celu łatwego parowania.",
+ "scan_qr_code": "Zeskanuj kod QR",
+ "searching_device": "Wyszukiwanie urządzenia",
+ "secure_inclusion_warning": "Bezpieczne węzły wymagają dodatkowej przepustowości; zbyt wiele bezpiecznych węzłów może spowolnić twoją sieć Z-Wave. Zalecamy używanie bezpiecznego dodawania tylko w przypadku urządzeń, które tego wymagają, takich jak zamki lub urządzenia sterujące bramami garażowymi.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Przykład: Starsze zamki do drzwi bez wsparcia S2",
+ "title": "S0 Legacy"
+ },
+ "S2_AccessControl": {
+ "description": "Przykład: zamki do drzwi i bramy garażowe",
+ "title": "S2 Kontrola dostępu"
+ },
+ "S2_Authenticated": {
+ "description": "Przykład: oświetlenie, czujniki i systemy bezpieczeństwa",
+ "title": "S2 Uwierzytelniony"
+ },
+ "S2_Unauthenticated": {
+ "description": "Jak uwierzytelnianie S2, ale bez weryfikacji, czy dołączone jest właściwe urządzenie",
+ "title": "S2 Nieuwierzytelniony"
+ }
+ },
+ "select_camera": "Wybierz kamerę",
+ "start_inclusion": "Rozpocznij dodawanie węzła",
+ "start_secure_inclusion": "Rozpocznij dodawanie bezpiecznego węzła",
+ "title": "Dodaj urządzenie Z-Wave",
+ "use_secure_inclusion": "Użyj bezpiecznego dodawania",
+ "view_device": "Wyświetl urządzenie"
+ },
+ "common": {
+ "add_node": "Dodaj urządzenie",
+ "back": "Wstecz",
+ "close": "Zamknij",
+ "heal_network": "Uzdrawiaj sieć",
+ "home_id": "Identyfikator domu",
+ "network": "Sieć",
+ "node_id": "Identyfikator urzadzenia",
+ "reconfigure_server": "Ponownie skonfiguruj serwer",
+ "remove_node": "Usuń urządzenie",
+ "source": "Źródło"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n one {urządzenie}\n few {urządzenia}\n many {urządzeń}\n other {urządzeń}\n}",
+ "driver_version": "Wersja sterownika",
+ "dump_dead_nodes_text": "Niektóre z Twoich urządzeń nie odpowiedziały i są uznawane za martwe. Nie zostaną one w pełni wyeksportowane.",
+ "dump_dead_nodes_title": "Niektóre z twoich urządzeń są martwe",
+ "dump_debug": "Pobierz dane",
+ "dump_not_ready_confirm": "Pobierz",
+ "dump_not_ready_text": "Jeśli utworzysz zrzut, gdy nie wszystkie urządzenia są gotowe, może w nim brakować ważnych danych. Daj swojej sieci trochę czasu na odpytanie wszystkich urządzeń. Czy chcesz kontynuować zrzut?",
+ "dump_not_ready_title": "Jeszcze nie wszystkie urządzenia są gotowe",
+ "header": "Zarządzaj siecią Z-Wave",
+ "home_id": "Identyfikator domu",
+ "introduction": "Zarządzaj Twoją siecią i węzłami Z-Wave",
+ "nodes_ready": "Urządzenia gotowe",
+ "not_ready": "Nie są gotowe {count}",
+ "provisioned_devices": "Zarejestrowane urządzenia",
+ "server_url": "Adres URL serwera",
+ "server_version": "Wersja serwera"
+ },
+ "device_info": {
+ "device_config": "Konfiguruj urządzenie",
+ "heal_node": "Uzdrawiaj urządzenie",
+ "highest_security": "Najwyższe bezpieczeństwo",
+ "is_secure": "Bezpieczne",
+ "node_ready": "Urządzenie gotowe",
+ "node_status": "Status urządzenia",
+ "reinterview_device": "Ponownie odpytaj urządzenie",
+ "remove_failed": "Usuń uszkodzone urządzenie",
+ "unknown": "Nieznany",
+ "zwave_info": "Informacje Z-Wave",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Wersja {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "Uzdrawianie sieci zostało anulowane.",
+ "healing_complete": "Uzdrawianie sieci zostało zakończone.",
+ "healing_failed": "Uzdrawianie nie powiodło się. Dodatkowe informacje mogą być dostępne w logach.",
+ "in_progress": "Trwa uzdrawianie sieci. To zajmie trochę czasu.",
+ "introduction": "Rozpocznij uzdrawianie sieci Z-Wave. Uzdrawianie sieci spowoduje, że wszystkie urządzenia ponownie obliczą swoje trasy z powrotem do kontrolera i jest zalecane, jeśli niedawno przeniesiono urządzenia lub kontroler.",
+ "run_in_background": "Możesz zamknąć to okno, a uzdrawianie sieci będzie kontynuowane w tle.",
+ "start_heal": "Rozpocznij uzdrawianie",
+ "stop_heal": "Zatrzymaj uzdrawianie",
+ "title": "Uzdrawianie sieci Z-Wave",
+ "traffic_warning": "Proces uzdrawiania generuje duży ruch w sieci Z-Wave. Może to spowodować, że urządzenia będą reagować powoli (lub wcale) podczas trwania uzdrawiania."
+ },
+ "heal_node": {
+ "healing_complete": "{device} zostało uzdrowione.",
+ "healing_failed": "Nie udało się uzdrowić {device}.",
+ "healing_failed_check_logs": "Dodatkowe informacje mogą być dostępne w logach.",
+ "in_progress": "Trwa uzdrawianie {device}.",
+ "introduction": "Poleć {device}, aby zaktualizowało swoje trasy połączeń z kontrolerem. Może to pomóc w problemach z komunikacją, jeśli lokalizacja urządzenia lub kontrolera została zmieniona.",
+ "network_heal_in_progress": "Uzdrawianie sieci Z-Wave jest już w toku. Proszę poczekać na jego zakończenie, zanim zaczniesz uzdrawiać poszczególne urządzenia.",
+ "start_heal": "Uzdrawiaj urządzenie",
+ "title": "Uzdrawianie urządzenia Z-Wave",
+ "traffic_warning": "Proces uzdrawiania generuje duży ruch w sieci Z-Wave. Może to spowodować, że urządzenia będą reagować wolno (lub wcale) podczas tego procesu."
+ },
+ "logs": {
+ "download_logs": "Pobierz logi",
+ "log_level": "Poziom loga",
+ "log_level_changed": "Poziom dziennika zmieniony na: {level}",
+ "subscribed_to_logs": "Zasubskrybowano komunikaty dziennika Z-Wave JS…",
+ "title": "Logi Z-Wave JS"
+ },
+ "navigation": {
+ "logs": "Logi",
+ "network": "Sieć"
+ },
+ "network_status": {
+ "connected": "połączono",
+ "connecting": "łączenie",
+ "unknown": "nieznany"
+ },
+ "node_config": {
+ "attribution": "Parametry konfiguracyjne urządzenia oraz opisy są dostarczane przez {device_database}",
+ "battery_device_notice": "Urządzenia zasilane bateriami muszą być aktywne, aby zaktualizować ich konfigurację. Zapoznaj się z instrukcją obsługi urządzenia, aby uzyskać instrukcje dotyczące wybudzania urządzenia.",
+ "error_device_not_found": "Nie znaleziono urządzenia",
+ "header": "Konfiguracja urządzenia Z-Wave",
+ "introduction": "Zarządzaj i dostosowuj specyficzne parametry konfiguracyjne dla wybranego urządzenia",
+ "parameter": "Parametr",
+ "parameter_is_read_only": "Ten parametr jest tylko do odczytu.",
+ "set_param_accepted": "Parametr został zaktualizowany.",
+ "set_param_error": "Wystąpił błąd.",
+ "set_param_queued": "Zmiana parametru została umieszczona w kolejce i zostanie zaktualizowana po wybudzeniu urządzenia.",
+ "zwave_js_device_database": "Baza danych urządzeń Z-Wave JS"
+ },
+ "node_status": {
+ "alive": "żywy",
+ "asleep": "uśpiony",
+ "awake": "wybudzony",
+ "dead": "martwy",
+ "unknown": "nieznany"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "Jeśli wyrejestrujesz urządzenie, nie zostanie ono dodane do Home Assistanta, gdy zostanie włączone. Jeśli zostało już dodane do Home Assistanta, wyrejestrowanie urządzenia nie spowoduje usunięcia go z Home Assistanta.",
+ "confirm_unprovision_title": "Czy na pewno chcesz wyrejestrować urządzenie?",
+ "dsk": "DSK",
+ "included": "Zawiera",
+ "not_included": "Nie zawiera",
+ "security_classes": "Klasy bezpieczeństwa",
+ "unprovison": "Wyrejestruj"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "Przed rozpoczęciem odpytywania, urządzenia zasilane bateryjnie muszą zostać wybudzone. Zapoznaj się z instrukcją obsługi urządzenia, aby uzyskać informacje dotyczące wybudzania.",
+ "in_progress": "Urządzenie jest odpytywane. To może zająć trochę czasu.",
+ "interview_complete": "Odpytywanie urządzenia zakończone.",
+ "interview_failed": "Odpytywanie urządzenia nie powiodło się. Dodatkowe informacje mogą być dostępne w logach.",
+ "introduction": "Odpytaj urządzenie w swojej sieci Z-Wave. Użyj tej funkcji, jeśli Twoje urządzenie nie działa lub działa nieprawidłowo.",
+ "run_in_background": "Możesz zamknąć to okno, a odpytywanie będzie kontynuowane w tle.",
+ "start_reinterview": "Rozpocznij ponowne odpytywanie",
+ "title": "Ponowne odpytywanie urządzenia Z-Wave"
+ },
+ "remove_failed_node": {
+ "in_progress": "Trwa usuwanie urządzenia.",
+ "introduction": "Usuń uszkodzone urządzenie z sieci Z-Wave. Użyj tego, jeśli nie możesz normalnie wykluczyć urządzenia, ponieważ jest zepsute.",
+ "removal_failed": "Urządzenie nie mogło zostać usunięte z sieci Z-Wave.",
+ "removal_finished": "Urządzenie {id} zostało usunięte z Twojej sieci Z-Wave.",
+ "remove_device": "Usuń urządzenie",
+ "title": "Usuń uszkodzone urządzenie Z-Wave"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Anuluj usuwanie węzła",
+ "controller_in_exclusion_mode": "Kontroler Z-Wave jest teraz w trybie usuwania węzła.",
+ "exclusion_failed": "Nie można usunąć urządzenia. Sprawdź logi, aby uzyskać więcej informacji.",
+ "exclusion_finished": "Urządzenie {id} zostało usunięte z Twojej sieci Z-Wave.",
+ "follow_device_instructions": "Postępuj zgodnie ze wskazówkami dołączonymi do urządzenia, aby wywołać usuwanie z sieci.",
+ "introduction": "Usuń urządzenie ze swojej sieci Z-Wave i usuń powiązane urządzenie i encje z Home Assistanta.",
+ "start_exclusion": "Rozpocznij usuwanie węzła",
+ "title": "Usuń urządzenie Z-Wave"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Brak"
+ },
+ "S0_Legacy": {
+ "description": "Przykład: Starsze zamki do drzwi bez wsparcia S2",
+ "title": "S0 Legacy"
+ },
+ "S2_AccessControl": {
+ "description": "Przykład: zamki do drzwi i bramy garażowe",
+ "title": "Kontrola dostępu S2"
+ },
+ "S2_Authenticated": {
+ "description": "Przykład: oświetlenie, czujniki i systemy bezpieczeństwa",
+ "title": "S2 uwierzytelniony"
+ },
+ "S2_Unauthenticated": {
+ "description": "Jak uwierzytelnianie S2, ale bez weryfikacji, czy dołączone jest właściwe urządzenie",
+ "title": "S2 nieuwierzytelniony"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Będzie miał dostęp do wszystkich danych w Home Assistant.",
+ "hide_message": "Zapoznaj się z dokumentacją komponentu panel_custom, aby ukryć tę wiadomość",
+ "question_trust": "Czy ufasz panelowi zewnętrznemu {name} pod adresem {link}?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Aktywni słuchacze",
+ "alert_event_type": "Typ zdarzenia jest polem obowiązkowym",
+ "available_events": "Dostępne zdarzenia",
+ "count_listeners": " ({count} słuchaczy)",
+ "data": "Dane zdarzenia (YAML, opcjonalnie)",
+ "description": "Wywołaj zdarzenie na szynie zdarzeń.",
+ "documentation": "Dokumentacja zdarzeń.",
+ "event_fired": "Zdarzenie {name} wywołane",
+ "fire_event": "Wywołaj zdarzenie",
+ "listen_to_events": "Nasłuch zdarzeń",
+ "listening_to": "Nasłuchiwanie…",
+ "notification_event_fired": "Udało się wywołać zdarzenie {type}!",
+ "start_listening": "Rozpocznij nasłuch",
+ "stop_listening": "Zatrzymaj nasłuch",
+ "subscribe_to": "Zdarzenie do zasubskrybowania",
+ "title": "Zdarzenia",
+ "type": "Typ zdarzenia"
+ },
+ "services": {
+ "accepts_target": "Ta usługa akceptuje cel, na przykład: `entity_id: light.bed_light`",
+ "all_parameters": "Wszystkie dostępne parametry",
+ "call_service": "Wywołaj usługę",
+ "column_description": "Opis",
+ "column_example": "Przykład",
+ "column_parameter": "Parametr",
+ "description": "Narzędzie deweloperskie Usługi pozwala na wywołanie dowolnej dostępnej usługi.",
+ "fill_example_data": "Wypełnij przykładowymi danymi",
+ "no_template_ui_support": "Interfejs użytkownika nie obsługuje szablonów, nadal możesz używać edytora YAML.",
+ "title": "Usługi",
+ "ui_mode": "Przejdź do trybu interfejsu użytkownika",
+ "yaml_mode": "Przejdź do trybu YAML",
+ "yaml_parameters": "Parametry dostępne tylko w trybie YAML"
+ },
+ "states": {
+ "alert_entity_field": "Encja jest polem obowiązkowym",
+ "attributes": "Atrybuty",
+ "copy_id": "Skopiuj ID do schowka",
+ "current_entities": "Bieżące encje",
+ "description1": "Ustaw aktualne stany encji urządzeń Home Assistanta.",
+ "description2": "Jeśli encja należy do urządzenia, nie nastąpi żadna komunikacja z urządzeniem.",
+ "entity": "Encja",
+ "filter_attributes": "filtr atrybutów",
+ "filter_entities": "Filtr encji",
+ "filter_states": "Filtr stanów",
+ "last_changed": "Ostatnia zmiana",
+ "last_updated": "Ostatnio zaktualizowano",
+ "more_info": "Więcej informacji",
+ "no_entities": "Brak encji",
+ "set_state": "Ustaw stan",
+ "state": "Stan",
+ "state_attributes": "Atrybuty stanu (YAML, opcjonalnie)",
+ "title": "Stany"
+ },
+ "statistics": {
+ "entity": "Encja",
+ "fix_issue": {
+ "fix": "Napraw problem",
+ "units_changed": {
+ "clear": "Usuń wszystkie stare dane statystyczne dla tej encji",
+ "fix": "Napraw problem",
+ "title": "Zmieniła się jednostka tej encji",
+ "update": "Zaktualizuj poprzednie wartości statystyk z \"{metadata_unit}\" do \"{state_unit}\""
+ }
+ },
+ "issue": "Problemy",
+ "issues": {
+ "entity_no_longer_recorded": "Ta encja nie jest już rejestrowana.",
+ "entity_not_recorded": "Ta encja jest wykluczona z rejestrowania.",
+ "no_state": "Dla tej encji nie ma dostępnego stanu.",
+ "units_changed": "Jednostka tej encji została zmieniona z \"{metadata_unit}\" na \"{state_unit}\".",
+ "unsupported_state_class": "Klasa stanu \"{state_class}\" tej jednostki nie jest obsługiwana.",
+ "unsupported_unit": "Jednostka (''{state_unit}'') tej encji nie jest zgodna z jednostką klasy urządzenia ''{device_class}''.",
+ "unsupported_unit_metadata": "Jednostka (''{metadata_unit}'') zarejestrowanych statystyk nie jest zgodna z jednostką \"{supported_unit}\" klasy urządzenia ''{device_class}''.",
+ "unsupported_unit_state": "Jednostka (''{state_unit}'') tej encji nie jest zgodna z jednostką klasy urządzenia ''{device_class}''."
+ },
+ "no_issue": "Brak problemów",
+ "title": "Statystyki"
+ },
+ "templates": {
+ "all_listeners": "Ten szablon nasłuchuje wszystkich zdarzeń zmiany stanu.",
+ "description": "Szablony są renderowane przy użyciu silnika szablonów Jinja2 z kilkoma specyficznymi rozszerzeniami Home Assistanta.",
+ "domain": "Domena",
+ "editor": "Edytor szablonów",
+ "entity": "Encja",
+ "jinja_documentation": "Dokumentacja szablonów Jinja2",
+ "listeners": "Ten szablon nasłuchuje następujących zdarzeń zmiany stanu:",
+ "no_listeners": "Ten szablon nie nasłuchuje żadnych zdarzeń i nie zostanie zaktualizowany automatycznie.",
+ "reset": "Zresetuj do szablonu demonstracyjnego",
+ "result_type": "Rodzaj wyniku",
+ "template_extensions": "Rozszerzenia szablonów Home Assistanta",
+ "time": "Ten szablon aktualizuje się z rozpoczęciem każdej minuty.",
+ "title": "Szablon",
+ "unknown_error_template": "Nieznany błąd podczas renderowania szablonu"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Monitorowanie poszczególnych urządzeń",
+ "energy_distribution_title": "Dystrybucja energii",
+ "energy_gas_graph_title": "Użycie gazu",
+ "energy_solar_graph_title": "Produkcja z energii słonecznej",
+ "energy_sources_table_title": "Źródła",
+ "energy_usage_graph_title": "Użycie energii"
+ },
+ "charts": {
+ "by_device": "Użycie według urządzenia",
+ "solar": "Panele słoneczne",
+ "stat_house_energy_meter": "Całkowite użycie energii"
+ },
+ "setup": {
+ "back": "Wstecz",
+ "done": "Pokaż mój panel energetyczny!",
+ "next": "Dalej"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Z tej funkcji można korzystać tylko po przejęciu kontroli nad interfejsem użytkownika Lovelace.",
+ "saving_failed": "Zapisywanie konfiguracji interfejsu użytkownika Lovelace nie powiodło się.",
+ "yaml_unsupported": "Nie możesz używać tej funkcji, gdy używasz interfejsu użytkownika Lovelace w trybie YAML."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Czy na pewno chcesz uruchomić akcję \"{action}\"?",
+ "no_entity_more_info": "Nie wybrano encji dla okna dialogowego \"więcej informacji\"",
+ "no_entity_toggle": "Nie wybrano encji do przełączenia",
+ "no_navigation_path": "Nie określono ścieżki nawigacji",
+ "no_service": "Nie określono usługi do uruchomienia",
+ "no_url": "Nie określono adresu URL do otwarcia"
+ },
+ "confirm_delete": "Czy na pewno chcesz usunąć tę kartę?",
+ "empty_state": {
+ "go_to_integrations_page": "Przejdź do strony integracji.",
+ "no_devices": "Ta strona pozwala kontrolować urządzenia, ale wygląda na to, że nie masz jeszcze żadnych skonfigurowanych. Przejdź na stronę integracji, aby rozpocząć.",
+ "title": "Witaj w domu"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "Ta karta wskazuje, ile energii użytej przez Twój dom zostało wygenerowane przy użyciu paliw niekopalnych, takich jak energia słoneczna, wiatrowa i jądrowa. Im wyżej, tym lepiej!",
+ "non_fossil_energy_consumed": "Użycie energii niekopalnej",
+ "non_fossil_energy_not_calculated": "Nie można obliczyć użytej energii niekopalnej"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Użycie energii"
+ },
+ "energy_distribution": {
+ "battery": "Akumulator",
+ "gas": "Gaz",
+ "go_to_energy_dashboard": "Przejdź do panelu energetycznego",
+ "grid": "Sieć",
+ "home": "Dom",
+ "non_fossil": "Niekopalne",
+ "solar": "Energia słoneczna",
+ "title_today": "Dzisiejsza dystrybucja energii"
+ },
+ "energy_solar_graph": {
+ "forecast": "Prognoza {name}",
+ "production": "Produkcja {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Całkowita z akumulatorów",
+ "cost": "Koszt",
+ "energy": "Energia",
+ "grid_total": "Sieć razem",
+ "source": "Źródło",
+ "total_costs": "Koszty całkowite"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Suma energii z sieci",
+ "consumed_battery": "Użyta energia z akumulatorów",
+ "consumed_solar": "Użyta energia słoneczna",
+ "total_consumed": "Całkowite użycie: {num} kWh",
+ "total_returned": "Całkowite oddanie: {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Jeśli wskaźnik jest w kolorze fioletowym, zwracasz do sieci więcej energii, niż użyłeś. Jeśli jest na niebiesko, użyłeś więcej energii z sieci, niż zwróciłeś.",
+ "energy_dependency": "Ta karta wskazuje użycie energii netto.",
+ "grid_neutrality_not_calculated": "Nie można obliczyć neutralności sieci",
+ "net_consumed_grid": "Użycie netto z sieci",
+ "net_returned_grid": "Produkcja netto zwrócona do sieci",
+ "red_green_color_explain": "Jeśli jest zielony, oznacza to, że wyprodukowałeś więcej energii niż użyłeś z sieci. Jeśli jest na czerwono, oznacza to, że część użytej energii w domu pochodziła z sieci."
+ },
+ "loading": "Ładowanie...",
+ "no_data": "Aktualnie brak jeszcze danych. Po skonfigurowaniu panelu energetycznego, zebranie danych może potrwać nawet 2 godziny.",
+ "no_data_period": "Brak danych dla tego okresu.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "Ta karta wskazuje, jaka część wyprodukowanej energii słonecznej została wykorzystana przez Twój dom, a nie zwrócona do sieci.",
+ "card_indicates_solar_energy_used_charge_home_bat": "Jeśli wartość jest zazwyczaj bardzo niska, co wskazuje na nadmierną produkcję z energii słonecznej, możesz rozważyć ładowanie domowych akumulatorów lub samochodu elektrycznego z paneli słonecznych w okresach wysokiej produkcji z energii słonecznej.",
+ "not_produced_solar_energy": "Nie wyprodukowałeś żadnej energii słonecznej",
+ "self_consumed_solar_could_not_calc": "Nie można obliczyć zużycia energii słonecznej na własne potrzeby",
+ "self_consumed_solar_energy": "Energia słoneczna użyta na własne potrzeby"
+ }
+ },
+ "entities": {
+ "never_triggered": "Nigdy nie uruchomiono"
+ },
+ "iframe": {
+ "error_secure_context": "Nie można załadować ramek iframe wskazujących strony internetowe za pomocą {target_protocol} jeśli Home Assistant jest obsługiwany przez {context_protocol}."
+ },
+ "map": {
+ "reset_focus": "Zresetuj powiększenie"
+ },
+ "picture-elements": {
+ "call_service": "Wywołaj usługę {name}",
+ "hold": "Przytrzymanie:",
+ "more_info": "Pokaż więcej informacji: {name}",
+ "navigate_to": "Przejdź do {location}",
+ "tap": "Dotknięcie:",
+ "toggle": "Przełącz {name}",
+ "url": "Otwórz okno do {url_path}"
+ },
+ "safe-mode": {
+ "description": "Podczas wczytywania konfiguracji Home Assistant napotkał problemy i działa teraz w trybie awaryjnym. Zajrzyj do loga, aby sprawdzić, co poszło nie tak.",
+ "header": "Tryb awaryjny aktywny"
+ },
+ "shopping-list": {
+ "add_item": "Dodaj pozycję",
+ "checked_items": "Pozycje zaznaczone",
+ "clear_items": "Wyczyść zaznaczone pozycje",
+ "drag_and_drop": "Przeciągnij i upuść",
+ "reorder_items": "Zmień kolejność elementów"
+ },
+ "show_more_info": "Pokaż więcej informacji",
+ "starting": {
+ "description": "Home Assistant uruchamia się, proszę czekać…"
+ }
+ },
+ "changed_toast": {
+ "message": "Zaktualizowano konfigurację interfejsu Lovelace. Odświeżyć teraz?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Dzień",
+ "month": "Miesiąc",
+ "next": "Dalej",
+ "previous": "Cofnij",
+ "today": "Dziś",
+ "week": "Tydzień",
+ "year": "Rok"
+ },
+ "timestamp-display": {
+ "invalid": "Nieprawidłowy znacznik czasu",
+ "invalid_format": "Nieprawidłowy format czasu"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Wywołaj usługę",
+ "default_action": "Akcja domyślna",
+ "more-info": "Okno więcej informacji",
+ "navigate": "Przejdź",
+ "none": "Brak akcji",
+ "toggle": "Przełącz",
+ "url": "URL"
+ },
+ "navigation_path": "Ścieżka",
+ "url_path": "Ścieżka adresu URL"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Dostępne stany",
+ "description": "Karta panelu alarmowego umożliwia uzbrajanie i rozbrajanie centrali alarmowych.",
+ "name": "Panel alarmu"
+ },
+ "area": {
+ "description": "Karta obszaru automatycznie wyświetla przypisane elementy.",
+ "name": "Obszar",
+ "show_camera": "Pokaż obraz z kamery zamiast obrazu obszaru"
+ },
+ "button": {
+ "default_action_help": "Domyślna akcja zależy od możliwości encji, encja zostanie przełączona lub zostanie wyświetlone okno \"Więcej informacji\".",
+ "description": "Karta przycisku umożliwia dodawanie przycisków do wykonywania zadań.",
+ "name": "Przycisk"
+ },
+ "calendar": {
+ "calendar_entities": "Encje kalendarza",
+ "description": "Karta kalendarza wyświetla kalendarz zawierający widoki dnia, tygodnia i listy.",
+ "inital_view": "Widok początkowy",
+ "name": "Kalendarz",
+ "views": {
+ "dayGridDay": "Dzień",
+ "dayGridMonth": "Miesiąc",
+ "listWeek": "Lista"
+ }
+ },
+ "conditional": {
+ "card": "Karta",
+ "change_type": "Zmień typ",
+ "condition_explanation": "Karta zostanie wyświetlona, gdy zostaną spełnione WSZYSTKIE poniższe warunki.",
+ "conditions": "Warunki",
+ "current_state": "bieżący",
+ "description": "Karta warunkowa wyświetla inną kartę na podstawie stanów encji.",
+ "name": "Warunkowa",
+ "state_equal": "Stan jest równy",
+ "state_not_equal": "Stan nie jest równy"
+ },
+ "config": {
+ "optional": "opcjonalne",
+ "required": "wymagane"
+ },
+ "entities": {
+ "description": "Karta encji jest najbardziej popularnym rodzajem karty. Grupuje ona encje w listy.",
+ "edit_special_row": "Wyświetl szczegóły tego wiersza, klikając przycisk edycji",
+ "entity_row": {
+ "attribute": "Atrybut",
+ "button": "Przycisk",
+ "buttons": "Przyciski",
+ "call-service": "Wywołaj usługę",
+ "cast": "Cast",
+ "conditional": "Warunkowe",
+ "divider": "Dzielnik",
+ "section": "Sekcja",
+ "weblink": "Łącze internetowe"
+ },
+ "entity_row_editor": "Edytor wiersza encji",
+ "name": "Encje",
+ "secondary_info_values": {
+ "brightness": "Jasność",
+ "entity-id": "Identyfikator encji",
+ "last-changed": "Ostatnia zmiana",
+ "last-triggered": "Ostatnie uruchomienie",
+ "last-updated": "Ostatnia aktualizacja",
+ "none": "Brak dodatkowych informacji",
+ "position": "Pozycja",
+ "tilt-position": "Pochylenie"
+ },
+ "show_header_toggle": "Pokaż przełącznik w nagłówku",
+ "special_row": "wiersz specjalny",
+ "toggle": "Przełącz encje"
+ },
+ "entity-filter": {
+ "description": "Karta filtr encji umożliwia zdefiniowanie listy encji, które mają być śledzone tylko w określonym stanie.",
+ "name": "Filtr encji"
+ },
+ "entity": {
+ "description": "Karta encja zapewnia szybki przegląd stanu encji.",
+ "name": "Encja"
+ },
+ "gauge": {
+ "description": "Karta wskaźnika to podstawowa karta, która umożliwia wizualne przedstawienie danych liczbowych sensora.",
+ "name": "Wskaźnik",
+ "needle_gauge": "Wyświetlać jako wskaźnik igłowy?",
+ "severity": {
+ "define": "Zdefiniować progi kolorów?",
+ "green": "Zielony",
+ "red": "Czerwony",
+ "yellow": "Żółty"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Proporcje obrazu",
+ "attribute": "Atrybut",
+ "camera_image": "Encja kamery",
+ "camera_view": "Widok kamery",
+ "days_to_show": "Dni do wyświetlenia",
+ "double_tap_action": "Akcja podwójnego dotknięcia",
+ "entities": "Encje",
+ "entity": "Encja",
+ "hold_action": "Akcja przytrzymania",
+ "hours_to_show": "Godziny do pokazania",
+ "icon": "Ikona",
+ "icon_height": "Wysokość ikony",
+ "image": "Ścieżka obrazu",
+ "manual": "Edytor konfiguracji YAML",
+ "manual_description": "Chcesz dodać niestandardową kartę lub po prostu edytować konfigurację YAML?",
+ "maximum": "Maksimum",
+ "minimum": "Minimum",
+ "name": "Nazwa",
+ "no_theme": "Bez motywu",
+ "refresh_interval": "Częstotliwość odświeżania",
+ "search": "Szukaj",
+ "secondary_info_attribute": "Dodatkowy atrybut informacyjny",
+ "show_icon": "Wyświetlanie ikony",
+ "show_name": "Wyświetlanie nazwy",
+ "show_state": "Wyświetlanie stanu",
+ "state": "Stan",
+ "state_color": "Kolory ikon w zależności od stanu",
+ "tap_action": "Akcja dotknięcia",
+ "theme": "Motyw",
+ "title": "Tytuł",
+ "unit": "Jednostka",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Kolumny",
+ "description": "Karta glance umożliwia grupowanie wielu sensorów w kompaktowym przeglądzie.",
+ "name": "Glance"
+ },
+ "grid": {
+ "columns": "Kolumny",
+ "description": "Karta siatka umożliwia wyświetlanie wielu kart w siatce.",
+ "name": "Siatka",
+ "square": "Renderuj karty jako kwadraty"
+ },
+ "history-graph": {
+ "description": "Karta wykres historii umożliwia wyświetlenie wykresu dla każdej z wymienionych encji.",
+ "name": "Wykres historii"
+ },
+ "horizontal-stack": {
+ "description": "Karta poziomego stosu umożliwia układanie wielu kart razem, dzięki czemu zawsze zlokalizowane są obok siebie w przestrzeni jednej kolumny.",
+ "name": "Poziomy stos"
+ },
+ "humidifier": {
+ "description": "Karta nawilżacza zapewnia kontrolę nad encją nawilżacza. Umożliwia zmianę wilgotności i trybu pracy encji.",
+ "name": "Nawilżacz"
+ },
+ "iframe": {
+ "description": "Karta strona web pozwala osadzić ulubioną stronę bezpośrednio w Home Assistant.",
+ "name": "Strona web"
+ },
+ "light": {
+ "description": "Karta światło pozwala zmienić jasność światła.",
+ "name": "Światło"
+ },
+ "logbook": {
+ "description": "Karta dziennika pokazuje listę zdarzeń dla encji.",
+ "name": "Dziennik"
+ },
+ "map": {
+ "dark_mode": "Tryb ciemny",
+ "default_zoom": "Domyślne powiększenie",
+ "description": "Karta mapy, która pozwala wyświetlać encje na mapie.",
+ "geo_location_sources": "Źródła geolokalizacji",
+ "hours_to_show": "Godziny do wyświetlenia",
+ "name": "Mapa",
+ "source": "Źródło"
+ },
+ "markdown": {
+ "content": "Zawartość",
+ "description": "Karta markdown służy do renderowania treści o składni Markdown.",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "description": "Karta kontroli mediów służy do wyświetlania encji odtwarzacza multimediów na interfejsie z łatwymi w użyciu elementami sterującymi.",
+ "name": "Kontrola mediów"
+ },
+ "picture-elements": {
+ "description": "Karta elementów obrazu to jeden z najbardziej wszechstronnych rodzajów kart. Karty umożliwiają pozycjonowanie ikon lub tekstu, a nawet usług! Na obrazie opartym na współrzędnych.",
+ "name": "Elementy obrazu"
+ },
+ "picture-entity": {
+ "description": "Karta obrazu encji wyświetla encję w postaci obrazu. Zamiast obrazów z adresu URL może również wyświetlać obraz elementów kamery.",
+ "name": "Obraz encji"
+ },
+ "picture-glance": {
+ "description": "Karta obrazu (glance) pokazuje obraz i odpowiadające stany encje jako ikonę. Encje po prawej stronie umożliwiają przełączanie działań, inne pokazują okno dialogowe z większą ilością informacji.",
+ "name": "Obraz (glance)",
+ "state_entity": "Encja stanu"
+ },
+ "picture": {
+ "description": "Karta obrazu umożliwia ustawienie obrazu używanego do nawigacji do różnych ścieżek w interfejsie lub do wywołania usługi.",
+ "name": "Obraz"
+ },
+ "plant-status": {
+ "description": "Karta stanu rośliny jest przeznaczona dla wszystkich uroczych botaników.",
+ "name": "Stan rośliny"
+ },
+ "sensor": {
+ "description": "Karta sensor zapewnia szybki przegląd stanu sensorów z opcjonalnym wykresem, aby wizualizować zmiany w czasie.",
+ "graph_type": "Rodzaj wykresu",
+ "name": "Sensor",
+ "show_more_detail": "Pokaż więcej informacji"
+ },
+ "shopping-list": {
+ "description": "Karta lista zakupów umożliwia dodawanie, edytowanie, zaznaczanie i usuwanie pozycji z listy zakupów.",
+ "integration_not_loaded": "Ta karta wymaga ustawienia integracji `shopping_list`.",
+ "name": "Lista zakupów"
+ },
+ "statistics-graph": {
+ "description": "Karta \"Wykres statystyk\" umożliwia wyświetlenie wykresu statystyk dla każdej z wymienionych encji.",
+ "name": "Wykres statystyk",
+ "period": "Okres",
+ "periods": {
+ "5minute": "5 minut",
+ "day": "Dzień",
+ "hour": "Godzina",
+ "month": "Miesiąc"
+ }
+ },
+ "thermostat": {
+ "description": "Karta termostatu zapewnia kontrolę nad klimatem umożliwiając zmianę temperatury i trybu pracy encji.",
+ "name": "Termostat"
+ },
+ "vertical-stack": {
+ "description": "Karta stosu pionowego umożliwia grupowanie wielu kart, aby zawsze znajdowały się w tej samej kolumnie.",
+ "name": "Pionowy stos"
+ },
+ "weather-forecast": {
+ "description": "Karta prognozy pogody wyświetla pogodę. Bardzo przydatna w przypadku interfejsów wyświetlanych na urządzeniach zawieszonych na ścianie.",
+ "name": "Prognoza pogody",
+ "show_both": "Pokaż obecne warunki i prognozę",
+ "show_forecast": "Wyświetlanie prognozy",
+ "show_only_current": "Pokaż tylko obecne warunki",
+ "show_only_forecast": "Pokaż tylko prognozę"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Według karty",
+ "by_entity": "Według encji",
+ "custom_card": "Niestandardowa",
+ "domain": "Domena",
+ "entity": "Encja",
+ "no_description": "Brak dostępnego opisu."
+ },
+ "common": {
+ "add": "Dodaj",
+ "clear": "Wyczyść",
+ "edit": "Edytuj",
+ "none": "Brak"
+ },
+ "edit_badges": {
+ "panel_mode": "Te odznaki nie zostaną wyświetlone, ponieważ ten widok jest w \"Trybie panelu\".",
+ "view_no_badges": "Odznaki nie są obsługiwane przez bieżący typ widoku."
+ },
+ "edit_card": {
+ "add": "Dodaj kartę",
+ "clear": "Wyczyść",
+ "confirm_cancel": "Czy na pewno chcesz anulować?",
+ "delete": "Usuń kartę",
+ "duplicate": "Duplikuj kartę",
+ "edit": "Edytuj",
+ "header": "Konfiguracja karty",
+ "move": "Przenieś do widoku",
+ "move_after": "Przesuń kartę za",
+ "move_before": "Przesuń kartę przed",
+ "move_down": "Przesuń kartę w dół",
+ "move_up": "Przesuń kartę do góry",
+ "options": "Więcej opcji",
+ "pick_card": "Którą kartę chcesz dodać?",
+ "pick_card_view_title": "Którą kartę chcesz dodać do widoku {name}?",
+ "search_cards": "Szukaj kart",
+ "show_code_editor": "Edytor YAML",
+ "show_visual_editor": "Edytor wizualny",
+ "toggle_editor": "Przełącz edytor",
+ "typed_header": "Konfiguracja karty {type}",
+ "unsaved_changes": "Masz niezapisane zmiany"
+ },
+ "edit_lovelace": {
+ "edit_title": "Edytuj tytuł",
+ "explanation": "Tytuł jest wyświetlany ponad wszystkimi widokami interfejsu użytkownika Lovelace",
+ "header": "Tytuł interfejsu użytkownika Lovelace",
+ "title": "Tytuł"
+ },
+ "edit_view": {
+ "add": "Dodaj widok",
+ "delete": "Usuń widok",
+ "edit": "Edytuj widok",
+ "header": "Konfiguracja widoku",
+ "header_name": "Konfiguracja widoku {name}",
+ "move_left": "Przesuń widok w lewo",
+ "move_right": "Przesuń widok w prawo",
+ "tab_badges": "Odznaki",
+ "tab_settings": "Ustawienia",
+ "tab_visibility": "Widzialność",
+ "type": "Typ widoku",
+ "types": {
+ "masonry": "Kafelki (domyślny)",
+ "panel": "Panel (1 karta)",
+ "sidebar": "Pasek boczny"
+ },
+ "visibility": {
+ "select_users": "Wybierz, którzy użytkownicy powinni mieć dostęp do tego widoku"
+ }
+ },
+ "header": "Edycja interfejsu użytkownika",
+ "header-footer": {
+ "choose_header_footer": "Wybierz {type}",
+ "footer": "Stopka",
+ "header": "Nagłówek",
+ "types": {
+ "buttons": {
+ "name": "Przyciski"
+ },
+ "graph": {
+ "name": "Wykres"
+ },
+ "picture": {
+ "name": "Obraz"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Zarządzaj dashboardami",
+ "manage_resources": "Zarządzaj zasobami",
+ "open": "Otwórz menu interfejsu użytkownika Lovelace",
+ "raw_editor": "Edytor konfiguracji YAML"
+ },
+ "migrate": {
+ "header": "Konfiguracja niekompatybilna",
+ "migrate": "Migracja konfiguracji",
+ "para_migrate": "Home Assistant może automatycznie dodać identyfikatory do wszystkich twoich kart i widoków, po kliknięciu przycisku 'Migracja konfiguracji'.",
+ "para_no_id": "Ten element nie ma ID. Dodaj ID do tego elementu w \"ui-lovelace.yaml\"."
+ },
+ "move_card": {
+ "header": "Wybierz widok, do którego chcesz przenieść kartę"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Jeśli usuniesz konfigurację interfejsu użytkownika Lovelace, widoki automatycznie będą generowane z obszarów i urządzeń.",
+ "confirm_remove_config_title": "Na pewno chcesz usunąć konfigurację interfejsu użytkownika Lovelace? Widoki będą automatycznie generowane z obszarów i urządzeń.",
+ "confirm_unsaved_changes": "Masz niezapisane zmiany. Na pewno chcesz wyjść?",
+ "confirm_unsaved_comments": "Twoja konfiguracja może zawierać komentarze, które nie zostaną zapisane. Czy chcesz kontynuować?",
+ "error_invalid_config": "Twoja konfiguracja jest nieprawidłowa: {error}",
+ "error_parse_yaml": "Nie można przeanalizować YAML: {error}",
+ "error_remove": "Nie można usunąć konfiguracji: {error}",
+ "error_save_yaml": "Nie można zapisać YAML: {error}",
+ "header": "Edytuj konfigurację",
+ "lovelace_changed": "Konfiguracja Lovelace została zaktualizowana, czy chcesz wczytać zaktualizowaną konfigurację do edytora i stracić obecne zmiany?",
+ "reload": "Wczytaj ponownie",
+ "resources_moved": "Zasoby nie powinny być już dodawane do konfiguracji Lovelace, można je dodawać w panelu konfiguracji Lovelace.",
+ "save": "Zapisz",
+ "saved": "Zapisano",
+ "unsaved_changes": "Niezapisane zmiany"
+ },
+ "save_config": {
+ "close": "Zamknij",
+ "empty_config": "Zacznij od pustego dashboardu",
+ "header": "Przejmij kontrolę nad interfejsem użytkownika Lovelace",
+ "para": "Domyślnie Home Assistant będzie zarządzać interfejsem użytkownika, aktualizując go, gdy pojawią się nowe encje lub komponenty Lovelace. Jeśli przejmiesz kontrolę, Home Assistant nie będzie już automatycznie wprowadzać dla ciebie zmian. Możesz także dodać nowy dashboard w konfiguracji, aby go wypróbować.",
+ "para_sure": "Czy na pewno chcesz przejąć kontrolę nad interfejsem użytkownika?",
+ "save": "Przejmuję kontrolę",
+ "yaml_config": "Aby rozpocząć, zapoznaj się z aktualną konfiguracją tego dashboardu:",
+ "yaml_control": "Aby zarządzać w trybie YAML, utwórz plik o nazwie podanej w konfiguracji dla tego dashboardu lub domyślny 'ui-lovelace.yaml'.",
+ "yaml_mode": "Używasz trybu YAML, co oznacza, że nie możesz zmienić konfiguracji Lovelace z poziomu interfejsu użytkownika. Jeśli chcesz zarządzać Lovelace z poziomu interfejsu użytkownika, usuń 'mode: yaml' z konfiguracji Lovelace w pliku 'configuration.yaml'."
+ },
+ "select_view": {
+ "dashboard_label": "Dashboard",
+ "header": "Wybierz widok",
+ "views_label": "Widok"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Edytor stopki",
+ "header": "Edytor nagłówka",
+ "row": "Edytor wiersza encji"
+ }
+ },
+ "suggest_card": {
+ "add": "Dodaj do interfejsu użytkownika Lovelace",
+ "create_own": "Wybierz inną kartę",
+ "header": "Stworzyliśmy dla Ciebie sugestię"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Ten widok zawiera więcej niż jedną kartę, a widok panelu może wyświetlać tylko jedną kartę."
+ }
+ }
+ },
+ "menu": {
+ "close": "Zamknij",
+ "configure_ui": "Edytuj dashboard",
+ "exit_edit_mode": "Wyjdź z trybu edycji interfejsu użytkownika",
+ "help": "Pomoc",
+ "reload_resources": "Wczytaj ponownie zasoby",
+ "start_conversation": "Rozpocznij rozmowę"
+ },
+ "reload_lovelace": "Wczytaj ponownie Lovelace",
+ "reload_resources": {
+ "refresh_body": "Musisz odświeżyć stronę, aby zakończyć ponowne wczytywanie zasobów. Odświeżyć teraz?",
+ "refresh_header": "Czy chcesz odświeżyć?"
+ },
+ "unused_entities": {
+ "available_entities": "Są to encje, które są dostępne, ale jeszcze nie ma ich w interfejsie użytkownika Lovelace.",
+ "domain": "Domena",
+ "entity": "Encja",
+ "entity_id": "Identyfikator encji",
+ "last_changed": "Ostatnia zmiana",
+ "no_data": "Brak nieużywanych encji",
+ "search": "Wyszukaj encje",
+ "select_to_add": "Wybierz encje, które chcesz dodać do karty, a następnie kliknij przycisk dodawania karty.",
+ "title": "Nieużywane encje"
+ },
+ "views": {
+ "confirm_delete": "Usunąć widok?",
+ "confirm_delete_existing_cards": "Usunięcie tego widoku spowoduje również usunięcie kart",
+ "confirm_delete_existing_cards_text": "Czy na pewno chcesz usunąć widok ''{name}''? Widok zawiera {number} kart(ę/y), które zostaną usunięte. Tej akcji nie można cofnąć.",
+ "confirm_delete_text": "Czy na pewno chcesz usunąć widok ''{name}''?"
+ },
+ "warning": {
+ "attribute_not_found": "Atrybut {attribute} jest niedostępny dla: {entity}",
+ "entity_non_numeric": "Encja nie jest numeryczna: {entity}",
+ "entity_not_found": "Encja niedostępna: {entity}",
+ "entity_unavailable": "Encja obecnie niedostępna: {entity}",
+ "starting": "Home Assistant uruchamia się, jeszcze nie wszystko będzie dostępne"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Usunąć",
+ "delete_prompt": "Usunąć tę wiadomość?",
+ "empty": "Nie masz żadnych wiadomości",
+ "playback_title": "Odtwarzanie wiadomości"
+ },
+ "map": {
+ "edit_zones": "Edytuj strefy"
+ },
+ "my": {
+ "component_not_loaded": "To przekierowanie nie jest obsługiwane przez Twoją instancję Home Assistanta. Aby skorzystać z tego przekierowania, potrzebujesz integracji {integration}.",
+ "documentation": "dokumentacja",
+ "error": "Wystąpił nieznany błąd",
+ "faq_link": "Mój Home Assistant - często zadawane pytania",
+ "no_supervisor": "To przekierowanie nie jest obsługiwane przez Twoją instalację Home Assistant. Wymagany jest Home Assistant OS lub Home Assistant Supervised. Więcej informacji można znaleźć na {docs_link}.",
+ "not_supported": "To przekierowanie nie jest obsługiwane przez Twoją instancję Home Assistanta. Sprawdź {link} aby znaleźć obsługiwane przekierowania i wersję, w której zostały wprowadzone."
+ },
+ "page-authorize": {
+ "abort_intro": "Logowanie przerwane",
+ "authorizing_client": "Uzyskujesz dostęp do instancji Home Assistanta w lokalizacji {clientId}.",
+ "form": {
+ "error": "Błąd: {error}",
+ "next": "Zaloguj się",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Sesja wygasła, zaloguj się ponownie"
+ },
+ "error": {
+ "invalid_auth": "Nieprawidłowa nazwa użytkownika lub hasło",
+ "invalid_code": "Nieprawidłowy kod uwierzytelniający"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Hasło",
+ "username": "Nazwa użytkownika"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Kod uwierzytelniania dwuskładnikowego"
+ },
+ "description": "Otwórz **{mfa_module_name}** na urządzeniu, aby wyświetlić dwuskładnikowy kod uwierzytelniający i zweryfikować swoją tożsamość:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Sesja wygasła, zaloguj się ponownie"
+ },
+ "error": {
+ "invalid_auth": "Nieprawidłowa nazwa użytkownika lub hasło",
+ "invalid_code": "Nieprawidłowy kod uwierzytelniający"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Hasło",
+ "username": "Nazwa użytkownika"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Kod uwierzytelniania dwuskładnikowego"
+ },
+ "description": "Otwórz **{mfa_module_name}** na urządzeniu, aby wyświetlić dwuskładnikowy kod uwierzytelniający i zweryfikować swoją tożsamość:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Sesja wygasła, zaloguj się ponownie",
+ "no_api_password_set": "Nie masz skonfigurowanego hasła interfejsu API"
+ },
+ "error": {
+ "invalid_auth": "Nieprawidłowe hasło API",
+ "invalid_code": "Nieprawidłowy kod uwierzytelniający"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Hasło API"
+ },
+ "description": "Proszę wprowadzić hasło API w konfiguracji HTTP:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Kod uwierzytelniania dwuskładnikowego"
+ },
+ "description": "Otwórz **{mfa_module_name}** na urządzeniu, aby wyświetlić dwuskładnikowy kod uwierzytelniający i zweryfikować swoją tożsamość:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Twój komputer nie ma zezwolenia"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Użytkownik"
+ },
+ "description": "Proszę wybrać użytkownika, jako który chcesz się zalogować:"
+ }
+ }
+ }
+ },
+ "start_over": "Zacznij od nowa",
+ "unknown_error": "Coś poszło nie tak",
+ "working": "Proszę czekać"
+ },
+ "initializing": "inicjalizacja",
+ "logging_in_to_with": "Logowanie do **{locationName}** przy użyciu **{authProviderName}**.",
+ "logging_in_with": "Logowanie za pomocą **{authProviderName}**.",
+ "pick_auth_provider": "Lub zaloguj się za pomocą",
+ "store_token": "Nie wylogowuj mnie"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "według {name}",
+ "introduction": "Witaj w domu! Dotarłeś do demonstracji Home Assistant, gdzie prezentujemy najlepsze interfejsy użytkownika stworzone przez naszą społeczność.",
+ "learn_more": "Dowiedz się więcej o Home Assistant",
+ "next_demo": "Następna demonstracja"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Aktywność",
+ "air": "Powietrze",
+ "commute_home": "Dojazd do domu",
+ "entertainment": "Rozrywka",
+ "hdmi_input": "Wejście HDMI",
+ "hdmi_switcher": "Przełącznik HDMI",
+ "information": "Informacje",
+ "lights": "Światła",
+ "morning_commute": "Poranne dojazdy",
+ "total_tv_time": "Całkowity czas przed telewizorem",
+ "turn_tv_off": "Wyłącz telewizor",
+ "volume": "Głośność"
+ },
+ "names": {
+ "family_room": "Pokój rodzinny",
+ "hallway": "Korytarz",
+ "kitchen": "Kuchnia",
+ "left": "Lewo",
+ "master_bedroom": "Główna sypialnia",
+ "mirror": "Lustro",
+ "patio": "Patio",
+ "right": "Prawo",
+ "temperature_study": "Badanie temperatury",
+ "upstairs": "Piętro"
+ },
+ "unit": {
+ "minutes_abbr": "min",
+ "watching": "oglądanie"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Dalej"
+ },
+ "core-config": {
+ "button_detect": "Wykryj",
+ "finish": "Dalej",
+ "intro": "{name}, witamy w Home Assistant. Jak chcesz nazwać swój dom?",
+ "intro_location": "Chcielibyśmy wiedzieć, gdzie mieszkasz. Te dane pomogą w wyświetlaniu informacji i konfigurowaniu automatyki opartej na położeniu słońca. Te dane nigdy nie będą udostępniane poza Twoją sieć lokalną.",
+ "intro_location_detect": "Możemy pomóc Ci wprowadzić te informacje, wysyłając jednorazowe zapytanie do usługi zewnętrznej.",
+ "location_name": "Nazwa instalacji Home Assistanta",
+ "location_name_default": "Dom"
+ },
+ "finish": "Zakończ",
+ "integration": {
+ "finish": "Koniec",
+ "intro": "Urządzenia i usługi są reprezentowane w Home Assistant jako integracje. Możesz je teraz skonfigurować lub zrobić to później w konfiguracji.",
+ "more_integrations": "Więcej"
+ },
+ "intro": "Czy jesteś gotowy, aby ożywić swój dom, odzyskać prywatność i dołączyć do światowej społeczności majsterkowiczów?",
+ "next": "Dalej",
+ "restore": {
+ "addons": "Dodatki",
+ "confirm_password": "Potwierdź hasło kopii zapasowej",
+ "description": "Alternatywnie możesz przywrócić z poprzedniej kopii zapasowej.",
+ "folders": "Foldery",
+ "full_backup": "Pełna kopia zapasowa",
+ "hide_log": "Ukryj cały log",
+ "in_progress": "Trwa przywracanie",
+ "partial_backup": "Częściowa kopia zapasowa",
+ "password": "Hasło kopii zapasowej",
+ "password_protection": "Ochrona hasłem",
+ "select_type": "Wybierz, co przywrócić",
+ "show_log": "Pokaż cały log",
+ "type": "Typ kopii zapasowej"
+ },
+ "user": {
+ "create_account": "Utwórz konto",
+ "data": {
+ "name": "Imię",
+ "password": "Hasło",
+ "password_confirm": "Potwierdź hasło",
+ "username": "Nazwa użytkownika"
+ },
+ "error": {
+ "password_not_match": "Hasła nie są takie same",
+ "required_fields": "Wypełnij wszystkie wymagane pola"
+ },
+ "intro": "Zacznijmy od utworzenia konta użytkownika.",
+ "required_field": "Wymagane"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Home Assistant domyślnie ukrywa zaawansowane funkcje i opcje. Możesz włączyć do nich dostęp za pomocą tej opcji. Jest to ustawienie przyporządkowane do użytkownika i nie wpływa na pozostałych użytkowników korzystających z Home Assistanta.",
+ "link_promo": "Dowiedz się więcej",
+ "title": "Tryb zaawansowany"
+ },
+ "change_password": {
+ "confirm_new_password": "Potwierdź nowe hasło",
+ "current_password": "Bieżące hasło",
+ "error_new_is_old": "Nowe hasło musi być inne niż obecne hasło",
+ "error_new_mismatch": "Wprowadzone nowe hasła nie są zgodne",
+ "error_required": "Wymagane",
+ "header": "Zmień hasło",
+ "new_password": "Nowe hasło",
+ "submit": "Zatwierdź",
+ "success": "Hasło zostało pomyślnie zmienione"
+ },
+ "current_user": "Jesteś obecnie zalogowany jako {fullName}.",
+ "customize_sidebar": {
+ "button": "Edytuj",
+ "description": "Możesz także nacisnąć i przytrzymać nagłówek paska bocznego, aby aktywować tryb edycji.",
+ "header": "Zmień kolejność i ukryj elementy na pasku bocznym"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Przegląd (domyślny)",
+ "description": "Wybierz domyślny dashboard dla tego urządzenia.",
+ "dropdown_label": "Dashboard",
+ "header": "Dashboard"
+ },
+ "enable_shortcuts": {
+ "description": "Włącz lub wyłącz skróty klawiszowe do wykonywania różnych czynności w interfejsie użytkownika.",
+ "header": "Skróty klawiszowe"
+ },
+ "force_narrow": {
+ "description": "Spowoduje to domyślne ukrycie paska bocznego, podobnie jak w przypadku urządzeń przenośnych.",
+ "header": "Zawsze ukrywaj pasek boczny"
+ },
+ "is_owner": "Jesteś właścicielem.",
+ "language": {
+ "dropdown_label": "Język",
+ "header": "Język",
+ "link_promo": "Pomóż w tłumaczeniu"
+ },
+ "logout": "Wyloguj",
+ "logout_text": "Czy na pewno chcesz się wylogować?",
+ "logout_title": "Wylogować się?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Czy na pewno chcesz usunąć token dla {name}?",
+ "create": "Utwórz token",
+ "create_failed": "Nie udało się utworzyć tokena.",
+ "created": "Utworzony {date}",
+ "delete_failed": "Nie udało się usunąć tokena.",
+ "description": "Długoterminowe tokeny dostępu umożliwiają skryptom interakcję z Home Assistantem. Każdy token będzie ważny przez 10 lat od utworzenia. Następujące tokeny są obecnie aktywne.",
+ "empty_state": "Nie masz jeszcze żadnych tokenów.",
+ "header": "Tokeny dostępu",
+ "learn_auth_requests": "Dowiedz się, jak tworzyć uwierzytelnione żądania.",
+ "name": "Nazwa",
+ "prompt_copy_token": "Skopiuj token. Nie będzie on już ponownie wyświetlany.",
+ "prompt_name": "Nazwij token"
+ },
+ "mfa": {
+ "confirm_disable": "Czy na pewno chcesz wyłączyć {name}?",
+ "disable": "Wyłącz",
+ "enable": "Włącz",
+ "header": "Moduły uwierzytelniania wieloskładnikowego"
+ },
+ "mfa_setup": {
+ "close": "Zamknij",
+ "step_done": "Konfiguracja wykonana dla {step}",
+ "submit": "Zatwierdź",
+ "title_aborted": "Przerwano",
+ "title_success": "Powodzenie!"
+ },
+ "number_format": {
+ "description": "Wybierz sposób formatowania liczb.",
+ "dropdown_label": "Format liczbowy",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Auto (użyj ustawień języka)",
+ "none": "Brak",
+ "space_comma": "1 234 567,89",
+ "system": "Użyj ustawień regionalnych systemu"
+ },
+ "header": "Format liczbowy"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Nazwa urządzenia",
+ "title": "Jak powinno nazywać się to urządzenie?"
+ },
+ "description": "Wysyłaj powiadomienia na to urządzenie.",
+ "error_load_platform": "Skonfiguruj notify.html5",
+ "error_use_https": "Wymagany protokół SSL dla interfejsu użytkownika",
+ "header": "Powiadomienia push",
+ "link_promo": "Dowiedz się więcej",
+ "push_notifications": "Powiadomienia push"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Czy na pewno chcesz usunąć token dla {name}?",
+ "created_at": "Utworzony {date}",
+ "current_token_tooltip": "Nie można usunąć bieżącego tokena",
+ "delete_failed": "Nie udało się usunąć tokena.",
+ "description": "Każdy token reprezentuje sesję logowania. Tokeny zostaną automatycznie usunięte po wylogowaniu. Następujące tokeny są obecnie aktywne dla Twojego konta.",
+ "header": "Tokeny",
+ "last_used": "Ostatnio używany {date} z {location}",
+ "not_used": "Nigdy nie był używany",
+ "token_title": "Token dla {clientId}"
+ },
+ "suspend": {
+ "description": "Czy połączenie z serwerem powinno być zamykane, jeśli jest ukryte przez 5 minut?",
+ "header": "Automatyczne zamykanie połączenia"
+ },
+ "themes": {
+ "accent_color": "Kolor akcentu",
+ "dark_mode": {
+ "auto": "Automatyczny",
+ "dark": "Ciemny",
+ "light": "Jasny"
+ },
+ "dropdown_label": "Motyw",
+ "error_no_theme": "Brak dostępnych motywów",
+ "header": "Motyw",
+ "link_promo": "Dowiedz się więcej o motywach",
+ "primary_color": "Kolor podstawowy",
+ "reset": "Zresetuj"
+ },
+ "time_format": {
+ "description": "Wybierz sposób formatowania czasu.",
+ "dropdown_label": "Format czasu",
+ "formats": {
+ "12": "12-godzinny (AM / PM)",
+ "24": "24-godzinny",
+ "language": "Auto (użyj ustawień języka)",
+ "system": "Użyj ustawień regionalnych systemu"
+ },
+ "header": "Format czasu"
+ },
+ "vibrate": {
+ "description": "Włącz lub wyłącz wibracje na tym urządzeniu podczas sterowania urządzeniami.",
+ "header": "Wibracja"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Rozpocznij rozmowę"
+ }
+ },
+ "sidebar": {
+ "done": "Gotowe",
+ "external_app_configuration": "Konfiguracja aplikacji",
+ "hide_panel": "Ukryj panel",
+ "show_panel": "Pokaż panel",
+ "sidebar_toggle": "Przełącz pasek boczny"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/pt-BR.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/pt-BR.json
new file mode 100644
index 00000000..0f8cdbd6
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/pt-BR.json
@@ -0,0 +1,4650 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Configuração",
+ "device": "Dispositivo",
+ "integration": "Integração",
+ "user": "Usuário"
+ }
+ },
+ "groups": {
+ "owner": "Proprietário",
+ "system-admin": "Administradores",
+ "system-read-only": "Usuários somente leitura",
+ "system-users": "Usuários"
+ },
+ "panel": {
+ "calendar": "Calendário",
+ "config": "Configurações",
+ "developer_tools": "Ferramentas de desenvolvedor",
+ "energy": "Energia",
+ "history": "Histórico",
+ "logbook": "Registro de eventos",
+ "mailbox": "Caixa de correio",
+ "map": "Mapa",
+ "media_browser": "Navegador Multimídia",
+ "profile": "Perfil",
+ "shopping_list": "Lista de compras",
+ "states": "Visão geral"
+ },
+ "state": {
+ "default": {
+ "off": "Desligado",
+ "on": "Ligado",
+ "unavailable": "Indisponível",
+ "unknown": "Desconhecido"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Automático",
+ "off": "Desligado",
+ "on": "Ligado"
+ },
+ "hvac_action": {
+ "cooling": "Resfriando",
+ "drying": "Secando",
+ "fan": "Ventilando",
+ "heating": "Aquecendo",
+ "idle": "Oscioso",
+ "off": "Desligado"
+ },
+ "preset_mode": {
+ "activity": "Atividade",
+ "away": "Ausente",
+ "boost": "Turbo",
+ "comfort": "Conforto",
+ "eco": "Eco",
+ "home": "Home",
+ "none": "Nenhum",
+ "sleep": "Suspender"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Automático",
+ "away": "Ausente",
+ "baby": "Bebê",
+ "boost": "Turbo",
+ "comfort": "Conforto",
+ "eco": "Econômico",
+ "home": "Casa",
+ "normal": "Normal",
+ "sleep": "Suspenso"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Armado",
+ "armed_away": "Armado",
+ "armed_custom_bypass": "Armado",
+ "armed_home": "Armado",
+ "armed_night": "Armado",
+ "armed_vacation": "Armado",
+ "arming": "Armando",
+ "disarmed": "Desarm",
+ "disarming": "Desarm",
+ "pending": "Pend",
+ "triggered": "Disp"
+ },
+ "default": {
+ "entity_not_found": "Entidade não encontrada",
+ "error": "Erro",
+ "unavailable": "Indisp",
+ "unknown": "Desc"
+ },
+ "device_tracker": {
+ "home": "Em casa",
+ "not_home": "Ausente"
+ },
+ "person": {
+ "home": "Em casa",
+ "not_home": "Ausente"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Padrão",
+ "header": "Áudio",
+ "input": "Entrada",
+ "output": "Resultado"
+ },
+ "network": {
+ "container": "Container",
+ "disabled": "Desativado",
+ "header": "Rede",
+ "host": "Host"
+ },
+ "no_configuration": "Este add-on não expõe configuração…",
+ "options": {
+ "edit_in_ui": "Editar na interface gráfica",
+ "edit_in_yaml": "Editar como YAML",
+ "header": "Opções",
+ "invalid_yaml": "YAML inválido",
+ "show_unused_optional": "Mostrar opções de configuração opcionais não utilizadas"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Falha ao obter os registros de mudança do add-on",
+ "go_to_config": "Falha ao iniciar add-on - validação de configuração falhou!",
+ "install": "Falha ao instalar add-on",
+ "restart": "Falha ao reiniciar add-on",
+ "start": "Falha ao iniciar add-on",
+ "start_invalid_config": "Ir para a configuração",
+ "stop": "Falha ao parar add-on",
+ "uninstall": "Falha ao desinstalar o add-on",
+ "validate_config": "Falha ao validar a configuração do add-on"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor ('Application Armor') é um módulo de segurança do kernel do Linux que restringe recursos de add-ons como acesso à rede, acesso a raw socket e permissão para ler, gravar ou executar arquivos específicos. \n\nOs autores do add-on podem fornecer seus perfis de segurança, otimizados para o add-on ou solicitar que ele seja desativado. Se o AppArmor for desativado, ele aumentará os riscos de segurança e, portanto, terá um impacto negativo na pontuação de segurança do add-on.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "Um add-on pode autenticar usuários contra o Home Assistant, permitindo que os add-ons deem aos usuários a possibilidade de registrar-se em aplicativos executados dentro dos add-ons, usando seu nome de usuário/senha do Home Assistant. Este emblema indica se o autor do add-on solicita esse recurso.",
+ "title": "Autenticação do Home Assistant"
+ },
+ "docker_api": {
+ "description": "O autor do add-on solicitou que o add-on tenha acesso de gerenciamento à instância do Docker em execução em seu sistema. Este modo dá ao add-on total acesso e controle a todo o sistema do Home Assistant, o que adiciona riscos à segurança e pode danificar o sistema quando usado incorretamente. Portanto, esse recurso impacta negativamente a pontuação de segurança do add-on. \n\n Este nível de acesso não é concedido automaticamente e precisa ser confirmado por você. Para fazer isso, você precisa desativar o modo de proteção no add-on manualmente. Desative o modo de proteção apenas se você souber, precisar e confiar na fonte deste add-on.",
+ "title": "Acesso total ao Docker"
+ },
+ "full_access": {
+ "description": "Este add-on tem acesso total ao hardware do seu sistema, a pedido do autor do add-on. O acesso é comparável ao modo privilegiado no Docker. Uma vez que isso abre possíveis riscos de segurança, esse recurso afeta negativamente a pontuação de segurança do add-on. \n\nEste nível de acesso não é concedido automaticamente e precisa ser confirmado por você. Para fazer isso, você precisa desativar o modo de proteção no add-on manualmente. Desative o modo de proteção apenas se você souber, precisar e confiar na fonte deste add-on.",
+ "title": "Acesso Total ao Hardware"
+ },
+ "hassio_api": {
+ "description": "O add-on recebeu acesso à API do Supervisor, por solicitação do autor do add-on. Por padrão, o add-on pode acessar informações gerais da versão do seu sistema. Quando o add-on solicita acesso de nível 'manager' ou 'admin' à API, ele obterá acesso para controlar várias partes do sistema do Home Assistant. Esta permissão é indicada por este emblema e afetará negativamente a pontuação de segurança do add-on.",
+ "title": "Acesso Supervisor API"
+ },
+ "homeassistant_api": {
+ "description": "Este add-on tem permissão para acessar sua instância do Home Assistant em execução diretamente através da API do Home Assistant. Este modo também lida com a autenticação do add-on, o que permite que um add-on interaja com o Home Assistant sem a necessidade de tokens de autenticação adicionais.",
+ "title": "Acesso à API do Home Assistant"
+ },
+ "host_network": {
+ "description": "Os add-ons geralmente são executados em sua própria camada de rede isolada, o que os impede de acessar a rede do sistema operacional host. Em alguns casos, esse isolamento de rede pode limitar os add-ons no fornecimento de seus serviços e, portanto, o isolamento pode ser removido pelo autor do add-on, dando ao add-on acesso total aos recursos de rede da máquina host. Isso fornece ao add-on mais recursos de rede, mas diminui a segurança, portanto, a classificação de segurança do add-on será reduzida quando esta opção for usada pelo add-on.",
+ "title": "Rede de Hospedagem"
+ },
+ "host_pid": {
+ "description": "Normalmente, os processos executados pelo add-on são isolados de todos os outros processos do sistema. O autor do add-on solicitou que o add-on tenha acesso aos processos do sistema em execução na instância do sistema host e permita que o add-on crie processos no sistema host também. Este modo dá ao add-on total acesso e controle a todo o sistema do Home Assistant, o que adiciona riscos à segurança e pode danificar o sistema quando usado incorretamente. Portanto, esse recurso impacta negativamente a pontuação de segurança do add-on. \n\nEste nível de acesso não é concedido automaticamente e precisa ser confirmado por você. Para fazer isso, você precisa desativar o modo de proteção no add-on manualmente. Desative o modo de proteção apenas se você souber, precisar e confiar na fonte deste add-on.",
+ "title": "Namespace de Processos de Host"
+ },
+ "ingress": {
+ "description": "Este add-on está usando o Ingress para incorporar sua interface com segurança ao Home Assistant.",
+ "title": "Ingress"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "auth",
+ "core": "Core",
+ "docker": "docker",
+ "hardware": "hardware",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "host",
+ "host_pid": "pid host",
+ "ingress": "entrada",
+ "rating": "classificação",
+ "stage": "estágio"
+ },
+ "rating": {
+ "description": "O Home Assistant fornece uma classificação de segurança para cada um dos add-ons, que indica os riscos envolvidos ao usar este add-on. Quanto mais acesso um add-on exigir em seu sistema, menor será a pontuação, aumentando assim os possíveis riscos de segurança. \n\nA pontuação está em uma escala de 1 a 6. Onde 1 é a pontuação mais baixa (considerada o mais inseguro e de maior risco) e uma pontuação de 6 é a pontuação mais alta (considerado o mais seguro e o risco mais baixo).",
+ "title": "Avaliação de Segurança do Add-on"
+ },
+ "role": {
+ "admin": "administrador",
+ "backup": "cópia de segurança",
+ "default": "padrão",
+ "homeassistant": "homeassistant",
+ "manager": "gerenciador"
+ },
+ "stage": {
+ "description": "Os add-ons podem ter um de três estágios: \n\n {icon_stable} **Estável**: Esses add-ons estão prontos para serem usados em produção\n\n {icon_experimental} **Experimental**: Esses add-ons podem apresentar error, ou estar num estado inacabado.\n\n {icon_deprecated} **Obsoleto**: Esses add-ons não receberão mais atualizações.",
+ "title": "Estágio do add-on"
+ },
+ "stages": {
+ "deprecated": "Descontinuado",
+ "experimental": "Experimental"
+ }
+ },
+ "changelog": "Registro de Alterações",
+ "cpu_usage": "Uso de CPU pelo Supervisor",
+ "hostname": "Hostname",
+ "install": "instalar",
+ "new_update_available": "{name} {version} está disponível",
+ "not_available_arch": "Este add-on não é compatível com o processador do seu dispositivo ou com o sistema operacional instalado no seu dispositivo.",
+ "not_available_version": "Você está executando o Home Assistant {core_version_installed}, para atualizar para esta versão do add-on, você precisa de pelo menos a versão {core_version_needed} do Home Assistant",
+ "open_web_ui": "Abrir interface web",
+ "option": {
+ "auto_update": {
+ "description": "Atualize automaticamente o add-on quando houver uma nova versão disponível",
+ "title": "Atualização automática"
+ },
+ "boot": {
+ "description": "Faça o add-on iniciar durante a inicialização do sistema",
+ "title": "Iniciar com o sistema"
+ },
+ "ingress_panel": {
+ "description": "Adicione este add-on à sua barra lateral",
+ "title": "Mostrar na barra lateral"
+ },
+ "protected": {
+ "description": "Bloqueia o acesso elevado do sistema a partir do add-on",
+ "title": "Modo de proteção"
+ },
+ "watchdog": {
+ "description": "Isso iniciará o add-on se ele travar",
+ "title": "Watchdog"
+ }
+ },
+ "protection_mode": {
+ "content": "O modo seguro está desativado para este add-on! Isso dá ao add-on acesso total a todo o sistema, o que adiciona riscos à segurança e pode danificar o seu sistema se usado de forma incorreta. Apenas desative o modo seguro se você sabe, precisa e CONFIA na fonte de onde este add-on procede.",
+ "enable": "Ativar modo seguro",
+ "title": "Aviso: o modo seguro está desativado!"
+ },
+ "ram_usage": "Uso de RAM pelo add-on",
+ "rebuild": "recompilar",
+ "restart": "reiniciar",
+ "start": "iniciar",
+ "stop": "parar",
+ "uninstall": "desinstalar",
+ "visit_addon_page": "Visite a página {name} para mais detalhes"
+ },
+ "documentation": {
+ "get_documentation": "Falha ao obter documentação do add-on, {error}"
+ },
+ "failed_to_reset": "Falha ao redefinir a configuração do add-on, {error}",
+ "failed_to_save": "Falha ao salvar a configuração do add-on, {error}",
+ "logs": {
+ "get_logs": "Falha ao obter histórico de registros do add-on, {error}"
+ },
+ "panel": {
+ "configuration": "Ajustes",
+ "documentation": "Documentação",
+ "info": "Informação",
+ "log": "Log"
+ },
+ "state": {
+ "installed": "Add-on está instalado",
+ "not_available": "Add-on não está disponível em seu sistema",
+ "not_installed": "Add-on não está instalado"
+ }
+ },
+ "backup": {
+ "addons": "Add-ons",
+ "confirm_password": "Confirme a senha da cópia de segurança",
+ "could_not_create": "Não foi possível criar uma cópia de segurança",
+ "create": "Criar",
+ "create_backup": "Criar cópia de segurança",
+ "create_blocked_not_running": "Não é possível criar uma cópia de segurança porque o sistema está {state}.",
+ "created": "Criado",
+ "delete_backup_confirm": "Excluir",
+ "delete_backup_text": "Deseja excluir {number} {number, plural,\n one {cópia de segurança}\n other {cópias de segurança}\n}?",
+ "delete_backup_title": "Excluir cópia de segurança",
+ "delete_selected": "Excluir cópias de segurança selecionadas",
+ "enter_password": "Por favor insira uma senha.",
+ "failed_to_delete": "Falha ao excluir",
+ "folders": "Pastas",
+ "full_backup": "Cópia de segurança completa",
+ "name": "Nome da cópia de segurança",
+ "no_backups": "Você não possui nenhuma cópia de segurança.",
+ "partial_backup": "Cópia de segurança parcial",
+ "password": "Senha da cópia de segurança",
+ "password_protection": "Proteção por senha",
+ "passwords_not_matching": "As senhas não coincidem",
+ "select_type": "Selecione o que restaurar",
+ "selected": "{number} selecionado",
+ "type": "Tipo da cópia de segurança",
+ "upload_backup": "Fazer upload da cópia de segurança"
+ },
+ "common": {
+ "cancel": "Cancelar",
+ "close": "Fechar",
+ "description": "Descrição",
+ "error": {
+ "unknown": "Erro desconhecido",
+ "update_failed": "Atualização falhou"
+ },
+ "failed_to_restart_name": "Falha ao reiniciar {name}",
+ "failed_to_update_name": "Falha ao atualizar {name}",
+ "learn_more": "Saiba mais",
+ "menu": "Menu",
+ "new_version_available": "Nova versão disponível",
+ "newest_version": "Nova versão",
+ "no": "Não",
+ "refresh": "Atualizar",
+ "release_notes": "Notas de lançamento",
+ "reload": "Recarregar",
+ "reset_defaults": "Redefinir para os padrões",
+ "reset_options": "Opções de redefinição",
+ "restart": "Reiniciar",
+ "restart_name": "Reiniciar {name}",
+ "review": "revisar",
+ "running_version": "No momento, você está executando a versão {versão}",
+ "save": "Salvar",
+ "show": "Mostrar",
+ "show_more": "Mostrar mais informações sobre isso",
+ "update": "Atualizar",
+ "update_available": "{count, plural,\n one {Atualização pendente}\n other {{count} Atualizações pendentes}\n}",
+ "version": "Versão",
+ "yes": "Sim"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Tem certeza de que deseja redefinir todas as suas opções?",
+ "title": "Opções de redefinição"
+ },
+ "restart": {
+ "text": "Tem certeza que deseja reiniciar {name} ?",
+ "title": "Reiniciar {name}"
+ },
+ "update": {
+ "text": "Tem certeza que deseja atualizar {name} para a versão {version}?",
+ "title": "Atualizar {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Nova versão disponível",
+ "addon_running": "Add-on em execução",
+ "addon_stopped": "Add-on está parado",
+ "addons": "Add-ons instalados",
+ "no_addons": "Você ainda não tem nenhum add-on instalado. Vá até a loja de add-on para começar!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Cancelar",
+ "description": "Atualmente você está usando '' {current_path} '' como disco de dados. A movimentação de discos de dados reinicializará seu dispositivo e estima-se que levará {time} minutos. A instalação do Home Assistant não estará acessível durante este período. Não desligue a energia durante a mudança!",
+ "loading_devices": "Carregando dispositivos",
+ "move": "Mover",
+ "moving": "Movendo disco de dados",
+ "moving_desc": "Reiniciando e movendo o disco de dados. Por favor, tenha paciência",
+ "no_devices": "Nenhum dispositivo adequado foi encontrado",
+ "select_device": "Selecione um novo disco de dados",
+ "title": "Mover disco de dados"
+ },
+ "hardware": {
+ "attributes": "Atributos",
+ "device_path": "Caminho do dispositivo",
+ "id": "ID",
+ "search": "Procurar dispositivos",
+ "subsystem": "Subsistema",
+ "title": "Hardware"
+ },
+ "network": {
+ "connected_to": "Conectado a {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Desativado",
+ "dns_servers": "Servidores DNS",
+ "failed_to_change": "Falha ao alterar as configurações de rede",
+ "gateway": "Endereço do gateway",
+ "ip_netmask": "Endereços IP/Máscara de rede",
+ "open": "Aberto",
+ "scan_ap": "Procurar pontos de acesso",
+ "static": "Estático",
+ "title": "Configurações de rede",
+ "unsaved": "Você tem alterações não salvas; elas serão perdidas se você alterar as guias, deseja continuar?",
+ "warning": "Se você estiver alterando a rede Wi-Fi, o endereço IP ou o gateway da rede, você pode perder a conexão!",
+ "wep": "WEP",
+ "wpa": "wpa-psk"
+ },
+ "registries": {
+ "add_new_registry": "Adicionar novo registro",
+ "add_registry": "Adicionar registro",
+ "failed_to_add": "Falha ao adicionar registro",
+ "failed_to_remove": "Falha ao remover registro",
+ "no_registries": "Nenhum registro configurado",
+ "password": "Senha",
+ "registry": "Registro",
+ "remove": "Remover",
+ "title_add": "Adicionar Novo Registro de Contêiner",
+ "title_manage": "Gerenciar Registros de Contêineres",
+ "username": "Usuário"
+ },
+ "repositories": {
+ "add": "Adicionar",
+ "remove": "Remover",
+ "title": "Gerenciar repositórios de add-on",
+ "used": "O repositório está em uso para complementos instalados e não pode ser removido."
+ },
+ "restart_addon": {
+ "confirm_text": "Reiniciar o add-on",
+ "text": "Deseja reiniciar o add-on com suas alterações?"
+ },
+ "update": {
+ "backup": "Cópia de segurança",
+ "create_backup": "Criar uma cópia de segurança de {name} antes de atualizar",
+ "creating_backup": "Criando uma cópia de segurança de {name}",
+ "updating": "Atualizando {name} para a versão {version}"
+ }
+ },
+ "my": {
+ "error": "Ocorreu um erro inesperado",
+ "error_addon_no_ingress": "O add-on solicitado não suporta entrada",
+ "error_addon_not_found": "Add-on não encontrado",
+ "error_addon_not_installed": "O add-on solicitado não está instalado. Por favor, instale-o primeiro",
+ "error_addon_not_started": "O add-on solicitado não está em execução. Por favor, inicie-o primeiro",
+ "faq_link": "Perguntas frequentes do meu Home Assistant",
+ "not_supported": "Este redirecionamento não é compatível com a sua instância do Home Assistant. Verifique o {link} para os redirecionamentos suportados e a versão em que foram introduzidos."
+ },
+ "panel": {
+ "addons": "",
+ "backups": "Cópias de segurança",
+ "dashboard": "Painel de controle",
+ "store": "Loja de Add-ons",
+ "system": "Sistema"
+ },
+ "store": {
+ "missing_addons": "Add-ons não encontrados? Habilite o modo avançado em sua página de perfil de usuário",
+ "no_results_found": "Nenhum resultado encontrado no {repository}.",
+ "registries": "Registros",
+ "repositories": "Repositórios"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Uso de CPU do Core",
+ "ram_usage": "Uso de RAM do Core"
+ },
+ "host": {
+ "change": "Alterar",
+ "change_hostname": "Mudar Hostname",
+ "confirm_reboot": "Você tem certeza de que quer reiniciar o host?",
+ "confirm_shutdown": "Você tem certeza de que quer desligar o host?",
+ "deployment": "Implantação",
+ "docker_version": "Versão do Docker",
+ "emmc_lifetime_used": "Expectativa de Vida do eMMC usada",
+ "failed_to_get_hardware_list": "Falha ao obter lista de hardware",
+ "failed_to_import_from_usb": "Falha ao importar de USB",
+ "failed_to_move": "Falha ao mover o disco de dados",
+ "failed_to_reboot": "Falha ao reiniciar o host",
+ "failed_to_set_hostname": "A configuração do hostname falhou",
+ "failed_to_shutdown": "Falha ao desligar o host",
+ "hardware": "Hardware",
+ "hostname": "Hostname",
+ "import_from_usb": "Importar via USB",
+ "ip_address": "Endereço IP",
+ "move_datadisk": "Mover disco de dados",
+ "new_hostname": "Por favor, digite um novo hostname:",
+ "operating_system": "Sistema Operacional",
+ "reboot_host": "Reiniciar o host",
+ "shutdown_host": "Desligar o host",
+ "used_space": "Espaço utilizado"
+ },
+ "log": {
+ "get_logs": "Falha ao obter registros do {provider}, {error}",
+ "log_provider": "Provedor de Registros"
+ },
+ "supervisor": {
+ "beta_backup": "Certifique-se de ter cópias de segurança de seus dados antes de ativar este recurso.",
+ "beta_join_confirm": "Você quer se juntar ao canal beta?",
+ "beta_release_items": "Isso inclui versões beta para:",
+ "beta_warning": "As versões beta são para testadores e adotantes imediatos e podem conter alterações de código instáveis",
+ "channel": "Canal",
+ "cpu_usage": "Uso de CPU pelo Supervisor",
+ "failed_to_reload": "Falha ao recarregar o Supervisor",
+ "failed_to_set_option": "Falha em definir a opção Supervisor",
+ "failed_to_update": "Falha ao atualizar o Supervisor",
+ "join_beta_action": "Junte-se ao canal beta",
+ "join_beta_description": "Obtenha atualizações beta para Home Assistant (RCs), Supervisor e host",
+ "leave_beta_action": "Sair do canal beta",
+ "leave_beta_description": "Obtenha atualizações estáveis para Home Assistant, Supervisor e host",
+ "ram_usage": "Uso de RAM pelo Supervisor",
+ "reload_supervisor": "Recarregar Supervisor",
+ "search": "Procurar",
+ "share_diagnostics": "Compartilhar diagnósticos",
+ "share_diagnostics_description": "Compartilhe relatórios de falhas e informações de diagnóstico.",
+ "share_diagonstics_description": "Você gostaria de compartilhar automaticamente relatórios de falhas e informações de diagnóstico quando o Supervisor encontrar erros inesperados? {line_break} Isso nos permitirá corrigir os problemas, as informações só podem ser acessadas pela equipe do Home Assistant Core e não serão compartilhadas com outras pessoas. {line_break} Os dados não incluem nenhuma informação privada/confidencial e você pode desativar isso nas configurações a qualquer momento que quiser.",
+ "share_diagonstics_title": "Ajude a melhorar o Home Assistant",
+ "unhealthy_description": "Executar uma instância não íntegra causará mais problemas. Abaixo está uma lista de problemas encontrados com sua instalação, clique nos links para saber como você pode resolver os problemas.",
+ "unhealthy_reason": {
+ "docker": "O ambiente Docker não está funcionando corretamente",
+ "privileged": "Supervisor não possui privilégios",
+ "setup": "A configuração do Supervisor falhou",
+ "supervisor": "Não foi possível atualizar o Supervisor",
+ "untrusted": "Conteúdo não confiável detectado"
+ },
+ "unhealthy_title": "Sua instalação não está íntegra",
+ "unsupported_description": "Abaixo está uma lista de problemas encontrados com sua instalação, clique nos links para saber como você pode resolver os problemas.",
+ "unsupported_reason": {
+ "apparmor": "O AppArmor não está habilitado no host",
+ "container": "Contêineres conhecidos por causar problemas",
+ "content-trust": "A validação de conteúdo confiável está desativada",
+ "content_trust": "A validação de conteúdo confiável está desativada",
+ "dbus": "DBUS",
+ "docker_configuration": "Configuração do Docker",
+ "docker_version": "Versão do Docker",
+ "job_conditions": "Condições de tarefa ignoradas",
+ "lxc": "LXC",
+ "network_manager": "Gerenciador de Rede",
+ "os": "Sistema Operacional",
+ "os_agent": "Agente do SO",
+ "privileged": "Supervisor não é privilegiado",
+ "software": "Software não suportado detectado",
+ "source_mods": "Modificações na fonte",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Você está executando uma instalação sem suporte",
+ "update_supervisor": "Atualizar o Supervisor",
+ "warning": "AVISO"
+ }
+ },
+ "update_available": {
+ "core_note": "O supervisor voltará para a versão {version} se sua instância não aparecer após a atualização.",
+ "create_backup": "Criar cópia de segurança antes de atualizar",
+ "creating_backup": "Criando cópia de segurança de {name}",
+ "description": "Você tem a versão {version} instalada. Clique em atualizar para a versão {newest_version}",
+ "no_update": "Nenhuma atualização disponível para {name}",
+ "open_release_notes": "Notas de lançamento",
+ "update_name": "Atualização {name}",
+ "updating": "Atualizando {name} para a versão {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Você deseja continuar logado?",
+ "confirm": "Sim",
+ "decline": "Não"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Armar ausente",
+ "arm_custom_bypass": "Bypass personalizado",
+ "arm_home": "Armar em casa",
+ "arm_night": "Acionamento noturno",
+ "arm_vacation": "Armar férias",
+ "clear_code": "Limpar",
+ "code": "Código",
+ "disarm": "Desarmar"
+ },
+ "area": {
+ "area_not_found": "Área não encontrada."
+ },
+ "automation": {
+ "last_triggered": "Último disparo",
+ "trigger": "Executar"
+ },
+ "button": {
+ "press": "Pressione"
+ },
+ "camera": {
+ "not_available": "Imagem indisponível"
+ },
+ "climate": {
+ "aux_heat": "Aquecedor aux",
+ "away_mode": "Modo ausente",
+ "cooling": "Resfriando {name}",
+ "current_temperature": "Temperatura atual {name}",
+ "currently": "Agora",
+ "fan_mode": "Modo ventilação",
+ "heating": "Aquecendo {name}",
+ "high": "quente",
+ "low": "frio",
+ "on_off": "Lig. / Des.",
+ "operation": "Operação",
+ "preset_mode": "Predefinir",
+ "swing_mode": "Modo oscilante",
+ "target_humidity": "Umidade desejada",
+ "target_temperature": "Temperatura desejada",
+ "target_temperature_entity": "temperatura desejada em {name}",
+ "target_temperature_mode": "temperatura desejada do {mode} em {name}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "decrementar",
+ "increment": "incrementar",
+ "reset": "redefinir"
+ }
+ },
+ "cover": {
+ "position": "Posição",
+ "tilt_position": "Posição de inclinação"
+ },
+ "fan": {
+ "direction": "Direção",
+ "forward": "Frente",
+ "oscillate": "Oscilar",
+ "preset_mode": "Modo Predefinido",
+ "reverse": "Reverter",
+ "speed": "Velocidade"
+ },
+ "humidifier": {
+ "humidity": "Umidade desejada",
+ "mode": "Modo",
+ "on_entity": "{name} ligado",
+ "target_humidity_entity": "umidade desejada em {name}"
+ },
+ "light": {
+ "brightness": "Brilho",
+ "cold_white_value": "Brilho do branco frio",
+ "color_brightness": "Brilho da cor",
+ "color_temperature": "Temperatura de cor",
+ "effect": "Efeito",
+ "warm_white_value": "Brilho do branco quente",
+ "white_value": "Balanço de branco"
+ },
+ "lock": {
+ "code": "Código",
+ "lock": "Trancar",
+ "unlock": "Destrancar"
+ },
+ "media_player": {
+ "browse_media": "Navegar mídias",
+ "media_next_track": "Próximo",
+ "media_pause": "Pausar",
+ "media_play": "Tocar",
+ "media_play_pause": "Tocar/pausar",
+ "media_previous_track": "Anterior",
+ "media_stop": "Parar",
+ "media_volume_down": "Baixar volume",
+ "media_volume_mute": "Mudo",
+ "media_volume_unmute": "Desativar mudo",
+ "media_volume_up": "Aumentar volume",
+ "sound_mode": "Modo de som",
+ "source": "Fonte",
+ "text_to_speak": "Texto para falar",
+ "turn_off": "Desligar",
+ "turn_on": "Ligar"
+ },
+ "persistent_notification": {
+ "dismiss": "Dispensar"
+ },
+ "scene": {
+ "activate": "Ativar"
+ },
+ "script": {
+ "cancel": "Cancelar",
+ "cancel_multiple": "Cancelar {number}",
+ "run": "Executar"
+ },
+ "service": {
+ "run": "Executar"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "cancelar",
+ "finish": "terminar",
+ "pause": "pausar",
+ "start": "Iniciar"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Continuar limpeza",
+ "return_to_base": "Retornar para a base",
+ "start_cleaning": "Iniciar limpeza",
+ "turn_off": "Desligar",
+ "turn_on": "Ligar"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Modo ausente",
+ "currently": "Atualmente",
+ "on_off": "Lig. / Des.",
+ "operation": "Operação",
+ "target_temperature": "Temperatura alvo"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Pressão do ar",
+ "humidity": "Umidade",
+ "precipitation": "Precipitação",
+ "temperature": "Temperatura",
+ "visibility": "Visibilidade",
+ "wind_speed": "Velocidade do vento"
+ },
+ "cardinal_direction": {
+ "e": "E",
+ "ene": "ENE",
+ "ese": "ESE",
+ "n": "N",
+ "ne": "NE",
+ "nne": "NNE",
+ "nnw": "NNO",
+ "nw": "NO",
+ "s": "S",
+ "se": "SE",
+ "sse": "SSE",
+ "ssw": "SSO",
+ "sw": "SO",
+ "w": "O",
+ "wnw": "ONO",
+ "wsw": "OSO"
+ },
+ "day": "Dia",
+ "forecast": "Previsão",
+ "high": "Alto",
+ "low": "Fraco",
+ "night": "Noite"
+ }
+ },
+ "common": {
+ "and": "e",
+ "back": "Voltar",
+ "cancel": "Cancelar",
+ "clear": "Limpar",
+ "close": "Fechar",
+ "continue": "Continuar",
+ "copied": "Copiado",
+ "copied_clipboard": "Copiado para a àrea de transferência",
+ "delete": "Excluir",
+ "disable": "Desabilitar",
+ "enable": "Habilitar",
+ "error_required": "Obrigatório",
+ "help": "Ajuda",
+ "leave": "Sair",
+ "loading": "Carregando",
+ "menu": "Menu",
+ "move": "Mover",
+ "next": "Próximo",
+ "no": "Não",
+ "not_now": "Agora não",
+ "overflow_menu": "Menu expansível",
+ "previous": "Anterior",
+ "refresh": "Atualizar",
+ "remove": "Remover",
+ "rename": "Renomear",
+ "save": "Salvar",
+ "skip": "Pular",
+ "stay": "Ficar",
+ "submit": "Enviar",
+ "successfully_deleted": "Excluído com sucesso",
+ "successfully_saved": "Salvo com sucesso",
+ "undo": "Desfazer",
+ "yes": "Sim"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Add-on",
+ "error": {
+ "fetch_addons": {
+ "description": "A busca de add-ons retornou um erro.",
+ "title": "Erro ao buscar add-ons"
+ },
+ "no_supervisor": {
+ "description": "Nenhum Supervisor encontrado, portanto, os add-ons não podem ser carregados.",
+ "title": "Sem Supervisor"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Adicionar",
+ "failed_create_area": "Falha ao criar a área.",
+ "name": "Nome",
+ "text": "Digite o nome da nova área.",
+ "title": "Adicionar nova área"
+ },
+ "add_new": "Adicionar nova área…",
+ "area": "Área",
+ "clear": "Limpar",
+ "no_areas": "Você não possui áreas",
+ "no_match": "Não foram encontradas áreas com esta configuração",
+ "show_areas": "Mostrar áreas"
+ },
+ "attributes": {
+ "expansion_header": "Atributos"
+ },
+ "blueprint-picker": {
+ "add_user": "Adicionar Usuário",
+ "remove_user": "Remover usuário",
+ "select_blueprint": "Selecione um Modelo"
+ },
+ "calendar": {
+ "my_calendars": "Meus Calendários",
+ "today": "Hoje"
+ },
+ "data-table": {
+ "clear": "Limpar",
+ "filtering_by": "Filtrando por",
+ "hidden": "{number} oculto",
+ "no-data": "Sem dados",
+ "search": "Procurar"
+ },
+ "date-range-picker": {
+ "end_date": "Data final",
+ "ranges": {
+ "last_week": "Semana anterior",
+ "this_week": "Esta semana",
+ "today": "Hoje",
+ "yesterday": "Ontem"
+ },
+ "select": "Selecione",
+ "start_date": "Data de início"
+ },
+ "device-picker": {
+ "clear": "Limpar",
+ "device": "Dispositivo",
+ "no_area": "Sem área",
+ "no_devices": "Você não possui dispositivos",
+ "no_match": "Nenhum dispositivo correspondente encontrado",
+ "show_devices": "Mostrar dispositivos",
+ "toggle": "Alternar"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Atributo",
+ "show_attributes": "Mostrar atributos"
+ },
+ "entity-picker": {
+ "clear": "Limpar",
+ "edit": "Editar",
+ "entity": "Entidade",
+ "no_match": "Nenhuma entidade correspondente encontrada",
+ "show_entities": "Mostrar entidades"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "Integração de histórico desativada",
+ "loading_history": "Carregando histórico do estado…",
+ "no_history_found": "Histórico de estado não encontrado."
+ },
+ "logbook": {
+ "by": "por",
+ "by_service": "por serviço",
+ "entries_not_found": "Não foram encontradas entradas no registro de eventos",
+ "messages": {
+ "became_unavailable": "ficou indisponível",
+ "changed_to_state": "alterado para {state}",
+ "cleared_device_class": "liberado ({device_class} não detectado(a))",
+ "cleared_tampering": "violação liberada",
+ "detected_device_class": "{device_class} detectado(a)",
+ "detected_tampering": "violação detectada",
+ "is_closing": "fechando",
+ "is_opening": "abrindo",
+ "rose": "nasceu",
+ "set": "se pôs",
+ "turned_off": "desligado",
+ "turned_on": "ligado",
+ "was_at_home": "estava em casa",
+ "was_at_state": "foi detectado em {state}",
+ "was_away": "foi detectado longe",
+ "was_closed": "foi fechado",
+ "was_connected": "foi conectado",
+ "was_disconnected": "foi desconectado",
+ "was_locked": "foi trancada",
+ "was_low": "estava baixo",
+ "was_normal": "estava normal",
+ "was_opened": "foi aberto",
+ "was_plugged_in": "foi conectado",
+ "was_safe": "estava seguro",
+ "was_unlocked": "foi destrancada",
+ "was_unplugged": "foi desconectado",
+ "was_unsafe": "estava inseguro"
+ },
+ "retrieval_error": "Não foi possível carregar o registro de eventos",
+ "show_trace": "Mostrar traço"
+ },
+ "media-browser": {
+ "audio_not_supported": "Seu navegador não suporta o elemento de áudio.",
+ "choose_player": "Escolha o Reprodutor",
+ "class": {
+ "album": "Álbum",
+ "app": "App",
+ "artist": "Artista",
+ "channel": "Canal",
+ "composer": "Compositor",
+ "contributing_artist": "Artista Contribuinte",
+ "directory": "Biblioteca",
+ "episode": "Episódio",
+ "game": "Jogo",
+ "genre": "Gênero",
+ "image": "Imagem",
+ "movie": "Filme",
+ "music": "Música",
+ "playlist": "Lista de reprodução",
+ "podcast": "Podcast",
+ "season": "Temporada",
+ "track": "Acompanhar",
+ "tv_show": "Programa de TV",
+ "url": "URL",
+ "video": "Vídeo"
+ },
+ "documentation": "documentação",
+ "learn_adding_local_media": "Saiba mais sobre como adicionar mídia na {documentation}.",
+ "local_media_files": "Coloque seus arquivos de vídeo, áudio e imagem no diretório de mídia para poder navegar e reproduzi-los no navegador ou em reprodutores de mídia compatíveis.",
+ "media-player-browser": "Navegador do Reprodutor de Mídia",
+ "media_browsing_error": "Erro de Navegação de Mídia",
+ "media_not_supported": "O Reprodutor de Mídia do seu navegador não suporta este tipo de mídia",
+ "media_player": "Reprodutor de Mídia",
+ "no_items": "Nenhum item",
+ "no_local_media_found": "Nenhuma mídia local encontrada",
+ "no_media_folder": "Parece que você ainda não criou um diretório de mídia.",
+ "pick": "Escolher",
+ "pick-media": "Escolher mídia",
+ "play": "Reproduzir",
+ "play-media": "Reproduzir Mídia",
+ "setup_local_help": "Verifique a {documentation} sobre como configurar a mídia local.",
+ "video_not_supported": "Seu navegador não suporta o elemento de vídeo.",
+ "web-browser": "Navegador da web"
+ },
+ "picture-upload": {
+ "label": "Imagem",
+ "unsupported_format": "Formato não suportado, por favor escolha uma imagem JPEG, PNG ou GIF."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Digite o código QR",
+ "manual_input": "Você pode escanear o código QR com outro scanner e colar no campo abaixo",
+ "not_supported": "Seu navegador não oferece suporte para leitura de QR.",
+ "only_https_supported": "Você só pode usar sua câmera para escanear um código QR ao usar HTTPS.",
+ "select_camera": "Selecione a câmera"
+ },
+ "related-filter-menu": {
+ "filter": "Filtrar",
+ "filter_by_area": "Filtrar por área",
+ "filter_by_device": "Filtrar por dispositivo",
+ "filter_by_entity": "Filtrar por entidade",
+ "filtered_by_area": "área: {area_name}",
+ "filtered_by_device": "dispositivo: {device_name}",
+ "filtered_by_entity": "entidade: {entity_name}"
+ },
+ "related-items": {
+ "area": "Área",
+ "automation": "Parte das seguintes automações",
+ "device": "Dispositivo",
+ "entity": "Entidades relacionadas",
+ "group": "Parte dos seguintes grupos",
+ "integration": "Integração",
+ "no_related_found": "Não foram encontrados itens relacionados.",
+ "scene": "Parte das seguintes cenas",
+ "script": "Parte dos seguintes scripts"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one {dia}\n other {dias}\n}",
+ "hour": "{count} {count, plural,\n one {hora}\n other {horas}\n}",
+ "minute": "{count} {count, plural,\n one {minuto}\n other {minutos}\n}",
+ "second": "{count} {count, plural,\n one {segundo}\n other {segundos}\n}",
+ "week": "{count} {count, plural,\n one {semana}\n other {semanas}\n}"
+ },
+ "future_duration": {
+ "day": "Em {count} {count, plural,\n one {dia}\n other {dias}\n}",
+ "hour": "Em {count} {count, plural,\n one {hora}\n other {horas}\n}",
+ "minute": "Em {count} {count, plural,\n one {minuto}\n other {minutos}\n}",
+ "second": "Em {count} {count, plural,\n one {segundo}\n other {segundos}\n}",
+ "week": "Em {count} {count, plural,\n one {semana}\n other {semanas}\n}"
+ },
+ "just_now": "Agora",
+ "never": "Nunca",
+ "past_duration": {
+ "day": "{count} {count, plural,\n one {dia}\n other {dias}\n} atrás",
+ "hour": "{count} {count, plural,\n one {hora}\n other {horas}\n} atrás",
+ "minute": "{count} {count, plural,\n one {minuto}\n other {minutos}\n} atrás",
+ "second": "{count} {count, plural,\n one {segundo}\n other {segundos}\n} atrás",
+ "week": "{count} {count, plural,\n one {semana}\n other {semanas}\n} atrás"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Documentação da Integração",
+ "required": "Este campo é obrigatório",
+ "service_data": "Dados do serviço",
+ "target": "Alvos",
+ "target_description": "O que este serviço deve usar como áreas, dispositivos ou entidades."
+ },
+ "service-picker": {
+ "service": "Serviço"
+ },
+ "statistic-picker": {
+ "learn_more": "Saiba mais sobre as estatísticas",
+ "missing_entity": "Por que minha estidade não está listada?",
+ "no_match": "Nenhuma estatística foi encontrada",
+ "no_statistics": "Você não tem estatísticas",
+ "statistic": "Estatísticas"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Carregando estatísticas …",
+ "no_statistics_found": "Nenhuma estatística encontrada.",
+ "statistic_types": {
+ "max": "máx",
+ "mean": "média",
+ "min": "min",
+ "sum": "soma"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Escolher área",
+ "add_device_id": "Escolher dispositivo",
+ "add_entity_id": "Escolher entidade",
+ "expand": "Expandir",
+ "expand_area_id": "Expandir esta área para os dispositivos e entidades contidos.",
+ "expand_device_id": "Expandir este dispositivo para as entidades contidas.",
+ "remove": "Remover",
+ "remove_area_id": "Remover área",
+ "remove_device_id": "Remover dispositivo",
+ "remove_entity_id": "Remover entidade"
+ },
+ "user-picker": {
+ "add_user": "Adicionar Usuário",
+ "no_user": "Nenhum usuário",
+ "remove_user": "Remover usuário"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Entidades recém-descobertas, relacionadas a {integration}, serão adicionadas automaticamente.",
+ "enable_new_entities_label": "Habilitar entidades recém-adicionadas.",
+ "enable_polling_description": "Se o Home Assistant deve automaticamente buscar atualizações para as entidades de {integration}.",
+ "enable_polling_label": "Habilitar busca de atualizações.",
+ "restart_home_assistant": "Você precisa reiniciar o Home Assistant para que as mudanças façam efeito.",
+ "title": "Opções do sistema para {integration}",
+ "update": "Atualizar"
+ },
+ "domain_toggler": {
+ "reset_entities": "Reiniciar Entidades",
+ "title": "Alternar Domínios"
+ },
+ "entity_registry": {
+ "control": "Controle",
+ "customize_link": "personalizações de entidade",
+ "dismiss": "Dispensar",
+ "editor": {
+ "advanced": "Configurações avançadas",
+ "area": "Definir apenas a área da entidade",
+ "area_note": "Por padrão, as entidades de um dispositivo estão na mesma área que o dispositivo. Se você alterar a área desta entidade, ela não seguirá mais a área do dispositivo.",
+ "change_device_area": "Alterar área do dispositivo",
+ "confirm_delete": "Tem certeza que você deseja excluir esta entrada?",
+ "delete": "Excluir",
+ "device_class": "Mostrar como",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Porta",
+ "garage_door": "Portão da garagem",
+ "opening": "Outro",
+ "window": "Janela"
+ },
+ "cover": {
+ "door": "Porta",
+ "garage": "Portão da garagem",
+ "window": "Janela"
+ }
+ },
+ "device_disabled": "O dispositivo desta entidade está desativado.",
+ "enabled_cause": "Desativado por {cause}.",
+ "enabled_delay_confirm": "As entidades habilitadas serão adicionadas ao Home Assistant em {delay} segundos",
+ "enabled_description": "Entidades desativadas não serão adicionadas ao Home Assistant.",
+ "enabled_label": "Ativar entidade",
+ "enabled_restart_confirm": "Reinicie o Home Assistant para terminar de habilitar as entidades",
+ "entity_id": "ID da entidade",
+ "follow_device_area": "Siga a área do dispositivo",
+ "icon": "Ícone",
+ "icon_error": "Os ícones devem estar no formato 'prefixo:nome do ícone', ex: 'mdi:home'.",
+ "name": "Nome",
+ "note": "Nota: Isso talvez ainda não funcione com todas as integrações.",
+ "open_device_settings": "Abrir configurações do dispositivo",
+ "unavailable": "Esta entidade não está disponível no momento.",
+ "update": "Atualizar"
+ },
+ "faq": "documentação",
+ "info_customize": "Você pode substituir alguns atributos na seção {customize_link}.",
+ "no_unique_id": "A entidade (''{entity_id}'') não possui um ID único, portanto suas configurações não podem ser gerenciadas a partir da interface do usuário. Consulte o {faq_link} para mais detalhes.",
+ "related": "Relacionado",
+ "settings": "Configurações"
+ },
+ "generic": {
+ "cancel": "Cancelar",
+ "close": "Fechar",
+ "default_confirmation_title": "Confirmação",
+ "ok": "OK"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Valor inicial",
+ "maximum": "Valor máximo",
+ "minimum": "Valor mínimo",
+ "restore": "Restaura o último valor conhecido quando o Home Assistant é iniciado",
+ "step": "Valor do incremento"
+ },
+ "generic": {
+ "icon": "Ícone",
+ "name": "Nome"
+ },
+ "input_datetime": {
+ "date": "Data",
+ "datetime": "Data e hora",
+ "mode": "O que você deseja inserir",
+ "time": "Hora"
+ },
+ "input_number": {
+ "box": "Campo de entrada",
+ "max": "Valor máximo",
+ "min": "Valor mínimo",
+ "mode": "Modo de exibição",
+ "slider": "Controle deslizante",
+ "step": "Valor do incremento",
+ "unit_of_measurement": "Unidade de medida"
+ },
+ "input_select": {
+ "add": "Adicionar",
+ "add_option": "Adicionar opção",
+ "no_options": "Ainda não há opções.",
+ "options": "Opções"
+ },
+ "input_text": {
+ "max": "Comprimento máximo",
+ "min": "Comprimento mínimo",
+ "mode": "Modo de exibição",
+ "password": "Senha",
+ "pattern": "Padrão Regex para validação do lado do cliente",
+ "text": "Texto"
+ },
+ "platform_not_loaded": "A integração {platform} não está carregada. Por favor adicione-a em sua configuração adicionando 'default_config:' ou ''{platform}:''.",
+ "required_error_msg": "Este campo é obrigatório",
+ "timer": {
+ "duration": "Duração"
+ },
+ "yaml_not_editable": "As configurações desta entidade não podem ser editadas a partir da interface do usuário. Somente entidades incluidas utilizando a interface do usuário são configuráveis na interface do usuário."
+ },
+ "image_cropper": {
+ "crop": "Recortar"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Fechar a cobertura",
+ "close_tile_cover": "Fechar inclinação da cobertura",
+ "close_tilt_cover": "Fechar inclinação da cobertura",
+ "open_cover": "Abrir cobertura",
+ "open_tilt_cover": "Abrir inclinação da cobertura",
+ "stop_cover": "Impeça o movimento da cobertura"
+ },
+ "details": "Detalhes",
+ "dismiss": "Dispensar caixa de diálogo",
+ "edit": "Editar entidade",
+ "history": "Histórico",
+ "last_changed": "Última alteração",
+ "last_updated": "Última atualização",
+ "logbook": "Registro de Eventos",
+ "person": {
+ "create_zone": "Criar zona a partir da localização atual"
+ },
+ "remote": {
+ "activity": "Atividade atual"
+ },
+ "restored": {
+ "confirm_remove_text": "Tem certeza de que deseja remover esta entidade?",
+ "confirm_remove_title": "Remover entidade?",
+ "not_provided": "Esta entidade está atualmente indisponível e é órfã de uma integração ou dispositivo removido, alterado ou não funcional.",
+ "remove_action": "Remover entidade",
+ "remove_intro": "Se a entidade não estiver mais em uso, você pode remove-la."
+ },
+ "script": {
+ "last_action": "Última ação",
+ "last_triggered": "Último disparo"
+ },
+ "settings": "Configurações da entidade",
+ "show_more": "Mostrar mais",
+ "sun": {
+ "elevation": "Elevação",
+ "rising": "Nascendo",
+ "setting": "Se pondo"
+ },
+ "updater": {
+ "title": "Atualizar Instruções"
+ },
+ "vacuum": {
+ "clean_spot": "Limpar local",
+ "commands": "Comandos do aspirador de pó:",
+ "fan_speed": "Potência",
+ "locate": "Localizar",
+ "pause": "Pausar",
+ "return_home": "Retornar para a base",
+ "start": "Iniciar",
+ "start_pause": "Iniciar/Pausar",
+ "status": "Estado",
+ "stop": "Parar"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Tentativa de analisar mensagens MQTT como JSON",
+ "entities": "Entidades",
+ "no_entities": "Nenhuma entidade",
+ "no_triggers": "Nenhum gatilho",
+ "payload_display": "Exibição dos valores",
+ "recent_messages": "{n} mensagem(ns) recebida(s) recentemente",
+ "show_as_yaml": "Mostrar como YAML",
+ "title": "Informação de depuração de {device}",
+ "triggers": "Gatilhos"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Opções"
+ },
+ "loading": {
+ "loading_flow": "Por favor, aguarde enquanto as opções escolhidas para a {integration} estão sendo inicializadas",
+ "loading_step": "Carregando próximo passo para {integration}"
+ },
+ "success": {
+ "description": "Opções salvas com sucesso."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Áreas",
+ "automation": "Automações",
+ "blueprint": "Modelos",
+ "core": "Geral",
+ "customize": "Customizações",
+ "devices": "Dispositivos",
+ "energy": "Energia",
+ "entities": "Entidades",
+ "helpers": "Entidade Auxiliar",
+ "info": "Informações",
+ "integrations": "Integrações",
+ "logs": "Registros",
+ "lovelace": "Painéis Lovelace",
+ "person": "Pessoas",
+ "scene": "Cenas",
+ "script": "Scripts",
+ "server_control": "Controles do Servidor",
+ "tag": "Marcadores",
+ "users": "Usuários",
+ "zone": "Zonas"
+ },
+ "reload": {
+ "automation": "Automações",
+ "command_line": "Recarregar entidades de linha de comando",
+ "core": "Localização & Customizações",
+ "filesize": "Entidades de tamanho de arquivo",
+ "filter": "Entidades de filtros",
+ "generic": "Entidades genéricas de câmera IP",
+ "generic_thermostat": "Entidades genéricas de termostato",
+ "group": "Grupos, grupos de entidades e serviços de notificação",
+ "history_stats": "Entidades de histórico de estatísticas",
+ "homekit": "HomeKit",
+ "input_boolean": "Entradas de booleanos",
+ "input_datetime": "Entrada de data",
+ "input_number": "Entradas numéricas",
+ "input_select": "Entradas de seleção",
+ "input_text": "Entradas de texto",
+ "min_max": "Entidades de máximo/mínimo",
+ "mqtt": "Entidades MQTT configuradas manualmente",
+ "person": "Pessoas",
+ "ping": "Entidades de ping sensores binários",
+ "reload": "{domain}",
+ "rest": "Entidades REST e serviços de notificações",
+ "rpi_gpio": "Entidades de GPIO do Raspberry Pi",
+ "scene": "Cenas",
+ "script": "Scripts",
+ "smtp": "Serviço de notificação SMTP",
+ "statistics": "Entidades estatísticas",
+ "telegram": "Serviço de notificação do telegram",
+ "template": "Entidade de template",
+ "themes": "Temas",
+ "trend": "Entidades de tendências",
+ "universal": "Entidades universais de reprodução de mídia",
+ "zone": "Zonas"
+ },
+ "server_control": {
+ "perform_action": "servidor de {action}",
+ "restart": "Reiniciar",
+ "stop": "Parar"
+ },
+ "types": {
+ "navigation": "Navegar",
+ "reload": "Recarregar",
+ "server_control": "Servidor"
+ }
+ },
+ "filter_placeholder": "Filtro de Entidades"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant não ouviu nada",
+ "error": "Oops, ocorreu um erro",
+ "found": "Encontrei o seguinte para você:",
+ "how_can_i_help": "Como posso ajudar?",
+ "label": "Digite uma pergunta e pressione 'Enter'",
+ "label_voice": "Digite e pressione 'Enter' ou toque no microfone para falar"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Adicionar dispositivos através deste dispositivo",
+ "clusters": "Gerenciar Grupos",
+ "device_children": "Ver Filhos",
+ "reconfigure": "Reconfigurar o Dispositivo",
+ "remove": "Remover Dispositivo",
+ "view_in_visualization": "Ver na Visualização",
+ "zigbee_information": "Assinatura de dispositivo Zigbee"
+ },
+ "confirmations": {
+ "remove": "Tem a certeza que quer remover o dispositivo?"
+ },
+ "device_children": "Filhos do dispositivo Zigbee",
+ "device_signature": "Assinatura do dispositivo Zigbee",
+ "last_seen": "Visto pela Última Vez",
+ "manuf": "por {manufacturer}",
+ "no_area": "Sem Área",
+ "power_source": "Fonte de Energia",
+ "quirk": "Quirk",
+ "services": {
+ "reconfigure": "Reconfigure o dispositivo ZHA (curar dispositivo). Use isto se você tiver problemas com o dispositivo. Se o dispositivo em questão for um dispositivo alimentado por bateria, certifique-se de que ele esteja ativo e aceitando comandos ao usar esse serviço.",
+ "remove": "Remover um dispositivo da rede Zigbee.",
+ "updateDeviceName": "Definir um nome personalizado para este dispositivo no registro de dispositivos.",
+ "zigbee_information": "Veja as informações Zigbee do dispositivo."
+ },
+ "unknown": "Desconhecido",
+ "zha_device_card": {
+ "device_name_placeholder": "Alterar o nome do dispositivo"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Atributo",
+ "battery_device_warning": "Você precisará despertar os dispositivos alimentados por bateria antes de iniciar o processo de reconfiguração. Consulte o manual do seu dispositivo para obter instruções sobre como despertar o dispositivo.",
+ "bind_header": "Vinculação",
+ "button_hide": "Ocultar Detalhes",
+ "button_show": "Mostrar Detalhes",
+ "cluster_header": "Cluster",
+ "configuration_complete": "Reconfiguração do dispositivo concluída.",
+ "configuration_failed": "A reconfiguração do dispositivo falhou. Informações adicionais podem estar disponíveis nos logs.",
+ "configuring_alt": "Configurando",
+ "heading": "Reconfigurando dispositivo",
+ "in_progress": "O dispositivo está sendo reconfigurado. Isto pode levar algum tempo.",
+ "introduction": "Reconfigure um dispositivo em sua rede Zigbee. Use este recurso se o seu dispositivo não estiver funcionando corretamente.",
+ "min_max_change": "min/máx/mudança",
+ "reporting_header": "Relatório",
+ "run_in_background": "Você pode fechar esta caixa de diálogo e a reconfiguração continuará em segundo plano.",
+ "start_reconfiguration": "Iniciar Reconfiguração"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\none {dia}\nother {dias}\n}",
+ "hour": "{count} {count, plural,\none {hora}\nother {horas}\n}",
+ "minute": "{count} {count, plural,\none {minuto}\nother {minutos}\n}",
+ "second": "{count} {count, plural,\none {second}\nother {seconds}\n}",
+ "week": "{count} {count, plural,\none {semana}\nother {semanas}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Você ainda pode editar sua configuração como YAML.",
+ "editor_not_available": "Nenhum editor visual disponível para o tipo \"{type}\".",
+ "editor_not_supported": "O editor visual não é compatível com esta configuração",
+ "error_detected": "Erros de configuração detectados",
+ "key_missing": "A chave obrigatória \"{key}\" está faltando.",
+ "key_not_expected": "A chave \"{key}\" não é esperada ou não é compatível com o editor gráfico.",
+ "key_wrong_type": "O valor fornecido para \"{key} \" não é compatível com o editor visual. Aceitamos ({type_correct}), mas recebemos ({type_wrong}).",
+ "no_state_array_support": "Vários valores de estado não são suportados no editor visual",
+ "no_template_editor_support": "Templates não são suportados no editor visual",
+ "no_type_provided": "Nenhum tipo fornecido."
+ },
+ "supervisor": {
+ "ask": "Peça por ajuda",
+ "observer": "Verifique o Observador",
+ "reboot": "Tente reiniciar o host",
+ "system_health": "Verificar Integridade do Sistema",
+ "title": "Não foi possível carregar o painel do Supervisor!",
+ "wait": "Se você acabou de iniciar, certifique-se de dar ao Supervisor tempo suficiente para iniciar."
+ }
+ },
+ "login-form": {
+ "log_in": "Entrar",
+ "password": "Senha",
+ "remember": "Lembrar"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Clique no botão para configurar {entity}",
+ "close": "Fechar",
+ "dismiss_all": "Dispensar todos",
+ "empty": "Sem notificações",
+ "title": "Notificações"
+ },
+ "notification_toast": {
+ "connection_lost": "Conexão perdida. Reconectando…",
+ "dismiss": "Dispensar",
+ "integration_starting": "Iniciando {integration}, nem tudo estará disponível até que tudo seja carregado.",
+ "service_call_failed": "Falha ao chamar o serviço {service}.",
+ "started": "O Home Assistant foi iniciado!",
+ "starting": "O Home Assistant está iniciando, algumas funcionalidades podem estar indisponíveis até que tudo seja carregado.",
+ "triggered": "{name} disparado",
+ "wrapping_up_startup": "Concluindo a inicialização, nem tudo estará disponível até que tudo seja carregado."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Faltando opções de configuração? Ative o modo avançado",
+ "link_profile_page": "sua página de perfil"
+ },
+ "areas": {
+ "add_picture": "Adicione uma imagem",
+ "assigned_to_area": "Atribuído a esta área",
+ "caption": "Áreas",
+ "data_table": {
+ "area": "Área",
+ "devices": "Dispositivos",
+ "entities": "Entidades"
+ },
+ "delete": {
+ "confirmation_text": "Todos os dispositivos nesta área ficarão sem designação.",
+ "confirmation_title": "Tem certeza de que deseja excluir esta área?"
+ },
+ "description": "Visão geral de todas as áreas da sua casa.",
+ "edit_settings": "Configurações de área",
+ "editor": {
+ "area_id": "ID da Área",
+ "create": "Criar",
+ "default_name": "Nova Área",
+ "delete": "Excluir",
+ "linked_entities_caption": "Entidades",
+ "name": "Nome",
+ "name_required": "Nome é obrigatório",
+ "no_linked_entities": "Não há entidades vinculadas a esta área.",
+ "unknown_error": "Erro desconhecido",
+ "update": "Atualizar"
+ },
+ "picker": {
+ "create_area": "Criar Zona",
+ "header": "Registro de Zona",
+ "integrations_page": "Página de integrações",
+ "introduction": "Áreas são usadas para organizar os dispositivos. Essas informações serão usadas no Home Assistant para ajudá-lo a organizar sua interface, permissões e integrações com outros sistemas.",
+ "introduction2": "Para colocar dispositivos em uma área, use o link abaixo para navegar até a página de integrações e, em seguida, clique em uma integração para acessar os cartões do dispositivo.",
+ "no_areas": "Parece que você ainda não tem áreas!"
+ },
+ "targeting_area": "Mirando nesta área"
+ },
+ "automation": {
+ "caption": "Automações",
+ "description": "Crie regras de comportamento personalizadas para sua casa",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Usar um modelo"
+ },
+ "header": "Criar automação",
+ "how": "Como você quer criar sua automação?",
+ "start_empty": "Começar com uma automação vazia",
+ "start_empty_description": "Crie uma automação do zero",
+ "thingtalk": {
+ "create": "Criar",
+ "header": "Descreva a automação que você deseja criar",
+ "input_label": "O que essa automação deve fazer?",
+ "intro": "E vamos tentar criar isso para você. Por exemplo: Apague as luzes quando eu sair."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Adicionar ação",
+ "delete": "Excluir",
+ "delete_confirm": "Tem certeza que deseja excluir?",
+ "duplicate": "Duplicar",
+ "header": "Ações",
+ "introduction": "As ações são o que o Home Assistant fará quando a automação for acionada.",
+ "learn_more": "Saiba mais sobre ações",
+ "name": "Ação",
+ "type": {
+ "choose": {
+ "add_option": "Adicionar opção",
+ "conditions": "Condições",
+ "default": "Ações padrão",
+ "label": "Selecione",
+ "option": "Opção {number}",
+ "remove_option": "Remover opção",
+ "sequence": "Ações"
+ },
+ "condition": {
+ "label": "Condição"
+ },
+ "delay": {
+ "delay": "Atraso",
+ "label": "Espere o tempo passar (atraso)"
+ },
+ "device_id": {
+ "action": "Açao",
+ "extra_fields": {
+ "brightness_pct": "Brilho",
+ "code": "Código",
+ "flash": "Flash",
+ "humidity": "Umidade",
+ "message": "Mensagem",
+ "mode": "Modo",
+ "position": "Posição",
+ "title": "Título",
+ "value": "Valor"
+ },
+ "label": "Dispositivo"
+ },
+ "event": {
+ "event": "Evento:",
+ "label": "Iniciar evento",
+ "service_data": "Dados do serviço"
+ },
+ "repeat": {
+ "label": "Repetir",
+ "sequence": "Ações",
+ "type": {
+ "count": {
+ "label": "Contagem"
+ },
+ "until": {
+ "conditions": "Condições (até que…)",
+ "label": "Até que"
+ },
+ "while": {
+ "conditions": "Condições (enquanto…)",
+ "label": "Enquanto"
+ }
+ },
+ "type_select": "Tipo de repetição"
+ },
+ "scene": {
+ "label": "Ativar cena"
+ },
+ "service": {
+ "label": "Iniciar Serviço"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Continue após o tempo limite",
+ "label": "Aguarde o gatilho",
+ "timeout": "Tempo limite (opcional)"
+ },
+ "wait_template": {
+ "continue_timeout": "Continuar no tempo limite",
+ "label": "Espere por um template",
+ "timeout": "Tempo limite (opcional)",
+ "wait_template": "Template de Espera"
+ }
+ },
+ "type_select": "Tipo de acão",
+ "unsupported_action": "Editor visual não suporta a ação: {action}"
+ },
+ "alias": "Nome",
+ "blueprint": {
+ "blueprint_to_use": "Modelo a ser utilizado",
+ "header": "Modelo",
+ "no_blueprints": "Você não possui nenhum modelo",
+ "no_inputs": "Este modelo não tem nenhuma entrada."
+ },
+ "conditions": {
+ "add": "Adicionar condição",
+ "delete": "Excluir",
+ "delete_confirm": "Tem certeza que deseja excluir?",
+ "duplicate": "Duplicar",
+ "header": "Condições",
+ "introduction": "Condições são opcionais e impedirão a execução da automação, a menos que todas as condições sejam satisfeitas.",
+ "learn_more": "Saiba mais sobre condições",
+ "name": "Condição",
+ "type": {
+ "and": {
+ "label": "E"
+ },
+ "device": {
+ "condition": "Condição",
+ "extra_fields": {
+ "above": "Acima",
+ "below": "Abaixo",
+ "for": "Duração",
+ "hvac_mode": "Modo HVAC",
+ "preset_mode": "Modo predefinido"
+ },
+ "label": "Dispositivo"
+ },
+ "not": {
+ "label": "Não"
+ },
+ "numeric_state": {
+ "above": "Acima",
+ "below": "Abaixo",
+ "label": "Estado numérico",
+ "value_template": "Template de Valor (opcional)"
+ },
+ "or": {
+ "label": "Ou"
+ },
+ "state": {
+ "label": "Estado",
+ "state": "Estado"
+ },
+ "sun": {
+ "after": "Depois:",
+ "after_offset": "Tempo a atrasar (opcional)",
+ "before": "Antes:",
+ "before_offset": "Tempo a adiantar (opcional)",
+ "label": "Sol",
+ "sunrise": "Nascer do sol",
+ "sunset": "Pôr do Sol"
+ },
+ "template": {
+ "label": "Template",
+ "value_template": "Template de Valor"
+ },
+ "time": {
+ "after": "Depois",
+ "before": "Antes",
+ "label": "Temporal",
+ "type_input": "Valor auxiliar de data/hora",
+ "type_value": "Horário fixo",
+ "weekdays": {
+ "fri": "Sexta-feira",
+ "mon": "Segunda-feira",
+ "sat": "Sábado",
+ "sun": "Domingo",
+ "thu": "Quinta-feira",
+ "tue": "Terça-feira",
+ "wed": "Quarta-feira"
+ }
+ },
+ "trigger": {
+ "id": "ID do gatilho",
+ "label": "Gatilho",
+ "no_triggers": "Nenhum gatilho disponível"
+ },
+ "zone": {
+ "entity": "Entidade com localização",
+ "label": "Zona",
+ "zone": "Zona"
+ }
+ },
+ "type_select": "Tipo de Condição",
+ "unsupported_condition": "Editor visual não suporta a condição: {condition}"
+ },
+ "copy_to_clipboard": "Copiar para Área de Transferência",
+ "default_name": "Nova Automação",
+ "description": {
+ "label": "Descrição",
+ "placeholder": "Descrição opcional"
+ },
+ "edit_ui": "Editar no editor visual",
+ "edit_yaml": "Editar como YAML",
+ "enable_disable": "Ativar/Desativar automação",
+ "introduction": "Use automações para trazer vida à sua casa",
+ "load_error_not_editable": "Somente automações em automations.yaml são editáveis.",
+ "load_error_unknown": "Erro ao carregar a automação ({err_no}).",
+ "max": {
+ "parallel": "Número máximo de execuções paralelas",
+ "queued": "Comprimento máximo da fila"
+ },
+ "modes": {
+ "description": "O modo controla o que acontece quando a automação é acionada enquanto as ações, de um acionamento anterior, estão em execução. Consulte o {documentation_link} para mais informações.",
+ "documentation": "documentação da automação",
+ "label": "Modo",
+ "parallel": "Paralelo",
+ "queued": "Fila",
+ "restart": "Reiniciar",
+ "single": "Único (padrão)"
+ },
+ "move_down": "Mover para baixo",
+ "move_up": "Mover para cima",
+ "save": "Salvar",
+ "show_trace": "Mostrar histórico de execução",
+ "triggers": {
+ "add": "Adicionar gatilho",
+ "delete": "Excluir",
+ "delete_confirm": "Tem certeza que deseja excluir?",
+ "duplicate": "Duplicar",
+ "edit_id": "Editar ID do gatilho",
+ "header": "Gatilhos",
+ "id": "ID do gatilho (usado pela condição de disparo)",
+ "introduction": "Gatilhos são responsáveis por iniciar o processamento de uma regra de automação. É possível especificar vários gatilhos para a mesma regra. Quando o gatilho é iniciado, o Home Assistant validará as condições, se houver, e executará a ação.",
+ "learn_more": "Saiba mais sobre gatilhos",
+ "name": "Gatilho",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Acima",
+ "below": "Abaixo",
+ "for": "Duração",
+ "zone": "Zona"
+ },
+ "label": "Dispositivo",
+ "trigger": "Gatilho"
+ },
+ "event": {
+ "context_user_pick": "Selecione o usuário",
+ "context_user_picked": "Evento de disparo do usuário",
+ "context_users": "Limite para eventos disparados por",
+ "event_data": "Dados de evento",
+ "event_type": "Tipo de evento",
+ "label": "Evento"
+ },
+ "geo_location": {
+ "enter": "Entrar",
+ "event": "Evento:",
+ "label": "Geolocalização",
+ "leave": "Sair",
+ "source": "Origem",
+ "zone": "Zona"
+ },
+ "homeassistant": {
+ "event": "Evento:",
+ "label": "",
+ "shutdown": "Desligar",
+ "start": "Iniciar"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Valor (opcional)",
+ "topic": "Tópico"
+ },
+ "numeric_state": {
+ "above": "Acima",
+ "below": "Abaixo",
+ "label": "Estado numérico",
+ "value_template": "Template de Valor (opcional)"
+ },
+ "state": {
+ "attribute": "Atributo (Opcional)",
+ "for": "Por",
+ "from": "De",
+ "label": "Estado",
+ "to": "Para"
+ },
+ "sun": {
+ "event": "Evento",
+ "label": "Sol",
+ "offset": "Diferença de tempo (opcional)",
+ "sunrise": "Nascer do sol",
+ "sunset": "Pôr do Sol"
+ },
+ "tag": {
+ "label": "Etiqueta"
+ },
+ "template": {
+ "label": "Template",
+ "value_template": "Template de Valor"
+ },
+ "time": {
+ "at": "Em",
+ "label": "Tempo",
+ "type_input": "Valor de uma entidade auxiliar de data/hora",
+ "type_value": "Horário fixo"
+ },
+ "time_pattern": {
+ "hours": "Horas",
+ "label": "Padrão de hora",
+ "minutes": "Minutos",
+ "seconds": "Segundos"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "ID do Webhook"
+ },
+ "zone": {
+ "enter": "Entrar",
+ "entity": "Entidade com localização",
+ "event": "Evento:",
+ "label": "Zona",
+ "leave": "Sair",
+ "zone": "Zona"
+ }
+ },
+ "type_select": "Tipo de gatilho",
+ "unsupported_platform": "Editor visual não suporta a plataforma: {platform}"
+ },
+ "unsaved_confirm": "Você tem alterações não salvas. Tem certeza que deseja sair?"
+ },
+ "picker": {
+ "add_automation": "Adicionar automação",
+ "delete_automation": "Excluir automação",
+ "delete_confirm": "Tem certeza de que deseja excluir essa automação?",
+ "dev_automation": "Depurar automação",
+ "dev_only_editable": "Apenas as automações que possuem um ID único atribuído são depuráveis.",
+ "duplicate": "Duplicar",
+ "duplicate_automation": "Duplicar automação",
+ "edit_automation": "Editar automação",
+ "header": "Editor de automação",
+ "headers": {
+ "name": "Nome"
+ },
+ "introduction": "O editor de automação permite criar e editar automações. Por favor, siga o link abaixo para ler as instruções para certificar-se de que você configurou o Home Assistant corretamente.",
+ "learn_more": "Saiba mais sobre automações",
+ "no_automations": "Não encontramos nenhuma automação editável",
+ "only_editable": "Apenas as automaçãos definidas em automations.yaml são editáveis.",
+ "pick_automation": "Escolha uma automação para editar",
+ "show_info_automation": "Mostrar informações sobre automação"
+ },
+ "thingtalk": {
+ "create": "Criar automação",
+ "link_devices": {
+ "ambiguous_entities": "Um ou mais dispositivos têm mais de uma entidade correspondente, escolha aquela que deseja usar.",
+ "header": "Excelente! Agora precisamos conectar alguns dispositivos",
+ "unknown_placeholder": "Marcador desconhecido"
+ },
+ "task_selection": {
+ "error_empty": "Digite um comando ou toque em pular.",
+ "error_unsupported": "Não conseguimos criar uma automação para isso (ainda?).",
+ "for_example": "Por exemplo:",
+ "header": "Criar automação",
+ "introduction": "Digite abaixo o que esta automação deve fazer, e tentaremos convertê-la em uma automação no Home Assistant.",
+ "language_note": "Nota: Por enquanto, apenas o Inglês é suportado."
+ }
+ },
+ "trace": {
+ "download_trace": "Baixar histórico de execução",
+ "edit_automation": "Editar automação",
+ "newer_trace": "Execução mais recente",
+ "older_trace": "Execução mais antiga",
+ "refresh": "Atualizar"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "fórum da comunidade",
+ "error_no_url": "Por favor, digite a URL do modelo.",
+ "file_name": "Caminho do Modelo",
+ "header": "Importar um modelo",
+ "import_btn": "Pré-visualizar modelo",
+ "import_header": "Modelo \"{name}\"",
+ "import_introduction_link": "Você pode importar modelos de outros usuários do Github e do {community_link} . Digite a URL do modelo abaixo.",
+ "importing": "Carregando modelo...",
+ "raw_blueprint": "Conteúdo do modelo",
+ "save_btn": "Importar modelo",
+ "saving": "Importando modelo…",
+ "unsupported_blueprint": "Este modelo não é suportado",
+ "url": "Endereço do modelo"
+ },
+ "caption": "Modelos",
+ "description": "Gerenciar Modelos",
+ "overview": {
+ "add_blueprint": "Importar modelo",
+ "confirm_delete_header": "Excluir esse modelo?",
+ "confirm_delete_text": "Tem certeza que quer excluir esse modelo?",
+ "create_automation": "Criar automação",
+ "create_script": "Criar script",
+ "delete_blueprint": "Excluir modelo",
+ "discover_more": "Descubra mais modelos",
+ "header": "Editor de Modelos",
+ "headers": {
+ "domain": "Domínio",
+ "file_name": "Nome do arquivo",
+ "name": "Nome",
+ "type": "Tipo"
+ },
+ "introduction": "A seção de modelos permite que você importe e gerencie os seus modelos.",
+ "learn_more": "Aprender mais sobre os modelos",
+ "share_blueprint": "Compartilhar modelo",
+ "share_blueprint_no_url": "Não foi possível compartilhar o modelo: endereço de origem ausente",
+ "types": {
+ "automation": "Automação",
+ "script": "Script"
+ },
+ "use_blueprint": "Criar automação"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Documentação de configuração",
+ "disable": "desabilitar",
+ "enable": "habilitar",
+ "enable_ha_skill": "Ativar o Home Assistant para a Alexa",
+ "enable_state_reporting": "Ativar relatório de estado",
+ "info": "Com a integração da Alexa para o Home Assistant Cloud, você poderá controlar todos os seus dispositivos do Home Assistant por meio de qualquer dispositivo ativado pela Alexa.",
+ "info_state_reporting": "Se você ativar os relatórios de estado, o Home Assistant enviará todas as alterações de estado das entidades expostas ao Google. Isso permite que você sempre veja os estados mais recentes no aplicativo do Google.",
+ "manage_entities": "Gerenciar Entidades",
+ "state_reporting_error": "Não foi possível {enable_disable} o relatório de estado.",
+ "sync_entities": "Sincronizar entidades",
+ "sync_entities_error": "Falha ao sincronizar entidades:",
+ "title": ""
+ },
+ "connected": "Conectado",
+ "connecting": "Conectando…",
+ "connection_status": "Status de conexão com a nuvem",
+ "fetching_subscription": "Buscando assinatura…",
+ "google": {
+ "config_documentation": "Documentação de configuração",
+ "devices_pin": "PIN dos dispositivos de segurança",
+ "enable_ha_skill": "Ativar o Home Assistant Cloud para o Google Assistant",
+ "enable_state_reporting": "Ativar Relatório de Estado",
+ "enter_pin_error": "Não foi possível armazenar o PIN:",
+ "enter_pin_hint": "Digite um PIN para usar dispositivos de segurança",
+ "enter_pin_info": "Digite um PIN para interagir com os dispositivos de segurança. Dispositivos de segurança são portas, portões de garagem e fechaduras. Você será solicitado a dizer/inserir este pin ao interagir com esses dispositivos pelo Google Assistant.",
+ "info": "Com a integração do Google Assistant para o Home Assistant Cloud, você poderá controlar todos os seus dispositivos do Home Assistant por meio de qualquer dispositivo ativado pelo Google Assistant.",
+ "info_state_reporting": "Se você ativar os relatórios de estado, o Home Assistant enviará todas as alterações de estado das entidades expostas ao Google. Isso permite que você sempre veja os estados mais recentes no aplicativo do Google.",
+ "manage_entities": "Gerenciar Entidades",
+ "not_configured_text": "Antes de usar o Google Assistente, você precisa ativar a habilidade Home Assistant Cloud para Google Assistant no aplicativo do Google Home.",
+ "not_configured_title": "Google Assistente não está ativado",
+ "security_devices": "Dispositivos de Segurança",
+ "sync_entities": "Sincronizar entidades com o Google",
+ "sync_entities_404_message": "Falha ao sincronizar suas entidades com o Google, peça ao Google 'Ei, Google, sincronize meus dispositivos' para sincronizar suas entidades.",
+ "title": ""
+ },
+ "integrations": "Integrações",
+ "integrations_introduction": "As integrações para o Home Assistant Cloud permitem que você se conecte com serviços na nuvem sem precisar expor sua instância do Home Assistant publicamente na Internet.",
+ "integrations_introduction2": "Consulte o site para ",
+ "integrations_link_all_features": " todos os recursos disponíveis",
+ "manage_account": "Gerenciar Conta",
+ "nabu_casa_account": "Conta Nabu Casa",
+ "not_connected": "Não Conectado",
+ "remote": {
+ "access_is_being_prepared": "O acesso remoto está sendo preparado. Vamos notificá-lo quando estiver pronto.",
+ "certificate_info": "Informações do Certificado",
+ "connected": "Conectado",
+ "info": "O Home Assistant Cloud fornece uma conexão remota segura à sua instância enquanto estiver fora de casa.",
+ "instance_is_available": "Sua instância está disponível em",
+ "instance_will_be_available": "Sua instância estará disponível em",
+ "link_learn_how_it_works": "Aprenda como funciona",
+ "not_connected": "Não Conectado",
+ "reconnecting": "Não conectado. Reconectando.",
+ "remote_enabled": {
+ "caption": "Conectar automaticamente",
+ "description": "Ative esta opção para garantir que a instância do Home Assistant esteja sempre acessível remotamente."
+ },
+ "title": "Controle Remoto"
+ },
+ "sign_out": "Sair",
+ "thank_you_note": "Obrigado por fazer parte do Home Assistant Cloud. É por causa de pessoas como você que podemos criar uma ótima experiência de automação residencial para todos. Obrigado!",
+ "tts": {
+ "default_language": "Idioma padrão a ser usado",
+ "dialog": {
+ "example_message": "Olá {name}, você pode reproduzir qualquer texto em qualquer reprodutor de mídia suportado!",
+ "header": "Experimentar recurso de conversão de texto em fala",
+ "play": "Tocar",
+ "target": "Meta",
+ "target_browser": "Navegador"
+ },
+ "female": "Feminino",
+ "info": "Traga personalidade para sua casa, fazendo com que ela fale com você, usando nossos serviços de Texto-para-Fala. Você pode usar isso em automações e scripts usando o {service}.",
+ "male": "Masculino",
+ "title": "Texto para Fala",
+ "try": "Experimentar"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Falha ao desativar o webhook:",
+ "info": "Qualquer coisa que esteja configurada para ser acionada por um webhook pode receber um URL acessível ao público para permitir o envio de dados de volta ao Home Assistant de qualquer lugar, sem expor sua instância à Internet.",
+ "link_learn_more": "Saiba mais sobre como criar automações baseadas em webhook.",
+ "loading": "Carregando…",
+ "manage": "Gerenciar",
+ "no_hooks_yet": "Parece que você ainda não tem webhooks. Comece configurando um ",
+ "no_hooks_yet2": " ou criando uma ",
+ "no_hooks_yet_link_automation": "automação de webhook",
+ "no_hooks_yet_link_integration": "integração baseada em webhook",
+ "title": ""
+ }
+ },
+ "alexa": {
+ "banner": "A edição de quais entidades são expostas por meio dessa interface do usuário está desabilitada porque você configurou filtros de entidade em configuration.yaml.",
+ "dont_expose_entity": "Não expor entidade",
+ "expose": "Expor para Alexa",
+ "expose_entity": "Expor entidade",
+ "exposed": "{selected} exposto",
+ "exposed_entities": "Entidades expostas",
+ "follow_domain": "Seguir domínio",
+ "manage_domains": "Gerenciar domínios",
+ "not_exposed": "{selected} não exposto",
+ "not_exposed_entities": "Nenhuma entidade exposta",
+ "title": "Alexa"
+ },
+ "description_features": "Controle sua casa mesmo quando longe dela, integre com a Alexa e o Google Assistant.",
+ "description_login": "Conectado como {email}",
+ "description_not_login": "Não conectado em",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Data de validade do certificado",
+ "certificate_information": "Informações do certificado",
+ "close": "Fechar",
+ "fingerprint": "Impressão digital do certificado:",
+ "will_be_auto_renewed": "será renovado automaticamente"
+ },
+ "dialog_cloudhook": {
+ "available_at": "O webhook está disponível no seguinte URL:",
+ "close": "Fechar",
+ "confirm_disable": "Tem certeza de que deseja desativar este webhook?",
+ "copied_to_clipboard": "Copiado para a área de transferência",
+ "info_disable_webhook": "Se você não quiser mais usar este webhook, você pode",
+ "link_disable_webhook": "desativa-lo",
+ "managed_by_integration": "Este webhook é gerenciado por uma integração e não pode ser desativado.",
+ "view_documentation": "Ver documentação",
+ "webhook_for": "Webhook para {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "Verifique seu e-mail para obter instruções sobre como redefinir sua senha.",
+ "email": "Email",
+ "email_error_msg": "E-mail inválido",
+ "instructions": "Digite seu endereço de e-mail e enviaremos um link para redefinir sua senha.",
+ "send_reset_email": "Enviar e-mail de redefinição",
+ "subtitle": "Esqueceu sua senha",
+ "title": "Esqueceu a senha"
+ },
+ "google": {
+ "banner": "A edição de quais entidades são expostas por meio dessa interface do usuário está desabilitada porque você configurou filtros de entidade em configuration.yaml.",
+ "disable_2FA": "Desabilitar a autenticação de dois fatores",
+ "dont_expose_entity": "Não expor entidade",
+ "expose": "Expor ao Google Assistant",
+ "expose_entity": "Expor entidade",
+ "exposed": "{selected} exposto",
+ "exposed_entities": "Entidades expostas",
+ "follow_domain": "Seguir domínio",
+ "manage_domains": "Gerenciar domínios",
+ "not_exposed": "{selected} não exposto",
+ "not_exposed_entities": "Nenhuma entidade exposta",
+ "sync_to_google": "Sincronizando alterações com o Google.",
+ "title": ""
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Você precisa confirmar seu e-mail antes de fazer login.",
+ "alert_password_change_required": "Você precisa alterar sua senha antes de fazer login.",
+ "dismiss": "Dispensar",
+ "email": "E-mail",
+ "email_error_msg": "E-mail inválido",
+ "forgot_password": "Esqueceu a senha?",
+ "introduction": "O Home Assistant Cloud fornece uma conexão remota segura à sua instância enquanto estiver fora de casa. Ele também permite que você se conecte com serviços exclusivos da nuvem: Amazon Alexa e Google Assistant.",
+ "introduction2": "Este serviço é executado pelo nosso parceiro ",
+ "introduction2a": ", uma empresa fundada pelos fundadores do Home Assistant.",
+ "introduction3": "O Home Assistant Cloud é um serviço de assinatura com avaliação gratuita de um mês. Não são necessárias informações de pagamento.",
+ "learn_more_link": "Saiba mais sobre o Home Assistant Cloud",
+ "password": "Senha",
+ "password_error_msg": "As senhas têm no mínimo 8 caracteres",
+ "sign_in": "Entrar",
+ "start_trial": "Comece seu teste gratuito de 1 mês",
+ "title": "Login na Nuvem",
+ "trial_info": "Não são necessárias informações de pagamento"
+ },
+ "register": {
+ "account_created": "Conta criada! Verifique seu e-mail para obter instruções sobre como ativar sua conta.",
+ "create_account": "Criar Conta",
+ "email_address": "Endereço de e-mail",
+ "email_error_msg": "E-mail inválido",
+ "feature_amazon_alexa": "Integração com a Amazon Alexa",
+ "feature_google_home": "Integração com o Google Assistant",
+ "feature_remote_control": "Controle o Home Assistant de longe de casa",
+ "feature_webhook_apps": "Fácil integração com aplicativos baseados em webhook, como o OwnTracks",
+ "headline": "Comece sua avaliação gratuita",
+ "information": "Crie uma conta para iniciar sua avaliação gratuita de um mês com o Home Assistant Cloud. Nenhuma informação de pagamento é necessária.",
+ "information2": "A avaliação gratuita dará acesso a todos os benefícios do Home Assistant Cloud, incluindo:",
+ "information3": "Este serviço é executado pelo nosso parceiro ",
+ "information3a": ", uma empresa fundada pelos fundadores do Home Assistant.",
+ "information4": "Ao criar uma conta, você concorda com os seguintes termos e condições.",
+ "link_privacy_policy": "Política de Privacidade",
+ "link_terms_conditions": "Termos e Condições",
+ "password": "Senha",
+ "password_error_msg": "As senhas têm no mínimo 8 caracteres",
+ "resend_confirm_email": "Reenviar e-mail de confirmação",
+ "start_trial": "Iniciar avaliação",
+ "title": "Registar Conta"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Você tem alterações não salvas. Tem certeza que deseja sair?"
+ },
+ "learn_more": "Saiba mais"
+ },
+ "core": {
+ "caption": "Geral",
+ "description": "Alterar a configuração geral do Home Assistant",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Moeda",
+ "edit_requires_storage": "Editor desativado porque a configuração está armazenada em configuration.yaml.",
+ "elevation": "Elevação",
+ "elevation_meters": "metros",
+ "external_url": "URL externa",
+ "find_currency_value": "Encontre seu valor",
+ "imperial_example": "Fahrenheit, libras",
+ "internal_url": "URL interna",
+ "latitude": "Latitude",
+ "location_name": "Nome da sua instalação do Home Assistant",
+ "longitude": "Longitude",
+ "metric_example": "Celsius, quilogramas",
+ "save_button": "Salvar",
+ "time_zone": "Fuso horário",
+ "unit_system": "Sistema de unidade",
+ "unit_system_imperial": "Imperial",
+ "unit_system_metric": "Métrico"
+ },
+ "header": "Configurações Gerais",
+ "introduction": "Gerencie sua localização, rede e análises."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Os seguintes atributos já estão configurados no customize.yaml",
+ "attributes_not_set": "Os seguintes atributos não foram definidos. Defina-os se quiser.",
+ "attributes_outside": "Os seguintes atributos são customizados fora do customize.yaml",
+ "attributes_override": "Você pode sobrescreve-los se quiser",
+ "attributes_set": "Os seguintes atributos da entidade são definidos de forma programática.",
+ "caption": "Customizações",
+ "description": "Personalizar suas entidades",
+ "different_include": "Possivelmente por meio de um domínio, um glob ou uma inclusão diferente.",
+ "pick_attribute": "Escolha um atributo para sobrescrever",
+ "picker": {
+ "documentation": "Documentação de customização",
+ "header": "Personalizações",
+ "introduction": "Ajustar atributos por entidade. As personalizações adicionadas/editadas entrarão em vigor imediatamente. As personalizações removidas entrarão em vigor quando a entidade for atualizada."
+ },
+ "warning": {
+ "include_link": "incluir customize.yaml",
+ "include_sentence": "Parece que o seu configuration.yaml não está funcionando corretamente",
+ "not_applied": "Alterações feitas aqui serão salvas, mas não serão aplicadas quando a configuração for recarregada a menos que o include esteja em vigor."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Gerenciar automações, cenas, scripts e entidades auxiliares",
+ "title": "Automações & Cenas"
+ },
+ "blueprints": {
+ "description": "Automações e scripts pré-feitos pela comunidade",
+ "title": "Modelos"
+ },
+ "companion": {
+ "description": "Localização e notificações",
+ "title": "Aplicativo móvel"
+ },
+ "dashboards": {
+ "description": "Crie conjuntos personalizados de cartões para controlar sua casa",
+ "title": "Painéis"
+ },
+ "devices": {
+ "description": "Integrações, dispositivos, entidades e áreas",
+ "title": "Dispositivos e serviços"
+ },
+ "energy": {
+ "description": "Monitore seu consumo e produção de energia",
+ "title": "Energia"
+ },
+ "people": {
+ "description": "Gerencie as pessoas que o Home Assistant acompanha",
+ "title": "Pessoas & Zonas"
+ },
+ "settings": {
+ "description": "Configurações básicas, controles do servidor, registros e informações",
+ "title": "Configurações"
+ },
+ "supervisor": {
+ "description": "Criar backups, verificar logs ou reiniciar seu sistema",
+ "title": "Add-ons, backups e supervisor"
+ },
+ "tags": {
+ "description": "Aciona automações quando uma etiqueta NFC, código QR, etc. é escaneada",
+ "title": "Etiquetas"
+ }
+ },
+ "devices": {
+ "add_prompt": "Nenhum {name} foi adicionado usando este dispositivo ainda. Você pode adicionar um clicando no botão + acima.",
+ "automation": {
+ "actions": {
+ "caption": "Quando algo é acionado…",
+ "no_actions": "Sem ações",
+ "unknown_action": "Ação desconhecida"
+ },
+ "automations": "Automações",
+ "conditions": {
+ "caption": "Só faça alguma coisa se…",
+ "no_conditions": "Sem condições",
+ "unknown_condition": "Condição desconhecida"
+ },
+ "create": "Crie automação com o dispositivo",
+ "create_disable": "Não é possível criar automações com dispositivos desativados",
+ "no_automations": "Sem automações",
+ "no_device_automations": "Não há automações disponíveis para este dispositivo.",
+ "triggers": {
+ "caption": "Faça alguma coisa quando...",
+ "no_triggers": "Sem gatilhos",
+ "unknown_trigger": "Gatilho desconhecido"
+ },
+ "unknown_automation": "Automação desconhecida"
+ },
+ "cant_edit": "Você só pode editar itens que são criados na IU.",
+ "caption": "Dispositivos",
+ "confirm_delete": "Tem certeza de que deseja excluir este dispositivo?",
+ "confirm_disable_config_entry": "Não há mais dispositivos associados a entrada {entry_name} nos ajustes, você deseja desativar esta entrada?",
+ "confirm_rename_entity_ids": "Você também deseja renomear os IDs das entidades?",
+ "confirm_rename_entity_ids_warning": "Isto não mudará nenhuma configuração (como automações, scripts, cenas, Lovelace) que esteja usando essas entidades, você mesmo terá que atualizá-las.",
+ "data_table": {
+ "area": "Área",
+ "battery": "Bateria",
+ "device": "Dispositivo",
+ "integration": "Integração",
+ "manufacturer": "Fabricante",
+ "model": "Modelo",
+ "no_devices": "Nenhum dispositivo"
+ },
+ "delete": "Excluir",
+ "description": "Gerenciar dispositivos conectados",
+ "device_info": "Informação do dispositivo",
+ "device_not_found": "Dispositivo não encontrado.",
+ "disabled": "Desativado",
+ "disabled_by": {
+ "config_entry": "Entrada de Ajustes",
+ "integration": "Integração",
+ "user": "Usuário"
+ },
+ "edit_settings": "Editar configurações",
+ "enabled_cause": "Dispositivo desativado por {cause}.",
+ "enabled_description": "Os dispositivos desabilitados não serão mostrados e as entidades pertencentes ao dispositivo serão desabilitadas e não adicionadas ao Home Assistant.",
+ "enabled_label": "Habilitar dispositivo",
+ "entities": {
+ "add_entities_lovelace": "Adicionar ao Lovelace",
+ "config": "Configuração",
+ "control": "Controles",
+ "diagnostic": "Diagnóstico",
+ "disabled_entities": "+{count} {count, plural,\n one {entidade desabilitada}\n other {entidades desabilitadas}\n}",
+ "entities": "Entidades",
+ "hide_disabled": "Ocultar desativado(s)",
+ "none": "Este dispositivo não possui entidades",
+ "sensor": "Sensores",
+ "state": "Estado"
+ },
+ "name": "Nome",
+ "no_devices": "Sem dispositivos",
+ "open_configuration_url_device": "Acessar dispositivo",
+ "open_configuration_url_service": "Acessar página do serviço",
+ "picker": {
+ "filter": {
+ "filter": "Filtro",
+ "hidden_devices": "{number} {number, plural,\n one {dispositivo oculto}\n other {dispositivos ocultos}\n}",
+ "show_all": "Mostrar tudo",
+ "show_disabled": "Mostrar dispositivos desativados"
+ },
+ "search": "Pesquisar dispositivos"
+ },
+ "scene": {
+ "create": "Criar cenário com o dispositivo",
+ "create_disable": "Não é possível criar cenas com dispositivos desativados",
+ "no_scenes": "Sem cenários",
+ "scenes": "Cenários"
+ },
+ "scenes": "Cenários",
+ "script": {
+ "create": "Criar script com o dispositivo",
+ "create_disable": "Não é possível criar scripts com dispositivos desativados",
+ "no_scripts": "Sem scripts",
+ "scripts": ""
+ },
+ "scripts": "",
+ "unknown_error": "Erro desconhecido",
+ "unnamed_device": "Dispositivo sem nome",
+ "update": "Atualizar",
+ "update_device_error": "A atualização do dispositivo falhou"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Adicionar sistema de bateria",
+ "battery_systems": "Sistemas de baterias",
+ "dialog": {
+ "energy_into_battery": "Energia entrando na bateria (kWh)",
+ "energy_out_of_battery": "Energia saindo da bateria (kWh)",
+ "header": "Configurar o sistema de bateria"
+ },
+ "learn_more": "Mais informações sobre como começar",
+ "sub": "Se você tem um sistema que funciona",
+ "title": "Sistema doméstico de armazenamento de bateria"
+ },
+ "caption": "Energia",
+ "delete_integration": "Tem certeza de que deseja excluir esta integração? Isso removerá as entidades que ela fornece",
+ "delete_source": "Você tem certeza de que quer excluir esta fonte?",
+ "description": "Monitore sua produção e consumo de energia",
+ "device_consumption": {
+ "add_device": "Adicionar dispositivo",
+ "add_stat": "Escolha uma entidade para acompanhar o uso de energia",
+ "devices": "Dispositivos",
+ "dialog": {
+ "device_consumption_energy": "Consumo de energia do dispositivo (kwh)",
+ "header": "Adicionar um dispositivo",
+ "selected_stat_intro": "Selecione a entidade que representa o uso de energia do dispositivo."
+ },
+ "learn_more": "Mais informações sobre como começar.",
+ "selected_stat": "Exibir energia para",
+ "sub": "Rastrear o uso de energia de dispositivos individuais permite que o Home Assistant exiba o uso de energia por dispositivo",
+ "title": "Dispositivos individuais"
+ },
+ "gas": {
+ "add_gas_source": "Adicionar fonte de gás",
+ "dialog": {
+ "cost_entity": "Use uma entidade com preço atual",
+ "cost_entity_input": "Entidade com o preço atual por {unit}",
+ "cost_number": "Use um preço estático",
+ "cost_number_input": "Preço por {unit}",
+ "cost_number_suffix": "{currency}/m³",
+ "cost_para": "Selecione como o Home Assistant deve analisar os custos da energia consumida.",
+ "cost_stat": "Use uma entidade que acompanhe os custos totais",
+ "cost_stat_input": "Entidade de Custos Totais",
+ "energy_stat": "Energia Consumida (m³)",
+ "gas_usage": "Uso de gás",
+ "header": "Configurar o consumo de gás",
+ "m3_or_kWh": "",
+ "no_cost": "Não rastreie os custos",
+ "paragraph": "O consumo de gás é o volume de gás que flui para sua casa."
+ },
+ "gas_consumption": "Consumo de gás",
+ "learn_more": "Mais informações sobre como começar.",
+ "sub": "Deixe o Home Assistant monitorar o seu uso de gás.",
+ "title": "Consumo de Gás"
+ },
+ "grid": {
+ "add_co2_signal": "Adicionar integração com CO2 signal",
+ "add_consumption": "Adicionar consumo",
+ "add_return": "Adicionar retorno",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Use uma entidade com preço atual",
+ "cost_entity_input": "Entidade com o preço atual",
+ "cost_number": "Use um preço fixo",
+ "cost_number_input": "Preço por kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Selecione como o Home Assistant deve controlar os custos da energia consumida.",
+ "cost_stat": "Use uma entidade que acompanhe os custos totais",
+ "cost_stat_input": "Entidade de Custos Totais",
+ "energy_stat": "Energia Consumida (kWh)",
+ "header": "Configurar o consumo da rede",
+ "no_cost": "Não acompanhe os custos",
+ "paragraph": "O consumo da rede é a energia que flui da rede elétrica para sua casa."
+ },
+ "to": {
+ "cost_entity": "Use uma entidade com a tarifa atual",
+ "cost_entity_input": "Entidade com a tarifa atual",
+ "cost_number": "Use uma tarifa fixa",
+ "cost_number_input": "Tarifa por kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Você recebe dinheiro de volta quando retorna energia para a rede de distribuição elétrica?",
+ "cost_stat": "Use uma entidade para rastrear o dinheiro total recebido",
+ "cost_stat_input": "Entidade de Compensação Total",
+ "energy_stat": "Energia devolvida à rede (kWh)",
+ "header": "Configurar a produção da rede",
+ "no_cost": "Eu não recebo dinheiro de volta",
+ "paragraph": "A produção de rede é a energia que flui de seus painéis solares para a rede elétrica."
+ }
+ },
+ "grid_carbon_footprint": "Pegada de carbono da rede",
+ "grid_consumption": "Consumo da rede",
+ "learn_more": "Mais informações sobre como começar",
+ "return_to_grid": "Retorno à rede",
+ "sub": "Configure a quantidade de energia que você consome da rede e, se você produzir energia, devolve à rede. Isto permite que o Home Assistant rastreie todo o consumo de energia de sua casa.",
+ "title": "Rede elétrica"
+ },
+ "new_device_info": "Após a instalação de um novo dispositivo, pode levar até 2 horas para que novos dados cheguem ao seu painel de energia.",
+ "solar": {
+ "add_solar_production": "Adicionar produção solar",
+ "dialog": {
+ "add_forecast": "Adicionar previsão",
+ "dont_forecast_production": "Não faça previsões de produção",
+ "forecast_production": "Previsão de Produção",
+ "header": "Configurar painéis solares",
+ "solar_production_energy": "Produção de energia solar (kWh)",
+ "solar_production_forecast": "Previsão da produção solar",
+ "solar_production_forecast_description": "A adição de informações de previsão da produção solar permitirá que você veja rapidamente sua produção esperada para hoje."
+ },
+ "learn_more": "Mais informações sobre como começar",
+ "solar_production": "Produção solar",
+ "stat_predicted_production": "Previsão da sua produção de energia solar",
+ "stat_production": "Sua produção de energia solar",
+ "stat_return_to_grid": "Energia solar devolvida à rede",
+ "sub": "Deixe o Home Assistant monitorar seus painéis solares e forneça informações sobre seu desempenho",
+ "title": "Painéis solares"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "As seguintes entidades têm um estado com valor negativo, enquanto um estado com valor positivo é esperado:",
+ "title": "Entidade têm um estado negativo"
+ },
+ "entity_not_defined": {
+ "description": "Verifique a integração ou sua configuração que fornece:",
+ "title": "Entidade não definida"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "As seguintes entidades têm classe de estado 'measurement', mas 'last_reset' está faltando:",
+ "title": "Propriedade 'last_reset' faltando"
+ },
+ "entity_state_non_numeric": {
+ "description": "As seguintes entidades têm um estado que não pode ser convertido para um número:",
+ "title": "Entidade tem estado não numérico"
+ },
+ "entity_unavailable": {
+ "description": "O estado dessas entidades configuradas não está disponível no momento:",
+ "title": "Entidade indisponível"
+ },
+ "entity_unexpected_device_class": {
+ "description": "As seguintes entidades não têm a classe de dispositivo esperada:",
+ "title": "Classe de dispositivo inesperada"
+ },
+ "entity_unexpected_state_class": {
+ "description": "As seguintes entidades não têm a classe de estado esperada:",
+ "title": "Classe de estado inesperada"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "As seguintes entidades não possuem a classe de estado esperada \"total_increasing\"",
+ "title": "Classe de estado inesperada"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "As seguintes entidades não têm unidades de medida 'Wh', 'kWh' ou 'MWh':",
+ "title": "Unidade de medida inesperada"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "As seguintes entidades não têm unidades de medida esperadas como ''{currency}/kWh'', ''{currency}/Wh'' ou ''{currency}/MWh'':",
+ "title": "Unidade de medida inesperada"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "As seguintes entidades não têm unidades de medida 'Wh', 'kWh' ou 'MWh' esperadas para um sensor de energia ou unidades de medida 'm³' ou 'ft³' esperadas para um sensor de gás:",
+ "title": "Unidade de medida inesperada"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "As seguintes entidades não têm as unidades de medida esperadas ''{currency}/kWh'', ''{currency}/Wh'', ''{currency}/m³'' ou ''{currency}/ft³'':",
+ "title": "Unidade de medida inesperada"
+ },
+ "recorder_untracked": {
+ "description": "O registrador de eventos foi configurado para e excluir as seguintes entidades",
+ "title": "Entidade não rastreada"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Registro de Entidades",
+ "description": "Visão geral de todas as entidades conhecidas.",
+ "picker": {
+ "disable_selected": {
+ "button": "Desativar selecionado",
+ "confirm_text": "As entidades desativadas não serão adicionadas ao Assistente Doméstico.",
+ "confirm_title": "Deseja desativar {number} entidades?"
+ },
+ "enable_selected": {
+ "button": "Habilitar selecionado",
+ "confirm_text": "Isso os disponibilizará novamente no Home Assistant se eles estiverem desativados.",
+ "confirm_title": "Deseja habilitar {number} entidades?"
+ },
+ "filter": {
+ "filter": "Filtro",
+ "hidden_entities": "{number} {number, plural,\n one {entidade oculta}\n other {entidades ocultas}\n}",
+ "show_all": "Mostrar tudo",
+ "show_disabled": "Mostrar entidades desativadas",
+ "show_readonly": "Mostrar entidades somente de leitura",
+ "show_unavailable": "Mostrar entidades indisponíveis"
+ },
+ "header": "Registro de Entidades",
+ "headers": {
+ "area": "Área",
+ "disabled_by": "Desativado por",
+ "entity_id": "ID da entidade",
+ "integration": "Integração",
+ "name": "Nome",
+ "status": "Estado"
+ },
+ "introduction": "O Home Assistant mantém um registro de todas as entidades que já viu e que podem ser identificadas exclusivamente. Cada uma dessas entidades terá um ID de entidade atribuído, que será reservado apenas para essa entidade.",
+ "introduction2": "Use o registro da entidade para sobrescrever o nome, alterar o ID da entidade ou remover a entrada do Home Assistant. Observe que a remoção do registro de entidade não removerá a entidade totalmente. Para fazer isso, siga o link abaixo e remova-o da página de integrações.",
+ "remove_selected": {
+ "button": "Remover selecionado",
+ "confirm_partly_text": "Você só pode remover {removable} das {selected} entidades selecionadas. As entidades só podem ser removidas quando a integração não for mais fornecida pelas entidades. Às vezes, você tem que reiniciar o Home Assistant antes de remover as entidades de uma integração removida. Tem certeza de que deseja remover as entidades removíveis?",
+ "confirm_partly_title": "Somente {number} entidades selecionadas podem ser removidas.",
+ "confirm_text": "Você deve removê-los de sua configuração Lovelace e automações se eles contiverem essas entidades.",
+ "confirm_title": "Deseja remover {number} entidades?"
+ },
+ "search": "Procurar entidades",
+ "selected": "{number} selecionado",
+ "status": {
+ "disabled": "Desativado",
+ "ok": "Ok",
+ "readonly": "Somente de leitura",
+ "restored": "Restaurado",
+ "unavailable": "Indisponível"
+ }
+ }
+ },
+ "header": "Configurar o Home Assistant",
+ "helpers": {
+ "caption": "Entidades Auxiliares",
+ "description": "Gerencie elementos que ajudam a construir automações",
+ "dialog": {
+ "add_helper": "Adicionar entidade auxiliar",
+ "add_platform": "Adicionar {platform}",
+ "create": "Criar"
+ },
+ "picker": {
+ "add_helper": "Adicionar entidade auxiliar",
+ "headers": {
+ "editable": "Editável",
+ "entity_id": "ID da entidade",
+ "name": "Nome",
+ "type": "Tipo"
+ },
+ "no_helpers": "Parece que você ainda não tem entidades auxiliares!"
+ },
+ "types": {
+ "counter": "Contador",
+ "input_boolean": "Alternar",
+ "input_button": "Botão",
+ "input_datetime": "Data e/ou hora",
+ "input_number": "Número",
+ "input_select": "Dropdown",
+ "input_text": "Texto",
+ "timer": "Cronômetro"
+ }
+ },
+ "info": {
+ "built_using": "Construído usando",
+ "caption": "Informações",
+ "copy_github": "Para o GitHub",
+ "copy_menu": "Copiar menu",
+ "copy_raw": "Texto Bruto",
+ "custom_uis": "UIs personalizadas:",
+ "description": "Ver informações sobre a instalação do Home Assistant",
+ "developed_by": "Desenvolvido por um monte de pessoas incríveis.",
+ "documentation": "Documentação",
+ "frontend": "frontend-ui",
+ "frontend_version": "Versão do Frontend: {version} - {type}",
+ "home_assistant_logo": "Logotipo do Home Assistant",
+ "icons_by": "Ícones por",
+ "integrations": "Integrações",
+ "issues": "Problemas",
+ "license": "Publicado sob a licença Apache 2.0",
+ "path_configuration": "Caminho para configuration.yaml: {path}",
+ "server": "servidor",
+ "setup_time": "Tempo de configuração",
+ "source": "Código fonte:",
+ "system_health": {
+ "manage": "Gerenciar",
+ "more_info": "Mais Informações"
+ },
+ "system_health_error": "O componente System Health não foi carregado. Adicione 'system_health:' ao configuration.yaml"
+ },
+ "integrations": {
+ "add_integration": "Adicionar integração",
+ "attention": "Requer atenção",
+ "caption": "Integrações",
+ "config_entry": {
+ "area": "Em {area}",
+ "check_the_logs": "Verifique os logs",
+ "configure": "Configurar",
+ "delete": "Excluir",
+ "delete_confirm": "Tem certeza de que deseja excluir essa integração?",
+ "depends_on_cloud": "Depende da nuvem",
+ "device_unavailable": "Dispositivo indisponível",
+ "devices": "{count} {count, plural,\none {dispositivo}\nother {dispositivos}\n}",
+ "disable": {
+ "disable_confirm": "Tem certeza de que deseja desativar esta entrada dos ajustes? Seus dispositivos e entidades serão desativados.",
+ "disabled": "Desativado",
+ "disabled_by": {
+ "device": "dispositivo",
+ "integration": "integração",
+ "user": "usuário"
+ },
+ "disabled_cause": "Desativado por {cause}"
+ },
+ "disable_error": "A habilitação ou desativação da integração falhou",
+ "disable_restart_confirm": "Reinicie o Home Assistant para terminar a desativação dessa integração",
+ "disabled_polling": "Busca automática de dados atualizados desativada",
+ "documentation": "Documentação",
+ "download_diagnostics": "Baixar logs",
+ "enable_restart_confirm": "Reinicie o Home Assistant para terminar a ativação dessa integração",
+ "entities": "{count} {count, plural,\none {entidade}\nother {entidades}\n}",
+ "entity_unavailable": "Entidade indisponível",
+ "firmware": "Firmware: {version}",
+ "hardware": "Hardware: {version}",
+ "hub": "Conectado via",
+ "known_issues": "Problemas",
+ "manuf": "por {manufacturer}",
+ "no_area": "Sem área",
+ "not_loaded": "Não carregado",
+ "open_configuration_url": "Acessar dispositivo",
+ "provided_by_custom_integration": "Fornecido por uma integração personalizada",
+ "reload": "Recarregar",
+ "reload_confirm": "A integração foi recarregada",
+ "reload_restart_confirm": "Reinicie o Home Assistant para terminar o carregamento dessa integração",
+ "rename": "Renomear",
+ "restart_confirm": "Reinicie o Home Assistant para concluir a remoção dessa integração",
+ "services": "{count} {count, plural,\n one {serviço}\n other {serviços}\n}",
+ "state": {
+ "failed_unload": "Falha ao descarregar",
+ "loaded": "Carregado",
+ "migration_error": "Erro na migração",
+ "not_loaded": "Não carregado",
+ "setup_error": "Falha ao configurar",
+ "setup_retry": "Tentando novamente a configuração"
+ },
+ "system_options": "Opções do sistema",
+ "unknown_via_device": "Dispositivo desconhecido",
+ "unnamed_entry": "Entrada sem nome",
+ "via": "Conectado via"
+ },
+ "config_flow": {
+ "aborted": "Abortado",
+ "close": "Fechar",
+ "could_not_load": "Não foi possível carregar o fluxo de configuração",
+ "created_config": "Configuração criada para {name}.",
+ "dismiss": "Dispensar diálogo",
+ "error": "Erro",
+ "error_saving_area": "Erro ao salvar a área: {error}",
+ "external_step": {
+ "description": "Esta etapa exige que você visite um site externo para ser concluída.",
+ "open_site": "Abrir site"
+ },
+ "finish": "Terminar",
+ "loading": {
+ "fallback_title": "a integração",
+ "loading_flow": "Por favor, aguarde enquanto {integration} está sendo configurado",
+ "loading_step": "Carregamento do próximo passo para {integration}"
+ },
+ "next": "Próximo",
+ "not_all_required_fields": "Nem todos os campos obrigatórios são preenchidos.",
+ "not_loaded": "A integração não pôde ser carregada, tente reiniciar o Home Assistant.",
+ "pick_flow_step": {
+ "new_flow": "Não, configure outra instância de {integration}",
+ "title": "Nós descobrimos esses dispositivos, quer configurá-los?"
+ },
+ "submit": "Enviar"
+ },
+ "configure": "Configurar",
+ "configured": "Configurado",
+ "confirm_new": "Você deseja configurar {integration}?",
+ "description": "Gerenciar e configurar integrações",
+ "details": "Detalhes da integração",
+ "disable": {
+ "disabled_integrations": "{number} desativado",
+ "show": "Mostrar",
+ "show_disabled": "Mostrar integrações desativadas"
+ },
+ "discovered": "Descoberto",
+ "home_assistant_website": "Site do Home Assistant",
+ "ignore": {
+ "confirm_delete_ignore": "Isso fará com que a integração apareça novamente nas suas integrações descobertas quando ela for descoberta. Isso pode exigir uma reinicialização ou levar algum tempo.",
+ "confirm_delete_ignore_title": "Deixar de ignorar {name}?",
+ "confirm_ignore": "Tem certeza que não deseja configurar esta integração? Você pode desfazer isso clicando em 'Mostrar integrações ignoradas' no menu no canto superior direito.",
+ "confirm_ignore_title": "Ignorar o descobrimento de {name}?",
+ "ignore": "Ignorar",
+ "ignored": "Ignorada",
+ "show_ignored": "Mostrar integrações ignoradas",
+ "stop_ignore": "Deixar de ignorar"
+ },
+ "integration": "integração",
+ "integration_not_found": "Integração não encontrada.",
+ "new": "Configurar uma nova integração",
+ "no_integrations": "Parece que você ainda não possui integrações configuradas. Clique no botão abaixo para adicionar sua primeira integração!",
+ "none": "Nada configurado ainda",
+ "none_found": "Nenhuma integração encontrada",
+ "none_found_detail": "Ajuste seu critério de pesquisa.",
+ "note_about_integrations": "Nem todas as integrações podem ser configuradas via interface do usuário ainda.",
+ "note_about_website_reference": "Existem mais disponíveis no ",
+ "reconfigure": "Reconfigurar",
+ "rename_dialog": "Edite o nome desta entrada de configuração",
+ "rename_input_label": "Nome da entrada",
+ "search": "Procurar integrações"
+ },
+ "introduction": "Aqui é possível configurar seus componentes e Home Assistant. Nem tudo é possível configurar via UI, mas estamos trabalhando nisso.",
+ "logs": {
+ "caption": "Logs",
+ "clear": "Limpar",
+ "copy": "Copiar entrada de log",
+ "custom_integration": "integração customizada",
+ "description": "Exibir os logs do Home Assistant",
+ "details": "Detalhes do log ({level})",
+ "error_from_custom_integration": "Este erro originou-se de uma integração personalizada.",
+ "level": {
+ "critical": "CRÍTICO",
+ "debug": "DEPURAÇÃO",
+ "error": "ERRO",
+ "info": "INFO",
+ "warning": "ALERTA"
+ },
+ "load_full_log": "Carregar todos os logs do Home Assistant",
+ "loading_log": "Carregando log de erros…",
+ "multiple_messages": "a mensagem ocorreu pela primeira às {time} e apareceu {counter} vezes",
+ "no_errors": "Nenhum erro foi reportado.",
+ "no_issues": "Não há novos problemas!",
+ "refresh": "Atualizar"
+ },
+ "lovelace": {
+ "caption": "Painéis Lovelace",
+ "dashboards": {
+ "cant_edit_default": "O painel padrão do Lovelace não pode ser editado a partir da UI. Você pode ocultá-lo definindo outro painel como padrão.",
+ "cant_edit_yaml": "Os painéis definidos no YAML não podem ser editados a partir da UI. Altere-os em configuration.yaml.",
+ "caption": "Painéis",
+ "conf_mode": {
+ "storage": "Controlado via Interface",
+ "yaml": "Arquivo YAML"
+ },
+ "confirm_delete": "Tem certeza de que deseja excluir este painel?",
+ "confirm_delete_text": "Seu painel será permanentemente apagado.",
+ "confirm_delete_title": "Excluir {dashboard_title}?",
+ "default_dashboard": "Este é o painel de instrumentos padrão",
+ "detail": {
+ "create": "Criar",
+ "delete": "Excluir",
+ "dismiss": "Fechar",
+ "edit_dashboard": "Editar painel",
+ "icon": "Ícone",
+ "new_dashboard": "Adicionar novo painel",
+ "remove_default": "Remover como padrão neste dispositivo",
+ "require_admin": "Apenas administrador",
+ "set_default": "Definir como padrão neste dispositivo",
+ "show_sidebar": "Mostrar na barra lateral",
+ "title": "Título",
+ "title_required": "Título é obrigatório.",
+ "update": "Atualizar",
+ "url": "URL",
+ "url_error_msg": "A URL deve conter um - e não pode conter espaços ou caracteres especiais, exceto _ e -"
+ },
+ "picker": {
+ "add_dashboard": "Adicionar painel",
+ "headers": {
+ "conf_mode": "Método de configuração",
+ "default": "Padrão",
+ "filename": "Nome do arquivo",
+ "require_admin": "Apenas administrador",
+ "sidebar": "Mostrar na barra lateral",
+ "title": "Título"
+ },
+ "open": "Aberto"
+ }
+ },
+ "description": "Crie conjuntos personalizados de cartões para controlar sua casa",
+ "resources": {
+ "cant_edit_yaml": "Você está usando o Lovelace no modo YAML, portanto, não é possível gerenciar seus recursos por meio da interface do usuário. Gerencie-os por meio do arquivo configuration.yaml.",
+ "caption": "Recursos",
+ "confirm_delete": "Tem certeza de que deseja excluir este recurso?",
+ "detail": {
+ "create": "Criar",
+ "delete": "Excluir",
+ "dismiss": "Fechar",
+ "new_resource": "Adicionar novo recurso",
+ "type": "Tipo de recurso",
+ "update": "Atualizar",
+ "url": "URL",
+ "url_error_msg": "URL é um campo obrigatório",
+ "warning_header": "Seja cauteloso!",
+ "warning_text": "Adicionar recursos pode ser perigoso, certifique-se de saber a origem do recurso e confie neles. Recursos ruins podem prejudicar seriamente seu sistema."
+ },
+ "picker": {
+ "add_resource": "Adicionar recurso",
+ "headers": {
+ "type": "Tipo",
+ "url": "URL"
+ },
+ "no_resources": "Nenhum recurso"
+ },
+ "refresh_body": "Você precisa atualizar a página para concluir a remoção. Deseja atualizar agora?",
+ "refresh_header": "Deseja atualizar?",
+ "types": {
+ "css": "Folha de estilo",
+ "html": "HTML (descontinuado)",
+ "js": "Arquivo JavaScript (descontinuado)",
+ "module": "Módulo JavaScript"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Ouvir um tópico",
+ "description_publish": "Publicar um pacote",
+ "listening_to": "Ouvindo",
+ "message_received": "Mensagem {id} recebida em {topic} às {time}:",
+ "payload": "Valor (template permitido)",
+ "publish": "Publicar",
+ "start_listening": "Começar a ouvir",
+ "stop_listening": "Parar de ouvir",
+ "subscribe_to": "Evento para se inscrever",
+ "title": "",
+ "topic": "tópico"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Controlador",
+ "instance": "Instância",
+ "network": "Rede",
+ "node_id": "ID do Nó",
+ "ozw_instance": "Instância OpenZWave",
+ "query_stage": "Estágio de Consulta",
+ "wakeup_instructions": "Instruções para acordar",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Falha no nó",
+ "stage": "Estágio",
+ "zwave_info": "Informações de Z-Wave"
+ },
+ "navigation": {
+ "network": "Rede",
+ "node": {
+ "config": "Configuração",
+ "dashboard": "Painel de controle"
+ },
+ "nodes": "Nodes",
+ "select_instance": "Selecione a instância"
+ },
+ "network": {
+ "header": "Gerenciamento de Rede",
+ "introduction": "Gerenciar funções em toda a rede.",
+ "node_count": "{count} nodes"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "Todos os nodes foram consultados",
+ "driverallnodesqueriedsomedead": "Todos os nodes foram consultados. Alguns nodes foram encontrados inativos",
+ "driverawakenodesqueries": "Todos os nodes acordados foram consultados",
+ "driverfailed": "Falha ao conectar ao controlador Z-Wave",
+ "driverready": "Inicializando o controlador Z-Wave",
+ "driverremoved": "O driver foi removido",
+ "driverreset": "O driver foi reiniciado",
+ "offline": "OZWDaemon offline",
+ "ready": "Pronto para conectar",
+ "started": "Conectado ao MQTT",
+ "starting": "Conectando-se ao MQTT",
+ "stopped": "OpenZWave parado"
+ },
+ "offline": "Offline",
+ "online": "Conectado",
+ "starting": "Iniciando",
+ "unknown": "Desconhecido"
+ },
+ "node": {
+ "button": "Detalhes do Node",
+ "not_found": "Node não encontrado"
+ },
+ "node_config": {
+ "header": "Configuração do Node",
+ "help_source": "As descrições dos parâmetros de configuração e o texto de ajuda são fornecidos pelo projeto OpenZWave.",
+ "introduction": "Gerenciar os diferentes parâmetros de configuração para um node Z-Wave.",
+ "wakeup_help": "Os nodes alimentados por bateria devem estar ativos para alterar sua configuração. Se o node não estiver ativado, o OpenZWave tentará atualizar a configuração do node na próxima vez que ele for ativado, o que pode ser várias horas (ou dias) depois. Siga estas etapas para ativar seu dispositivo:"
+ },
+ "node_metadata": {
+ "product_manual": "Manual do Produto"
+ },
+ "node_query_stages": {
+ "associations": "Atualizando grupos de associação e associações",
+ "cacheload": "Carregando informações do arquivo de cache OpenZWave. Os nodes da bateria permanecerão neste estágio até que o node seja ativado.",
+ "complete": "O processo de entrevista está completo",
+ "configuration": "Obtendo valores de configuração a partir do node",
+ "dynamic": "Obtendo valores frequentemente mudando do node",
+ "instances": "Obter detalhes sobre quais instâncias ou canais um dispositivo suporta",
+ "manufacturerspecific1": "Obtenção dos códigos de identificação do fabricante e do produto a partir do node",
+ "manufacturerspecific2": "Obtendo códigos adicionais de identificação do fabricante e do produto a partir do node",
+ "neighbors": "Obter uma lista dos vizinhos do node",
+ "nodeinfo": "Obter classes de comando com suporte do node",
+ "nodeplusinfo": "Obtendo informações Z-Wave+ do node",
+ "probe": "Verificando se o node está acordado/ativo",
+ "protocolinfo": "Obter recursos básicos do Z-Wave deste node do controlador",
+ "session": "Obtendo valores pouco frequentemente alterados do node",
+ "static": "Obtenção de valores estáticos do dispositivo",
+ "versions": "Obtendo informações sobre versões de firmware e classe de comando",
+ "wakeup": "Configurando suporte para mensagens e filas de despertar"
+ },
+ "nodes_table": {
+ "failed": "Falhou",
+ "id": "ID",
+ "manufacturer": "Fabricante",
+ "model": "Modelo",
+ "query_stage": "Estágio de Consulta",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Se o node for alimentado por bateria, certifique-se de despertá-lo antes de continuar",
+ "button": "Atualizar Node",
+ "complete": "Atualização de node completa",
+ "description": "Isso dirá ao OpenZWave para entrevistar novamente um node e atualizar as classes de comando, recursos e valores do node.",
+ "node_status": "Estado do Node",
+ "refreshing_description": "Atualizando informações do node…",
+ "start_refresh_button": "Iniciar atualização",
+ "step": "Etapa",
+ "title": "Atualizar as informações do node",
+ "wakeup_header": "Instruções de despertar para",
+ "wakeup_instructions_source": "As instruções de despertar são obtidas do banco de dados do dispositivos da comunidade OpenZWave."
+ },
+ "select_instance": {
+ "header": "Selecione uma instância OpenZWave",
+ "introduction": "Você tem mais de uma instância OpenZWave em execução. Qual instância você gostaria de gerenciar?",
+ "none_found": "Não foi possível encontrar uma instância OpenZWave. Se você acredita que isso está incorreto, verifique suas configurações OpenZWave e MQTT e certifique-se de que o Home Assistant pode se comunicar com seu MQTT broker."
+ },
+ "services": {
+ "add_node": "Adicionar Node",
+ "cancel_command": "Cancelar Comando",
+ "remove_node": "Remover Node"
+ }
+ },
+ "person": {
+ "add_person": "Adicionar pessoa",
+ "caption": "Pessoas",
+ "confirm_delete": "Tem certeza de que deseja excluir esta pessoa?",
+ "confirm_delete2": "Todos os dispositivos pertencentes a essa pessoa serão desatribuídos.",
+ "create_person": "Criar Pessoa",
+ "description": "Gerencie as pessoas que o Home Assistant acompanha.",
+ "detail": {
+ "admin": "Administrador",
+ "allow_login": "Permitir que a pessoa faça login",
+ "confirm_delete_user": "Tem certeza de que deseja excluir a conta de usuário de {name}? Você ainda pode rastrear o usuário, mas a pessoa não poderá mais fazer o login.",
+ "create": "Criar",
+ "delete": "Excluir",
+ "device_tracker_intro": "Selecione os dispositivos que pertencem a essa pessoa.",
+ "device_tracker_pick": "Escolha o dispositivo para rastrear",
+ "device_tracker_picked": "Rastrear dispositivo",
+ "link_integrations_page": "Página de integrações",
+ "link_presence_detection_integrations": "Integrações de detecção de presença",
+ "linked_user": "Usuário vinculado",
+ "local_only": "Somente possível fazer login pela rede local",
+ "name": "Nome",
+ "name_error_msg": "Nome é obrigatório",
+ "new_person": "Nova pessoa",
+ "no_device_tracker_available_intro": "Quando você possui dispositivos que indicam a presença de uma pessoa, poderá atribuí-los a uma pessoa aqui. Você pode adicionar seu primeiro dispositivo adicionando uma integração de detecção de presença na página de integrações.",
+ "update": "Atualizar"
+ },
+ "introduction": "Aqui você pode definir cada pessoa de interesse no Home Assistant.",
+ "learn_more": "Saiba mais sobre pessoas",
+ "no_persons_created_yet": "Parece que você ainda não criou nenhuma pessoa.",
+ "note_about_persons_configured_in_yaml": "Nota: as pessoas configuradas via configuration.yaml não podem ser editadas via UI.",
+ "person_not_found": "Não foi possível encontrar a pessoa que você estava tentando editar.",
+ "person_not_found_title": "Pessoa Não Encontrada"
+ },
+ "scene": {
+ "activated": "Cena ativada {name}.",
+ "caption": "Cenas",
+ "description": "Gerenciar cenas",
+ "editor": {
+ "area": "Área",
+ "default_name": "Nova cena",
+ "devices": {
+ "add": "Adicionar um dispositivo",
+ "delete": "Excluir dispositivo",
+ "header": "Dispositivos",
+ "introduction": "Adicione os dispositivos que você deseja incluir na sua cena. Defina todos os dispositivos para o estado desejado para esta cena."
+ },
+ "entities": {
+ "add": "Adicionar uma entidade",
+ "delete": "Excluir entidade",
+ "device_entities": "Se você adicionar uma entidade que pertence a um dispositivo, o dispositivo será adicionado.",
+ "header": "Entidades",
+ "introduction": "Entidades que não pertencem a um dispositivo podem ser definidas aqui.",
+ "without_device": "Entidades sem dispositivos"
+ },
+ "icon": "Ícone",
+ "introduction": "Use cenas para dar vida à sua casa.",
+ "load_error_not_editable": "Somente cenas em scenes.yaml são editáveis.",
+ "load_error_unknown": "Erro ao carregar a automação ({err_no}).",
+ "name": "Nome",
+ "save": "Salvar",
+ "unsaved_confirm": "Você tem alterações não salvas. Tem certeza que deseja sair?"
+ },
+ "picker": {
+ "add_scene": "Adicionar cena",
+ "delete_confirm": "Tem certeza de que deseja excluir esta cena?",
+ "delete_scene": "Excluir cena",
+ "duplicate": "Duplicar",
+ "duplicate_scene": "Duplicar cena",
+ "edit_scene": "Editar cena",
+ "header": "Editor de cena",
+ "headers": {
+ "name": "Nome"
+ },
+ "introduction": "O editor de cenas permite criar e editar cenas. Siga o link abaixo para ler as instruções para garantir que você tenha configurado o Home Assistant corretamente.",
+ "learn_more": "Saiba mais sobre cenas",
+ "no_scenes": "Não foi possível encontrar cenas editáveis",
+ "only_editable": "Somente cenas definidas em scenes.yaml são editáveis.",
+ "pick_scene": "Escolha uma cena para editar",
+ "show_info_scene": "Mostrar informações sobre a cena"
+ }
+ },
+ "script": {
+ "caption": "Scripts",
+ "description": "Criar e editar scripts",
+ "editor": {
+ "alias": "Nome",
+ "default_name": "Novo Script",
+ "delete_confirm": "Tem certeza de que deseja excluir este script?",
+ "delete_script": "Excluir script",
+ "header": "Script: {name}",
+ "icon": "Ícone",
+ "id": "ID da entidade",
+ "id_already_exists": "Este ID já existe",
+ "id_already_exists_save_error": "Você não pode salvar este script porque o ID não é único, escolha outro ID ou deixe em branco para gerar um automaticamente.",
+ "introduction": "Use scripts para executar uma sequência de ações.",
+ "link_available_actions": "Saiba mais sobre as ações disponíveis.",
+ "load_error_not_editable": "Apenas scripts dentro scripts.yaml são editáveis.",
+ "max": {
+ "parallel": "Número máximo de execuções paralelas",
+ "queued": "Comprimento máximo da fila"
+ },
+ "modes": {
+ "description": "O modo controla o que acontece quando o script é chamado enquanto ainda está executando de uma ou mais chamadas anteriores. Consulte o {documentation_link} para mais informações.",
+ "documentation": "documentação do script",
+ "label": "Modo",
+ "parallel": "Paralelo",
+ "queued": "Fila",
+ "restart": "Reiniciar",
+ "single": "Único (padrão)"
+ },
+ "save_script": "Salvar script",
+ "sequence": "Seqüência",
+ "sequence_sentence": "A sequência de ações deste script.",
+ "show_trace": "Mostrar traço"
+ },
+ "picker": {
+ "add_script": "Adicionar script",
+ "dev_script": "Depurar script",
+ "duplicate": "Duplicar",
+ "duplicate_script": "Duplicar script",
+ "edit_script": "Editar script",
+ "header": "Editor de Scripts",
+ "headers": {
+ "name": "Nome"
+ },
+ "introduction": "O editor de scripts permite criar e editar scripts. Por favor, siga o link abaixo para ler as instruções e garantir que você configurou o Home Assistant corretamente.",
+ "learn_more": "Saiba mais sobre scripts",
+ "no_scripts": "Não foi possível encontrar nenhum script editável",
+ "run_script": "Executar script",
+ "show_info": "Mostrar informações sobre a cena"
+ }
+ },
+ "server_control": {
+ "caption": "Controles do servidor",
+ "description": "Reinicie e interrompa o servidor do Home Assistant",
+ "section": {
+ "reloading": {
+ "automation": "Recarregar as automações",
+ "command_line": "Recarregar entidades de linha de comando",
+ "core": "Recarregar localização & customizações",
+ "filesize": "Recarregar entidades de tamanho de arquivo",
+ "filter": "Recarregar entidades de filtro",
+ "generic": "Recarregar entidades genéricas de câmeras IP",
+ "generic_thermostat": "Recarregar entidades genéricas do termostato",
+ "group": "Recarregar os grupos, grupos de entidades e serviços de notificação",
+ "heading": "Recarregando a configuração YAML",
+ "history_stats": "Histórico entidades estatísticas",
+ "homekit": "Recarregar Homekit",
+ "input_boolean": "Recarregar entradas de booleanos",
+ "input_button": "Botões",
+ "input_datetime": "Recarregar entradas de data",
+ "input_number": "Recarregar entradas numéricas",
+ "input_select": "Recarregar entradas de seleção",
+ "input_text": "Recarregar entradas de texto",
+ "introduction": "Algumas partes do Home Assistant podem ser recarregadas sem precisar reiniciar. Pressionar recarregar descarregará sua configuração YAML atual e carregará a nova.",
+ "min_max": "Entidades mín./máx.",
+ "mqtt": "Recarregar entidades MQTT configuradas manualmente",
+ "person": "Recarregar pessoas",
+ "ping": "Recarregar entidades de sensores binários ping",
+ "reload": "{domain}",
+ "rest": "Recarregar entidades rest e serviços de notificação",
+ "rpi_gpio": "Recarregar entidades GPIO do Raspberry PI",
+ "scene": "Recarregar cenas",
+ "script": "Recarregar os scripts",
+ "smtp": "Recarregar serviços de notificação de SMTP",
+ "statistics": "Recarregar estatísticas de entidades",
+ "telegram": "Recarregar serviços de notificação do telegram",
+ "template": "Recarregar entidades de template",
+ "themes": "Temas",
+ "timer": "Cronômetros",
+ "trend": "Entidades de tendência",
+ "universal": "Recarregar entidades de reprodutor de mídia universal",
+ "zone": "Recarregar zonas"
+ },
+ "server_management": {
+ "confirm_restart": "Tem certeza de que deseja reiniciar o Home Assistant?",
+ "confirm_stop": "Tem certeza de que deseja parar o Home Assistant?",
+ "heading": "Gerenciamento do servidor",
+ "introduction": "Controle o seu servidor Home Assistant... a partir do Home Assistant.",
+ "restart": "Reiniciar",
+ "stop": "Parar"
+ },
+ "validation": {
+ "check_config": "Verificar a configuração",
+ "heading": "Validação da configuração",
+ "introduction": "Valide sua configuração se você recentemente fez algumas mudanças na sua configuração e quer ter certeza de que tudo é valido",
+ "invalid": "Configuração inválida",
+ "valid": "Configuração válida!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Adicionar etiqueta",
+ "automation_title": "A tag {name} foi verificada",
+ "caption": "Etiquetas",
+ "confirm_remove": "Tem certeza de que deseja remover a tag {tag}?",
+ "confirm_remove_title": "Remover tag?",
+ "create_automation": "Criar automação com a etiqueta",
+ "description": "Gerenciar etiquetas",
+ "detail": {
+ "companion_apps": "aplicativos complementares",
+ "create": "Criar",
+ "create_and_write": "Criar e Escrever",
+ "delete": "Excluir",
+ "description": "Descrição",
+ "name": "Nome",
+ "new_tag": "Nova etiqueta",
+ "tag_id": "Id da etiqueta",
+ "tag_id_placeholder": "Autogerado quando deixado vazio",
+ "update": "Atualizar",
+ "usage": "Uma tag pode acionar uma automação quando escaneada, você pode usar tags NFC, códigos QR ou qualquer outro tipo de tag. Use nosso {companion_link} para escrever esta tag em uma tag NFC programável ou crie um código QR abaixo."
+ },
+ "edit": "Editar",
+ "headers": {
+ "last_scanned": "Último escaneamento",
+ "name": "Nome"
+ },
+ "learn_more": "Saiba mais sobre tags",
+ "never_scanned": "Nunca escaneada",
+ "no_tags": "Sem etiquetas",
+ "write": "Escrever"
+ },
+ "updates": {
+ "more_updates": "{count} {count, plural,\n one {atualização}\n other {atualizações}\n}",
+ "review": "revisão",
+ "show": "Mostrar",
+ "show_all_updates": "Mostrar todas as atualizações",
+ "title": "{count} {count, plural,\n one {atualização}\n other {atualizações}\n}",
+ "unable_to_fetch": "Incapaz de carregar atualizações",
+ "version_available": "Versão {version_available} está disponível"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Adicionar Usuário",
+ "create": "Criar",
+ "local_only": "Apenas local",
+ "password": "Senha",
+ "password_confirm": "Confirmar Senha",
+ "password_not_match": "As senhas não coincidem"
+ },
+ "caption": "Usuários",
+ "description": "Gerenciar usuários",
+ "editor": {
+ "activate_user": "Ativar usuário",
+ "active": "Ativo",
+ "active_tooltip": "Controla se o usuário pode fazer login",
+ "admin": "Administrador",
+ "caption": "Visualizar usuário",
+ "change_password": "Mudar senha",
+ "confirm_user_deletion": "Tem certeza de que deseja excluir {name} ?",
+ "deactivate_user": "Desativar usuário",
+ "delete_user": "Excluir usuário",
+ "group": "Grupo",
+ "id": "ID",
+ "local_only": "Só pode fazer login a partir da rede local",
+ "name": "Nome",
+ "new_password": "Nova Senha",
+ "owner": "Proprietário",
+ "password_changed": "A senha foi alterada com sucesso",
+ "system_generated": "Gerado pelo sistema",
+ "system_generated_users_not_editable": "Não é possível remover utilizadores gerados pelo sistema.",
+ "system_generated_users_not_removable": "Não foi possível remover usuários gerados pelo sistema.",
+ "unnamed_user": "Usuário sem nome",
+ "update_user": "Atualizar",
+ "username": "Nome de usuário"
+ },
+ "picker": {
+ "add_user": "Adicionar Usuário",
+ "headers": {
+ "group": "Grupo",
+ "is_active": "Ativo",
+ "is_owner": "Proprietário",
+ "local": "Apenas local",
+ "name": "Nome",
+ "system": "Sistema",
+ "username": "Nome de usuário"
+ }
+ },
+ "users_privileges_note": "Grupos de Usuários ainda é um recurso experimental. O usuário será incapaz de administrar através da interface grática. Nós ainda estamos auditando todos os endponts da API de gerenciamento para se certificar que eles limitam o acesso para administradores da maneira correta."
+ },
+ "zha": {
+ "add_device": "Adicionar Dispositivo",
+ "add_device_page": {
+ "discovered_text": "Os dispositivos descobertos aparecerão aqui.",
+ "no_devices_found": "Nenhum dispositivo encontrado, verifique se eles estão em modo de pareamento e os mantenha acordados enquanto a descoberta estiver ativa.",
+ "pairing_mode": "Certifique-se de que seus dispositivos estão em modo de pareamento. Verifique as instruções do seu dispositivo para saber como fazer isso.",
+ "search_again": "Pesquisar novamente",
+ "spinner": "Procurando por dispositivos ZHA Zigbee…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Atributos do cluster selecionado",
+ "get_zigbee_attribute": "Obter atributo do Zigbee",
+ "header": "Atributos do cluster",
+ "help_attribute_dropdown": "Selecione um atributo para visualizar ou definir seu valor.",
+ "help_get_zigbee_attribute": "Obter o valor para o atributo selecionado.",
+ "help_set_zigbee_attribute": "Defina o valor do atributo para o cluster especificado na entidade especificada.",
+ "introduction": "Ver e editar atributos do cluster.",
+ "set_zigbee_attribute": "Definir atributo do Zigbee"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Comandos do cluster selecionado",
+ "header": "Comandos de cluster",
+ "help_command_dropdown": "Selecione um comando para interagir.",
+ "introduction": "Ver e emitir comandos de cluster.",
+ "issue_zigbee_command": "Emitir Comando Zigbee"
+ },
+ "clusters": {
+ "header": "Clusters",
+ "help_cluster_dropdown": "Selecione um cluster para visualizar atributos e comandos.",
+ "introduction": "Clusters são os blocos de construção da funcionalidade do Zigbee. Eles separam a funcionalidade em unidades lógicas. Existem tipos de cliente e servidor e são compostos por atributos e comandos."
+ },
+ "common": {
+ "clusters": "Clusters",
+ "manufacturer_code_override": "Sobrescrever Código do Fabricante",
+ "value": "Valor"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Atalhos",
+ "update_button": "Atualizar configuração"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Configuração Finalizada",
+ "CONFIGURED_status_text": "Iniciando",
+ "INITIALIZED": "Inicialização Finalizada",
+ "INITIALIZED_status_text": "O dispositivo está pronto para ser utilizado",
+ "INTERVIEW_COMPLETE": "Entrevista Finalizada",
+ "INTERVIEW_COMPLETE_status_text": "Configurando",
+ "PAIRED": "Dispositivo Encontrado",
+ "PAIRED_status_text": "Iniciando Entrevista"
+ },
+ "group_binding": {
+ "bind_button_help": "Vincule o grupo selecionado aos clusters de dispositivos selecionados.",
+ "bind_button_label": "Vincular Grupo",
+ "cluster_selection_help": "Selecione clusters para vincular ao grupo selecionado.",
+ "group_picker_help": "Selecione um grupo para emitir um comando de vinculação.",
+ "group_picker_label": "Grupos vinculáveis",
+ "header": "Vinculação de Grupo",
+ "introduction": "Vincular e desvincular grupos.",
+ "unbind_button_help": "Desvincular o grupo selecionado dos clusters de dispositivos selecionados.",
+ "unbind_button_label": "Desvincular grupo"
+ },
+ "groups": {
+ "add_group": "Adicionar Grupo",
+ "add_members": "Adicionar membros",
+ "caption": "Grupos",
+ "create": "Criar grupo",
+ "create_group": "Zigbee Automação Residencial - Criar Grupo",
+ "create_group_details": "Digite os detalhes necessários para criar um grupo Zigbee",
+ "creating_group": "Criando grupo",
+ "delete": "Excluir Grupo",
+ "group_details": "Aqui estão todos os detalhes do grupo Zigbee selecionado.",
+ "group_id": "ID do grupo",
+ "group_info": "Informações do grupo",
+ "group_name_placeholder": "Nome do grupo",
+ "group_not_found": "Grupo não encontrado!",
+ "groups": "Grupos",
+ "members": "Membros",
+ "remove_members": "Remover membros",
+ "removing_members": "Removendo membros"
+ },
+ "network": {
+ "caption": "Rede"
+ },
+ "visualization": {
+ "auto_zoom": "Zoom Automático",
+ "caption": "Visualização",
+ "enable_physics": "Habilitar dispositivo",
+ "header": "Visualização de rede",
+ "highlight_label": "Dispositivos em Destaque",
+ "refresh_topology": "Atualizar Topologia",
+ "zoom_label": "Zoom para o dispositivo"
+ }
+ },
+ "zone": {
+ "add_zone": "Adicionar Zona",
+ "caption": "Zonas",
+ "configured_in_yaml": "Zonas configuradas via configuration.yaml não podem ser editadas pela interface do usuário.",
+ "confirm_delete": "Tem certeza de que deseja excluir esta zona?",
+ "create_zone": "Criar Zona",
+ "description": "Gerencie as zonas nas quais deseja rastrear pessoas.",
+ "detail": {
+ "create": "Criar",
+ "delete": "Excluir",
+ "icon": "Ícone",
+ "icon_error_msg": "O ícone deve estar no formato \"prefixo:nomedoícone\", por exemplo: \"mdi:home\"",
+ "latitude": "Latitude",
+ "longitude": "Longitude",
+ "name": "Nome",
+ "new_zone": "Nova Zona",
+ "passive": "Passivo",
+ "passive_note": "Zonas passivas estão ocultas no frontend e não são usadas como local para rastreadores de dispositivos. Isso é útil se você quiser usá-las apenas para automações.",
+ "radius": "Raio",
+ "required_error_msg": "Este campo é obrigatório",
+ "update": "Atualizar"
+ },
+ "edit_home_zone": "O raio da zona \"Casa\" ainda não pode ser editado a partir do frontend. Arraste o marcador no mapa para mover a zona de origem.",
+ "edit_home_zone_narrow": "O raio da zona Casa ainda não pode ser editado a partir do frontend. A localização pode ser alterada a partir da configuração geral.",
+ "edit_zone": "Editar Zona",
+ "go_to_core_config": "Ir para configuração geral?",
+ "home_zone_core_config": "A localização da sua zona Casa é editável na página de configuração geral. O raio da zona inicial ainda não pode ser editado a partir do frontend. Deseja ir para a configuração geral?",
+ "introduction": "As zonas permitem especificar determinadas regiões da Terra. Quando uma pessoa está dentro de uma zona, o estado assume o nome da zona. As zonas também podem ser usadas como gatilho ou condição nas configurações de automações.",
+ "no_zones_created_yet": "Parece que você ainda não criou nenhuma zona."
+ },
+ "zwave": {
+ "common": {
+ "index": "Índice",
+ "instance": "Instância",
+ "unknown": "Desconhecido",
+ "value": "Valor",
+ "wakeup_interval": "Intervalo de ativação"
+ },
+ "description": "Gerencie sua rede Z-Wave",
+ "learn_more": "Saiba mais sobre o Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "Migrar para o OpenZWave",
+ "introduction": "Este assistente irá ajudá-lo a migrar da integração Z-Wave descontinuada para a integração OpenZWave que está atualmente em beta."
+ },
+ "zwave_js": {
+ "header": "Migrar para Z-Wave JS",
+ "introduction": "Essa integração não é mais mantida e recomendamos que você mude para a nova integração Z-Wave JS. Este assistente irá ajudá-lo a migrar da integração Z-Wave legado para a nova integração Z-Wave JS."
+ }
+ },
+ "network_management": {
+ "header": "Gerenciamento de rede Z-Wave",
+ "introduction": "Execute comandos que afetam a rede do Z-Wave. Você não receberá feedback sobre se a maioria dos comandos foi bem-sucedida, mas você pode verificar o log do OZW para tentar descobrir."
+ },
+ "network_status": {
+ "network_started": "Rede Z-Wave Iniciada",
+ "network_started_note_all_queried": "Todos os nodes foram consultados.",
+ "network_started_note_some_queried": "Nodes acordados foram consultados. Nodes adormecidos serão consultados quando eles acordarem.",
+ "network_starting": "Iniciando a rede Z-Wave …",
+ "network_starting_note": "Isso pode demorar um pouco, dependendo do tamanho da sua rede.",
+ "network_stopped": "Rede Z-Wave Parada"
+ },
+ "node_config": {
+ "config_parameter": "Parâmetro de configuração",
+ "config_value": "Valor de configuração",
+ "false": "Falso",
+ "header": "Opções de configuração do node",
+ "seconds": "Segundos",
+ "set_config_parameter": "Definir o parâmetro de configuração",
+ "set_wakeup": "Definir intervalo de ativação",
+ "true": "Verdadeiro"
+ },
+ "node_management": {
+ "add_to_group": "Adicionar ao Grupo",
+ "entities": "Entidades deste node",
+ "entity_info": "Informações da Entidade",
+ "exclude_entity": "Excluir esta entidade do Home Assistant",
+ "group": "Grupo",
+ "header": "Gerenciamento de node Z-Wave",
+ "introduction": "Executar comandos Z-Wave que afetam um único nó. Seleciona um nó para ver a lista de comandos disponíveis",
+ "max_associations": "Máximo de Associações",
+ "node_group_associations": "Associações de grupos de nodes",
+ "node_protection": "Proteção dos nodes",
+ "node_to_control": "Nó para controlar",
+ "nodes": "Nodes",
+ "nodes_hint": "Selecione um nó para ver opções específicas",
+ "nodes_in_group": "Outros nodes neste grupo",
+ "pooling_intensity": "Frequência da consulta",
+ "protection": "Proteção",
+ "remove_broadcast": "Remover Broadcast",
+ "remove_from_group": "Remover do Grupo",
+ "set_protection": "Definir proteção"
+ },
+ "ozw_log": {
+ "header": "OZW Log",
+ "introduction": "Veja o log. 0 é o mínimo (carrega o log inteiro) e 1000 é o máximo. A carga mostrará um log estático e tail será atualizada automaticamente com o último número especificado de linhas do log.",
+ "last_log_lines": "Número da última linhas de log",
+ "load": "Carregar",
+ "tail": "Ver últimas linhas"
+ },
+ "services": {
+ "add_node": "Adicionar Node",
+ "add_node_secure": "Adicionar Node Seguro",
+ "cancel_command": "Cancelar Comando",
+ "heal_network": "Reparar rede",
+ "heal_node": "Repara node",
+ "node_info": "Informações do Node",
+ "print_node": "Imprimir node",
+ "refresh_entity": "Atualizar Entidade",
+ "refresh_node": "Atualizar Nó",
+ "remove_failed_node": "Remover Nó com Falha",
+ "remove_node": "Remover Node",
+ "replace_failed_node": "Substituir Node com Falha",
+ "save_config": "Salvar Configuração",
+ "soft_reset": "Soft Reset",
+ "start_network": "Iniciar Rede",
+ "stop_network": "Parar Rede",
+ "test_network": "Teste de rede",
+ "test_node": "Testar Node"
+ },
+ "values": {
+ "header": "Valores de node"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Cancelar Pareamento",
+ "check_logs": "Por favor, verifique os registros para mais informações.",
+ "choose_inclusion_strategy": "Como você deseja adicionar o seu dispositivo",
+ "controller_in_inclusion_mode": "Seu controlador Z-Wave está agora no modo de pareamento.",
+ "enter_qr_code": "Insira o valor do código QR",
+ "follow_device_instructions": "Siga as instruções que vieram com seu dispositivo para acionar o modo de emparelhamento no dispositivo.",
+ "inclusion_failed": "O node não pode ser adicionado. Por favor, verifique os registros para obter mais informações.",
+ "inclusion_finished": "O node foi adicionado.",
+ "interview_failed": "A entrevista do dispositivo falhou. Informações adicionais podem estar disponíveis nos relatórios.",
+ "interview_started": "O dispositivo está sendo entrevistado. Isto pode levar algum tempo.",
+ "introduction": "Este assistente irá guiá-lo em como adicionar um node à sua rede Z-Wave.",
+ "provisioning_finished": "O dispositivo foi adicionado. Uma vez ligado, ele ficará disponível.",
+ "qr_code": "Código QR",
+ "qr_code_paragraph": "Se o seu dispositivo for compatível com SmartStart, você poderá escanear o código QR para facilitar o emparelhamento.",
+ "scan_qr_code": "Escanear código QR",
+ "searching_device": "Procurando dispositivo",
+ "secure_inclusion_warning": "Dispositivos seguros requerem largura de banda adicional; muitos dispositivos seguros podem tornar a sua rede Z-Wave lenta. Recomendamos apenas o uso de pareamento seguro para dispositivos que o exijam, como fechaduras ou abridores de portas de garagem.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Exemplo: fechaduras antigas sem suporte S2",
+ "title": "S0 Legado"
+ },
+ "S2_AccessControl": {
+ "description": "Exemplo: Fechaduras de portas e portas de garagem",
+ "title": "Controle de acesso S2"
+ },
+ "S2_Authenticated": {
+ "description": "Exemplo: Iluminação, Sensores e Sistemas de Segurança",
+ "title": "S2 Autenticado"
+ },
+ "S2_Unauthenticated": {
+ "description": "Como S2 Autenticado, mas sem a verificação de que o dispositivo correto está incluído",
+ "title": "S2 não autenticado"
+ }
+ },
+ "select_camera": "Selecione a câmera",
+ "start_inclusion": "Iniciar pareamento",
+ "start_secure_inclusion": "Iniciar pareamento seguro",
+ "title": "Adicionar um node a rede Z-Wave",
+ "use_secure_inclusion": "Usar pareamento seguro",
+ "view_device": "Ver Dispositivo"
+ },
+ "common": {
+ "add_node": "Adicionar Node",
+ "back": "Voltar",
+ "close": "Fechar",
+ "heal_network": "Reparar a Rede",
+ "home_id": "ID da Casa",
+ "network": "Rede",
+ "node_id": "ID do Node",
+ "reconfigure_server": "Reconfigurar o Servidor",
+ "remove_node": "Remover Node",
+ "source": "Fonte"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\none {dispositivo}\nother {dispositivos}\n}",
+ "driver_version": "Versão do driver",
+ "dump_dead_nodes_text": "Alguns de seus nodes não responderam e foram considerados inativos. Estes não serão totalmente exportados.",
+ "dump_dead_nodes_title": "Alguns de seus nodes estão inativos",
+ "dump_debug": "Baixe um dump de sua rede para ajudar a diagnosticar problemas",
+ "dump_not_ready_confirm": "Baixar",
+ "dump_not_ready_text": "Se você tentar exportar algo enquanto nem todos os nodes da rede estão disponiveis, você pode perder experimentar uma perda de dados importantes. Aguarde um pouco até que todos os nodes na sua rede possam ser consultados. Você quer continuar com o despejo de dados?",
+ "dump_not_ready_title": "Nem todos os nodes estão prontos ainda",
+ "header": "Gerenciar sua rede Z-wave",
+ "home_id": "ID da Casa",
+ "introduction": "Gerenciar sua rede e nodes Z-Wave",
+ "nodes_ready": "Nodes prontos",
+ "not_ready": "{count} não está pronto",
+ "provisioned_devices": "Dispositivos provisionados",
+ "server_url": "URL do servidor",
+ "server_version": "Versão do servidor"
+ },
+ "device_info": {
+ "device_config": "Configurar Dispositivo",
+ "heal_node": "Reparar Dispositivo",
+ "highest_security": "Segurança máxima",
+ "is_secure": "Seguro",
+ "node_ready": "Node pronto",
+ "node_status": "Estado do Node",
+ "reinterview_device": "Re-entrevistar Dispositivo",
+ "remove_failed": "Remover Dispositivo com Falha",
+ "unknown": "Desconhecido",
+ "zwave_info": "Informações da rede Z-Wave",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Versão {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "A reparação da rede foi cancelado.",
+ "healing_complete": "A reparação da rede foi concluída.",
+ "healing_failed": "A reparação falhou. Os relatórios podem contem informações adicionais.",
+ "in_progress": "A reparação da rede está acontecendo. Isto pode levar algum tempo.",
+ "introduction": "Inicia uma reparação na sua rede Z-Wave. Uma reparação de rede faraá com que todos os dispositivos recalculem as rotas para o controlador e é recomendada se você recentemente mudou dispositivos ou seu controlador de lugar.",
+ "run_in_background": "Você pode fechar este diálogo e a reparação continuará em segundo plano.",
+ "start_heal": "Iniciar Reparação",
+ "stop_heal": "Parar Reparação",
+ "title": "Reparar sua rede Z-Wave",
+ "traffic_warning": "O processo de reparação gera uma grande quantidade de tráfego na rede Z-Wave. Isto pode fazer com que os dispositivos respondam lentamente (ou nem respondam) enquanto a reparação está em progresso."
+ },
+ "heal_node": {
+ "healing_complete": "{device} foi restaurado",
+ "healing_failed": "{device} não pôde ser restaurado.",
+ "healing_failed_check_logs": "Informações adicionais podem estar disponíveis nos logs.",
+ "in_progress": "A restauração do {device} está em andamento. ",
+ "introduction": "Diga ao {device} para atualizar suas rotas de volta ao controlador. Isso pode ajudar com problemas de comunicação se você moveu recentemente o dispositivo ou o controlador.",
+ "network_heal_in_progress": "Um reparo de rede Z-Wave já está em andamento. Aguarde a conclusão antes de reparar um dispositivo individualmente.",
+ "start_heal": "Recuperar dispositivo.",
+ "title": "Reparar um dispositivo Z-Wave",
+ "traffic_warning": "O processo de recuperação gera uma grande quantidade de tráfego na rede Z-Wave. Isto pode fazer com que os dispositivos respondam de forma mais lenta (ou não respondam) enquanto a recuperação está em curso."
+ },
+ "logs": {
+ "download_logs": "Baixar logs",
+ "log_level": "Nível de Log",
+ "log_level_changed": "Nível de Log mudou para: {level}",
+ "subscribed_to_logs": "Inscrito em mensagens de log JS do Z-Wave …",
+ "title": "Logs Z-Wave JS"
+ },
+ "navigation": {
+ "logs": "Logs",
+ "network": "Rede"
+ },
+ "network_status": {
+ "connected": "Conectado",
+ "connecting": "Conectando",
+ "unknown": "Desconhecido"
+ },
+ "node_config": {
+ "attribution": "Os parâmetros e descrições de configuração do dispositivo são fornecidos pelo {device_database}",
+ "battery_device_notice": "Os dispositivos que usam bateria devem estar acordados para atualizar sua configuração. Consulte o manual de seu dispositivo para obter instruções sobre como acordar o dispositivo.",
+ "error_device_not_found": "Dispositivo não encontrado",
+ "header": "Configuração de dispositivo Z-Wave",
+ "introduction": "Gerenciar e ajustar os parâmetros de configuração específicos do dispositivo (node) para o dispositivo selecionado",
+ "parameter": "Parâmetro",
+ "parameter_is_read_only": "Este parâmetro é somente leitura.",
+ "set_param_accepted": "O parâmetro foi atualizado.",
+ "set_param_error": "Aconteceu um erro.",
+ "set_param_queued": "A alteração do parâmetro foi colocada na fila e será atualizada quando o dispositivo acordar.",
+ "zwave_js_device_database": "Banco de dados de dispositivos Z-Wave JS"
+ },
+ "node_status": {
+ "alive": "Ativo",
+ "asleep": "Suspenso",
+ "awake": "Acordado",
+ "dead": "Inativo",
+ "unknown": "Desconhecido"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "Se você desprovisionar o dispositivo, ele não será adicionado ao Home Assistant quando for ligado. Se já estiver adicionado ao Home Assistant, remover o dispositivo provisionado não o removerá do Home Assistant.",
+ "confirm_unprovision_title": "Tem certeza de que deseja desprovisionar o dispositivo?",
+ "dsk": "DSK",
+ "included": "Incluído",
+ "not_included": "Não incluído",
+ "security_classes": "Aulas de segurança",
+ "unprovison": "Desprovisionar"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "Você precisará acordar os dispositivos alimentados por bateria antes de iniciar o processo de re-entrevista. Consulte os manuais dos dispositivos para obter instruções sobre como acordar o dispositivo.",
+ "in_progress": "O dispositivo está sendo entrevistado. Isto pode levar algum tempo.",
+ "interview_complete": "Entrevista do dispositivo concluída.",
+ "interview_failed": "A entrevista do dispositivo falhou. Informações adicionais podem estar disponíveis nos relatórios.",
+ "introduction": "Re-entrevistar um dispositivo em sua rede Z-Wave. Use este recurso se o dispositivo tiver funcionalidade ausente ou incorreta.",
+ "run_in_background": "Você pode fechar esta caixa de diálogo e a entrevista continuará em segundo plano.",
+ "start_reinterview": "Iniciar Re-entrevista",
+ "title": "Re-entrevistar um dispositivo Z-Wave"
+ },
+ "remove_failed_node": {
+ "in_progress": "A remoção do dispositivo está em andamento",
+ "introduction": "Remova um dispositivo com falha da sua rede Z-Wave. Use isso se você não conseguir excluir um dispositivo normalmente porque ele está quebrado.",
+ "removal_failed": "O dispositivo não pôde ser removido da rede Z-Wave.",
+ "removal_finished": "O node {id} foi removido da sua rede Z-Wave.",
+ "remove_device": "Remover dispositivo",
+ "title": "Remover um dispositivo Z-Wave com falha"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Cancelar Exclusão",
+ "controller_in_exclusion_mode": "Seu controlador Z-Wave está agora no modo de exclusão.",
+ "exclusion_failed": "O node não pôde ser removido. Por favor, verifique os logs para mais informações.",
+ "exclusion_finished": "O node {id} foi removido de sua rede Z-Wave.",
+ "follow_device_instructions": "Siga as instruções que vieram com seu dispositivo para acionar a exclusão no dispositivo.",
+ "introduction": "Remova um node de sua rede Z-Wave e remova o dispositivo e entidades associadas do Home Assistant.",
+ "start_exclusion": "Iniciar Exclusão",
+ "title": "Remover um node da rede Z-Wave"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Nenhum"
+ },
+ "S0_Legacy": {
+ "description": "Exemplo: Fechaduras de portas legadas sem suporte S2",
+ "title": "S0 Legado"
+ },
+ "S2_AccessControl": {
+ "description": "Exemplo: Fechaduras de portas e portas de garagem",
+ "title": "Controle de acesso S2"
+ },
+ "S2_Authenticated": {
+ "description": "Exemplo: Iluminação, Sensores e Sistemas de Segurança",
+ "title": "S2 Autenticado"
+ },
+ "S2_Unauthenticated": {
+ "description": "Como S2 Autenticado, mas sem a verificação de que o dispositivo correto está incluído",
+ "title": "S2 não autenticado"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Terá acesso a todos os dados do Home Assistant.",
+ "hide_message": "Verifique a documentação do componente panel_custom para ocultar esta mensagem.",
+ "question_trust": "Você confia no painel externo {name} em {link} ?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Ouvintes ativos",
+ "alert_event_type": "O tipo de evento é um campo obrigatório",
+ "available_events": "Eventos Disponíveis",
+ "count_listeners": " ({count} ouvintes)",
+ "data": "Dados do evento (YAML, opcional)",
+ "description": "Dispare um evento no barramento de eventos.",
+ "documentation": "Documentação de eventos.",
+ "event_fired": "Evento {name} disparado",
+ "fire_event": "Disparar Evento",
+ "listen_to_events": "Ouvir eventos",
+ "listening_to": "Ouvindo",
+ "notification_event_fired": "Evento {type} disparado com sucesso!",
+ "start_listening": "Começar a ouvir",
+ "stop_listening": "Parar de ouvir",
+ "subscribe_to": "Evento para se inscrever",
+ "title": "Eventos",
+ "type": "Tipo de evento"
+ },
+ "services": {
+ "accepts_target": "Este serviço aceita um destino, por exemplo: `entity_id: light.bed_light`",
+ "all_parameters": "Todos os parâmetros disponíveis",
+ "call_service": "Iniciar Serviço",
+ "column_description": "Descrição",
+ "column_example": "Exemplo",
+ "column_parameter": "Parâmetro",
+ "description": "A ferramenta do desenvolvedor de serviço permite inciar qualquer serviço disponível no Home Assistant.",
+ "fill_example_data": "Preencher dados de exemplo",
+ "no_template_ui_support": "A IU não oferece suporte a templates, você ainda pode usar o editor YAML.",
+ "title": "Serviços",
+ "ui_mode": "Vá para o modo IU",
+ "yaml_mode": "Vá para o modo YAML",
+ "yaml_parameters": "Parâmetros disponíveis apenas no modo YAML"
+ },
+ "states": {
+ "alert_entity_field": "Entidade é um campo obrigatório",
+ "attributes": "Atributos",
+ "copy_id": "Copiar ID para a área de transferência",
+ "current_entities": "Entidades atuais",
+ "description1": "Definir a representação de um dispositivo no Home Assistant.",
+ "description2": "Isso não se comunicará com o dispositivo real.",
+ "entity": "Entidade",
+ "filter_attributes": "Filtro de atributos",
+ "filter_entities": "Filtro de entidades",
+ "filter_states": "Filtro de estados",
+ "last_changed": "Última alteração",
+ "last_updated": "Última atualização",
+ "more_info": "Mais informações",
+ "no_entities": "Nenhuma entidade",
+ "set_state": "Definir Estado",
+ "state": "Estado",
+ "state_attributes": "Atributos de estado (YAML, opcional)",
+ "title": "Estado"
+ },
+ "statistics": {
+ "entity": "Entidade",
+ "fix_issue": {
+ "fix": "Resolver",
+ "units_changed": {
+ "clear": "Exclua todos os dados estatísticos antigos para esta entidade",
+ "fix": "Resolver",
+ "title": "A unidade desta entidade mudou",
+ "update": "Atualize os valores históricos das estatísticas de '' {metadata_unit} '' para '' {state_unit} ''"
+ }
+ },
+ "issue": "Problema",
+ "issues": {
+ "entity_no_longer_recorded": "Esta entidade não está mais sendo registrada.",
+ "entity_not_recorded": "Esta entidade não está mais sendo registrada.",
+ "no_state": "Não há nenhum estado disponível para esta entidade.",
+ "units_changed": "A unidade desta entidade mudou de '' {metadata_unit} '' para '' {state_unit} ''.",
+ "unsupported_state_class": "A classe de estado '' {state_class} '' desta entidade não é suportada.",
+ "unsupported_unit": "A unidade ('' {state_unit} '') desta entidade não corresponde a uma unidade da classe de dispositivo '' {device_class} ''.",
+ "unsupported_unit_metadata": "A unidade ('' {metadata_unit} '') das estatísticas registradas não corresponde à unidade suportada '' {supported_unit} '' da classe de dispositivo '' {device_class} ''.",
+ "unsupported_unit_state": "A unidade ('' {state_unit} '') desta entidade não corresponde a uma unidade da classe de dispositivo '' {device_class} ''."
+ },
+ "no_issue": "Sem problema",
+ "title": "Estatísticas"
+ },
+ "templates": {
+ "all_listeners": "Este template escuta todos os eventos de estado alterado.",
+ "description": "Os templates são renderizados usando o Jinja2 com algumas extensões específicas do Home Assistant.",
+ "domain": "Domínio",
+ "editor": "Editor de templates",
+ "entity": "Entidade",
+ "jinja_documentation": "Documentação do template Jinja2",
+ "listeners": "Este template escuta os seguintes eventos de alteração de estado:",
+ "no_listeners": "Este template não escuta nenhum evento e não será atualizado automaticamente.",
+ "reset": "Redefinir para template de demonstração",
+ "result_type": "Tipo de resultado",
+ "template_extensions": "Extensões de template do Home Assistant",
+ "time": "Este template é atualizado no início de cada minuto.",
+ "title": "Template",
+ "unknown_error_template": "Erro desconhecido ao renderizar template"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Monitorar dispositivos individuais",
+ "energy_distribution_title": "Distribuição de energia",
+ "energy_gas_graph_title": "Consumo de gás",
+ "energy_solar_graph_title": "Produção solar",
+ "energy_sources_table_title": "Fontes",
+ "energy_usage_graph_title": "Uso de energia"
+ },
+ "charts": {
+ "by_device": "Consumo por dispositivo",
+ "solar": "Solar",
+ "stat_house_energy_meter": "Consumo total de energia"
+ },
+ "setup": {
+ "back": "Voltar",
+ "done": "Mostre-me meu dashboard de energia",
+ "next": "Próximo"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Você só pode usar esta função quando tiver assumido o controle da UI do Lovelace.",
+ "saving_failed": "Falha ao salvar a configuração da UI do Lovelace.",
+ "yaml_unsupported": "Você não pode usar esta função ao usar a UI do Lovelace no modo YAML."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Tem certeza de que deseja executar a ação \"{action}\"?",
+ "no_entity_more_info": "Nenhuma entidade fornecida para mais caixa de diálogo de informações",
+ "no_entity_toggle": "Nenhuma entidade fornecida para alternar",
+ "no_navigation_path": "Não foi especificado um caminho de navegação",
+ "no_service": "Não foi especificado serviço para executar",
+ "no_url": "Não foi especificado URL para abrir"
+ },
+ "confirm_delete": "Tem certeza de que deseja excluir este painel?",
+ "empty_state": {
+ "go_to_integrations_page": "Vá para a página de integrações.",
+ "no_devices": "Esta página permite que você controle seus dispositivos, no entanto, parece que você ainda não tem dispositivos configurados. Vá até a página de integrações para começar.",
+ "title": "Bem-vindo a casa"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "Este cartão indica quanto da energia consumida por sua casa foi gerada utilizando combustíveis não fósseis como solar, eólico e nuclear. Quanto mais alto, melhor!",
+ "non_fossil_energy_consumed": "Energia não fóssil consumida",
+ "non_fossil_energy_not_calculated": "Energia não fóssil consumida não pôde ser calculada"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Uso de energia"
+ },
+ "energy_distribution": {
+ "battery": "Bateria",
+ "gas": "Gás",
+ "go_to_energy_dashboard": "Ir para o painel de energia",
+ "grid": "Rede",
+ "home": "Casa",
+ "non_fossil": "Não fóssil",
+ "solar": "Solar",
+ "title_today": "Distribuição de energia hoje"
+ },
+ "energy_solar_graph": {
+ "forecast": "Previsão {name}",
+ "production": "Produção {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Total da bateria",
+ "cost": "Custo",
+ "energy": "Energia",
+ "grid_total": "Total da rede",
+ "source": "Fonte",
+ "total_costs": "Custos totais"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Combinado da rede",
+ "consumed_battery": "Bateria consumida",
+ "consumed_solar": "Energia solar consumida",
+ "total_consumed": "Total consumido {num} kWh",
+ "total_returned": "Total devolvido {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Se o ponteiro estiver no roxo, você devolveu mais energia à rede do que consumiu dela. Se estiver no azul, você consumiu mais energia da rede do que devolveu.",
+ "energy_dependency": "Este cartão indica seu uso líquido de energia.",
+ "grid_neutrality_not_calculated": "A neutralidade da rede não pôde ser calculada",
+ "net_consumed_grid": "Consumo líquido da rede",
+ "net_returned_grid": "Retorno líquido à rede",
+ "red_green_color_explain": "Se estiver verde, significa que você produziu mais energia do que consumiu da rede. Se estiver vermelho, significa que você dependeu da rede para parte do consumo de energia de sua casa."
+ },
+ "loading": "Carregando...",
+ "no_data": "Não há dados a exibir. Pode levar até 2 horas para que novos dados cheguem após você configurar seu painel de energia.",
+ "no_data_period": "Não há dados para este período.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "Este cartão indica quanto da energia solar que você produziu foi usada em sua casa em vez de ser devolvida à rede.",
+ "card_indicates_solar_energy_used_charge_home_bat": "Se esse número for normalmente muito baixo, indicando excesso de produção solar, você talvez queira considerar utilizar seus painéis solares para carregar uma bateria doméstica ou carro elétrico em momentos de alta produção solar.",
+ "not_produced_solar_energy": "Você não produziu nenhuma energia solar",
+ "self_consumed_solar_could_not_calc": "A energia solar auto-consumida não pôde ser calculada",
+ "self_consumed_solar_energy": "Energia solar auto-consumida"
+ }
+ },
+ "entities": {
+ "never_triggered": "Nunca disparado"
+ },
+ "iframe": {
+ "error_secure_context": "Não foi possível carregar iframes apontando para sites usando {target_protocol} se o Home Assistant for servido por {context_protocol} ."
+ },
+ "map": {
+ "reset_focus": "Redefinir o foco"
+ },
+ "picture-elements": {
+ "call_service": "Iniciar Serviço {name}",
+ "hold": "Aguarde:",
+ "more_info": "Mostrar mais informações: {name}",
+ "navigate_to": "Navegue até {location}",
+ "tap": "Toque:",
+ "toggle": "Alternar {name}",
+ "url": "Abrir janela para {url_path}"
+ },
+ "safe-mode": {
+ "description": "O Home Assistant teve problemas ao carregar sua configuração e agora está sendo executado no modo de segurança. Dê uma olhada no log de erros para ver o que deu errado.",
+ "header": "Modo de segurança ativado"
+ },
+ "shopping-list": {
+ "add_item": "Adicionar item",
+ "checked_items": "Itens marcados",
+ "clear_items": "Limpar itens marcados",
+ "drag_and_drop": "Arrastar e soltar",
+ "reorder_items": "Reordenar itens"
+ },
+ "show_more_info": "Mostrar mais informações",
+ "starting": {
+ "description": "O Home Assistant está iniciando, por favor aguarde…"
+ }
+ },
+ "changed_toast": {
+ "message": "A configuração da Interface Lovelace foi atualizada, você gostaria de recarregar para ver as modificações?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Dia",
+ "month": "Mês",
+ "next": "Próximo",
+ "previous": "Anterior",
+ "today": "Hoje",
+ "week": "Semana",
+ "year": "Ano"
+ },
+ "timestamp-display": {
+ "invalid": "Timestamp inválido",
+ "invalid_format": "Formato de exibição inválido"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Iniciar Serviço",
+ "default_action": "Ação Padrão",
+ "more-info": "Mais Informações",
+ "navigate": "Navegar",
+ "none": "Sem Ação",
+ "toggle": "Alternar",
+ "url": "URL"
+ },
+ "navigation_path": "Caminho de Navegação",
+ "url_path": "Caminho de URL"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Estados Disponíveis",
+ "description": "O cartão Painel de alarme permite que você arme e desarme as integrações do painel de controle de alarme.",
+ "name": "Painel de Alarme"
+ },
+ "area": {
+ "description": "O cartão Área exibe automaticamente as entidades de uma área específica.",
+ "name": "Área",
+ "show_camera": "Mostrar vídeo da câmera em vez da imagem da área"
+ },
+ "button": {
+ "default_action_help": "A ação padrão depende dos recursos da entidade, ela será alternada ou a caixa de diálogo de mais informações será exibida.",
+ "description": "O cartão Botão permite adicionar botões para executar tarefas.",
+ "name": "Botão"
+ },
+ "calendar": {
+ "calendar_entities": "Entidades do Calendário",
+ "description": "O cartão Calendário exibe um calendário incluindo dia, semana e visualizações de lista",
+ "inital_view": "Exibição Inicial",
+ "name": "Calendário",
+ "views": {
+ "dayGridDay": "Dia",
+ "dayGridMonth": "Mês",
+ "listWeek": "Lista"
+ }
+ },
+ "conditional": {
+ "card": "Cartão",
+ "change_type": "Alterar tipo",
+ "condition_explanation": "O cartão será exibido quando TODAS as condições abaixo forem cumpridas.",
+ "conditions": "Condições",
+ "current_state": "atual",
+ "description": "O cartão Condicional exibe outro cartão com base nos estados de entidades.",
+ "name": "Condicional",
+ "state_equal": "Estado é igual a",
+ "state_not_equal": "Estado não é igual a"
+ },
+ "config": {
+ "optional": "Opcional",
+ "required": "Obrigatório"
+ },
+ "entities": {
+ "description": "O cartão Entidades é o tipo de cartão mais comum. Ele agrupa os itens em listas.",
+ "edit_special_row": "Veja os detalhes desta linha clicando no botão editar",
+ "entity_row": {
+ "attribute": "Atributo",
+ "button": "Botão",
+ "buttons": "Botões",
+ "call-service": "Serviço de chamada",
+ "cast": "Transmitir",
+ "conditional": "Condicional",
+ "divider": "Divisor",
+ "section": "Seção",
+ "weblink": "Link da web"
+ },
+ "entity_row_editor": "Editor de Linha de Entidade",
+ "name": "Entidades",
+ "secondary_info_values": {
+ "brightness": "Brilho",
+ "entity-id": "ID da entidade",
+ "last-changed": "Última alteração",
+ "last-triggered": "Último Disparo",
+ "last-updated": "Última Atualização",
+ "none": "Sem informações secundárias",
+ "position": "Posição",
+ "tilt-position": "Posição de inclinação"
+ },
+ "show_header_toggle": "Mostrar Alternador do Cabeçalho?",
+ "special_row": "linha especial",
+ "toggle": "Alternar entidades."
+ },
+ "entity-filter": {
+ "description": "O cartão Filtro de Entidade permite definir uma lista de entidades que você quer ver apenas quando em um determinado estado.",
+ "name": "Entidade Filtro"
+ },
+ "entity": {
+ "description": "O cartão Entidade fornece uma visão rápida do estado de uma entidade.",
+ "name": "Entidade"
+ },
+ "gauge": {
+ "description": "O cartão Medidor é um cartão básico que permite ver visualmente os dados de um sensor.",
+ "name": "Indicador",
+ "needle_gauge": "Exibir como medidor de ponteiro.",
+ "severity": {
+ "define": "Definir gravidade?",
+ "green": "Verde",
+ "red": "Vermelho",
+ "yellow": "Amarelo"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Proporção da tela",
+ "attribute": "Atributo",
+ "camera_image": "Entidade da câmera",
+ "camera_view": "Vista da câmera",
+ "days_to_show": "Dias a Serem Exibidos",
+ "double_tap_action": "Ação de Toque Duplo",
+ "entities": "Entidades",
+ "entity": "Entidade",
+ "hold_action": "Manter Ação",
+ "hours_to_show": "Horas a Mostrar",
+ "icon": "Ícone",
+ "icon_height": "Altura do ícone",
+ "image": "Caminho da imagem",
+ "manual": "Manual",
+ "manual_description": "Precisa adicionar um cartão personalizado ou apenas gostaria de escrever o yaml manualmente?",
+ "maximum": "Máximo",
+ "minimum": "Mínimo",
+ "name": "Nome",
+ "no_theme": "Nenhum tema",
+ "refresh_interval": "Intervalo de atualização",
+ "search": "Procurar",
+ "secondary_info_attribute": "Atributo de informação secundária",
+ "show_icon": "Mostrar Ícone?",
+ "show_name": "Mostrar Nome?",
+ "show_state": "Mostrar Estado?",
+ "state": "Estado",
+ "state_color": "Colorir ícones baseado no estado?",
+ "tap_action": "Ação de Toque",
+ "theme": "Tema",
+ "title": "Título",
+ "unit": "Unidade",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Colunas",
+ "description": "O cartão Relance é útil para agrupar vários sensores em uma visão compacta.",
+ "name": "Relance"
+ },
+ "grid": {
+ "columns": "Colunas",
+ "description": "O cartão Grade permite que você mostre vários cartões em uma grade.",
+ "name": "Grade",
+ "square": "Renderizar cartões como quadrados"
+ },
+ "history-graph": {
+ "description": "O cartão Gráfico Histórico permite exibir um gráfico para cada uma das entidades listadas.",
+ "name": "Gráfico de Histórico"
+ },
+ "horizontal-stack": {
+ "description": "O cartão Pilha Horizontal permite empilhar vários carões, para que eles sempre fiquem próximos um do outro no espaço de uma coluna.",
+ "name": "Pilha horizontal"
+ },
+ "humidifier": {
+ "description": "O cartão Umidificador fornece controle da sua entidade de umidificador. Permite alterar a umidade e o modo da entidade.",
+ "name": "Umidificador"
+ },
+ "iframe": {
+ "description": "O cartão Página Web permite incorporar sua página web favorita diretamente no Home Assistant.",
+ "name": "Página Web"
+ },
+ "light": {
+ "description": "O cartão Luz permite mudar a luminosidade da luz.",
+ "name": "Luz"
+ },
+ "logbook": {
+ "description": "O cartão Registro de Eventos mostra uma lista de eventos para entidades.",
+ "name": "Registro de Eventos"
+ },
+ "map": {
+ "dark_mode": "Modo escuro?",
+ "default_zoom": "Zoom padrão",
+ "description": "O cartão Mapa permite visualizar entidades num mapa.",
+ "geo_location_sources": "Fontes de Geolocalização",
+ "hours_to_show": "Horas a Mostrar",
+ "name": "Mapa",
+ "source": "Origem"
+ },
+ "markdown": {
+ "content": "Conteúdo",
+ "description": "O cartão Markdown é usado para renderizar Markdown.",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "description": "O cartão Controle de Mídia é usado para exibir entidades reprodutoras de mídia em uma interface com controles fáceis de usar.",
+ "name": "Controle de Mídia"
+ },
+ "picture-elements": {
+ "description": "O cartão Elementos de Imagem é um dos tipos de cartão mais versáteis. Ele permite que você posicione ícones, texto e até serviços em uma imagem usando coordenadas.",
+ "name": "Elementos de Imagem"
+ },
+ "picture-entity": {
+ "description": "O cartão Entidade de Imagem exibe uma entidade na forma de uma imagem. Em vez de imagens de URL, ele também pode mostrar a imagem de entidades de câmera.",
+ "name": "Entidade Imagem"
+ },
+ "picture-glance": {
+ "description": "O cartão Imagem de Relance mostra uma imagem e estados correspondentes da entidade como um ícone. As entidades do lado direito permitem alternar ações, outras mostram diálogo com mais informações.",
+ "name": "Relance de Imagem",
+ "state_entity": "Estado Entidade"
+ },
+ "picture": {
+ "description": "O cartão Imagem permite que você defina uma imagem para navegar em sua interface ou para chamar um serviço.",
+ "name": "Imagem"
+ },
+ "plant-status": {
+ "description": "O cartão Estado de Plantas é para todos os botânicos adoráveis por aí.",
+ "name": "Estado da planta"
+ },
+ "sensor": {
+ "description": "O cartão Sensor oferece uma visão rápida do estado de seus sensores com um gráfico opcional para visualizar a mudança ao longo do tempo.",
+ "graph_type": "Tipo de Gráfico",
+ "name": "Sensor",
+ "show_more_detail": "Mostrar mais detalhes"
+ },
+ "shopping-list": {
+ "description": "O cartão Lista de Compras permite adicionar, editar, fazer check-off e limpar itens da sua lista de compras.",
+ "integration_not_loaded": "Este cartão requer que a integração `shopping_list` tenha sido configurada.",
+ "name": "Lista de compras"
+ },
+ "statistics-graph": {
+ "description": "O cartão Gráfico de Estatísticas permite que você exiba um gráfico das estatísticas de cada uma das entidades listadas.",
+ "name": "Gráfico de Estatísticas",
+ "period": "Período",
+ "periods": {
+ "5minute": "5 Minutos",
+ "day": "Dia",
+ "hour": "Hora",
+ "month": "Mês"
+ }
+ },
+ "thermostat": {
+ "description": "O cartão Termostato fornece controle da sua entidade climática. Permite alterar a temperatura e o modo da entidade.",
+ "name": "Termostato"
+ },
+ "vertical-stack": {
+ "description": "O cartão Pilha Vertical permite agrupar vários cartões para que eles sempre fiquem na mesma coluna.",
+ "name": "Pilha Vertical"
+ },
+ "weather-forecast": {
+ "description": "O cartão Previsão do tempo exibe o clima. Muito útil para incluir nas interfaces que as pessoas exibem na parede.",
+ "name": "Previsão do Tempo",
+ "show_both": "Mostrar clima e previsão atuais",
+ "show_forecast": "Mostrar Previsão",
+ "show_only_current": "Mostrar apenas o clima atual",
+ "show_only_forecast": "Mostrar apenas previsão"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Por Cartão",
+ "by_entity": "Por Entidade",
+ "custom_card": "Personalizado",
+ "domain": "Domínio",
+ "entity": "Entidade",
+ "no_description": "Nenhuma descrição disponível"
+ },
+ "common": {
+ "add": "Adicionar",
+ "clear": "Limpar",
+ "edit": "Editar",
+ "none": "Nenhum"
+ },
+ "edit_badges": {
+ "panel_mode": "Esses emblemas não serão exibidos porque esta visualização está no \"Modo de Painel\".",
+ "view_no_badges": "Os emblemas não são suportados pela visualização atual."
+ },
+ "edit_card": {
+ "add": "Adicionar Cartão",
+ "clear": "Limpar",
+ "confirm_cancel": "Tem certeza de que deseja cancelar?",
+ "delete": "Excluir Cartão",
+ "duplicate": "Duplicar Cartão",
+ "edit": "Editar",
+ "header": "Configuração do Cartão",
+ "move": "Mover para Visualização",
+ "move_after": "Mover cartão para frente",
+ "move_before": "Mover cartão para trás",
+ "move_down": "Mover cartão para baixo",
+ "move_up": "Mover cartão para cima",
+ "options": "Mais opções",
+ "pick_card": "Qual cartão você gostaria de adicionar?",
+ "pick_card_view_title": "Qual painel você gostaria de adicionar à sua visualização {name} ?",
+ "search_cards": "Cartões de pesquisa",
+ "show_code_editor": "Mostrar Editor de Código",
+ "show_visual_editor": "Mostrar Editor Visual",
+ "toggle_editor": "Alternar Editor",
+ "typed_header": "Configuração do painel {type}",
+ "unsaved_changes": "Você tem alterações não salvas"
+ },
+ "edit_lovelace": {
+ "edit_title": "Editar título",
+ "explanation": "Este título é mostrado acima de todas as suas visualizações no Lovelace.",
+ "header": "Título da sua interface do Lovelace",
+ "title": "Título"
+ },
+ "edit_view": {
+ "add": "Editar visualização",
+ "delete": "Excluir visualização",
+ "edit": "Editar visualização",
+ "header": "Configurações",
+ "header_name": "Configuração da Visualização {name}",
+ "move_left": "Mover à esquerda",
+ "move_right": "Mover à direita",
+ "tab_badges": "Emblemas",
+ "tab_settings": "Configurações",
+ "tab_visibility": "Visibilidade",
+ "type": "Tipo de exibição",
+ "types": {
+ "masonry": "Alvenaria (padrão)",
+ "panel": "Painel (1 cartão)",
+ "sidebar": "Barra Lateral"
+ },
+ "visibility": {
+ "select_users": "Selecione quais usuários devem ver essa visualização na navegação"
+ }
+ },
+ "header": "Editar “interface” do usuário",
+ "header-footer": {
+ "choose_header_footer": "Escolha um {type}",
+ "footer": "Rodapé",
+ "header": "Cabeçalho",
+ "types": {
+ "buttons": {
+ "name": "Botões"
+ },
+ "graph": {
+ "name": "Gráfico"
+ },
+ "picture": {
+ "name": "Imagem"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Gerenciar painéis de controle",
+ "manage_resources": "Gerenciar recursos",
+ "open": "Abra o menu da Interface Lovelace",
+ "raw_editor": "Editor de configuração RAW"
+ },
+ "migrate": {
+ "header": "Configuração Incompatível",
+ "migrate": "Migrar configuração",
+ "para_migrate": "O Home Assistant pode adicionar IDs a todos os seus cartões e visualizações automaticamente clicando no botão 'Migrar configuração'.",
+ "para_no_id": "Este elemento não possui um ID. Por favor adicione um ID a este elemento em 'ui-lovelace.yaml'."
+ },
+ "move_card": {
+ "header": "Selecione uma tela para onde mover este cartão"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Geraremos automaticamente suas visualizações da interface do usuário do Lovelace com suas áreas e dispositivos se você remover a configuração da interface do usuário do Lovelace.",
+ "confirm_remove_config_title": "Tem certeza de que deseja remover a configuração da interface Lovelace? Geraremos automaticamente visualizações da interface Lovelace com suas áreas e dispositivos.",
+ "confirm_unsaved_changes": "Você tem alterações não salvas. Tem certeza de que deseja sair?",
+ "confirm_unsaved_comments": "Sua configuração contém comentário(s), eles não serão salvos. Você quer continuar?",
+ "error_invalid_config": "Sua configuração não é válida: {error}",
+ "error_parse_yaml": "Não foi possível analisar o YAML: {error}",
+ "error_remove": "Não foi possível remover a configuração: {error}",
+ "error_save_yaml": "Não foi possível salvar o YAML: {error}",
+ "header": "Editar Configuração",
+ "lovelace_changed": "Os ajustes do Lovelace foram atualizados, você deseja abrir a versão atualizada dos ajustes no editor e perder as mudanças atuais?",
+ "reload": "Recarregar",
+ "resources_moved": "Os recursos não devem mais ser adicionados à configuração do Lovelace, mas podem ser adicionados no painel de configuração do Lovelace.",
+ "save": "Salvar",
+ "saved": "Salvo",
+ "unsaved_changes": "Alterações não salvas"
+ },
+ "save_config": {
+ "close": "Fechar",
+ "empty_config": "Comece com um painel de instrumentos vazio",
+ "header": "Assuma o controle da sua interface do Lovelace",
+ "para": "Este painel está sendo atualmente mantido pelo Home Assistant. É atualizado automaticamente quando novas entidades ou componentes da interface do Lovelace ficam disponíveis. Se você assumir o controle, esse painel não será mais atualizado automaticamente. Alternativamente, você pode criar um novo painel na configuração para brincar.",
+ "para_sure": "Tem certeza de que deseja assumir o controle da sua interface de usuário?",
+ "save": "Assuma o controle",
+ "yaml_config": "Para ajudá-lo a começar, aqui está a configuração atual deste painel:",
+ "yaml_control": "Para assumir o controle no modo YAML, crie um arquivo YAML com o nome que você especificou na sua configuração para este painel ou arquivo padrão 'ui-lovelace.yaml'.",
+ "yaml_mode": "Você está usando o modo YAML para este painel, o que significa que não é possível alterar a configuração do Lovelace na interface. Se você deseja gerenciar esse painel na interface do usuário, remova 'mode: yaml' da configuração do Lovelace em 'configuration.yaml.'"
+ },
+ "select_view": {
+ "dashboard_label": "Painel de controle",
+ "header": "Selecione uma tela",
+ "views_label": "Vista"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Editor de Rodapé",
+ "header": "Editor de Cabeçalho",
+ "row": "Editor de Linha de Entidade"
+ }
+ },
+ "suggest_card": {
+ "add": "Adicionar a UI do Lovelace",
+ "create_own": "Escolha cartão diferente",
+ "header": "Criamos uma sugestão para você"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Esta visualização contém mais de um cartão, mas uma visualização de modo painel só pode mostrar 1 cartão."
+ }
+ }
+ },
+ "menu": {
+ "close": "Fechar",
+ "configure_ui": "Configurar “interface” do usuário",
+ "exit_edit_mode": "Sair do modo de edição de interface",
+ "help": "Ajuda",
+ "reload_resources": "Recarregar recursos",
+ "start_conversation": "Iniciar conversação"
+ },
+ "reload_lovelace": "Recarregar Interface Lovelace",
+ "reload_resources": {
+ "refresh_body": "Você precisa atualizar a página para concluir a recarga. Deseja atualizar agora?",
+ "refresh_header": "Deseja atualizar?"
+ },
+ "unused_entities": {
+ "available_entities": "Essas são as entidades que você tem disponíveis, mas ainda não estão na sua interface do Lovelace.",
+ "domain": "Domínio",
+ "entity": "Entidade",
+ "entity_id": "ID da entidade",
+ "last_changed": "Última alteração",
+ "no_data": "Nenhuma entidade não utilizada encontrada",
+ "search": "Procurar entidades",
+ "select_to_add": "Selecione as entidades que você deseja adicionar a um cartão e clique no botão Adicionar cartão.",
+ "title": "Entidades não utilizadas"
+ },
+ "views": {
+ "confirm_delete": "Excluir visualização",
+ "confirm_delete_existing_cards": "A exclusão desta visualização também ira remover todos os cartões",
+ "confirm_delete_existing_cards_text": "Tem certeza de que deseja excluir a visualização ''{name}''? Ela contém {number} cartões que serão excluídos. Esta ação não pode ser desfeita.",
+ "confirm_delete_text": "Tem a certeza que quer excluir a visualização ''{name}''?"
+ },
+ "warning": {
+ "attribute_not_found": "O atributo {attribute} não está disponível em: {entity}",
+ "entity_non_numeric": "Entidade não é numérica: {entity}",
+ "entity_not_found": "Entidade não disponível: {entity}",
+ "entity_unavailable": "{entity} não está disponível",
+ "starting": "O Home Assistant está iniciando, algumas funcionalidades podem estar temporariamente indisponíveis"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Excluir",
+ "delete_prompt": "Excluir esta mensagem?",
+ "empty": "Você não tem mensagens",
+ "playback_title": "Reprodução da mensagem"
+ },
+ "map": {
+ "edit_zones": "Editar Zonas"
+ },
+ "my": {
+ "component_not_loaded": "Este redirecionamento não é compatível com a instância do Home Assistant. Você precisa da integração {integration} para usar este redirecionamento.",
+ "documentation": "documentação",
+ "error": "Ocorreu um erro desconhecido",
+ "faq_link": "Perguntas frequentes do meu Home Assistant",
+ "no_supervisor": "Este redirecionamento não é compatível com a instalação do Home Assistant. Ele precisa do \"Home Assistant Operating System\" ou do método de instalação do \"Home Assistant Supervised\". Para obter mais informações, consulte o {docs_link}.",
+ "not_supported": "Este redirecionamento não é compatível com a instância do Home Assistant. Verifique o {link} para os redirecionamentos suportados e a versão em que foram introduzidos."
+ },
+ "page-authorize": {
+ "abort_intro": "Login cancelado",
+ "authorizing_client": "Você está prestes a dar acesso pra {clientId} à sua instância do Home Assistant.",
+ "form": {
+ "error": "Erro: {error}",
+ "next": "Próximo",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Sessão expirada, por favor fazer o login novamente."
+ },
+ "error": {
+ "invalid_auth": "Usuário ou senha inválidos",
+ "invalid_code": "Código de autenticação inválido"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Senha",
+ "username": "Usuário"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Duplo fator de Autenticação"
+ },
+ "description": "Abra o ** {mfa_module_name} ** no seu dispositivo para ver seu código de autenticação de dois fatores e confirmar sua identidade:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Sessão expirada, por favor fazer o login novamente."
+ },
+ "error": {
+ "invalid_auth": "Usuário ou senha inválidos",
+ "invalid_code": "Código de autenticação inválido"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Senha",
+ "username": "Usuário"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Código de autenticação de dois fatores"
+ },
+ "description": "Abra o ** {mfa_module_name} ** no seu dispositivo para ver seu código de autenticação de dois fatores e confirmar sua identidade:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Sessão expirada, por favor fazer o login novamente.",
+ "no_api_password_set": "Você não tem uma senha de API configurada."
+ },
+ "error": {
+ "invalid_auth": "Senha de API inválida",
+ "invalid_code": "Código de autenticação inválido"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Senha de API"
+ },
+ "description": "Por favor insira a senha da API em sua configuração HTTP:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Código de autenticação de dois fatores"
+ },
+ "description": "Abra o ** {mfa_module_name} ** no seu dispositivo para ver seu código de autenticação de dois fatores e confirmar sua identidade:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Seu computador não tem permissão."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Usuário"
+ },
+ "description": "Por favor, selecione o usuário que você quer fazer o login como:"
+ }
+ }
+ }
+ },
+ "start_over": "Recomeçar",
+ "unknown_error": "Alguma coisa saiu errada",
+ "working": "Aguarde"
+ },
+ "initializing": "Iniciando",
+ "logging_in_to_with": "Fazendo login em **{locationName}** com **{authProviderName}**.",
+ "logging_in_with": "Fazendo login com **{authProviderName}**.",
+ "pick_auth_provider": "Ou entre com",
+ "store_token": "Mantenha-me logado"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "por {name}",
+ "introduction": "Bem-vindo! Você chegou na demonstração do Home Assistant onde mostramos as melhores UIs criadas por nossa comunidade.",
+ "learn_more": "Saiba mais sobre o Home Assistant",
+ "next_demo": "Próxima demonstração"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Atividade",
+ "air": "Ar",
+ "commute_home": "Indo para Casa",
+ "entertainment": "Entretenimento",
+ "hdmi_input": "Entrada HDMI",
+ "hdmi_switcher": "Comutador HDMI",
+ "information": "Informação",
+ "lights": "Luzes",
+ "morning_commute": "Indo para o Trabalho",
+ "total_tv_time": "Tempo total de TV",
+ "turn_tv_off": "Desligar televisão",
+ "volume": "Volume"
+ },
+ "names": {
+ "family_room": "Quarto da Família",
+ "hallway": "Corredor",
+ "kitchen": "Cozinha",
+ "left": "Esquerda",
+ "master_bedroom": "Quarto principal",
+ "mirror": "Espelho",
+ "patio": "Pátio",
+ "right": "Direita",
+ "temperature_study": "Estudo da temperatura",
+ "upstairs": "Andar de cima"
+ },
+ "unit": {
+ "minutes_abbr": "min",
+ "watching": "assistindo"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Próximo"
+ },
+ "core-config": {
+ "button_detect": "Detectar",
+ "finish": "Próximo",
+ "intro": "Olá {name}, seja bem-vindo ao Home Assistant. Como você gostaria de nomear sua casa?",
+ "intro_location": "Nós gostaríamos de saber onde você mora. Essa informação ajudará na exibição de informações e na configuração de automações baseadas no sol. Esses dados nunca são compartilhados fora da sua rede.",
+ "intro_location_detect": "Podemos ajudá-lo a preencher essas informações fazendo uma solicitação única para um serviço externo.",
+ "location_name": "Nome da instalação do Home Assistant",
+ "location_name_default": "Casa"
+ },
+ "finish": "Terminar",
+ "integration": {
+ "finish": "Terminar",
+ "intro": "Dispositivos e serviços são representados no Home Assistant como integrações. Você pode configurá-los agora ou fazê-lo mais tarde na tela de configuração.",
+ "more_integrations": "Mais"
+ },
+ "intro": "Você está pronto para despertar sua casa, recuperar sua privacidade e se juntar a uma comunidade mundial de consertadores?",
+ "next": "Próximo",
+ "restore": {
+ "addons": "Add-ons",
+ "confirm_password": "Confirme a senha da cópia de segurança",
+ "description": "Como alternativa, você pode restaurar a partir de um backup anterior.",
+ "folders": "Pastas",
+ "full_backup": "Cópia de segurança completa",
+ "hide_log": "Ocultar registo completo",
+ "in_progress": "Restauração em andamento",
+ "partial_backup": "Cópia de segurança parcial",
+ "password": "Senha da cópia de segurança",
+ "password_protection": "Proteção por senha",
+ "select_type": "Selecione o que restaurar",
+ "show_log": "Mostrar registo completo",
+ "type": "Tipo da cópia de segurança"
+ },
+ "user": {
+ "create_account": "Criar Conta",
+ "data": {
+ "name": "Nome",
+ "password": "Senha",
+ "password_confirm": "Confirme a Senha",
+ "username": "Usuário"
+ },
+ "error": {
+ "password_not_match": "As senhas não coincidem",
+ "required_fields": "Preencha todos os campos obrigatórios"
+ },
+ "intro": "Vamos começar criando uma conta de usuário.",
+ "required_field": "Obrigatório"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Desbloqueia recursos avançados.",
+ "link_promo": "Saiba mais",
+ "title": "Modo Avançado"
+ },
+ "change_password": {
+ "confirm_new_password": "Confirme a nova senha",
+ "current_password": "Senha atual",
+ "error_new_is_old": "A nova senha deve ser diferente da senha atual",
+ "error_new_mismatch": "Os valores para a nova senha não correspondem",
+ "error_required": "Obrigatório",
+ "header": "Alterar senha",
+ "new_password": "Nova Senha",
+ "submit": "Enviar",
+ "success": "A senha foi alterada com sucesso"
+ },
+ "current_user": "Você está logado como {fullName}.",
+ "customize_sidebar": {
+ "button": "Editar",
+ "description": "Você também pode pressionar e segurar o cabeçalho da barra lateral para ativar o modo de edição.",
+ "header": "Altere a ordem e oculte os itens da barra lateral"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Visão geral (padrão)",
+ "description": "Escolha um painel padrão para este dispositivo.",
+ "dropdown_label": "Painel de controle",
+ "header": "Painel de controle"
+ },
+ "enable_shortcuts": {
+ "description": "Habilite ou desabilite os atalhos do teclado para realizar várias ações na IU.",
+ "header": "Atalhos de Teclado"
+ },
+ "force_narrow": {
+ "description": "Isto irá ocultar a barra lateral por padrão, semelhante à experiência móvel.",
+ "header": "Sempre ocultar a barra lateral"
+ },
+ "is_owner": "Você é um proprietário.",
+ "language": {
+ "dropdown_label": "Idioma",
+ "header": "Idioma",
+ "link_promo": "Ajude a traduzir"
+ },
+ "logout": "Sair",
+ "logout_text": "Tem certeza que deseja sair?",
+ "logout_title": "Sair",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Tem certeza de que deseja excluir o token de acesso para {name} ?",
+ "create": "Criar token",
+ "create_failed": "Falha ao criar o token de acesso.",
+ "created": "Criado em {date}",
+ "delete_failed": "Falha ao excluir o token de acesso.",
+ "description": "Crie tokens de acesso de longa duração para permitir que seus scripts interajam com sua instância do Home Assistant. Cada token será válido por 10 anos a partir da criação. Os seguintes tokens de acesso de longa duração estão atualmente ativos.",
+ "empty_state": "Você ainda não tem tokens de acesso de longa duração.",
+ "header": "Tokens de acesso de longa duração",
+ "learn_auth_requests": "Aprenda como fazer solicitações autenticadas.",
+ "name": "Nome",
+ "prompt_copy_token": "Copie seu token de acesso. Ele não será mostrado novamente.",
+ "prompt_name": "Nome?"
+ },
+ "mfa": {
+ "confirm_disable": "Tem certeza de que deseja desativar {name} ?",
+ "disable": "Desabilitar",
+ "enable": "Habilitar",
+ "header": "Módulos de Autenticação Multifator"
+ },
+ "mfa_setup": {
+ "close": "Fechar",
+ "step_done": "Configuração feita para {step}",
+ "submit": "Enviar",
+ "title_aborted": "Abortado",
+ "title_success": "Sucesso!"
+ },
+ "number_format": {
+ "description": "Escolha como os números são formatados.",
+ "dropdown_label": "Fomato de número",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Automático (usar configuração de idioma)",
+ "none": "Nenhum",
+ "space_comma": "1 234 567,89",
+ "system": "Use a localidade do sistema"
+ },
+ "header": "Fomato de número"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Nome do dispositivo",
+ "title": "Qual deve ser o nome desse dispositivo?"
+ },
+ "description": "Envie notificações para este dispositivo.",
+ "error_load_platform": "Configure o notify.html5.",
+ "error_use_https": "Requer SSL habilitado para o frontend.",
+ "header": "Notificações push",
+ "link_promo": "Saiba mais",
+ "push_notifications": "Notificações push"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Tem certeza de que deseja excluir o token de acesso para {name} ?",
+ "created_at": "Criado em {date}",
+ "current_token_tooltip": "Não é possível excluir o token de atualização atual",
+ "delete_failed": "Falha ao excluir o token de acesso.",
+ "description": "Cada token de atualização representa uma sessão de login. Os tokens de atualização serão removidos automaticamente quando você clicar em efetuar logout. Os tokens de atualização a seguir estão ativos na sua conta no momento.",
+ "header": "Tokens de atualização",
+ "last_used": "Usado pela última vez em {date} de {location}",
+ "not_used": "Nunca foi usado",
+ "token_title": "Token de atualização para {clientId}"
+ },
+ "suspend": {
+ "description": "Devemos fechar a conexão com o servidor depois de ficar oculto por 5 minutos?",
+ "header": "Fechar a conexão automaticamente"
+ },
+ "themes": {
+ "accent_color": "Cor de detalhe",
+ "dark_mode": {
+ "auto": "Automático",
+ "dark": "Escuro",
+ "light": "Claro"
+ },
+ "dropdown_label": "Tema",
+ "error_no_theme": "Não há temas disponíveis.",
+ "header": "Tema",
+ "link_promo": "Aprenda sobre temas",
+ "primary_color": "Cor Principal",
+ "reset": "Redefinir"
+ },
+ "time_format": {
+ "description": "Escolha como os horários são formatados.",
+ "dropdown_label": "Formato de hora",
+ "formats": {
+ "12": "12 horas (AM/PM)",
+ "24": "24 horas",
+ "language": "Automático (usar configuração de idioma)",
+ "system": "Use a localidade do sistema"
+ },
+ "header": "Formato de hora"
+ },
+ "vibrate": {
+ "description": "Ative ou desative a vibração neste dispositivo ao controlar dispositivos.",
+ "header": "Vibrar"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Iniciar conversa"
+ }
+ },
+ "sidebar": {
+ "done": "Feito",
+ "external_app_configuration": "Configuração do aplicativo",
+ "hide_panel": "Ocultar painel",
+ "show_panel": "Mostrar painel",
+ "sidebar_toggle": "Alternar barra lateral"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/pt.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/pt.json
new file mode 100644
index 00000000..1d9d52fc
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/pt.json
@@ -0,0 +1,4653 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Entrada de configuração",
+ "device": "Dispositivo",
+ "integration": "Integração",
+ "user": "Utilizador"
+ }
+ },
+ "groups": {
+ "owner": "Proprietário",
+ "system-admin": "Administradores",
+ "system-read-only": "Utilizadores só com permissões de leitura",
+ "system-users": "Utilizadores"
+ },
+ "panel": {
+ "calendar": "Calendário",
+ "config": "Configuração",
+ "developer_tools": "Ferramentas de Programação",
+ "energy": "Energia",
+ "history": "Histórico",
+ "logbook": "Diário de Bordo",
+ "mailbox": "Caixa de correio",
+ "map": "Mapa",
+ "media_browser": "Navegador de Multimédia",
+ "profile": "Perfil",
+ "shopping_list": "Lista de Compras",
+ "states": "Visão Geral"
+ },
+ "state": {
+ "default": {
+ "off": "Desligado",
+ "on": "Ligado",
+ "unavailable": "Indisponível",
+ "unknown": "Desconhecido"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Auto",
+ "off": "Desligado",
+ "on": "Ligado"
+ },
+ "hvac_action": {
+ "cooling": "Resfriar",
+ "drying": "Secagem",
+ "fan": "Ventoinha",
+ "heating": "Aquecimento",
+ "idle": "Em espera",
+ "off": "Desligado"
+ },
+ "preset_mode": {
+ "activity": "Atividade",
+ "away": "Ausente",
+ "boost": "Impulso",
+ "comfort": "Conforto",
+ "eco": "Eco",
+ "home": "Início",
+ "none": "Nenhum",
+ "sleep": "Dormir"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Auto",
+ "away": "Ausente",
+ "baby": "Bebé",
+ "boost": "Intensivo",
+ "comfort": "Conforto",
+ "eco": "Eco",
+ "home": "Casa",
+ "normal": "Normal",
+ "sleep": "Dormir"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Armado",
+ "armed_away": "Armado",
+ "armed_custom_bypass": "Armado",
+ "armed_home": "Armado",
+ "armed_night": "Armado",
+ "armed_vacation": "Armado",
+ "arming": "A armar",
+ "disarmed": "Desarm",
+ "disarming": "Desarmar",
+ "pending": "Pend",
+ "triggered": "Desp"
+ },
+ "default": {
+ "entity_not_found": "Entidade não encontrada",
+ "error": "Erro",
+ "unavailable": "Indisp",
+ "unknown": "Desc"
+ },
+ "device_tracker": {
+ "home": "Casa",
+ "not_home": "Ausente"
+ },
+ "person": {
+ "home": "Casa",
+ "not_home": "Ausente"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Predefinição",
+ "header": "Áudio",
+ "input": "Entrada",
+ "output": "Saída"
+ },
+ "network": {
+ "container": "Container",
+ "disabled": "Desativado",
+ "header": "Rede",
+ "host": "Servidor"
+ },
+ "no_configuration": "Este complemento não expõe configurações para serem alteradas...",
+ "options": {
+ "edit_in_ui": "Editar na interface do utilizador",
+ "edit_in_yaml": "Editar em YAML",
+ "header": "Opções",
+ "invalid_yaml": "YAML inválido",
+ "show_unused_optional": "Mostrar opções de configuração opcionais não utilizadas"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Falha ao obter lista de alterações do add-on",
+ "go_to_config": "Editar Configuração",
+ "install": "Falha ao instalar add-on",
+ "restart": "Falha ao reiniciar add-on",
+ "start": "Falha ao iniciar add-on",
+ "start_invalid_config": "Ir para a configuração",
+ "stop": "Falha ao parar add-on",
+ "uninstall": "Falha ao desinstalar add-on",
+ "validate_config": "Falha ao validar a configuração do add-on"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor ('Application Armor') é um módulo de segurança do kernel Linux que restringe as capacidades dos add-ons como acesso à rede, acesso a sockets, permissões para ler, escrever, ou executar ficheiros específicos.\n\nOs autores de add-ons podem fornecer os seus perfis de segurança, otimizados para os add-ons que desenvolvem, ou solicitar que este seja desativado. Se o AppArmor for desativado, aumentará os riscos de segurança e, portanto, terá um impacto negativo na pontuação de segurança do add-on.",
+ "title": ""
+ },
+ "auth_api": {
+ "description": "Um add-on pode autenticar utilizadores utilizando o Home Assistant, permitindo-lhes entrar em aplicações executadas dentro dos próprios add-ons, usando o seu nome de utilizador/palavra-chave do Home Assistant. Este crachá indica se o autor do add-on solicita esta capacidade.",
+ "title": "Autenticação do Home Assistant"
+ },
+ "docker_api": {
+ "title": "Acesso Completo ao Docker"
+ },
+ "full_access": {
+ "title": "Acesso completo ao hardware"
+ },
+ "hassio_api": {
+ "description": "O add-on tem acesso à API do Supervisor, a pedido do autor. Por defeito, o add-on pode aceder à informação da versão do seu sistema. Quando este solicita acesso de nível 'gestor' ou 'administrador' à API, obterá acesso para controlar múltiplas partes do seu sistema Home Assistant. Esta permissão é indicada por este crachá e terá um impacto negativo na pontuação de segurança do add-on.",
+ "title": "Acesso à API do Supervisor"
+ },
+ "homeassistant_api": {
+ "title": "Acesso à API do Home Assistant"
+ },
+ "host_network": {
+ "description": "Os add-ons normalmente funcionam na sua própria camada de rede isolada, o que os impede de aceder à rede do sistema operativo principal. Em alguns casos, este isolamento pode limitar as funcionalidades, pelo que poderá ser levantado pelo autor, dando ao add-on pleno acesso à rede. Isto permite-lhe interagir com a rede na totalidade, mas reduz a segurança, por conseguinte, a classificação da segurança do add-on será reduzida quando esta opção for utilizada.",
+ "title": "Rede do Servidor"
+ },
+ "host_pid": {
+ "description": "Normalmente, os processos que o add-on executa são isolados de todos os outros processos do sistema operativo. O autor do add-on solicitou que este pudesse ter acesso aos processos do sistema que correm no servidor, e também que tivesse permissão para lançar novos processos. Deste modo é concedido ao add-on acesso e controlo total a todo o sistema do Home Assistant, o que acrescenta riscos de segurança, e pode danificá-lo quando utilizado indevidamente. Por conseguinte, esta característica tem um impacto negativo na pontuação de segurança do add-on.\n\nEste nível de acesso não é concedido automaticamente e precisa de ser confirmado por si. Para o fazer, é necessário desativar manualmente o modo de protecção no add-on. Desative o modo de protecção apenas se precisar, conhecer e confiar na fonte deste suplemento."
+ },
+ "ingress": {
+ "description": "Este add-on está a utilizar o Ingress para incorporar a sua interface de forma segura no Home Assistant.",
+ "title": ""
+ },
+ "label": {
+ "apparmor": "",
+ "core": "",
+ "docker": "",
+ "hardware": "hardware",
+ "hass": "",
+ "hassio": "",
+ "rating": "classificação",
+ "stage": "etapa"
+ },
+ "rating": {
+ "description": "O Home Assistant fornece uma classificação de segurança a cada um dos complementos, que indica os riscos envolvidos na utilização deste complemento. Quanto mais acesso um complemento requer no seu sistema, mais baixa a pontuação, aumentando assim os possíveis riscos de segurança.\n\nA pontuação tem uma escala de 1 a 6, na qual 1 é a pontuação mais baixa (considerada a mais insegura e de maior risco) e 6 é a mais alta (considerada a mais segura e de menor risco).",
+ "title": "Classificação de segurança do complemento"
+ },
+ "role": {
+ "admin": "admin",
+ "backup": "cópia de segurança",
+ "default": "padrão",
+ "homeassistant": "",
+ "manager": "gestor"
+ },
+ "stage": {
+ "description": "Os add-ons podem ter uma de três classificações:\n\n{icon_stable} **Estável***: Estes são add-ons prontos a serem utilizados em produção.\n\n{icon_experimental} **Experimental***: Estes add-ons podem ter problemas, e podem estar inacabados.\n\n{icon_deprecated} **Descontinuado***: Estes add-ons deixarão de receber qualquer atualização.",
+ "title": "Classificação do Add-on"
+ },
+ "stages": {
+ "deprecated": "Descontinuado",
+ "experimental": "Experimental"
+ }
+ },
+ "changelog": "Registo de alterações",
+ "cpu_usage": "Utilização de CPU do add-on",
+ "hostname": "Nome do servidor",
+ "install": "instalar",
+ "new_update_available": "{name} {version} está disponível",
+ "not_available_arch": "Este add-on não é compatível com o processador ou sistema operativo do seu dispositivo.",
+ "not_available_version": "Está a executar o Home Assistant {core_version_installed}, para actualizar para esta versão do add-on necessita pelo menos da versão {core_version_needed}",
+ "open_web_ui": "Abrir a interface web",
+ "option": {
+ "auto_update": {
+ "description": "Atualizar automaticamente o add-on quando houver uma nova versão disponível",
+ "title": "Atualizar automaticamente"
+ },
+ "boot": {
+ "description": "Iniciar o add-on durante o arranque do sistema",
+ "title": "Iniciar no arranque"
+ },
+ "ingress_panel": {
+ "description": "Adicionar este add-on à barra lateral",
+ "title": "Mostrar na barra lateral"
+ },
+ "protected": {
+ "description": "Bloqueia o acesso elevado ao sistema por parte do add-on",
+ "title": "Modo de proteção"
+ },
+ "watchdog": {
+ "description": "Isto reiniciará o add-on se este falhar",
+ "title": ""
+ }
+ },
+ "protection_mode": {
+ "content": "O modo de proteção neste add-on está desativado! Isto dá ao add-on acesso total a todo o sistema, o que gera riscos de segurança e pode danificar o sistema quando usado incorretamente. Desative o modo de proteção apenas se conhecer, precisar e confiar na fonte deste add-on.",
+ "enable": "Ativar",
+ "title": "O modo de proteção está desativado!"
+ },
+ "ram_usage": "Utilização de RAM do add-on",
+ "rebuild": "reconstruir",
+ "restart": "reiniciar",
+ "start": "iniciar",
+ "stop": "parar",
+ "uninstall": "desinstalar",
+ "visit_addon_page": "Visite {name} para mais detalhes"
+ },
+ "documentation": {
+ "get_documentation": "Erro ao obter a documentação do add-on, {error}"
+ },
+ "failed_to_reset": "Falha ao repor a configuração do add-on, {error}",
+ "failed_to_save": "Falha ao guardar a configuração do add-on, {error}",
+ "logs": {
+ "get_logs": "Falha ao obter logs do add-on, {error}"
+ },
+ "panel": {
+ "configuration": "Configuração",
+ "documentation": "Documentação",
+ "info": "Informação",
+ "log": "Log"
+ },
+ "state": {
+ "installed": "O add-on está instalado",
+ "not_available": "O add-on não está disponível no seu sistema",
+ "not_installed": "O add-on não está instalado"
+ }
+ },
+ "backup": {
+ "addons": "Add-ons",
+ "confirm_password": "Confirmar palavra-passe da cópia de segurança",
+ "could_not_create": "Não foi possível criar uma cópia de segurança",
+ "create": "Criar",
+ "create_backup": "Criar cópia de segurança",
+ "create_blocked_not_running": "Não é possível criar uma cópia de segurança agora porque o sistema está {state}.",
+ "created": "Criado",
+ "delete_backup_confirm": "eliminar",
+ "delete_backup_text": "Pretende eliminar {number} {number, plural,\n one {cópia de segurança}\n other {cópias de segurança}\n}?",
+ "delete_backup_title": "Eliminar cópia de segurança",
+ "delete_selected": "Eliminar as cópias de segurança selecionadas",
+ "enter_password": "Por favor introduza uma palavra-passe.",
+ "failed_to_delete": "Falha ao eliminar",
+ "folders": "Pastas",
+ "full_backup": "Cópia de segurança completa",
+ "name": "Nome da cópia de segurança",
+ "no_backups": "Ainda não tem quaisquer cópias de segurança.",
+ "partial_backup": "Cópia de segurança parcial",
+ "password": "Palavra-passe da cópia de segurança",
+ "password_protection": "Proteção por palavra-passe",
+ "passwords_not_matching": "As palavras-passe não correspondem",
+ "select_type": "Selecione o que restaurar",
+ "selected": "{number} selecionado",
+ "size": "Tamanho",
+ "type": "Tipo de cópia de segurança",
+ "upload_backup": "Importar cópia de segurança"
+ },
+ "common": {
+ "cancel": "Cancelar",
+ "close": "Fechar",
+ "description": "Descrição",
+ "error": {
+ "unknown": "Erro desconhecido",
+ "update_failed": "A atualização falhou"
+ },
+ "failed_to_restart_name": "Falha ao reiniciar {name}",
+ "failed_to_update_name": "Falha ao atualizar {name}",
+ "learn_more": "Saiba mais",
+ "menu": "Menu",
+ "new_version_available": "Nova versão disponível",
+ "newest_version": "Versão mais recente",
+ "no": "Não",
+ "refresh": "Atualizar",
+ "release_notes": "Notas da versão",
+ "reload": "Recarregar",
+ "reset_defaults": "Repor para os valores por defeito",
+ "reset_options": "Opções de reposição",
+ "restart": "Reiniciar",
+ "restart_name": "Reiniciar {name}",
+ "running_version": "Está atualmente a executar a versão {version}",
+ "save": "Guardar",
+ "show": "mostrar",
+ "show_more": "Mostrar mais informações sobre isto",
+ "update": "Atualizar",
+ "update_available": "{count, plural,\n one {atualização pendente}\n other {{count} atualizações pendentes}\n}",
+ "version": "Versão",
+ "yes": "Sim"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Tem a certeza de que pretende repor todas as opções?",
+ "title": "Opções de reposição"
+ },
+ "restart": {
+ "text": "Tem a certeza que pretende reiniciar {name}?",
+ "title": "Reiniciar {name}"
+ },
+ "update": {
+ "text": "Tem a certeza de que pretende atualizar {name} para a versão {version}?",
+ "title": "Atualizar {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Nova versão disponível",
+ "addon_running": "O add-on está em execução",
+ "addon_stopped": "O add-on está parado",
+ "addons": "Add-ons instalados",
+ "no_addons": "Ainda não tem nenhum add-on instalado. Dirija-se à loja de add-ons para começar!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Cancelar",
+ "description": "Atualmente está a utilizar ''{current_path}'' como datadisk. Mover o disco de dados irá reiniciar o seu dispositivo e estima-se que demore {time} minutos. A sua instalação do Home Assistant não estará acessível durante este período. Não desligue a energia durante a operação!",
+ "loading_devices": "A carregar dispositivos",
+ "move": "Mover",
+ "moving": "A mover datadisk",
+ "moving_desc": "A reiniciar e a mover o datadisk. Por favor aguarde",
+ "no_devices": "Nenhum dispositivo correspondente encontrado",
+ "select_device": "Selecione um novo datadisk",
+ "title": "Mover datadisk"
+ },
+ "hardware": {
+ "attributes": "Atributos",
+ "device_path": "Caminho do dispositivo",
+ "id": "",
+ "search": "Procurar hardware",
+ "subsystem": "Subsistema",
+ "title": ""
+ },
+ "network": {
+ "connected_to": "Ligado a {ssid}",
+ "dhcp": "",
+ "disabled": "Desativado",
+ "dns_servers": "Servidores DNS",
+ "failed_to_change": "Falha ao alterar as configurações de rede",
+ "gateway": "Endereço do Gateway",
+ "ip_netmask": "Endereço IP/Máscara de rede",
+ "open": "",
+ "scan_ap": "Procurar pontos de acesso",
+ "static": "Estático",
+ "title": "Configurações de rede",
+ "unsaved": "Possui alterações não gravadas, serão perdidas se mudar de aba. Deseja continuar?",
+ "warning": "Se estiver a alterar configurações de Wi-Fi, os endereços IP ou gateway, poderá perder a ligação!",
+ "wep": "",
+ "wpa": ""
+ },
+ "registries": {
+ "add_new_registry": "Adicionar novo registo",
+ "add_registry": "Adicionar registo",
+ "failed_to_add": "Falha ao registar",
+ "failed_to_remove": "Falha ao remover o registo",
+ "no_registries": "Nenhum registo configurado",
+ "password": "Palavra-passe",
+ "registry": "Registo",
+ "remove": "Remover",
+ "title_add": "Adicionar registo de novo Container",
+ "title_manage": "Gerir Registos dos Containers",
+ "username": "Nome de Utilizador"
+ },
+ "repositories": {
+ "add": "Adicionar",
+ "remove": "Remover",
+ "title": "Gerir repositórios de add-ons",
+ "used": "O repositório está a ser utilizado por add-ons instalados e não pode ser removido."
+ },
+ "restart_addon": {
+ "confirm_text": "Reiniciar o add-on",
+ "text": "Pretende reiniciar o add-on com as alterações?"
+ },
+ "update": {
+ "backup": "Cópia de segurança",
+ "create_backup": "Criar uma cópia de segurança de {name} antes de atualizar",
+ "creating_backup": "A criar cópia de segurança de {name}",
+ "updating": "A atualizar {name} para a versão {version}"
+ }
+ },
+ "my": {
+ "error": "Ocorreu um erro desconhecido",
+ "error_addon_no_ingress": "O add-on solicitado não suporta Ingress",
+ "error_addon_not_found": "Add-on não encontrado",
+ "error_addon_not_installed": "O add-on solicitado não está instalado. Por favor, instale primeiro",
+ "error_addon_not_started": "O add-on solicitado não está a correr. Por favor, arranque-o primeiro",
+ "faq_link": "My Home Assistant FAQ",
+ "not_supported": "Este redirecionamento não é compatível com a instância do Home Assistant. Consulte {link} para conhecer os redirecionamentos suportados e a versão em que foram introduzidos."
+ },
+ "panel": {
+ "addons": "",
+ "backups": "Cópias de segurança",
+ "dashboard": "Painel",
+ "store": "Loja de Add-ons",
+ "system": "Sistema"
+ },
+ "store": {
+ "check_updates": "Procurar atualizações",
+ "missing_addons": "Add-ons em falta? Ative o modo avançado na sua página de perfil de utilizador",
+ "no_results_found": "Nenhum resultado encontrado em {repository}.",
+ "registries": "Registos",
+ "repositories": "Repositórios"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Utilização de CPU",
+ "ram_usage": "Utilização de RAM"
+ },
+ "host": {
+ "change": "Alterar",
+ "change_hostname": "Alterar o Nome do Servidor",
+ "confirm_reboot": "Tem a certeza que pretende reiniciar o servidor?",
+ "confirm_shutdown": "Tem a certeza que pretende encerrar o servidor?",
+ "deployment": "Implementação",
+ "docker_version": "Versão Docker",
+ "emmc_lifetime_used": "Vida Útil de eMMC Utilizada",
+ "failed_to_get_hardware_list": "Falha ao obter a lista de hardware",
+ "failed_to_import_from_usb": "Falha ao importar de USB",
+ "failed_to_move": "Falha ao mover o datadisk",
+ "failed_to_reboot": "Falha a reiniciar o servidor",
+ "failed_to_set_hostname": "A alteração de nome do servidor falhou",
+ "failed_to_shutdown": "Falha a encerrar o servidor",
+ "hardware": "Hardware",
+ "hostname": "Nome do servidor",
+ "import_from_usb": "Importar de USB",
+ "ip_address": "Endereço IP",
+ "move_datadisk": "Mover datadisk",
+ "new_hostname": "Por favor, introduza um novo nome do servidor:",
+ "operating_system": "Sistema Operativo",
+ "reboot_host": "Reiniciar o servidor",
+ "shutdown_host": "Encerrar o servidor",
+ "used_space": "Espaço utilizado"
+ },
+ "log": {
+ "get_logs": "Falha ao obter logs do {provider}, {error}",
+ "log_provider": "Fornecedor de Logs"
+ },
+ "supervisor": {
+ "beta_backup": "Certifique-se de que tem cópias de segurança dos seus dados antes de ativar esta funcionalidade.",
+ "beta_join_confirm": "Quer juntar-se ao canal beta?",
+ "beta_release_items": "Isto inclui versões beta para:",
+ "beta_warning": "As versões Beta são destinadas a utilizadores de teste ou outros interessados e podem conter alterações de código instáveis.",
+ "channel": "Canal",
+ "cpu_usage": "Utilização de CPU do Supervisor",
+ "failed_to_reload": "Falha ao recarregar o Supervisor",
+ "failed_to_set_option": "Falha ao definir uma opção no Supervisor",
+ "failed_to_update": "Falha ao atualizar o Supervisor",
+ "join_beta_action": "Inscreva-se no canal beta",
+ "join_beta_description": "Obter atualizações beta para Home Assistant (RCs), Supervisor e host",
+ "leave_beta_action": "Sair do canal beta",
+ "leave_beta_description": "Obter atualizações estáveis para Home Assistant, Supervisor e host",
+ "ram_usage": "Utilização de RAM do Supervisor",
+ "reload_supervisor": "Recarregar Supervisor",
+ "search": "Procurar",
+ "share_diagnostics": "Partilhar Diagnósticos",
+ "share_diagnostics_description": "Partilhar relatórios de falhas e informações de diagnóstico.",
+ "share_diagonstics_description": "Gostaria de partilhar automaticamente relatórios de falhas do sistema e informações de diagnóstico quando o Supervisor se deparar com erros inesperados? {line_break} Isto permitir-nos-á resolver os problemas, a informação só é acessível à equipa do Home Assistant Core e não será partilhada com outros.{line_break} Os dados não incluem qualquer informação privada/sensível e pode desativá-la nas configurações em qualquer altura.",
+ "share_diagonstics_title": "Ajudar a Melhorar o Home Assistant",
+ "unhealthy_description": "Executar uma instalação não íntegra poderá causar problemas. Abaixo está uma lista de problemas detetados na sua instalação, clique nos links para saber como poderá resolver os problemas.",
+ "unhealthy_reason": {
+ "docker": "O ambiente Docker não está a funcionar corretamente",
+ "privileged": "O Supervisor não tem privilégios",
+ "setup": "A configuração do Supervisor falhou",
+ "supervisor": "O Supervisor não foi capaz de atualizar",
+ "untrusted": "Detectado conteúdo não confiável"
+ },
+ "unhealthy_title": "A sua instalação não está íntegra",
+ "unsupported_description": "Abaixo está uma lista de problemas detetados na sua instalação, clique nos links para saber como poderá resolver os problemas.",
+ "unsupported_reason": {
+ "apparmor": "O AppArmor não está ativado no host",
+ "container": "Containers conhecidos por causar problemas",
+ "content-trust": "A validação de confiança no conteúdo está desativada",
+ "content_trust": "A validação de confiança no conteúdo está desativada",
+ "dbus": "",
+ "docker_configuration": "Configuração do Docker",
+ "docker_version": "Versão Docker",
+ "job_conditions": "Condições de trabalho ignoradas",
+ "lxc": "",
+ "network_manager": "Gestor de Rede",
+ "os": "Sistema Operativo",
+ "os_agent": "Agente do Sistema Operativo",
+ "privileged": "O Supervisor não tem privilégios",
+ "software": "Detetado software não suportado",
+ "source_mods": "Modificações na fonte",
+ "systemd": ""
+ },
+ "unsupported_title": "Está a executar uma instalação não suportada",
+ "update_supervisor": "Atualizar o Supervisor",
+ "warning": "AVISO"
+ }
+ },
+ "update_available": {
+ "core_note": "O Supervisor voltará à versão {version} se a sua instância não arrancar após a atualização.",
+ "create_backup": "Criar cópia de segurança antes da atualização",
+ "creating_backup": "A criar cópia de segurança de {name}",
+ "description": "Tem a {version} instalada. Clique em ATUALIZAR para atualizar para a versão {newest_version}.",
+ "no_update": "Nenhuma atualização disponível para {name}",
+ "open_release_notes": "Abrir notas da versão",
+ "update_name": "Atualizar {name}",
+ "updating": "A atualizar {name} para a versão {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Deseja continuar com sessão iniciada?",
+ "confirm": "Sim",
+ "decline": "Não"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Armado ausente",
+ "arm_custom_bypass": "Desvio personalizado",
+ "arm_home": "Armado casa",
+ "arm_night": "Armado noite",
+ "clear_code": "Apagar",
+ "code": "Código",
+ "disarm": "Desarmar"
+ },
+ "area": {
+ "area_not_found": "Área não encontrada."
+ },
+ "automation": {
+ "last_triggered": "Última ocorrência",
+ "trigger": "Despoletar"
+ },
+ "button": {
+ "press": "Pressione"
+ },
+ "camera": {
+ "not_available": "Imagem não disponível"
+ },
+ "climate": {
+ "aux_heat": "Calor auxiliar",
+ "away_mode": "Modo ausente",
+ "cooling": "{name} a arrefecer",
+ "current_temperature": "{name} temperatura atual",
+ "currently": "Atualmente",
+ "fan_mode": "Modo ventilar",
+ "heating": "{name} a aquecer",
+ "high": "Alta",
+ "low": "Baixa",
+ "on_off": "Ligado / desligado",
+ "operation": "Operação",
+ "preset_mode": "Predefinição",
+ "swing_mode": "Modo oscilante",
+ "target_humidity": "Humidade pretendida",
+ "target_temperature": "Temperatura pretendida",
+ "target_temperature_entity": "Temperatura pretendida para {name}",
+ "target_temperature_mode": "{name} temperatura pretendida {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "decrementar",
+ "increment": "Incrementar",
+ "reset": "repor"
+ }
+ },
+ "cover": {
+ "position": "Posição",
+ "tilt_position": "Posição de inclinação"
+ },
+ "fan": {
+ "direction": "Direção",
+ "forward": "Seguinte",
+ "oscillate": "Oscilar",
+ "preset_mode": "Modo Pré-definido",
+ "reverse": "Reverter",
+ "speed": "Velocidade"
+ },
+ "humidifier": {
+ "humidity": "Humidade pretendida",
+ "mode": "Modo",
+ "on_entity": "{name} ligado",
+ "target_humidity_entity": "{name} humidade pretendida"
+ },
+ "light": {
+ "brightness": "Brilho",
+ "cold_white_value": "Brilho branco frio",
+ "color_brightness": "Brilho",
+ "color_temperature": "Temperatura de cor",
+ "effect": "Efeito",
+ "warm_white_value": "Brilho branco quente",
+ "white_value": "Brilho"
+ },
+ "lock": {
+ "code": "Código",
+ "lock": "Bloquear",
+ "unlock": "Desbloquear"
+ },
+ "media_player": {
+ "browse_media": "Pesquisar media",
+ "media_next_track": "Seguinte",
+ "media_pause": "Pausa",
+ "media_play": "Reproduzir",
+ "media_play_pause": "Reproduzir/pausar",
+ "media_previous_track": "Anterior",
+ "media_stop": "Parar",
+ "media_volume_down": "Diminuir volume",
+ "media_volume_mute": "Desativar som",
+ "media_volume_unmute": "Ativar som",
+ "media_volume_up": "Aumentar volume",
+ "nothing_playing": "Nada a Reproduzir",
+ "sound_mode": "Modo de som",
+ "source": "Fonte",
+ "text_to_speak": "Texto para fala",
+ "turn_off": "Desligar",
+ "turn_on": "Ligar"
+ },
+ "persistent_notification": {
+ "dismiss": "Fechar"
+ },
+ "scene": {
+ "activate": "Ativar"
+ },
+ "script": {
+ "cancel": "Cancelar",
+ "cancel_multiple": "Cancelar {number}",
+ "run": "Executar"
+ },
+ "service": {
+ "run": "Executar"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "Cancelar",
+ "finish": "Terminar",
+ "pause": "pausa",
+ "start": "Iniciar"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Retomar a limpeza",
+ "return_to_base": "Voltar à doca",
+ "start_cleaning": "Iniciar a limpeza",
+ "turn_off": "Desligar",
+ "turn_on": "Ligar"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Modo ausente",
+ "currently": "Atualmente",
+ "on_off": "Ligado / desligado",
+ "operation": "Operação",
+ "target_temperature": "Temperatura pretendida"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Press. Atmosférica",
+ "humidity": "Humidade",
+ "precipitation": "Precipitação",
+ "temperature": "Temperatura",
+ "visibility": "Visibilidade",
+ "wind_speed": "Vel. do vento"
+ },
+ "cardinal_direction": {
+ "e": "E",
+ "ene": "ENE",
+ "ese": "ESE",
+ "n": "N",
+ "ne": "NE",
+ "nne": "NNE",
+ "nnw": "NNW",
+ "nw": "NW",
+ "s": "S",
+ "se": "SE",
+ "sse": "SSE",
+ "ssw": "SSW",
+ "sw": "SW",
+ "w": "W",
+ "wnw": "WNW",
+ "wsw": "WSW"
+ },
+ "day": "Dia",
+ "forecast": "Previsão",
+ "high": "Máxima",
+ "low": "Mínima",
+ "night": "Noite"
+ }
+ },
+ "common": {
+ "and": "e",
+ "back": "Retroceder",
+ "cancel": "Cancelar",
+ "clear": "Limpo",
+ "close": "Fechar",
+ "continue": "Continuar",
+ "copied": "Copiado",
+ "copied_clipboard": "Copiado para a área de transferência",
+ "delete": "Apagar",
+ "disable": "Desativar",
+ "enable": "Ativar",
+ "error_required": "Obrigatório",
+ "help": "Ajuda",
+ "leave": "Sair",
+ "loading": "A carregar",
+ "menu": "Menu",
+ "move": "Mover",
+ "next": "Seguinte",
+ "no": "Não",
+ "not_now": "Agora não",
+ "overflow_menu": "Menu sobreposto",
+ "previous": "Anterior",
+ "refresh": "Atualizar",
+ "remove": "Remover",
+ "rename": "Mudar o nome",
+ "save": "Guardar",
+ "skip": "Ignorar",
+ "stay": "Ficar",
+ "submit": "Submeter",
+ "successfully_deleted": "Eliminado com sucesso",
+ "successfully_saved": "Salva com sucesso",
+ "undo": "Desfazer",
+ "yes": "Sim"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Add-on",
+ "error": {
+ "fetch_addons": {
+ "description": "Ocorreu um erro ao carregar os add-ons.",
+ "title": "Erro ao carregar add-ons"
+ },
+ "no_supervisor": {
+ "description": "Add-ons não são suportados.",
+ "title": "Sem Supervisor"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Adicionar",
+ "failed_create_area": "Falha ao criar a área.",
+ "name": "Nome",
+ "text": "Introduza o nome da nova área.",
+ "title": "Adicionar nova área"
+ },
+ "add_new": "Adicionar nova área…",
+ "area": "Área",
+ "clear": "Limpar",
+ "no_areas": "Não tem nenhuma área",
+ "no_match": "Nenhuma área correspondente encontrada",
+ "show_areas": "Mostrar áreas"
+ },
+ "attributes": {
+ "expansion_header": "Atributos"
+ },
+ "blueprint-picker": {
+ "add_user": "Adicionar um utilizador",
+ "remove_user": "Remover utilizador",
+ "select_blueprint": "Escolhe um projeto"
+ },
+ "calendar": {
+ "my_calendars": "Os Meus Calendários",
+ "today": "Hoje"
+ },
+ "data-table": {
+ "clear": "Limpar",
+ "filtering_by": "A filtrar por",
+ "hidden": "{number} ocultos",
+ "no-data": "Sem dados",
+ "search": "Procurar"
+ },
+ "date-range-picker": {
+ "end_date": "Data de fim",
+ "ranges": {
+ "last_week": "Semana passada",
+ "this_week": "Esta semana",
+ "today": "Hoje",
+ "yesterday": "Ontem"
+ },
+ "select": "Selecione",
+ "start_date": "Data de início"
+ },
+ "device-picker": {
+ "clear": "Apagar",
+ "device": "Dispositivo",
+ "no_area": "Sem área",
+ "no_devices": "Não tem nenhum dispositivo",
+ "no_match": "Nenhum dispositivo correspondente encontrado",
+ "show_devices": "Mostrar dispositivos",
+ "toggle": "Alternar"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Atributo",
+ "show_attributes": "Mostrar atributos"
+ },
+ "entity-picker": {
+ "clear": "Limpar",
+ "edit": "Editar",
+ "entity": "Entidade",
+ "no_match": "Nenhuma entidade correspondente encontrada",
+ "show_entities": "Mostrar entidades"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "Integração de histórico desativada",
+ "loading_history": "A carregar histórico de estados…",
+ "no_history_found": "Nenhum histórico de estado encontrado."
+ },
+ "logbook": {
+ "by": "por",
+ "by_service": "pelo serviço",
+ "entries_not_found": "Não foram encontrados eventos no diário de bordo.",
+ "messages": {
+ "became_unavailable": "ficou indisponível",
+ "changed_to_state": "alterado para {state}",
+ "cleared_device_class": "Vazio (nenhuma {device_class} detetada)",
+ "cleared_tampering": "adulteração corrigida",
+ "detected_device_class": "detetado {device_class}",
+ "detected_tampering": "adulteração detetada",
+ "is_closing": "está a fechar",
+ "is_opening": "está a abrir",
+ "rose": "rosa",
+ "set": "definir",
+ "turned_off": "desligado",
+ "turned_on": "ligado",
+ "was_at_home": "chegou a casa",
+ "was_at_state": "chegou a {state}",
+ "was_away": "saiu de casa",
+ "was_closed": "foi fechado",
+ "was_connected": "foi conectado",
+ "was_disconnected": "foi desconectado",
+ "was_locked": "foi trancado",
+ "was_low": "estava baixo",
+ "was_normal": "estava normal",
+ "was_opened": "foi aberto",
+ "was_plugged_in": "foi conectado",
+ "was_safe": "estava seguro",
+ "was_unlocked": "foi destrancado",
+ "was_unplugged": "foi desconectado",
+ "was_unsafe": "estava inseguro"
+ },
+ "retrieval_error": "Não foi possível carregar o livro de bordo",
+ "show_trace": "Mostrar registo"
+ },
+ "media-browser": {
+ "audio_not_supported": "O seu navegador não suporta o elemento de áudio.",
+ "choose_player": "Escolha o Leitor",
+ "class": {
+ "album": "Álbum",
+ "app": "App",
+ "artist": "Artista",
+ "channel": "Canal",
+ "composer": "Compositor",
+ "contributing_artist": "Artista Contribuidor",
+ "directory": "Biblioteca",
+ "episode": "Episódio",
+ "game": "Jogos",
+ "genre": "Gênero",
+ "image": "Imagem",
+ "movie": "Filme",
+ "music": "Música",
+ "playlist": "Lista de reprodução",
+ "podcast": "Podcast",
+ "season": "Temporada",
+ "track": "Faixa",
+ "tv_show": "Programa de TV",
+ "url": "URL",
+ "video": "Vídeo"
+ },
+ "documentation": "documentação",
+ "learn_adding_local_media": "Saiba mais sobre como adicionar ficheiros de média na {documentation} .",
+ "local_media_files": "Coloque seus ficheiros de vídeo, áudio e imagem no diretório de multimédia para poder navegar e reproduzi-los no navegador ou em reprodutores de média compatíveis.",
+ "media-player-browser": "Multimédia",
+ "media_browsing_error": "Erro de Navegação de Multimédia",
+ "media_not_supported": "O Browser Media Player não suporta este tipo de ficheiro",
+ "media_player": "Leitor multimédia",
+ "no_items": "Sem itens",
+ "no_local_media_found": "Não existem ficheiros de média",
+ "no_media_folder": "Parece que ainda não criou um diretório de multimédia.",
+ "pick": "Escolher",
+ "pick-media": "Escolha a média",
+ "play": "Reproduzir",
+ "play-media": "Reproduzir Média",
+ "setup_local_help": "Verifique a {documentation} sobre como configurar a média local.",
+ "video_not_supported": "O seu navegador não suporta o elemento de vídeo.",
+ "web-browser": "Navegador web"
+ },
+ "picture-upload": {
+ "label": "Imagem",
+ "unsupported_format": "Formato não suportado, por favor escolha uma imagem JPEG, PNG ou GIF."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Introduza o valor do código QR",
+ "manual_input": "Pode ler o código QR com outro scanner QR e colar o código na entrada abaixo",
+ "not_supported": "O seu navegador não suporta leitura de códigos QR.",
+ "only_https_supported": "Só pode utilizar a sua câmara para ler um código QR ao utilizar HTTPS.",
+ "select_camera": "Selecionar câmara"
+ },
+ "related-filter-menu": {
+ "filter": "Filtrar",
+ "filter_by_area": "Filtrar por área",
+ "filter_by_device": "Filtrar por dispositivo",
+ "filter_by_entity": "Filtrar por entidade",
+ "filtered_by_area": "área: {area_name}",
+ "filtered_by_device": "dispositivo: {device_name}",
+ "filtered_by_entity": "entidade: {entity_name}"
+ },
+ "related-items": {
+ "area": "Área",
+ "automation": "Parte das seguintes automatizações",
+ "device": "Dispositivo",
+ "entity": "Entidades relacionadas",
+ "group": "Parte dos seguintes grupos",
+ "integration": "Integração",
+ "no_related_found": "Não foi encontrado nenhum item relacionado.",
+ "scene": "Parte dos seguintes cenários",
+ "script": "Parte dos seguintes scripts"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one {dia}\n other {dias}\n}",
+ "hour": "{count} {count, plural,\n one {hora}\n other {horas}\n}",
+ "minute": "{count} {count, plural,\n one {minuto}\n other {minutos}\n}",
+ "second": "{count} {count, plural,\n one {segundo}\n other {segundos}\n}",
+ "week": "{count} {count, plural,\n one {semana}\n other {semanas}\n}"
+ },
+ "future_duration": {
+ "day": "Dentro de {count} {count, plural,\n one {dia}\n other {dias}\n}",
+ "hour": "Dentro de {count} {count, plural,\n one {hora}\n other {horas}\n}",
+ "minute": "Dentro de {count} {count, plural,\n one {minuto}\n other {minutos}\n}",
+ "second": "In {count} {count, plural,\n one {segundo}\n other {segundos}\n}",
+ "week": "Dentro de {count} {count, plural,\n one {semana}\n other {semanas}\n}"
+ },
+ "just_now": "Agora mesmo",
+ "never": "Nunca",
+ "past_duration": {
+ "day": "{count} {count, plural,\n one {dia}\n other {dias}\n} atrás",
+ "hour": "{count} {count, plural,\n one {hora}\n other {horas}\n} atrás",
+ "minute": "{count} {count, plural,\n one {minuto}\n other {minutos}\n} atrás",
+ "second": "{count} {count, plural,\n one {segundo}\n other {segundos}\n} atrás",
+ "week": "{count} {count, plural,\n one {semana}\n other {semanas}\n} atrás"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Documentação da integração",
+ "required": "Este campo é obrigatório",
+ "service_data": "Dados do serviço",
+ "target": "Alvos",
+ "target_description": "O que deve este serviço utilizar como áreas, dispositivos ou entidades alvo."
+ },
+ "service-picker": {
+ "service": "Serviço"
+ },
+ "statistic-picker": {
+ "learn_more": "Saiba mais sobre estatísticas",
+ "missing_entity": "Por que é que a minha entidade não está disponível?",
+ "no_match": "Não foram encontradas estatísticas correspondentes",
+ "no_statistics": "Não tem nenhuma estatística",
+ "statistic": "Estatística"
+ },
+ "statistics_charts": {
+ "loading_statistics": "A carregar estatísticas...",
+ "no_statistics_found": "Não foram encontradas estatísticas.",
+ "statistic_types": {
+ "max": "máximo",
+ "mean": "média",
+ "min": "mínimo",
+ "sum": "soma"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Escolha a área",
+ "add_device_id": "Escolha o dispositivo",
+ "add_entity_id": "Escolha a entidade",
+ "expand": "Expandir",
+ "expand_area_id": "Expandir esta área nos dispositivos e entidades separadas que ela contém.",
+ "expand_device_id": "Expandir este dispositivo em entidades separadas.",
+ "remove": "Remover",
+ "remove_area_id": "Remover área",
+ "remove_device_id": "Remover dispositivo",
+ "remove_entity_id": "Remover entidade"
+ },
+ "user-picker": {
+ "add_user": "Adicionar utilizador",
+ "no_user": "Nenhum utilizador",
+ "remove_user": "Remover utilizador"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Se desativado, novas entidades descobertas por {integration} não serão automaticamente adicionadas ao Home Assistant.",
+ "enable_new_entities_label": "Ativar novas entidades adicionadas.",
+ "enable_polling_description": "Se desativado, o Home Assistant não atualizará as entidades associadas a {integration}.",
+ "enable_polling_label": "Ativar procura por alterações",
+ "restart_home_assistant": "É necessário reiniciar o Home Assistant para que as suas alterações entrem em vigor.",
+ "title": "Opções de sistema para {integration}",
+ "update": "Atualizar"
+ },
+ "domain_toggler": {
+ "reset_entities": "Inicializar Entidades",
+ "title": "Alternar domínios"
+ },
+ "entity_registry": {
+ "control": "Controlo",
+ "customize_link": "personalizações de entidade",
+ "dismiss": "Fechar",
+ "editor": {
+ "advanced": "Configurações avançadas",
+ "area": "Definir apenas a área da entidade",
+ "area_note": "Por defeito, as entidades de um dispositivo estão na mesma área que o dispositivo. Se alterar a área desta entidade, esta deixará de seguir a área do dispositivo.",
+ "change_device_area": "Alterar área do dispositivo",
+ "confirm_delete": "Tem a certeza de que pretende eliminar esta entidade?",
+ "delete": "Eliminar",
+ "device_class": "Mostrar como",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Porta",
+ "garage_door": "Porta da garagem",
+ "opening": "Outro",
+ "window": "Janela"
+ },
+ "cover": {
+ "door": "Porta",
+ "garage": "Porta da garagem",
+ "window": "Janela"
+ }
+ },
+ "device_disabled": "O dispositivo desta entidade está desativado.",
+ "enabled_cause": "Desativado por {cause}.",
+ "enabled_delay_confirm": "As entidades ativadas serão adicionadas ao Home Assistant dentro de {delay} segundos",
+ "enabled_description": "Entidades desativadas não serão adicionadas ao Home Assistant.",
+ "enabled_label": "Ativar entidade",
+ "enabled_restart_confirm": "Reinicie o Home Assistant para ativar as entidades",
+ "entity_id": "ID da entidade",
+ "follow_device_area": "Siga a área do dispositivo",
+ "icon": "Ícone",
+ "icon_error": "Os ícones devem estar no formato 'prefixo:nome_do_ícone', por exemplo 'mdi:home'.",
+ "name": "Nome",
+ "note": "Nota: Isto pode ainda não funcionar com todas as integrações.",
+ "open_device_settings": "Abrir configurações do dispositivo",
+ "unavailable": "Esta entidade não está atualmente disponível.",
+ "update": "Atualizar"
+ },
+ "faq": "documentação",
+ "info_customize": "Pode redefinir alguns atributos na secção {customize_link}.",
+ "no_unique_id": "A entidade (\"{entity_id}\") não possui uma identificação única, pelo que as configurações não podem ser geridas a partir da interface de utilizador. Para mais informações, consulte a {faq_link}.",
+ "related": "Relacionado",
+ "settings": "Definições"
+ },
+ "generic": {
+ "cancel": "Cancelar",
+ "close": "Fechar",
+ "default_confirmation_title": "Tem a certeza?",
+ "ok": ""
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Valor inicial",
+ "maximum": "Valor máximo",
+ "minimum": "Valor mínimo",
+ "restore": "Restaurar o último valor conhecido quando o Home Assistant inicia",
+ "step": "Tamanho do passo"
+ },
+ "generic": {
+ "icon": "Ícone",
+ "name": "Nome"
+ },
+ "input_datetime": {
+ "date": "Data",
+ "datetime": "Data e hora",
+ "mode": "O que deseja inserir",
+ "time": "Hora"
+ },
+ "input_number": {
+ "box": "Campo de entrada",
+ "max": "Valor máximo",
+ "min": "Valor mínimo",
+ "mode": "Modo de introdução",
+ "slider": "Controlador deslizante",
+ "step": "Incremento",
+ "unit_of_measurement": "Unidade de medida"
+ },
+ "input_select": {
+ "add": "Adicionar",
+ "add_option": "Adicionar opção",
+ "no_options": "Ainda não existem opções.",
+ "options": "Opções"
+ },
+ "input_text": {
+ "max": "Comprimento máximo",
+ "min": "Comprimento mínimo",
+ "mode": "Modo de introdução",
+ "password": "Palavra-passe",
+ "pattern": "Expressão regular para validação do lado do cliente",
+ "text": "Texto"
+ },
+ "platform_not_loaded": "A integração {platform} não foi carregada. Para isso, por favor adicione ''default_config:'' ou ''{platform}:'' ao ficheiro configuration.yaml.",
+ "required_error_msg": "Este campo é obrigatório",
+ "timer": {
+ "duration": "Duração"
+ },
+ "yaml_not_editable": "As configurações desta entidade não podem ser editadas a partir da interface de utilizador. Apenas as entidades adicionadas na interface são configuráveis a partir dela."
+ },
+ "image_cropper": {
+ "crop": "Cortar"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Fechar estore/persiana",
+ "close_tile_cover": "Fechar inclinação do estore",
+ "open_cover": "Abrir estore/persiana",
+ "open_tilt_cover": "Abrir inclinação do estore",
+ "stop_cover": "Parar estore/persiana"
+ },
+ "details": "Detalhes",
+ "dismiss": "Descartar diálogo",
+ "edit": "Editar entidade",
+ "history": "Histórico",
+ "last_changed": "Última modificação",
+ "last_updated": "Última atualização",
+ "logbook": "Diário de Bordo",
+ "person": {
+ "create_zone": "Criar zona a partir da localização atual"
+ },
+ "remote": {
+ "activity": "Atividade atual"
+ },
+ "restored": {
+ "confirm_remove_text": "Tem a certeza que deseja remover esta entidade?",
+ "confirm_remove_title": "Remover a entidade?",
+ "not_provided": "Esta entidade está actualmente indisponível e é órfã de uma integração ou dispositivo removido, alterado ou disfuncional.",
+ "remove_action": "Remover entidade",
+ "remove_intro": "Se a entidade não estiver em uso, pode removê-la."
+ },
+ "script": {
+ "last_action": "Última ocorrência",
+ "last_triggered": "Última Ocorrência"
+ },
+ "settings": "Definições da entidade",
+ "show_more": "Mostrar mais",
+ "sun": {
+ "elevation": "Elevação",
+ "rising": "Nascer do sol",
+ "setting": "Pôr do sol"
+ },
+ "updater": {
+ "title": "Instruções para atualização"
+ },
+ "vacuum": {
+ "clean_spot": "Limpar uma zona",
+ "commands": "Comandos do aspirador:",
+ "fan_speed": "Velocidade do ventilador",
+ "locate": "Localizar",
+ "pause": "Pausa",
+ "return_home": "Regressar à base",
+ "start": "Iniciar",
+ "start_pause": "Iniciar / Pausa",
+ "status": "Estado",
+ "stop": "Parar"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Tentar analisar mensagens MQTT como JSON",
+ "entities": "Entidades",
+ "no_entities": "Sem entidades",
+ "no_triggers": "Sem gatilhos",
+ "payload_display": "Mostrar conteúdo",
+ "recent_messages": "{n} mensagem(s) recebida(s) mais recentemente",
+ "show_as_yaml": "Mostrar como YAML",
+ "title": "Informação de depuração de {device}",
+ "triggers": "Gatilhos"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Opções do sistema"
+ },
+ "loading": {
+ "loading_flow": "Por favor aguarde enquanto as opções para {integration} estão a ser inicializadas",
+ "loading_step": "A carregar o próximo passo de {integration}"
+ },
+ "success": {
+ "description": "Salva com sucesso"
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Áreas",
+ "automation": "Automação",
+ "blueprint": "*Blueprints*",
+ "core": "Geral",
+ "customize": "Personalização",
+ "devices": "Dispositivos",
+ "energy": "Configuração de Energia",
+ "entities": "Entidades",
+ "helpers": "Auxiliares",
+ "info": "Informação",
+ "integrations": "Integrações",
+ "logs": "Logs",
+ "lovelace": "Painéis Lovelace",
+ "person": "Pessoas",
+ "scene": "Cenários",
+ "script": "",
+ "server_control": "Controlo do Servidor",
+ "tag": "Etiquetas",
+ "users": "Utilizadores",
+ "zone": "Zonas"
+ },
+ "reload": {
+ "automation": "Recarregar automatizações",
+ "command_line": "Recarregar entidades de linha de comandos",
+ "core": "Recarregar localização e personalizações",
+ "filesize": "Recarregar entidades de tamanho de ficheiro",
+ "filter": "Recarregar entidades de filtro",
+ "generic": "Recarregar entidades de Câmara IP genéricas",
+ "generic_thermostat": "Recarregar entidades termostáticas genéricas",
+ "group": "Recarregar grupos, grupos de entidades e serviços de notificação",
+ "history_stats": "Recarregar entidades de estatísticas de histórico",
+ "homekit": "Recarregar HomeKit",
+ "input_boolean": "Recarregar entidades input boolean",
+ "input_datetime": "Recarregar entidades input date time",
+ "input_number": "Recarregar entidades input number",
+ "input_select": "Recarregar entidades input select",
+ "input_text": "Recarregar entidades input text",
+ "min_max": "Recarregar entidades Mín. / Máx.",
+ "mqtt": "Recarregar entidades MQTT configuradas manualmente",
+ "person": "Pessoas",
+ "ping": "Recarregar entidades de sensor binário (binary_sensor) de ping",
+ "reload": "Recarregar {domain}",
+ "rest": "Recarregar as entidades REST e serviços de notificação REST",
+ "rpi_gpio": "Recarregar entidades Raspberry Pi GPIO",
+ "scene": "Recarregar cenários",
+ "script": "Recarregar scripts",
+ "smtp": "Recarregar serviços de notificação SMTP",
+ "statistics": "Recarregar entidades de estatísticas",
+ "telegram": "Recarregar serviços de notificação do Telegram",
+ "template": "Recarregar entidades de template",
+ "themes": "Temas",
+ "trend": "Recarregar entidades de tendência",
+ "universal": "Recarregar entidades de Reprodução de Multimédia Universais",
+ "zone": "Zonas"
+ },
+ "server_control": {
+ "perform_action": "{action} servidor",
+ "restart": "Reiniciar",
+ "stop": "Parar"
+ },
+ "types": {
+ "navigation": "Navegar",
+ "reload": "Recarregar",
+ "server_control": "Servidor"
+ }
+ },
+ "filter_placeholder": "Filtro de Entidade",
+ "key_c_hint": "Pressione 'c' em qualquer página para abrir esta barra de pesquisa",
+ "nothing_found": "Sem resultados!",
+ "title": "Pesquisa Rápida"
+ },
+ "voice_command": {
+ "did_not_hear": "O Home Assistant não conseguiu ouvir nada",
+ "error": "Oops, ocorreu um erro",
+ "found": "Encontrei o seguinte para si:",
+ "how_can_i_help": "Como posso ajudar?",
+ "label": "Escreva uma pergunta e pressione 'Enter'",
+ "label_voice": "Digite e pressione 'Enter' ou toque no microfone para falar"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Adicionar dispositivos através deste dispositivo",
+ "clusters": "Gerir Clusters",
+ "device_children": "Ver Descendentes",
+ "reconfigure": "Reconfigurar Dispositivo",
+ "remove": "Remover Dispositivo",
+ "view_in_visualization": "Ver na Visualização",
+ "zigbee_information": "Assinatura do dispositivo Zigbee"
+ },
+ "confirmations": {
+ "remove": "Tem a certeza de que pretende remover este dispositivo?"
+ },
+ "device_children": "Dispositivos Zigbee descendentes",
+ "device_signature": "Assinatura do dispositivo Zigbee",
+ "last_seen": "Visto pela última vez",
+ "manuf": "por {manufacturer}",
+ "no_area": "Nenhuma Área",
+ "power_source": "Fonte de energia",
+ "quirk": "Peculiaridade",
+ "services": {
+ "reconfigure": "Reconfigure o dispositivo ZHA (curar dispositivo). Utilize isto se estiver a ter problemas com o dispositivo. Se o dispositivo em questão for um dispositivo alimentado por uma bateria, ao utilizar este serviço certifique-se de que o equipamento está ativo e a aceitar comandos.",
+ "remove": "Remover um dispositivo da rede Zigbee.",
+ "updateDeviceName": "Definir um nome personalizado para este dispositivo no registo do dispositivo.",
+ "zigbee_information": "Ver informações Zigbee do dispositivo."
+ },
+ "unknown": "Desconhecido",
+ "zha_device_card": {
+ "device_name_placeholder": "Alterar o nome do dispositivo"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Atributo",
+ "battery_device_warning": "Terá de acordar dispositivos alimentados a bateria antes de iniciar o processo de reconfiguração. Consulte o manual do seu dispositivo para obter instruções sobre como acordar o dispositivo.",
+ "bind_header": "Associação",
+ "button_hide": "Ocultar Detalhes",
+ "button_show": "Mostrar Detalhes",
+ "cluster_header": "Grupo",
+ "configuration_complete": "Reconfiguração do dispositivo concluída.",
+ "configuration_failed": "A reconfiguração do dispositivo falhou. Informações adicionais poderão estar disponíveis nos logs.",
+ "configuring_alt": "A configurar",
+ "heading": "Reconfigurar dispositivo",
+ "in_progress": "O dispositivo está a ser reconfigurado. Poderá demorar algum tempo.",
+ "introduction": "Reconfigurar um dispositivo na sua rede Zigbee. Utilize esta funcionalidade se o seu dispositivo não estiver a funcionar corretamente.",
+ "min_max_change": "min/max/incremento",
+ "reporting_header": "Relatórios",
+ "run_in_background": "Pode fechar esta janela e a reconfiguração continuará em segundo plano.",
+ "start_reconfiguration": "Iniciar Reconfiguração"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\n one {dia}\n other {dias}\n}",
+ "hour": "{count} {count, plural,\n one {hora}\n other {horas}\n}",
+ "minute": "{count} {count, plural,\n one {minuto}\n other {minutos}\n}",
+ "second": "{count} {count, plural,\n one {segundo}\n other {segundos}\n}",
+ "week": "{count} {count, plural,\n one {semana}\n other {semanas}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Pode sempre editar sua configuração em YAML.",
+ "editor_not_available": "Nenhum editor visual disponível para o tipo \"{type}\".",
+ "editor_not_supported": "O editor visual não é suportado para esta configuração",
+ "error_detected": "Detetados erros de configuração",
+ "key_missing": "A chave obrigatória \"{key}\" está em falta.",
+ "key_not_expected": "A chave ''{key}'' é inesperada ou não é suportada pelo editor visual.",
+ "key_wrong_type": "O valor fornecido para \"{key}\" não é suportado pelo editor visual. ({type_correct}) é suportado, mas recebemos ({type_wrong}).",
+ "no_state_array_support": "Valores de estado múltiplos não são suportados no editor visual",
+ "no_template_editor_support": "Templates não suportados no editor visual",
+ "no_type_provided": "Nenhum tipo fornecido."
+ },
+ "supervisor": {
+ "ask": "Pedido de ajuda",
+ "reboot": "Tentar um reinício do sistema",
+ "system_health": "Verificar Integridade do Sistema",
+ "title": "Não foi possível carregar o painel do Supervisor!",
+ "wait": "Se acabou de começar, certifique-se de ter dado tempo suficiente ao Supervisor para arrancar."
+ }
+ },
+ "login-form": {
+ "log_in": "Entrar",
+ "password": "Palavra-passe",
+ "remember": "Lembrar"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Clique no botão para configurar {entity}",
+ "close": "Fechar",
+ "dismiss_all": "Dispensar todos",
+ "empty": "Sem Notificações",
+ "title": "Notificações"
+ },
+ "notification_toast": {
+ "connection_lost": "Ligação perdida. A ligar de novo…",
+ "dismiss": "Descartar",
+ "integration_starting": "A carregar {integration}, nem tudo estará disponível até que esteja terminado.",
+ "service_call_failed": "Falha ao chamar o serviço {service}.",
+ "started": "O Home Assistant foi iniciado!",
+ "starting": "O Home Assistant está a inicializar, nem tudo estará disponível até o processo concluir.",
+ "triggered": "{name} foi despoletado",
+ "wrapping_up_startup": "A terminar o arranque, nem tudo estará disponível até que esteja terminado."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Falta de opções de configuração? Ativar o modo avançado em",
+ "link_profile_page": "sua página de perfil"
+ },
+ "areas": {
+ "add_picture": "Acrescentar uma fotografia",
+ "assigned_to_area": "Associadas a esta área",
+ "caption": "Áreas",
+ "data_table": {
+ "area": "Área",
+ "devices": "Dispositivos",
+ "entities": "Entidades"
+ },
+ "delete": {
+ "confirmation_text": "Todos os dispositivos nesta área ficarão sem área atribuída.",
+ "confirmation_title": "Tem a certeza de que pretende eliminar esta área?"
+ },
+ "description": "Agrupar dispositivos e entidades em áreas",
+ "edit_settings": "Configurações da área",
+ "editor": {
+ "area_id": "ID da Área",
+ "create": "Criar",
+ "default_name": "Nova área",
+ "delete": "Apagar",
+ "linked_entities_caption": "Entidades",
+ "name": "Nome",
+ "name_required": "Nome é obrigatório",
+ "no_linked_entities": "Não existem entidades associadas a esta área.",
+ "unknown_error": "Erro desconhecido",
+ "update": "Atualizar"
+ },
+ "picker": {
+ "create_area": "Criar área",
+ "header": "Áreas",
+ "integrations_page": "Página de Integrações",
+ "introduction": "As áreas são utilizadas para organizar os dispositivos. Essas informações serão utilizadas no Home Assistant para o ajudar a organizar o seu interface, permissões e integrações com outros sistemas.",
+ "introduction2": "Para colocar dispositivos numa área, use o link abaixo para navegar até a página de integrações e em seguida, clique numa integração configurada para aceder aos cartões de dispositivos.",
+ "no_areas": "Parece que ainda não tem áreas!"
+ },
+ "targeting_area": "Que interagem com esta área"
+ },
+ "automation": {
+ "caption": "Automação",
+ "description": "Criar regras comportamentais para a sua casa",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Utilize o *blueprint*"
+ },
+ "header": "Criar uma automatização",
+ "how": "Como quer criar uma automatização?",
+ "start_empty": "Começar com uma automatização vazia",
+ "start_empty_description": "Criar uma automatização a partir do zero",
+ "thingtalk": {
+ "create": "Criar",
+ "header": "Descreva a automatização que pretende criar",
+ "input_label": "O que deve fazer esta automatização?",
+ "intro": "E nós vamos tentar criar para ti. Por exemplo: Desligar as luzes quando sair."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Adicionar ação",
+ "delete": "Apagar",
+ "delete_confirm": "Tem a certeza de que pretende apagar?",
+ "duplicate": "Duplicar",
+ "header": "Ações",
+ "introduction": "As ações são o que o Home Assistant executará quando a automatização for despoletada.",
+ "learn_more": "Saber mais sobre ações",
+ "name": "Ação",
+ "type": {
+ "choose": {
+ "add_option": "Adicionar opção",
+ "conditions": "Condições",
+ "default": "Ações por defeito",
+ "label": "Escolha",
+ "option": "Opção {number}",
+ "remove_option": "Remover opção",
+ "sequence": "Ações"
+ },
+ "condition": {
+ "label": "Condição"
+ },
+ "delay": {
+ "delay": "Atraso",
+ "label": "Atraso"
+ },
+ "device_id": {
+ "action": "Ação",
+ "extra_fields": {
+ "brightness_pct": "Brilho",
+ "code": "Código",
+ "flash": "Flash",
+ "humidity": "Humidade",
+ "message": "Mensagem",
+ "mode": "Modo",
+ "position": "Posição",
+ "title": "Título",
+ "value": "Valor"
+ },
+ "label": "Dispositivo"
+ },
+ "event": {
+ "event": "Evento",
+ "label": "Disparar evento",
+ "service_data": "Dados do serviço"
+ },
+ "repeat": {
+ "label": "Repetir",
+ "sequence": "Ações",
+ "type": {
+ "count": {
+ "label": "Contagem"
+ },
+ "until": {
+ "conditions": "Até se verificar",
+ "label": "Até"
+ },
+ "while": {
+ "conditions": "Enquanto se verificar",
+ "label": "Enquanto"
+ }
+ },
+ "type_select": "Tipo de repetição"
+ },
+ "scene": {
+ "label": "Ativar cena"
+ },
+ "service": {
+ "label": "Chamar serviço"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Continuar após tempo limite",
+ "label": "Aguardar por um gatilho",
+ "timeout": "Tempo limite (opcional)"
+ },
+ "wait_template": {
+ "continue_timeout": "Continuar após tempo limite",
+ "label": "Template para tempo de espera",
+ "timeout": "Tempo limite (opcional)",
+ "wait_template": "Template de espera"
+ }
+ },
+ "type_select": "Tipo de ação",
+ "unsupported_action": "Nenhum editor visual disponível para a ação \"{action}\"."
+ },
+ "alias": "Nome",
+ "blueprint": {
+ "blueprint_to_use": "*Blueprint* a utilizar",
+ "header": "*Blueprint*",
+ "no_blueprints": "Não tem nenhum *blueprint*",
+ "no_inputs": "Este *blueprint* não tem nenhuma entrada"
+ },
+ "conditions": {
+ "add": "Acrescentar condição",
+ "delete": "Apagar",
+ "delete_confirm": "Tem a certeza de que pretende apagar?",
+ "duplicate": "Duplicar",
+ "header": "Condições",
+ "introduction": "As condições são opcionais e impedem a execução da automatização a menos que todas sejam satisfeitas.",
+ "learn_more": "Saber mais sobre condições",
+ "name": "Condição",
+ "type": {
+ "and": {
+ "label": "E"
+ },
+ "device": {
+ "condition": "Condição",
+ "extra_fields": {
+ "above": "Acima de",
+ "below": "Abaixo de",
+ "for": "Duração",
+ "hvac_mode": "Modo HVAC",
+ "preset_mode": "Modo Pré-definido"
+ },
+ "label": "Dispositivo"
+ },
+ "not": {
+ "label": "Não"
+ },
+ "numeric_state": {
+ "above": "Acima",
+ "below": "Abaixo",
+ "label": "Estado numérico",
+ "value_template": "Valor para o template (opcional)"
+ },
+ "or": {
+ "label": "Ou"
+ },
+ "state": {
+ "label": "Estado",
+ "state": "Estado"
+ },
+ "sun": {
+ "after": "Depois do:",
+ "after_offset": "Desfasamento posterior (opcional)",
+ "before": "Antes do:",
+ "before_offset": "Desfasamento anterior (opcional)",
+ "label": "Sol",
+ "sunrise": "Nascer do sol",
+ "sunset": "Pôr do sol"
+ },
+ "template": {
+ "label": "Template",
+ "value_template": "Template para o valor"
+ },
+ "time": {
+ "after": "Depois das",
+ "before": "Antes das",
+ "label": "Tempo",
+ "type_input": "Valor de um auxiliar de data/hora",
+ "type_value": "Hora marcada",
+ "weekdays": {
+ "fri": "Sexta-feira",
+ "mon": "Segunda-feira",
+ "sat": "Sábado",
+ "sun": "Domingo",
+ "thu": "Quinta-feira",
+ "tue": "Terça-feira",
+ "wed": "Quarta-feira"
+ }
+ },
+ "trigger": {
+ "id": "ID do gatilho",
+ "label": "Gatilho",
+ "no_triggers": "Não há gatilhos disponíveis"
+ },
+ "zone": {
+ "entity": "Entidade com localização",
+ "label": "Zona",
+ "zone": "Zona"
+ }
+ },
+ "type_select": "Tipo de condição",
+ "unsupported_condition": "Nenhum editor visual disponível para a condição \"{condition}\"."
+ },
+ "copy_to_clipboard": "Copiar para a Área de Transferência",
+ "default_name": "Nova Automatização",
+ "description": {
+ "label": "Descrição",
+ "placeholder": "Descrição opcional"
+ },
+ "edit_ui": "Mostrar Editor Visual",
+ "edit_yaml": "Editar como YAML",
+ "enable_disable": "Ativar/desativar automatização",
+ "introduction": "Use as automatizações para dar vida à sua casa.",
+ "load_error_not_editable": "Apenas as automatizações definidas no ficheiro automations.yaml são editáveis.",
+ "load_error_unknown": "Erro ao carregar a automatização ({err_no}).",
+ "max": {
+ "parallel": "Máximo de execuções em paralelo",
+ "queued": "Máximo de execuções em espera"
+ },
+ "modes": {
+ "description": "O modo controla o que acontece quando a automatização é despoletada enquanto as acções ainda estão em execução devido a uma chamada anterior. Consulte {documentation_link} para mais informações.",
+ "documentation": "documentação sobre automatizações",
+ "label": "Modo",
+ "parallel": "Paralelo",
+ "queued": "Aguardar",
+ "restart": "Reiniciar",
+ "single": "Único (pré-definido)"
+ },
+ "move_down": "Mover para baixo",
+ "move_up": "Mover para cima",
+ "save": "Guardar",
+ "show_trace": "Mostrar registo",
+ "triggers": {
+ "add": "Adicionar gatilho",
+ "delete": "Apagar",
+ "delete_confirm": "Tem a certeza de que pretende apagar?",
+ "duplicate": "Duplicar",
+ "edit_id": "Editar ID de gatilho",
+ "header": "Gatilhos",
+ "id": "ID do gatilho",
+ "introduction": "Os gatilhos são o que inicia o processamento de uma regra de automatização. É possível especificar vários gatilhos para a mesma regra. Uma vez iniciado um gatilho, o Home Assistant validará as condições, se existirem, e chamará a acção.",
+ "learn_more": "Saiba mais sobre gatilhos",
+ "name": "Gatilho",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Acima",
+ "below": "Abaixo",
+ "for": "Duração (Opcional)",
+ "zone": "Zona"
+ },
+ "label": "Dispositivo",
+ "trigger": "Gatilho"
+ },
+ "event": {
+ "context_user_pick": "Selecionar utilizador",
+ "context_user_picked": "Utilizador",
+ "context_users": "Limitar a eventos desencadeados por",
+ "event_data": "Dados do evento",
+ "event_type": "Tipo de evento",
+ "label": "Evento"
+ },
+ "geo_location": {
+ "enter": "Entrar",
+ "event": "Evento:",
+ "label": "Geolocalização",
+ "leave": "Sair",
+ "source": "Fonte",
+ "zone": "Zona"
+ },
+ "homeassistant": {
+ "event": "Evento:",
+ "label": "Home Assistant",
+ "shutdown": "Desligar",
+ "start": "Iniciar"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Conteúdo (opcional)",
+ "topic": "Tópico"
+ },
+ "numeric_state": {
+ "above": "Acima",
+ "below": "Abaixo",
+ "label": "Estado numérico",
+ "value_template": "Valor para o template (opcional)"
+ },
+ "state": {
+ "attribute": "Atributo (Opcional)",
+ "for": "Durante (opcional)",
+ "from": "De (opcional)",
+ "label": "Estado",
+ "to": "Para (opcional)"
+ },
+ "sun": {
+ "event": "Evento:",
+ "label": "Sol",
+ "offset": "Desfasamento (opcional)",
+ "sunrise": "Nascer do sol",
+ "sunset": "Pôr do sol"
+ },
+ "tag": {
+ "label": "Etiqueta"
+ },
+ "template": {
+ "label": "Template",
+ "value_template": "Template para o valor"
+ },
+ "time": {
+ "at": "Às",
+ "label": "Tempo",
+ "type_input": "Valor de um auxiliar de data/hora",
+ "type_value": "Hora marcada"
+ },
+ "time_pattern": {
+ "hours": "Horas",
+ "label": "Padrão de Tempo",
+ "minutes": "Minutos",
+ "seconds": "Segundos"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook ID"
+ },
+ "zone": {
+ "enter": "Entrar",
+ "entity": "Entidade com localização",
+ "event": "Evento:",
+ "label": "Zona",
+ "leave": "Sair",
+ "zone": "Zona"
+ }
+ },
+ "type_select": "Tipo de gatilho",
+ "unsupported_platform": "Nenhum editor visual disponível para a plataforma \"{platform}\"."
+ },
+ "unsaved_confirm": "Existem alterações não guardadas. Tem a certeza de que quer sair?"
+ },
+ "picker": {
+ "add_automation": "Adicionar automatização",
+ "delete_automation": "Eliminar automatização",
+ "delete_confirm": "Tem a certeza de que pretende eliminar esta automatização?",
+ "dev_automation": "Depurar automatização",
+ "dev_only_editable": "Apenas as automatizações que têm uma identificação única atribuída são depuráveis.",
+ "duplicate": "Duplicado",
+ "duplicate_automation": "Duplicar automatização",
+ "edit_automation": "Editar automatização",
+ "header": "Editor de automatizações",
+ "headers": {
+ "name": "Nome"
+ },
+ "introduction": "O editor de automatizações permite criar e editar automatizações. Consulte o link abaixo para se certificar de que configurou o Home Assistant corretamente.",
+ "learn_more": "Saiba mais sobre as automatizações",
+ "no_automations": "Não conseguimos encontrar nenhuma automatização",
+ "only_editable": "Apenas as automatizações definidas no ficheiro automations.yaml são editáveis.",
+ "pick_automation": "Escolha a automatização a editar",
+ "show_info_automation": "Informações sobre esta automatização"
+ },
+ "thingtalk": {
+ "create": "Criar automatização",
+ "link_devices": {
+ "ambiguous_entities": "Um ou mais dispositivos têm mais do que uma entidade correspondente, por favor escolha aquela que pretende utilizar.",
+ "header": "Excelente! Agora precisamos de associar alguns dispositivos",
+ "unknown_placeholder": "placeholder desconhecido"
+ },
+ "task_selection": {
+ "error_empty": "Insira um comando ou ignore este passo.",
+ "error_unsupported": "Não conseguimos (ainda?) criar uma automatização para tal.",
+ "for_example": "Por exemplo:",
+ "header": "Criar uma nova automatização",
+ "introduction": "Digite abaixo o que esta automatização deve fazer, e nós vamos tentar convertê-la numa automatização Home Assistant.",
+ "language_note": "Nota: Por enquanto, apenas o inglês é suportado."
+ }
+ },
+ "trace": {
+ "download_trace": "Descarregar registo",
+ "edit_automation": "Editar automatização",
+ "newer_trace": "Registo mais recente",
+ "older_trace": "Registo mais antigo",
+ "refresh": "Atualizar"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "fóruns da comunidade",
+ "error_no_url": "Por favor introduza o URL do *blueprint*",
+ "file_name": "Caminho do *blueprint*",
+ "header": "Importar um *Blueprint*",
+ "import_btn": "Pré-visualizar *blueprint*",
+ "import_header": "*Blueprint* \"{name}\"",
+ "import_introduction_link": "Pode importar *blueprints* de outros utilizadores do Github e de {community_link}. Insira o URL do *blueprint* abaixo.",
+ "importing": "A carregar *blueprint*...",
+ "raw_blueprint": "Conteúdo do *blueprint*",
+ "save_btn": "Importar *blueprint*",
+ "saving": "A importar *blueprint*...",
+ "unsupported_blueprint": "Este *blueprint* não é suportado",
+ "url": "URL do *blueprint*"
+ },
+ "caption": "*Blueprints*",
+ "description": "Gerir *blueprints*",
+ "overview": {
+ "add_blueprint": "Importar *blueprint*",
+ "confirm_delete_header": "Eliminar *blueprint*",
+ "confirm_delete_text": "Tem a certeza que pretende eliminar este *blueprint*?",
+ "create_automation": "Criar automatização",
+ "create_script": "Criar script",
+ "delete_blueprint": "Apagar *blueprint*",
+ "discover_more": "Descubra mais *Blueprints*",
+ "header": "Editor de *blueprints*",
+ "headers": {
+ "domain": "Domínio",
+ "file_name": "Nome do ficheiro",
+ "name": "Nome",
+ "type": "Tipo"
+ },
+ "introduction": "A configuração de *blueprints* permite importar e gerir os seus *blueprints*",
+ "learn_more": "Aprenda mais sobre os *blueprints*",
+ "share_blueprint": "Partilhar *blueprint*",
+ "share_blueprint_no_url": "Não é possível partilhar o *blueprint*: falta o URL de origem",
+ "types": {
+ "automation": "Automatização",
+ "script": ""
+ },
+ "use_blueprint": "Criar automatização"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Documentação sobre a configuração",
+ "disable": "Desativar",
+ "enable": "Ativar",
+ "enable_ha_skill": "Ativar a skill Home Assistant para a Alexa.",
+ "enable_state_reporting": "Ativar relatório de estado",
+ "info": "Com a integração Alexa para o Home Assistant Cloud, você poderá controlar todos os seus dispositivos Home Assistant através de qualquer dispositivo Alexa.",
+ "info_state_reporting": "Se ativar o relatório de estado, o Home Assistant enviará todas as alterações de estado das entidades expostas à Amazon. Tal permite que veja sempre os estados mais recentes na aplicação Alexa e use as alterações de estado para criar rotinas.",
+ "manage_entities": "Gerir Entidades",
+ "state_reporting_error": "Indisponível para {enable_disable} reportar estado.",
+ "sync_entities": "Sincronizar Entidades com a Amazon",
+ "sync_entities_error": "Falha na sincronização das entidades:",
+ "title": "Alexa"
+ },
+ "connected": "Ligado",
+ "connecting": "A ligar…",
+ "connection_status": "Estado da ligação na cloud",
+ "fetching_subscription": "A buscar assinatura…",
+ "google": {
+ "config_documentation": "Documentação sobre a configuração",
+ "devices_pin": "PIN para os Dispositivos de Segurança",
+ "enable_ha_skill": "Ativar a funcionalidade Home Assistant para o Google Assistant",
+ "enable_state_reporting": "Habilitar O Relatório De Estado",
+ "enter_pin_error": "Não é possível guardar o PIN:",
+ "enter_pin_hint": "Insira um PIN para usar dispositivos de segurança",
+ "enter_pin_info": "Por favor, insira um PIN para interagir com os dispositivos de segurança. Os dispositivos de segurança são portas, portões de garagem e fechaduras. Ser-lhe-á pedido para dizer/inserir este pin quando interagir com tais dispositivos através do Google Assistant.",
+ "info": "Com a integração do Google Assistant para o Home Assistant Cloud, poderá controlar todos os seus dispositivos do Home Assistant por qualquer dispositivo com Google Assistant ativado.",
+ "info_state_reporting": "Se ativar o relatório de estado, o Home Assistant enviará todas as alterações de estado das entidades expostas à Google. Isso permite que consulte sempre os estados mais recentes na aplicação Google Home.",
+ "manage_entities": "Gerir Entidades",
+ "not_configured_text": "Antes de poder utilizar o Google Assistant, é necessário ativar a funcionalidade de Home Assistant Cloud para Assistente Google na aplicação Google Home.",
+ "not_configured_title": "O Google Assistente não está ativado",
+ "security_devices": "Dispositivos de segurança",
+ "sync_entities": "Sincronizar entidades com o Google",
+ "sync_entities_404_message": "Falha ao sincronizar suas entidades com o Google, peça ao Google 'Ok Google, sincronize os meus dispositivos' para sincronizar suas entidades.",
+ "title": "Google Assistant"
+ },
+ "integrations": "Integrações",
+ "integrations_introduction": "As integrações para o Home Assistant Cloud permitem-lhe ligar-se aos serviços na nuvem sem ter de expor publicamente o seu Home Assistant na Internet.",
+ "integrations_introduction2": "Consulte o site para",
+ "integrations_link_all_features": " todas as funcionalidades disponíveis",
+ "manage_account": "Gerir conta",
+ "nabu_casa_account": "Conta Nabu Casa",
+ "not_connected": "Não Ligado",
+ "remote": {
+ "access_is_being_prepared": "O acesso remoto está a ser preparado. Iremos notificá-lo quando estiver pronto.",
+ "certificate_info": "Informações do certificado",
+ "connected": "Ligado",
+ "info": "O Home Assistant Cloud oferece uma ligação remota segura à sua instância enquanto estiver fora de casa.",
+ "instance_is_available": "A sua instância está disponível em",
+ "instance_will_be_available": "Sua instância estará disponível em",
+ "link_learn_how_it_works": "Aprenda como funciona",
+ "not_connected": "Não Ligado",
+ "reconnecting": "Sem ligação. A tentar restabelecer a ligação.",
+ "remote_enabled": {
+ "caption": "Ligar automaticamente",
+ "description": "Ative esta opção para garantir que a sua instância do Home Assistant está sempre acessível remotamente."
+ },
+ "title": "Controle Remoto"
+ },
+ "sign_out": "Terminar sessão",
+ "thank_you_note": "Obrigado por fazer parte da Home Assistant Cloud. É por causa de pessoas como você que somos capazes de proporcionar uma boa experiência de domótica para todos. Obrigado!",
+ "tts": {
+ "default_language": "Idioma a utilizar por defeito",
+ "dialog": {
+ "create_automation": "Criar Automatização",
+ "example_message": "Olá {name}, pode reproduzir qualquer texto em qualquer reprodutor de multimédia suportado!",
+ "header": "Experimentar Texto para Fala",
+ "play": "Reproduzir",
+ "target": "Alvo",
+ "target_browser": "Navegador"
+ },
+ "female": "Feminino",
+ "info": "Traga personalidade à sua casa, fazendo com que ela lhe fale, utilizando os nossos serviços Text-to-Speech. Pode utilizá-lo em automatizações e scripts, utilizando o serviço {service}.",
+ "male": "Masculino",
+ "title": "Texto para Fala",
+ "try": "Experimentar"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Falha ao desativar o webhook:",
+ "info": "Qualquer coisa que esteja configurada para ser acionada por um webhook pode receber um URL público para permitir que se enviem dados de volta para o Home Assistant de qualquer lugar, sem expor a instância à Internet.",
+ "link_learn_more": "Saiba mais sobre como criar automatizações baseadas em webhook.",
+ "loading": "A carregar...",
+ "manage": "Gerir",
+ "no_hooks_yet": "Parece que ainda não tem webhooks. Comece, por configurar um",
+ "no_hooks_yet2": " ou criando um ",
+ "no_hooks_yet_link_automation": "automatização de webhook",
+ "no_hooks_yet_link_integration": "integração baseada em webhook",
+ "title": "Webhooks"
+ }
+ },
+ "alexa": {
+ "banner": "Editar as entidades que são expostas através desta UI está desabilitada porque você configurou entity filters em configuration.yaml.",
+ "dont_expose_entity": "Não expor entidade",
+ "expose": "Expor para Alexa",
+ "expose_entity": "Expor entidade",
+ "exposed": "{selected} exposto",
+ "exposed_entities": "Entidades expostas",
+ "follow_domain": "Seguir domínio",
+ "manage_domains": "Gerir domínios",
+ "not_exposed": "{selected} não exposto",
+ "not_exposed_entities": "Entidades não expostas",
+ "title": "Alexa"
+ },
+ "description_features": "Controle a casa quando estiver fora e integre-se com Alexa e Google Assistant",
+ "description_login": "Ligado como {email}",
+ "description_not_login": "Não está ligado",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Data de validade do certificado",
+ "certificate_information": "Informações do certificado",
+ "close": "Fechar",
+ "fingerprint": "Certificado digital:",
+ "will_be_auto_renewed": "será renovado automaticamente"
+ },
+ "dialog_cloudhook": {
+ "available_at": "O webhook está disponível na seguinte URL:",
+ "close": "Fechar",
+ "confirm_disable": "Tem certeza de que deseja desativar este webhook?",
+ "copied_to_clipboard": "Copiado para a área de transferência",
+ "info_disable_webhook": "Se não quiser utilizar mais este webhook, poderá",
+ "link_disable_webhook": "desativá-lo",
+ "managed_by_integration": "Este webhook é gerido por uma integração e não pode ser desabilitado.",
+ "view_documentation": "Ver documentação",
+ "webhook_for": "Webhook para {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "Verifique o seu e-mail para obter instruções sobre como redefinir a sua palavra-passe.",
+ "email": "Email",
+ "email_error_msg": "E-mail inválido",
+ "instructions": "Introduza o seu endereço de e-mail e enviar-lhe-emos um link para redefinir a sua palavra-passe.",
+ "send_reset_email": "Enviar e-mail de redefinição",
+ "subtitle": "Esqueceu-se da palavra-passe?",
+ "title": "Esqueci-me da palavra-passe"
+ },
+ "google": {
+ "banner": "A edição de quais entidades são expostas através desta UI está desactivada porque configurou *entity filters* no configuration.yaml.",
+ "disable_2FA": "Desativar a autenticação de dois fatores",
+ "dont_expose_entity": "Não expor entidade",
+ "expose": "Expor ao Google Assistant",
+ "expose_entity": "Expor entidade",
+ "exposed": "{selected} exposto",
+ "exposed_entities": "Entidades expostas",
+ "follow_domain": "Seguir domínio",
+ "manage_domains": "Gerir domínios",
+ "not_exposed": "{selected} não exposto",
+ "not_exposed_entities": "Entidades não expostas",
+ "sync_to_google": "A sincronizar alterações para o Google.",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "É necessário confirmar o seu e-mail antes de fazer login.",
+ "alert_password_change_required": "É necessário alterar a sua password antes de fazer login.",
+ "dismiss": "Fechar",
+ "email": "Email",
+ "email_error_msg": "E-mail inválido",
+ "forgot_password": "Esqueceu-se da palavra-passe?",
+ "introduction": "O Home Assistant Cloud fornece uma ligação remota segura à sua instância enquanto estiver fora de casa. Também permite a interligação com serviços que apenas utilizam a nuvem como: Amazon Alexa e Google Assistant.",
+ "introduction2": "Este serviço é gerido pelo nosso parceiro ",
+ "introduction2a": ", uma empresa criada pelos fundadores do Home Assistant.",
+ "introduction3": "O Home Assistant Cloud é um serviço de assinatura com uma avaliação gratuita de um mês. Nenhuma informação de pagamento é necessária.",
+ "learn_more_link": "Saiba mais sobre o Home Assistant Cloud",
+ "password": "Palavra-passe",
+ "password_error_msg": "As palavras-passe têm pelo menos 8 caracteres",
+ "sign_in": "Entrar",
+ "start_trial": "Inicie a sua avaliação gratuita de 1 mês",
+ "title": "Cloud Login",
+ "trial_info": "Não são necessárias informações de pagamento"
+ },
+ "register": {
+ "account_created": "Conta criada! Verifique o seu e-mail para instruções sobre como ativar a sua conta.",
+ "create_account": "Criar conta",
+ "email_address": "Endereço de e-mail",
+ "email_error_msg": "E-mail inválido",
+ "feature_amazon_alexa": "Integração com o Amazon Alexa",
+ "feature_google_home": "Integração com o Google Assistant",
+ "feature_remote_control": "Controlo do Home Assistant fora de casa",
+ "feature_webhook_apps": "Fácil integração com aplicações baseadas no webhook, como o OwnTracks",
+ "headline": "Inicie a sua avaliação gratuita",
+ "information": "Crie uma conta para iniciar a sua avaliação gratuita de um mês com o Home Assistant Cloud. Não são necessárias informações de pagamento.",
+ "information2": "A avaliação gratuita dará acesso a todos os benefícios do Home Assistant Cloud, incluindo:",
+ "information3": "Este serviço é executado pelo nosso parceiro",
+ "information3a": ", uma empresa criada pelos fundadores do Home Assistant.",
+ "information4": "Ao registar uma conta, concorda com os seguintes termos e condições.",
+ "link_privacy_policy": "Política de privacidade",
+ "link_terms_conditions": "Termos e condições",
+ "password": "Palavra-passe",
+ "password_error_msg": "As palavras-passe têm pelo menos 8 caracteres",
+ "resend_confirm_email": "Reenviar e-mail de confirmação",
+ "start_trial": "Iniciar avaliação",
+ "title": "Registar Conta"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Existem alterações não guardadas. Tem a certeza de que quer sair?"
+ },
+ "learn_more": "Saiba mais"
+ },
+ "core": {
+ "caption": "Geral",
+ "description": "Sistema de unidades, localização, fuso horário e outros parâmetros gerais",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Moeda",
+ "edit_requires_storage": "Editor desativado por causa da configuração existente em configuration.yaml.",
+ "elevation": "Elevação",
+ "elevation_meters": "metros",
+ "external_url": "URL Externo",
+ "find_currency_value": "Encontre o seu valor",
+ "imperial_example": "Fahrenheit, libras",
+ "internal_url": "URL Interno",
+ "latitude": "Latitude",
+ "location_name": "Nome da instalação do seu Home Assistant",
+ "longitude": "Longitude",
+ "metric_example": "Celsius, quilogramas",
+ "save_button": "Guardar",
+ "time_zone": "Fuso horário",
+ "unit_system": "Unidades do Sistema",
+ "unit_system_imperial": "Imperial",
+ "unit_system_metric": "Métrico"
+ },
+ "header": "Configuração e controlo do servidor",
+ "introduction": "Defina a sua localização, parâmetros de rede e envio de dados de análise."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Os seguintes atributos já estão definidos em customize.yaml",
+ "attributes_not_set": "Os seguintes atributos não foram definidos. Defina-os, se quiser.",
+ "attributes_outside": "Os seguintes atributos estão personalizados fora de customize.yaml",
+ "attributes_override": "Pode substituí-los, se quiser.",
+ "attributes_set": "Os seguintes atributos de uma entidade são definidos por meio de programação.",
+ "caption": "Personalização",
+ "description": "Personalizar as suas entidades",
+ "different_include": "Possivelmente através de um domínio, um glob ou um include diferente.",
+ "pick_attribute": "Escolha um atributo para substituir.",
+ "picker": {
+ "documentation": "Documentação de configuração",
+ "header": "Personalizações",
+ "introduction": "Ajustar atributos por entidade. Personalizações acrescentadas/editadas terão efeitos imediatos. Remoção de personalizações terão efeito quando a entidade for atualizada."
+ },
+ "warning": {
+ "include_link": "incluir customize.yaml",
+ "include_sentence": "Parece que o seu configuration.yaml não está adequadamente",
+ "not_applied": "As alterações feitas aqui são gravadas nele, mas não serão aplicadas após o carregamento da configuração, a não ser que a inclusão esteja no lugar."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Gira automatizações, cenários, scripts e auxiliares",
+ "title": "Automatizações & Cenários"
+ },
+ "blueprints": {
+ "description": "Automatizações e scripts pré-criados pela comunidade",
+ "title": ""
+ },
+ "companion": {
+ "description": "Localização e notificações",
+ "title": ""
+ },
+ "dashboards": {
+ "description": "Crie conjuntos personalizados de cartões para controlar a sua casa",
+ "title": ""
+ },
+ "devices": {
+ "description": "Integrações, dispositivos, entidades e áreas",
+ "title": "Dispositivos & Serviços"
+ },
+ "energy": {
+ "description": "Monitorize a sua produção e consumo de energia",
+ "title": "Energia"
+ },
+ "people": {
+ "description": "Gira as pessoas e zonas que o Home Assistant poderá acompanhar",
+ "title": "Pessoas & Zonas"
+ },
+ "settings": {
+ "description": "Configurações básicas, controlos do servidor, logs e informações",
+ "title": "Definições"
+ },
+ "supervisor": {
+ "description": "Crie cópias de segurança, verifique os logs ou reinicie o sistema",
+ "title": "Add-ons, Cópias de Segurança & Supervisor"
+ },
+ "tags": {
+ "description": "Despolete automatizações quando uma etiqueta NFC, código QR, etc. é lida",
+ "title": "Etiquetas"
+ }
+ },
+ "devices": {
+ "add_prompt": "Nenhum {name} foi adicionado a usar este dispositivo ainda. Podes adicionar um clicando no botão + acima.",
+ "automation": {
+ "actions": {
+ "caption": "Quando alguma coisa é despoletada…",
+ "no_actions": "Nenhuma ação",
+ "unknown_action": "Ação desconhecida"
+ },
+ "automations": "Automatizações",
+ "conditions": {
+ "caption": "Só fazer alguma coisa se…",
+ "no_conditions": "Sem condições",
+ "unknown_condition": "Condição desconhecida"
+ },
+ "create": "Criar automatização utilizando este dispositivo",
+ "create_disable": "Não é possível criar automatizações com dispositivos desativados",
+ "no_automations": "Sem automatizações",
+ "no_device_automations": "Não existem automatizações disponíveis para este dispositivo.",
+ "triggers": {
+ "caption": "Fazer alguma coisa quando...",
+ "no_triggers": "Sem gatilhos",
+ "unknown_trigger": "Gatilho desconhecido"
+ },
+ "unknown_automation": "Automatização desconhecida"
+ },
+ "cant_edit": "Apenas é possível editar itens criados na interface de utilizador.",
+ "caption": "Dispositivos",
+ "confirm_delete": "Tem a certeza que pretende eliminar este dispositivo?",
+ "confirm_disable_config_entry": "Não há mais dispositivos para a entrada de configuração {entry_name}, deseja antes desativar a entrada de configuração?",
+ "confirm_rename_entity_ids": "Deseja também renomear os id's de entidade de suas entidades?",
+ "confirm_rename_entity_ids_warning": "Tal não altera nenhuma configuração (como automatizações, scripts, cenários, Lovelace) que estejam a utilizar estas entidades, terá de atualizá-las por si.",
+ "data_table": {
+ "area": "Área",
+ "battery": "Bateria",
+ "device": "Dispositivo",
+ "integration": "Integração",
+ "manufacturer": "Fabricante",
+ "model": "Modelo",
+ "no_devices": "Sem dispositivos",
+ "no_integration": "Sem integração"
+ },
+ "delete": "Eliminar",
+ "description": "Gerir dispositivos configurados",
+ "device_info": "Informação do dispositivo",
+ "device_not_found": "Dispositivo não encontrado.",
+ "disabled": "Desativado",
+ "disabled_by": {
+ "config_entry": "Entrada de configuração",
+ "integration": "Integração",
+ "user": "Utilizador"
+ },
+ "download_diagnostics": "Descarregar dados de diagnóstico",
+ "edit_settings": "Editar definições",
+ "enabled_cause": "O dispositivo foi desativado por {cause} .",
+ "enabled_description": "Os dispositivos desativados não serão mostrados e as entidades pertencentes ao dispositivo serão desactivadas e não serão adicionadas ao Home Assistant.",
+ "enabled_label": "Ativar dispositivo",
+ "entities": {
+ "add_entities_lovelace": "Adicionar ao Lovelace",
+ "config": "Configuração",
+ "control": "Controlos",
+ "diagnostic": "Diagnóstico",
+ "disabled_entities": "+{count} {count, plural,\n one {entidade inativa}\n other {entidades inativas}\n}",
+ "entities": "Entidades",
+ "hide_disabled": "Mostrar entidades desativadas",
+ "none": "Este dispositivo não possui entidades",
+ "sensor": "Sensores",
+ "state": "Estado"
+ },
+ "name": "Nome",
+ "no_devices": "Sem dispositivos",
+ "open_configuration_url_device": "Aceder ao dispositivo",
+ "open_configuration_url_service": "Visitar serviço",
+ "picker": {
+ "filter": {
+ "filter": "Filtro",
+ "hidden_devices": "{number} {number, plural,\n one {dispositivo escondido}\n other {dispositivos escondidos}\n}",
+ "show_all": "Mostrar tudo",
+ "show_disabled": "Mostrar entidades desativadas"
+ },
+ "search": "Pesquisar dispositivos"
+ },
+ "scene": {
+ "create": "Criar cenário utilizando este dispositivo",
+ "create_disable": "Não é possível criar cenários com o dispositivo desativado",
+ "no_scenes": "Sem cenários",
+ "scenes": "Cenários"
+ },
+ "scenes": "Cenários",
+ "script": {
+ "create": "Criar script utilizando este dispositivo",
+ "create_disable": "Não é possível criar scripts com dispositivos desativados",
+ "no_scripts": "Sem scripts",
+ "scripts": "Scripts"
+ },
+ "scripts": "Scripts",
+ "unknown_error": "Erro desconhecido",
+ "unnamed_device": "Dispositivo sem nome",
+ "update": "Atualizar",
+ "update_device_error": "A atualização do dispositivo falhou"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Adicionar sistema de baterias",
+ "battery_systems": "Sistemas de baterias",
+ "dialog": {
+ "energy_into_battery": "Energia entregue à bateria (kWh)",
+ "energy_out_of_battery": "Energia proveniente da bateria (kWh)",
+ "header": "Configurar sistema de baterias"
+ },
+ "learn_more": "Mais informações sobre como começar.",
+ "sub": "Se tiver um sistema de baterias, pode configurá-lo para monitorizar a quantidade de energia armazenada e consumida a partir das baterias.",
+ "title": "Armazenam. em Baterias"
+ },
+ "caption": "Energia",
+ "delete_integration": "Tem a certeza de que pretende eliminar esta integração? Irá também eliminar as entidades que esta fornece",
+ "delete_source": "Tem a certeza de que quer eliminar esta fonte?",
+ "description": "Monitorizar a produção e o consumo de energia",
+ "device_consumption": {
+ "add_device": "Adicionar dispositivo",
+ "add_stat": "Escolha uma entidade para acompanhar o consumo",
+ "devices": "Dispositivos",
+ "dialog": {
+ "device_consumption_energy": "Consumo de energia do dispositivo (kWh)",
+ "header": "Adicionar um dispositivo",
+ "selected_stat_intro": "Selecione a entidade que representa a utilização de energia do dispositivo."
+ },
+ "learn_more": "Mais informações sobre como começar.",
+ "selected_stat": "A acompanhar o consumo de",
+ "sub": "O acompanhamento da utilização de energia de dispositivos individuais permite ao Home Assistant decompor a sua utilização de energia por dispositivo.",
+ "title": "Dispositivos individuais"
+ },
+ "gas": {
+ "add_gas_source": "Adicionar fonte de gás",
+ "dialog": {
+ "cost_entity": "Utilizar uma entidade com o preço atual",
+ "cost_entity_input": "Entidade com o preço atual por {unit}",
+ "cost_number": "Utilizar um preço estático",
+ "cost_number_input": "Preço por {unit}",
+ "cost_number_suffix": "",
+ "cost_para": "Selecione o método como o Home Assistant deve acompanhar os custos da energia consumida.",
+ "cost_stat": "Utilizar uma entidade que acompanhe os custos totais",
+ "cost_stat_input": "Entidade de Custos Totais",
+ "energy_stat": "Energia consumida (m³)",
+ "gas_usage": "Utilização de gás",
+ "header": "Configurar o consumo de gás",
+ "m3_or_kWh": "ft³, m³, Wh, kWh ou MWh",
+ "no_cost": "Não acompanhar custos",
+ "paragraph": "O consumo de gás é o volume de gás que flui para a sua casa."
+ },
+ "gas_consumption": "Consumo de gás",
+ "learn_more": "Mais informações sobre como começar.",
+ "sub": "Permita ao Home Assistant monitorizar a sua utilização de gás.",
+ "title": "Consumo de Gás"
+ },
+ "grid": {
+ "add_co2_signal": "Adicionar integração CO2Signal",
+ "add_consumption": "Adicionar consumo",
+ "add_return": "Adicionar retorno",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Utilizar uma entidade com preço atual",
+ "cost_entity_input": "Entidade com o preço atual",
+ "cost_number": "Utilizar um preço estático",
+ "cost_number_input": "Preço por kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Selecione o método como o Home Assistant deve acompanhar os custos da energia consumida.",
+ "cost_stat": "Utilizar uma entidade que acompanhe os custos totais",
+ "cost_stat_input": "Entidade de Custos Totais",
+ "energy_stat": "Energia consumida (kWh)",
+ "header": "Configurar o consumo da rede",
+ "no_cost": "Não acompanhar custos",
+ "paragraph": "O consumo da rede é a energia que flui da rede elétrica para a sua casa."
+ },
+ "to": {
+ "cost_entity": "Utilizar uma entidade com a tarifa atual",
+ "cost_entity_input": "Entidade com a tarifa atual",
+ "cost_number": "Utilizar uma tarifa estática",
+ "cost_number_input": "Tarifa por kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Recebe dinheiro quando devolve energia à rede?",
+ "cost_stat": "Utilizar uma entidade que acompanhe o montante total recebido",
+ "cost_stat_input": "Entidade de Remuneração Total",
+ "energy_stat": "Energia devolvida à rede (kWh)",
+ "header": "Configurar a produção da rede",
+ "no_cost": "Não recebo dinheiro de volta",
+ "paragraph": "A produção da rede é a energia que flui dos seus painéis solares para a rede elétrica."
+ }
+ },
+ "grid_carbon_footprint": "Pegada de carbono da rede",
+ "grid_consumption": "Consumo da rede",
+ "learn_more": "Mais informações sobre como começar.",
+ "return_to_grid": "Retorno à rede",
+ "sub": "Configure a quantidade de energia que consome da rede e, se produzir energia, que devolve à rede. Isto permite ao Home Assistant acompanhar todo o seu consumo doméstico de energia.",
+ "title": "Rede elétrica"
+ },
+ "new_device_info": "Após a configuração de um novo dispositivo, pode demorar até 2 horas para que novos dados cheguem ao seu painel energético.",
+ "solar": {
+ "add_solar_production": "Adicionar produção solar",
+ "dialog": {
+ "add_forecast": "Adicionar previsão",
+ "dont_forecast_production": "Não prever a produção",
+ "forecast_production": "Prever a produção",
+ "header": "Configurar painéis solares",
+ "solar_production_energy": "Energia de produção solar (kWh)",
+ "solar_production_forecast": "Previsão da produção solar",
+ "solar_production_forecast_description": "Adicionar informações de previsão da produção solar permitir-lhe-á ver rapidamente a sua produção esperada para hoje."
+ },
+ "learn_more": "Mais informações sobre como começar.",
+ "solar_production": "Produção solar",
+ "stat_predicted_production": "Previsão da sua produção de energia solar",
+ "stat_production": "Produção de energia solar",
+ "stat_return_to_grid": "Energia solar devolvida à rede",
+ "sub": "Deixe o Home Assistant monitorizar os seus painéis solares e dar-lhe informações sobre o seu desempenho.",
+ "title": "Painéis Solares"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "As seguintes entidades têm um estado negativo enquanto se espera um estado positivo:",
+ "title": "A entidade tem um estado negativo"
+ },
+ "entity_not_defined": {
+ "description": "Verifique a integração ou a configuração que fornece:",
+ "title": "Entidade não definida"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "As seguintes entidades têm a classe de estado 'measurement' mas falta o parâmetro 'last_reset':",
+ "title": "Última reposição em falta"
+ },
+ "entity_state_non_numeric": {
+ "description": "As seguintes entidades têm um estado que não pode ser analisado como um número:",
+ "title": "A entidade tem um estado não-numérico"
+ },
+ "entity_unavailable": {
+ "description": "O estado destas entidades configuradas não se encontra atualmente disponível:",
+ "title": "Entidade indisponível"
+ },
+ "entity_unexpected_device_class": {
+ "description": "As seguintes entidades não têm a classe de dispositivo (device_class) esperada:",
+ "title": "Classe de dispositivo (device_class) inesperada"
+ },
+ "entity_unexpected_state_class": {
+ "description": "As seguintes entidades não têm a classe de estado (state_class) esperada:",
+ "title": "Classe de estado (state_class) inesperada"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "As seguintes entidades não têm a classe de estado (state_class) esperada 'total_increasing'.",
+ "title": "Classe de estado (state_class) inesperada"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "As seguintes entidades não têm as unidades de medida esperadas 'Wh', 'kWh' ou 'MWh':",
+ "title": "Unidade de medida inesperada"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "As seguintes entidades não têm as unidades de medida esperadas ''{currency}/kWh'', ''{currency}/Wh'' ou ''{currency}/MWh'':",
+ "title": "Unidade de medida inesperada"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "As seguintes entidades não têm as unidades de medida esperadas 'Wh', 'kWh' ou 'MWh' para um sensor de energia ou 'm³' ou 'ft³' para um sensor de gás:",
+ "title": "Unidade de medida inesperada"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "As seguintes entidades não têm as unidades de medida esperadas ''{currency}/kWh'', ''{currency}/Wh'', ''{currency}/MWh'', ''{currency}/m³'' ou ''{currency}/ft³''",
+ "title": "Unidade de medida inesperada"
+ },
+ "recorder_untracked": {
+ "description": "O registo de estatísticas foi configurado para excluir estas entidades:",
+ "title": "Entidade não acompanhada"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Entidades",
+ "description": "Gerir entidades conhecidas",
+ "picker": {
+ "disable_selected": {
+ "button": "Desativar seleção",
+ "confirm_text": "Entidades desativadas não serão adicionadas ao Home Assistant.",
+ "confirm_title": "Quer desativar {number} {number, plural,\n one {entity}\n other {entities}\n}?"
+ },
+ "enable_selected": {
+ "button": "Ativar seleção ",
+ "confirm_text": "Assim ficarão disponíveis no Home Assistant caso actualmente estejam desactivados.",
+ "confirm_title": "Deseja ativar {number} {number, plural,\n one {entidade}\n other {entidades}\n}?"
+ },
+ "filter": {
+ "filter": "Filtro",
+ "hidden_entities": "{number} {number, plural,\n one {entidade}\n other {entidades}\n} escondidas",
+ "show_all": "Mostrar tudo",
+ "show_disabled": "Mostrar entidades desativadas",
+ "show_readonly": "Mostrar entidades só de leitura.",
+ "show_unavailable": "Mostrar entidades indisponíveis"
+ },
+ "header": "Entidades",
+ "headers": {
+ "area": "Área",
+ "disabled_by": "Desativado por",
+ "entity_id": "ID da Entidade",
+ "integration": "Integração",
+ "name": "Nome",
+ "status": "Estado"
+ },
+ "introduction": "O Home Assistant mantém um registo de todas as entidades que foram alguma vez detetadas e que podem ser identificadas de uma forma única. Cada uma dessas entidades terá um ID de entidade atribuído, que será reservado apenas para essa entidade.",
+ "introduction2": "Use o registo da entidade para substituir o nome, alterar o ID da entidade ou remover a entrada do Home Assistant.",
+ "remove_selected": {
+ "button": "Remover selecionado",
+ "confirm_partly_text": "Só é possível remover {removable} das {selected} entidades selecionadas. As entidades só podem ser removidas quando a integração a que pertencem já não as estiver a disponibillizar. Por vezes, é necessário reiniciar o Home Assistant antes de poder remover as entidades de uma integração removida. Tem a certeza de que pretende remover as entidades possíveis?",
+ "confirm_partly_title": "Apenas {number} {number, plural,\n one {selected entidade}\n other {selected entidades}\n} podem ser removidas.",
+ "confirm_text": "Deve removê-las da configuração do Lovelace e das automatizações de que fizerem parte.",
+ "confirm_title": "Deseja remover {number} {number, plural,\n one {entidade}\n other {entidades}\n}?"
+ },
+ "search": "Procurar entidades",
+ "selected": "Selecionou {number}",
+ "status": {
+ "disabled": "Desativado",
+ "ok": "Ok",
+ "readonly": "Só de leitura",
+ "restored": "Restaurado",
+ "unavailable": "Indisponível"
+ }
+ }
+ },
+ "header": "Configurar o Home Assistant",
+ "helpers": {
+ "caption": "Auxiliares",
+ "description": "Elementos que ajudam a construir automatizações",
+ "dialog": {
+ "add_helper": "Adicionar auxiliar",
+ "add_platform": "Adicionar {platform}",
+ "create": "Criar"
+ },
+ "picker": {
+ "add_helper": "Adicionar auxiliar",
+ "headers": {
+ "editable": "Editável",
+ "entity_id": "ID da entidade",
+ "name": "Nome",
+ "type": "Tipo"
+ },
+ "no_helpers": "Parece que ainda não tem entidades auxiliares!"
+ },
+ "types": {
+ "counter": "Contador",
+ "input_boolean": "Interruptor",
+ "input_button": "Botão",
+ "input_datetime": "Data e/ou hora",
+ "input_number": "Número",
+ "input_select": "Lista de selecção",
+ "input_text": "Texto",
+ "timer": "Temporizador"
+ }
+ },
+ "info": {
+ "built_using": "Construído com",
+ "caption": "Informação",
+ "copy_github": "Para GitHub",
+ "copy_menu": "Copiar estas informações",
+ "copy_raw": "Texto simples",
+ "custom_uis": "IUs personalizados:",
+ "description": "Versão, estado do sistema e atalhos para documentação",
+ "developed_by": "Desenvolvido por um punhado de pessoas incríveis.",
+ "documentation": "Documentação",
+ "frontend": "frontend-ui",
+ "frontend_version": "Versão frontend: {version} - {type}",
+ "home_assistant_logo": "Logotipo do Home Assistant",
+ "icons_by": "Ícones por",
+ "integrations": "Integrações",
+ "issues": "Problemas",
+ "license": "Publicado sob a licença de Apache 2.0",
+ "path_configuration": "Caminho para configuration.yaml: {path}",
+ "server": "servidor",
+ "setup_time": "Tempo de inicialização",
+ "source": "Fonte:",
+ "system_health": {
+ "manage": "Gerir",
+ "more_info": "mais informações"
+ },
+ "system_health_error": "O componente System Health não está carregado. Adicione 'system_health:' ao configuration.yaml"
+ },
+ "integrations": {
+ "add_integration": "Adicionar integração",
+ "attention": "Atenção necessária",
+ "caption": "Integrações",
+ "config_entry": {
+ "area": "Em {area}",
+ "check_the_logs": "Verifique os logs",
+ "configure": "Configurar",
+ "delete": "Eliminar",
+ "delete_confirm": "Tem a certeza que pretende eliminar a integração {title}?",
+ "depends_on_cloud": "Depende da nuvem",
+ "device_unavailable": "Dispositivo indisponível",
+ "devices": "{count} {count, plural,\n one {dispositivo}\n other {dispositivos}\n}",
+ "disable": {
+ "disable_confirm": "Tem certeza de que deseja desativar esta entrada de configuração? Os respectivos dispositivos e entidades serão desativados.",
+ "disabled": "Desativado",
+ "disabled_by": {
+ "device": "dispositivo",
+ "integration": "integração",
+ "user": "utilizador"
+ },
+ "disabled_cause": "Desativado por {cause}."
+ },
+ "disable_error": "A ativação ou desativação da integração falhou",
+ "disable_restart_confirm": "Reinicie o Home Assistant para terminar a desativação desta integração",
+ "disabled_polling": "Procura automática de dados atualizados desativada",
+ "documentation": "Documentação",
+ "download_diagnostics": "Descarregar dados de diagnóstico",
+ "enable_restart_confirm": "Reinicie o Home Assistant para terminar a ativação desta integração",
+ "entities": "{count} {count, plural,\n one {entidade}\n other {entidades}\n}",
+ "entity_unavailable": "Entidade indisponível",
+ "firmware": "Firmware: {version}",
+ "hardware": "Hardware: {version}",
+ "hub": "Conectado via",
+ "known_issues": "Problemas conhecidos",
+ "manuf": "por {manufacturer}",
+ "no_area": "Nenhuma Área",
+ "not_loaded": "Não carregado",
+ "open_configuration_url": "Aceder ao dispositivo",
+ "provided_by_custom_integration": "Fornecido por uma integração personalizada",
+ "reload": "Recarregar",
+ "reload_confirm": "A integração foi recarregada",
+ "reload_restart_confirm": "Reinicie o Home Assistant para terminar de carregar esta integração",
+ "rename": "Mudar o nome",
+ "restart_confirm": "Reinicie o Home Assistant para concluir a remoção desta integração",
+ "services": "{count} {count, plural,\n one {serviço}\n other {serviços}\n}",
+ "state": {
+ "failed_unload": "Falha ao desativar",
+ "loaded": "Carregado",
+ "migration_error": "Erro de migração",
+ "not_loaded": "Não carregado",
+ "setup_error": "Erro ao inicializar",
+ "setup_retry": "A repetir a configuração"
+ },
+ "system_options": "Opções do sistema",
+ "unknown_via_device": "Dispositivo desconhecido",
+ "unnamed_entry": "Entrada sem nome",
+ "via": "Ligado via"
+ },
+ "config_flow": {
+ "aborted": "Abortado",
+ "close": "Fechar",
+ "could_not_load": "O fluxo de configuração não pôde ser carregado",
+ "created_config": "Configuração criada para {name}.",
+ "dismiss": "Fechar",
+ "error": "Erro",
+ "error_saving_area": "Erro ao salvar a área: {error}",
+ "external_step": {
+ "description": "Para ser concluída, esta etapa exige que visite um sítio web externo.",
+ "open_site": "Abrir site"
+ },
+ "finish": "Terminar",
+ "loading": {
+ "fallback_title": "a integração",
+ "loading_flow": "Por favor aguarde enquanto {integration} está a ser configurado",
+ "loading_step": "A carregar o próximo passo de {integration}"
+ },
+ "next": "Seguinte",
+ "not_all_required_fields": "Nem todos os campos obrigatórios estão preenchidos.",
+ "not_loaded": "A integração não pôde ser carregada, tente reiniciar o Home Assistant.",
+ "pick_flow_step": {
+ "new_flow": "Não, criar uma outra instância de {integration}.",
+ "title": "Descobrimos estes, pretende configurá-los?"
+ },
+ "submit": "Enviar"
+ },
+ "configure": "Configurar",
+ "configured": "Configurado",
+ "confirm_new": "Pretende configurar a integração {integration}?",
+ "description": "Gerir integrações com serviços, dispositivos, ...",
+ "details": "Detalhes da integração",
+ "disable": {
+ "disabled_integrations": "{number} desativadas",
+ "show": "Mostrar",
+ "show_disabled": "Mostrar integrações desativadas"
+ },
+ "discovered": "Descoberto",
+ "home_assistant_website": "Site do Home Assistant ",
+ "ignore": {
+ "confirm_delete_ignore": "Isto fará com que a integração volte a aparecer nas suas integrações descobertas, quando for descoberta. Isto pode requerer um reinício ou demorar algum tempo.",
+ "confirm_delete_ignore_title": "Parar de ignorar {name} ?",
+ "confirm_ignore": "De certeza que não quer configurar esta integração? Pode desfazer isto clicando em \"Mostrar integrações ignoradas' no menu deslizante no canto superior direito.",
+ "confirm_ignore_title": "Ignorar a descoberta de {name} ?",
+ "ignore": "Ignorar",
+ "ignored": "Ignorado",
+ "show_ignored": "Mostrar integrações ignoradas",
+ "stop_ignore": "Parar de ignorar"
+ },
+ "integration": "integração",
+ "integration_not_found": "Integração não encontrada.",
+ "new": "Configurar uma nova integração",
+ "no_integrations": "Parece que ainda não possui integrações configuradas. Clique no botão abaixo para adicionar a sua primeira integração!",
+ "none": "Nada configurado ainda",
+ "none_found": "Não foram encontradas integrações",
+ "none_found_detail": "Ajuste os seus critérios de pesquisa.",
+ "note_about_integrations": "Não existem integrações que satisfaçam a sua pesquisa. De momento, nem todas as integrações podem ser configuradas via interface de utilizador.",
+ "note_about_website_reference": "Existem mais disponíveis no",
+ "reconfigure": "Reconfigurar",
+ "rename_dialog": "Edite o nome desta entrada de configuração.",
+ "rename_input_label": "Nome da entrada",
+ "search": "Procurar integrações"
+ },
+ "introduction": "Aqui é possível configurar os seus componentes e o Home Assistant. Nem tudo é possível de ser configurado a partir da Interface Gráfica, mas estamos a trabalhar para isso.",
+ "logs": {
+ "caption": "Logs",
+ "clear": "Limpar",
+ "copy": "Copiar entrada de log",
+ "custom_integration": "integração personalizada",
+ "description": "Ver os registos do Home Assistant",
+ "details": "Detalhes do log ( {level} )",
+ "error_from_custom_integration": "Este erro teve origem numa integração personalizada.",
+ "level": {
+ "critical": "CRÍTICO",
+ "debug": "DEPURAÇÃO",
+ "error": "ERRO",
+ "info": "INFO",
+ "warning": "AVISO"
+ },
+ "load_full_log": "Carregar log completo do Home Assistant",
+ "loading_log": "A carregar o log de erros...",
+ "multiple_messages": "mensagem ocorreu primeiro em {time} e repetiu-se {counter} vezes",
+ "no_errors": "Nenhum erro foi reportado.",
+ "no_issues": "Não há novos problemas!",
+ "refresh": "Atualizar"
+ },
+ "lovelace": {
+ "caption": "Painéis Lovelace",
+ "dashboards": {
+ "cant_edit_default": "O painel Lovelace padrão não pode ser editado através da interface de utilizador. Pode escondê-lo se definir outro painel como padrão.",
+ "cant_edit_yaml": "Os painéis definidos em YAML não podem ser editados a partir da interface do utilizador. Altere-os no ficheiro configuration.yaml.",
+ "caption": "Dashboards",
+ "conf_mode": {
+ "storage": "Controlado pela UI",
+ "yaml": "Ficheiro YAML"
+ },
+ "confirm_delete": "Tem a certeza de que quer eliminar este painel?",
+ "confirm_delete_text": "O painel será permanentemente eliminado.",
+ "confirm_delete_title": "Eliminar {dashboard_title}?",
+ "default_dashboard": "Este é o painel de instrumentos por defeito",
+ "detail": {
+ "create": "Criar",
+ "delete": "Eliminar",
+ "dismiss": "Fechar",
+ "edit_dashboard": "Editar painel",
+ "icon": "Ícone",
+ "new_dashboard": "Adicionar novo painel",
+ "remove_default": "Remover este dispositivo de painel padrão",
+ "require_admin": "Administrador apenas",
+ "set_default": "Definir este dispositivo como padrão",
+ "show_sidebar": "Mostrar na barra lateral",
+ "title": "Título",
+ "title_required": "O título é obrigatório.",
+ "update": "Atualizar",
+ "url": "",
+ "url_error_msg": "O URL deve conter um - e não pode conter espaços ou caracteres especiais, exceto _ e -"
+ },
+ "picker": {
+ "add_dashboard": "Adicionar painel",
+ "headers": {
+ "conf_mode": "Método de configuração",
+ "default": "Predefinição",
+ "filename": "Nome do ficheiro",
+ "require_admin": "Administrador apenas",
+ "sidebar": "Mostrar na barra lateral",
+ "title": "Título"
+ },
+ "open": "Abrir"
+ }
+ },
+ "description": "Crie conjuntos personalizados de cartões para controlar a sua casa",
+ "resources": {
+ "cant_edit_yaml": "Está a utilizar o Lovelace no modo YAML, portanto, não é possível gerir os seus recursos através do interface do utilizador. Configure-os no ficheiro configuration.yaml.",
+ "caption": "Recursos",
+ "confirm_delete": "Tem a certeza de que pretende eliminar este recurso?",
+ "detail": {
+ "create": "Criar",
+ "delete": "Apagar",
+ "dismiss": "Fechar",
+ "new_resource": "Adicionar novo recurso",
+ "type": "Tipo de recurso",
+ "update": "Atualizar",
+ "url": "",
+ "url_error_msg": "O campo URL é obrigatório",
+ "warning_header": "Seja cauteloso!",
+ "warning_text": "Acrescentar recursos pode ser perigoso, certifique-se que conhece a fonte do recurso e que confia nela. Recursos malignos podem prejudicar seriamente o seu sistema."
+ },
+ "picker": {
+ "add_resource": "Adicionar recurso",
+ "headers": {
+ "type": "Tipo",
+ "url": ""
+ },
+ "no_resources": "Sem recursos"
+ },
+ "refresh_body": "É necessário atualizar a página para completar a remoção, quer atualizar agora?",
+ "refresh_header": "Deseja atualizar?",
+ "types": {
+ "css": "Stylesheet",
+ "html": "HTML (descontinuado)",
+ "js": "Ficheiro JavaScript (descontinuado)",
+ "module": "Módulo JavaScript"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Escutar um tópico",
+ "description_publish": "Publicar um pacote",
+ "listening_to": "A escutar",
+ "message_received": "Mensagem {id} recebida em {topic} às {time} :",
+ "payload": "Payload (é permitido template)",
+ "publish": "Publicar",
+ "start_listening": "Começar a escutar",
+ "stop_listening": "Parar de escutar",
+ "subscribe_to": "Tópico ao qual subscrever",
+ "title": "MQTT",
+ "topic": "tópico"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Controlador",
+ "instance": "Instância",
+ "network": "Rede",
+ "node_id": "ID do Nó",
+ "ozw_instance": "Instância OpenZWave",
+ "query_stage": "Fase de Consulta",
+ "wakeup_instructions": "Instruções para Acordar",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Falha no nó",
+ "stage": "Estágio",
+ "zwave_info": "Informações sobre Z-Wave"
+ },
+ "navigation": {
+ "network": "Rede",
+ "node": {
+ "config": "Configuração",
+ "dashboard": "Painel de Instrumentos"
+ },
+ "nodes": "Nós",
+ "select_instance": "Selecione a Instância"
+ },
+ "network": {
+ "header": "Gestão de Rede",
+ "introduction": "Gerir funções de rede.",
+ "node_count": "{count} nós"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "Todos os nós foram inquiridos.",
+ "driverallnodesqueriedsomedead": "Todos os nós foram inquiridos. Alguns nós foram encontrados inativos",
+ "driverawakenodesqueries": "Todos os nós ativos foram consultados",
+ "driverfailed": "Falha ao ligar ao controlador Z-Wave",
+ "driverready": "A inicializar o controlador Z-Wave",
+ "driverremoved": "O driver foi removido",
+ "driverreset": "O driver foi reiniciado",
+ "offline": "OZWDaemon inativo",
+ "ready": "Pronto para ligar",
+ "started": "Ligado ao MQTT",
+ "starting": "A ligar ao MQTT",
+ "stopped": "OpenZWave parado"
+ },
+ "offline": "Inativo",
+ "online": "Ativo",
+ "starting": "A iniciar",
+ "unknown": "Desconhecido"
+ },
+ "node": {
+ "button": "Detalhes do nó",
+ "not_found": "Nó não encontrado"
+ },
+ "node_config": {
+ "header": "Configuração do Nó",
+ "help_source": "As descrições dos parâmetros de configuração e o texto de ajuda são fornecidos pelo projeto OpenZWave.",
+ "introduction": "Administrar os diferentes parâmetros de configuração para um nó Z-Wave.",
+ "wakeup_help": "Os nós alimentados por bateria devem estar acordados para mudar a sua configuração. Se o nó não estiver acordado, o OpenZWave irá tentar atualizar a configuração do nó da próxima vez que ele acordar, o que pode acontecer horas (ou dias) depois. Siga estes passos para acordar o seu dispositivo:"
+ },
+ "node_metadata": {
+ "product_manual": "Manual do Produto"
+ },
+ "node_query_stages": {
+ "associations": "A actualizar grupos de associação e membros",
+ "cacheload": "A carregar informações do arquivo de cache do OpenZWave. Os nós da bateria permanecerão nesta fase até que o nó acorde.",
+ "complete": "O processo de entrevista está concluído",
+ "configuration": "A obter valores de configuração do nó",
+ "dynamic": "A obter valores que mudam frequentemente do nó",
+ "instances": "A obter detalhes sobre que instâncias ou canais um dispositivo suporta",
+ "manufacturerspecific1": "A obter códigos de identificação do fabricante e produto do nó",
+ "manufacturerspecific2": "A obter códigos adicionais de identificação do fabricante e do produto a partir do nó",
+ "neighbors": "Obter uma lista dos vizinhos do nó",
+ "nodeinfo": "A obter classes de comando suportadas do nó",
+ "nodeplusinfo": "A obter de informações da Onda Z+ a partir do nó",
+ "probe": "Verificar se nó está acordado/ativo",
+ "protocolinfo": "A obter recursos Z-Wave básicos do nó a partir do controlador",
+ "session": "A obter valores alterados com pouca frequência do nó",
+ "static": "A obter valores estáticos do dispositivo",
+ "versions": "A obter informações sobre as versões de firmware e classe de comando",
+ "wakeup": "A configurar suporte para filas de ativação e mensagens"
+ },
+ "nodes_table": {
+ "failed": "Falhou",
+ "id": "ID",
+ "manufacturer": "Fabricante",
+ "model": "Modelo",
+ "query_stage": "Fase de consulta",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Se o nó for alimentado por bateria, não se esqueça de acordá-lo antes de continuar.",
+ "button": "Atualizar nó",
+ "complete": "Atualização do Nó Concluída",
+ "description": "Isto irá dizer ao OpenZWave para reinterpretar um nó e atualizar as classes de comando, capacidades e valores do nó.",
+ "node_status": "Estado do Nó",
+ "refreshing_description": "A atualizar as informações do nó…",
+ "start_refresh_button": "Iniciar Atualização",
+ "step": "Passo",
+ "title": "Atualizar as Informações do Nó",
+ "wakeup_header": "Instruções para acordar de",
+ "wakeup_instructions_source": "As instruções para acordar são obtidas da base de dados de dispositivos da comunidade OpenZWave."
+ },
+ "select_instance": {
+ "header": "Selecione uma instância OpenZWave",
+ "introduction": "Tem mais do que uma instância OpenZWave em funcionamento. Que instância gostaria de gerir?",
+ "none_found": "Não conseguimos encontrar uma instância OpenZWave. Se acredita no contrário, verifique as configurações do OpenZWave e do MQTT e certifique-se de que o Home Assistant consegue comunicar com o *broker* MQTT."
+ },
+ "services": {
+ "add_node": "Adicionar nó",
+ "cancel_command": "Comando Cancelar",
+ "remove_node": "Remover nó"
+ }
+ },
+ "person": {
+ "add_person": "Adicionar Pessoa",
+ "caption": "Pessoas",
+ "confirm_delete": "Tem a certeza de que pretende eliminar esta pessoa?",
+ "confirm_delete2": "Todos os dispositivos pertencentes a esta pessoa não ficarão atribuidos a ninguém.",
+ "create_person": "Criar pessoa",
+ "description": "Gerir as pessoas que o Home Assistant segue.",
+ "detail": {
+ "admin": "Administrador",
+ "allow_login": "Permitir login",
+ "confirm_delete_user": "Tem a certeza de que pretende eliminar a conta de utilizador de {name}? Ainda poderá seguir o utilizador, mas a pessoa deixará de poder iniciar sessão.",
+ "create": "Criar",
+ "delete": "Apagar",
+ "device_tracker_intro": "Selecione os dispositivos que pertencem a esta pessoa.",
+ "device_tracker_pick": "Escolha o dispositivo a seguir",
+ "device_tracker_picked": "Seguir dispositivo",
+ "link_integrations_page": "Página de Integrações",
+ "link_presence_detection_integrations": "Integrações de detecção de presença",
+ "linked_user": "Utilizador associado",
+ "local_only": "Só pode iniciar sessão a partir da rede local",
+ "name": "Nome",
+ "name_error_msg": "Nome é obrigatório",
+ "new_person": "Nova Pessoa",
+ "no_device_tracker_available_intro": "Quando possui dispositivos que indicam a presença de uma pessoa, poderá atribuí-los a essa pessoa aqui. Pode adicionar o seu primeiro dispositivo, adicionando uma integração de deteção de presença na página de integrações.",
+ "update": "Atualizar"
+ },
+ "introduction": "Aqui pode definir cada pessoa de interesse no Home Assistant.",
+ "learn_more": "Saiba mais sobre pessoas",
+ "no_persons_created_yet": "Parece que ainda não criou nenhuma pessoa.",
+ "note_about_persons_configured_in_yaml": "Nota: pessoas configuradas via configuration.yaml não podem ser editadas via UI.",
+ "person_not_found": "Não conseguimos encontrar a pessoa que estavas a tentar editar.",
+ "person_not_found_title": "Pessoa não encontrada"
+ },
+ "scene": {
+ "activated": "Ativar cena {name}.",
+ "caption": "Cenários",
+ "description": "Capture os estados dos dispositivos e facilmente recupere os mesmos mais tarde",
+ "editor": {
+ "area": "Área",
+ "default_name": "Nova Cena",
+ "devices": {
+ "add": "Adicionar um dispositivo",
+ "delete": "Apagar dispositivo",
+ "header": "Dispositivos",
+ "introduction": "Adicione os dispositivos que deseja incluir na sua cena. Defina todos os dispositivos para o estado desejado para esta cena."
+ },
+ "entities": {
+ "add": "Adicionar uma entidade",
+ "delete": "Apagar entidade",
+ "device_entities": "Se adicionar uma entidade que pertence a um dispositivo, o dispositivo será adicionado.",
+ "header": "Entidades",
+ "introduction": "Entidades que não pertencem a um dispositivo podem ser definidas aqui.",
+ "without_device": "Entidades sem dispositivo"
+ },
+ "icon": "Ícone",
+ "introduction": "Utilize cenários para dar vida à sua casa.",
+ "load_error_not_editable": "Apenas cenários em scenes.yaml são editáveis.",
+ "load_error_unknown": "Erro ao carregar cena ({err_no}).",
+ "name": "Nome",
+ "save": "Guardar",
+ "unsaved_confirm": "Existem alterações não guardadas. Tem a certeza de que quer sair?"
+ },
+ "picker": {
+ "add_scene": "Adicionar cenário",
+ "delete_confirm": "Tem certeza de que deseja apagar esta cena?",
+ "delete_scene": "Eliminar cena",
+ "duplicate": "Duplicado",
+ "duplicate_scene": "Duplicar cenário",
+ "edit_scene": "Editar cena",
+ "header": "Editor de cenários",
+ "headers": {
+ "name": "Nome"
+ },
+ "introduction": "O editor de cenários permite criar e editar cenários. Leia as instruções do link em baixo para se certificar de que configurou o Home Assistant corretamente.",
+ "learn_more": "Aprender mais sobre cenários",
+ "no_scenes": "Não conseguimos encontrar nenhum cenário",
+ "only_editable": "Apenas os cenários definidos em scenes.yaml são editáveis.",
+ "pick_scene": "Escolha uma cena para editar",
+ "show_info_scene": "Mostrar informações sobre a cena"
+ }
+ },
+ "script": {
+ "caption": "",
+ "description": "Executar uma sequência de ações",
+ "editor": {
+ "alias": "Nome",
+ "default_name": "Novo Script",
+ "delete_confirm": "Tem a certeza que quer apagar este script?",
+ "delete_script": "Apagar script",
+ "header": "Script: {name}",
+ "icon": "Ícone",
+ "id": "ID da entidade",
+ "id_already_exists": "Este ID já existe",
+ "id_already_exists_save_error": "Nāo é possível gravar este script porque o ID não é único, escolha outro ID ou deixe em branco para ser gerado automaticamente.",
+ "introduction": "Utilize scripts para executar uma sequência de ações.",
+ "link_available_actions": "Saiba mais sobre ações disponíveis.",
+ "load_error_not_editable": "Apenas os scripts em scripts.yaml são editáveis.",
+ "max": {
+ "parallel": "Máximo de execuções em paralelo",
+ "queued": "Máximo de execuções em espera"
+ },
+ "modes": {
+ "description": "Este modo controla apenas o que acontece quando o script é chamado quando ainda está a ser executado por uma ou mais chamadas anteriores. Consulte a {documentation_link} para mais informações.",
+ "documentation": "documentação sobre scripts",
+ "label": "Modo",
+ "parallel": "Paralelo",
+ "queued": "Aguardar",
+ "restart": "Reiniciar",
+ "single": "Único (pré-definido)"
+ },
+ "save_script": "Guardar script",
+ "sequence": "Sequência",
+ "sequence_sentence": "A sequência de ações para este script.",
+ "show_trace": "Mostrar registo"
+ },
+ "picker": {
+ "add_script": "Adicionar script",
+ "dev_script": "Depurar script",
+ "duplicate": "Duplicado",
+ "duplicate_script": "Script duplicado",
+ "edit_script": "Editar script",
+ "header": "Editor de Script",
+ "headers": {
+ "name": "Nome"
+ },
+ "introduction": "O editor de scripts permite criar e editar scripts. Leia as instruções do link em baixo para se certificar de que configurou o Home Assistant corretamente.",
+ "learn_more": "Saber mais sobre scripts",
+ "no_scripts": "Não conseguimos encontrar nenhum script",
+ "run_script": "Executar script",
+ "show_info": "Mostrar informações sobre o script"
+ }
+ },
+ "server_control": {
+ "caption": "Controlo do Servidor",
+ "description": "Validar configurações, reiniciar e encerrar o servidor Home Assistant",
+ "section": {
+ "reloading": {
+ "automation": "Recarregar automatizações",
+ "command_line": "Recarregar entidades de linha de comandos",
+ "core": "Recarregar localização e personalizações",
+ "filesize": "Recarregar entidades de tamanho de ficheiro",
+ "filter": "Recarregar entidades de filtro",
+ "generic": "Recarregar entidades de Câmara IP genéricas",
+ "generic_thermostat": "Recarregar entidades termostáticas genéricas",
+ "group": "Recarregar grupos, grupos de entidades e serviços de notificação",
+ "heading": "Recarregar configuração YAML",
+ "history_stats": "Recarregar entidades de estatísticas de histórico",
+ "homekit": "Recarregar HomeKit",
+ "input_boolean": "Recarregar entidades input boolean",
+ "input_datetime": "Recarregar entidades input date time",
+ "input_number": "Recarregar entidades input number",
+ "input_select": "Recarregar entidades input select",
+ "input_text": "Recarregar entidades input text",
+ "introduction": "Algumas partes do Home Assistant podem ser recarregadas sem a necessidade de reiniciar. Ao carregar em RECARREGAR a respetiva parte da configuração será recarregada.",
+ "min_max": "Recarregar entidades Mín. / Máx.",
+ "mqtt": "Recarregar entidades MQTT configuradas manualmente",
+ "person": "Pessoas",
+ "ping": "Recarregar entidades de sensor binário (binary_sensor) de ping",
+ "reload": "Recarregar {domain}",
+ "rest": "Recarregar as entidades REST e serviços de notificação REST",
+ "rpi_gpio": "Recarregar entidades Raspberry Pi GPIO",
+ "scene": "Recarregar cenários",
+ "script": "Recarregar scripts",
+ "smtp": "Recarregar serviços de notificação SMTP",
+ "statistics": "Recarregar entidades de estatísticas",
+ "telegram": "Recarregar serviços de notificação do Telegram",
+ "template": "Recarregar entidades de template",
+ "themes": "Temas",
+ "timer": "Temporizadores",
+ "trend": "Recarregar entidades de tendência",
+ "universal": "Recarregar entidades de Reprodução de Multimédia Universais",
+ "zone": "Zonas"
+ },
+ "server_management": {
+ "confirm_restart": "Tem certeza de que reiniciar o Home Assistant?",
+ "confirm_stop": "Tem certeza de que parar o Home Assistant?",
+ "heading": "Gestão do servidor",
+ "introduction": "Controlar o seu servidor do Home Assistant.",
+ "restart": "Reiniciar",
+ "stop": "Parar"
+ },
+ "validation": {
+ "check_config": "Verificar a configuração",
+ "heading": "Validar configuração",
+ "introduction": "Valide a sua configuração caso tenha alterado recentemente a mesma e quiser certificar-se de que tudo é válido.",
+ "invalid": "Configuração inválida",
+ "valid": "Configuração válida!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Adicionar etiqueta",
+ "automation_title": "A etiqueta {name} é lida",
+ "caption": "Etiquetas",
+ "confirm_remove": "Tem a certeza de que pretende remover a etiqueta {tag}?",
+ "confirm_remove_title": "Remover a etiqueta?",
+ "create_automation": "Criar automatização com etiqueta",
+ "description": "Despoletar automatizações quando uma etiqueta NFC, código QR, etc. é lida",
+ "detail": {
+ "companion_apps": "Aplicações de dispositivos móveis",
+ "create": "Criar",
+ "create_and_write": "Criar e Escrever",
+ "delete": "Apagar",
+ "description": "Descrição",
+ "name": "Nome",
+ "new_tag": "Nova etiqueta",
+ "tag_id": "Identificador da etiqueta",
+ "tag_id_placeholder": "Gerado automaticamente quando deixado vazio",
+ "update": "Atualizar",
+ "usage": "Uma etiqueta pode despoletar uma automatização quando é lida, pode usar etiquetas NFC, códigos QR ou qualquer outro tipo de etiqueta. Use a nossa {companion_link} para escrever esta etiqueta numa etiqueta NFC programável ou crie um código QR abaixo."
+ },
+ "edit": "Editar",
+ "headers": {
+ "last_scanned": "Última ocorrência",
+ "name": "Nome"
+ },
+ "learn_more": "Saiba mais sobre tags",
+ "never_scanned": "Nunca lido",
+ "no_tags": "Sem etiquetas",
+ "write": "Escrever"
+ },
+ "updates": {
+ "check_unavailable": {
+ "description": "É necessário estar a executar o sistema operativo Home Assistant para que seja possível instalar atualizações a partir da interface de utilizador.",
+ "title": "Não foi possível procurar atualizações"
+ },
+ "check_updates": "Procurar atualizações",
+ "more_updates": "+ {count} Atualizações",
+ "show": "mostrar",
+ "show_all_updates": "Mostrar todas as atualizações",
+ "title": "{count} {count, plural,\n one {update}\n other {updates}\n}",
+ "unable_to_fetch": "Não foi possível carregar atualizações",
+ "version_available": "A versão {version_available} está disponível"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Adicionar Utilizador",
+ "create": "Criar",
+ "local_only": "Apenas local",
+ "password": "Palavra-passe",
+ "password_confirm": "Confirme a Senha",
+ "password_not_match": "As palavras-passe não coincidem"
+ },
+ "caption": "Utilizadores",
+ "description": "Gerir as contas de utilizador do Home Assistant",
+ "editor": {
+ "activate_user": "Ativar utilizador",
+ "active": "Ativo",
+ "active_tooltip": "Controla se o utilizador pode iniciar sessão",
+ "admin": "Administrador",
+ "caption": "Ver utilizador",
+ "change_password": "Alterar palavra-passe",
+ "confirm_user_deletion": "Tem certeza de que deseja apagar {name} ?",
+ "deactivate_user": "Desativar utilizador",
+ "delete_user": "Apagar utilizador",
+ "group": "Grupo",
+ "id": "ID",
+ "local_only": "Só pode iniciar sessão a partir da rede local",
+ "name": "Nome Visível",
+ "new_password": "Nova senha",
+ "owner": "Proprietário",
+ "password_changed": "A senha foi alterada com sucesso",
+ "system_generated": "Utilizador de sistema",
+ "system_generated_users_not_editable": "Não é possível atualizar os utilizadores do sistema.",
+ "system_generated_users_not_removable": "Não é possível atualizar os utilizadores do sistema.",
+ "unnamed_user": "Utilizador sem nome",
+ "update_user": "Atualizar",
+ "username": "Nome de Utilizador"
+ },
+ "is_local": "Utilizador local",
+ "is_not_active": "Inativo",
+ "is_owner": "Proprietário",
+ "is_system": "Utilizador de sistema",
+ "picker": {
+ "add_user": "Adicionar Utilizador",
+ "headers": {
+ "group": "Grupo",
+ "is_active": "Ativo",
+ "is_owner": "Proprietário",
+ "local": "Local",
+ "name": "Nome Visível",
+ "system": "Sistema",
+ "username": "Nome de Utilizador"
+ }
+ },
+ "users_privileges_note": "O grupo de utilizadores é um trabalho em progresso. O utilizador não poderá administrar a instância por meio da interface de utilizador. Ainda estamos a auditar todos os endpoints da API de gestão para garantir que eles limitam corretamente o acesso aos administradores."
+ },
+ "zha": {
+ "add_device": "Adicionar Dispositivo",
+ "add_device_page": {
+ "discovered_text": "Os dispositivos aparecem aqui uma vez descobertos.",
+ "no_devices_found": "Nenhum dispositivo encontrado, verifique se estão no modo de emparelhamento e mantenha-os acordados enquanto a procura está em execução.",
+ "pairing_mode": "Verifique se seus dispositivos estão no modo de emparelhamento. Verifique as instruções do seu dispositivo sobre como fazer isso.",
+ "search_again": "Pesquisar Novamente",
+ "spinner": "À procura de dispositivos ZHA Zigbee…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Atributos do cluster selecionado",
+ "get_zigbee_attribute": "Obter atributo Zigbee",
+ "header": "Atributos do cluster",
+ "help_attribute_dropdown": "Selecione um atributo para visualizar ou definir o seu valor.",
+ "help_get_zigbee_attribute": "Obter o valor para o atributo selecionado.",
+ "help_set_zigbee_attribute": "Definir valor do atributo para o cluster especificado na entidade especificada.",
+ "introduction": "Ver e editar atributos do cluster.",
+ "set_zigbee_attribute": "Definir atributo Zigbee"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Comandos do cluster selecionado",
+ "header": "Comandos de cluster",
+ "help_command_dropdown": "Selecione um comando com o qual interagir.",
+ "introduction": "Ver e emitir comandos de cluster.",
+ "issue_zigbee_command": "Emitir comando ZigBee"
+ },
+ "clusters": {
+ "header": "",
+ "help_cluster_dropdown": "Selecione um cluster para visualizar atributos e comandos.",
+ "introduction": "Os Clusters são blocos de construção da funcionalidade Zigbee, separam a funcionalidade em unidades lógicas. Existem do tipo cliente e servidor, e são compostos por atributos e comandos."
+ },
+ "common": {
+ "clusters": "Clusters",
+ "manufacturer_code_override": "Substituição do código do fabricante",
+ "value": "Valor"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Atalhos",
+ "update_button": "Atualizar Configuração"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Configuração Concluída",
+ "CONFIGURED_status_text": "A inicializar",
+ "INITIALIZED": "Inicialização Concluída",
+ "INITIALIZED_status_text": "O dispositivo está pronto para uso",
+ "INTERVIEW_COMPLETE": "Entrevista Concluída",
+ "INTERVIEW_COMPLETE_status_text": "A configurar",
+ "PAIRED": "Dispositivo Encontrado",
+ "PAIRED_status_text": "A iniciar entrevista"
+ },
+ "group_binding": {
+ "bind_button_help": "Vincule o grupo selecionado aos clusters de dispositivos selecionados.",
+ "bind_button_label": "Vincular grupo",
+ "cluster_selection_help": "Selecione clusters para vincular ao grupo selecionado.",
+ "group_picker_help": "Selecione um grupo para emitir um comando de vinculação.",
+ "group_picker_label": "Grupos vinculáveis",
+ "header": "Vinculação de Grupos",
+ "introduction": "Vincule e desvincule grupos.",
+ "unbind_button_help": "Desvincule o grupo selecionado dos clusters de dispositivos selecionados.",
+ "unbind_button_label": "Desvincular Grupo"
+ },
+ "groups": {
+ "add_group": "Adicionar Grupo",
+ "add_members": "Adicionar membros",
+ "caption": "Grupos",
+ "create": "Criar Grupo",
+ "create_group": "Zigbee Home Automation - Criar Grupo",
+ "create_group_details": "Introduza os detalhes necessários para criar grupo Zigbee",
+ "creating_group": "Criação de Grupo",
+ "delete": "Eliminar Grupo",
+ "group_details": "Aqui estão todos os detalhes do grupo Zigbee selecionado.",
+ "group_id": "ID do grupo",
+ "group_info": "Informações sobre o grupo",
+ "group_name_placeholder": "Nome do Grupo",
+ "group_not_found": "Grupo não encontrado!",
+ "groups": "Grupos",
+ "members": "Membros",
+ "remove_members": "Remover membros",
+ "removing_members": "A remover de membros"
+ },
+ "network": {
+ "caption": "Rede"
+ },
+ "visualization": {
+ "auto_zoom": "Zoom Automático",
+ "caption": "Visualização",
+ "header": "Visualização de Rede",
+ "highlight_label": "Destacar Dispositivos",
+ "refresh_topology": "Atualizar Topologia",
+ "zoom_label": "Zoom no Dispositivo"
+ }
+ },
+ "zone": {
+ "add_zone": "Adicionar Zona",
+ "caption": "Zonas",
+ "configured_in_yaml": "As zonas configuradas via configuration.yaml não podem ser editadas na interface de utilizador.",
+ "confirm_delete": "Tem a certeza de que pretende eliminar esta zona?",
+ "create_zone": "Criar zona",
+ "description": "Gerir as zonas nas quais deseja localizar pessoas.",
+ "detail": {
+ "create": "Criar",
+ "delete": "Eliminar",
+ "icon": "Ícone",
+ "icon_error_msg": "O ícone deve estar no formato \"prefixo:nome_do_icon\", por exemplo: \"mdi:home\"",
+ "latitude": "Latitude",
+ "longitude": "Longitude",
+ "name": "Nome",
+ "new_zone": "Nova Zona",
+ "passive": "Passivo",
+ "passive_note": "As zonas passivas estão ocultas na interface de utilizador e não são utilizadas como zonas para localização de dispositivos. Isto é útil se pretender usá-las apenas para automatizações.",
+ "radius": "Raio",
+ "required_error_msg": "Este campo é obrigatório",
+ "update": "Atualizar"
+ },
+ "edit_home_zone": "O raio da zona \"casa\" ainda não pode ser editado a partir da interface de utilizador. Mova o marcador no mapa para alterar a localização da zona.",
+ "edit_home_zone_narrow": "O raio da zona \"casa\" ainda não pode ser editado a partir da interface de utilizador. A localização pode ser modificada a partir da configuração geral.",
+ "edit_zone": "Editar Zona",
+ "go_to_core_config": "Ir para a configuração geral?",
+ "home_zone_core_config": "A localização da sua zona \"casa\" é editável na página de configuração geral. O raio dessa zona ainda não pode ser editado a partir da interface de utilizador. Deseja ir para a configuração geral?",
+ "introduction": "As zonas permitem especificar determinadas regiões da Terra. Quando uma pessoa está dentro de uma zona, o estado assume o nome da zona. As zonas também podem ser usadas como gatilho ou condição nas configurações de automatização.",
+ "no_zones_created_yet": "Parece que ainda não criou nenhuma zona."
+ },
+ "zwave": {
+ "common": {
+ "index": "Índice",
+ "instance": "Instância",
+ "unknown": "Desconhecido",
+ "value": "Valor",
+ "wakeup_interval": "Intervalo para acordar"
+ },
+ "description": "Gerir a sua rede Z-Wave",
+ "learn_more": "Saiba mais sobre o Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "Migrar para OpenZWave",
+ "introduction": "Este assistente irá ajudá-lo a migrar da integração Z-Wave antiga para a integração OpenZWave que está atualmente em fase beta."
+ },
+ "zwave_js": {
+ "header": "Migrar para Z-Wave JS",
+ "introduction": "Esta integração já não é mantida, e aconselhamo-lo a passar para a nova integração Z-Wave JS. Este assistente irá ajudá-lo a migrar da integração herdada da Z-Wave para a nova integração Z-Wave JS."
+ }
+ },
+ "network_management": {
+ "header": "Gestão da rede Z-Wave",
+ "introduction": "Executar comando que afeta a rede Z-Wave. Não obterá feedback se grande parte dos comandos concluírem com sucesso, mas pode verificar o registo OZW para tentar descobrir."
+ },
+ "network_status": {
+ "network_started": "Rede Z-Wave iniciada.",
+ "network_started_note_all_queried": "Todos os nós foram inquiridos.",
+ "network_started_note_some_queried": "Os nós acordados foram inquiridos. Os nós adormecidos serão inquiridos quando acordarem.",
+ "network_starting": "A iniciar a rede Z-Wave…",
+ "network_starting_note": "Isto pode demorar algum tempo dependendo do tamanho da sua rede.",
+ "network_stopped": "Rede Z-Wave parada."
+ },
+ "node_config": {
+ "config_parameter": "Parâmetro de configuração",
+ "config_value": "Valor de Configuração",
+ "false": "Falso",
+ "header": "Opções de configuração de nó",
+ "seconds": "Segundos",
+ "set_config_parameter": "Definir o Parâmetro de Configuração",
+ "set_wakeup": "Definir intervalo para acordar",
+ "true": "Verdadeiro"
+ },
+ "node_management": {
+ "add_to_group": "Adicionar ao Grupo",
+ "entities": "Entidades deste nó",
+ "entity_info": "Informações da Entidade",
+ "exclude_entity": "Eliminar esta entidade do Home Assistant",
+ "group": "Grupo",
+ "header": "Gestão de nó Z-Wave",
+ "introduction": "Execute comandos Z-Wave que afetam um único nó. Escolha um nó para ver uma lista dos comandos disponíveis.",
+ "max_associations": "Máximo de Associações:",
+ "node_group_associations": "Associações de grupos de nós",
+ "node_protection": "Proteção de nó",
+ "node_to_control": "Configurar opções do nó",
+ "nodes": "Nós",
+ "nodes_hint": "Selecione o nó para visualizar as opções por nó",
+ "nodes_in_group": "Outros nós neste grupo:",
+ "pooling_intensity": "Intensidade de interrogação",
+ "protection": "Proteção",
+ "remove_broadcast": "Remover Difusão",
+ "remove_from_group": "Remover do Grupo",
+ "set_protection": "Definir Proteção"
+ },
+ "ozw_log": {
+ "header": "Log OZW",
+ "introduction": "Veja o log. 0 é o mínimo (carrega o log inteiro) e 1000 é o máximo. Ao carregar irá ser mostrado um log estático e a cauda será atualizada automaticamente com o último número especificado de linhas do log.",
+ "last_log_lines": "Número de últimas linhas de log",
+ "load": "Carga",
+ "tail": "Cauda"
+ },
+ "services": {
+ "add_node": "Adicionar nó",
+ "add_node_secure": "Adicionar nó seguro",
+ "cancel_command": "Cancelar comando",
+ "heal_network": "Curar a Rede",
+ "heal_node": "Recuperar Nó",
+ "node_info": "Informação do Nó",
+ "print_node": "Imprimir Nó",
+ "refresh_entity": "Atualizar Entidade",
+ "refresh_node": "Atualizar Nó",
+ "remove_failed_node": "Remover Nó Avariado",
+ "remove_node": "Remover nó",
+ "replace_failed_node": "Substituir Nó Avariado",
+ "save_config": "Guardar configuração",
+ "soft_reset": "Reinicio suave",
+ "start_network": "Iniciar a rede",
+ "stop_network": "Parar a rede",
+ "test_network": "Testar rede",
+ "test_node": "Testar o Nó"
+ },
+ "values": {
+ "header": "Valores do Nó"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Cancelar Inclusão",
+ "check_logs": "Por favor, verifique os logs para mais informações.",
+ "choose_inclusion_strategy": "Como deseja adicionar o seu dispositivo",
+ "controller_in_inclusion_mode": "O seu controlador Z-Wave está agora em modo de inclusão.",
+ "enter_qr_code": "Introduza o valor do código QR",
+ "follow_device_instructions": "Siga as instruções que vieram com o seu dispositivo para ativar o modo de emparelhamento.",
+ "inclusion_failed": "Não foi possível adicionar o dispositivo.",
+ "inclusion_finished": "O dispositivo foi adicionado.",
+ "interview_failed": "A entrevista do dispositivo falhou. Informações adicionais poderão estar disponíveis nos logs.",
+ "interview_started": "O dispositivo está a ser entrevistado. Poderá demorar algum tempo.",
+ "introduction": "Este assistente irá guiá-lo para adicionar um nó à sua rede Z-Wave.",
+ "provisioning_finished": "O dispositivo foi adicionado. Assim que o ligar, ele ficará disponível.",
+ "qr_code": "Código QR",
+ "qr_code_paragraph": "Se o seu dispositivo suporta SmartStart, pode ler o código QR para facilitar o emparelhamento.",
+ "scan_qr_code": "Ler código QR",
+ "searching_device": "À procura do dispositivo",
+ "secure_inclusion_warning": "Dispositivos seguros requerem mais largura de banda; demasiados dispositivos seguros podem diminuir a performance da rede Z-Wave. Recomendamos que apenas sejam adicionados dispositivos seguros estritamente necessários, como fechaduras e aberturas de garagem.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Exemplo: Fechaduras antigas sem suporte S2",
+ "title": ""
+ },
+ "S2_AccessControl": {
+ "description": "Exemplo: Fechaduras e portas de garagem",
+ "title": ""
+ },
+ "S2_Authenticated": {
+ "description": "Exemplo: Iluminação, Sensores e Sistemas de Segurança",
+ "title": ""
+ },
+ "S2_Unauthenticated": {
+ "description": "Como S2 Authenticated, mas sem verificação de que o dispositivo correto está incluído",
+ "title": ""
+ }
+ },
+ "select_camera": "Selecionar câmara",
+ "start_inclusion": "Iniciar Inclusão",
+ "start_secure_inclusion": "Iniciar a Inclusão Segura",
+ "title": "Adicionar um nó Z-Wave",
+ "use_secure_inclusion": "Utilizar inclusão segura",
+ "view_device": "Mostrar Dispositivo"
+ },
+ "common": {
+ "add_node": "Adicionar dispositivo",
+ "back": "Voltar",
+ "close": "Fechar",
+ "heal_network": "Recuperar Rede",
+ "home_id": "ID de Casa",
+ "network": "Rede",
+ "node_id": "ID de Dispositivo",
+ "reconfigure_server": "Reconfigurar o servidor",
+ "remove_node": "Remover dispositivo",
+ "source": "Origem"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n one {dispositivo}\n other {dispositivos}\n}",
+ "driver_version": "Versão do Driver",
+ "dump_dead_nodes_text": "Alguns dos seus dispositivos não responderam e presume-se que estejam desativados. Estes não serão totalmente exportados.",
+ "dump_dead_nodes_title": "Alguns de seus dispositivos estão desativados",
+ "dump_debug": "Descarregar dados",
+ "dump_not_ready_confirm": "Descarregar",
+ "dump_not_ready_text": "Se criar uma exportação enquanto nem todos os dispositivos estiverem prontos, poderá perder dados necessários. Dê algum tempo à sua rede para consultar todos os dispositivos. Pretende continuar com a exportação mesmo assim?",
+ "dump_not_ready_title": "Ainda nem todos os dispositivos estão prontos",
+ "header": "Gerir a sua rede Z-Wave",
+ "home_id": "ID de Casa",
+ "introduction": "Gerir a sua rede Z-Wave e respetivos dispositivos",
+ "nodes_ready": "Dispositivos prontos",
+ "not_ready": "{count} não prontos",
+ "provisioned_devices": "Dispositivos aprovisionados",
+ "server_url": "URL do servidor",
+ "server_version": "Versão do Servidor"
+ },
+ "device_info": {
+ "device_config": "Configurar Dispositivo",
+ "heal_node": "Recuperar Dispositivo",
+ "highest_security": "Segurança Máxima",
+ "is_secure": "Seguro",
+ "node_ready": "Dispositivo Pronto",
+ "node_status": "Estado do Dispositivo",
+ "reinterview_device": "Voltar a Entrevistar Dispositivo",
+ "remove_failed": "Remover Dispositivo Avariado",
+ "unknown": "Desconhecido",
+ "zwave_info": "Informações sobre Z-Wave",
+ "zwave_plus": "",
+ "zwave_plus_version": "Versão {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "A recuperação da rede foi cancelada.",
+ "healing_complete": "A recuperação da rede está concluída.",
+ "healing_failed": "A recuperação falhou. Informações adicionais poderão estar disponíveis nos logs.",
+ "in_progress": "A recuperação da rede está em curso. Isto pode demorar algum tempo.",
+ "introduction": "Inicie uma recuperação de rede na sua rede Z-Wave. Uma recuperação de rede fará com que todos os dispositivos voltem a calcular as suas rotas para o controlador e é recomendada se tiver movido recentemente dispositivos ou o seu controlador.",
+ "run_in_background": "Pode fechar esta janela e a recuperação da rede continuará em segundo plano.",
+ "start_heal": "Iniciar Recuperação",
+ "stop_heal": "Parar Recuperação",
+ "title": "Recupere a sua rede Z-Wave",
+ "traffic_warning": "O processo de recuperação gera uma grande quantidade de tráfego na rede Z-Wave. Isto pode levar a que os dispositivos respondam lentamente (ou não respondam de todo) enquanto a recuperação está em curso."
+ },
+ "heal_node": {
+ "healing_complete": "{device} foi recuperado.",
+ "healing_failed": "Não foi possível recuperar {device}.",
+ "healing_failed_check_logs": "Informações adicionais poderão estar disponíveis nos logs.",
+ "in_progress": "A recuperação de {device} está em curso.",
+ "introduction": "Instruir {device} para atualizar as suas rotas de volta para o controlador. Isto pode ajudar em questões de comunicação se tiver movido recentemente o dispositivo ou o seu controlador.",
+ "network_heal_in_progress": "A recuperação de rede Z-Wave já está em curso. Por favor, aguarde que termine antes de recuperar um dispositivo individual.",
+ "start_heal": "Recuperar Dispositivo",
+ "title": "Recuperar um dispositivo Z-Wave",
+ "traffic_warning": "O processo de recuperação gera uma grande quantidade de tráfego na rede Z-Wave. Isto pode levar a que os dispositivos respondam lentamente (ou não respondam de todo) enquanto a recuperação está em curso."
+ },
+ "logs": {
+ "download_logs": "Descarregar logs",
+ "log_level": "Nível de Log",
+ "log_level_changed": "Nível de Log alterado para: {level}",
+ "subscribed_to_logs": "Mensagens de log do Z-Wave JS subscritas…",
+ "title": "Logs Z-Wave JS"
+ },
+ "navigation": {
+ "logs": "Logs",
+ "network": "Rede"
+ },
+ "network_status": {
+ "connected": "Ligado",
+ "connecting": "A ligar",
+ "unknown": "Desconhecido"
+ },
+ "node_config": {
+ "attribution": "Os parâmetros e descrições da configuração do dispositivo são fornecidos pelo {device_database}.",
+ "battery_device_notice": "Os dispositivos a bateria devem estar acordados para atualizar a sua configuração. Consulte o manual do seu dispositivo para obter instruções sobre como acordar o dispositivo.",
+ "error_device_not_found": "Dispositivo não encontrado",
+ "header": "Configuração do Dispositivo Z-Wave",
+ "introduction": "Gira e ajuste parâmetros de configuração específicos para o dispositivo selecionado",
+ "parameter": "Parâmetro",
+ "parameter_is_read_only": "Este parâmetro é só de leitura.",
+ "set_param_accepted": "O parâmetro foi atualizado.",
+ "set_param_error": "Ocorreu um erro.",
+ "set_param_queued": "A alteração do parâmetro foi colocada na fila e será atualizada quando o dispositivo acordar.",
+ "zwave_js_device_database": "Base de dados de dispositivos Z-Wave JS"
+ },
+ "node_status": {
+ "alive": "Ativo",
+ "asleep": "Adormecido",
+ "awake": "Acordado",
+ "dead": "Inativo",
+ "unknown": "Desconhecido"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "Se desconfigurar o dispositivo, este não será adicionado ao Home Assistant quando for ligado. Se já tiver sido adicionado ao Home Assistant, a remoção do dispositivo aprovisionado não o removerá do Home Assistant.",
+ "confirm_unprovision_title": "Tem a certeza de que quer desconfigurar o dispositivo?",
+ "dsk": "",
+ "included": "Incluído",
+ "not_included": "Não Incluído",
+ "security_classes": "Classes de segurança",
+ "unprovison": "Desconfigurar"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "Terá de acordar dispositivos alimentados a bateria antes de iniciar o processo de entrevista. Consulte o manual do seu dispositivo para obter instruções sobre como acordar o dispositivo.",
+ "in_progress": "O dispositivo está a ser entrevistado. Poderá demorar algum tempo.",
+ "interview_complete": "Entrevista ao dispositivo concluída.",
+ "interview_failed": "A entrevista ao dispositivo falhou. Informações adicionais poderão estar disponíveis nos logs.",
+ "introduction": "Volte a entrevistar um dispositivo na sua rede Z-Wave. Utilize esta funcionalidade se o seu dispositivo não estiver a funcionar corretamente.",
+ "run_in_background": "Pode fechar esta janela e a entrevista continuará em segundo plano.",
+ "start_reinterview": "Iniciar Nova Entrevista",
+ "title": "Voltar a Entrevistar um Dispositivo Z-Wave"
+ },
+ "remove_failed_node": {
+ "in_progress": "A remoção do dispositivo está em curso.",
+ "introduction": "Remova um dispositivo avariado da sua rede Z-Wave. Utilize isto se não conseguir excluir um dispositivo normalmente por estar avariado.",
+ "removal_failed": "O dispositivo não pôde ser removido da sua rede Z-Wave.",
+ "removal_finished": "O dispositivo {id} foi removido da sua rede Z-Wave.",
+ "remove_device": "Remover Dispositivo",
+ "title": "Remover um Dispositivo Z-Wave Avariado"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Cancelar Exclusão",
+ "controller_in_exclusion_mode": "O seu controlador Z-Wave está agora em modo de exclusão.",
+ "exclusion_failed": "Não foi possível remover o dispositivo. Por favor verifique os logs para mais informações.",
+ "exclusion_finished": "O dispositivo {id} foi removido da sua rede Z-Wave.",
+ "follow_device_instructions": "Siga as instruções que vieram com o seu dispositivo para desencadear a exclusão no dispositivo.",
+ "introduction": "Remova o dispositivo da sua rede Z-Wave, e os dispositivos e entidades associadas do Home Assistant.",
+ "start_exclusion": "Iniciar Exclusão",
+ "title": "Remover um dispositivo Z-Wave"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Nenhum"
+ },
+ "S0_Legacy": {
+ "description": "Exemplo: Fechaduras antigas sem suporte S2",
+ "title": ""
+ },
+ "S2_AccessControl": {
+ "description": "Exemplo: Fechaduras e portas de garagem",
+ "title": ""
+ },
+ "S2_Authenticated": {
+ "description": "Exemplo: Iluminação, Sensores e Sistemas de Segurança",
+ "title": ""
+ },
+ "S2_Unauthenticated": {
+ "description": "Como S2 Authenticated, mas sem verificação de que o dispositivo correto está incluído",
+ "title": ""
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Terá acesso a todos os dados no Home Assistant.",
+ "hide_message": "Verifique os documentos para o componente panel_custom para ocultar esta mensagem",
+ "question_trust": "Confia no painel externo {nome} em {link}?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Escutas ativas",
+ "alert_event_type": "O tipo de evento é um campo obrigatório",
+ "available_events": "Eventos Disponíveis",
+ "count_listeners": "({count} escutas)",
+ "data": "Dados do evento (YAML, opcional)",
+ "description": "Dispare um evento aqui.",
+ "documentation": "Documentação sobre eventos",
+ "event_fired": "Evento {name} despoletado às",
+ "fire_event": "Disparar Evento",
+ "listen_to_events": "Ouça os eventos",
+ "listening_to": "A escutar",
+ "notification_event_fired": "Evento {type} despoletado com sucesso!",
+ "start_listening": "Começar a escutar",
+ "stop_listening": "Parar de escutar",
+ "subscribe_to": "Evento a subscrever",
+ "title": "Eventos",
+ "type": "Tipo de Evento"
+ },
+ "services": {
+ "accepts_target": "Este serviço aceita um destino, por exemplo: `entity_id: light.bed_light`",
+ "all_parameters": "Todos os parâmetros disponíveis",
+ "call_service": "Chamar serviço",
+ "column_description": "Descrição",
+ "column_example": "Exemplo",
+ "column_parameter": "Parâmetro",
+ "description": "A ferramenta serviços, permite-lhe chamar qualquer serviço disponível no Home Assistant.",
+ "fill_example_data": "Preencher com dados do exemplo",
+ "no_template_ui_support": "A interface de utilizador não suporta templates, pode sempre utilizar o editor YAML.",
+ "title": "Serviços",
+ "ui_mode": "Ir para o modo UI",
+ "yaml_mode": "Ir para o modo YAML",
+ "yaml_parameters": "Parametros apenas disponíveis no modo YAML"
+ },
+ "states": {
+ "alert_entity_field": "Entidade é um campo obrigatório",
+ "attributes": "Atributos",
+ "copy_id": "Copiar ID para a Área de Transferência",
+ "current_entities": "Entidades atuais",
+ "description1": "Defina a representação do estado atual de uma entidade no Home Assistant.",
+ "description2": "Se a entidade pertencer a um dispositivo, não haverá comunicação com o dispositivo.",
+ "entity": "Entidade",
+ "filter_attributes": "Filtrar atributos",
+ "filter_entities": "Filtrar entidades",
+ "filter_states": "Filtrar estados",
+ "last_changed": "Última modificação",
+ "last_updated": "Última atualização",
+ "more_info": "Mais informações",
+ "no_entities": "Sem entidades",
+ "set_state": "Definir Estado",
+ "state": "Estado",
+ "state_attributes": "Atributos de estado (YAML, opcional)",
+ "title": "Estados"
+ },
+ "statistics": {
+ "entity": "Entidade",
+ "fix_issue": {
+ "fix": "Resolver problema",
+ "units_changed": {
+ "clear": "Excluir todos os dados estatísticos antigos para esta entidade",
+ "fix": "Resolver problema",
+ "title": "A unidade desta entidade foi alterada",
+ "update": "Atualizar os valores estatísticos antigos de ''{metadata_unit}'' para ''{state_unit}''."
+ }
+ },
+ "issue": "Problema",
+ "issues": {
+ "entity_no_longer_recorded": "Esta entidade já não está a ser registada.",
+ "entity_not_recorded": "Esta entidade está excluída de ser registada.",
+ "no_state": "Não existe um estado disponível para esta entidade.",
+ "units_changed": "A unidade desta entidade mudou de ''{metadata_unit}'' para ''{state_unit}''.",
+ "unsupported_state_class": "A classe de estado ''{state_class}'' desta entidade não é suportada.",
+ "unsupported_unit": "A unidade (''{state_unit}'') desta entidade não corresponde a uma unidade da classe de dispositivo (device_class) ''{device_class}''.",
+ "unsupported_unit_metadata": "A unidade (''{metadata_unit}') das estatísticas registadas não corresponde à unidade suportada ''{supported_unit}'' da classe de dispositivo ''{device_class}'.",
+ "unsupported_unit_state": "A unidade (''{state_unit}') desta entidade não corresponde a uma unidade da classe de dispositivo ''{device_class}'."
+ },
+ "no_issue": "Sem problema",
+ "title": "Estatisticas"
+ },
+ "templates": {
+ "all_listeners": "Este template escuta todos os eventos de mudança de estado.",
+ "description": "Os templates são processados pelo motor de templates Jinja2 com algumas extensões específicas do Home Assistant",
+ "domain": "Domínio",
+ "editor": "Editor de Templates",
+ "entity": "Entidade",
+ "jinja_documentation": "Documentação sobre templates Jinja2",
+ "listeners": "Este template escuta os seguintes eventos de mudança de estado:",
+ "no_listeners": "Este modelo não monitoriza nenhum evento e não será atualizado automaticamente.",
+ "reset": "Repor template de demonstração",
+ "result_type": "Tipo de resultado",
+ "template_extensions": "Extensões de templates do Home Assistant",
+ "time": "Este template atualiza ao início de cada minuto",
+ "title": "Templates",
+ "unknown_error_template": "Erro desconhecido ao processar o template"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Monitorizar dispositivos individuais",
+ "energy_distribution_title": "Distribuição de energia",
+ "energy_gas_graph_title": "Consumo de gás",
+ "energy_solar_graph_title": "Produção solar",
+ "energy_sources_table_title": "Fontes",
+ "energy_usage_graph_title": "Utilização de energia"
+ },
+ "charts": {
+ "by_device": "Consumo por dispositivo",
+ "solar": "Solar",
+ "stat_house_energy_meter": "Consumo total de energia"
+ },
+ "setup": {
+ "back": "Anterior",
+ "done": "Mostrem-me o meu painel de energia!",
+ "next": "Seguinte"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Só é possível utilizar esta funcionalidade quando tiver assumido o controlo do Lovelace.",
+ "saving_failed": "Erro ao guardar a configuração da interface Lovelace.",
+ "yaml_unsupported": "Não é possível utilizar esta funcionalidade se estiver a utilizar o Lovelace em modo YAML."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Tem a certeza de que pretende executar a ação \"{action}\"?",
+ "no_entity_more_info": "Não foi especificada nenhuma entidade para a janela de mais informações",
+ "no_entity_toggle": "Não foi especificada nenhuma entidade para comutar",
+ "no_navigation_path": "Não foi especificado nenhum caminho de navegação",
+ "no_service": "Não foi especificado o serviço a executar",
+ "no_url": "Não foi especificado o URL para abrir"
+ },
+ "confirm_delete": "Tem a certeza que quer apagar este cartão?",
+ "empty_state": {
+ "go_to_integrations_page": "Ir para a página de integrações.",
+ "no_devices": "Esta página permite-lhe controlar os seus dispositivos, no entanto, parece que ainda não tem dispositivos configurados. Vá para a página de integrações para começar.",
+ "title": "Bem-vindo a casa"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "Este cartão indica quanto da energia consumida pela sua casa foi gerada utilizando fontes não fósseis como solar, eólica e nuclear. Quanto mais alto, melhor!",
+ "non_fossil_energy_consumed": "Energia não fóssil consumida",
+ "non_fossil_energy_not_calculated": "A energia não fóssil consumida não pôde ser calculada"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Utilização de energia"
+ },
+ "energy_distribution": {
+ "battery": "Bateria",
+ "gas": "Gás",
+ "go_to_energy_dashboard": "Ir para o painel de energia",
+ "grid": "Rede",
+ "home": "Início",
+ "non_fossil": "Não fóssil",
+ "solar": "Solar",
+ "title_today": "Distribuição de energia hoje"
+ },
+ "energy_solar_graph": {
+ "forecast": "Previsão {name}",
+ "production": "Produção {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Total da bateria",
+ "cost": "Custo",
+ "energy": "Energia",
+ "grid_total": "Total da rede",
+ "source": "Fonte",
+ "total_costs": "Custos totais"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Combinado da rede",
+ "consumed_battery": "Consumo bateria",
+ "consumed_solar": "Consumo solar",
+ "total_consumed": "Total consumido {num} kWh",
+ "total_returned": "Total devolvido {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Se a agulha estiver no roxo, devolveu mais energia à rede do que aquela que consumiu a partir dela. Se estiver no azul, consumiu mais energia da rede do que a que devolveu.",
+ "energy_dependency": "Este cartão indica o seu consumo líquido de energia.",
+ "grid_neutrality_not_calculated": "A neutralidade da rede não pôde ser calculada",
+ "net_consumed_grid": "Consumo líquido a partir da rede",
+ "net_returned_grid": "Retorno líquido à rede",
+ "red_green_color_explain": "Se for verde, significa que produziu mais energia do que aquela que consumiu a partir da rede. Se estiver no vermelho, significa que utilizou a rede para uma parte do consumo de energia da sua casa."
+ },
+ "loading": "A carregar...",
+ "no_data": "Não existem dados a mostrar. Pode levar até 2 horas para que novos dados cheguem depois de configurar o seu painel energético.",
+ "no_data_period": "Não existem dados para este período.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "Este cartão indica a quantidade de energia solar produzida que foi utilizada pela sua casa em vez de ser devolvida à rede.",
+ "card_indicates_solar_energy_used_charge_home_bat": "Se este número for tipicamente muito baixo, indicando um excesso de produção solar, considere carregar uma bateria doméstica ou um carro elétrico dos seus painéis solares em alturas de alta produção solar.",
+ "not_produced_solar_energy": "Não produziu nenhuma energia solar",
+ "self_consumed_solar_could_not_calc": "Não foi possível calcular a energia solar autoconsumida",
+ "self_consumed_solar_energy": "Energia solar autoconsumida"
+ }
+ },
+ "entities": {
+ "never_triggered": "Nunca"
+ },
+ "iframe": {
+ "error_secure_context": "Impossível carregar iframes apontados para páginas web utilizando {target_protocol} se o Home Assistant for servido sobre {context_protocol}."
+ },
+ "map": {
+ "reset_focus": "Repor o foco"
+ },
+ "picture-elements": {
+ "call_service": "Chamar o serviço {name}",
+ "hold": "Mantenha:",
+ "more_info": "Mostrar mais informações: {name}",
+ "navigate_to": "Navegue até {location}",
+ "tap": "Toque:",
+ "toggle": "Alternar {name}",
+ "url": "Abrir janela para {url_path}"
+ },
+ "safe-mode": {
+ "description": "O Home Assistant teve problemas ao carregar a configuração e está em execução no modo de segurança. Consulte os logs para saber o que está a causar o problema.",
+ "header": "Modo de Segurança Ativado"
+ },
+ "shopping-list": {
+ "add_item": "Adicionar Item",
+ "checked_items": "Itens marcados",
+ "clear_items": "Limpar itens marcados",
+ "drag_and_drop": "Arrastar e largar",
+ "reorder_items": "Reordenar itens"
+ },
+ "show_more_info": "Mostrar mais informações",
+ "starting": {
+ "description": "O Home Assistant está a inicializar, por favor aguarde..."
+ }
+ },
+ "changed_toast": {
+ "message": "A configuração do Lovelace foi atualizada para este painel, gostaria de atualizar para verificar as alterações?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Dia",
+ "month": "Mês",
+ "next": "Seguinte",
+ "previous": "Anterior",
+ "today": "Hoje",
+ "week": "Semana",
+ "year": "Ano"
+ },
+ "timestamp-display": {
+ "invalid": "Data / hora inválido",
+ "invalid_format": "Formato inválido"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Chamar serviço",
+ "default_action": "Ação por defeito",
+ "more-info": "Mais informações",
+ "navigate": "Navegar",
+ "none": "Nenhuma Ação",
+ "toggle": "Alternar",
+ "url": "URL"
+ },
+ "navigation_path": "URL de navegação",
+ "url_path": "Endereço URL"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Estados Disponíveis",
+ "description": "O cartão Painel de Alarme permite-lhe armar e desarmar as integrações do seu painel de controlo de alarme.",
+ "name": "Painel de alarme"
+ },
+ "area": {
+ "description": "O cartão Área mostra automaticamente as entidades associadas a uma determinada área.",
+ "name": "Área",
+ "show_camera": "Mostrar imagem da câmara em vez da imagem da área"
+ },
+ "button": {
+ "default_action_help": "A acção por defeito depende das capacidades da entidade, ou será comutada ou será mostrada uma janela informativa.",
+ "description": "O cartão Botão permite-lhe adicionar botões para realizar tarefas.",
+ "name": "Botão"
+ },
+ "calendar": {
+ "calendar_entities": "Entidades do calendário",
+ "description": "O cartão Calendário mostra um calendário incluindo dia, semana e uma visualização de lista",
+ "inital_view": "Vista Inicial",
+ "name": "Calendário",
+ "views": {
+ "dayGridDay": "Dia",
+ "dayGridMonth": "Mês",
+ "listWeek": "Lista"
+ }
+ },
+ "conditional": {
+ "card": "Cartão",
+ "change_type": "Alterar tipo",
+ "condition_explanation": "O cartão será mostrado quando TODAS as condições abaixo forem cumpridas.",
+ "conditions": "Condições",
+ "current_state": "atual",
+ "description": "O cartão Condicional mostra outro cartão com base nos estados das entidades.",
+ "name": "Condicional",
+ "state_equal": "Quando o estado não é",
+ "state_not_equal": "Quando o estado é"
+ },
+ "config": {
+ "optional": "opcional",
+ "required": "obrigatório"
+ },
+ "entities": {
+ "description": "O cartão Entidades é o tipo de cartão mais comum. Agrupa entidades numa lista.",
+ "edit_special_row": "Visualize os detalhes desta linha pressionando o botão editar",
+ "entity_row": {
+ "attribute": "Atributo",
+ "button": "Botão",
+ "buttons": "Botões",
+ "call-service": "Chamar serviço",
+ "cast": "Cast",
+ "conditional": "Condicional",
+ "divider": "Divisor",
+ "section": "Seção",
+ "weblink": "Ligação Web"
+ },
+ "entity_row_editor": "Editor de Linha de Entidade",
+ "name": "Entidades",
+ "secondary_info_values": {
+ "brightness": "Brilho",
+ "entity-id": "ID da entidade",
+ "last-changed": "Última modificação",
+ "last-triggered": "Última Ocorrência",
+ "last-updated": "Última Atualização",
+ "none": "Sem informações secundárias",
+ "position": "Posição",
+ "tilt-position": "Posição de Inclinação"
+ },
+ "show_header_toggle": "Show Header Toggle?",
+ "special_row": "linha especial",
+ "toggle": "Alternar entidades."
+ },
+ "entity-filter": {
+ "description": "O cartão Filtro de Entidade permite-lhe definir uma lista de entidades que pretende ver apenas quando se encontram num determinado estado.",
+ "name": "Filtro de entidade"
+ },
+ "entity": {
+ "description": "O cartão Entidade fornece uma vista rápida do estado da sua entidade.",
+ "name": "Entidade"
+ },
+ "gauge": {
+ "description": "O cartão Manómetro permite-lhe visualizar dados de um sensor em forma de manómetro.",
+ "name": "Manómetro",
+ "needle_gauge": "Mostrar como medidor de ponteiro?",
+ "severity": {
+ "define": "Definir gravidade?",
+ "green": "Verde",
+ "red": "Vermelho",
+ "yellow": "Amarelo"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Rácio de Proporção",
+ "attribute": "Atributo",
+ "camera_image": "Entidade de Câmera",
+ "camera_view": "Vista da Câmera",
+ "days_to_show": "Dias a Mostrar",
+ "double_tap_action": "Ação de Dois Toques",
+ "entities": "Entidades",
+ "entity": "Entidade",
+ "hold_action": "Ação de retenção",
+ "hours_to_show": "Horas a mostrar",
+ "icon": "Ícone",
+ "icon_height": "Altura do ícone",
+ "image": "Endereço para imagem",
+ "manual": "Manual",
+ "manual_description": "Precisa de adicionar um cartão personalizado ou apenas pretende escrever manualmente o YAML?",
+ "maximum": "Máximo",
+ "minimum": "Mínimo",
+ "name": "Nome",
+ "no_theme": "Nenhum tema",
+ "refresh_interval": "Intervalo entre atualizações",
+ "search": "Procurar",
+ "secondary_info_attribute": "Atributo de informação secundária",
+ "show_icon": "Mostrar Ícone?",
+ "show_name": "Mostrar nome?",
+ "show_state": "Mostrar Estado?",
+ "state": "Estado",
+ "state_color": "Ícones coloridos com base no estado?",
+ "tap_action": "Toque em Ação",
+ "theme": "Tema",
+ "title": "Título",
+ "unit": "Unidade",
+ "url": "Url"
+ },
+ "glance": {
+ "columns": "Colunas",
+ "description": "O cartão Relance é útil para agrupar vários sensores numa vista geral compacta.",
+ "name": "Relance"
+ },
+ "grid": {
+ "columns": "Colunas",
+ "description": "O cartão Grelha permite mostrar vários cartões numa grelha.",
+ "name": "Grelha",
+ "square": "Apresentar cartões quadrados"
+ },
+ "history-graph": {
+ "description": "O cartão Gráfico de Histórico permite-lhe mostrar um gráfico com um histórico de estados para cada uma das entidades listadas.",
+ "name": "Gráfico de histórico"
+ },
+ "horizontal-stack": {
+ "description": "O cartão Agrupamento Horizontal permite-lhe agrupar vários cartões para que estes fiquem sempre na mesma linha.",
+ "name": "Agrupamento Horizontal"
+ },
+ "humidifier": {
+ "description": "O cartão Humidificador dá-lhe o controlo da sua entidade de humidificação ou desumidificação, permitindo alterar a humidade e o modo da entidade.",
+ "name": "Humidificador"
+ },
+ "iframe": {
+ "description": "O cartão Página Web, permite-lhe incorporar a sua página favorita da Internet diretamente no Home Assistant.",
+ "name": "Página Web"
+ },
+ "light": {
+ "description": "O cartão Luz permite-lhe alterar o brilho de uma luz.",
+ "name": "Luz"
+ },
+ "logbook": {
+ "description": "O cartão Diário de Bordo mostra uma lista de eventos ocorridos com as entidades",
+ "name": "Registos"
+ },
+ "map": {
+ "dark_mode": "Modo escuro?",
+ "default_zoom": "Zoom padrão",
+ "description": "O cartão Mapa permite-lhe mostrar entidades num mapa.",
+ "geo_location_sources": "Fontes de Geolocalização",
+ "hours_to_show": "Horas a mostrar",
+ "name": "Mapa",
+ "source": "Fonte"
+ },
+ "markdown": {
+ "content": "Conteúdo",
+ "description": "O cartão Markdown é usado para processar Markdown.",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "description": "O cartão Controlo Multimédia é usado para mostrar entidades leitoras de multimédia numa interface com comandos fáceis de usar.",
+ "name": "Controlo multimédia"
+ },
+ "picture-elements": {
+ "description": "O cartão Elementos em Imagem é um dos tipos de cartões mais versáteis. Permite-lhe posicionar ícones ou texto e até mesmo serviços sobre uma imagem, com base em coordenadas.",
+ "name": "Elementos da imagem"
+ },
+ "picture-entity": {
+ "description": "O cartão Entidade Imagem mostra uma entidade sob a forma de uma imagem. Em vez de imagens de um URL, também pode mostrar images de entidades de câmara.",
+ "name": "Entidade de imagem"
+ },
+ "picture-glance": {
+ "description": "O cartão Vista de Imagem mostra uma imagem e os estados das entidades correspondentes como um ícone. As entidades do lado direito permitem ações de comutação, outras mostram a janela mais informações.",
+ "name": "Vista sobre imagem",
+ "state_entity": "Entidade de Estado"
+ },
+ "picture": {
+ "description": "O cartão Imagem permite definir uma imagem a ser usada para navegação em vários pontos na sua interface ou para chamar um serviço.",
+ "name": "Imagem"
+ },
+ "plant-status": {
+ "description": "O cartão Estado da Planta é dedicado a todos os adoráveis botanistas por aí.",
+ "name": "Estado da planta"
+ },
+ "sensor": {
+ "description": "O cartão Sensor dá-lhe uma vista rápida do estado dos seus sensores com um gráfico opcional para visualizar as alterações ao longo do tempo.",
+ "graph_type": "Tipo De Gráfico",
+ "name": "Sensor",
+ "show_more_detail": "Mostrar mais detalhes"
+ },
+ "shopping-list": {
+ "description": "O cartão Lista de Compras permite adicionar, editar, marcar e limpar itens da sua lista de compras.",
+ "integration_not_loaded": "Este cartão requer que a integração `Lista de Compras` seja configurada.",
+ "name": "Lista de compras"
+ },
+ "statistics-graph": {
+ "description": "O cartão Gráfico de Estatísticas permite visualizar um gráfico das estatísticas de cada uma das entidades listadas.",
+ "name": "Gráfico de Estatísticas",
+ "period": "Período",
+ "periods": {
+ "5minute": "5 Minutos",
+ "day": "Dia",
+ "hour": "Hora",
+ "month": "Mês"
+ }
+ },
+ "thermostat": {
+ "description": "O cartão Termóstato dá-lhe o controlo da sua entidade de climatização. Permitindo alterar a temperatura e o modo dessa entidade.",
+ "name": "Termóstato"
+ },
+ "vertical-stack": {
+ "description": "O cartão Agrupamento Vertical permite agrupar vários cartões para que estes fiquem sempre na mesma coluna.",
+ "name": "Agrupamento Vertical"
+ },
+ "weather-forecast": {
+ "description": "O cartão Previsão do Tempo mostra o estado do tempo. Muito útil para incluir nas vistas que colocamos na parede.",
+ "name": "Previsão do tempo",
+ "show_both": "Mostrar o estado do tempo atual e a previsão",
+ "show_forecast": "Mostrar previsão do tempo",
+ "show_only_current": "Mostrar apenas o estado do tempo atual",
+ "show_only_forecast": "Mostrar apenas a previsão"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Por tipo de cartão",
+ "by_entity": "Pela Entidade",
+ "custom_card": "Personalizado",
+ "domain": "Domínio",
+ "entity": "Entidade",
+ "no_description": "Não há descrição disponível."
+ },
+ "common": {
+ "add": "Adicionar",
+ "clear": "Limpar",
+ "edit": "Editar",
+ "none": "Nenhum"
+ },
+ "edit_badges": {
+ "panel_mode": "Estes crachás não serão exibidos porque esta vista está em \"Modo Painel\".",
+ "view_no_badges": "Os crachás não são suportados pelo tipo de vista atual."
+ },
+ "edit_card": {
+ "add": "Adicionar Cartão",
+ "clear": "Limpar",
+ "confirm_cancel": "Tem a certeza de que pretende cancelar?",
+ "delete": "Apagar Cartão",
+ "duplicate": "Duplicar cartão",
+ "edit": "Editar",
+ "header": "Configuração do Cartão",
+ "move": "Mover para vista",
+ "move_after": "Mover cartão após",
+ "move_before": "Mover cartão antes de",
+ "move_down": "Mover cartão para baixo",
+ "move_up": "Mover cartão para cima",
+ "options": "Mais opções",
+ "pick_card": "Que cartão gostaria de adicionar?",
+ "pick_card_view_title": "Que cartão gostaria de adicionar à sua vista {name}?",
+ "search_cards": "Procurar cartões",
+ "show_code_editor": "Mostrar Editor de Código",
+ "show_visual_editor": "Mostrar Editor Visual",
+ "toggle_editor": "Alternar Editor",
+ "typed_header": "Configuração do Cartão {type}",
+ "unsaved_changes": "Existem alterações não guardadas"
+ },
+ "edit_lovelace": {
+ "edit_title": "Editar título",
+ "explanation": "Este título é mostrado acima de todas as suas vistas na interface Lovelace.",
+ "header": "Título da sua interface do Lovelace",
+ "title": "Título"
+ },
+ "edit_view": {
+ "add": "Acrescentar vista",
+ "delete": "Apagar a vista",
+ "edit": "Editar vista",
+ "header": "Ver configuração",
+ "header_name": "Configuração da Vista {name} ",
+ "move_left": "Mover vista para a esquerda",
+ "move_right": "Mover vista para a direita",
+ "tab_badges": "Crachás",
+ "tab_settings": "Configurações",
+ "tab_visibility": "Visibilidade",
+ "type": "Tipo de vista",
+ "types": {
+ "masonry": "Masonry (por defeito)",
+ "panel": "Painel (1 cartão)",
+ "sidebar": "Barra Lateral"
+ },
+ "visibility": {
+ "select_users": "Selecione quais os utilizadores que podem consultar esta vista"
+ }
+ },
+ "header": "Editar UI",
+ "header-footer": {
+ "choose_header_footer": "Escolhe um {type}",
+ "footer": "Rodapé",
+ "header": "Cabeçalho",
+ "types": {
+ "buttons": {
+ "name": "Botões"
+ },
+ "graph": {
+ "name": "Gráfico"
+ },
+ "picture": {
+ "name": "Imagem"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Gerir paineis",
+ "manage_resources": "Gerir recursos",
+ "open": "Abrir menu Lovelace IU",
+ "raw_editor": "Editor de configuração do código-fonte"
+ },
+ "migrate": {
+ "header": "Configuração Incompatível",
+ "migrate": "Migrar a configuração",
+ "para_migrate": "Ao clicar em 'Migrar configuração', o Home Assistant pode adicionar IDs a todos os seus cartões e vistas automaticamente.",
+ "para_no_id": "Este elemento não possui um ID. Por favor adicione um ID a este elemento em 'ui-lovelace.yaml'."
+ },
+ "move_card": {
+ "header": "Escolha uma vista para onde mover o cartão"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Iremos gerar automaticamente vistas Lovelace com as suas áreas e dispositivos se remover a sua configuração do Lovelace.",
+ "confirm_remove_config_title": "Tem a certeza de que deseja remover a configuração da interface de utilizador Lovelace?",
+ "confirm_unsaved_changes": "Existem alterações não guardadas. De certeza de que quer sair?",
+ "confirm_unsaved_comments": "A sua configuração parece conter comentários, que não serão guardados. Deseja continuar?",
+ "error_invalid_config": "A sua configuração não é válida: {error}",
+ "error_parse_yaml": "Não foi possível analisar o YAML: {error}",
+ "error_remove": "Não foi possível remover a configuração: {error}",
+ "error_save_yaml": "Não é possível salvar o YAML: {error}",
+ "header": "Editar Configuração",
+ "lovelace_changed": "A configuração do Lovelace foi atualizada, deseja carregar a configuração atualizada no editor e perder as suas alterações?",
+ "reload": "Recarregar",
+ "resources_moved": "Os recursos não devem mais ser adicionados no editor de configuração de painéis Lovelace, mas podem ser adicionados nas definições de painéis.",
+ "save": "Guardar",
+ "saved": "Guardada",
+ "unsaved_changes": "Alterações não guardadas"
+ },
+ "save_config": {
+ "close": "Fechar",
+ "empty_config": "Começar com um painel de instrumentos vazio",
+ "header": "Assumir controle sobre a interface do Lovelace",
+ "para": "Por omissão o Home Assistant irá manter a sua interface de utilizador, atualizando-a sempre que uma nova entidade ou novos componentes IU Lovelace fiquem disponíveis. Se assumir o controlo, não faremos mais alterações automáticas por si. Poderá sempre criar um novo dashboard na configuração para fazer testes.",
+ "para_sure": "Tem certeza que deseja assumir o controlo sobre a interface de utilizador?",
+ "save": "Assumir o controlo",
+ "yaml_config": "Para o ajudar a começar, aqui está a configuração atual deste painel:",
+ "yaml_control": "Para assumir o controle no modo YAML, crie um ficheiro YAML com o nome que especificou na sua configuração para este painel de controle, ou o padrão 'ui-lovelace.yaml'.",
+ "yaml_mode": "Está a usar o modo YAML para este painel, o que significa que não pode alterar a sua configuração Lovelace a partir da UI. Se quiser alterar este painel a partir da UI, remova 'mode: yaml' da configuração Lovelace em 'configuration.yaml'."
+ },
+ "select_view": {
+ "dashboard_label": "Painel de Instrumentos",
+ "header": "Escolha uma vista",
+ "views_label": "Ver"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Editor de Rodapé",
+ "header": "Editor de Cabeçalho",
+ "row": "Editor de Linha de Entidade"
+ }
+ },
+ "suggest_card": {
+ "add": "Adicionar ao Lovelace",
+ "create_own": "Escolha um cartão diferente",
+ "header": "Criámos uma sugestão para si."
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Esta vista contém mais do que um cartão, mas a vista de painel só pode mostrar 1 cartão."
+ }
+ }
+ },
+ "menu": {
+ "close": "Fechar",
+ "configure_ui": "Configurar Painel",
+ "exit_edit_mode": "Feito",
+ "help": "Ajuda",
+ "reload_resources": "Recarregar recursos",
+ "start_conversation": "Iniciar conversa"
+ },
+ "reload_lovelace": "Recarregar UI",
+ "reload_resources": {
+ "refresh_body": "É preciso atualizar a página para concluir o carregamento. Deseja atualizar agora?",
+ "refresh_header": "Deseja atualizar?"
+ },
+ "unused_entities": {
+ "available_entities": "Estas são as entidades que tem disponíveis, mas que ainda não estão no seu Lovelace UI.",
+ "domain": "Domínio",
+ "entity": "Entidade",
+ "entity_id": "ID da Entidade",
+ "last_changed": "Última ocorrência",
+ "no_data": "Não foram encontradas entidades não utilizadas",
+ "search": "Procurar entidades",
+ "select_to_add": "Selecione as entidades que deseja adicionar a um cartão e depois clique no botão adicionar cartão.",
+ "title": "Entidades não expostas"
+ },
+ "views": {
+ "confirm_delete": "Eliminar vista?",
+ "confirm_delete_existing_cards": "Eliminar esta vista vai também remover os cartões",
+ "confirm_delete_existing_cards_text": "Tem a certeza de que deseja eliminar a vista ''{name}''? A vista contém {number} cartões que serão apagados. Esta ação não pode ser revertida.",
+ "confirm_delete_text": "Tem a certeza de que deseja eliminar a vista ''{name}''?"
+ },
+ "warning": {
+ "attribute_not_found": "O atributo {attribute} não está disponível em: {entity}",
+ "entity_non_numeric": "A entidade é não numérica: {entity}",
+ "entity_not_found": "Entidade não disponível: {entity}",
+ "entity_unavailable": "{entity} está de momento indisponível",
+ "starting": "O Home Assistant está a inicializar, nem tudo está já disponível..."
+ }
+ },
+ "mailbox": {
+ "delete_button": "Apagar",
+ "delete_prompt": "Apagar esta mensagem?",
+ "empty": "Não tem qualquer mensagem nova",
+ "playback_title": "Reproduzir mensagem"
+ },
+ "map": {
+ "edit_zones": "Editar Zonas"
+ },
+ "my": {
+ "component_not_loaded": "Este redirecionamento não é compatível com a instância do Home Assistant. É necessária a integração {integration} para utilizar este redirecionamento.",
+ "documentation": "documentação",
+ "error": "Ocorreu um erro desconhecido",
+ "faq_link": "My Home Assistant FAQ",
+ "no_supervisor": "Este redirecionamento não é suportado pela sua instalação de Home Assistant. Necessita ou do Home Assistant OS, ou do Home Assistant Supervised. Para mais informações, consultar {docs_link}.",
+ "not_supported": "Este redirecionamento não é compatível com a instância do Home Assistant. Consulte {link} para conhecer os redirecionamentos suportados e a versão em que foram introduzidos."
+ },
+ "page-authorize": {
+ "abort_intro": "Início de sessão cancelado",
+ "authorizing_client": "Está prestes a dar acesso a {clientId} à sua instância do Home Assistant.",
+ "form": {
+ "error": "Erro: {error}",
+ "next": "Iniciar Sessão",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Sessão expirou, por favor entre novamente."
+ },
+ "error": {
+ "invalid_auth": "Nome de utilizador ou palavra-passe inválida",
+ "invalid_code": "Código de autenticação inválido"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Palavra-passe",
+ "username": "Utilizador"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Código de autenticações por dois fatores"
+ },
+ "description": "Abra o **{mfa_module_name}** no seu dispositivo para ver o código de autenticação por dois factores e verificar a sua identidade."
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Sessão expirou, por favor entre novamente."
+ },
+ "error": {
+ "invalid_auth": "Nome de utilizador ou palavra-passe inválida",
+ "invalid_code": "Código de autenticação inválido"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Palavra-passe",
+ "username": "Utilizador"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Código de autenticação por dois factores"
+ },
+ "description": "Abra o **{mfa_module_name}** no seu dispositivo para ver o código de autenticação por dois factores e verificar a sua identidade."
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Sessão expirou, por favor entre novamente.",
+ "no_api_password_set": "Não tem uma palavra-passe para a API configurada."
+ },
+ "error": {
+ "invalid_auth": "Palavra-passe para API inválida",
+ "invalid_code": "Código de autenticação inválido"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Palavra-passe para API"
+ },
+ "description": "Por favor, insira a palavra-passe da API na sua configuração HTTP:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Código de autenticação por dois factores"
+ },
+ "description": "Abra o **{mfa_module_name}** no seu dispositivo para ver o código de autenticação por dois factores e verificar a sua identidade."
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "O seu computador não está na lista de endereços permitidos."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Utilizador"
+ },
+ "description": "Por favor selecione o utilizador com o qual pretende entrar:"
+ }
+ }
+ }
+ },
+ "start_over": "Recomeçar",
+ "unknown_error": "Algo correu mal",
+ "working": "Por favor, aguarde"
+ },
+ "initializing": "A inicializar",
+ "logging_in_to_with": "A iniciar sessão em **{locationName}** com **{authProviderName}**.",
+ "logging_in_with": "Iniciar a sessão com **{authProviderName}**.",
+ "pick_auth_provider": "Ou entre com",
+ "store_token": "Manter sessão iniciada"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "por {name}",
+ "introduction": "Bem vindo a casa! Chegou à demonstração do Home Assistant, onde exibimos as melhores UIs criadas pela nossa comunidade.",
+ "learn_more": "Saiba mais sobre o Home Assistant",
+ "next_demo": "Próxima demonstração"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Atividade",
+ "air": "Ar",
+ "commute_home": "Deslocação até casa",
+ "entertainment": "Entretenimento",
+ "hdmi_input": "Entrada HDMI",
+ "hdmi_switcher": "Comutador HDMI",
+ "information": "Informação",
+ "lights": "Luzes",
+ "morning_commute": "Trajeto da manhã",
+ "total_tv_time": "Tempo total de TV",
+ "turn_tv_off": "Desligar a televisão",
+ "volume": "Volume"
+ },
+ "names": {
+ "family_room": "Sala",
+ "hallway": "Corredor",
+ "kitchen": "Cozinha",
+ "left": "Esquerda",
+ "master_bedroom": "Quarto principal",
+ "mirror": "Espelho",
+ "patio": "Pátio",
+ "right": "Direita",
+ "temperature_study": "Estudo da Temperatura",
+ "upstairs": "Andar de cima"
+ },
+ "unit": {
+ "minutes_abbr": "min",
+ "watching": "a assistir"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Seguinte"
+ },
+ "core-config": {
+ "button_detect": "Detetar",
+ "finish": "Próxima",
+ "intro": "Olá {name}, bem-vindo ao Home Assistant. Que nome quer dar à sua casa?",
+ "intro_location": "Gostaríamos de saber onde vive. Esta informação ajudará a mostrar informações e a configurar automatizações baseadas no sol. Os dados nunca são partilhados para fora da sua rede.",
+ "intro_location_detect": "Podemos ajudá-lo a preencher esta informação fazendo um pedido único a um serviço externo.",
+ "location_name": "Nome da instalação do Home Assistant",
+ "location_name_default": "Início"
+ },
+ "finish": "Terminar",
+ "integration": {
+ "finish": "Terminar",
+ "intro": "Dispositivos e serviços são representados no Home Assistant como integrações. Pode configurá-los agora ou fazê-lo mais tarde no ecrã de configuração.",
+ "more_integrations": "Mais"
+ },
+ "intro": "Está pronto para despertar a sua casa, reclamar a sua privacidade e juntar-se a uma comunidade mundial de tecnólogos?",
+ "next": "Seguinte",
+ "restore": {
+ "addons": "Add-ons",
+ "confirm_password": "Confirmar palavra-passe da cópia de segurança",
+ "description": "Em alternativa, pode restaurar a partir de uma cópia de segurança anterior.",
+ "folders": "Pastas",
+ "full_backup": "Cópia de segurança completa",
+ "hide_log": "Ocultar log completo",
+ "in_progress": "Restauração em curso",
+ "partial_backup": "Cópia de segurança parcial",
+ "password": "Palavra-passe da cópia de segurança",
+ "password_protection": "Proteção por palavra-passe",
+ "select_type": "Selecione o que restaurar",
+ "show_log": "Mostrar log completo",
+ "type": "Tipo de cópia de segurança"
+ },
+ "user": {
+ "create_account": "Criar conta",
+ "data": {
+ "name": "Nome",
+ "password": "Palavra-passe",
+ "password_confirm": "Confirme a palavra-passe",
+ "username": "Utilizador"
+ },
+ "error": {
+ "password_not_match": "As palavras-passe não coincidem",
+ "required_fields": "Preencha todos os campos obrigatórios"
+ },
+ "intro": "Vamos começar por criar um utilizador.",
+ "required_field": "Obrigatório"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Desbloqueia funcionalidades avançadas.",
+ "link_promo": "Saber mais",
+ "title": "Modo avançado"
+ },
+ "change_password": {
+ "confirm_new_password": "Confirmar a nova palavra-passe",
+ "current_password": "Palavra-passe atual",
+ "error_new_is_old": "A nova palavra-passe deve ser diferente da palavra-passe atual",
+ "error_new_mismatch": "Os novos valores da palavra-passe introduzidos não coincidem",
+ "error_required": "Obrigatório",
+ "header": "Alterar palavra-passe",
+ "new_password": "Nova palavra-passe",
+ "submit": "Enviar",
+ "success": "Palavra-passe alterada com sucesso"
+ },
+ "current_user": "Esta atualmente ligado como {fullName}",
+ "customize_sidebar": {
+ "button": "Editar",
+ "description": "Pode também pressionar e segurar o cabeçalho da barra lateral para ativar o modo de edição.",
+ "header": "Altere a ordem e oculte os itens da barra lateral"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Visão geral (por defeito)",
+ "description": "Escolha um painel de instrumentos padrão para este dispositivo.",
+ "dropdown_label": "Painel de instrumentos",
+ "header": "Painel de instrumentos"
+ },
+ "enable_shortcuts": {
+ "description": "Ativar ou desativar atalhos de teclado para executar várias ações na interface de utilizador.",
+ "header": "Atalhos de Teclado"
+ },
+ "force_narrow": {
+ "description": "Isto esconderá por defeito a barra lateral, semelhante à experiência no telemóvel.",
+ "header": "Esconder sempre a barra lateral."
+ },
+ "is_owner": "Você é um proprietário.",
+ "language": {
+ "dropdown_label": "Idioma",
+ "header": "Idioma",
+ "link_promo": "Ajude na tradução"
+ },
+ "logout": "Sair",
+ "logout_text": "Tem a certeza de que pretende terminar sessão?",
+ "logout_title": "Sair?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Tem certeza de que deseja apagar o token de acesso de {name} ?",
+ "create": "Criar Token",
+ "create_failed": "Falha ao criar o token de acesso.",
+ "created": "Criado em {date}",
+ "delete_failed": "Falha ao criar o token de acesso.",
+ "description": "Crie tokens de acesso de longa duração para permitir que os seus scripts possam interagir com a sua instância do Home Assistant. Cada token será válido durante 10 anos após criação. Os seguintes tokens de acesso de longa duração estão atualmente activos.",
+ "empty_state": "Ainda não tem um token de longa duração",
+ "header": "Tokens de acesso de longa duração",
+ "learn_auth_requests": "Aprenda a fazer pedidos autenticados.",
+ "name": "Nome",
+ "prompt_copy_token": "Copie o seu token de acesso. Não será mostrado novamente.",
+ "prompt_name": "Nome?"
+ },
+ "mfa": {
+ "confirm_disable": "Tem certeza de que deseja desativar {name} ?",
+ "disable": "Desativar",
+ "enable": "Ativar",
+ "header": "Módulos de Autenticação por Multíplos-fatores"
+ },
+ "mfa_setup": {
+ "close": "Fechar",
+ "step_done": "Configuração concluída para {step}",
+ "submit": "Enviar",
+ "title_aborted": "Abortado",
+ "title_success": "Sucesso!"
+ },
+ "number_format": {
+ "description": "Escolha a forma como os números são formatados.",
+ "dropdown_label": "Formatação numérica",
+ "formats": {
+ "comma_decimal": "",
+ "decimal_comma": "",
+ "language": "Auto (usar a configuração de idioma)",
+ "none": "Nenhum",
+ "space_comma": "",
+ "system": "Utilizar a localização do sistema"
+ },
+ "header": "Formatação Numérica"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Nome do dispositivo",
+ "title": "Como se deve chamar este dispositivo?"
+ },
+ "description": "Enviar notificações para este dispositivo.",
+ "error_load_platform": "Configurar notify.html5.",
+ "error_use_https": "Requer SSL ativo para o interface principal",
+ "header": "Notificações push",
+ "link_promo": "Saiba mais",
+ "push_notifications": "Notificações push"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Tem certeza de que deseja apagar o \"refresh token\" de {name} ?",
+ "created_at": "Criado a {date}",
+ "current_token_tooltip": "Não é possível eliminar o \"refresh token\" actual",
+ "delete_failed": "Falha ao apagar o \"refresh token\"",
+ "description": "Cada \"refresh token\" representa uma sessão de utilizador. Os \"refresh tokens\" serão automaticamente removidos quando clicar em sair. Os seguintes \"refresh tokens\" estão activos para a sua conta.",
+ "header": "Atualizar Tokens",
+ "last_used": "Última utilização a {date} em {location}",
+ "not_used": "Nunca foi utilizado",
+ "token_title": "Atualizar o token de {clientId}"
+ },
+ "suspend": {
+ "description": "Devemos fechar a ligação ao servidor depois de estar em segundo plano por mais de 5 minutos?",
+ "header": "Fechar automaticamente a ligação"
+ },
+ "themes": {
+ "accent_color": "Cor de destaque",
+ "dark_mode": {
+ "auto": "Automático",
+ "dark": "Escuro",
+ "light": "Claro"
+ },
+ "dropdown_label": "Tema",
+ "error_no_theme": "Não há temas disponíveis.",
+ "header": "Tema",
+ "link_promo": "Saiba mais sobre temas",
+ "primary_color": "Cor primária",
+ "reset": "Repor"
+ },
+ "time_format": {
+ "description": "Escolha como os horários são formatados.",
+ "dropdown_label": "Formato de hora",
+ "formats": {
+ "12": "12 horas (AM/PM)",
+ "24": "24 horas",
+ "language": "Auto (usar configuração de idioma)",
+ "system": "Utilizar o formato do sistema"
+ },
+ "header": "Formato de Hora"
+ },
+ "vibrate": {
+ "description": "Ative ou desative a vibração neste dispositivo ao controlar dispositivos.",
+ "header": "Vibrar"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Iniciar conversa"
+ }
+ },
+ "sidebar": {
+ "done": "Feito",
+ "external_app_configuration": "Configuração da Aplicação",
+ "hide_panel": "Ocultar painel",
+ "show_panel": "Mostrar painel",
+ "sidebar_toggle": "Interruptor da barra lateral"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/ro.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/ro.json
new file mode 100644
index 00000000..00e5b8d6
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/ro.json
@@ -0,0 +1,3667 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Configurare intrare",
+ "device": "Dispozitiv",
+ "integration": "Integrare",
+ "user": "Utilizator"
+ }
+ },
+ "groups": {
+ "owner": "Proprietar",
+ "system-admin": "Administratori",
+ "system-read-only": "Utilizatori doar cu drepturi de citire",
+ "system-users": "Utilizatori"
+ },
+ "panel": {
+ "calendar": "Calendar",
+ "config": "Configurare",
+ "developer_tools": "Instrumente pentru dezvoltatori",
+ "history": "Istoric",
+ "logbook": "Jurnal",
+ "mailbox": "Cutie poștală",
+ "map": "Hartă",
+ "profile": "Profil",
+ "shopping_list": "Listă de cumpărături",
+ "states": "Interfață principală"
+ },
+ "state": {
+ "default": {
+ "off": "Oprit",
+ "on": "Pornit",
+ "unavailable": "Indisponibil",
+ "unknown": "Necunoscut"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Automat",
+ "off": "Oprit",
+ "on": "Pornit"
+ },
+ "hvac_action": {
+ "cooling": "Racește",
+ "drying": "Usucă",
+ "fan": "Ventilator",
+ "heating": "Încălzește",
+ "idle": "Inactiv",
+ "off": "Oprit"
+ },
+ "preset_mode": {
+ "activity": "Activitate",
+ "away": "Plecat",
+ "boost": "Boost",
+ "comfort": "Confort",
+ "eco": "Eco",
+ "home": "Acasă",
+ "none": "Nici unul",
+ "sleep": "Adormit"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Auto",
+ "away": "Plecat",
+ "baby": "Bebeluș",
+ "boost": "Boost",
+ "comfort": "Confort",
+ "eco": "Eco",
+ "home": "Acasa",
+ "normal": "Normal",
+ "sleep": "Somn"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Armat",
+ "armed_away": "Armat",
+ "armed_custom_bypass": "Armat",
+ "armed_home": "Armat",
+ "armed_night": "Armat",
+ "arming": "Armare",
+ "disarmed": "Dezar",
+ "disarming": "Dezar",
+ "pending": "În curs",
+ "triggered": "Decl"
+ },
+ "default": {
+ "entity_not_found": "Entitatea nu a fost găsită",
+ "error": "Eroare",
+ "unavailable": "Indisp",
+ "unknown": "Nec"
+ },
+ "device_tracker": {
+ "home": "Acasă",
+ "not_home": "Plecat"
+ },
+ "person": {
+ "home": "Acasă",
+ "not_home": "Plecat"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "header": "Audio"
+ },
+ "network": {
+ "disabled": "Dezactivat",
+ "header": "Rețea"
+ },
+ "no_configuration": "Acest add-on nu expune configurația pentru ca tu să te joci cu...",
+ "options": {
+ "edit_in_ui": "Modificați în interfața de utilizator",
+ "edit_in_yaml": "Editați în YAML",
+ "header": "Opțiuni",
+ "invalid_yaml": "YAML nevalid"
+ }
+ },
+ "dashboard": {
+ "changelog": "Jurnal de schimbări",
+ "option": {
+ "auto_update": {
+ "title": "Actualizare automată"
+ }
+ }
+ },
+ "panel": {
+ "configuration": "Configurare",
+ "documentation": "Documentație"
+ }
+ },
+ "backup": {
+ "confirm_password": "Confirmați parola copiei de rezervă",
+ "could_not_create": "Nu s-a putut crea o copie de rezervă",
+ "create_backup": "Creați o copie de rezervă",
+ "create_blocked_not_running": "Crearea unei copii de rezervă nu este posibilă acum, deoarece sistemul este în {state} .",
+ "delete_backup_confirm": "șterge",
+ "delete_backup_title": "Ștergeți copie de rezervă",
+ "delete_selected": "Ștergeți copiile de rezervă selectate",
+ "enter_password": "Vă rugăm să introduceți o parolă.",
+ "failed_to_delete": "Nu a reușit să șteargă",
+ "folders": "Dosare",
+ "full_backup": "Copie de rezervă completă",
+ "name": "Numele copiei de rezervă",
+ "partial_backup": "Copie de rezervă parțială",
+ "password": "Parola copiei de rezervă",
+ "selected": "{number} selectat",
+ "size": "Dimensiune",
+ "type": "Tipul copiei de rezervă",
+ "upload_backup": "Încărcați copie de rezervă"
+ },
+ "common": {
+ "description": "Descriere",
+ "error": {
+ "unknown": "Eroare necunoscută",
+ "update_failed": "Actualizare eșuată"
+ },
+ "learn_more": "Aflați mai multe",
+ "menu": "Meniu",
+ "new_version_available": "Versiune nouă disponibilă",
+ "newest_version": "Cea mai nouă versiune",
+ "show": "Arata",
+ "show_more": "Afișați mai multe informații despre acest lucru",
+ "update": "Actualizați",
+ "update_available": "{count, plural,\n un {Update}\n alte actualizări {{count}\n} în așteptare",
+ "version": "Versiune"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Sigur doriți să resetați toate opțiunile?",
+ "title": "Resetați opțiunile"
+ },
+ "update": {
+ "title": "Actualizați {name}"
+ }
+ },
+ "dashboard": {
+ "addons": "Suplimente instalate"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "moving_desc": "Repornirea și mutarea discului de date. Vă rugăm să aveți răbdare"
+ },
+ "hardware": {
+ "attributes": "Atribute",
+ "device_path": "Calea dispozitivului",
+ "search": "Căutare hardware",
+ "title": "Hardware"
+ },
+ "network": {
+ "disabled": "Dezactivat",
+ "dns_servers": "Servere DNS"
+ },
+ "registries": {
+ "password": "Parolă",
+ "username": "Nume de utilizator"
+ },
+ "repositories": {
+ "used": "Depozitul este utilizat pentru suplimentele instalate și nu poate fi eliminat."
+ },
+ "update": {
+ "backup": "Copie de rezervă",
+ "create_backup": "Creați o copie de rezervă a {name} înainte de actualizare",
+ "creating_backup": "Se creează o copie de rezervă a {name}",
+ "updating": "Se actualizează {name} la versiunea {version}"
+ }
+ },
+ "my": {
+ "error_addon_not_installed": "Componenta suplimentară solicitată nu este instalată. Vă rugăm să o instalați mai întâi",
+ "error_addon_not_started": "Componenta solicitată nu rulează. Vă rugăm să o porniți mai întâi"
+ },
+ "panel": {
+ "addons": "Addon-uri",
+ "dashboard": "Tablou de bord"
+ },
+ "system": {
+ "host": {
+ "docker_version": "Versiune Docker",
+ "ip_address": "Adresa IP",
+ "operating_system": "Sistem de operare",
+ "used_space": "Spațiu utilizat"
+ },
+ "supervisor": {
+ "beta_join_confirm": "Doriți să vă alăturați canalului beta?",
+ "channel": "Canal",
+ "leave_beta_action": "Părăsiți canalul beta",
+ "unsupported_reason": {
+ "docker_version": "Versiunea Docker",
+ "os": "Sistem de operare"
+ }
+ }
+ },
+ "update_available": {
+ "core_note": "Supervizorul va reveni la versiunea anterioara {version} dacă nu pornește după actualizare",
+ "create_backup": "Creaza backup inainte de actualizare",
+ "creating_backup": "Se creaza backup pentru {name}",
+ "description": "Aveți instalată {versiunea}. Faceți clic pe update pentru a actualiza la versiunea {newest_version}.",
+ "no_update": "Nu există actualizări pentru {name}",
+ "update_name": "Actualizați {name}",
+ "updating": "Se actualizează {name} la versiunea {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Doriți să rămâneți autentificat?",
+ "confirm": "Da",
+ "decline": "Nu"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Armat plecat",
+ "arm_custom_bypass": "Bypass personalizat",
+ "arm_home": "Armat acasă",
+ "arm_night": "Armat noaptea",
+ "arm_vacation": "Armat vacanță",
+ "clear_code": "Şterge",
+ "code": "Cod",
+ "disarm": "Dezarmat"
+ },
+ "area": {
+ "area_not_found": "Zona negăsită."
+ },
+ "automation": {
+ "last_triggered": "Ultima declanșare",
+ "trigger": "Execută"
+ },
+ "camera": {
+ "not_available": "Imagine indisponibilă"
+ },
+ "climate": {
+ "aux_heat": "Încălzire auxiliară",
+ "away_mode": "Mod plecat",
+ "cooling": "{name} răcește",
+ "current_temperature": "{name} temperatura curentă",
+ "currently": "În prezent",
+ "fan_mode": "Mod ventilator",
+ "heating": "{name} încălzește",
+ "high": "ridicat",
+ "low": "scăzut",
+ "on_off": "Pornit / Oprit",
+ "operation": "Operație",
+ "preset_mode": "Presetare",
+ "swing_mode": "Mod baleare",
+ "target_humidity": "Umiditatea țintă",
+ "target_temperature": "Temperatura țintă",
+ "target_temperature_entity": "{name} temperatura țintă",
+ "target_temperature_mode": "{name} temperatură țintă {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "decrement",
+ "increment": "increment",
+ "reset": "resetați"
+ }
+ },
+ "cover": {
+ "position": "Poziţie",
+ "tilt_position": "Poziție de înclinare"
+ },
+ "fan": {
+ "direction": "Direcţie",
+ "forward": "Înainte",
+ "oscillate": "Oscilare",
+ "preset_mode": "Mod presetat",
+ "reverse": "Invers",
+ "speed": "Viteză"
+ },
+ "humidifier": {
+ "humidity": "Umiditatea țintă",
+ "mode": "mod",
+ "on_entity": "{name} activat",
+ "target_humidity_entity": "{name} umiditate țintă"
+ },
+ "light": {
+ "brightness": "Luminozitate",
+ "cold_white_value": "Luminozitate albă rece",
+ "color_brightness": "Luminozitatea culorii",
+ "color_temperature": "Temperatură de culoare",
+ "effect": "Efect",
+ "warm_white_value": "Luminozitate albă caldă",
+ "white_value": "Luminozitate albă"
+ },
+ "lock": {
+ "code": "Cod",
+ "lock": "Blocat",
+ "unlock": "Deblocare"
+ },
+ "media_player": {
+ "media_next_track": "Următorul",
+ "media_pause": "Pauză",
+ "media_play": "Redare",
+ "media_play_pause": "Redare / pauză",
+ "media_previous_track": "Anterior",
+ "media_stop": "Oprire",
+ "media_volume_down": "Reduce volumului",
+ "media_volume_mute": "Dezactivare sunet volum",
+ "media_volume_unmute": "Se activează volumul",
+ "media_volume_up": "Crește volumul",
+ "nothing_playing": "Nu se reda nimic",
+ "sound_mode": "Mod sunet",
+ "source": "Sursă",
+ "text_to_speak": "Text pentru a vorbi",
+ "turn_off": "Opriți",
+ "turn_on": "Porniți"
+ },
+ "persistent_notification": {
+ "dismiss": "Renunțați"
+ },
+ "scene": {
+ "activate": "Activați"
+ },
+ "script": {
+ "cancel": "Anulare",
+ "cancel_multiple": "Anulați {number}"
+ },
+ "service": {
+ "run": "Rulați"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "anulare",
+ "finish": "finalizează",
+ "pause": "Pauză",
+ "start": "Începe"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Reluați curățarea",
+ "return_to_base": "Întoarcere la doc",
+ "start_cleaning": "Începe curățarea",
+ "turn_off": "Opriți",
+ "turn_on": "Porniți"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Mod plecat",
+ "currently": "În prezent",
+ "on_off": "Pornit / Oprit",
+ "operation": "Operație",
+ "target_temperature": "Temperatura țintă"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Presiunea aerului",
+ "humidity": "Umiditate",
+ "precipitation": "Precipitații",
+ "temperature": "Temperatura",
+ "visibility": "Vizibilitate",
+ "wind_speed": "Viteza vântului"
+ },
+ "cardinal_direction": {
+ "e": "Est",
+ "ene": "Est-Nord-Est",
+ "ese": "Est-Sud-Est",
+ "n": "Nord",
+ "ne": "Nord-Est",
+ "nne": "Nord-Nord-Est",
+ "nnw": "Nord-Nord-Vest",
+ "nw": "Nord-Vest",
+ "s": "Sud",
+ "se": "Sud-Est",
+ "sse": "Sud-Sud-Est",
+ "ssw": "Sud-Sud-Vest",
+ "sw": "Sud-Vest",
+ "w": "Vest",
+ "wnw": "Vest-Nord-Vest",
+ "wsw": "Vest-Sud-Vest"
+ },
+ "day": "Zi",
+ "forecast": "Prognoza meteo",
+ "high": "Ridicat",
+ "low": "Scăzut",
+ "night": "Noapte"
+ }
+ },
+ "common": {
+ "and": "Și",
+ "back": "Înapoi",
+ "cancel": "Anulează",
+ "close": "Închideți",
+ "continue": "Continuați",
+ "copied": "Copiat",
+ "copied_clipboard": "Copiat în clipboard",
+ "delete": "Șterge",
+ "disable": "Dezactivați",
+ "enable": "Activați",
+ "error_required": "Necesar",
+ "leave": "Ieșiți",
+ "loading": "Se încarcă",
+ "menu": "Meniu",
+ "move": "Mută",
+ "next": "Următorul",
+ "no": "Nu",
+ "not_now": "Nu acum",
+ "previous": "Anterior",
+ "refresh": "Reîmprospătare",
+ "remove": "Eliminați",
+ "rename": "Redenumiți",
+ "save": "Salvați",
+ "skip": "Săriți peste",
+ "stay": "Rămâneți",
+ "submit": "Trimiteți",
+ "successfully_deleted": "Șters cu succes",
+ "successfully_saved": "Opțiunile salvate cu succes.",
+ "undo": "Anulați",
+ "yes": "Da"
+ },
+ "components": {
+ "addon-picker": {
+ "error": {
+ "no_supervisor": {
+ "title": "Fără Supervisor"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Adăugați",
+ "failed_create_area": "Nu s-a reușit crearea zonei.",
+ "name": "Nume",
+ "text": "Introduceți numele noii zone.",
+ "title": "Adăugați o zonă nouă"
+ },
+ "add_new": "Adăugați o zonă nouă…",
+ "area": "Zonă",
+ "clear": "Ştergeți",
+ "no_areas": "Nu aveți zone",
+ "no_match": "Nu s-au găsit zone corespondente",
+ "show_areas": "Arată zonele"
+ },
+ "blueprint-picker": {
+ "add_user": "Adăugați utilizator",
+ "remove_user": "Eliminați utilizatorul",
+ "select_blueprint": "Selectați un plan"
+ },
+ "calendar": {
+ "my_calendars": "Calendarele mele",
+ "today": "Astăzi"
+ },
+ "data-table": {
+ "no-data": "Fără date",
+ "search": "Căutați"
+ },
+ "date-range-picker": {
+ "end_date": "Data de încheiere",
+ "select": "Selectați",
+ "start_date": "Data de început"
+ },
+ "device-picker": {
+ "clear": "Ştergeți",
+ "device": "Dispozitiv",
+ "no_area": "Nicio zonă",
+ "no_devices": "Nu aveți nici un dispozitiv",
+ "no_match": "Nu s-a găsit niciun dispozitiv corespondent",
+ "show_devices": "Afișați dispozitivele",
+ "toggle": "Comutați"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Atribut",
+ "show_attributes": "Afișați atributele"
+ },
+ "entity-picker": {
+ "clear": "Ştergeți",
+ "entity": "Entitate",
+ "no_match": "Nu a fost găsită nicio entitate potrivită",
+ "show_entities": "Arata entitatile"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "Integrarea istoricului este dezactivată",
+ "loading_history": "Se încarcă istoricul stărilor…",
+ "no_history_found": "Nici un istoric de stare nu a fost găsit."
+ },
+ "logbook": {
+ "by": "de",
+ "entries_not_found": "Nu s-au găsit intrări în jurnal.",
+ "messages": {
+ "became_unavailable": "a devenit indisponibil",
+ "changed_to_state": "schimbat în {state}",
+ "cleared_tampering": "manipularea frauduloasă eliminată",
+ "rose": "a crescut",
+ "set": "setați",
+ "turned_off": "oprit",
+ "turned_on": "pornit",
+ "was_at_home": "a fost detectat acasă",
+ "was_at_state": "a fost detectat la {state}",
+ "was_away": "a fost detectat plecat",
+ "was_closed": "a fost închis",
+ "was_connected": "a fost conectat",
+ "was_disconnected": "a fost deconectat",
+ "was_locked": "a fost încuiat",
+ "was_low": "a fost scăzut(ă)",
+ "was_normal": "a fost normal(ă)",
+ "was_opened": "a fost deschis",
+ "was_plugged_in": "a fost introdus în priză",
+ "was_safe": "era în siguranță",
+ "was_unlocked": "a fost deblocat",
+ "was_unplugged": "a fost scos din priză",
+ "was_unsafe": "nu era în siguranță"
+ }
+ },
+ "media-browser": {
+ "audio_not_supported": "Browserul dvs. nu acceptă elementul audio.",
+ "class": {
+ "album": "Album",
+ "app": "Aplicație",
+ "artist": "Artist",
+ "channel": "Canal",
+ "composer": "Compozitor",
+ "contributing_artist": "Artist contribuitor",
+ "directory": "Bibliotecă",
+ "episode": "Episod",
+ "game": "Joc",
+ "genre": "Gen",
+ "image": "Imagine",
+ "movie": "Film",
+ "music": "Muzică",
+ "playlist": "Listă de redare",
+ "podcast": "Podcast",
+ "season": "Sezon",
+ "track": "Pistă",
+ "tv_show": "Emisiune TV",
+ "url": "URL",
+ "video": "Video"
+ },
+ "documentation": "documentație",
+ "local_media_files": "Plasați fișierele video, audio și imagini în directorul media pentru a le putea naviga și reda în browser sau pe playere media acceptate.",
+ "media_player": "Media Player",
+ "no_items": "Niciun articol",
+ "no_local_media_found": "Nu s-a găsit niciun suport media local",
+ "pick": "Alegeți",
+ "play": "Redare",
+ "setup_local_help": "Verificați {documentation} despre cum se configurează fișierele media locale.",
+ "video_not_supported": "Browserul dvs. nu acceptă elementul video.",
+ "web-browser": "Browser web"
+ },
+ "picture-upload": {
+ "label": "Imagine",
+ "unsupported_format": "Format neacceptat, alegeți o imagine JPEG, PNG sau GIF."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Introduceți valoarea codului QR",
+ "manual_input": "Puteți scana codul QR cu un scanner QR si puteți lipi codul mai jos",
+ "not_supported": "Browserul dvs. nu acceptă scanarea QR.",
+ "only_https_supported": "Puteți folosi camera pentru a scana un cod QR doar când utilizați HTTPS.",
+ "select_camera": "Selectați camera"
+ },
+ "related-filter-menu": {
+ "filter": "Filtrează"
+ },
+ "related-items": {
+ "area": "Zonă",
+ "automation": "Parte din următoarele automatizări",
+ "device": "Dispozitiv",
+ "entity": "Entități conexe",
+ "group": "Parte din următoarele grupuri",
+ "integration": "Integrare",
+ "no_related_found": "Nu s-au găsit elemente corelate.",
+ "scene": "Parte din următoarele scenarii",
+ "script": "Parte din următoarele scripturi"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count}{count, plural,\n one { zi }\n other { zile }\n}",
+ "hour": "{count}{count, plural,\n one { ora }\n other { ore }\n}",
+ "minute": "{count} {count, plural,\n one { minut }\n other { minute }\n}",
+ "second": "{count} {count, plural,\none {secunda}\nother {secunde}\n}",
+ "week": "{count}{count, plural,\n one { săptămână }\n other { săptămâni }\n}"
+ },
+ "future_duration": {
+ "day": "În {count} {count, plural,\n one {zi}\n other {zile}\n}",
+ "hour": "În {count} {count, plural,\n one {oră}\n other {ore}\n}",
+ "minute": "În {count} {count, plural,\n one {minut}\n other {minute}\n}",
+ "second": "În {count} {count, plural,\n one {secundă}\n other {secunde}\n}",
+ "week": "În {count} {count, plural,\n one {săptămână}\n other {săptămâni}\n}"
+ },
+ "just_now": "Chiar acum",
+ "never": "Niciodată",
+ "past_duration": {
+ "day": "acum {count} {count, plural,\n one {zi}\n other {zile}\n}",
+ "hour": "acum {count} {count, plural,\n one {oră}\n other {ore}\n}",
+ "minute": "acum {count} {count, plural,\n one {minut}\n other {minute}\n}",
+ "second": "acum {count} {count, plural,\n one {secundă}\n other {secunde}\n}",
+ "week": "acum {count} {count, plural,\n one {săptămână}\n other {săptămâni}\n}"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Documentație de integrare"
+ },
+ "service-picker": {
+ "service": "Serviciu"
+ },
+ "statistic-picker": {
+ "statistic": "Statistică"
+ },
+ "statistics_charts": {
+ "statistic_types": {
+ "max": "max",
+ "mean": "medie",
+ "min": "min",
+ "sum": "sumă"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Alegeți zona",
+ "add_device_id": "Alegeți dispozitiv",
+ "add_entity_id": "Alegeți entitatea",
+ "expand_area_id": "Extindeți această zonă în dispozitivele și entitățile separate pe care le conține. După extindere, acesta nu va actualiza dispozitivele și entitățile atunci când zona se modifică.",
+ "expand_device_id": "Extindeți acest dispozitiv în entități separate. După extindere, acesta nu va actualiza entitățile atunci când dispozitivul se modifică.",
+ "remove_area_id": "Eliminați zona",
+ "remove_device_id": "Eliminați dispozitivul",
+ "remove_entity_id": "Eliminați entitatea"
+ },
+ "user-picker": {
+ "add_user": "Adăugați utilizator",
+ "no_user": "Niciun utilizator",
+ "remove_user": "Eliminați utilizatorul"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Dacă dispozitivele nou descoperite pentru {integration} ar trebui adăugate automat.",
+ "enable_new_entities_label": "Activați entitățile nou adăugate.",
+ "title": "Opțiuni de sistem pentru {integration}",
+ "update": "Actualizați"
+ },
+ "domain_toggler": {
+ "reset_entities": "Resetați entitățile",
+ "title": "Comutare domenii"
+ },
+ "entity_registry": {
+ "control": "Control",
+ "customize_link": "personalizarea entității",
+ "dismiss": "Renunțați",
+ "editor": {
+ "advanced": "Setări avansate",
+ "area": "Setați numai zona entității",
+ "area_note": "În mod implicit, entitățile unui dispozitiv se află în aceeași zonă cu dispozitivul. Dacă modificați zona acestei entități, aceasta nu va mai urma zona dispozitivului.",
+ "change_device_area": "Schimbați zona dispozitivului",
+ "confirm_delete": "Sigur doriți să ștergeți această intrare?",
+ "delete": "Ștergeți",
+ "device_classes": {
+ "cover": {
+ "garage": "Ușa de la garaj",
+ "window": "Fereastră"
+ }
+ },
+ "device_disabled": "Dispozitivul acestei entități este dezactivat.",
+ "enabled_cause": "Dezactivat de către {cause}.",
+ "enabled_delay_confirm": "Entitățile activate vor fi adăugate în Home Assistant în {delay} secunde",
+ "enabled_description": "Entitățile dezactivate nu vof fi adăugate in Home Assistant",
+ "enabled_label": "Activați entitatea",
+ "enabled_restart_confirm": "Reporniți Home Assistant pentru a finaliza activarea entităților",
+ "entity_id": "ID-ul entității",
+ "follow_device_area": "Urmați zona dispozitivului",
+ "icon": "Pictogramă",
+ "icon_error": "Pictogramele trebuie să fie în formatul 'prefix:iconname', de ex. 'mdi:home'",
+ "name": "Nume",
+ "note": "Notă: este posibil să nu funcționeze încă cu toate integrările.",
+ "open_device_settings": "Deschideți setările dispozitivului",
+ "unavailable": "Această entitate nu este disponibilă momentan.",
+ "update": "Actualizați"
+ },
+ "faq": "documentație",
+ "info_customize": "Puteți suprascrie unele atribute în secțiunea {customize_link}.",
+ "no_unique_id": "Această entitate („ {entity_id} ”) nu are un ID unic, prin urmare setările sale nu pot fi gestionate din interfața de utilizator. Consultați {faq_link} pentru mai multe detalii.",
+ "related": "În legătură cu",
+ "settings": "Setări"
+ },
+ "generic": {
+ "cancel": "Anulați",
+ "close": "închideți",
+ "default_confirmation_title": "Sunteți sigur?",
+ "ok": "OK"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Valoare inițială",
+ "maximum": "Valoare maximă",
+ "minimum": "Valoare minimă",
+ "restore": "Restabiliți ultima valoare cunoscută atunci când pornește Home Assistant",
+ "step": "Dimensiunea pasului"
+ },
+ "generic": {
+ "icon": "Pictogramă",
+ "name": "Nume"
+ },
+ "input_datetime": {
+ "date": "Data",
+ "datetime": "Data și ora",
+ "mode": "Ce doriți să introduceți",
+ "time": "Timp"
+ },
+ "input_number": {
+ "box": "Câmpul de intrare",
+ "max": "Valoare maximă",
+ "min": "Valoare minimă",
+ "mode": "Mod de afișare",
+ "slider": "Glisor",
+ "step": "Dimensiunea pasului",
+ "unit_of_measurement": "Unitate de măsură"
+ },
+ "input_select": {
+ "add": "Adăugați",
+ "add_option": "Adăugați o opțiune",
+ "no_options": "Nu există încă opțiuni.",
+ "options": "Opțiuni"
+ },
+ "input_text": {
+ "max": "Lungimea maximă",
+ "min": "Lungimea minimă",
+ "mode": "Mod de afișare",
+ "password": "Parolă",
+ "pattern": "Modelul Regex pentru validarea de partea clientului",
+ "text": "Text"
+ },
+ "platform_not_loaded": "Integrarea {platform} nu este încărcată. Vă rugăm să-i adăugați configurația dvs. fie adăugând 'default_config:' sau ''{platform}:''.",
+ "required_error_msg": "Acest câmp este obligatoriu",
+ "timer": {
+ "duration": "Durată"
+ },
+ "yaml_not_editable": "Setările acestei entități nu se pot edita din interfața grafica. Numai entitățile configurate in interfața grafica sunt configurabile din interfața grafica."
+ },
+ "image_cropper": {
+ "crop": "Decupează"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_tilt_cover": "Închideți înclinarea capacului"
+ },
+ "details": "Detalii",
+ "dismiss": "Se respinge dialogul",
+ "edit": "Editează entitatea",
+ "history": "Istoric",
+ "last_changed": "Ultima modificare",
+ "last_updated": "Ultima actualizare",
+ "person": {
+ "create_zone": "Creare zonă din locația curentă"
+ },
+ "restored": {
+ "confirm_remove_text": "Sigur doriți să eliminați această entitate?",
+ "confirm_remove_title": "Ștergeți entitatea?",
+ "not_provided": "Această entitate este momentan indisponibilă și este orfană pentru o integrare sau dispozitiv eliminat, modificat sau disfuncțional.",
+ "remove_action": "Eliminați entitatea",
+ "remove_intro": "Dacă entitatea nu mai este utilizată, aveți posibilitatea să o curățați eliminând-o."
+ },
+ "script": {
+ "last_action": "Ultima acțiune",
+ "last_triggered": "Ultima declanșare"
+ },
+ "settings": "Setări ale entității",
+ "show_more": "Arată mai mult",
+ "sun": {
+ "elevation": "Altitudine",
+ "rising": "Răsare",
+ "setting": "Setare"
+ },
+ "updater": {
+ "title": "Actualizați instrucțiunile"
+ },
+ "vacuum": {
+ "clean_spot": "Loc curat",
+ "commands": "Comenzi aspirator:",
+ "fan_speed": "Mod aspirare",
+ "locate": "Localizați",
+ "pause": "Pauză",
+ "return_home": "Întoarce-te acasă",
+ "start": "Start",
+ "start_pause": "Start/Pauză",
+ "status": "Stare",
+ "stop": "Stop"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Încercați să analizați mesajele MQTT ca JSON",
+ "entities": "Entități",
+ "no_entities": "Nu sunt entități",
+ "no_triggers": "Fără declanșatori",
+ "payload_display": "Afișare sarcină utilă",
+ "recent_messages": "cele mai recente {n} mesaje primite",
+ "show_as_yaml": "Afișați ca YAML",
+ "title": "Informații de depanare {device}",
+ "triggers": "Declanșatori"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Opțiuni"
+ },
+ "success": {
+ "description": "Opțiunile salvate cu succes."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Zone",
+ "automation": "Automatizări",
+ "blueprint": "Planuri",
+ "core": "General",
+ "customize": "Personalizări",
+ "devices": "Dispozitive",
+ "entities": "Entități",
+ "info": "Info",
+ "integrations": "Integrări",
+ "logs": "Jurnale",
+ "person": "Persoane",
+ "scene": "Scene",
+ "script": "Scripturi",
+ "users": "Utilizatori",
+ "zone": "Zone"
+ },
+ "reload": {
+ "automation": "Reîncărcați automatizările",
+ "core": "Reîncărcați locația și personalizările",
+ "group": "Reîncărcați grupurile, grupurile de entități și servicii de notificare de grup",
+ "homekit": "Reîncărcați HomeKit",
+ "mqtt": "Reîncărcați entitățile MQTT configurate manual",
+ "person": "Reîncărcați persoanele",
+ "reload": "Reîncărcați {domain}",
+ "rpi_gpio": "Reîncărcați entitățile Raspberry Pi GPIO",
+ "scene": "Reîncărcați scenele",
+ "script": "Reîncărcați scripturile",
+ "statistics": "Reîncărcați entitățile de statistică",
+ "template": "Reîncărcați șabloanele entităților",
+ "zone": "Reîncărcați zonele"
+ },
+ "server_control": {
+ "perform_action": "{action} Server",
+ "restart": "Reporniți",
+ "stop": "Stop"
+ }
+ },
+ "filter_placeholder": "Filtru entitate"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant nu a auzit nimic",
+ "error": "Oops, a apărut o eroare",
+ "found": "Am găsit următoarele pentru tine:",
+ "how_can_i_help": "Cu ce vă pot ajuta?",
+ "label": "Scrieți o întrebare și apăsați „Enter”",
+ "label_voice": "Tastați și apăsați „Enter” sau atingeți microfonul pentru a vorbi"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Adăugați dispozitive prin acest dispozitiv",
+ "reconfigure": "Reconfigurare dispozitiv",
+ "remove": "Eliminare dispozitiv",
+ "zigbee_information": "Semnătura dispozitivului Zigbee"
+ },
+ "confirmations": {
+ "remove": "Sunteți sigur că vreți să eliminați dispozitivul?"
+ },
+ "device_signature": "Semnătura dispozitivului Zigbee",
+ "last_seen": "Ultima dată văzut",
+ "manuf": "de {manufacturer}",
+ "no_area": "Nici o zonă",
+ "power_source": "Sursă de alimentare",
+ "services": {
+ "reconfigure": "Reconfigurați dispozitivul ZHA (dispozitiv de vindecare). Utilizați acest lucru dacă aveți probleme cu dispozitivul. Dacă dispozitivul în cauză este un dispozitiv alimentat cu baterii, asigurați-vă că este treaz și accepta comenzi atunci când utilizați acest serviciu.",
+ "remove": "Eliminați un dispozitiv din rețeaua Zigbee.",
+ "updateDeviceName": "Setați un nume personalizat pentru acest dispozitiv în registrul de dispozitive.",
+ "zigbee_information": "Vizualizați informațiile Zigbee pentru dispozitiv."
+ },
+ "unknown": "Necunoscut",
+ "zha_device_card": {
+ "device_name_placeholder": "Schimbați numele dispozitivului"
+ }
+ },
+ "zha_reconfigure_device": {
+ "battery_device_warning": "Va trebui să activați dispozitivele alimentate cu baterie înainte de a începe procesul de reconfigurare. Consultați manualul dispozitivului pentru instrucțiuni despre cum să activați dispozitivul."
+ }
+ },
+ "duration": {
+ "day": "{count}{count, plural,\n one { zi }\n other { zile }\n}",
+ "hour": "{count}{count, plural,\n one {oră}\n other {ore}\n}",
+ "minute": "{count} {count, plural,\n one {minut}\n other {minute}\n}",
+ "second": "{count} {count, plural,\n one {secundă}\n other {secunde}\n}",
+ "week": "{count}{count, plural,\n one { săptămână }\n other { săptămâni }\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Puteți edita în continuare configurația în YAML.",
+ "editor_not_available": "Nu există editor vizual disponibil pentru tipul „ {type} ”.",
+ "editor_not_supported": "Editorul vizual nu este acceptat pentru această configurație",
+ "error_detected": "Au fost detectate erori de configurare",
+ "key_missing": "Cheia necesară \"{key}\" lipsește.",
+ "key_not_expected": "Cheia \"{key}\" nu este așteptată sau nu este acceptată de editorul vizual.",
+ "key_wrong_type": "Valoarea furnizată pentru \"{key}\" nu este acceptată de editorul vizual. Acceptăm ({type_correct}), dar am primit ({type_wrong}).",
+ "no_state_array_support": "Valorile de stare multiple nu sunt acceptate în editorul vizual",
+ "no_type_provided": "Niciun tip furnizat."
+ }
+ },
+ "login-form": {
+ "log_in": "Autentificare",
+ "password": "Parolă",
+ "remember": "Reține"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Faceți click pe buton pentru a configura {entity}",
+ "close": "Închideți",
+ "dismiss_all": "Anulează tot",
+ "empty": "Nicio notificare",
+ "title": "Notificări"
+ },
+ "notification_toast": {
+ "connection_lost": "Conexiunea a fost pierdută. Se reconectează…",
+ "dismiss": "Renunțați",
+ "service_call_failed": "Nu s-a putut apela serviciul {service}.",
+ "started": "Home Assistant a pornit!",
+ "starting": "Home Assistant pornește, nu totul va fi disponibil până la finalizare.",
+ "triggered": "Declanșat {name}"
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Lipsesc opțiuni de configurare? Activați modul avansat",
+ "link_profile_page": "pagina dvs. de profil"
+ },
+ "areas": {
+ "add_picture": "Adaugă o poză",
+ "assigned_to_area": "Atribuit acestei zone",
+ "caption": "Zone",
+ "data_table": {
+ "area": "Zonă",
+ "devices": "Dispozitive"
+ },
+ "delete": {
+ "confirmation_text": "Toate dispozitivele din această zonă vor deveni neatribuite.",
+ "confirmation_title": "Sigur dorești să ștergi această zonă?"
+ },
+ "description": "Grupați dispozitivele și entitățile în zone",
+ "editor": {
+ "area_id": "ID zonă",
+ "create": "Creează",
+ "default_name": "Zona nouă",
+ "delete": "Șterge",
+ "name": "Nume",
+ "name_required": "Numele este necesar",
+ "unknown_error": "Eroare necunoscută",
+ "update": "Actualizați"
+ },
+ "picker": {
+ "create_area": "Creați zonă",
+ "header": "Zone",
+ "integrations_page": "Pagina de integrari",
+ "introduction": "Zonele sunt folosite pentru a organiza unde sunt dispozitivele. Aceste informații vor fi utilizate de către Home Assistant pentru a vă ajuta să vă organizați interfața, permisiunile și integrarea cu alte sisteme.",
+ "introduction2": "Pentru a plasa dispozitive într-o zonă, utilizați link-ul de mai jos pentru a naviga la pagina de integrare și apoi faceți click pe o integrare configurată pentru a ajunge la cardurile dispozitivului.",
+ "no_areas": "Se pare că nu aveți nicio zonă încă!"
+ },
+ "targeting_area": "Vizarea acestei zone"
+ },
+ "automation": {
+ "caption": "Automatizări",
+ "description": "Creați reguli de comportament personalizate pentru casa dvs.",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Folosiți un plan"
+ },
+ "header": "Creați o nouă automatizare",
+ "how": "Cum doriți să creați noua dvs. automatizare?",
+ "start_empty": "Începeți cu o automatizare goală",
+ "thingtalk": {
+ "create": "Creează",
+ "header": "Descrieți automatizarea pe care doriți să o creați",
+ "input_label": "Ce ar trebui să facă această automatizare?",
+ "intro": "Și vom încerca să-l creăm pentru dvs. De exemplu: Oprește luminile atunci când plec."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Adaugă acțiune",
+ "delete": "Șterge",
+ "delete_confirm": "Ești sigur că vrei să ștergi?",
+ "duplicate": "Dublează",
+ "header": "Acţiuni",
+ "introduction": "Acțiunile sunt ceea ce va face Home Assistant atunci când este declanșată automatizarea.",
+ "learn_more": "Aflați mai multe despre acțiuni",
+ "name": "Acțiune",
+ "type": {
+ "choose": {
+ "add_option": "Adăugați opțiune",
+ "conditions": "Condiții",
+ "default": "Acţiuni implicite",
+ "label": "Alege",
+ "option": "Opțiunea {number}",
+ "remove_option": "Eliminați opțiune",
+ "sequence": "Acţiuni"
+ },
+ "condition": {
+ "label": "Condiție"
+ },
+ "delay": {
+ "delay": "Întârziere",
+ "label": "Așteaptă să treacă timpul (întârziere)"
+ },
+ "device_id": {
+ "action": "Acțiune",
+ "extra_fields": {
+ "code": "Cod",
+ "message": "Mesaj",
+ "position": "Poziţie",
+ "title": "Titlu"
+ },
+ "label": "Dispozitiv"
+ },
+ "event": {
+ "event": "Eveniment",
+ "label": "Eveniment declansare",
+ "service_data": "Date servicii"
+ },
+ "repeat": {
+ "label": "Repetați",
+ "sequence": "Acţiuni",
+ "type": {
+ "count": {
+ "label": "Numără"
+ },
+ "until": {
+ "conditions": "Până când condițiile",
+ "label": "Pana cand"
+ },
+ "while": {
+ "conditions": "Condiții in timp ce",
+ "label": "In timp ce"
+ }
+ }
+ },
+ "scene": {
+ "label": "Activare scenă"
+ },
+ "service": {
+ "label": "Apelare serviciu"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Continuă la timeout",
+ "label": "Așteptați declanșatorul",
+ "timeout": "Timeout (opțional)"
+ },
+ "wait_template": {
+ "continue_timeout": "Continuați la expirare",
+ "label": "Așteaptă",
+ "timeout": "Timeout (opțional)",
+ "wait_template": "Șablon așteptare"
+ }
+ },
+ "type_select": "Tip de acțiune",
+ "unsupported_action": "Fără suport pentru acțiune în interfața de utilizator: {action}"
+ },
+ "alias": "Nume",
+ "blueprint": {
+ "blueprint_to_use": "Plan de utilizat",
+ "header": "Plan",
+ "no_blueprints": "Nu aveți niciun plan.",
+ "no_inputs": "Acest plan nu are intrări."
+ },
+ "conditions": {
+ "add": "Adăugați o condiție",
+ "delete": "Șterge",
+ "delete_confirm": "Sunteți sigur că vreți să ștergeți asta?",
+ "duplicate": "Dublați",
+ "header": "Condiții",
+ "introduction": "Condițiile sunt opționale și vor împiedica executarea ulterioară, cu excepția cazului în care sunt îndeplinite toate condițiile.",
+ "learn_more": "Aflați mai multe despre condiții",
+ "name": "Condiție",
+ "type": {
+ "and": {
+ "label": "Și"
+ },
+ "device": {
+ "condition": "Condiție",
+ "extra_fields": {
+ "above": "De mai sus",
+ "below": "De mai jos",
+ "for": "Durată"
+ },
+ "label": "Dispozitiv"
+ },
+ "not": {
+ "label": "Nu"
+ },
+ "numeric_state": {
+ "above": "Peste",
+ "below": "Sub",
+ "label": "Stare numerică",
+ "value_template": "Valoarea şablon (opţional)"
+ },
+ "or": {
+ "label": "Sau"
+ },
+ "state": {
+ "label": "Stare",
+ "state": "Status"
+ },
+ "sun": {
+ "after": "După:",
+ "after_offset": "După offset (opţional)",
+ "before": "Înainte:",
+ "before_offset": "Înainte de offset (opțional)",
+ "label": "Soare",
+ "sunrise": "Răsărit de soare",
+ "sunset": "Apus de soare"
+ },
+ "template": {
+ "label": "Șablon",
+ "value_template": "Valoare șablon"
+ },
+ "time": {
+ "after": "După",
+ "before": "Înainte",
+ "label": "Timp",
+ "type_value": "Timp fix",
+ "weekdays": {
+ "fri": "vineri",
+ "mon": "luni",
+ "sat": "sâmbătă",
+ "sun": "duminică",
+ "thu": "joi",
+ "tue": "marți",
+ "wed": "miercuri"
+ }
+ },
+ "trigger": {
+ "id": "ID-ul declanșatorului"
+ },
+ "zone": {
+ "entity": "Entitate cu localizare",
+ "label": "Zonă",
+ "zone": "Zonă"
+ }
+ },
+ "type_select": "Tip condiționare",
+ "unsupported_condition": "Nu există suport în interfața de utilizator pentru condiția: {condition}"
+ },
+ "copy_to_clipboard": "Copiați în clipboard",
+ "default_name": "Automatizare nouă",
+ "description": {
+ "label": "Descriere",
+ "placeholder": "Descriere opțională"
+ },
+ "edit_ui": "Editare cu interfața utilizator",
+ "edit_yaml": "Editare ca YAML",
+ "enable_disable": "Activare/Dezactivare automatizare",
+ "introduction": "Folosiți automatizări pentru a vă aduce casa la viață.",
+ "load_error_not_editable": "Numai automatizările din automations.yaml pot fi editate.",
+ "load_error_unknown": "Eroare la încărcarea automatizării ({err_no}).",
+ "max": {
+ "parallel": "Numărul maxim de piste paralele",
+ "queued": "Lungimea cozii"
+ },
+ "modes": {
+ "documentation": "documentații de automatizare",
+ "label": "mod",
+ "parallel": "Paralel",
+ "queued": "În așteptare",
+ "restart": "Repornire",
+ "single": "Singur (default)"
+ },
+ "move_down": "Mută în jos",
+ "move_up": "Mută în sus",
+ "save": "Salvați",
+ "triggers": {
+ "add": "Adăugați acțiune",
+ "delete": "Șterge",
+ "delete_confirm": "Sigur doriți să ștergeți acest lucru?",
+ "duplicate": "Dublați",
+ "header": "Declanșatoare",
+ "id": "ID-ul declanșatorului (utilizat de condiția de declanșare)",
+ "introduction": "Declanșatoarele sunt cele ce încep procesarea unei reguli de automatizare. Este posibil să specificați mai multe declanșatoare pentru aceeași regulă. Odată ce începe declanșarea, Home Assistant o să valideze condițiile, dacă este cazul, și va apela acțiunea.",
+ "learn_more": "Aflați mai multe despre triggeri",
+ "name": "Activator",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Deasupra",
+ "below": "Sub",
+ "for": "Durată",
+ "zone": "Zonă"
+ },
+ "label": "Dispozitiv",
+ "trigger": "Declanșator"
+ },
+ "event": {
+ "context_user_pick": "Selectați utilizator",
+ "context_users": "Limitați la evenimentele declanșate de",
+ "event_data": "Date eveniment",
+ "event_type": "Tip eveniment",
+ "label": "Eveniment"
+ },
+ "geo_location": {
+ "enter": "Intrați",
+ "event": "Eveniment:",
+ "label": "Localizarea geografică",
+ "leave": "Ieșiți",
+ "source": "Sursă",
+ "zone": "Zona"
+ },
+ "homeassistant": {
+ "event": "Eveniment:",
+ "label": "Home Assistant",
+ "shutdown": "Închide",
+ "start": "Începe"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Încărcare (opțional)",
+ "topic": "Subiect"
+ },
+ "numeric_state": {
+ "above": "Peste",
+ "below": "Sub",
+ "label": "Stare numerică",
+ "value_template": "Valoarea şablon (opţional)"
+ },
+ "state": {
+ "attribute": "Atribut (opțional)",
+ "for": "Pentru",
+ "from": "De la",
+ "label": "Status",
+ "to": "La"
+ },
+ "sun": {
+ "event": "Eveniment:",
+ "label": "Soare",
+ "offset": "Offset (opțional)",
+ "sunrise": "Răsărit de soare",
+ "sunset": "Apus de soare"
+ },
+ "tag": {
+ "label": "Etichetă"
+ },
+ "template": {
+ "label": "Şablon",
+ "value_template": "Valoare șablon"
+ },
+ "time": {
+ "at": "La",
+ "label": "Timp",
+ "type_value": "Timp fix"
+ },
+ "time_pattern": {
+ "hours": "Ore",
+ "label": "Model de timp",
+ "minutes": "Minute",
+ "seconds": "Secunde"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "ID-ul Webhook"
+ },
+ "zone": {
+ "enter": "Ieșire",
+ "entity": "Entitate cu locație",
+ "event": "Eveniment:",
+ "label": "Zonă",
+ "leave": "Intrare",
+ "zone": "Zonă"
+ }
+ },
+ "type_select": "Tip acțiune",
+ "unsupported_platform": "Fără suport pentru interfața de utilizator pentru platforma: {platform}"
+ },
+ "unsaved_confirm": "Aveți modificări nesalvate. Sunteți sigur că doriti să ieșiți?"
+ },
+ "picker": {
+ "add_automation": "Adăugați o automatizare",
+ "delete_automation": "Ștergeți automatizarea",
+ "delete_confirm": "Sigur doriți să ștergeți această automatizare?",
+ "duplicate": "Dublați",
+ "duplicate_automation": "Dublați automatizarea",
+ "edit_automation": "Editare automatizare",
+ "header": "Editor de automatizare",
+ "headers": {
+ "name": "Nume"
+ },
+ "introduction": "Editorul de automatizare vă permite să creați și să modificați automatizări. Urmați legătura de mai jos pentru a citi instrucțiunile pentru a vă asigura că ați configurat corect Home Assistant.",
+ "learn_more": "Aflați mai multe despre automatizări",
+ "no_automations": "Nu am putut găsi automatizări editabile",
+ "only_editable": "Numai automatizările din automations.yaml pot fi editate.",
+ "pick_automation": "Alegeți automatizarea pentru modificare",
+ "show_info_automation": "Afișați informații despre automatizare"
+ },
+ "thingtalk": {
+ "create": "Creați automatizare",
+ "link_devices": {
+ "ambiguous_entities": "Unul sau mai multe dispozitive au mai multe entități care se potrivesc, alegeți-l pe cel pe care doriți să îl utilizați.",
+ "header": "Minunat! Acum trebuie să legăm niște dispozitive"
+ },
+ "task_selection": {
+ "error_unsupported": "Nu am putut crea o automatizare pentru asta (încă?).",
+ "for_example": "De exemplu:",
+ "header": "Creați o nouă automatizare",
+ "introduction": "Tastați mai jos ce ar trebui să facă această automatizare și vom încerca să o transformăm într-o automatizare Home Assistant.",
+ "language_note": "Notă: Deocamdată este acceptată numai limba engleză."
+ }
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "forumuri comunitare",
+ "error_no_url": "Vă rugăm să introduceți adresa URL a planului.",
+ "file_name": "Calea planului",
+ "header": "Importați un plan",
+ "import_btn": "Previzualizați planul",
+ "import_header": "Planul „{name}”",
+ "import_introduction_link": "Puteți importa planuri ale altor utilizatori din Github și din {community_link}. Introduceți mai jos adresa URL a planului.",
+ "importing": "Se încarcă planul...",
+ "raw_blueprint": "Conținutul planului",
+ "save_btn": "Importați plan",
+ "saving": "Se importă planul…",
+ "unsupported_blueprint": "Acest plan nu este acceptat",
+ "url": "Adresa URL a planului"
+ },
+ "caption": "Planuri",
+ "description": "Gestionați planurile",
+ "overview": {
+ "add_blueprint": "Importați planul",
+ "confirm_delete_header": "Ștergeți acest plan?",
+ "confirm_delete_text": "Sigur doriți să ștergeți acest plan?",
+ "create_automation": "Creează automatizare",
+ "delete_blueprint": "Ștergeți planul",
+ "discover_more": "Descoperiți mai multe planuri",
+ "header": "Editor de planuri",
+ "headers": {
+ "domain": "Domeniu",
+ "file_name": "Nume fișier",
+ "name": "Nume",
+ "type": "Tip"
+ },
+ "introduction": "Configurarea planului vă permite să importați și să gestionați planurile dvs.",
+ "learn_more": "Aflați mai multe despre utilizarea planurilor",
+ "types": {
+ "automation": "Automatizare"
+ },
+ "use_blueprint": "Creați automatizare"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Documentație de configurare",
+ "disable": "dezactivați",
+ "enable": "activați",
+ "enable_ha_skill": "Activați abilitatea Home Assistant pentru Alexa",
+ "enable_state_reporting": "Activați raportarea stării",
+ "info": "Cu integrarea Alexa pentru Home Assistant Cloud veți putea controla toate dispozitivele dvs. Home Assistant prin orice dispozitiv compatibil Alexa.",
+ "info_state_reporting": "Dacă activați raportarea stării, Home Assistant va trimite toate modificările de stare ale entităților expuse către Amazon. Acest lucru vă permite să vedeți întotdeauna cele mai recente stări în aplicația Alexa și să utilizați modificările de stare pentru a crea rutine.",
+ "manage_entities": "Gestionați entități",
+ "state_reporting_error": "Imposibil de {enable_disable} stare raport.",
+ "sync_entities": "Sincronizați entitățile cu Amazon",
+ "sync_entities_error": "Sincronizarea entităților nu a reușit:",
+ "title": "Alexa"
+ },
+ "connected": "Conectat",
+ "connection_status": "Starea conexiunii în cloud",
+ "fetching_subscription": "Preluare abonament…",
+ "google": {
+ "config_documentation": "Documentație de configurare",
+ "enable_ha_skill": "Activați abilitate Home Assistant Cloud pentru Google Assistant",
+ "enable_state_reporting": "Activați raportarea de stare",
+ "enter_pin_error": "Nu se poate stoca codul PIN:",
+ "enter_pin_hint": "Introduceți un cod PIN pentru a utiliza dispozitivele de securitate",
+ "enter_pin_info": "Vă rugăm să introduceți un cod PIN pentru a interacționa cu dispozitivele de securitate. Dispozitivele de securitate sunt ușile, ușile de garaj și încuietorile. Vi se va cere să spuneți/introduceți acest PIN atunci când interacționați cu astfel de dispozitive prin intermediul Google Assistant.",
+ "info": "Cu integrarea Asistentului Google pentru Home Assistant Cloud veți putea controla toate dispozitivele dvs. Home Assistant prin orice dispozitiv compatibil cu Asistentul Google.",
+ "info_state_reporting": "Dacă activați raportarea stării, Home Assistant va trimite toate schimbările de stare ale entităților expuse către Google. Acest lucru vă permite să vedeți întotdeauna cele mai recente stări în aplicația Google.",
+ "manage_entities": "Gestionați entități",
+ "security_devices": "Dispozitive de securitate",
+ "sync_entities": "Sincronizați entitățile cu Google",
+ "sync_entities_404_message": "Sincronizarea entităților cu Google nu a reușit, cereți Google 'Hey Google, sync my devices' să vă sincronizeze entitățile.",
+ "title": "Asistentul Google"
+ },
+ "integrations": "Integrări",
+ "integrations_introduction": "Integrările pentru Home Assistant Cloud vă permit să vă conectați cu servicii din cloud fără a fi nevoie să expuneți public instanța Home Assistant pe internet.",
+ "integrations_introduction2": "Verificați site-ul web pentru ",
+ "integrations_link_all_features": " toate caracteristicile disponibile",
+ "manage_account": "Gestionați contul",
+ "nabu_casa_account": "Cont Nabu Casa",
+ "not_connected": "Nu este conectat",
+ "remote": {
+ "access_is_being_prepared": "Se pregătește accesul de la distanță. Vă vom anunța când este gata.",
+ "certificate_info": "Informații despre certificat",
+ "info": "Home Assistant Cloud oferă o conexiune sigură la distanță la instanța dvs. în timp ce sunteți departe de casă.",
+ "instance_is_available": "Instanța dvs. este disponibilă la",
+ "instance_will_be_available": "Instanța dvs. va fi disponibilă la",
+ "link_learn_how_it_works": "Aflați cum funcționează",
+ "not_connected": "Nu este conectat",
+ "title": "Control de la distanță"
+ },
+ "sign_out": "Deconectare",
+ "thank_you_note": "Vă mulțumim că faceți parte din Home Assistant Cloud. Datorită oamenilor ca dvs. suntem capabili să facem o experiență excelentă de automatizare a locuinței pentru toată lumea. Mulțumim!",
+ "tts": {
+ "default_language": "Limba implicită folosită",
+ "dialog": {
+ "create_automation": "Creaza automatizare",
+ "example_message": "Bună ziua {name}, puteți reda orice text pe orice player media acceptat!",
+ "header": "Încercați text în vorbire",
+ "play": "Redare",
+ "target": "Ţintă",
+ "target_browser": "Browser"
+ },
+ "female": "Femeie",
+ "info": "Aduceți personalitate acasă, făcându-i să vă vorbească folosind serviciile noastre Text-to-Speech. Puteți utiliza acest lucru în automatizări și scripturi utilizând serviciul {service} .",
+ "male": "Bărbat",
+ "title": "Text în vorbire",
+ "try": "Încercați"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Nu putut fi dezactivat webhook-ul:",
+ "info": "Orice lucru care este configurat pentru a fi declanșat de un webhook poate primi o adresă URL accesibilă publicului pentru a vă permite să trimiteți date înapoi la Home Assistant de oriunde, fără a vă expune instanța pe internet.",
+ "link_learn_more": "Aflați mai multe despre crearea automatizărilor bazate pe webhook.",
+ "loading": "Se încarcă …",
+ "manage": "Gestionați",
+ "no_hooks_yet": "Se pare că nu aveți încă niciun webhook. Începeți configurând un ",
+ "no_hooks_yet2": " sau prin crearea unui ",
+ "no_hooks_yet_link_automation": "automatizare webhook",
+ "no_hooks_yet_link_integration": "integrare bazată pe webhook",
+ "title": "Webhook-uri"
+ }
+ },
+ "alexa": {
+ "banner": "Modificarea entităților expuse prin această interfață de utilizator este dezactivată deoarece ați configurat filtrele de entitate în configuration.yaml.",
+ "dont_expose_entity": "Nu expuneți entitatea",
+ "expose_entity": "Expuneți entitatea",
+ "exposed": "{selected} este expus",
+ "exposed_entities": "Entități expuse",
+ "follow_domain": "Urmăriți domeniul",
+ "manage_domains": "Gestionați domeniile",
+ "not_exposed": "{selected} nu este expus",
+ "not_exposed_entities": "Entități neexpuse",
+ "title": "Alexa"
+ },
+ "description_features": "Controlați-vă casa de la distanță și integrați Alexa și Asistentul Google.",
+ "description_login": "Conectat ca {email}",
+ "description_not_login": "Nu v-ați conectat",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Data expirării certificatului:",
+ "certificate_information": "Informații despre certificat",
+ "close": "Închideți",
+ "fingerprint": "Amprenta certificatului:",
+ "will_be_auto_renewed": "va fi reînnoit automat"
+ },
+ "dialog_cloudhook": {
+ "available_at": "Webhook-ul este disponibil la următoarea adresă URL:",
+ "close": "Închideți",
+ "confirm_disable": "Sigur doriți să dezactivați acest webhook?",
+ "copied_to_clipboard": "Copiat în clipboard",
+ "info_disable_webhook": "Dacă nu mai doriți să utilizați acest webhook, puteți",
+ "link_disable_webhook": "dezactivați-l",
+ "managed_by_integration": "Acest webhook este gestionat de o integrare și nu poate fi dezactivat.",
+ "view_documentation": "Vizualizați documentația",
+ "webhook_for": "Webhook pentru {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "Verificați e-mailul pentru instrucțiunile despre cum să vă resetați parola.",
+ "email": "Adresă de e-mail",
+ "email_error_msg": "Adresă de e-mail invalidă",
+ "instructions": "Introduceți adresa de e-mail și vă vom trimite un link pentru a vă reseta parola.",
+ "send_reset_email": "Trimiteți un e-mail de resetare",
+ "subtitle": "V-ați uitat parola",
+ "title": "Parolă uitată"
+ },
+ "google": {
+ "disable_2FA": "Dezactivați autentificarea în doi pași",
+ "dont_expose_entity": "Nu expuneți entitatea",
+ "expose": "Expuneți Asistentului Google",
+ "expose_entity": "Expuneți entitatea",
+ "exposed": "{selected} este expus",
+ "exposed_entities": "Entități expuse",
+ "follow_domain": "Urmăriți domeniul",
+ "manage_domains": "Gestionați domeniile",
+ "not_exposed": "{selected} nu este expus",
+ "not_exposed_entities": "Entități neexpuse",
+ "sync_to_google": "Sincronizarea modificărilor la Google.",
+ "title": "Asistentul Google"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Trebuie să vă confirmați adresa de e-mail înainte de a vă conecta.",
+ "alert_password_change_required": "Trebuie să vă schimbați parola înainte de a vă conecta.",
+ "dismiss": "Renunțați",
+ "email": "E-mail",
+ "email_error_msg": "E-mail invalid",
+ "forgot_password": "Ați uitat parola?",
+ "introduction": "Home Assistant Cloud vă oferă o conexiune la distanță sigură la instanța dvs. în timp ce sunteți departe de casă. De asemenea, vă permite să vă conectați cu servicii disponibile doar în cloud: Amazon Alexa și Asistentul Google.",
+ "introduction2": "Acest serviciu este administrat de partenerul nostru ",
+ "introduction2a": ", o companie fondată de inițiatorii Home Assistant și Hass.io.",
+ "introduction3": "Home Assistant Cloud este un serviciu pe bază de abonament cu o perioadă de încercare gratuită de o lună. Nu sunt necesare informații de plată.",
+ "learn_more_link": "Aflați mai multe despre Assistant Home Cloud",
+ "password": "Parolă",
+ "password_error_msg": "Parolele au cel puțin 8 caractere",
+ "sign_in": "Conectați-vă",
+ "start_trial": "Începeți perioada de încercare gratuită de 1 lună",
+ "title": "Conectare în cloud",
+ "trial_info": "Nu sunt necesare informații de plată"
+ },
+ "register": {
+ "account_created": "Cont creat! Verificați e-mailul pentru instrucțiuni despre cum să vă activați contul.",
+ "create_account": "Creează cont",
+ "email_address": "Adresă de e-mail",
+ "email_error_msg": "Adresă de e-mail invalidă",
+ "feature_amazon_alexa": "Integrare cu Amazon Alexa",
+ "feature_google_home": "Integrare cu Asistentul Google",
+ "feature_remote_control": "Controlul Home Assistant departe de casă",
+ "feature_webhook_apps": "Integrare ușoară cu aplicații bazate pe webhook, precum OwnTracks",
+ "headline": "Începeți perioada gratuită de testare",
+ "information": "Creați un cont pentru a începe o versiune de încercare gratuită de o lună cu Home Assistant Cloud. Nu sunt necesare informații de plată.",
+ "information2": "Perioada de încercare vă va oferi acces la toate avantajele Home Assistant Cloud, incluzând:",
+ "information3": "Acest serviciu este condus de către partenerul nostru ",
+ "information3a": ", o companie fondată de inițiatorii Home Assistant și Hass.io.",
+ "information4": "Prin înregistrarea unui cont sunteți de acord cu următorii termeni și condiții.",
+ "link_privacy_policy": "Politica de Confidențialitate",
+ "link_terms_conditions": "Termeni și condiții",
+ "password": "Parolă",
+ "password_error_msg": "Parolele au cel puțin 8 caractere",
+ "resend_confirm_email": "Retrimiteți e-mail de confirmare",
+ "start_trial": "Începeți perioada gratuită de testare",
+ "title": "Înregistrare cont"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Aveți modificări nesalvate. Sunteți sigur că doriti să ieșiți?"
+ },
+ "learn_more": "Află mai multe"
+ },
+ "core": {
+ "caption": "General",
+ "description": "Sistemul de unități, locația, fusul orar și alți parametri generali",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Monedă",
+ "edit_requires_storage": "Editorul a fost dezactivat deoarece configurația a fost stocata în configuration.yaml.",
+ "elevation": "Altitudine",
+ "elevation_meters": "metri",
+ "external_url": "URL extern",
+ "find_currency_value": "Găsește-ți valoarea",
+ "imperial_example": "Fahrenheit, livre",
+ "internal_url": "URL intern",
+ "latitude": "Latitudine",
+ "location_name": "Numele instalarii Home Assistant",
+ "longitude": "Longitudine",
+ "metric_example": "Celsius, kilograme",
+ "save_button": "Salvați",
+ "time_zone": "Fus orar",
+ "unit_system": "Sistem de unități",
+ "unit_system_imperial": "Imperial",
+ "unit_system_metric": "Metric"
+ },
+ "header": "Configurare generală",
+ "introduction": "Modificarea configurației poate fi un proces obositor. Noi știm. Această secțiune va încerca să vă facă viața un pic mai ușoară."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Următoarele atribute sunt deja setate în customize.yaml",
+ "attributes_not_set": "Următoarele atribute nu au fost setate. Setați-le dacă doriți.",
+ "attributes_outside": "Următoarele atribute sunt personalizate din afara customize.yaml",
+ "attributes_override": "Le puteți suprascrie dacă doriți.",
+ "attributes_set": "Următoarele atribute ale entității sunt setate programatic.",
+ "caption": "Personalizări",
+ "description": "Personalizați-vă entitățile",
+ "different_include": "Posibil printr-un domeniu, un glob sau alta includere",
+ "pick_attribute": "Alegeți un atribut pentru a suprascrie",
+ "picker": {
+ "documentation": "Documentație de personalizare",
+ "header": "Personalizări",
+ "introduction": "Atributele per entitate. Particularizările adăugate/editate vor avea efect imediat. Particularizările eliminate vor avea efect atunci când entitatea este actualizată."
+ },
+ "warning": {
+ "include_link": "include customize.yaml",
+ "include_sentence": "Se pare că configuration.yaml nu funcționează corect"
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Gestionați automatizări, scene, scripturi și ajutoare",
+ "title": "Automatizări și scene"
+ },
+ "blueprints": {
+ "description": "Automatizări și scripturi prefabricate de către comunitate",
+ "title": "Planuri"
+ },
+ "companion": {
+ "description": "Locație si notificări",
+ "title": "Aplicație însoțitoare"
+ },
+ "dashboards": {
+ "description": "Creați seturi de carduri personalizate pentru a vă controla casa",
+ "title": "Tablouri de bord"
+ },
+ "devices": {
+ "description": "Integrări, dispozitive, entități și zone",
+ "title": "Dispozitive și servicii"
+ },
+ "energy": {
+ "description": "Monitorizați producția și consumul de energie",
+ "title": "Energie"
+ },
+ "people": {
+ "description": "Gestionați persoanele și zonele pe care Home Assistant le urmărește",
+ "title": "Oameni și zone"
+ },
+ "settings": {
+ "description": "Setări de bază, controale de server, jurnale și informații",
+ "title": "Setări"
+ },
+ "supervisor": {
+ "description": "Creaza backup, verifica diagnosticele sau repornește sistemul",
+ "title": "Suplimente, copii de rezervă și supervizor"
+ },
+ "tags": {
+ "description": "Declanșează automatizări atunci când este scanată o etichetă NFC, un cod QR etc.",
+ "title": "Etichete"
+ }
+ },
+ "devices": {
+ "add_prompt": "Nu s-a adăugat încă niciun {name} folosind acest dispozitiv. Puteți adăuga unul făcând clic pe butonul + de mai sus.",
+ "automation": {
+ "actions": {
+ "caption": "Când se declanșează ceva …",
+ "no_actions": "Fără acțiuni",
+ "unknown_action": "Acțiune necunoscută"
+ },
+ "automations": "Automatizări",
+ "conditions": {
+ "caption": "Fă ceva doar dacă …",
+ "no_conditions": "Nu există condiții",
+ "unknown_condition": "Condiție necunoscută"
+ },
+ "create": "Creați automatizare cu dispozitivul",
+ "create_disable": "Nu se poate crea automatizarea cu dispozitivul dezactivat",
+ "no_automations": "Nu există automatizări",
+ "no_device_automations": "Nu există automatizări disponibile pentru acest dispozitiv.",
+ "triggers": {
+ "caption": "Fă ceva când ...",
+ "no_triggers": "Fără declanșatori",
+ "unknown_trigger": "Declanșator necunoscut"
+ },
+ "unknown_automation": "Automatizare necunoscută"
+ },
+ "cant_edit": "Puteți modifica numai elementele create în interfața de utilizator.",
+ "caption": "Dispozitive",
+ "confirm_delete": "Sigur doriți să ștergeți acest dispozitiv?",
+ "confirm_rename_entity_ids": "Doriți, de asemenea, să redenumiți ID-urile entității ale entităților dvs.?",
+ "confirm_rename_entity_ids_warning": "Aceasta nu va schimba nicio configurație (cum ar fi automatizări, scripturi, scene, tablouri de bord) care utilizează în prezent aceste entități! Va trebui să le actualizați singur pentru a utiliza noile ID-uri de entitate!",
+ "data_table": {
+ "area": "Zonă",
+ "battery": "Baterie",
+ "device": "Dispozitiv",
+ "integration": "Integrare",
+ "manufacturer": "Producător",
+ "model": "Model",
+ "no_devices": "Nu există dispozitive",
+ "no_integration": "Fără integrari"
+ },
+ "delete": "Șterge",
+ "description": "Gestionați dispozitivele configurate",
+ "device_info": "Informații despre dispozitiv",
+ "device_not_found": "Dispozitivul nu a fost găsit.",
+ "disabled": "Dezactivat",
+ "disabled_by": {
+ "config_entry": "Configurare intrare",
+ "integration": "Integrare",
+ "user": "Utilizator"
+ },
+ "download_diagnostics": "Descarcă diagnosticele",
+ "edit_settings": "Editează setarile",
+ "enabled_cause": "Dispozitivul este dezactivat de {cause}.",
+ "enabled_description": "Dispozitivele dezactivate nu vor fi afișate, iar entitățile aparținând dispozitivului vor fi dezactivate și nu vor fi adăugate la Home Assistant.",
+ "enabled_label": "Activează dispozitiv",
+ "entities": {
+ "add_entities_lovelace": "Adăugați la Lovelace",
+ "disabled_entities": "+{count} {count, plural,\n one {entitate dezactivată}\n other {entități dezactivate}\n}",
+ "entities": "Entități",
+ "hide_disabled": "Ascundeți dezactivate",
+ "none": "Acest dispozitiv nu are entități",
+ "sensor": "Senzori"
+ },
+ "name": "Nume",
+ "no_devices": "Nu există dispozitive",
+ "picker": {
+ "filter": {
+ "filter": "Filtru",
+ "hidden_devices": "{number} ascuns {number, plural,\n one {dispozitiv}\n other {dispozitive}\n}",
+ "show_all": "Arată tot",
+ "show_disabled": "Afișați dispozitivele dezactivate"
+ },
+ "search": "Căutați dispozitive"
+ },
+ "scene": {
+ "create": "Creați scenă cu dispozitivul",
+ "create_disable": "Nu se poate crea scena cu dispozitivul dezactivat",
+ "no_scenes": "Nu există scenarii",
+ "scenes": "Scenarii"
+ },
+ "scenes": "Scenarii",
+ "script": {
+ "create": "Creați un script cu dispozitivul",
+ "create_disable": "Nu se poate crea scriptul cu dispozitivul dezactivat",
+ "no_scripts": "Nu există scripturi",
+ "scripts": "Scripturi"
+ },
+ "scripts": "Scripturi",
+ "unknown_error": "Eroare necunoscută",
+ "unnamed_device": "Dispozitiv fără nume",
+ "update": "Actualizați"
+ },
+ "energy": {
+ "battery": {
+ "title": "Stocarea bateriei de acasă"
+ },
+ "delete_source": "Sunteți sigur că doriți să ștergeți această sursă?",
+ "device_consumption": {
+ "add_stat": "Alegeți entitatea pentru a urmări energia",
+ "selected_stat": "Urmărirea energiei pentru"
+ },
+ "gas": {
+ "dialog": {
+ "cost_entity_input": "Entitatea cu prețul curent pe {unitate}"
+ }
+ },
+ "grid": {
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Utilizați o entitate cu preț curent",
+ "cost_entity_input": "Entitatea cu prețul curent",
+ "cost_number": "Utilizați un preț static"
+ },
+ "to": {
+ "cost_entity": "Utilizați o entitate cu rată curentă",
+ "cost_entity_input": "Entitatea cu rata actuală"
+ }
+ }
+ },
+ "solar": {
+ "add_solar_production": "Adăugați producția de energie solară"
+ },
+ "validation": {
+ "issues": {
+ "entity_state_class_measurement_no_last_reset": {
+ "title": "Ultima resetare lipsește"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "Următoarele entități nu au unitățile de măsură preconizate „kWh”, „m³” sau „ft³”:",
+ "title": "Unitate de măsură neașteptată"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "title": "Unitate de măsură neașteptată"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Entități",
+ "description": "Gestionați entitățile cunoscute",
+ "picker": {
+ "disable_selected": {
+ "button": "Dezactivați selecția",
+ "confirm_text": "Entitățile dezactivate nu vof fi adăugate in Home Assistant",
+ "confirm_title": "Doriți să dezactivați {number} {number, plural,\n one {entitate}\n other {entități}\n}?"
+ },
+ "enable_selected": {
+ "button": "Activați selectarea",
+ "confirm_text": "Acest lucru le va face disponibile în Home Assistant din nou, dacă acestea sunt acum dezactivate.",
+ "confirm_title": "Doriți să activați {number} {number, plural,\n one {entitate}\n other {entități}\n}?"
+ },
+ "filter": {
+ "filter": "Filtru",
+ "hidden_entities": "{number} ascuns {number, plural,\n one {entity}\n other {entities}\n}",
+ "show_all": "Arată tot",
+ "show_disabled": "Afișare entități dezactivate",
+ "show_readonly": "Afișare entități doar în modul citire",
+ "show_unavailable": "Afișați entități indisponibile"
+ },
+ "header": "Entități",
+ "headers": {
+ "area": "Zonă",
+ "disabled_by": "Dezactivat de",
+ "entity_id": "ID-ul entității",
+ "integration": "Integrare",
+ "name": "Nume",
+ "status": "Stare"
+ },
+ "introduction": "Home Assistant păstrează un registru al fiecărei entități pe care a văzut-o vreodată, care poate fi identificată în mod unic. Fiecare dintre aceste entități va avea un ID de entitate atribuit care va fi rezervat doar pentru această entitate.",
+ "introduction2": "Utilizați registrul de entități pentru a înlocui numele, schimba identitatea entității sau a elimina înregistrarea din Home Assistant. Rețineți că eliminarea intrării din registrul entității nu va elimina entitatea. Pentru aceasta, urmați linkul de mai jos și eliminați-l din pagina de integrare.",
+ "remove_selected": {
+ "button": "Eliminați selecția",
+ "confirm_partly_title": "Doar {number} {number, plural,\n one {entitate selectată}\n other {entități selectate}\n} pot fi eliminate.",
+ "confirm_text": "Ar trebui să le eliminați din configurația și automatizările dvs. Lovelace dacă conțin aceste entități.",
+ "confirm_title": "Doriți să eliminați {number} {number, plural,\n one {entitate}\n other {entități}\n}?"
+ },
+ "search": "Căutați entități",
+ "selected": "{number} selectat",
+ "status": {
+ "disabled": "Dezactivat",
+ "ok": "OK",
+ "readonly": "Mod doar citire",
+ "restored": "Restaurat",
+ "unavailable": "Indisponibil"
+ }
+ }
+ },
+ "header": "Configurați Home Assistant",
+ "helpers": {
+ "caption": "Ajutoare",
+ "description": "Elemente care ajută la construirea automatizărilor",
+ "dialog": {
+ "add_helper": "Adaugă ajutor",
+ "add_platform": "Adăugați {platform}",
+ "create": "Creează"
+ },
+ "picker": {
+ "add_helper": "Adaugă ajutor",
+ "headers": {
+ "editable": "Editabil",
+ "entity_id": "ID entitate",
+ "name": "Nume",
+ "type": "Tip"
+ },
+ "no_helpers": "Se pare că nu ai încă ajutoare!"
+ },
+ "types": {
+ "counter": "Contor",
+ "input_boolean": "Comutare",
+ "input_button": "Butoane",
+ "input_datetime": "Dată și/sau oră",
+ "input_number": "Număr",
+ "input_select": "Buton Dropdown",
+ "input_text": "Text",
+ "timer": "Temporizator"
+ }
+ },
+ "info": {
+ "built_using": "Construit folosind",
+ "caption": "Info",
+ "copy_github": "Pentru GitHub",
+ "copy_raw": "Text brut",
+ "description": "Versiunea, starea sistemului și linkuri către documentație",
+ "developed_by": "Dezvoltat de o grămadă de oameni minunați.",
+ "documentation": "Documentație",
+ "frontend": "front-end-ui",
+ "home_assistant_logo": "Logo-ul Home Assistant",
+ "icons_by": "Icoane ca",
+ "integrations": "Integrări",
+ "issues": "Probleme",
+ "license": "Publicat sub licenta Apache 2.0",
+ "path_configuration": "Calea către configuration.yaml: {path}",
+ "server": "Server",
+ "source": "Sursă:",
+ "system_health": {
+ "manage": "Administrați",
+ "more_info": "mai multe informații"
+ }
+ },
+ "integrations": {
+ "add_integration": "Adăugați integrare",
+ "attention": "Atenție necesară",
+ "caption": "Integrări",
+ "config_entry": {
+ "area": "În {area}",
+ "delete": "Șterge",
+ "delete_confirm": "Sigur doriți să ștergeți integrarea {title}",
+ "device_unavailable": "Dispozitiv indisponibil",
+ "devices": "{count} {count, plural,\n one {dispozitiv}\n other {dispozitive}\n}",
+ "disable": {
+ "disabled": "Dezactivat",
+ "disabled_by": {
+ "device": "dispozitiv",
+ "integration": "integrare",
+ "user": "utilizator"
+ },
+ "disabled_cause": "Dezactivat de {cause}"
+ },
+ "documentation": "Documentație",
+ "download_diagnostics": "Descarcă diagnosticele",
+ "enable_restart_confirm": "Reporniți Home Assistant pentru a finaliza activarea acestei integrări",
+ "entities": "{count} {count, plural,\n one {entity}\n other {entities}\n}",
+ "entity_unavailable": "Entitate indisponibilă",
+ "firmware": "Firmware: {version}",
+ "hardware": "Hardware",
+ "hub": "Conectat prin",
+ "known_issues": "Probleme cunoscute",
+ "manuf": "de {manufacturer}",
+ "no_area": "Nicio zonă",
+ "not_loaded": "Nu este încărcat",
+ "provided_by_custom_integration": "Furnizat de o integrare personalizată",
+ "reload": "Reîncărcați",
+ "reload_confirm": "Integrarea a fost reîncărcată",
+ "reload_restart_confirm": "Reporniți Home Assistant pentru a finaliza reîncărcarea acestei integrări",
+ "rename": "Redenumiți",
+ "restart_confirm": "Reporniți Home Assistant pentru a termina eliminarea acestei integrări",
+ "services": "{count} {count, plural,\n one {serviciu}\n other {servicii}\n}",
+ "state": {
+ "failed_unload": "Descărcarea nu a reușit",
+ "migration_error": "Eroare de migrare",
+ "not_loaded": "Nu este încărcat",
+ "setup_error": "Configurarea nu a reușit",
+ "setup_retry": "Se reîncearcă configurarea"
+ },
+ "system_options": "Opțiuni de sistem",
+ "unknown_via_device": "Dispozitiv necunoscut",
+ "unnamed_entry": "Intrare anonimă",
+ "via": "Conectat prin"
+ },
+ "config_flow": {
+ "aborted": "Anulat",
+ "close": "Închide",
+ "created_config": "Configurare creată pentru {name}.",
+ "dismiss": "Ascunde dialogul",
+ "error": "Eroare",
+ "error_saving_area": "Imposibil de salvat zona: {error}",
+ "external_step": {
+ "description": "Acest pas necesită să vizitați un site web extern pentru a fi finalizat.",
+ "open_site": "Deschideți site-ul web"
+ },
+ "finish": "Finalizați",
+ "not_all_required_fields": "Nu toate câmpurile obligatorii sunt completate.",
+ "submit": "Trimiteți"
+ },
+ "configure": "Configurează",
+ "configured": "Configurat",
+ "confirm_new": "Doriți să configurați {integration} ?",
+ "description": "Gestionați integrările cu servicii, dispozitive, …",
+ "details": "Detalii integrare",
+ "disable": {
+ "disabled_integrations": "{number} dezactivat",
+ "show_disabled": "Afișați integrări dezactivate"
+ },
+ "discovered": "Descoperit",
+ "home_assistant_website": "Site-ul Home Assistant",
+ "ignore": {
+ "confirm_delete_ignore": "Acest lucru va face ca integrarea să apară din nou în integrările descoperite atunci când este descoperită. Acest lucru ar putea necesita o repornire sau să dureze ceva timp.",
+ "confirm_delete_ignore_title": "Încetați să ignorați {name}?",
+ "confirm_ignore": "Sunteți sigur că nu doriți să configurați această integrare? Puteți anula acest lucru făcând clic pe „Afișați integrări ignorate” din meniul overflow din partea dreaptă sus.",
+ "confirm_ignore_title": "Ignorați descoperirea {name}?",
+ "ignore": "Ignorați",
+ "ignored": "Ignorat",
+ "show_ignored": "Afișați integrări ignorate",
+ "stop_ignore": "Nu mai ignorați"
+ },
+ "integration": "Integrare",
+ "integration_not_found": "Integrarea nu a fost găsită.",
+ "new": "Configurați o nouă integrare",
+ "no_integrations": "Se pare că nu aveți încă integrări configurate. Faceți clic pe butonul de mai jos pentru a adăuga prima dvs. integrare!",
+ "none": "Nimic nu a fost configurat încă",
+ "none_found": "Nu s-au găsit integrări",
+ "none_found_detail": "Ajustați criteriile de căutare.",
+ "note_about_integrations": "Nicio integrare nu s-a potrivit cu căutarea dvs., este posibil ca integrarea pe care doriți să o configurați să nu fie încă disponibilă pentru configurare prin interfața de utilizare.",
+ "note_about_website_reference": "Mai multe sunt disponibile pe",
+ "reconfigure": "Reconfigurați",
+ "rename_dialog": "Editați numele acestei intrări de configurare",
+ "rename_input_label": "Numele intrării",
+ "search": "Căutați integrări"
+ },
+ "introduction": "În această vizualizare este posibil să vă configurați componentele și Home Assistant. Nu este totuși încă posibil să se configureze din interfața de utilizare, dar lucrăm la asta.",
+ "logs": {
+ "caption": "Jurnale",
+ "clear": "Şterge",
+ "description": "Vizualizați jurnalele Home Assistant",
+ "details": "Detalii jurnal ({level})",
+ "load_full_log": "Încărcare jurnal complet Home Assistant",
+ "loading_log": "Se încarcă jurnalul de erori...",
+ "multiple_messages": "mesajul a apărut prima dată pe {time} și apare de {counter} ori",
+ "no_errors": "Nu au fost raportate erori.",
+ "no_issues": "Nu există probleme noi!",
+ "refresh": "Reîmprospătare"
+ },
+ "lovelace": {
+ "caption": "Panouri de bord Lovelace",
+ "dashboards": {
+ "cant_edit_default": "Tabloul de bord standard Lovelace nu poate fi editat din UI. Îl puteți ascunde setând un alt tablou de bord ca implicit.",
+ "cant_edit_yaml": "Tablourile de bord definite în YAML nu pot fi editate din interfața de utilizator. Schimbați-le în configuration.yaml.",
+ "caption": "Tablouri de bord",
+ "conf_mode": {
+ "storage": "UI controlat",
+ "yaml": "Fișier YAML"
+ },
+ "confirm_delete": "Sigur doriți să ștergeți acest tablou de bord?",
+ "confirm_delete_text": "Tabloul dvs. de bord va fi șters definitiv.",
+ "default_dashboard": "Acesta este tabloul de bord implicit",
+ "detail": {
+ "create": "Creați",
+ "delete": "Ștergeți",
+ "dismiss": "Închideți",
+ "edit_dashboard": "Editează tabloul de bord",
+ "icon": "Pictogramă",
+ "new_dashboard": "Adăugați un nou tablou de bord",
+ "remove_default": "Eliminare ca implicit pe acest dispozitiv",
+ "require_admin": "Doar administrator",
+ "set_default": "Setare ca implicită pe acest dispozitiv",
+ "show_sidebar": "Afișați în bara laterală",
+ "title": "Titlu",
+ "title_required": "Titlul este obligatoriu.",
+ "update": "Actualizați",
+ "url": "URL",
+ "url_error_msg": "Legătura URL nu poate conține spații sau caractere speciale, cu excepția lui _ și -"
+ },
+ "picker": {
+ "add_dashboard": "Adăugați tablou de bord",
+ "headers": {
+ "conf_mode": "Metoda de configurare",
+ "default": "Implicit",
+ "filename": "Nume de fișier",
+ "require_admin": "Doar administrator",
+ "sidebar": "Afișați în bara laterală",
+ "title": "Titlu"
+ },
+ "open": "Deschide"
+ }
+ },
+ "description": "Creați seturi de carduri personalizate pentru a vă controla casa",
+ "resources": {
+ "cant_edit_yaml": "Utilizați Lovelace în modul YAML, prin urmare nu vă puteți gestiona resursele prin intermediul interfeței de utilizator. Gestionați-le în configuration.yaml.",
+ "caption": "Resurse",
+ "confirm_delete": "Sigur doriți să ștergeți această resursă?",
+ "detail": {
+ "create": "Creați",
+ "delete": "Șterge",
+ "dismiss": "Închideți",
+ "new_resource": "Adăugați o nouă resursă",
+ "type": "Tip de resursă",
+ "update": "Actualizați",
+ "url": "URL",
+ "url_error_msg": "URL este un câmp obligatoriu",
+ "warning_header": "Fii precaut!",
+ "warning_text": "Adăugarea resurselor poate fi periculoasă, asigurați-vă că cunoașteți sursa resursei și aveți încredere în ele. Resursele necorespunzătoare v-ar putea dăuna grav sistemului."
+ },
+ "picker": {
+ "add_resource": "Adăugați resursă",
+ "headers": {
+ "type": "Tip",
+ "url": "URL"
+ },
+ "no_resources": "Fără resurse"
+ },
+ "refresh_body": "Trebuie să reîmprospătați pagina pentru a finaliza eliminarea. Doriți să reîmprospătați acum?",
+ "refresh_header": "Doriți să reîmprospătați?",
+ "types": {
+ "css": "Stylesheet",
+ "html": "HTML (învechit)",
+ "js": "Fișier JavaScript (învechit)",
+ "module": "Modul JavaScript"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Ascultă un subiect",
+ "description_publish": "Publică un pachet",
+ "listening_to": "Ascultând",
+ "message_received": "Mesajul {id} primit pe {topic} la {time} :",
+ "payload": "Sarcină utilă (șablon permis)",
+ "publish": "Publică",
+ "start_listening": "Începe ascultare",
+ "stop_listening": "Nu mai asculta",
+ "subscribe_to": "Subiect la care să vă abonați",
+ "title": "MQTT",
+ "topic": "subiect"
+ },
+ "ozw": {
+ "common": {
+ "instance": "Instanţă",
+ "network": "Rețea",
+ "node_id": "ID Nod",
+ "ozw_instance": "Instanta OpenZWave",
+ "query_stage": "Etapa de interogare",
+ "wakeup_instructions": "Instrucțiuni de trezire",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Nod nereușit",
+ "stage": "Etapă",
+ "zwave_info": "Z-Wave Info"
+ },
+ "navigation": {
+ "network": "Rețea",
+ "node": {
+ "config": "Configurare",
+ "dashboard": "Tablou de bord"
+ },
+ "nodes": "Noduri",
+ "select_instance": "Selectați Instanța"
+ },
+ "network": {
+ "header": "Administrare rețea",
+ "node_count": "{count} noduri"
+ },
+ "network_status": {
+ "details": {
+ "driverfailed": "Conectarea la controlerul Z-Wave nu a reușit",
+ "driverready": "Inițializarea controlerului Z-Wave",
+ "driverremoved": "Driverul a fost eliminat",
+ "driverreset": "Driverul a fost resetat",
+ "offline": "OZWDaemon deconectat",
+ "ready": "Gata de conectare",
+ "started": "Conectat la MQTT",
+ "starting": "Se conectează la MQTT",
+ "stopped": "OpenZWave s-a oprit"
+ },
+ "offline": "Deconectat",
+ "online": "Conectat",
+ "starting": "Pornește",
+ "unknown": "Necunoscut"
+ },
+ "node": {
+ "button": "Detalii nod",
+ "not_found": "Nodul nu a fost găsit"
+ },
+ "node_config": {
+ "header": "Configurare nod",
+ "help_source": "Descrierile parametrilor config și textul de ajutor sunt furnizate de proiectul OpenZWave.",
+ "introduction": "Gestionați diferiții parametri de configurare pentru un nod Z-Wave.",
+ "wakeup_help": "Nodurile alimentate cu baterii trebuie să fie active pentru a le schimba configurația. Dacă nodul nu este treaz, OpenZWave va încerca să actualizeze configurația nodului data viitoare când se va trezi, care ar putea fi mai multe ore (sau zile) mai târziu. Urmați acești pași pentru a vă trezi dispozitivul:"
+ },
+ "node_metadata": {
+ "product_manual": "Manualul produsului"
+ },
+ "node_query_stages": {
+ "complete": "Procesul de intervievare este complet",
+ "configuration": "Obțin valorile de configurare din nod",
+ "dynamic": "Obțin din nod valorile care se modifică frecvent",
+ "instances": "Obțin detalii despre instanțele sau canalele pe care le acceptă un dispozitiv",
+ "manufacturerspecific1": "Obțin producătorul și codurilor de identificare al produsului din nod",
+ "neighbors": "Obțin o listă a vecinilor nodului",
+ "nodeplusinfo": "Obțin informații despre Z-Wave + din nod",
+ "probe": "Verific dacă nodul este treaz / activ",
+ "protocolinfo": "Obțin de la controler capabilități Z-Wave de bază ale acestui nod",
+ "session": "Obțin din nod valorile ce se modifică rareori",
+ "static": "Obțin valorile statice de pe dispozitiv",
+ "versions": "Obțin informații despre versiunile de firmware și ale claselor de comandă",
+ "wakeup": "Configurarea suportului pentru cozile și mesajele de trezire"
+ },
+ "nodes_table": {
+ "id": "ID",
+ "manufacturer": "Producător",
+ "model": "Model",
+ "query_stage": "Etapa de interogare",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Dacă nodul este alimentat cu baterie, asigurați-vă că îl treziți înainte de a continua",
+ "button": "Actualizați nodul",
+ "description": "Acest lucru va spune OpenZWave să reintervieze un nod și să actualizeze clasele de comandă, capabilitățile și valorile nodului.",
+ "node_status": "Stare nod",
+ "refreshing_description": "Reîmprospătare a informațiilor despre nod…",
+ "start_refresh_button": "Porniți reîmprospătarea",
+ "step": "Pas",
+ "title": "Reîmprospătare informații nod",
+ "wakeup_header": "Instrucțiuni de trezire pentru"
+ },
+ "select_instance": {
+ "header": "Selectați o instanță OpenZWave",
+ "introduction": "Aveți mai multe instanțe OpenZWave care rulează. Ce instanță ați dori să gestionați?",
+ "none_found": "Nu am putut găsi o instanță OpenZWave. Dacă credeți că acest lucru este incorect, verificați configurările OpenZWave și MQTT și asigurați-vă că Home Assistant poate comunica cu agentul dvs. MQTT."
+ },
+ "services": {
+ "add_node": "Adăugați nod",
+ "cancel_command": "Anulați comanda",
+ "remove_node": "Eliminați nodul"
+ }
+ },
+ "person": {
+ "add_person": "Adăugați o persoană",
+ "caption": "Persoane",
+ "confirm_delete": "Sigur doriți să ștergeți această persoană?",
+ "create_person": "Creați o persoană",
+ "description": "Gestionați persoanele pe care Home Assistant le urmărește.",
+ "detail": {
+ "admin": "Administrator",
+ "allow_login": "Permiteți persoanei să se conecteze",
+ "confirm_delete_user": "Sigur doriți să ștergeți contul de utilizator pentru {name}? Puteți urmări în continuare utilizatorul, dar persoana respectivă nu se va mai putea autentifica.",
+ "create": "Creați",
+ "delete": "Ștergeți",
+ "device_tracker_intro": "Selectați dispozitivele care aparțin acestei persoane.",
+ "device_tracker_pick": "Alegeți dispozitivul de urmărit",
+ "device_tracker_picked": "Urmăriți dispozitivul",
+ "link_integrations_page": "Pagina de integrări",
+ "link_presence_detection_integrations": "Integrări de detectare a prezenței",
+ "local_only": "Se poate diagnostica doar din reteaua interna",
+ "name": "Nume",
+ "name_error_msg": "Numele este necesar",
+ "new_person": "Persoană nouă",
+ "no_device_tracker_available_intro": "Când aveți dispozitive care indică prezența unei persoane, le veți putea atribui unei persoane aici. Puteți adăuga primul dispozitiv adăugând o integrare de detectare a prezenței din pagina de integrări.",
+ "update": "Actualizați"
+ },
+ "introduction": "Aici puteți defini fiecare persoană de interes în Home Assistant.",
+ "learn_more": "Aflați mai multe despre persoane",
+ "no_persons_created_yet": "Se pare că nu ați creat încă nicio persoană.",
+ "note_about_persons_configured_in_yaml": "Notă: persoanele configurate prin configuration.yaml nu pot fi editate prin interfața de utilizator.",
+ "person_not_found": "Nu am putut găsi persoana pe care încercați să o editați.",
+ "person_not_found_title": "Persoana nu a fost găsită"
+ },
+ "scene": {
+ "activated": "Scenă activată {name}.",
+ "caption": "Scene",
+ "description": "Capturați stările dispozitivului și rechemați-le cu ușurință mai târziu",
+ "editor": {
+ "area": "Zonă",
+ "default_name": "Scenă nouă",
+ "devices": {
+ "add": "Adăugați un dispozitiv",
+ "delete": "Ștergeți dispozitivul",
+ "header": "Dispozitive",
+ "introduction": "Adăugați dispozitivele pe care doriți să le includeți în scenă. Setați toate dispozitivele la starea dorită pentru această scenă."
+ },
+ "entities": {
+ "add": "Adăugați o entitate",
+ "delete": "Ștergeți entitatea",
+ "device_entities": "Dacă adăugați o entitate care aparține unui dispozitiv, dispozitivul va fi adăugat.",
+ "header": "Entități",
+ "introduction": "Entitățile care nu aparțin unui dispozitiv pot fi setate aici.",
+ "without_device": "Entități fără dispozitiv"
+ },
+ "icon": "Pictogramă",
+ "introduction": "Folosiți scenele pentru a da viață casei.",
+ "load_error_not_editable": "Numai scenele din scene.yaml sunt editabile.",
+ "load_error_unknown": "Eroare la încărcarea scenei ({err_no}).",
+ "name": "Nume",
+ "save": "Salvați",
+ "unsaved_confirm": "Aveți modificări nesalvate. Sunteți sigur că vreți să ieșiți?"
+ },
+ "picker": {
+ "add_scene": "Adăugați scenă",
+ "delete_confirm": "Sigur dorești să ștergi această zonă?",
+ "delete_scene": "Ștergeți scena",
+ "duplicate": "Dublați",
+ "duplicate_scene": "Dublați scenă",
+ "edit_scene": "Editați scena",
+ "header": "Editor scenă",
+ "headers": {
+ "name": "Nume"
+ },
+ "introduction": "Editorul de scene vă permite să creați și să editați scene. Urmați legătura de mai jos pentru a citi instrucțiunile pentru a vă asigura că ați configurat corect Home Assistant.",
+ "learn_more": "Aflați mai multe despre scene",
+ "no_scenes": "Nu am putut găsi nicio scenă ce poate fi modificată",
+ "only_editable": "Numai scenele definite în scene.yaml sunt editabile.",
+ "pick_scene": "Alegeți scena pentru a o modifica",
+ "show_info_scene": "Afișează informații despre scenă"
+ }
+ },
+ "script": {
+ "caption": "Scripturi",
+ "description": "Executați o secvență de acțiuni",
+ "editor": {
+ "alias": "Nume",
+ "default_name": "Script nou",
+ "delete_confirm": "Sunteți sigur că doriți să ștergeți acest script?",
+ "delete_script": "Ștergeți scriptul",
+ "header": "Script: {name}",
+ "icon": "Pictogramă",
+ "id": "ID entitate",
+ "id_already_exists": "Acest ID există deja",
+ "id_already_exists_save_error": "Nu puteți salva acest script, deoarece ID-ul nu este unic, alegeți un alt ID sau lăsați-l necompletat pentru a genera automat unul.",
+ "introduction": "Folosiți scripturi pentru a executa o secvență de acțiuni.",
+ "link_available_actions": "Aflați mai multe despre acțiunile disponibile.",
+ "load_error_not_editable": "Numai scripturile din scripts.yaml pot fi modificate.",
+ "max": {
+ "parallel": "Numărul maxim de piste paralele",
+ "queued": "Lungimea cozii"
+ },
+ "modes": {
+ "documentation": "documentație script",
+ "label": "mod",
+ "parallel": "Paralel",
+ "queued": "În așteptare",
+ "restart": "Repornire",
+ "single": "Singur (default)"
+ },
+ "save_script": "Salvați scriptul",
+ "sequence": "Secvenţă",
+ "sequence_sentence": "Secvența acțiunilor acestui script."
+ },
+ "picker": {
+ "add_script": "Adăugați un script",
+ "duplicate": "Dublați",
+ "duplicate_script": "Dublați scriptul",
+ "edit_script": "Editare script",
+ "header": "Editor de scripturi",
+ "headers": {
+ "name": "Nume"
+ },
+ "introduction": "Editorul de scripturi vă permite să creați și să editați scripturi. Urmați linkul de mai jos pentru a citi instrucțiunile pentru a vă asigura că ați configurat corect Home Assistant.",
+ "learn_more": "Aflați mai multe despre scripturi",
+ "no_scripts": "Nu am putut găsi niciun script modificabil",
+ "run_script": "Rulați scriptul",
+ "show_info": "Afișează informații despre script"
+ }
+ },
+ "server_control": {
+ "caption": "Control server",
+ "description": "Reporniți și opriți serverul Home Assistant",
+ "section": {
+ "reloading": {
+ "automation": "Reîncarcă automatizările",
+ "core": "Reîncărcați locația și personalizările",
+ "group": "Reîncărcați grupuri, grupurile de entități și servicii de notificare de grup",
+ "heading": "Reîncărcarea configurației YAML",
+ "homekit": "HomeKit",
+ "introduction": "Unele părți din Home Assistant se pot reîncărca fără a necesita o repornire. Apăsarea reîncărcării va descărca configurația actuală și va încărca noua configurație.",
+ "mqtt": "Reîncărcați entitățile MQTT configurate manual",
+ "person": "Reîncărcați persoanele",
+ "reload": "Reîncarcă {domain}",
+ "rest": "Reîncărcați entitățile rest și serviciile de notificare rest",
+ "rpi_gpio": "Reîncărcați entitățile Raspberry Pi GPIO",
+ "scene": "Reîncărcați scenele",
+ "script": "Reîncărcați script-uri",
+ "smtp": "Reîncărcați serviciile de notificare SMTP",
+ "timer": "Cronometre",
+ "zone": "Reîncărcare zone"
+ },
+ "server_management": {
+ "confirm_restart": "Sigur doriți să reporniți Home Assistant?",
+ "confirm_stop": "Sigur doriți să opriți Home Assistant?",
+ "heading": "Managementul serverului",
+ "introduction": "Controlați-vă serverul Home Assistant... din Home Assistant.",
+ "restart": "Reporniți",
+ "stop": "Oprire"
+ },
+ "validation": {
+ "check_config": "Verificați configurația",
+ "heading": "Validare configurație",
+ "introduction": "Validați configurația dvs. dacă ați făcut recent unele modificări și doriți să vă asigurați că aceasta este validă",
+ "invalid": "Configurare nevalidă",
+ "valid": "Configurare validă!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Adaugați etichetă",
+ "automation_title": "Eticheta {name} este scanată",
+ "caption": "Etichete",
+ "confirm_remove": "Sunteți sigur că doriți să eliminați eticheta {tag} ?",
+ "confirm_remove_title": "Eliminați eticheta?",
+ "create_automation": "Creați automatizare cu etichetă",
+ "description": "Declanșează automatizări atunci când este scanată o etichetă NFC, un cod QR etc.",
+ "detail": {
+ "companion_apps": "aplicații însoțitoare",
+ "create": "Creați",
+ "create_and_write": "Creați și scrieți",
+ "delete": "Ștergeți",
+ "description": "Descriere",
+ "name": "Nume",
+ "new_tag": "Etichetă nouă",
+ "tag_id": "ID etichetă",
+ "tag_id_placeholder": "Generat automat când este lăsat gol",
+ "update": "Actualizați",
+ "usage": "O etichetă poate declanșa o automatizare atunci când este scanată, puteți utiliza etichete NFC, coduri QR sau orice alt tip de etichetă. Utilizați {companion_link} pentru a scrie o etichetă NFC programabilă sau a creați un cod QR dedesubt."
+ },
+ "edit": "Editați",
+ "headers": {
+ "last_scanned": "Ultima dată scanat",
+ "name": "Nume"
+ },
+ "learn_more": "Aflați mai multe despre etichete",
+ "never_scanned": "Niciodată scanat",
+ "no_tags": "Nicio etichetă",
+ "write": "Scrie"
+ },
+ "updates": {
+ "more_updates": "+ {count} Actualizări",
+ "show": "Arată",
+ "show_all_updates": "Afișează toate actualizările",
+ "unable_to_fetch": "Nu se pot încărca actualizările",
+ "version_available": "Versiunea {version_available} este disponibilă"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Adăugați utilizator",
+ "create": "Creează",
+ "local_only": "Doar local",
+ "password": "Parolă",
+ "password_confirm": "Confirmați parola",
+ "password_not_match": "Parolele nu se potrivesc"
+ },
+ "caption": "Utilizatori",
+ "description": "Gestionați conturile de utilizator Home Assistant",
+ "editor": {
+ "activate_user": "Activați utilizatorul",
+ "active": "Activ",
+ "active_tooltip": "Controlează dacă utilizatorul se poate autentifica",
+ "admin": "Administrator",
+ "caption": "Vizualizați utilizatorul",
+ "change_password": "Schimbaţi parola",
+ "confirm_user_deletion": "Sigur doriți să ștergeți {name} ?",
+ "deactivate_user": "Dezactivați utilizatorul",
+ "delete_user": "Ștergeți utilizatorul",
+ "group": "Grup",
+ "id": "ID",
+ "local_only": "Se poate autentifica numai din rețeaua locală",
+ "name": "Numele afișat",
+ "new_password": "Parolă Nouă",
+ "owner": "Proprietar",
+ "password_changed": "Parola a fost schimbată cu succes",
+ "system_generated": "Generat de sistem",
+ "system_generated_users_not_editable": "Nu s-au putut actualiza utilizatorii generați de sistem.",
+ "system_generated_users_not_removable": "Nu se pot elimina utilizatorii generați de sistem.",
+ "unnamed_user": "Utilizator fără nume",
+ "update_user": "Actualizați",
+ "username": "Nume de utilizator"
+ },
+ "is_local": "Utilizator local",
+ "is_not_active": "Dezactivat",
+ "is_owner": "Proprietar",
+ "is_system": "Utilizator de sistem",
+ "picker": {
+ "add_user": "Adăugați utilizator",
+ "headers": {
+ "group": "Grup",
+ "is_active": "Activ",
+ "is_owner": "Proprietar",
+ "local": "Local",
+ "name": "Numele afișat",
+ "system": "Generat de sistem",
+ "username": "Nume de utilizator"
+ }
+ },
+ "users_privileges_note": "Funcția de grup de utilizatori este o lucrare în desfășurare. Utilizatorul nu va putea administra instanța prin interfața de utilizare. În continuare audităm toate punctele finale ale API-ului de gestionare pentru a ne asigura că limitează corect accesul la administratori."
+ },
+ "zha": {
+ "add_device": "Adăugați dispozitiv",
+ "add_device_page": {
+ "discovered_text": "Dispozitivele vor apărea aici odată descoperite.",
+ "no_devices_found": "Nu s-au găsit dispozitive, asigurați-vă că sunt în modul de împerechere și mențineți-le active în timp ce descoperirea rulează.",
+ "pairing_mode": "Asigurați-vă că dispozitivele dvs. sunt în modul de asociere. Consultați instrucțiunile dispozitivului dvs. despre cum să faceți acest lucru.",
+ "search_again": "Caută din nou",
+ "spinner": "Se caută dispozitive ZHA Zigbee…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Atributele clusterului selectat",
+ "get_zigbee_attribute": "Obțineți atributul Zigbee",
+ "header": "Atributele clusterului",
+ "help_attribute_dropdown": "Selectați un atribut pentru a-l vizualiza sau seta valoarea acestuia.",
+ "help_get_zigbee_attribute": "Obțineți valoarea pentru atributul selectat.",
+ "help_set_zigbee_attribute": "Setați valoarea atributului pentru clusterul specificat pe entitatea specificată.",
+ "introduction": "Vizualizați și editați atributele clusterului.",
+ "set_zigbee_attribute": "Setați atributul Zigbee"
+ },
+ "cluster_commands": {
+ "header": "Comenzi de cluster",
+ "introduction": "Vizualizați și emiteți comenzi de cluster.",
+ "issue_zigbee_command": "Emiteți Comanda Zigbee"
+ },
+ "clusters": {
+ "header": "Clustere",
+ "help_cluster_dropdown": "Selectați un cluster pentru a vizualiza atributele și comenzile.",
+ "introduction": "Clusterele sunt blocurile pentru funcționalitatea Zigbee. Ele separă funcționalitatea în unități logice. Există tipuri client și server și sunt alcătuite din atribute și comenzi."
+ },
+ "common": {
+ "clusters": "Clustere",
+ "manufacturer_code_override": "Suprascriere cod producător",
+ "value": "Valoare"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Comenzi rapide",
+ "update_button": "Actualizați configurația"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Configurare terminată",
+ "CONFIGURED_status_text": "Inițializare",
+ "INITIALIZED": "Inițializare finalizată",
+ "INITIALIZED_status_text": "Dispozitivul este gata de utilizare",
+ "INTERVIEW_COMPLETE": "Interviu finalizat",
+ "INTERVIEW_COMPLETE_status_text": "Configurez",
+ "PAIRED": "Dispozitiv găsit",
+ "PAIRED_status_text": "Începe intervievarea"
+ },
+ "group_binding": {
+ "bind_button_help": "Conectează grupul selectat cu grupurile de dispozitive selectate.",
+ "bind_button_label": "Legați grupul",
+ "cluster_selection_help": "Selectează grupul pentru conectarea la grupul selectat.",
+ "group_picker_help": "Selectați un grup pentru a emite o comandă de conectare.",
+ "group_picker_label": "Grupuri ce pot fi legate",
+ "header": "Legarea grupului",
+ "introduction": "Legați și dezlegați grupurile.",
+ "unbind_button_help": "Deconectează grupul selectat de grupurile de dispozitive selectate.",
+ "unbind_button_label": "Deconectează grupul"
+ },
+ "groups": {
+ "add_group": "Adăugați grup",
+ "add_members": "Adăugați membri",
+ "caption": "Grupuri",
+ "create": "Creare Grup",
+ "create_group": "Zigbee Home Automation - Creare grup",
+ "create_group_details": "Introduceți detaliile necesare pentru a crea un nou grup Zigbee",
+ "creating_group": "Creez grupul",
+ "delete": "Ștergeți grupul",
+ "group_details": "Iată toate detaliile pentru grupul Zigbee selectat.",
+ "group_id": "ID grup",
+ "group_info": "Informații despre grup",
+ "group_name_placeholder": "Numele grupului",
+ "group_not_found": "Grupul nu a fost găsit!",
+ "groups": "Grupuri",
+ "members": "Membri",
+ "remove_members": "Eliminați membrii",
+ "removing_members": "Elimin membri"
+ },
+ "network": {
+ "caption": "Rețea"
+ },
+ "visualization": {
+ "caption": "Vizualizare",
+ "header": "Vizualizare rețea",
+ "highlight_label": "Evidențiați dispozitivele",
+ "zoom_label": "Măriți pe dispozitiv"
+ }
+ },
+ "zone": {
+ "add_zone": "Adăugați zonă",
+ "caption": "Zone",
+ "configured_in_yaml": "Zonele configurate in configuration.yaml nu pot fi editate prin UI.",
+ "confirm_delete": "Sigur doriți să ștergi această zonă?",
+ "create_zone": "Creați o zonă",
+ "description": "Gestionați zonele în care doriți să urmăriți persoanele.",
+ "detail": {
+ "create": "Creați",
+ "delete": "Ștergeți",
+ "icon": "Pictogramă",
+ "icon_error_msg": "Pictograma ar trebui să fie de forma „prefix:iconname”, de exemplu: „mdi:home”",
+ "latitude": "Latitudine",
+ "longitude": "Longitudine",
+ "name": "Nume",
+ "new_zone": "Zonă nouă",
+ "passive": "Pasiv",
+ "passive_note": "Zonele pasive sunt ascunse în pagina principală și nu sunt utilizate ca locație pentru următorii de dispozitive. Acest lucru este util doar dacă doriți să-l folosiți pentru automatizări.",
+ "radius": "Rază",
+ "required_error_msg": "Acest câmp este obligatoriu",
+ "update": "Actualizează"
+ },
+ "edit_home_zone": "Raza zonei Acasă nu poate fi încă editată din frontend. Trageți marcatorul pe hartă pentru a muta zona de origine.",
+ "edit_home_zone_narrow": "Raza zonei Acasă nu poate fi editată încă de pe frontend. Locația poate fi modificată din configurația generală.",
+ "edit_zone": "Editează zona",
+ "go_to_core_config": "Mergeți la configurația generală?",
+ "home_zone_core_config": "Locația zonei de domiciliu poate fi modificată din pagina de configurare generală. Raza zonei Acasă nu poate fi modificată încă de pe frontend. Doriți să accesați configurația generală?",
+ "introduction": "Zonele vă permit să specificați anumite regiuni de pe pământ. Când o persoană se află într-o zonă, identificatorul va lua numele din zonă. Zonele pot fi de asemenea utilizate ca declanșator sau condiție în cadrul setărilor de automatizare.",
+ "no_zones_created_yet": "Se pare că nu ai creat încă nici o zonă."
+ },
+ "zwave": {
+ "common": {
+ "index": "Index",
+ "instance": "Instanţă",
+ "unknown": "necunoscut",
+ "value": "Valoare",
+ "wakeup_interval": "Interval de trezire"
+ },
+ "description": "Gestionați-vă rețeaua Z-Wave",
+ "learn_more": "Aflați mai multe despre Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "Migrați la OpenZWave",
+ "introduction": "Acest expert vă va ajuta să migrați de la integrarea Z-Wave moștenită la integrarea OpenZWave care este în prezent în versiune beta."
+ }
+ },
+ "network_management": {
+ "header": "Managementul rețelei Z-Wave",
+ "introduction": "Executați comenzi care afectează rețeaua Z-Wave. Nu veți primi feedback dacă majoritatea comenzilor au reușit, dar puteți verifica istoricul OZW pentru a încerca să aflați."
+ },
+ "network_status": {
+ "network_started": "Rețeaua Z-Wave a fost pornita",
+ "network_started_note_all_queried": "Toate nodurile au fost interogate.",
+ "network_started_note_some_queried": "Au fost interogate nodurile active. Nodurile adormite vor fi interogate când se trezesc.",
+ "network_starting": "Pornesc rețeaua Z-Wave…",
+ "network_starting_note": "Acest lucru poate dura ceva timp, în funcție de dimensiunea rețelei dvs.",
+ "network_stopped": "Rețeaua Z-Wave s-a oprit"
+ },
+ "node_config": {
+ "config_parameter": "Setați parametrul de configurare",
+ "config_value": "Valoare de configurare",
+ "false": "Fals",
+ "header": "Opțiuni de configurare a nodurilor",
+ "seconds": "secunde",
+ "set_config_parameter": "Setați parametrul de configurare",
+ "set_wakeup": "Setați interval de trezire",
+ "true": "Adevărat"
+ },
+ "node_management": {
+ "add_to_group": "Adăugați la grup",
+ "entities": "Entități ale acestui nod",
+ "entity_info": "Informații entitate",
+ "exclude_entity": "Excludeți această entitate din Home Assistant",
+ "group": "Grup",
+ "max_associations": "Nr. maxim de asocieri:",
+ "node_group_associations": "Asociații de grupuri de noduri",
+ "node_protection": "Protecție nod",
+ "node_to_control": "Nod de controlat",
+ "nodes": "Noduri",
+ "nodes_hint": "Selectați nodul pentru a vizualiza opțiunile per nod",
+ "nodes_in_group": "Alte noduri din acest grup:",
+ "protection": "Protecție",
+ "remove_broadcast": "Eliminare difuzare",
+ "remove_from_group": "Eliminați din grup",
+ "set_protection": "Setare protecție"
+ },
+ "ozw_log": {
+ "header": "Jurnal OZW",
+ "last_log_lines": "Numărul ultimelor linii de jurnal",
+ "load": "Sarcină",
+ "tail": "Coadă"
+ },
+ "services": {
+ "add_node": "Adăugați nod",
+ "add_node_secure": "Adăugați nod securizat",
+ "cancel_command": "Anulați comanda",
+ "heal_network": "Heal Network",
+ "heal_node": "Repara nod",
+ "node_info": "Informații nod",
+ "print_node": "Imprimare nod",
+ "refresh_entity": "Actualizați entitatea",
+ "refresh_node": "Actualizați nodul",
+ "remove_failed_node": "Eliminare nod eșuat",
+ "remove_node": "Eliminați nodul",
+ "replace_failed_node": "Înlocuiți nod eșuat",
+ "save_config": "Salvați configurația",
+ "soft_reset": "Resetare soft",
+ "start_network": "Porniți rețeaua",
+ "stop_network": "Opriți rețeaua",
+ "test_network": "Testati Reteaua",
+ "test_node": "Testare nod"
+ },
+ "values": {
+ "header": "Valoare nod"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Anulați includerea",
+ "check_logs": "Vă rugăm să verificați jurnalele pentru mai multe informații.",
+ "choose_inclusion_strategy": "Cum doriți sa adaugați la dispozitiv",
+ "controller_in_inclusion_mode": "Controlerul dvs. Z-Wave este acum în modul de includere.",
+ "inclusion_failed": "Nodul nu a putut fi adăugat. Vă rugăm să verificați jurnalele pentru mai multe informații.",
+ "interview_started": "Dispozitivul este intervievat. Acest lucru poate dura ceva timp.",
+ "introduction": "Acest expert vă va ghida prin adăugarea unui nod în rețeaua dvs. Z-Wave.",
+ "qr_code": "Cod QR",
+ "searching_device": "Se caută dispozitivul",
+ "secure_inclusion_warning": "Dispozitivele securizate necesită lățime de bandă suplimentară; prea multe dispozitive sigure vă pot încetini rețeaua Z-Wave. Vă recomandăm să folosiți o includere sigură numai pentru dispozitivele care necesită acest lucru, cum ar fi încuietori sau deschizători de uși de garaj.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Exemplu: Încuietori de ușă vechi fără suport S2"
+ },
+ "S2_AccessControl": {
+ "title": "S2 Controlul accesului"
+ }
+ },
+ "start_inclusion": "Pornire includere",
+ "start_secure_inclusion": "Pornire includere securizată",
+ "title": "Adăugați un nod Z-Wave",
+ "use_secure_inclusion": "Folosiți includere sigură"
+ },
+ "common": {
+ "add_node": "Adăugați nod",
+ "back": "Înapoi",
+ "close": "Închide",
+ "home_id": "ID domiciliu",
+ "network": "Rețea",
+ "node_id": "ID Nod",
+ "reconfigure_server": "Reconfigurați serverul",
+ "remove_node": "Eliminați dispozitivul"
+ },
+ "dashboard": {
+ "driver_version": "Versiune driver",
+ "dump_not_ready_confirm": "Descarcă",
+ "header": "Gestionați-vă rețeaua Z-Wave",
+ "home_id": "ID domiciliu",
+ "introduction": "Gestionați rețeaua Z-Wave și nodurile Z-Wave",
+ "not_ready": "{count} nu este gata",
+ "provisioned_devices": "Dispozitive provizionate",
+ "server_version": "Versiunea serverului"
+ },
+ "device_info": {
+ "node_ready": "Nod gata",
+ "node_status": "Stare nod",
+ "reinterview_device": "Reinterogarea unui dispozitiv Z-Wave",
+ "zwave_info": "Informații Z-Wave",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Versiunea {version}"
+ },
+ "heal_node": {
+ "in_progress": "{dispozitiv} este în curs de vindecare."
+ },
+ "logs": {
+ "download_logs": "Descarcă diagnosticele",
+ "subscribed_to_logs": "Abonat la mesajele Z-Wave JS Log..."
+ },
+ "navigation": {
+ "network": "Rețea"
+ },
+ "network_status": {
+ "connected": "Conectat",
+ "connecting": "Se conectează la",
+ "unknown": "Necunoscut"
+ },
+ "node_config": {
+ "introduction": "Gestionați și ajustați parametrii de configurare specifici dispozitivului pentru dispozitivul selectat",
+ "set_param_accepted": "Parametrul a fost actualizat.",
+ "set_param_error": "A aparut o eroare.",
+ "set_param_queued": "Modificarea parametrilor a fost pusă în coadă și va fi actualizată când dispozitivul se va trezi."
+ },
+ "node_status": {
+ "alive": "Activ",
+ "asleep": "Adormit",
+ "awake": "Treaz",
+ "dead": "Inactiv",
+ "unknown": "Necunoscut"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "Dacă anulați furnizarea dispozitivului, acesta nu va fi adăugat la Home Assistant când este pornit. Dacă este deja adăugat la Home Assistant, eliminarea dispozitivului furnizat nu îl va elimina din Home Assistant.",
+ "confirm_unprovision_title": "Sunteți sigur că doriți să anulați provizionarea dispozitivului?",
+ "included": "Inclus",
+ "not_included": "Nu este inclus",
+ "security_classes": "Clase de securitate",
+ "unprovison": "Neprovizionat"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "Va trebui să treziți dispozitivele alimentate cu baterii înainte de a începe re-interviul. Consultați manualul dispozitivului dumneavoastră pentru instrucțiuni privind modul de trezire a dispozitivului.",
+ "introduction": "Reinterogați un dispozitiv din rețeaua Z-Wave. Folosiți această funcție dacă dispozitivul dvs. are o funcționalitate lipsă sau incorectă.",
+ "run_in_background": "Puteți închide acest dialog și interviul va continua în fundal.",
+ "start_reinterview": "Începeți din nou interviul",
+ "title": "Reinterogarea unui dispozitiv Z-Wave"
+ },
+ "remove_failed_node": {
+ "remove_device": "Indepartati dispozitivul"
+ },
+ "remove_node": {
+ "title": "Eliminați un nod Z-Wave"
+ },
+ "security_classes": {
+ "S2_AccessControl": {
+ "title": "S2 Controlul accesului"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Va avea acces la toate datele din asistentul principal.",
+ "hide_message": "Verificați docs pentru componenta panel_custom pentru a ascunde acest mesaj",
+ "question_trust": "Aveți încredere în panoul extern {name} la {link}?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Ascultători activi",
+ "alert_event_type": "Tipul de eveniment este un câmp obligatoriu",
+ "available_events": "Evenimente disponibile",
+ "data": "Date eveniment (YAML, opțional)",
+ "documentation": "Documentarea evenimentelor.",
+ "event_fired": "Evenimentul {name} declanșat",
+ "fire_event": "Declansare eveniment",
+ "listen_to_events": "Ascultă evenimente",
+ "listening_to": "Ascultând",
+ "notification_event_fired": "Evenimentul {type} declanșat cu succes!",
+ "start_listening": "Începeți să ascultați",
+ "stop_listening": "Nu mai asculta",
+ "subscribe_to": "Eveniment la care să vă abonați",
+ "title": "Evenimente",
+ "type": "Tip eveniment"
+ },
+ "services": {
+ "call_service": "Apelare serviciu",
+ "column_description": "Descriere",
+ "column_example": "Exemplu",
+ "column_parameter": "Parametru",
+ "description": "Instrumentul de serviciu dev vă permite să apelați orice serviciu disponibil în Home Assistant.",
+ "fill_example_data": "Completați exemple de date",
+ "title": "Servicii"
+ },
+ "states": {
+ "alert_entity_field": "Entitatea este un câmp obligatoriu",
+ "attributes": "Atribute",
+ "copy_id": "Copiați ID-ul în clipboard",
+ "current_entities": "Entități actuale",
+ "description1": "Setați reprezentarea stării curente a unei entități în Home Assistant.",
+ "description2": "Acesta nu va comunica cu dispozitivul actual.",
+ "entity": "Entitate",
+ "filter_attributes": "Filtrare atribute",
+ "filter_entities": "Filtrare entități",
+ "filter_states": "Filtrare stări",
+ "last_changed": "Ultima modificare",
+ "last_updated": "Ultima actualizare",
+ "more_info": "Mai multe informații",
+ "no_entities": "Nicio entitate",
+ "set_state": "Stabilire stare",
+ "state": "Stare",
+ "state_attributes": "Atribute stare (YAML, opțional)",
+ "title": "Status"
+ },
+ "statistics": {
+ "issues": {
+ "unsupported_unit_metadata": "Unitatea (''{metadata_unit}'') a statisticilor înregistrate nu se potrivește cu unitatea acceptată ''{supported_unit}''' a clasei de dispozitive ''{device_class}''.",
+ "unsupported_unit_state": "Unitatea (\"{state_unit}\") a acestei entități nu se potrivește cu o unitate de clasă de dispozitiv ''{device_class}''."
+ }
+ },
+ "templates": {
+ "all_listeners": "Acest șablon ascultă următoarele evenimente modificate de stare:",
+ "description": "Șabloanele sunt redate utilizând motorul de șablon Jinja2 cu unele extensii specifice Home Assistant.",
+ "domain": "Domeniu",
+ "editor": "Editor șabloane",
+ "entity": "Entitate",
+ "jinja_documentation": "Șablon documentație Jinja2",
+ "listeners": "Acest șablon ascultă următoarele evenimente modificate de stare:",
+ "no_listeners": "Acest șablon ascultă următoarele evenimente modificate de stare:",
+ "reset": "Reinițializați la șablonul demo",
+ "result_type": "Tipul rezultatului",
+ "template_extensions": "Șabloane de extensie pentru Home Assistant",
+ "time": "Acest șablon se actualizează la începutul fiecărui minut.",
+ "title": "Şablon",
+ "unknown_error_template": "Sa produs o eroare de randare necunoscută."
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_gas_graph_title": "Consumul de gaz",
+ "energy_usage_graph_title": "Consumul de energie"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Puteți utiliza această funcție numai atunci când ați preluat controlul asupra UI Lovelace.",
+ "saving_failed": "Salvarea configurației UI Lovelace a eșuat.",
+ "yaml_unsupported": "Nu se poate utiliza această funcție atunci când utilizați interfața de utilizator Lovelace în modul YAML."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Sunteți sigur că doriți să efectuați acțiunea \"{action}\"?"
+ },
+ "confirm_delete": "Sunteți sigur că doriți să ștergeți acest card?",
+ "empty_state": {
+ "go_to_integrations_page": "Accesați pagina de integrări.",
+ "no_devices": "Această pagină vă permite să controlați dispozitivele dvs., cu toate acestea se pare că nu aveți dispozitive configurate încă. Du-te la pagina integrări pentru a începe.",
+ "title": "Bun venit acasă"
+ },
+ "energy": {
+ "energy_devices_graph": {
+ "energy_usage": "Consumul de energie"
+ },
+ "energy_distribution": {
+ "battery": "Baterie",
+ "title_today": "Distribuția energiei de astăzi"
+ }
+ },
+ "entities": {
+ "never_triggered": "Nu s-a declanșat niciodată"
+ },
+ "iframe": {
+ "error_secure_context": "Imposibil de încărcat iframe care indică site-uri web folosind {target_protocol} dacă Home Assistant este difuzat prin {context_protocol} ."
+ },
+ "picture-elements": {
+ "call_service": "Apelați serviciul {name}",
+ "hold": "Țineți apăsat:",
+ "more_info": "Afișați mai multe informații: {name}",
+ "navigate_to": "Navigați la {location}",
+ "tap": "Atingeți:",
+ "toggle": "Comutați {name}",
+ "url": "Deschideți fereastra către {url_path}"
+ },
+ "safe-mode": {
+ "description": "Home Assistant a avut probleme în timpul încărcării configurației și rulează acum în modul de siguranță. Aruncați o privire la jurnalul de erori pentru a vedea ce a mers prost.",
+ "header": "Mod de siguranță activat"
+ },
+ "shopping-list": {
+ "add_item": "Adaugați element",
+ "checked_items": "Elementele selectate",
+ "clear_items": "Ștergeți elementele selectate",
+ "reorder_items": "Reordonați articolele"
+ },
+ "starting": {
+ "description": "Home Assistant pornește, vă rugăm să așteptați…"
+ }
+ },
+ "changed_toast": {
+ "message": "Configurația interfeței de utilizator Lovelace a fost actualizată. Reîmprospătați pentru a vedea modificările?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Ziua",
+ "month": "Luna",
+ "next": "Următorul",
+ "previous": "Anterior",
+ "today": "Astăzi",
+ "week": "Săptămâna",
+ "year": "Anul"
+ },
+ "timestamp-display": {
+ "invalid": "Marcaj de timp invalid",
+ "invalid_format": "Format de afișare invalid"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "default_action": "Acțiune implicită",
+ "more-info": "Mai multe informații",
+ "navigate": "Navigați",
+ "none": "Nicio acțiune",
+ "toggle": "Comutare",
+ "url": "adresă URL"
+ },
+ "url_path": "Calea URL"
+ },
+ "card": {
+ "alarm-panel": {
+ "name": "Panou alarmă"
+ },
+ "area": {
+ "name": "Zonă",
+ "show_camera": "Afișați feed-ul camerei în loc de imaginea zonei"
+ },
+ "button": {
+ "default_action_help": "Acțiunea implicită depinde de capacitățile entității, va fi fie comutată, fie va fi afișat dialogul cu mai multe informații.",
+ "description": "Cardul buton vă permite să adăugați butoane pentru a efectua sarcini.",
+ "name": "Buton"
+ },
+ "calendar": {
+ "calendar_entities": "Entități calendar",
+ "description": "Cardul Calendar afișează un calendar care include vizualizări de zi, săptămână și liste",
+ "inital_view": "Vizualizare inițială",
+ "name": "Calendar",
+ "views": {
+ "dayGridDay": "Zi",
+ "dayGridMonth": "Lună",
+ "listWeek": "Listă"
+ }
+ },
+ "conditional": {
+ "card": "Card",
+ "change_type": "Schimbați tipul",
+ "condition_explanation": "Cardul va fi afișat atunci când TOATE condițiile sunt îndeplinite.",
+ "conditions": "Condiții",
+ "current_state": "actual",
+ "description": "Cardul condițional afișează un alt card bazat pe stările entității",
+ "state_equal": "Starea este egală cu",
+ "state_not_equal": "Starea nu este egală cu"
+ },
+ "config": {
+ "optional": "Opțional",
+ "required": "Necesar"
+ },
+ "entities": {
+ "description": "Cardul entități este cel mai comun tip de card. Acesta grupează elementele împreună în liste.",
+ "edit_special_row": "Vizualizați detaliile acestui rând făcând clic pe butonul de editare",
+ "entity_row": {
+ "attribute": "Atribut",
+ "button": "Buton",
+ "buttons": "Butoane",
+ "call-service": "Apelați serviciul",
+ "divider": "Separator",
+ "section": "Secțiune",
+ "weblink": "Legătură Web"
+ },
+ "entity_row_editor": "Editează rândul entității",
+ "name": "Entități",
+ "secondary_info_values": {
+ "brightness": "Luminozitate",
+ "entity-id": "ID-ul entității",
+ "last-changed": "Schimbat ultima dată",
+ "last-triggered": "Accesat ultima dată",
+ "last-updated": "Ultima actualizare",
+ "none": "Fără informații secundare",
+ "position": "Poziție",
+ "tilt-position": "Înclinare"
+ },
+ "special_row": "rând special",
+ "toggle": "Comutați entitățile."
+ },
+ "entity-filter": {
+ "name": "Filtru entitate"
+ },
+ "entity": {
+ "description": "Cardul Entity vă oferă o imagine de ansamblu rapidă asupra stării entității",
+ "name": "Entitate"
+ },
+ "gauge": {
+ "description": "Cardul Gauge este un card de bază care permite vizualizarea vizuală a datelor senzorilor.",
+ "severity": {
+ "green": "Verde",
+ "red": "Roșu",
+ "yellow": "Galben"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Raport de aspect",
+ "attribute": "Atribut",
+ "camera_image": "Entitate cameră",
+ "camera_view": "Vizualizare cameră",
+ "double_tap_action": "Acțiune atingere dublă",
+ "entities": "Entități",
+ "entity": "Entitate",
+ "hold_action": "Suspendare acțiunii",
+ "hours_to_show": "Ore de afișat",
+ "icon": "Pictogramă",
+ "icon_height": "Înălțimea pictogramei",
+ "image": "Calea imaginii",
+ "manual": "Manual",
+ "manual_description": "Trebuie să adăugați un card personalizat sau doriți doar să scrieți manual yaml?",
+ "maximum": "Maximă",
+ "minimum": "Valoare minimă",
+ "name": "Nume",
+ "no_theme": "Nicio temă",
+ "refresh_interval": "Interval de reîmprospătare",
+ "search": "Căutați",
+ "secondary_info_attribute": "Atribut informații secundare",
+ "show_icon": "Afișare pictogramă?",
+ "show_name": "Arată numele?",
+ "show_state": "Arată starea?",
+ "state": "Stare",
+ "state_color": "Pictograme color în funcție de stare?",
+ "theme": "Temă",
+ "title": "Titlu",
+ "unit": "Unitate",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Coloane",
+ "description": "Cardul Glance este util pentru a grupa mai mulți senzori într-o imagine de ansamblu compactă.",
+ "name": "Privire rapida"
+ },
+ "grid": {
+ "columns": "Coloane",
+ "square": "Randați cardurile sub formă de pătrate"
+ },
+ "history-graph": {
+ "description": "Cardul History Graph vă permite să afișați un grafic pentru fiecare dintre entitățile listate.",
+ "name": "Grafic istoric"
+ },
+ "horizontal-stack": {
+ "description": "Cardul stivă orizontală vă permite să grupați mai multe carduri, astfel încât să stea întotdeauna unul lângă celălalt în spațiul unei coloane.",
+ "name": "Stivă orizontală"
+ },
+ "humidifier": {
+ "name": "Umidificator"
+ },
+ "iframe": {
+ "description": "Cardul Pagină Web vă permite să încorporați pagina dvs. web preferată chiar în Home Assistant.",
+ "name": "Pagină web"
+ },
+ "light": {
+ "description": "Cardul Light vă permite să schimbați luminozitatea luminii.",
+ "name": "Lumină"
+ },
+ "logbook": {
+ "name": "Jurnal de bord"
+ },
+ "map": {
+ "dark_mode": "Modul întunecat?",
+ "default_zoom": "Zoom implicit",
+ "description": "Cardul hartă care vă permite să afișați entități pe o hartă.",
+ "geo_location_sources": "Surse de Geolocalizare",
+ "hours_to_show": "Ore de afișat",
+ "name": "Hartă",
+ "source": "Sursă"
+ },
+ "markdown": {
+ "content": "Conținut",
+ "description": "Cardul Markdown este utilizat pentru a reda Markdown."
+ },
+ "media-control": {
+ "name": "Control media"
+ },
+ "picture-elements": {
+ "name": "Elemente de imagine"
+ },
+ "picture-entity": {
+ "name": "Entitate imagine"
+ },
+ "picture-glance": {
+ "description": "Cardul Picture Glance arată o imagine și stările de entitate corespunzătoare ca pictogramă. Entitățile din partea dreaptă permit comutarea acțiunilor, altele afișează dialogul cu mai multe informații.",
+ "name": "Privire imagine",
+ "state_entity": "Entitate de stare"
+ },
+ "picture": {
+ "name": "Imagine"
+ },
+ "plant-status": {
+ "description": "Cardul de Stare al Plantelor este destinat tuturor botaniștilor",
+ "name": "Starea plantei"
+ },
+ "sensor": {
+ "description": "Cardul senzor vă oferă o imagine de ansamblu rapidă a stării senzorilor cu un grafic opțional pentru a vizualiza schimbarea în timp.",
+ "graph_type": "Tip grafic",
+ "name": "Senzor",
+ "show_more_detail": "Afișați mai multe detalii"
+ },
+ "shopping-list": {
+ "description": "Cardul listă cumpărături vă permite să adăugați, să editați, să verificați și să ștergeți elemente din lista de cumpărături.",
+ "integration_not_loaded": "Acest card necesită configurarea integrării `shopping_list`.",
+ "name": "Listă de cumpărături"
+ },
+ "statistics-graph": {
+ "description": "Cardul Statistics Graph (Graficul statisticilor) vă permite să afișați un grafic al statisticilor pentru fiecare dintre entitățile enumerate.",
+ "name": "Graficul statisticilor",
+ "period": "Perioadă",
+ "periods": {
+ "5minute": "5 minute",
+ "day": "Zi",
+ "hour": "Oră",
+ "month": "Lună"
+ }
+ },
+ "thermostat": {
+ "description": "Cardul termostat oferă controlul entității climatice. Permițându-vă să modificați temperatura și modul entității.",
+ "name": "Termostat"
+ },
+ "vertical-stack": {
+ "description": "Cardul stivă verticală vă permite să grupați mai multe carduri, astfel încât acestea să stea întotdeauna în aceeași coloană.",
+ "name": "Stivă verticală"
+ },
+ "weather-forecast": {
+ "description": "Cardul prognoza meteo afișează vremea. Foarte util pentru a include pe interfețele pe care oamenii le afișează pe perete.",
+ "name": "Prognoza meteo",
+ "show_forecast": "Afișați prognoza meteo",
+ "show_only_current": "Afișează doar vremea curentă",
+ "show_only_forecast": "Afișează numai prognoza"
+ }
+ },
+ "cardpicker": {
+ "by_card": "După card",
+ "by_entity": "După entitate",
+ "custom_card": "Personalizat",
+ "domain": "Domeniu",
+ "entity": "Entitate",
+ "no_description": "Nicio descriere disponibilă."
+ },
+ "common": {
+ "add": "Adăugați",
+ "clear": "Ştergeți",
+ "edit": "Editați",
+ "none": "Niciunul"
+ },
+ "edit_badges": {
+ "panel_mode": "Aceste insigne nu vor fi afișate, deoarece această vizualizare este în \"Modul panou\".",
+ "view_no_badges": "Insignele nu sunt acceptate de tipul de vizualizare curent."
+ },
+ "edit_card": {
+ "add": "Adăugați card",
+ "clear": "Ştergeți",
+ "confirm_cancel": "Sunteți sigur că vreți să anulați?",
+ "delete": "Ștergeți cardul",
+ "duplicate": "Dublați cardul",
+ "edit": "Editați",
+ "header": "Configurare card",
+ "move": "Mutați la vizualizare",
+ "move_after": "Mutați cardul după",
+ "move_before": "Mutați cardul înainte",
+ "options": "Mai multe opțiuni",
+ "pick_card": "Ce card doriți să adăugați?",
+ "search_cards": "Căutați carduri",
+ "show_code_editor": "Afișați editorul de cod",
+ "show_visual_editor": "Afișați editorul vizual",
+ "toggle_editor": "Activeaza editor",
+ "typed_header": "{type} Configurare card",
+ "unsaved_changes": "Aveți modificări nesalvate"
+ },
+ "edit_lovelace": {
+ "edit_title": "Modificați titlul",
+ "explanation": "Acest titlu este arătat mai sus de toate punctele de vedere în Lovelace.",
+ "header": "Titlul interfeței dvs. Lovelace",
+ "title": "Titlu"
+ },
+ "edit_view": {
+ "add": "Adăugați vizualizare",
+ "delete": "Ștergeți vizualizarea",
+ "edit": "Editați vizualizarea",
+ "header": "Vizualizați configurația",
+ "header_name": "{name} Vizualizați configurația",
+ "move_left": "Mutați vizualizarea la stânga",
+ "move_right": "Mutați vizualizarea la dreapta",
+ "tab_badges": "Insigne",
+ "tab_settings": "Setări",
+ "tab_visibility": "Vizibilitate",
+ "visibility": {
+ "select_users": "Selectați care utilizatori ar trebui să vadă această vedere în navigare"
+ }
+ },
+ "header": "Modificați interfața de utilizator",
+ "header-footer": {
+ "choose_header_footer": "Alegeți un {type}",
+ "footer": "Subsol",
+ "header": "Antet",
+ "types": {
+ "buttons": {
+ "name": "Butoane"
+ },
+ "graph": {
+ "name": "Grafic"
+ },
+ "picture": {
+ "name": "Imagine"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Gestionați tablourile de bord",
+ "manage_resources": "Gestionați resursele",
+ "open": "Deschideți meniul Lovelace UI",
+ "raw_editor": "Editor de configurare brut"
+ },
+ "migrate": {
+ "header": "Configurație incompatibilă",
+ "migrate": "Migrați configurația",
+ "para_migrate": "Home Assistant poate adăuga ID-ul la toate cardurile și vizualizările în mod automat pentru tine apăsând butonul \"Migrați configurația\".",
+ "para_no_id": "Acest element nu are un ID. Adăugați un ID la acest element în \"ui-lovelace.yaml\"."
+ },
+ "move_card": {
+ "header": "Alegeți o vedere pentru a muta cardul în"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Vom genera automat vizualizările interfeței de utilizator Lovelace cu zonele și dispozitivele dvs., dacă eliminați configurația interfeței de utilizator Lovelace.",
+ "confirm_remove_config_title": "Sigur doriți să eliminați configurația interfeței de utilizator Lovelace?",
+ "confirm_unsaved_changes": "Aveți modificări nesalvate, sunteți sigur că doriți să ieșiți?",
+ "confirm_unsaved_comments": "Configurația dvs. conține comentarii, acestea nu vor fi salvate. Doriți să continuați?",
+ "error_invalid_config": "Configurația dvs. nu este validă: {error}",
+ "error_parse_yaml": "Eroare de analiză YAML: {error}",
+ "error_remove": "Imposibil de eliminat configurația: {error}",
+ "error_save_yaml": "Imposibil de salvat YAML: {error}",
+ "header": "Editați configurația",
+ "resources_moved": "Resursele nu ar trebui să mai fie adăugate la configurația Lovelace, dar pot fi adăugate în panoul de configurare Lovelace.",
+ "save": "Salvați",
+ "saved": "Salvat",
+ "unsaved_changes": "Modificări nesalvate"
+ },
+ "save_config": {
+ "close": "Închideți",
+ "empty_config": "Începeți cu un tablou de bord gol",
+ "header": "Preia controlul asupra interfața dvs. Lovelace",
+ "para": "În mod implicit, Home Assistant va menține interfața dvs. de utilizator, actualizând-o atunci când entitățile noi sau componente Lovelace devin disponibile. Dacă preluați controlul, nu vom mai face automat modificări pentru dvs. Puteți oricând crea un nou tablou de bord în configurație pentru a vă juca cu el.",
+ "para_sure": "Sigur doriți să preluați controlul asupra interfeței dvs. de utilizator?",
+ "save": "Preia controlul",
+ "yaml_config": "Pentru a vă ajuta să începeți aici este configurarea curentă a acestui tablou de bord:",
+ "yaml_control": "Pentru a prelua controlul în modul YAML, creați un fișier YAML cu numele pe care l-ați specificat în configurația dvs. pentru acest tablou de bord sau implicit „ui-lovelace.yaml”.",
+ "yaml_mode": "Utilizați modul YAML, ceea ce înseamnă că nu puteți modifica configurația Lovelace din interfața de utilizator. Dacă doriți să schimbați Lovelace din interfața de utilizator, eliminați „modul: yaml” din configurația dvs. Lovelace din „configuration.yaml”."
+ },
+ "select_view": {
+ "dashboard_label": "Tablou de bord",
+ "header": "Alegeți o vizualizare",
+ "views_label": "Vedere"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Editor subsol",
+ "header": "Editor antet"
+ }
+ },
+ "suggest_card": {
+ "add": "Adăugați la interfața de utilizator Lovelace",
+ "create_own": "Alegeți un card diferit",
+ "header": "Am creat o sugestie pentru dumneavoastră"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Această vizualizare conține mai multe carduri, dar un panel view poate afișa doar 1 card"
+ }
+ }
+ },
+ "menu": {
+ "close": "Închideți",
+ "configure_ui": "Configurați interfața utilizator",
+ "exit_edit_mode": "Ieșiți din modul de modificare a interfeței de utilizator",
+ "help": "Ajutor",
+ "reload_resources": "Reîncărcare resurse",
+ "start_conversation": "Începeți conversația"
+ },
+ "reload_lovelace": "Reîncărcați interfața de utilizator Lovelace",
+ "reload_resources": {
+ "refresh_body": "Trebuie să reîmprospătați pagina pentru a finaliza reîncărcarea. Doriți să reîmprospătați acum?",
+ "refresh_header": "Vrei să reîmprospătezi?"
+ },
+ "unused_entities": {
+ "available_entities": "Acestea sunt entitățile pe care le aveți disponibile, dar nu sunt încă în interfața de utilizator a dvs. Lovelace.",
+ "domain": "Domeniu",
+ "entity": "Entitate",
+ "entity_id": "ID-ul entității",
+ "last_changed": "Ultima modificare",
+ "no_data": "Nu s-au găsit entități neutilizate",
+ "search": "Căutați entități",
+ "select_to_add": "Selectați entitățile pe care doriți să le adăugați pe un card, apoi faceți clic pe butonul Adăugați card.",
+ "title": "Entități neutilizate"
+ },
+ "views": {
+ "confirm_delete": "Ștergeți vizualizarea?",
+ "confirm_delete_existing_cards": "Ștergerea acestei vizualizări va elimina, de asemenea, cardurile",
+ "confirm_delete_existing_cards_text": "Sigur doriți să ștergeți vizualizarea ''{name}''? Vizualizarea conține {number}carduri care vor fi șterse. Această acțiune nu poate fi anulată.",
+ "confirm_delete_text": "Sigur doriți să ștergeți vizualizarea „{name}”?"
+ },
+ "warning": {
+ "attribute_not_found": "Atributul {attribute} nu este disponibil în: {entity}",
+ "entity_non_numeric": "Entitatea este non-numerică: {entity}",
+ "entity_not_found": "Entitatea nu este disponibilă: {entity}",
+ "entity_unavailable": "Entitate momentan indisponibilă: {entity}",
+ "starting": "Home Assistant pornește, nu totul poate fi disponibil încă"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Ștergeți",
+ "delete_prompt": "Ștergeți acest mesaj?",
+ "empty": "Nu aveți niciun mesaj",
+ "playback_title": "Redarea mesajelor"
+ },
+ "my": {
+ "documentation": "documentație",
+ "error": "A apărut o eroare necunoscută",
+ "faq_link": "Întrebări frecvente despre Home Assistant",
+ "not_supported": "Această redirecționare nu este acceptată de instanța Home Assistant. Verificați {link} pentru redirecționările acceptate și versiunea pe care au fost introduse."
+ },
+ "page-authorize": {
+ "abort_intro": "Conectarea a fost anulată",
+ "authorizing_client": "Sunteți pe punctul de a da {clientId} accesul la instanța dumneavoastra de Home Assistant",
+ "form": {
+ "error": "Eroare: {error}",
+ "next": "Următorul",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Sesiunea a expirat, vă rugăm să vă autentificați din nou."
+ },
+ "error": {
+ "invalid_auth": "Nume de utilizator sau parolă incorecte",
+ "invalid_code": "Cod invalid pentru autentificare"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Parolă",
+ "username": "Utilizator"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Cod de autentificare în doi pași"
+ },
+ "description": "Deschideți **{mfa_module_name}** pe dispozitivul dumneavoastră pentru a vedea codul de autentificare în doi pași și a vă verifica indentitatea:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Sesiunea a expirat, vă rugăm să vă autentificați din nou."
+ },
+ "error": {
+ "invalid_auth": "Nume de utilizator sau parolă incorecte",
+ "invalid_code": "Cod de autentificare invalid"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Parolă",
+ "username": "Nume de utilizator"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Autentificare cu doi factori"
+ },
+ "description": "Deschideți **{mfa_module_name}** pe dispozitivul dumneavoastră pentru a vedea codul de autentificare în doi pași și a vă verifica indentitatea:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Sesiunea a expirat, vă rugăm să vă autentificați din nou.",
+ "no_api_password_set": "Nu aveți o parolă API configurată."
+ },
+ "error": {
+ "invalid_auth": "Parolă API nevalidă",
+ "invalid_code": "Cod de autentificare invalid"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Parolă API"
+ },
+ "description": "Vă rugăm să introduceți parola API în configurația dvs. HTTP:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Autentificare cu doi factori"
+ },
+ "description": "Deschideți **{mfa_module_name}** pe dispozitivul dumneavoastră pentru a vedea codul de autentificare în doi pași și a vă verifica indentitatea:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Calculatorul dvs. nu este permis."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Utilizator"
+ },
+ "description": "Vă rugăm să selectați un utilizator la care doriți să vă autentificați:"
+ }
+ }
+ }
+ },
+ "start_over": "Ia-o de la capăt",
+ "unknown_error": "Ceva nu a mers bine",
+ "working": "Te rog așteaptă"
+ },
+ "initializing": "Inițializează",
+ "logging_in_with": "Conectare cu **{authProviderName}**.",
+ "pick_auth_provider": "Sau conectați-vă cu",
+ "store_token": "Ține-mă conectat"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "după {name}",
+ "introduction": "Bine ați venit acasă! Ați ajuns la demo-ul Home Assistant, unde prezentăm cele mai bune interfețe utilizator, create de comunitatea noastră.",
+ "learn_more": "Aflați mai multe despre Home Assistant",
+ "next_demo": "Următorul demo"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Activitate",
+ "air": "Aer",
+ "commute_home": "Naveta la domiciliu",
+ "entertainment": "Divertisment",
+ "hdmi_input": "Intrare HDMI",
+ "hdmi_switcher": "Comutator HDMI",
+ "information": "Informație",
+ "lights": "Lumini",
+ "morning_commute": "Naveta de dimineață",
+ "total_tv_time": "Timp total TV",
+ "turn_tv_off": "Opriți televizorul",
+ "volume": "Volum"
+ },
+ "names": {
+ "family_room": "Cameră de familie",
+ "hallway": "Hol",
+ "kitchen": "Bucătărie",
+ "left": "Stânga",
+ "master_bedroom": "Dormitor Principal",
+ "mirror": "Oglindă",
+ "patio": "Curte interioară",
+ "right": "Dreapta",
+ "temperature_study": "Studiul temperaturii",
+ "upstairs": "Etaj"
+ },
+ "unit": {
+ "minutes_abbr": "min",
+ "watching": "vizionare"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "core-config": {
+ "button_detect": "Detectează",
+ "finish": "Următorul",
+ "intro": "Salut {name}, bine ai venit la Home Assistant. Cum ți-ar plăcea să-ți numești casa?",
+ "intro_location": "Am vrea să știm unde locuiți. Aceste informații vă vor ajuta să afișați informații și să configurați automatizări bazate pe soare. Aceste date nu sunt niciodată distribuite în afara rețelei dvs.",
+ "intro_location_detect": "Vă putem ajuta să completați aceste informații făcând o cerere unică unui serviciu extern.",
+ "location_name": "Numele instalării Home Assistant",
+ "location_name_default": "Acasă"
+ },
+ "finish": "Finalizare",
+ "integration": {
+ "finish": "Finalizați",
+ "intro": "Dispozitivele și serviciile sunt reprezentate în Home Assistant ca integrări. Aveți posibilitatea să le configurați acum sau să le faceți mai târziu din ecranul de configurare.",
+ "more_integrations": "Mai Mult"
+ },
+ "intro": "Sunteți gata să vă treziți casa, să vă recuperați intimitatea și să vă alăturați unei comunități mondiale de creatori?",
+ "next": "Următorul",
+ "restore": {
+ "addons": "Addonuri",
+ "confirm_password": "Confirmați parola copiei de rezervă",
+ "description": "Alternativ, puteți restabili dintr-o copie de rezervă anterioară.",
+ "folders": "Dosare",
+ "full_backup": "Copie de rezervă completă",
+ "hide_log": "Ascundeți jurnalul complet",
+ "in_progress": "Restaurare în curs",
+ "partial_backup": "Copie de rezervă parțială",
+ "password": "Parola copiei de rezervă",
+ "password_protection": "Protecție cu parola",
+ "show_log": "Afișați jurnalul complet",
+ "type": "Tipul copiei de rezervă"
+ },
+ "user": {
+ "create_account": "Creați cont",
+ "data": {
+ "name": "Nume",
+ "password": "Parolă",
+ "password_confirm": "Confirmare parolă",
+ "username": "Nume de utilizator"
+ },
+ "error": {
+ "password_not_match": "Parolele nu se potrivesc",
+ "required_fields": "Completați toate câmpurile obligatorii"
+ },
+ "intro": "Să începem prin crearea unui cont de utilizator.",
+ "required_field": "Necesar"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Deblochează funcțiile avansate.",
+ "link_promo": "Aflați mai multe",
+ "title": "Mod avansat"
+ },
+ "change_password": {
+ "confirm_new_password": "Confirmați noua parolă",
+ "current_password": "Parola curentă",
+ "error_new_is_old": "Parola nouă trebuie să fie diferită de parola curentă",
+ "error_new_mismatch": "Valorile noilor parole introduse nu se potrivesc",
+ "error_required": "Necesar",
+ "header": "Schimbaţi parola",
+ "new_password": "Parolă nouă",
+ "submit": "Trimiteți",
+ "success": "Parola a fost schimbată cu succes"
+ },
+ "current_user": "În prezent sunteți conectat ca {fullName}.",
+ "customize_sidebar": {
+ "button": "Editați | ×",
+ "description": "De asemenea, puteți apăsa și ține apăsat antetul barei laterale pentru a activa modul de editare.",
+ "header": "Schimbați ordinea și ascundeți elementele din bara laterală"
+ },
+ "dashboard": {
+ "description": "Alegeți un tablou de bord implicit pentru acest dispozitiv.",
+ "dropdown_label": "Tablou de bord",
+ "header": "Tablou de bord"
+ },
+ "enable_shortcuts": {
+ "description": "Activați sau dezactivați comenzile rapide de la tastatură pentru efectuarea diferitelor acțiuni în interfața de utilizare.",
+ "header": "Comenzi rapide de la tastatură"
+ },
+ "force_narrow": {
+ "description": "Aceasta va ascunde bara laterală în mod prestabilit, similar cu experiența mobilă.",
+ "header": "Ascundeți întotdeauna bara laterală"
+ },
+ "is_owner": "Sunteți un proprietar.",
+ "language": {
+ "dropdown_label": "Limba",
+ "header": "Limba",
+ "link_promo": "Ajutați la traducere"
+ },
+ "logout": "Deconectați-vă",
+ "logout_text": "Sigur doriți să vă deconectați?",
+ "logout_title": "Vă deconectați?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Sigur doriți să ștergeți token-ul de acces pentru {name} ?",
+ "create": "Creați Token",
+ "create_failed": "Crearea token-ului de acces nu a reușit.",
+ "created": "Creat în {date}",
+ "delete_failed": "Ștergerea token-ului de acces nu a reușit.",
+ "description": "Creați tokenuri de acces cu durată lungă de viață pentru a permite script-urilor dvs. să interacționeze cu instanța dvs. Home Assistant. Fiecare token va fi valabil timp de 10 ani de la creare. Următoarele token-uri de acces de lungă durată sunt active la ora actuală.",
+ "empty_state": "Nu aveți tokenuri de acces de lungă durată deocamdata",
+ "header": "Token-uri de acces de lungă durată",
+ "learn_auth_requests": "Aflați cum să faceți cereri autentificate.",
+ "name": "Nume",
+ "prompt_copy_token": "Copiați token-ul de acces. Aceasta nu va mai fi afișat.",
+ "prompt_name": "Dați un nume token-ului"
+ },
+ "mfa": {
+ "confirm_disable": "Sigur doriți să dezactivați {name} ?",
+ "disable": "Dezactivați",
+ "enable": "Activați",
+ "header": "Module de autentificare multi-factor"
+ },
+ "mfa_setup": {
+ "close": "Închideți",
+ "step_done": "Configurarea făcută pentru {step}",
+ "submit": "Trimiteți",
+ "title_aborted": "Anulat",
+ "title_success": "Succes!"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Nume dispozitiv",
+ "title": "Cum ar trebui să se numească acest dispozitiv?"
+ },
+ "description": "Trimiteți notificări către acest dispozitiv.",
+ "error_load_platform": "Configurați notify.html5.",
+ "error_use_https": "Necesită SSL activat pentru interfaţă.",
+ "header": "Notificări push",
+ "link_promo": "Aflați mai multe",
+ "push_notifications": "Notificări push"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Sigur doriți să ștergeți token-ul de reîmprospătare pentru {name}?",
+ "created_at": "Creat în {date}",
+ "current_token_tooltip": "Nu se poate șterge tokenul actual de actualizare",
+ "delete_failed": "Ștergerea token-ului de reîmprospătare nu a reușit.",
+ "description": "Fiecare token de innoire reprezinta o sesiune de logare. Tokenuriile de innoire vor fi inlaturate cand se da click pe log out. Urmatoarele tokenuri de innoire sunt active in contul dumneavoastra.",
+ "header": "Reîmprospătați token-urile",
+ "last_used": "Ultima utilizare la {date} din {location}",
+ "not_used": "Nu a fost folosit niciodată",
+ "token_title": "Reîmprospătează token-ul pentru {clientId}"
+ },
+ "suspend": {
+ "header": "Închideți automat conexiunea"
+ },
+ "themes": {
+ "accent_color": "Culoare de accent",
+ "dark_mode": {
+ "auto": "Automat",
+ "dark": "Întunecat",
+ "light": "Luminat"
+ },
+ "dropdown_label": "Temă",
+ "error_no_theme": "Nu există teme disponibile.",
+ "header": "Temă",
+ "link_promo": "Aflați mai multe despre teme",
+ "primary_color": "Culoare primară",
+ "reset": "Resetați"
+ },
+ "vibrate": {
+ "description": "Activați sau dezactivați vibrațiile de pe acest dispozitiv atunci când controlați dispozitivele.",
+ "header": "Vibrați"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Începeți conversația"
+ }
+ },
+ "sidebar": {
+ "done": "Terminat",
+ "external_app_configuration": "Configurație aplicație",
+ "sidebar_toggle": "Schimbati bara laterală"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/ru.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/ru.json
new file mode 100644
index 00000000..ffd20c6a
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/ru.json
@@ -0,0 +1,4673 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "конфигурацией",
+ "device": "устройством",
+ "integration": "интеграцией",
+ "user": "пользователем"
+ }
+ },
+ "groups": {
+ "owner": "Владелец",
+ "system-admin": "Администраторы",
+ "system-read-only": "Системные пользователи",
+ "system-users": "Пользователи"
+ },
+ "panel": {
+ "calendar": "Календарь",
+ "config": "Конфигурация",
+ "developer_tools": "Панель разработчика",
+ "energy": "Энергия",
+ "history": "История",
+ "logbook": "Журнал событий",
+ "mailbox": "Почтовый ящик",
+ "map": "Карта",
+ "media_browser": "Мультимедиа",
+ "profile": "Профиль",
+ "shopping_list": "Список покупок",
+ "states": "Обзор"
+ },
+ "state": {
+ "default": {
+ "off": "Выключено",
+ "on": "Включено",
+ "unavailable": "Недоступно",
+ "unknown": "Неизвестно"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Авто",
+ "off": "Выкл",
+ "on": "Вкл"
+ },
+ "hvac_action": {
+ "cooling": "Охлаждение",
+ "drying": "Осушение",
+ "fan": "Вентиляция",
+ "heating": "Обогрев",
+ "idle": "Бездействие",
+ "off": "Выключено"
+ },
+ "preset_mode": {
+ "activity": "Активность",
+ "away": "Не дома",
+ "boost": "Турбо",
+ "comfort": "Комфорт",
+ "eco": "Экономия",
+ "home": "Дома",
+ "none": "Не выбран",
+ "sleep": "Ночь"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Авто",
+ "away": "Не дома",
+ "baby": "Ребенок",
+ "boost": "Турбо",
+ "comfort": "Комфорт",
+ "eco": "Эко",
+ "home": "Дома",
+ "normal": "Нормальный",
+ "sleep": "Ночь"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Охрана",
+ "armed_away": "Охрана",
+ "armed_custom_bypass": "Охрана",
+ "armed_home": "Охрана",
+ "armed_night": "Охрана",
+ "armed_vacation": "Охрана",
+ "arming": "Постановка на охрану",
+ "disarmed": "Снято с охраны",
+ "disarming": "Снятие с охраны",
+ "pending": "Ожидание",
+ "triggered": "Тревога"
+ },
+ "default": {
+ "entity_not_found": "Объект не найден",
+ "error": "Ошибка",
+ "unavailable": "Недоступно",
+ "unknown": "Неизв"
+ },
+ "device_tracker": {
+ "home": "Дома",
+ "not_home": "Не дома"
+ },
+ "person": {
+ "home": "Дома",
+ "not_home": "Не дома"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "По умолчанию",
+ "header": "Аудио",
+ "input": "Вход",
+ "output": "Выход"
+ },
+ "network": {
+ "container": "Контейнер",
+ "disabled": "Отключено",
+ "header": "Сеть",
+ "host": "Хост"
+ },
+ "no_configuration": "Это дополнение не предоставляет конфигурацию для настройки…",
+ "options": {
+ "edit_in_ui": "Форма ввода",
+ "edit_in_yaml": "Текстовый редактор",
+ "header": "Параметры",
+ "invalid_yaml": "Неверный YAML",
+ "show_unused_optional": "Показать неиспользуемые дополнительные параметры конфигурации"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Не удалось получить список изменений дополнения.",
+ "go_to_config": "Редактировать конфигурацию",
+ "install": "Не удалось установить дополнение.",
+ "restart": "Не удалось перезапустить дополнение.",
+ "start": "Не удалось запустить дополнение.",
+ "start_invalid_config": "Перейти к конфигурации",
+ "stop": "Не удалось остановить дополнение.",
+ "uninstall": "Не удалось удалить дополнение.",
+ "validate_config": "Не удалось проверить конфигурацию дополнения"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor ('Application Armor') - это модуль безопасности ядра Linux, который ограничивает возможности дополнений, такие как доступ к сети, доступ к необработанным сокетам и разрешение на чтение, запись или выполнение определенных файлов. \n\nАвторы дополнений могут предоставлять свои профили безопасности, оптимизированные для дополнения, или запрашивать его отключение. Отключение AppArmor повысит риски безопасности и, следовательно, отрицательно повлияет на рейтинг безопасности дополнения.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "Это дополнение может аутентифицировать пользователей с помощью Home Assistant, предоставляя возможность входить в приложения, работающие внутри дополнения, используя имя пользователя и пароль Home Assistant.",
+ "title": "Аутентификация Home Assistant"
+ },
+ "docker_api": {
+ "description": "Это дополнение запрашивает доступ для управления программным обеспечением Docker, запущенным на Вашей системе. Этот режим предоставляет полный доступ и контроль над всей системой Home Assistant, что увеличивает риски безопасности и может повредить Вашу систему при неправильном использовании. Таким образом, эта функция отрицательно влияет на рейтинг безопасности дополнения. \n\nЭтот уровень доступа не предоставляется автоматически и должен быть подтвержден Вами. Для этого необходимо вручную отключить режим защиты операционной системы. Отключайте защиту только в случае необходимости, а также если Вы знаете источник дополнения и доверяете ему.",
+ "title": "Полный доступ к Docker"
+ },
+ "full_access": {
+ "description": "Этому дополнению предоставляется полный доступ к оборудованию Вашей системы. Такой уровень доступа сравним с привилегированным режимом в Docker. Поскольку это открывает возможные риски, функция снижает рейтинг безопасности дополнения. \n\nЭтот уровень доступа не предоставляется автоматически и должен быть подтвержден Вами. Для этого необходимо вручную отключить режим защиты операционной системы. Отключайте защиту только в случае необходимости, а также если Вы знаете источник дополнения и доверяете ему.",
+ "title": "Полный доступ к оборудованию"
+ },
+ "hassio_api": {
+ "description": "Дополнению предоставлен доступ к API Supervisor. По умолчанию дополнение имеет доступ к общей информации о версии Вашей системы. Когда дополнение запрашивает доступ к API на уровне 'manager' или 'admin', оно получает доступ для управления несколькими частями Вашей системы Home Assistant. Это разрешение отрицательно влияет на рейтинг безопасности дополнения.",
+ "title": "Доступ к API Supervisor"
+ },
+ "homeassistant_api": {
+ "description": "Этому дополнению разрешен доступ к Вашему Home Assistant напрямую через его API. Этот режим также позволяет взаимодействовать с Home Assistant без необходимости в дополнительных токенах аутентификации.",
+ "title": "Доступ к API Home Assistant"
+ },
+ "host_network": {
+ "description": "Дополнения обычно работают на собственном изолированном сетевом уровне, что не позволяет им получать доступ к сети операционной системы. В некоторых случаях это может ограничивать работу дополнения, и поэтому изоляция может быть снята автором, предоставляя дополнению полный доступ к сетевым возможностям хост-машины. Но это также снижает безопасность, и, следовательно, снижает рейтинг безопасности дополнения.",
+ "title": "Сеть хоста"
+ },
+ "host_pid": {
+ "description": "Обычно процессы, выполняемые дополнением, изолированы от всех других системных процессов. Это дополнение запрашивает доступ к системным процессам, запущенным в системе хоста, а также разрешение на создание новых процессов в системе. Этот режим предоставляет полный доступ и контроль над всей системой Home Assistant, что увеличивает риски безопасности и может повредить Вашу систему при неправильном использовании. Таким образом, эта функция отрицательно влияет на рейтинг безопасности дополнения. \n\nЭтот уровень доступа не предоставляется автоматически и должен быть подтвержден Вами. Для этого необходимо вручную отключить режим защиты операционной системы. Отключайте защиту только в случае необходимости, а также если Вы знаете источник дополнения и доверяете ему.",
+ "title": "Пространство имен хост-процессов"
+ },
+ "ingress": {
+ "description": "Это дополнение использует Ingress для безопасного встраивания своего веб-интерфейса в Home Assistant.",
+ "title": "Ingress"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "auth",
+ "core": "Основной",
+ "docker": "docker",
+ "hardware": "hardware",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "host",
+ "host_pid": "host pid",
+ "ingress": "ingress",
+ "rating": "rating",
+ "stage": "stage"
+ },
+ "rating": {
+ "description": "Home Assistant присваивает каждому дополнению рейтинг безопасности, который указывает на риски, связанные с использованием этого дополнения. Чем больший доступ к системе оно требует, тем ниже оценка, так как это повышает возможные риски безопасности. \n\nОценка выставляется по шкале от 1 до 6. Где 1 - самый низкий балл (такое дополнение считается самым небезопасным и подверженным самому высокому риску), а 6 - самый высокий балл (самое безопасное дополнение и с самым низким риском при его использовании).",
+ "title": "Рейтинг безопасности"
+ },
+ "role": {
+ "admin": "admin",
+ "backup": "backup",
+ "default": "default",
+ "homeassistant": "homeassistant",
+ "manager": "manager"
+ },
+ "stage": {
+ "description": "Дополнения могут находиться в следующих стадиях разработки: \n\n {icon_stable} **Стабильная**: конечная стадия дополнения, готовая к повседневной эксплуатации. \n\n {icon_experimental} **Экспериментальная**: может содержать ошибки и может быть незавершенным. \n\n {icon_deprecated} **Устаревшая**: дополнения в этой стадии больше не будут получать обновления.",
+ "title": "Стадия разработки"
+ },
+ "stages": {
+ "deprecated": "Устаревший",
+ "experimental": "Экспериментальный"
+ }
+ },
+ "changelog": "Список изменений",
+ "cpu_usage": "Использование ЦП",
+ "hostname": "Доменное имя",
+ "install": "установить",
+ "new_update_available": "Доступно обновление {name} до версии {version}",
+ "not_available_arch": "Это дополнение несовместимо с процессором или операционной системой Вашего устройства.",
+ "not_available_version": "В настоящее время у Вас установлен Home Assistant {core_version_installed}. Для обновления дополнения требуется Home Assistan версии {core_version_needed} или выше.",
+ "open_web_ui": "Веб-интерфейс",
+ "option": {
+ "auto_update": {
+ "description": "Автоматически обновлять дополнение при наличии новой версии",
+ "title": "Автоматическое обновление"
+ },
+ "boot": {
+ "description": "Запускать дополнение во время загрузки системы",
+ "title": "Автозагрузка"
+ },
+ "ingress_panel": {
+ "description": "Добавить это дополнение на боковую панель",
+ "title": "Показывать на боковой панели"
+ },
+ "protected": {
+ "description": "Ограничивает доступ дополнения к системе",
+ "title": "Режим защиты операционной системы"
+ },
+ "watchdog": {
+ "description": "Перезапускать дополнение при сбоях",
+ "title": "Watchdog"
+ }
+ },
+ "protection_mode": {
+ "content": "В этом дополнении отключен режим защиты. Это дает дополнению полный доступ ко всей операционной системе хоста, что увеличивает риски безопасности и может вызвать неполадки при неправильном использовании. Отключайте режим защиты системы только в случае необходимости, а также если Вы знаете источник дополнения и доверяете ему.",
+ "enable": "Активировать",
+ "title": "Режим защиты деактивирован!"
+ },
+ "ram_usage": "Использование ОЗУ",
+ "rebuild": "восстановить",
+ "restart": "перезапустить",
+ "start": "запустить",
+ "stop": "остановить",
+ "uninstall": "удалить",
+ "visit_addon_page": "Перейдите на страницу дополнения {name} для получения дополнительной информации."
+ },
+ "documentation": {
+ "get_documentation": "Не удалось получить документацию к дополнению, {error}"
+ },
+ "failed_to_reset": "Не удалось сбросить конфигурацию дополнения, {error}",
+ "failed_to_save": "Не удалось сохранить конфигурацию дополнения, {error}",
+ "logs": {
+ "get_logs": "Не удалось получить журналы дополнения, {error}"
+ },
+ "panel": {
+ "configuration": "Конфигурация",
+ "documentation": "Документация",
+ "info": "Информация",
+ "log": "Журнал"
+ },
+ "state": {
+ "installed": "Дополнение установлено",
+ "not_available": "Дополнение не доступно на Вашей системе",
+ "not_installed": "Дополнение не установлено"
+ }
+ },
+ "backup": {
+ "addons": "Дополнения",
+ "confirm_password": "Подтверждение пароля",
+ "could_not_create": "Не удалось создать резервную копию",
+ "create": "Создать",
+ "create_backup": "Создать резервную копию",
+ "create_blocked_not_running": "Создание резервной копии сейчас невозможно, потому что система находится в состоянии {state}.",
+ "created": "Создан",
+ "delete_backup_confirm": "удалить",
+ "delete_backup_text": "Вы уверены, что хотите удалить {number} {number, plural,\n one {резервную копию}\n few {резервных копии}\n many {резервных копий}\n other {резервных копий}\n}?",
+ "delete_backup_title": "Удалить резервную копию",
+ "delete_selected": "Удалить выбранные резервные копии",
+ "download_backup": "Скачать резервную копию",
+ "enter_password": "Пожалуйста, введите пароль.",
+ "failed_to_delete": "Не удалось удалить",
+ "folders": "Папки",
+ "full_backup": "Полная резервная копия",
+ "name": "Название",
+ "no_backups": "Резервные копии не найдены",
+ "partial_backup": "Частичная резервная копия",
+ "password": "Пароль",
+ "password_protection": "Защитить паролем",
+ "passwords_not_matching": "Пароли не совпадают",
+ "select_type": "Выберите что нужно восстановить:",
+ "selected": "Выбрано: {number}",
+ "size": "Размер",
+ "type": "Тип резервной копии:",
+ "upload_backup": "Загрузить резервную копию на сервер"
+ },
+ "common": {
+ "cancel": "Отменить",
+ "close": "Закрыть",
+ "description": "Описание",
+ "error": {
+ "unknown": "Неизвестная ошибка.",
+ "update_failed": "Обновление не удалось."
+ },
+ "failed_to_restart_name": "Не удалось перезапустить {name}",
+ "failed_to_update_name": "Не удалось обновить {name}",
+ "learn_more": "Узнать больше",
+ "menu": "Меню",
+ "new_version_available": "Доступна новая версия",
+ "newest_version": "Доступная версия",
+ "no": "Нет",
+ "refresh": "Обновить",
+ "release_notes": "Список изменений",
+ "reload": "Перезагрузить",
+ "reset_defaults": "Настройки по умолчанию",
+ "reset_options": "Сбросить параметры",
+ "restart": "Перезапустить",
+ "restart_name": "Перезапустить {name}",
+ "review": "обзор",
+ "running_version": "В настоящее время установлена версия {version}",
+ "save": "Сохранить",
+ "show": "показать",
+ "show_more": "Показать дополнительную информацию об этом",
+ "update": "Обновить",
+ "update_available": "{count, plural,\n one {Доступно обновление}\n few {Доступно {count} обновления}\n many {Доступно {count} обновлений}\n other {Доступно {count} обновлений}\n}",
+ "version": "Версия",
+ "yes": "Да"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Вы уверены, что хотите сбросить все параметры?",
+ "title": "Сбросить параметры"
+ },
+ "restart": {
+ "text": "Вы уверены, что хотите перезапустить {name}?",
+ "title": "Перезапустить {name}"
+ },
+ "update": {
+ "text": "Вы уверены, что хотите обновить {name} до версии {version}?",
+ "title": "Обновление {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Доступна новая версия",
+ "addon_running": "Дополнение работает",
+ "addon_stopped": "Дополнение остановлено",
+ "addons": "Установленные дополнения",
+ "no_addons": "Нет установленных дополнений. Вы можете установить их из магазина дополнений."
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Отменить",
+ "description": "В настоящее время в качестве диска данных используется ''{current_path}''. Перемещение диска данных приведет к перезагрузке устройства и займет {time} минут. В течение этого времени Ваш Home Assistant будет недоступен. Не отключайте питание во время перемещения!",
+ "loading_devices": "Загрузочные устройства",
+ "move": "Переместить",
+ "moving": "Перемещение диска данных",
+ "moving_desc": "Перезагрузка и перемещение диска данных. Пожалуйста, наберитесь терпения",
+ "no_devices": "Не найдено подходящих подключенных устройств",
+ "select_device": "Выберите новый диск данных",
+ "title": "Переместить диск данных"
+ },
+ "hardware": {
+ "attributes": "Атрибуты",
+ "device_path": "Путь к устройству",
+ "id": "ID",
+ "search": "Поиск оборудования",
+ "subsystem": "Подсистема",
+ "title": "Оборудование"
+ },
+ "network": {
+ "connected_to": "Подключено к {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Отключено",
+ "dns_servers": "DNS-серверы",
+ "failed_to_change": "Не удалось изменить настройки сети.",
+ "gateway": "Адрес шлюза",
+ "ip_netmask": "IP-адрес / маска сети",
+ "open": "Без шифрования",
+ "scan_ap": "Найти точки доступа",
+ "static": "Статический",
+ "title": "Настройки сети",
+ "unsaved": "У Вас есть несохраненные изменения, которые будут потеряны, если Вы перейдете на другую вкладку. Продолжить?",
+ "warning": "Если Вы измените адреса Wi-Fi, IP или шлюза, соединение может прерваться!",
+ "wep": "WEP",
+ "wpa": "WPA-PSK"
+ },
+ "registries": {
+ "add_new_registry": "Добавить новый реестр",
+ "add_registry": "Добавить реестр",
+ "failed_to_add": "Не удалось добавить реестр.",
+ "failed_to_remove": "Не удалось удалить реестр.",
+ "no_registries": "Реестры не настроены",
+ "password": "Пароль",
+ "registry": "Реестр",
+ "remove": "Удалить",
+ "title_add": "Добавить новый реестр контейнеров",
+ "title_manage": "Управление реестрами контейнеров",
+ "username": "Имя пользователя"
+ },
+ "repositories": {
+ "add": "Добавить",
+ "remove": "Удалить",
+ "title": "Репозитории дополнений",
+ "used": "Из этого репозитория установлены дополнения, поэтому он не может быть удалён."
+ },
+ "restart_addon": {
+ "confirm_text": "Перезапустить дополнение",
+ "text": "Перезапустить дополнение с внесенными изменениями?"
+ },
+ "update": {
+ "backup": "Резервная копия",
+ "create_backup": "Создать резервную копию {name} перед обновлением",
+ "creating_backup": "Создание резервной копии {name}",
+ "updating": "Обновление {name} до версии {version}"
+ }
+ },
+ "my": {
+ "error": "Произошла неизвестная ошибка",
+ "error_addon_no_ingress": "Дополнение не поддерживает ingress.",
+ "error_addon_not_found": "Дополнение не найдено.",
+ "error_addon_not_installed": "Запрошенное дополнение не установлено. Сначала нужно установить его.",
+ "error_addon_not_started": "Запрашиваемое дополнение не запущено. Сначала нужно запустить его.",
+ "faq_link": "часто задаваемыми вопросами по My Home Assistant",
+ "not_supported": "Это перенаправление не поддерживается Вашим Home Assistant. Ознакомьтесь с {link}, чтобы узнать поддерживаемые перенаправления и версии, в которых они были добавлены."
+ },
+ "panel": {
+ "addons": "Дополнения",
+ "backups": "Резервные копии",
+ "dashboard": "Панель",
+ "store": "Магазин дополнений",
+ "system": "Система"
+ },
+ "store": {
+ "check_updates": "Проверить наличие обновлений",
+ "missing_addons": "Пропали дополнения? Активируйте расширенный режим на странице Вашего профиля пользователя",
+ "no_results_found": "Не найдено результатов в {repository}.",
+ "registries": "Реестры",
+ "repositories": "Репозитории"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Использование ЦП",
+ "ram_usage": "Использование ОЗУ"
+ },
+ "host": {
+ "change": "Изменить",
+ "change_hostname": "Изменить доменное имя хоста",
+ "confirm_reboot": "Вы уверены, что хотите перезагрузить хост?",
+ "confirm_shutdown": "Вы уверены, что хотите выключить хост?",
+ "deployment": "Развёртывание",
+ "docker_version": "Версия Docker",
+ "emmc_lifetime_used": "Срок службы eMMC",
+ "failed_to_get_hardware_list": "Не удалось получить список оборудования",
+ "failed_to_import_from_usb": "Не удалось импортировать данные с USB",
+ "failed_to_move": "Не удалось переместить диск данных",
+ "failed_to_reboot": "Не удалось перезагрузить хост",
+ "failed_to_set_hostname": "Не удалось установить доменное имя хоста",
+ "failed_to_shutdown": "Не удалось выключить хост",
+ "hardware": "Оборудование",
+ "hostname": "Доменное имя",
+ "import_from_usb": "Импорт с USB",
+ "ip_address": "IP-адрес",
+ "move_datadisk": "Переместить диск данных",
+ "new_hostname": "Введите новое доменное имя хоста:",
+ "operating_system": "Операционная система",
+ "reboot_host": "Перезагрузить хост",
+ "shutdown_host": "Завершить работу хоста",
+ "used_space": "Использование памяти"
+ },
+ "log": {
+ "get_logs": "Не удалось получить журналы {provider}, {error}.",
+ "log_provider": "Провайдер журналов"
+ },
+ "supervisor": {
+ "beta_backup": "Перед активацией этой функции убедитесь, что у Вас есть резервная копия Ваших данных.",
+ "beta_join_confirm": "Вы уверены, что хотите перейти на бета-версии?",
+ "beta_release_items": "Канал обновлений включает в себя бета-версии для:",
+ "beta_warning": "Бета-версии предназначены для тестирования и могут содержать нестабильные изменения кода.",
+ "channel": "Канал обновлений",
+ "cpu_usage": "Использование ЦП",
+ "failed_to_reload": "Не удалось перезагрузить Supervisor.",
+ "failed_to_set_option": "Не удалось настроить параметр Supervisor.",
+ "failed_to_update": "Не удалось обновить Supervisor.",
+ "join_beta_action": "Перейти на бета",
+ "join_beta_description": "Получать тестовые версии обновлений для Home Assistant (RC), Supervisor и операционной системы хоста",
+ "leave_beta_action": "Покинуть бета",
+ "leave_beta_description": "Получать стабильные версии обновлений для Home Assistant, Supervisor и операционной системы хоста",
+ "ram_usage": "Использование ОЗУ",
+ "reload_supervisor": "Перезагрузить Supervisor",
+ "search": "Поиск",
+ "share_diagnostics": "Отправлять данные для диагностики",
+ "share_diagnostics_description": "Автоматически отправлять отчеты о сбоях и диагностическую информацию.",
+ "share_diagonstics_description": "Хотели бы Вы автоматически отправлять отчеты о сбоях и другую диагностическую информацию, когда Supervisor обнаруживает неожиданные ошибки? {line_break} Это позволит разработчикам получать необходимые данные для решения проблем. Данные не будут содержать никакой личной или конфиденциальной информации и будут доступны только основной команде Home Assistant. {line_break} Вы сможете отменить отправку данных в настройках в любое время.",
+ "share_diagonstics_title": "Помогите улучшить Home Assistant",
+ "unhealthy_description": "Запуск неработоспособной системы может вызвать проблемы. Ниже приведен список проблем, обнаруженных при установке. Перейдите по ссылкам, чтобы узнать, как их решить.",
+ "unhealthy_reason": {
+ "docker": "Среда Docker не работает должным образом",
+ "privileged": "Supervisor не имеет привилегий",
+ "setup": "Настройка Supervisor не удалась",
+ "supervisor": "Supervisor не смог обновить",
+ "untrusted": "Обнаружен недоверенный контент"
+ },
+ "unhealthy_title": "Ваша система неработоспособна",
+ "unsupported_description": "Ниже приведен список проблем, обнаруженных при установке. Перейдите по ссылкам, чтобы узнать, как их решить.",
+ "unsupported_reason": {
+ "apparmor": "На хосте не активирован AppArmor",
+ "container": "Контейнеры, известные как вызывающие проблемы",
+ "content-trust": "Проверка доверия к контенту отключена",
+ "content_trust": "Проверка доверия к контенту отключена",
+ "dbus": "DBUS",
+ "docker_configuration": "Конфигурация Docker",
+ "docker_version": "Версия Docker",
+ "job_conditions": "Игнорируемые условия работы",
+ "lxc": "LXC",
+ "network_manager": "Менеджер сети",
+ "os": "Операционная система",
+ "os_agent": "Агент ОС",
+ "privileged": "Supervisor не имеет привилегий",
+ "software": "Обнаружено неподдерживаемое программное обеспечение",
+ "source_mods": "Модификации источников",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Используется неподдерживаемый вариант установки",
+ "update_supervisor": "Обновить Supervisor",
+ "warning": "ВНИМАНИЕ"
+ }
+ },
+ "update_available": {
+ "core_note": "Supervisor откатится к версии {version}, в случае неудачи при обновлении.",
+ "create_backup": "Создать резервную копию перед обновлением",
+ "creating_backup": "Создание резервной копии {name}",
+ "description": "В настоящее время установлена версия {version}. Доступно обновление до версии {newest_version}.",
+ "no_update": "Нет доступных обновлений {name}.",
+ "open_release_notes": "Список изменений",
+ "update_name": "Обновление {name}",
+ "updating": "Обновление {name} до версии {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Запомнить меня на этом устройстве?",
+ "confirm": "Да",
+ "decline": "Нет"
+ },
+ "backup": {
+ "upload_backup": "Загрузить резервную копию на сервер"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Охрана (не дома)",
+ "arm_custom_bypass": "Охрана с исключениями",
+ "arm_home": "Охрана (дома)",
+ "arm_night": "Охрана (ночь)",
+ "arm_vacation": "Охрана (отпуск)",
+ "clear_code": "Сброс",
+ "code": "Код",
+ "disarm": "Снять с охраны"
+ },
+ "area": {
+ "area_not_found": "Пространство не найдено."
+ },
+ "automation": {
+ "last_triggered": "Последний запуск",
+ "trigger": "Запустить действия"
+ },
+ "button": {
+ "press": "Нажать"
+ },
+ "camera": {
+ "not_available": "Изображение не доступно"
+ },
+ "climate": {
+ "aux_heat": "Дополнительный нагрев",
+ "away_mode": "Режим \"не дома\"",
+ "cooling": "Охлаждение {name}",
+ "current_temperature": "Текущая температура {name}",
+ "currently": "Сейчас",
+ "fan_mode": "Режим вентиляции",
+ "heating": "Обогрев {name}",
+ "high": "высокий",
+ "low": "низкий",
+ "on_off": "Вкл / Выкл",
+ "operation": "Режим работы",
+ "preset_mode": "Пресет",
+ "swing_mode": "Режим качания воздушных шторок",
+ "target_humidity": "Заданная влажность",
+ "target_temperature": "Заданная температура",
+ "target_temperature_entity": "Заданная температура {name}",
+ "target_temperature_mode": "Заданная температура {name} в режиме {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "убавлять",
+ "increment": "прибавлять",
+ "reset": "сбросить"
+ }
+ },
+ "cover": {
+ "position": "Положение",
+ "tilt_position": "Наклон"
+ },
+ "fan": {
+ "direction": "Направление",
+ "forward": "Вперед",
+ "oscillate": "Колебания",
+ "preset_mode": "Предустановленный режим",
+ "reverse": "Задний ход",
+ "speed": "Скорость"
+ },
+ "humidifier": {
+ "humidity": "Заданная влажность",
+ "mode": "Режим",
+ "on_entity": "{name} включено",
+ "target_humidity_entity": "{name} заданная влажность"
+ },
+ "light": {
+ "brightness": "Яркость",
+ "cold_white_value": "Яркость холодного белого",
+ "color_brightness": "Яркость цвета",
+ "color_temperature": "Цветовая температура",
+ "effect": "Эффект",
+ "warm_white_value": "Яркость теплого белого",
+ "white_value": "Яркость белого"
+ },
+ "lock": {
+ "code": "Код",
+ "lock": "Закрыть",
+ "unlock": "Открыть"
+ },
+ "media_player": {
+ "browse_media": "Просмотр медиа",
+ "media_next_track": "Следующий трек",
+ "media_pause": "Пауза",
+ "media_play": "Воспроизведение",
+ "media_play_pause": "Воспроизведение / пауза",
+ "media_previous_track": "Предыдущий трек",
+ "media_stop": "Стоп",
+ "media_volume_down": "Уменьшить громкость",
+ "media_volume_mute": "Выключить звук",
+ "media_volume_unmute": "Включить звук",
+ "media_volume_up": "Увеличить громкость",
+ "nothing_playing": "Ничего не воспроизводится",
+ "sound_mode": "Режим звука",
+ "source": "Источник",
+ "text_to_speak": "Воспроизвести текст",
+ "turn_off": "Выключить",
+ "turn_on": "Включить"
+ },
+ "persistent_notification": {
+ "dismiss": "Закрыть"
+ },
+ "scene": {
+ "activate": "Активировать"
+ },
+ "script": {
+ "cancel": "Отменить",
+ "cancel_multiple": "Отменить {number}",
+ "run": "Запустить"
+ },
+ "service": {
+ "run": "Запустить"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "Отмена",
+ "finish": "Готово",
+ "pause": "Пауза",
+ "start": "Запуск"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Продолжить уборку",
+ "return_to_base": "Вернуть к док-станции",
+ "start_cleaning": "Начать уборку",
+ "turn_off": "Выключить",
+ "turn_on": "Включить"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Режим \"не дома\"",
+ "currently": "Сейчас",
+ "on_off": "Вкл / Выкл",
+ "operation": "Режим работы",
+ "target_temperature": "Заданная температура"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Давление",
+ "humidity": "Влажность",
+ "precipitation": "Осадки",
+ "temperature": "Температура",
+ "visibility": "Видимость",
+ "wind_speed": "Ветер"
+ },
+ "cardinal_direction": {
+ "e": "В",
+ "ene": "ВСВ",
+ "ese": "ВЮВ",
+ "n": "С",
+ "ne": "СВ",
+ "nne": "ССВ",
+ "nnw": "ССЗ",
+ "nw": "СЗ",
+ "s": "Ю",
+ "se": "ЮВ",
+ "sse": "ЮЮВ",
+ "ssw": "ЮЮЗ",
+ "sw": "ЮЗ",
+ "w": "З",
+ "wnw": "ЗСЗ",
+ "wsw": "ЗЮЗ"
+ },
+ "day": "День",
+ "forecast": "Прогноз",
+ "high": "Днём",
+ "low": "Ночью",
+ "night": "Ночь"
+ }
+ },
+ "common": {
+ "and": "и",
+ "back": "Назад",
+ "cancel": "Отменить",
+ "clear": "Очистить",
+ "close": "Закрыть",
+ "continue": "Продолжить",
+ "copied": "Скопировано",
+ "copied_clipboard": "Скопировано в буфер обмена",
+ "delete": "Удалить",
+ "disable": "Деактивировать",
+ "enable": "Активировать",
+ "error_required": "Обязательное поле",
+ "help": "Справка",
+ "leave": "Выйти",
+ "loading": "Загрузка",
+ "menu": "Меню",
+ "move": "Переместить",
+ "next": "Далее",
+ "no": "Нет",
+ "not_now": "Не сейчас",
+ "overflow_menu": "Выпадающее меню",
+ "previous": "Назад",
+ "refresh": "Обновить",
+ "remove": "Удалить",
+ "rename": "Переименовать",
+ "save": "Сохранить",
+ "skip": "Пропустить",
+ "stay": "Остаться",
+ "submit": "Подтвердить",
+ "successfully_deleted": "Успешно удалено",
+ "successfully_saved": "Успешно сохранено",
+ "undo": "Отменить",
+ "yes": "Да"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Дополнение",
+ "error": {
+ "fetch_addons": {
+ "description": "Произошла ошибка при загрузке дополнений.",
+ "title": "Ошибка при загрузке дополнений"
+ },
+ "no_supervisor": {
+ "description": "Дополнения не поддерживаются.",
+ "title": "Отсутствует Supervisor"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Добавить",
+ "failed_create_area": "Не удалось создать пространство.",
+ "name": "Название",
+ "text": "Введите название нового пространства.",
+ "title": "Добавить пространство"
+ },
+ "add_new": "Добавить пространство…",
+ "area": "Пространство",
+ "clear": "Очистить",
+ "no_areas": "Не найдено ни одного пространства",
+ "no_match": "Подходящих пространств не найдено",
+ "show_areas": "Показать пространства"
+ },
+ "attributes": {
+ "expansion_header": "Атрибуты"
+ },
+ "blueprint-picker": {
+ "add_user": "Добавить пользователя",
+ "remove_user": "Удалить пользователя",
+ "select_blueprint": "Выберите проект"
+ },
+ "calendar": {
+ "my_calendars": "Мои календари",
+ "today": "Сегодня"
+ },
+ "data-table": {
+ "clear": "Очистить",
+ "filtering_by": "Отфильтровано по принадлежности к",
+ "hidden": "Скрыто: {number}",
+ "no-data": "Нет данных",
+ "search": "Поиск"
+ },
+ "date-range-picker": {
+ "end_date": "Окончание",
+ "ranges": {
+ "last_week": "Прошедшая неделя",
+ "this_week": "Эта неделя",
+ "today": "Сегодня",
+ "yesterday": "Вчера"
+ },
+ "select": "Выбрать",
+ "start_date": "Начало"
+ },
+ "device-picker": {
+ "clear": "Очистить",
+ "device": "Устройство",
+ "no_area": "Не указано",
+ "no_devices": "Не найдено ни одного устройства",
+ "no_match": "Подходящих устройств не найдено",
+ "show_devices": "Показать устройства",
+ "toggle": "Переключить"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Атрибут",
+ "show_attributes": "Показать атрибуты"
+ },
+ "entity-picker": {
+ "clear": "Очистить",
+ "edit": "Изменить",
+ "entity": "Объект",
+ "no_match": "Подходящих объектов не найдено",
+ "show_entities": "Показать объекты"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "Интеграция \"History\" отключена",
+ "loading_history": "Загрузка истории…",
+ "no_history_found": "История не найдена."
+ },
+ "logbook": {
+ "by": "- инициатор:",
+ "by_service": "службой",
+ "entries_not_found": "В журнале нет событий.",
+ "messages": {
+ "became_unavailable": "изменяет состояние на \"Недоступно\"",
+ "changed_to_state": "изменяет состояние на \"{state}\"",
+ "cleared_device_class": "не обнаруживает {device_class}",
+ "cleared_tampering": "не обнаруживает проникновение",
+ "detected_device_class": "обнаруживает {device_class}",
+ "detected_tampering": "обнаруживает проникновение",
+ "is_closing": "закрывается",
+ "is_opening": "открывается",
+ "rose": "всходит",
+ "set": "заходит",
+ "turned_off": "выключается",
+ "turned_on": "включается",
+ "was_at_home": "дома",
+ "was_at_state": "{state}",
+ "was_away": "не дома",
+ "was_closed": "Закрыто",
+ "was_connected": "подключается",
+ "was_disconnected": "отключается",
+ "was_locked": "блокируется",
+ "was_low": "регистрирует низкий заряд",
+ "was_normal": "регистрирует нормальный заряд",
+ "was_opened": "Открыто",
+ "was_plugged_in": "подключается",
+ "was_safe": "регистрирует безопасность",
+ "was_unlocked": "разблокируется",
+ "was_unplugged": "отключается",
+ "was_unsafe": "не регистрирует безопасность"
+ },
+ "retrieval_error": "Не удалось загрузить журнал событий",
+ "show_trace": "Показать трассировку"
+ },
+ "media-browser": {
+ "audio_not_supported": "Ваш браузер не поддерживает аудио.",
+ "choose_player": "Выбор медиаплеера",
+ "class": {
+ "album": "Альбом",
+ "app": "Приложение",
+ "artist": "Исполнитель",
+ "channel": "Канал",
+ "composer": "Композитор",
+ "contributing_artist": "Соисполнитель",
+ "directory": "Библиотека",
+ "episode": "Эпизод",
+ "game": "Игра",
+ "genre": "Жанр",
+ "image": "Изображение",
+ "movie": "Фильм",
+ "music": "Музыка",
+ "playlist": "Плейлист",
+ "podcast": "Подкаст",
+ "season": "Сезон",
+ "track": "Трек",
+ "tv_show": "Сериалы",
+ "url": "URL-адрес",
+ "video": "Видео"
+ },
+ "documentation": "документации",
+ "learn_adding_local_media": "Подробнее о добавлении мультимедиа читайте в {documentation}.",
+ "local_media_files": "Поместите видео, аудио и графические файлы в каталог мультимедиа, чтобы иметь возможность просматривать и воспроизводить их в браузере или на поддерживаемых медиаплеерах.",
+ "media-player-browser": "Мультимедиа",
+ "media_browsing_error": "Ошибка просмотра мультимедиа",
+ "media_not_supported": "Этот тип мультимедиа не поддерживается.",
+ "media_player": "Медиаплеер",
+ "no_items": "Нет элементов",
+ "no_local_media_found": "В локальном хранилище медиафайлы не найдены.",
+ "no_media_folder": "Похоже, что Вы еще не создали каталог мультимедиа.",
+ "pick": "Выбрать",
+ "pick-media": "Выбрать Медиа",
+ "play": "Воспроизведение",
+ "play-media": "Воспроизведение Медиа",
+ "setup_local_help": "О том, как добавить медиафайлы в локальное хранилище, Вы можете узнать в {documentation}.",
+ "video_not_supported": "Ваш браузер не поддерживает видео.",
+ "web-browser": "Веб-браузер"
+ },
+ "picture-upload": {
+ "label": "Изображение",
+ "unsupported_format": "Неподдерживаемый формат. Выберите изображение в формате JPEG, PNG или GIF."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Введите значение QR-кода",
+ "manual_input": "Вы можете отсканировать QR-код с помощью любого QR-сканера.",
+ "not_supported": "Ваш браузер не поддерживает QR-сканирование.",
+ "only_https_supported": "Вы можете использовать камеру для сканирования QR-кода только при использовании HTTPS.",
+ "select_camera": "Выберите камеру"
+ },
+ "related-filter-menu": {
+ "filter": "Фильтр",
+ "filter_by_area": "Фильтр по пространствам",
+ "filter_by_device": "Фильтр по устройствам",
+ "filter_by_entity": "Фильтр по объектам",
+ "filtered_by_area": "пространству: {area_name}",
+ "filtered_by_device": "устройству: {device_name}",
+ "filtered_by_entity": "объекту: {entity_name}"
+ },
+ "related-items": {
+ "area": "Пространство",
+ "automation": "Используется в автоматизациях",
+ "device": "Устройство",
+ "entity": "Связанные объекты",
+ "group": "Используется в группах",
+ "integration": "Интеграция",
+ "no_related_found": "Не найдено связей с другими элементами.",
+ "scene": "Используется в сценах",
+ "script": "Используется в скриптах"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one {день}\n few {дня}\n many {дней}\n other {дней}\n}",
+ "hour": "{count} {count, plural,\n one {час}\n few {часа}\n many {часов}\n other {часов}\n}",
+ "minute": "{count} {count, plural,\n one {минута}\n few {минуты}\n many {минут}\n other {минут}\n}",
+ "second": "{count} {count, plural,\n one {секунда}\n few {секунды}\n many {секунд}\n other {секунд}\n}",
+ "week": "{count} {count, plural,\n one {неделя}\n few {недели}\n many {недель}\n other {недель}\n}"
+ },
+ "future_duration": {
+ "day": "Через {count} {count, plural,\n one {день}\n few {дня}\n many {дней}\n other {дней}\n}",
+ "hour": "Через {count} {count, plural,\n one {час}\n few {часа}\n many {часов}\n other {часов}\n}",
+ "minute": "Через {count} {count, plural,\n one {минуту}\n few {минуты}\n many {минут}\n other {минут}\n}",
+ "second": "Через {count} {count, plural,\n one {секунду}\n few {секунды}\n many {секунд}\n other {секунд}\n}",
+ "week": "Через {count} {count, plural,\n one {неделю}\n few {недели}\n many {недель}\n other {недель}\n}"
+ },
+ "just_now": "Сейчас",
+ "never": "Никогда",
+ "past_duration": {
+ "day": "{count} {count, plural,\n one {день}\n few {дня}\n many {дней}\n other {дней}\n} назад",
+ "hour": "{count} {count, plural,\n one {час}\n few {часа}\n many {часов}\n other {часов}\n} назад",
+ "minute": "{count} {count, plural,\n one {минуту}\n few {минуты}\n many {минут}\n other {минут}\n} назад",
+ "second": "{count} {count, plural,\n one {секунду}\n few {секунды}\n many {секунд}\n other {секунд}\n} назад",
+ "week": "{count} {count, plural,\n one {неделю}\n few {недели}\n many {недель}\n other {недель}\n} назад"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Документация по интеграции",
+ "required": "Обязательное поле",
+ "service_data": "Данные службы",
+ "target": "Цели",
+ "target_description": "Пространства, устройства или объекты, которые следует использовать в качестве целевых для этой службы."
+ },
+ "service-picker": {
+ "service": "Служба"
+ },
+ "statistic-picker": {
+ "learn_more": "Узнайте больше о статистике",
+ "missing_entity": "Нужного объекта нет в списке?",
+ "no_match": "Подходящей статистики не найдено",
+ "no_statistics": "Статистика отсутствует",
+ "statistic": "Статистика"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Загрузка статистики…",
+ "no_statistics_found": "Статистика не найдена.",
+ "statistic_types": {
+ "max": "максимум",
+ "mean": "среднее",
+ "min": "минимум",
+ "sum": "сумма"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Выберите пространство",
+ "add_device_id": "Выберите устройство",
+ "add_entity_id": "Выберите объект",
+ "expand": "Развернуть",
+ "expand_area_id": "Разделить это пространство на отдельные дочерние устройства и объекты",
+ "expand_device_id": "Разделить это устройство на отдельные дочерние объекты",
+ "remove": "Удалить",
+ "remove_area_id": "Удалить пространство",
+ "remove_device_id": "Удалить устройство",
+ "remove_entity_id": "Удалить объект"
+ },
+ "user-picker": {
+ "add_user": "Добавить пользователя",
+ "no_user": "Нет пользователя",
+ "remove_user": "Удалить пользователя"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Home Assistant будет автоматически добавлять новые обнаруженные устройства {integration}",
+ "enable_new_entities_label": "Добавлять новые объекты",
+ "enable_polling_description": "Home Assistant будет автоматически опрашивать объекты {integration} для получения обновлений",
+ "enable_polling_label": "Включить опрос для получения обновлений",
+ "restart_home_assistant": "Чтобы изменения вступили в силу, нужно перезапустить Home Assistant.",
+ "title": "{integration}",
+ "update": "Обновить"
+ },
+ "domain_toggler": {
+ "reset_entities": "Сброс настроек",
+ "title": "Управление доменами"
+ },
+ "entity_registry": {
+ "control": "Управление",
+ "customize_link": "кастомизация",
+ "dismiss": "Отклонить",
+ "editor": {
+ "advanced": "Дополнительные настройки",
+ "area": "Переназначить пространство для этого объекта",
+ "area_note": "По умолчанию объекты наследуют настройки пространства от родительского устройства. Если Вы переназначите пространство для этого объекта, он больше не будет наследовать настройки пространства.",
+ "change_device_area": "Переназначить пространство для устройства",
+ "confirm_delete": "Вы уверены, что хотите удалить этот объект?",
+ "delete": "Удалить",
+ "device_class": "Отображать как",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Дверь",
+ "garage_door": "Гаражные ворота",
+ "opening": "Другое",
+ "window": "Окно"
+ },
+ "cover": {
+ "door": "Дверь",
+ "garage": "Гаражные ворота",
+ "window": "Окно"
+ }
+ },
+ "device_disabled": "Родительское устройство этого объекта деактивировано.",
+ "enabled_cause": "Деактивировано {cause}.",
+ "enabled_delay_confirm": "Объекты будут добавлены в Home Assistant через {delay} секунд",
+ "enabled_description": "Деактивированные объекты не будут доступны в Home Assistant.",
+ "enabled_label": "Активировать объект",
+ "enabled_restart_confirm": "Перезапустите Home Assistant, чтобы завершить изменение объектов",
+ "entity_id": "ID объекта",
+ "follow_device_area": "Получить настройки пространства от устройства",
+ "icon": "Иконка",
+ "icon_error": "Параметр должен быть в формате 'prefix:iconname' (например: 'mdi:home')",
+ "name": "Название",
+ "note": "(может работать не со всеми интеграциями)",
+ "open_device_settings": "Открыть настройки устройства",
+ "unavailable": "Этот объект недоступен.",
+ "update": "Обновить"
+ },
+ "faq": "документацией",
+ "info_customize": "Вы можете перезаписать некоторые атрибуты в разделе {customize_link}.",
+ "no_unique_id": "У этого объекта (''{entity_id}'') нет уникального идентификатора, поэтому его настройками нельзя управлять из пользовательского интерфейса. Ознакомьтесь с {faq_link} для получения более подробной информации.",
+ "related": "Зависимости",
+ "settings": "Настройки"
+ },
+ "generic": {
+ "cancel": "Отмена",
+ "close": "Закрыть",
+ "default_confirmation_title": "Вы уверены?",
+ "ok": "ОК"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Начальное значение",
+ "maximum": "Максимальное значение",
+ "minimum": "Минимальное значение",
+ "restore": "Восстанавливать последнее известное значение при запуске Home Assistant",
+ "step": "Шаг"
+ },
+ "generic": {
+ "icon": "Иконка",
+ "name": "Название"
+ },
+ "input_datetime": {
+ "date": "Дата",
+ "datetime": "Дата и время",
+ "mode": "Режим отображения",
+ "time": "Время"
+ },
+ "input_number": {
+ "box": "Поле ввода",
+ "max": "Максимальное значение",
+ "min": "Минимальное значение",
+ "mode": "Режим отображения",
+ "slider": "Слайдер",
+ "step": "Шаг слайдера",
+ "unit_of_measurement": "Единица измерения"
+ },
+ "input_select": {
+ "add": "Добавить",
+ "add_option": "Добавить вариант",
+ "no_options": "Добавьте доступные для выбора варианты.",
+ "options": "Варианты"
+ },
+ "input_text": {
+ "max": "Максимальная длина",
+ "min": "Минимальная длина",
+ "mode": "Режим отображения",
+ "password": "Пароль",
+ "pattern": "Шаблон регулярного выражения для проверки на стороне клиента",
+ "text": "Текст"
+ },
+ "platform_not_loaded": "Интеграция {platform} не загружена. Добавьте в YAML-конфигурацию 'default_config:' или ''{platform}:''.",
+ "required_error_msg": "Обязательное поле",
+ "timer": {
+ "duration": "Продолжительность"
+ },
+ "yaml_not_editable": "Настройки этого объекта нельзя изменить из пользовательского интерфейса. Настраиваться из пользовательского интерфейса могут только те объекты, которые были созданы в нём."
+ },
+ "image_cropper": {
+ "crop": "Обрезать"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Закрыть",
+ "close_tile_cover": "Закрыть",
+ "close_tilt_cover": "Закрыть",
+ "open_cover": "Открыть",
+ "open_tilt_cover": "Открыть",
+ "stop_cover": "Остановить"
+ },
+ "details": "Свойства",
+ "dismiss": "Закрыть диалоговое окно",
+ "edit": "Изменить объект",
+ "history": "История",
+ "last_changed": "Последнее изменение",
+ "last_updated": "Последнее обновление",
+ "logbook": "Журнал событий",
+ "person": {
+ "create_zone": "Создать зону из текущего местоположения"
+ },
+ "remote": {
+ "activity": "Текущая активность"
+ },
+ "restored": {
+ "confirm_remove_text": "Вы уверены, что хотите удалить этот объект?",
+ "confirm_remove_title": "Удалить объект?",
+ "not_provided": "Этот объект в настоящее время недоступен. Его родительская интеграция или устройство удалены, изменены либо неисправны.",
+ "remove_action": "Удалить объект",
+ "remove_intro": "Если объект больше не используется, Вы можете удалить его."
+ },
+ "script": {
+ "last_action": "Последнее действие",
+ "last_triggered": "Последний запуск"
+ },
+ "settings": "Настройки объекта",
+ "show_more": "Показать больше",
+ "sun": {
+ "elevation": "Высота над горизонтом",
+ "rising": "Восход",
+ "setting": "Заход"
+ },
+ "updater": {
+ "title": "Инструкция по обновлению"
+ },
+ "vacuum": {
+ "clean_spot": "Местная уборка",
+ "commands": "Команды:",
+ "fan_speed": "Мощность всасывания",
+ "locate": "Найти",
+ "pause": "Пауза",
+ "return_home": "Вернуть к док-станции",
+ "start": "Запуск",
+ "start_pause": "Запуск/Пауза",
+ "status": "Состояние",
+ "stop": "Остановить"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Разбирать сообщения в формате JSON",
+ "entities": "Объекты",
+ "no_entities": "Нет объектов",
+ "no_triggers": "Нет триггеров",
+ "payload_display": "Содержание сообщений",
+ "recent_messages": "{n} последних полученных сообщений",
+ "show_as_yaml": "Показывать сообщения в формате YAML",
+ "title": "Отладочная информация устройства {device}",
+ "triggers": "Триггеры"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Настройки"
+ },
+ "loading": {
+ "loading_flow": "Подождите, пока завершится инициализация {integration}",
+ "loading_step": "Загрузка следующего шага настройки {integration}"
+ },
+ "success": {
+ "description": "Параметры успешно сохранены."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Пространства",
+ "automation": "Автоматизации",
+ "blueprint": "Проекты",
+ "core": "Общие",
+ "customize": "Кастомизация",
+ "devices": "Устройства",
+ "energy": "Конфигурация энергии",
+ "entities": "Объекты",
+ "helpers": "Вспомогательное",
+ "info": "О системе",
+ "integrations": "Интеграции",
+ "logs": "Журнал сервера",
+ "lovelace": "Панели Lovelace",
+ "person": "Люди",
+ "scene": "Сцены",
+ "script": "Скрипты",
+ "server_control": "Сервер",
+ "tag": "Метки",
+ "users": "Пользователи",
+ "zone": "Зоны"
+ },
+ "reload": {
+ "automation": "Автоматизации",
+ "command_line": "Объекты интеграции \"Command Line\"",
+ "core": "Местоположение и кастомизация",
+ "filesize": "Объекты интеграции \"File Size\"",
+ "filter": "Объекты интеграции \"Filter\"",
+ "generic": "Объекты интеграции \"Generic IP Camera\"",
+ "generic_thermostat": "Объекты интеграции \"Generic Thermostat\"",
+ "group": "Группы, объекты групп и службы уведомлений",
+ "history_stats": "Объекты интеграции \"History Stats\"",
+ "homekit": "HomeKit",
+ "input_boolean": "Вспомогательные переключатели",
+ "input_datetime": "Вспомогательные элементы ввода даты и времени",
+ "input_number": "Вспомогательные элементы ввода чисел",
+ "input_select": "Вспомогательные выпадающие списки",
+ "input_text": "Вспомогательные элементы ввода текста",
+ "min_max": "Объекты интеграции \"Min/Max\"",
+ "mqtt": "Объекты интеграции \"MQTT\", настроенные вручную",
+ "person": "Люди",
+ "ping": "Объекты интеграции \"Ping (ICMP)\"",
+ "reload": "{domain}",
+ "rest": "Объекты и службы уведомлений интеграции \"REST\"",
+ "rpi_gpio": "Объекты интеграции \"Raspberry Pi GPIO\"",
+ "scene": "Сцены",
+ "script": "Скрипты",
+ "smtp": "Службы уведомлений SMTP",
+ "statistics": "Объекты интеграции \"Statistics\"",
+ "telegram": "Службы уведомлений Telegram",
+ "template": "Объекты шаблонов",
+ "themes": "Темы",
+ "trend": "Объекты интеграции \"Trend\"",
+ "universal": "Объекты интеграции \"Universal Media Player\"",
+ "zone": "Зоны"
+ },
+ "server_control": {
+ "perform_action": "{action} сервер",
+ "restart": "Перезапустить",
+ "stop": "Остановить"
+ },
+ "types": {
+ "navigation": "Навигация",
+ "reload": "Перезагрузить",
+ "server_control": "Сервер"
+ }
+ },
+ "filter_placeholder": "Фильтр объектов",
+ "key_c_hint": "Вы можете открыть панель поиска на любой странице, нажав на клавиатуре клавишу 'c'.",
+ "nothing_found": "Ничего не найдено!",
+ "title": "Быстрый поиск"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant ничего не услышал",
+ "error": "К сожалению, произошла ошибка",
+ "found": "Я нашел для Вас следующее:",
+ "how_can_i_help": "Чем могу помочь?",
+ "label": "Введите вопрос и нажмите 'Enter'",
+ "label_voice": "Введите текст и нажмите 'Enter' или нажмите на значок микрофона, чтобы говорить"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Добавить дочерние устройства",
+ "clusters": "Управление кластерами",
+ "device_children": "Показать дочерние устройства",
+ "reconfigure": "Перенастроить устройство",
+ "remove": "Удалить устройство",
+ "view_in_visualization": "Показать на схеме сети Zigbee",
+ "zigbee_information": "Подпись устройства Zigbee"
+ },
+ "confirmations": {
+ "remove": "Вы уверены, что хотите удалить это устройство?"
+ },
+ "device_children": "Дочерние устройства Zigbee",
+ "device_signature": "Подпись устройства Zigbee",
+ "last_seen": "Устройство было в сети",
+ "manuf": "{manufacturer}",
+ "no_area": "Не указано",
+ "power_source": "Источник питания",
+ "quirk": "Нестандартный обработчик",
+ "services": {
+ "reconfigure": "Перенастройка устройства ZHA. Используйте эту службу, если у Вас есть проблемы с устройством. Если рассматриваемое устройство работает от батареи, пожалуйста, убедитесь, что оно не находится в режиме сна и принимает команды, когда вы запускаете эту службу.",
+ "remove": "Удалить устройство из сети Zigbee.",
+ "updateDeviceName": "Укажите название для этого устройства в реестре устройств.",
+ "zigbee_information": "Просмотр информации о Zigbee устройстве."
+ },
+ "unknown": "Неизвестно",
+ "zha_device_card": {
+ "device_name_placeholder": "Название"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Атрибут",
+ "battery_device_warning": "Перед повторной настройкой устройства с батарейным питанием необходимо вывести из спящего режима. О том, как это сделать, Вы можете узнать из инструкций к Вашему устройству.",
+ "bind_header": "Привязка",
+ "button_hide": "Скрыть подробности",
+ "button_show": "Подробнее",
+ "cluster_header": "Кластер",
+ "configuration_complete": "Настройка устройства завершена",
+ "configuration_failed": "Не удалось перенастроить устройство. Дополнительная информация может быть получена в журналах.",
+ "configuring_alt": "Настройка",
+ "heading": "Перенастройка устройства",
+ "in_progress": "Устройство настраивается, это может занять некоторое время.",
+ "introduction": "Повторная настройка устройства в Вашей сети Zigbee. Используйте эту функцию, если устройство работает некорректно.",
+ "min_max_change": "мин/макс/изменение",
+ "reporting_header": "Получение отчёта",
+ "run_in_background": "Вы можете закрыть это диалоговое окно, настройка продолжится в фоновом режиме.",
+ "start_reconfiguration": "Начать повторную настройку"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\n one {день}\n few {дня}\n many {дней}\n other {дней}\n}",
+ "hour": "{count} {count, plural,\n one {час}\n few {часа}\n many {часов}\n other {часов}\n}",
+ "minute": "{count} {count, plural,\n one {минута}\n few {минуты}\n many {минут}\n other {минут}\n}",
+ "second": "{count} {count, plural,\n one {секунда}\n few {секунды}\n many {секунд}\n other {секунд}\n}",
+ "week": "{count} {count, plural,\n one {неделя}\n few {недели}\n many {недель}\n other {недель}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Вы все ещё можете редактировать свою конфигурацию в YAML.",
+ "editor_not_available": "Для типа ''{type}'' нет визуального редактора.",
+ "editor_not_supported": "Визуальный редактор не поддерживается для этой конфигурации",
+ "error_detected": "Обнаружены ошибки конфигурации",
+ "key_missing": "Требуемый ключ ''{key}'' отсутствует.",
+ "key_not_expected": "Ключ ''{key}'' не ожидается или не поддерживается визуальным редактором.",
+ "key_wrong_type": "Предоставленное значение для ''{key}'' не поддерживается визуальным редактором. Поддерживается: ({type_correct}), получено: ({type_wrong}).",
+ "no_state_array_support": "Множественные значения состояния не поддерживаются в визуальном редакторе",
+ "no_template_editor_support": "В форме ввода шаблоны не поддерживаются",
+ "no_type_provided": "Тип не указан."
+ },
+ "supervisor": {
+ "ask": "Обратитесь за помощью",
+ "observer": "Проверьте Observer",
+ "reboot": "Попробуйте перезагрузить хост",
+ "system_health": "Проверьте статус системы",
+ "title": "Не удалось загрузить панель Supervisor!",
+ "wait": "Убедитесь, что у Supervisor было достаточно времени для запуска."
+ }
+ },
+ "login-form": {
+ "log_in": "Вход",
+ "password": "Пароль",
+ "remember": "Запомнить"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Нажмите кнопку, чтобы настроить {entity}",
+ "close": "Закрыть",
+ "dismiss_all": "Очистить уведомления",
+ "empty": "Нет уведомлений",
+ "title": "Уведомления"
+ },
+ "notification_toast": {
+ "connection_lost": "Соединение потеряно. Повторное подключение…",
+ "dismiss": "Закрыть",
+ "integration_starting": "{integration} запускается…",
+ "service_call_failed": "Не удалось вызвать службу {service}.",
+ "started": "Home Assistant работает!",
+ "starting": "Home Assistant запускается, пока что не всё может быть доступно.",
+ "triggered": "Сработало от {name}",
+ "wrapping_up_startup": "Завершение запуска, пока что не всё может быть доступно."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Хотите больше параметров для конфигурирования? Активируйте расширенный режим на",
+ "link_profile_page": "странице Вашего профиля"
+ },
+ "areas": {
+ "add_picture": "Добавить изображение",
+ "assigned_to_area": "Привязаны к этому пространству",
+ "caption": "Пространства",
+ "data_table": {
+ "area": "Пространство",
+ "devices": "Устройства",
+ "entities": "Объекты"
+ },
+ "delete": {
+ "confirmation_text": "Связанные устройства потеряют привязку к этому пространству.",
+ "confirmation_title": "Вы уверены, что хотите удалить это пространство?"
+ },
+ "description": "Группировка устройств и объектов по пространствам",
+ "edit_settings": "Настройки пространства",
+ "editor": {
+ "area_id": "ID пространства",
+ "create": "Добавить",
+ "default_name": "Новое пространство",
+ "delete": "Удалить",
+ "linked_entities_caption": "Объекты",
+ "name": "Название",
+ "name_required": "Укажите название пространства",
+ "no_linked_entities": "Нет объектов",
+ "unknown_error": "Неизвестная ошибка.",
+ "update": "Обновить"
+ },
+ "picker": {
+ "create_area": "Добавить пространство",
+ "header": "Пространства",
+ "integrations_page": "Страница интеграций",
+ "introduction": "Этот раздел используется для определения местоположения устройств. Данная информация будет использоваться в Home Assistant, чтобы помочь вам в организации Вашего интерфейса, определении прав доступа и интеграции с другими системами.",
+ "introduction2": "Чтобы назначить устройству местоположение, используйте указанную ниже ссылку для перехода на страницу интеграций, а затем откройте уже настроенную интеграцию.",
+ "no_areas": "У Вас еще нет добавленных пространств."
+ },
+ "targeting_area": "Используют объекты из этого пространства"
+ },
+ "automation": {
+ "caption": "Автоматизации",
+ "description": "Управление правилами автоматизации",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Использовать проект"
+ },
+ "header": "Новая автоматизация",
+ "how": "Каким образом Вы хотели бы создать автоматизацию?",
+ "start_empty": "Начать с нуля",
+ "start_empty_description": "Создать новую автоматизацию",
+ "thingtalk": {
+ "create": "Создать",
+ "header": "Описать автоматизацию, которую Вы хотите создать",
+ "input_label": "Что должна делать эта автоматизация?",
+ "intro": "И мы попробуем преобразовать её из текста. Например: Turn the lights off when I leave."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Добавить действие",
+ "delete": "Удалить",
+ "delete_confirm": "Вы уверены, что хотите удалить?",
+ "duplicate": "Дублировать",
+ "header": "Действия",
+ "introduction": "Действия — это то, что сделает Home Assistant, когда правило автоматизации сработает.",
+ "learn_more": "Узнайте больше о действиях",
+ "name": "Действие",
+ "type": {
+ "choose": {
+ "add_option": "Добавить вариант",
+ "conditions": "Условия",
+ "default": "Действия по умолчанию",
+ "label": "Выбор",
+ "option": "{number} вариант",
+ "remove_option": "Удалить вариант",
+ "sequence": "Действия"
+ },
+ "condition": {
+ "label": "Условие"
+ },
+ "delay": {
+ "delay": "Продолжительность",
+ "label": "Ожидание истечения времени"
+ },
+ "device_id": {
+ "action": "Действие",
+ "extra_fields": {
+ "brightness_pct": "Яркость",
+ "code": "Код",
+ "flash": "Мигание",
+ "humidity": "Относительная влажность",
+ "message": "Сообщение",
+ "mode": "Режим",
+ "position": "Положение",
+ "title": "Заголовок",
+ "value": "Значение"
+ },
+ "label": "Устройство"
+ },
+ "event": {
+ "event": "Событие",
+ "label": "Создать событие",
+ "service_data": "Данные службы"
+ },
+ "repeat": {
+ "label": "Повтор",
+ "sequence": "Действия",
+ "type": {
+ "count": {
+ "label": "Счётчик"
+ },
+ "until": {
+ "conditions": "Действия будут выполняться в цикле до тех пор, когда начнут соблюдаться эти условия",
+ "label": "До"
+ },
+ "while": {
+ "conditions": "Действия будут выполняться в цикле, пока соблюдаются эти условия",
+ "label": "Пока"
+ }
+ },
+ "type_select": "Режим повторений"
+ },
+ "scene": {
+ "label": "Активировать сцену"
+ },
+ "service": {
+ "label": "Вызвать службу"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Продолжить по истечении времени",
+ "label": "Ожидание триггера",
+ "timeout": "Тайм-аут (необязательно)"
+ },
+ "wait_template": {
+ "continue_timeout": "Продолжить по истечении времени",
+ "label": "Ожидание шаблона",
+ "timeout": "Тайм-аут (необязательно)",
+ "wait_template": "Шаблон"
+ }
+ },
+ "type_select": "Тип действия",
+ "unsupported_action": "Отсутствует форма ввода для этого действия: {action}"
+ },
+ "alias": "Название",
+ "blueprint": {
+ "blueprint_to_use": "Используемый проект",
+ "header": "Проект",
+ "no_blueprints": "У Вас еще нет проектов.",
+ "no_inputs": "Для этого проекта не требуется указание исходных данных."
+ },
+ "conditions": {
+ "add": "Добавить условие",
+ "delete": "Удалить",
+ "delete_confirm": "Вы уверены, что хотите удалить?",
+ "duplicate": "Дублировать",
+ "header": "Условия",
+ "introduction": "Условия — это необязательная часть правила автоматизации. Действие автоматизации не будет запущено, пока не будут удовлетворены все условия.",
+ "learn_more": "Узнайте больше об условиях",
+ "name": "Условие",
+ "type": {
+ "and": {
+ "label": "И"
+ },
+ "device": {
+ "condition": "Условие",
+ "extra_fields": {
+ "above": "Выше",
+ "below": "Ниже",
+ "for": "Продолжительность",
+ "hvac_mode": "Режим работы ОВиК",
+ "preset_mode": "Предустановленный режим"
+ },
+ "label": "Устройство"
+ },
+ "not": {
+ "label": "Не"
+ },
+ "numeric_state": {
+ "above": "Выше",
+ "below": "Ниже",
+ "label": "Числовое состояние",
+ "value_template": "Шаблон (необязательно)"
+ },
+ "or": {
+ "label": "Или"
+ },
+ "state": {
+ "label": "Состояние",
+ "state": "Состояние"
+ },
+ "sun": {
+ "after": "После:",
+ "after_offset": "Смещение (необязательно)",
+ "before": "До:",
+ "before_offset": "Смещение (необязательно)",
+ "label": "Солнце",
+ "sunrise": "Восхода",
+ "sunset": "Заката"
+ },
+ "template": {
+ "label": "Шаблон",
+ "value_template": "Шаблон"
+ },
+ "time": {
+ "after": "После",
+ "before": "До",
+ "label": "Время",
+ "type_input": "Вспомогательный элемент даты и времени",
+ "type_value": "Фиксированное время",
+ "weekdays": {
+ "fri": "Пятница",
+ "mon": "Понедельник",
+ "sat": "Суббота",
+ "sun": "Воскресенье",
+ "thu": "Четверг",
+ "tue": "Вторник",
+ "wed": "Среда"
+ }
+ },
+ "trigger": {
+ "id": "ID триггера",
+ "label": "Триггер",
+ "no_triggers": "Триггеры отсутствуют"
+ },
+ "zone": {
+ "entity": "Объект с местоположением",
+ "label": "Зона",
+ "zone": "Зона"
+ }
+ },
+ "type_select": "Тип условия",
+ "unsupported_condition": "Отсутствует форма ввода для этого условия: {condition}"
+ },
+ "copy_to_clipboard": "Скопировать в буфер обмена",
+ "default_name": "Новая автоматизация",
+ "description": {
+ "label": "Описание",
+ "placeholder": "Дополнительное описание"
+ },
+ "edit_ui": "Форма ввода",
+ "edit_yaml": "Текстовый редактор",
+ "enable_disable": "Активировать / деактивировать правило автоматизации",
+ "introduction": "Используйте автоматизацию, чтобы оживить Ваш дом.",
+ "load_error_not_editable": "Доступны для редактирования только автоматизации из automations.yaml.",
+ "load_error_unknown": "Ошибка загрузки автоматизации ({err_no}).",
+ "max": {
+ "parallel": "Максимальное количество параллельных запусков",
+ "queued": "Длина очереди"
+ },
+ "modes": {
+ "description": "Режим управляет тем, что происходит при срабатывании автоматизации, когда действия еще выполняются с предыдущего триггера. Ознакомьтесь с {documentation_link} для получения дополнительной информации.",
+ "documentation": "документацией",
+ "label": "Режим",
+ "parallel": "Параллельный",
+ "queued": "Очередь",
+ "restart": "Рестарт",
+ "single": "Одиночный (по умолчанию)"
+ },
+ "move_down": "Переместить ниже",
+ "move_up": "Переместить выше",
+ "save": "Сохранить",
+ "show_trace": "Показать трассировку",
+ "triggers": {
+ "add": "Добавить триггер",
+ "delete": "Удалить",
+ "delete_confirm": "Вы уверены, что хотите удалить?",
+ "duplicate": "Дублировать",
+ "edit_id": "Изменить ID триггера",
+ "header": "Триггеры",
+ "id": "ID триггера",
+ "introduction": "Триггеры — это то, что запускает процесс автоматизации. Можно указать несколько триггеров на одно и то же правило. Когда триггер сработает, Home Assistant будет проверять условия (если таковые имеются), и выполнять действия.",
+ "learn_more": "Узнайте больше о триггерах",
+ "name": "Триггер",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Выше",
+ "below": "Ниже",
+ "for": "Продолжительность (необязательно)",
+ "zone": "Зона"
+ },
+ "label": "Устройство",
+ "trigger": "Триггер"
+ },
+ "event": {
+ "context_user_pick": "Выберите пользователя",
+ "context_user_picked": "Пользователь, вызывающий события",
+ "context_users": "Ограничить событиями, вызванными",
+ "event_data": "Данные события",
+ "event_type": "Тип события",
+ "label": "Событие"
+ },
+ "geo_location": {
+ "enter": "Войти",
+ "event": "Событие:",
+ "label": "Геолокация",
+ "leave": "Покинуть",
+ "source": "Источник",
+ "zone": "Зона"
+ },
+ "homeassistant": {
+ "event": "Событие:",
+ "label": "Home Assistant",
+ "shutdown": "Завершение работы",
+ "start": "Запуск"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Значение (необязательно)",
+ "topic": "Топик"
+ },
+ "numeric_state": {
+ "above": "Выше",
+ "below": "Ниже",
+ "label": "Числовое состояние",
+ "value_template": "Шаблон (необязательно)"
+ },
+ "state": {
+ "attribute": "Атрибут (необязательно)",
+ "for": "В течение (необязательно)",
+ "from": "С (необязательно)",
+ "label": "Состояние",
+ "to": "На (необязательно)"
+ },
+ "sun": {
+ "event": "Событие:",
+ "label": "Солнце",
+ "offset": "Смещение (необязательно)",
+ "sunrise": "Восход",
+ "sunset": "Закат"
+ },
+ "tag": {
+ "label": "Метка"
+ },
+ "template": {
+ "label": "Шаблон",
+ "value_template": "Шаблон"
+ },
+ "time": {
+ "at": "Время",
+ "label": "Время",
+ "type_input": "Вспомогательный элемент даты и времени",
+ "type_value": "Фиксированное время"
+ },
+ "time_pattern": {
+ "hours": "Часов",
+ "label": "Шаблон времени",
+ "minutes": "Минут",
+ "seconds": "Секунд"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Идентификатор Webhook"
+ },
+ "zone": {
+ "enter": "Войти",
+ "entity": "Объект с местоположением",
+ "event": "Событие:",
+ "label": "Зона",
+ "leave": "Покинуть",
+ "zone": "Зона"
+ }
+ },
+ "type_select": "Тип триггера",
+ "unsupported_platform": "Отсутствует форма ввода для этой платформы: {platform}"
+ },
+ "unsaved_confirm": "У вас есть несохраненные изменения. Вы уверены, что хотите выйти?"
+ },
+ "picker": {
+ "add_automation": "Добавить автоматизацию",
+ "delete_automation": "Удалить автоматизацию",
+ "delete_confirm": "Вы уверены, что хотите удалить эту автоматизацию?",
+ "dev_automation": "Отладка автоматизации",
+ "dev_only_editable": "Процесс отладки доступен только для автоматизаций с уникальным идентификатором.",
+ "duplicate": "Дублировать",
+ "duplicate_automation": "Дублировать",
+ "edit_automation": "Редактировать автоматизацию",
+ "header": "Редактор автоматизаций",
+ "headers": {
+ "name": "Название"
+ },
+ "introduction": "Этот редактор позволяет создавать и редактировать автоматизации.\nПожалуйста, ознакомьтесь с инструкциями по указанной ниже ссылке и убедитесь, что правильно настроили Home Assistant.",
+ "learn_more": "Узнайте больше об автоматизациях",
+ "no_automations": "Автоматизации не найдены",
+ "only_editable": "Доступны для редактирования только автоматизации из automations.yaml.",
+ "pick_automation": "Выберите автоматизацию для редактирования",
+ "show_info_automation": "Показать информацию об автоматизации"
+ },
+ "thingtalk": {
+ "create": "Создать автоматизацию",
+ "link_devices": {
+ "ambiguous_entities": "Одно или несколько устройств имеют более одного совпадающего объекта, выберите то, которое Вы хотите использовать.",
+ "header": "Прекрасно! Теперь нам нужно связать некоторые устройства",
+ "unknown_placeholder": "Неизвестный заполнитель"
+ },
+ "task_selection": {
+ "error_empty": "Введите текст автоматизации или нажмите \"Пропустить\".",
+ "error_unsupported": "Мы не могли создать для этого автоматизацию (пока?).",
+ "for_example": "Например:",
+ "header": "Новая автоматизация",
+ "introduction": "Введите ниже, что должна делать эта автоматизация, и мы попытаемся преобразовать текст в автоматизацию Home Assistant.",
+ "language_note": "Примечание: пока поддерживается только английский язык."
+ }
+ },
+ "trace": {
+ "download_trace": "Скачать трассировку",
+ "edit_automation": "Редактировать автоматизацию",
+ "newer_trace": "Следующая трассировка",
+ "older_trace": "Предыдущая трассировка",
+ "refresh": "Обновить"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "форума сообщества",
+ "error_no_url": "Введите URL-адрес проекта.",
+ "file_name": "Путь к проекту",
+ "header": "Импортировать проект",
+ "import_btn": "Предварительный просмотр проекта",
+ "import_header": "Проект ''{name}''",
+ "import_introduction_link": "Вы можете импортировать проекты других пользователей из Github и {community_link}. Для этого введите в этом окне URL-адрес проекта.",
+ "importing": "Загрузка проекта…",
+ "raw_blueprint": "Состав проекта",
+ "save_btn": "Импортировать проект",
+ "saving": "Импортирование проекта…",
+ "unsupported_blueprint": "Этот проект не поддерживается",
+ "url": "URL-адрес проекта"
+ },
+ "caption": "Проекты",
+ "description": "Управление проектами",
+ "overview": {
+ "add_blueprint": "Импортировать проект",
+ "confirm_delete_header": "Удалить этот проект?",
+ "confirm_delete_text": "Вы уверены, что хотите удалить этот проект?",
+ "create_automation": "Создать автоматизацию",
+ "create_script": "Создать скрипт",
+ "delete_blueprint": "Удалить проект",
+ "discover_more": "Найти больше проектов",
+ "header": "Редактор проекта",
+ "headers": {
+ "domain": "Домен",
+ "file_name": "Название файла",
+ "name": "Название",
+ "type": "Тип"
+ },
+ "introduction": "В этом разделе настроек Вы можете импортировать новые и управлять существующими проектами.",
+ "learn_more": "Узнайте больше об использовании проектов",
+ "share_blueprint": "Поделиться проектом",
+ "share_blueprint_no_url": "Не удалось поделиться проектом: нет исходного URL-адреса",
+ "types": {
+ "automation": "Автоматизация",
+ "script": "Скрипт"
+ },
+ "use_blueprint": "Создать автоматизацию"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Инструкция по настройке",
+ "disable": "деактивировать",
+ "enable": "активировать",
+ "enable_ha_skill": "Активировать навык Home Assistant для Alexa",
+ "enable_state_reporting": "Отправлять изменения состояний объектов",
+ "info": "Интеграция Alexa позволяет управлять устройствами, добавленными в Home Assistant, через любое устройство с поддержкой Alexa.",
+ "info_state_reporting": "Если Вы активируете этот параметр, Home Assistant будет отправлять все изменения состояний объектов, доступных Amazon. Это позволит Вам всегда видеть актуальные состояния в приложениях Alexa и использовать изменения состояний для автоматизации повседневных задач.",
+ "manage_entities": "Управление объектами",
+ "state_reporting_error": "Не удалось {enable_disable} отправку изменения состояний.",
+ "sync_entities": "Синхронизировать объекты",
+ "sync_entities_error": "Не удалось синхронизировать объекты:",
+ "title": "Alexa"
+ },
+ "connected": "Подключено",
+ "connecting": "Подключение…",
+ "connection_status": "Статус подключения к облаку",
+ "fetching_subscription": "Получение информации о подписке…",
+ "google": {
+ "config_documentation": "Инструкция по настройке",
+ "devices_pin": "PIN-код устройств безопасности",
+ "enable_ha_skill": "Активировать навык Home Assistant Cloud для Google Assistant",
+ "enable_state_reporting": "Отправлять изменения состояний объектов",
+ "enter_pin_error": "Не удалось сохранить PIN-код:",
+ "enter_pin_hint": "PIN-код",
+ "enter_pin_info": "Введите PIN-код для взаимодействия с устройствами безопасности. Устройства безопасности — это двери, гаражные ворота и замки. При взаимодействии с такими устройствами через Google Assistant, Вам будет предложено сказать или ввести этот PIN-код.",
+ "info": "Интеграция Google Assistant позволяет управлять устройствами, добавленными в Home Assistant, через любое устройство с поддержкой Google Assistant.",
+ "info_state_reporting": "Если Вы активируете этот параметр, Home Assistant будет отправлять все изменения состояний объектов, доступных Google. Это позволит Вам всегда видеть актуальные состояния в приложениях Google.",
+ "manage_entities": "Управление объектами",
+ "not_configured_text": "Перед использованием Google Assistant необходимо активировать навык Home Assistant Cloud в приложении \"Google Home\".",
+ "not_configured_title": "Google Assistant не активирован",
+ "security_devices": "Устройства безопасности",
+ "sync_entities": "Синхронизировать объекты",
+ "sync_entities_404_message": "Не удалось синхронизировать Ваши объекты с Google. Попробуйте запустить синхронизацию путём голосового запроса: «Эй, Google, синхронизируй мои устройства».",
+ "title": "Google Assistant"
+ },
+ "integrations": "Интеграции",
+ "integrations_introduction": "Интеграции для Home Assistant Cloud позволяют подключаться к облачным службам без необходимости выставлять Ваш Home Assistant в интернет.",
+ "integrations_introduction2": "Посетите веб-сайт для получения информации о ",
+ "integrations_link_all_features": "всех доступных функциях",
+ "manage_account": "Учётная запись",
+ "nabu_casa_account": "Учётная запись Nabu Casa",
+ "not_connected": "Не подключено",
+ "remote": {
+ "access_is_being_prepared": "Удалённый доступ подготавливается. Мы сообщим Вам, когда он будет готов.",
+ "certificate_info": "Информация о сертификате",
+ "connected": "Подключено",
+ "info": "Home Assistant Cloud обеспечивает безопасное подключение к Вашему серверу, даже если Вы находитесь вдали от дома.",
+ "instance_is_available": "Ваш Home Assistant доступен по адресу",
+ "instance_will_be_available": "Ваш Home Assistant будет доступен по адресу",
+ "link_learn_how_it_works": "Узнайте, как это работает",
+ "not_connected": "Не подключено",
+ "reconnecting": "Нет соединения. Попытка повторного подключения.",
+ "remote_enabled": {
+ "caption": "Подключаться автоматически",
+ "description": "Включите этот параметр, чтобы всегда иметь удалённый доступ к Вашему Home Assistant."
+ },
+ "title": "Удалённый доступ"
+ },
+ "sign_out": "Выйти",
+ "thank_you_note": "Спасибо за то, что стали частью Home Assistant Cloud. Именно благодаря таким людям, как Вы, мы можем сделать все возможное для того, чтобы домашняя автоматизация была максимально удобной для всех. Спасибо!",
+ "tts": {
+ "default_language": "Язык для использования по умолчанию",
+ "dialog": {
+ "create_automation": "Создать автоматизацию",
+ "example_message": "Привет, {name}! Вы можете воспроизводить любой текст на любом поддерживаемом медиаплеере!",
+ "header": "Попробуйте воспроизвести текст",
+ "play": "Воспроизвести",
+ "target": "Цель",
+ "target_browser": "Браузер"
+ },
+ "female": "Женский",
+ "info": "Добавьте индивидуальности Вашему дому, воспользовавшись нашей услугой по преобразованию текста в речь. Используйте её в автоматизациях и скриптах с помощью службы {service}.",
+ "male": "Мужской",
+ "title": "Воспроизведение текста",
+ "try": "Попробовать"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Не удалось отключить Webhook",
+ "info": "Всему, что настроено на срабатывание через Webhook, может быть предоставлен общедоступный URL-адрес. Это позволяет отправлять данные в Home Assistant откуда угодно, не выставляя свой сервер в Интернете.",
+ "link_learn_more": "Узнайте больше о создании автоматизации на базе Webhook.",
+ "loading": "Загрузка…",
+ "manage": "Управление",
+ "no_hooks_yet": "У Вас еще нет добавленных Webhook. Начните с настройки ",
+ "no_hooks_yet2": " или создайте ",
+ "no_hooks_yet_link_automation": "Webhook автоматизацию",
+ "no_hooks_yet_link_integration": "интеграции на основе Webhook",
+ "title": "Webhook"
+ }
+ },
+ "alexa": {
+ "banner": "Редактирование списка доступных объектов через пользовательский интерфейс отключено, так как Вы уже настроили фильтры в файле configuration.yaml.",
+ "dont_expose_entity": "Закрыть доступ",
+ "expose": "Предоставить доступ",
+ "expose_entity": "Открыть доступ",
+ "exposed": "Всего: {selected}",
+ "exposed_entities": "Объекты, к которым открыт доступ",
+ "follow_domain": "По домену",
+ "manage_domains": "Управление доменами",
+ "not_exposed": "Всего: {selected}",
+ "not_exposed_entities": "Объекты, к которым закрыт доступ",
+ "title": "Alexa"
+ },
+ "description_features": "Удалённый доступ к серверу, интеграция с Alexa и Google Assistant",
+ "description_login": "{email}",
+ "description_not_login": "Вход не выполнен",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Срок действия сертификата:",
+ "certificate_information": "О сертификате",
+ "close": "Закрыть",
+ "fingerprint": "Отпечаток сертификата:",
+ "will_be_auto_renewed": "по окончанию срока действия сертификат будет продлён автоматически"
+ },
+ "dialog_cloudhook": {
+ "available_at": "Webhook доступен по следующему адресу:",
+ "close": "Закрыть",
+ "confirm_disable": "Вы уверены, что хотите отключить этот Webhook?",
+ "copied_to_clipboard": "Скопировано в буфер обмена",
+ "info_disable_webhook": "Если Вы больше не хотите использовать этот Webhook, Вы можете",
+ "link_disable_webhook": "отключить его.",
+ "managed_by_integration": "Этот Webhook управляется интеграцией и не может быть отключен.",
+ "view_documentation": "Документация",
+ "webhook_for": "Webhook для {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "Проверьте Вашу электронную почту для получения инструкций по сбросу пароля.",
+ "email": "Адрес электронной почты",
+ "email_error_msg": "Неверный адрес электронной почты.",
+ "instructions": "Введите адрес электронной почты, указанный при регистрации. Мы вышлем на него ссылку для сброса пароля.",
+ "send_reset_email": "Отправить",
+ "subtitle": "Восстановление пароля",
+ "title": "Восстановление доступа к учётной записи"
+ },
+ "google": {
+ "banner": "Редактирование списка доступных объектов через пользовательский интерфейс отключено, так как Вы уже настроили фильтры в файле configuration.yaml.",
+ "disable_2FA": "Отключить двухфакторную аутентификацию",
+ "dont_expose_entity": "Закрыть доступ",
+ "expose": "Предоставить доступ",
+ "expose_entity": "Открыть доступ",
+ "exposed": "Всего: {selected}",
+ "exposed_entities": "Объекты, к которым открыт доступ",
+ "follow_domain": "По домену",
+ "manage_domains": "Управление доменами",
+ "not_exposed": "Всего: {selected}",
+ "not_exposed_entities": "Объекты, к которым закрыт доступ",
+ "sync_to_google": "Синхронизация изменений с Google.",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Вам должны подтвердить Вашу электронную почту перед входом.",
+ "alert_password_change_required": "Вы должны изменить свой пароль перед входом.",
+ "dismiss": "Отклонить",
+ "email": "Адрес электронной почты",
+ "email_error_msg": "Неверный адрес электронной почты.",
+ "forgot_password": "Забыли пароль?",
+ "introduction": "Home Assistant Cloud обеспечивает безопасный доступ к Вашему серверу, даже если Вы находитесь вдали от дома. Также это даёт возможность простого подключения к функциям облачных сервисов Amazon Alexa и Google Assistant.",
+ "introduction2": "Услуга предоставляется нашим партнером ",
+ "introduction2a": ", компанией от основателей Home Assistant.",
+ "introduction3": "Home Assistant Cloud предлагает одноразовый бесплатный пробный период продолжительностью один месяц. Для активации пробного периода платёжная информация не требуется.",
+ "learn_more_link": "Узнайте больше о Home Assistant Cloud",
+ "password": "Пароль",
+ "password_error_msg": "Пароль должен содержать не менее 8 символов.",
+ "sign_in": "Авторизация",
+ "start_trial": "Начать бесплатный пробный период",
+ "title": "Home Assistant Cloud",
+ "trial_info": "Платёжная информация не требуется. Продолжительность периода - 1 месяц"
+ },
+ "register": {
+ "account_created": "Учётная запись создана! Проверьте Вашу электронную почту для получения инструкций по активации учётной записи.",
+ "create_account": "Создать учётную запись",
+ "email_address": "Адрес электронной почты",
+ "email_error_msg": "Неверный адрес электронной почты.",
+ "feature_amazon_alexa": "Интеграция с Amazon Alexa",
+ "feature_google_home": "Интеграция с Google Assistant",
+ "feature_remote_control": "Безопасный доступ к Вашему Home Assistant, даже вдали от дома",
+ "feature_webhook_apps": "Простая интеграция с приложениями на основе webhook, такими как OwnTracks",
+ "headline": "Начните Ваш бесплатный пробный период",
+ "information": "Создайте учётную запись Home Assistant Cloud, чтобы начать бесплатный пробный период.",
+ "information2": "В течении пробного периода Вам будет предоставлен доступ ко всем преимуществам Home Assistant Cloud, включая:",
+ "information3": "Услуга предоставляется нашим партнером ",
+ "information3a": ", компанией от основателей Home Assistant.",
+ "information4": "Регистрируя учётную запись, Вы соглашаетесь со следующими условиями:",
+ "link_privacy_policy": "Политика конфиденциальности",
+ "link_terms_conditions": "Правила и условия",
+ "password": "Пароль",
+ "password_error_msg": "Пароль должен содержать не менее 8 символов.",
+ "resend_confirm_email": "Отправить подтверждение повторно",
+ "start_trial": "Начать пробный период",
+ "title": "Регистрация новой учётной записи"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "У Вас есть несохраненные изменения. Вы уверены, что хотите выйти?"
+ },
+ "learn_more": "Узнать больше"
+ },
+ "core": {
+ "caption": "Общие",
+ "description": "Местоположение, сеть и аналитика",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Валюта",
+ "edit_requires_storage": "Редактор отключен, поскольку конфигурация уже хранится в файле configuration.yaml.",
+ "elevation": "Высота",
+ "elevation_meters": "метров",
+ "external_url": "URL-адрес для глобальной сети",
+ "find_currency_value": "Перечень кодов валют",
+ "imperial_example": "Градус Фаренгейта, фунт",
+ "internal_url": "URL-адрес для домашней сети",
+ "latitude": "Широта",
+ "location_name": "Название для Вашего Home Assistant",
+ "longitude": "Долгота",
+ "metric_example": "Градус Цельсия, килограмм",
+ "save_button": "Сохранить",
+ "time_zone": "Часовой пояс",
+ "unit_system": "Система мер",
+ "unit_system_imperial": "Имперская",
+ "unit_system_metric": "Метрическая"
+ },
+ "header": "Общие настройки",
+ "introduction": "Настройки местоположения, управление сетью и аналитикой."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Следующие атрибуты уже установлены в customize.yaml",
+ "attributes_not_set": "Следующие атрибуты ещё не были назначены. Вы можете назначить их.",
+ "attributes_outside": "Следующие атрибуты назначены не в customize.yaml",
+ "attributes_override": "Вы можете переназначить их.",
+ "attributes_set": "Следующие атрибуты были назначены программно.",
+ "caption": "Кастомизация",
+ "description": "Настройка атрибутов объектов",
+ "different_include": "Возможно через домен, glob или include.",
+ "pick_attribute": "Выберите атрибут",
+ "picker": {
+ "documentation": "Узнайте больше о кастомизации",
+ "header": "Кастомизация",
+ "introduction": "Настройка атрибутов объектов. Добавленные или изменённые настройки сразу же вступают в силу. Удалённые настройки вступят в силу после обновления объекта."
+ },
+ "warning": {
+ "include_link": "include customize.yaml",
+ "include_sentence": "Похоже, Ваш файл configuration.yaml составлен неправильно",
+ "not_applied": "Изменения сохранены, но не будут применены после перезагрузки конфигурации пока не будет доступен include."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Автоматизации, скрипты, сцены и вспомогательные элементы",
+ "title": "Автоматизации и сцены"
+ },
+ "blueprints": {
+ "description": "Проекты автоматизаций и скриптов, созданные сообществом",
+ "title": "Проекты"
+ },
+ "companion": {
+ "description": "Местоположение и уведомления",
+ "title": "Мобильное приложение"
+ },
+ "dashboards": {
+ "description": "Панели для управления Вашим домом с помощью наборов карточек",
+ "title": "Панели"
+ },
+ "devices": {
+ "description": "Интеграции, устройства, объекты и пространства",
+ "title": "Устройства и службы"
+ },
+ "energy": {
+ "description": "Мониторинг производства и потребления энергии",
+ "title": "Энергия"
+ },
+ "people": {
+ "description": "Люди и зоны, которые отслеживает Home Assistant",
+ "title": "Люди и зоны"
+ },
+ "settings": {
+ "description": "Базовые настройки, управление сервером, журналы и информация",
+ "title": "Настройки"
+ },
+ "supervisor": {
+ "description": "Резервные копии, проверка журналов или перезагрузка системы",
+ "title": "Дополнения, резервные копии и Supervisor"
+ },
+ "tags": {
+ "description": "Управление метками NFC, QR-кодами",
+ "title": "Метки"
+ }
+ },
+ "devices": {
+ "add_prompt": "Нажмите кнопку \"+\", чтобы создать {name} с использованием этого устройства.",
+ "automation": {
+ "actions": {
+ "caption": "Когда что-то происходит…",
+ "no_actions": "Нет действий",
+ "unknown_action": "Неизвестное действие"
+ },
+ "automations": "Автоматизации",
+ "conditions": {
+ "caption": "Сделать что-то, только если…",
+ "no_conditions": "Нет условий",
+ "unknown_condition": "Неизвестное условие"
+ },
+ "create": "Создать автоматизацию",
+ "create_disable": "Деактивированные устройства нельзя использовать для создания автоматизаций",
+ "no_automations": "Нет автоматизаций",
+ "no_device_automations": "Для этого устройства нет средств автоматизации.",
+ "triggers": {
+ "caption": "Сделать что-то, когда…",
+ "no_triggers": "Нет триггеров",
+ "unknown_trigger": "Неизвестный триггер"
+ },
+ "unknown_automation": "Неизвестная автоматизация"
+ },
+ "cant_edit": "Вы можете редактировать только созданные в пользовательском интерфейсе элементы.",
+ "caption": "Устройства",
+ "confirm_delete": "Вы уверены, что хотите удалить это устройство?",
+ "confirm_disable_config_entry": "Для записи конфигурации {entry_name} больше нет устройств. Деактивировать вместо этого запись конфигурации?",
+ "confirm_rename_entity_ids": "Хотите ли Вы также переименовать идентификаторы объектов?",
+ "confirm_rename_entity_ids_warning": "Переименование повлечёт за собой необходимость вручную обновлять изменённые данные в правилах автоматизации, скриптах, сценах и пользовательском интерфейсе.",
+ "data_table": {
+ "area": "Пространство",
+ "battery": "Аккумулятор",
+ "device": "Устройство",
+ "integration": "Интеграция",
+ "manufacturer": "Производитель",
+ "model": "Модель",
+ "no_devices": "Нет устройств",
+ "no_integration": "Нет интеграции"
+ },
+ "delete": "Удалить",
+ "description": "Управление подключенными устройствами",
+ "device_info": "Устройство",
+ "device_not_found": "Устройство не найдено",
+ "disabled": "Деактивировано",
+ "disabled_by": {
+ "config_entry": "конфигурацией",
+ "integration": "интеграцией",
+ "user": "пользователем"
+ },
+ "download_diagnostics": "Скачать диагностические данные",
+ "edit_settings": "Изменить настройки",
+ "enabled_cause": "Устройство деактивировано {cause}.",
+ "enabled_description": "Деактивированные устройства и их дочерние объекты не будут доступны в Home Assistant.",
+ "enabled_label": "Активировать устройство",
+ "entities": {
+ "add_entities_lovelace": "Добавить объекты в Lovelace UI",
+ "config": "Настройки",
+ "control": "Управление",
+ "diagnostic": "Диагностика",
+ "disabled_entities": "+ {count} {count, plural,\n one {деактивированный объект}\n few {деактивированных объекта}\n many {деактивированных объектов}\n other {деактивированных объектов}\n}",
+ "entities": "Объекты",
+ "hide_disabled": "Скрыть деактивированные объекты",
+ "none": "У этого устройства нет объектов",
+ "sensor": "Сенсоры",
+ "state": "Состояние"
+ },
+ "name": "Название",
+ "no_devices": "Нет устройств",
+ "open_configuration_url_device": "Перейти на страницу устройства",
+ "open_configuration_url_service": "Перейти на страницу службы",
+ "picker": {
+ "filter": {
+ "filter": "Фильтр",
+ "hidden_devices": "{number, plural,\n one {Скрытых устройств:}\n other {Скрытых устройств:}\n} {number}",
+ "show_all": "Показать все",
+ "show_disabled": "Деактивированные устройства"
+ },
+ "search": "Поиск устройств"
+ },
+ "scene": {
+ "create": "Создать сцену",
+ "create_disable": "Деактивированные устройства нельзя использовать для создания сцен",
+ "no_scenes": "Нет сцен",
+ "scenes": "Сцены"
+ },
+ "scenes": "Сцены",
+ "script": {
+ "create": "Создать скрипт",
+ "create_disable": "Деактивированные устройства нельзя использовать для создания скриптов",
+ "no_scripts": "Нет скриптов",
+ "scripts": "Скрипты"
+ },
+ "scripts": "Скрипты",
+ "unknown_error": "Неизвестная ошибка.",
+ "unnamed_device": "Устройство без названия",
+ "update": "Обновить",
+ "update_device_error": "Не удалось обновить устройство"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Добавить батарею",
+ "battery_systems": "Аккумуляторные батареи",
+ "dialog": {
+ "energy_into_battery": "Энергия, поступающая в батарею (kWh)",
+ "energy_out_of_battery": "Энергия, поступающая из батареи (kWh)",
+ "header": "Аккумуляторная батарея"
+ },
+ "learn_more": "Более подробную информацию Вы можете получить в документации.",
+ "sub": "Если в Вашей системе есть аккумуляторная батарея, Вы можете отслеживать сколько энергии было накоплено и затем использовано из неё.",
+ "title": "Аккумуляторная батарея"
+ },
+ "caption": "Энергия",
+ "delete_integration": "Вы уверены, что хотите удалить эту интеграцию и её дочерние объекты?",
+ "delete_source": "Вы уверены, что хотите удалить этот источник?",
+ "description": "Мониторинг производства и потребления энергии",
+ "device_consumption": {
+ "add_device": "Добавить устройство",
+ "add_stat": "Выберите объект для отслеживания потребления электроэнергии",
+ "devices": "Устройства",
+ "dialog": {
+ "device_consumption_energy": "Энергопотребление устройства (kWh)",
+ "header": "Добавить устройство",
+ "selected_stat_intro": "Выберите объект, который отслеживает энергопотребление устройства."
+ },
+ "learn_more": "Более подробную информацию Вы можете получить в документации.",
+ "selected_stat": "Отслеживание потребление энергии для",
+ "sub": "Анализ общего потребления энергии в разрезе отдельных устройств.",
+ "title": "Устройства"
+ },
+ "gas": {
+ "add_gas_source": "Добавить источник",
+ "dialog": {
+ "cost_entity": "Использовать объект с текущей ценой",
+ "cost_entity_input": "Объект с текущей ценой за {unit}",
+ "cost_number": "Использовать фиксированную цену",
+ "cost_number_input": "Цена за {unit}",
+ "cost_number_suffix": "{currency}/m³",
+ "cost_para": "Выберите, как Home Assistant должен отслеживать расходы.",
+ "cost_stat": "Использовать объект, отслеживающий общие расходы",
+ "cost_stat_input": "Объект с суммой расходов",
+ "energy_stat": "Потребляемая энергия (m³)",
+ "gas_usage": "Потребление природного газа",
+ "header": "Потребление природного газа",
+ "m3_or_kWh": "ft³, m³, Wh, kWh или MWh",
+ "no_cost": "Не отслеживать расходы",
+ "paragraph": "Объем природного газа, который расходуется у Вас дома."
+ },
+ "gas_consumption": "Потребление природного газа",
+ "learn_more": "Более подробную информацию Вы можете получить в документации.",
+ "sub": "Мониторинг потребления природного газа.",
+ "title": "Природный газ"
+ },
+ "grid": {
+ "add_co2_signal": "Добавить интеграцию CO2 Signal",
+ "add_consumption": "Добавить источник",
+ "add_return": "Добавить источник",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Использовать объект с текущей ценой",
+ "cost_entity_input": "Объект с текущей ценой",
+ "cost_number": "Использовать фиксированную цену",
+ "cost_number_input": "Цена за кВт⋅ч",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Выберите, как Home Assistant должен отслеживать расходы.",
+ "cost_stat": "Использовать объект, отслеживающий общие расходы",
+ "cost_stat_input": "Объект с суммой расходов",
+ "energy_stat": "Получаемая электроэнергия (kWh)",
+ "header": "Получение электроэнергии из сети",
+ "no_cost": "Не отслеживать расходы",
+ "paragraph": "Электроэнергия, которая поступает из общей электрической сети в Ваш дом."
+ },
+ "to": {
+ "cost_entity": "Использовать объект с текущей ставкой",
+ "cost_entity_input": "Объект с текущей ставкой",
+ "cost_number": "Использовать фиксированную ставку",
+ "cost_number_input": "Ставка за кВт⋅ч",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Нужно ли отслеживать доходы от передачи энергии в сеть?",
+ "cost_stat": "Использовать объект, отслеживающий общую полученную сумму денег",
+ "cost_stat_input": "Объект с суммой компенсации",
+ "energy_stat": "Передаваемая электроэнергия (kWh)",
+ "header": "Передача электроэнергии в сеть",
+ "no_cost": "Не отслеживать доходы",
+ "paragraph": "Произведённая Вашими солнечными панелями электроэнергия, которая передаётся в общую электрическую сеть."
+ }
+ },
+ "grid_carbon_footprint": "Углеродный след от электрической сети",
+ "grid_consumption": "Получение электроэнергии из сети",
+ "learn_more": "Более подробную информацию Вы можете получить в документации.",
+ "return_to_grid": "Передача электроэнергии в сеть",
+ "sub": "Настройка тарифов на электроэнергию, которую Вы получаете из сети или передаёте в сеть.",
+ "title": "Электрическая сеть"
+ },
+ "new_device_info": "Может пройти до 2 часов, прежде чем данные от нового устройства начнут отображаться на панели управления энергопотреблением.",
+ "solar": {
+ "add_solar_production": "Добавить источник",
+ "dialog": {
+ "add_forecast": "Добавить прогноз",
+ "dont_forecast_production": "Не прогнозировать генерацию",
+ "forecast_production": "Прогнозировать генерацию",
+ "header": "Солнечные панели",
+ "solar_production_energy": "Энергия, получаемая от панелей (kWh)",
+ "solar_production_forecast": "Прогноз генерации электроэнергии",
+ "solar_production_forecast_description": "Добавление прогноза позволит Вам видеть ожидаемую генерацию электроэнергии."
+ },
+ "learn_more": "Более подробную информацию Вы можете получить в документации.",
+ "solar_production": "Генерация электроэнергии",
+ "stat_predicted_production": "Прогноз производства электроэнергии из солнечной энергии",
+ "stat_production": "Электроэнергия, произведённая Вашими солнечными панелями",
+ "stat_return_to_grid": "Электроэнергия от солнечных панелей, передаваемая в сеть",
+ "sub": "Мониторинг состояния и производительности Ваших солнечных панелей.",
+ "title": "Солнечные панели"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "Следующие объекты имеют отрицательное числовое состояние, в то время как ожидается положительное:",
+ "title": "У объекта отрицательное состояние"
+ },
+ "entity_not_defined": {
+ "description": "Проверьте интеграцию или конфигурацию, которая предоставляет:",
+ "title": "Не удалось определить объект"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "Следующие объекты принадлежат классу состояния 'measurement', но не имеют атрибута 'last_reset':",
+ "title": "Отсутствует атрибут 'last_reset'"
+ },
+ "entity_state_non_numeric": {
+ "description": "Следующие объекты имеют состояния, которые не распознаются как число:",
+ "title": "У объекта нечисловое состояние"
+ },
+ "entity_unavailable": {
+ "description": "Состояние этих настроенных объектов в настоящее время недоступно:",
+ "title": "Объект недоступен"
+ },
+ "entity_unexpected_device_class": {
+ "description": "Следующие объекты не принадлежат ожидаемому классу устройства:",
+ "title": "Класс устройства отличается от ожидаемого"
+ },
+ "entity_unexpected_state_class": {
+ "description": "Следующие объекты не принадлежат ожидаемому классу состояния:",
+ "title": "Класс состояния отличается от ожидаемого"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "Следующие объекты не принадлежат ожидаемому классу состояния 'total_increasing':",
+ "title": "Класс состояния отличается от ожидаемого"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "Следующие объекты имеют состояния в единицах измерения, отличающихся от ожидаемых единиц измерения 'Wh', 'kWh' или 'MWh':",
+ "title": "Единица измерения отличается от ожидаемой"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "Следующие объекты не имеют значений в единицах измерения ''{currency}/Wh'', ''{currency}/kWh'' или ''{currency}/MWh'':",
+ "title": "Единица измерения отличается от ожидаемой"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "Следующие объекты имеют состояния в единицах измерения, отличающихся от ожидаемых единиц измерения 'Wh', 'kWh' или 'MWh' для сенсоров учёта энергии, и 'm³' или 'ft³' для сенсоров учёта газа:",
+ "title": "Единица измерения отличается от ожидаемой"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "Следующие объекты не имеют значений в единицах измерения ''{currency}/Wh'', ''{currency}/kWh'', ''{currency}/MWh'', ''{currency}/m³'' или ''{currency}/ft³'':",
+ "title": "Единица измерения отличается от ожидаемой"
+ },
+ "recorder_untracked": {
+ "description": "Интеграция \"Recorder\" не сохраняет состояния указанных объектов в базе данных:",
+ "title": "Объект не отслеживается"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Объекты",
+ "description": "Управление доступными объектами",
+ "picker": {
+ "disable_selected": {
+ "button": "Деактивировать выбранные",
+ "confirm_text": "Деактивированные объекты не будут доступны в Home Assistant.",
+ "confirm_title": "Вы уверены, что хотите деактивировать {number} {number, plural,\n one {выбранный объект}\n few {выбранных объекта}\n many {выбранных объектов}\n other {выбранных объектов}\n}?"
+ },
+ "enable_selected": {
+ "button": "Активировать выбранные",
+ "confirm_text": "Если эти объекты ранее были деактивированы, они снова будут доступными в Home Assistant.",
+ "confirm_title": "Активировать {number} {number, plural,\n one {выбранный объект}\n few {выбранных объекта}\n many {выбранных объектов}\n other {выбранных объектов}\n}?"
+ },
+ "filter": {
+ "filter": "Фильтр",
+ "hidden_entities": "{number, plural,\n one {Скрытых объектов:}\n other {Скрытых объектов:}\n} {number}",
+ "show_all": "Показать все",
+ "show_disabled": "Деактивированные объекты",
+ "show_readonly": "Объекты, доступные только для чтения",
+ "show_unavailable": "Недоступные объекты"
+ },
+ "header": "Объекты",
+ "headers": {
+ "area": "Пространство",
+ "disabled_by": "Деактивировано",
+ "entity_id": "ID объекта",
+ "integration": "Интеграция",
+ "name": "Название",
+ "status": "Состояние"
+ },
+ "introduction": "Home Assistant ведет реестр каждого объекта, который когда-либо был создан в системе. Каждому из этих объектов присвоен ID, который зарезервирован только для этого объекта.",
+ "introduction2": "Используйте данный реестр, чтобы изменить ID или название объекта либо удалить запись из Home Assistant.",
+ "remove_selected": {
+ "button": "Удалить выбранные",
+ "confirm_partly_text": "Вы можете удалить только {removable} из выбранных {selected} объектов. Объекты могут быть удалены только когда интеграция больше не предоставляет объекты. В некоторых случаях Вам нужно будет перезапустить Home Assistant, чтобы удалить объекты удаленной интеграции. Вы уверены, что хотите удалить объекты?",
+ "confirm_partly_title": "Только {number} {number, plural,\n one {выбранный объект}\n few {выбранных объекта}\n many {выбранных объектов}\n other {выбранных объектов}\n} могут быть удалены.",
+ "confirm_text": "Вы должны удалить эти объекты из конфигурации Lovelace и из правил автоматизации.",
+ "confirm_title": "Вы уверены, что хотите удалить {number} {number, plural,\n one {выбранный объект}\n few {выбранных объекта}\n many {выбранных объектов}\n other {выбранных объектов}\n}?"
+ },
+ "search": "Поиск объектов",
+ "selected": "Выбрано: {number}",
+ "status": {
+ "disabled": "Деактивировано",
+ "ok": "Ok",
+ "readonly": "Только для чтения",
+ "restored": "Восстановлено",
+ "unavailable": "Недоступно"
+ }
+ }
+ },
+ "header": "Настройка Home Assistant",
+ "helpers": {
+ "caption": "Вспомогательное",
+ "description": "Элементы, которые могут помочь в автоматизации",
+ "dialog": {
+ "add_helper": "Выберите вспомогательный элемент",
+ "add_platform": "{platform}",
+ "create": "Создать"
+ },
+ "picker": {
+ "add_helper": "Добавить элемент",
+ "headers": {
+ "editable": "Редактируемый",
+ "entity_id": "ID объекта",
+ "name": "Название",
+ "type": "Тип"
+ },
+ "no_helpers": "У Вас еще нет вспомогательных элементов."
+ },
+ "types": {
+ "counter": "Счётчик",
+ "input_boolean": "Переключатель",
+ "input_button": "Кнопка",
+ "input_datetime": "Дата и время",
+ "input_number": "Число",
+ "input_select": "Выпадающий список",
+ "input_text": "Текст",
+ "timer": "Таймер"
+ }
+ },
+ "info": {
+ "built_using": "Создано с использованием",
+ "caption": "О системе",
+ "copy_github": "Для GitHub",
+ "copy_menu": "Копировать",
+ "copy_raw": "Необработанный текст",
+ "custom_uis": "Кастомные интерфейсы:",
+ "description": "Информация о системе",
+ "developed_by": "Разработано множеством замечательных людей.",
+ "documentation": "Документация",
+ "frontend": "пользовательский интерфейс",
+ "frontend_version": "Версия интерфейса: {version} - {type}",
+ "home_assistant_logo": "Логотип Home Assistant",
+ "icons_by": "Иконки от",
+ "integrations": "Интеграции",
+ "issues": "Вопросы",
+ "license": "Опубликовано под лицензией Apache 2.0",
+ "path_configuration": "Путь к configuration.yaml: {path}",
+ "server": "сервер",
+ "setup_time": "Время запуска",
+ "source": "Исходный код:",
+ "system_health": {
+ "manage": "Управление",
+ "more_info": "дополнительная информация"
+ },
+ "system_health_error": "Компонент System Health не загружен. Добавьте 'system_health:' в файл configuration.yaml."
+ },
+ "integrations": {
+ "add_integration": "Добавить интеграцию",
+ "attention": "Требуется внимание",
+ "caption": "Интеграции",
+ "config_entry": {
+ "area": "{area}",
+ "check_the_logs": "Проверить журналы",
+ "configure": "Настроить",
+ "delete": "Удалить",
+ "delete_confirm": "Вы уверены, что хотите удалить интеграцию {title}?",
+ "depends_on_cloud": "Зависит от облачных сервисов",
+ "device_unavailable": "Устройство недоступно",
+ "devices": "{count} {count, plural,\n one {устройство}\n few {устройства}\n many {устройств}\n other {устройств}\n}",
+ "disable": {
+ "disable_confirm": "Вы уверены, что хотите деактивировать эту запись конфигурации? Её дочерние устройства и объекты будут также деактивированы.",
+ "disabled": "Деактивировано",
+ "disabled_by": {
+ "device": "устройством",
+ "integration": "интеграцией",
+ "user": "пользователем"
+ },
+ "disabled_cause": "Деактивировано {cause}"
+ },
+ "disable_error": "Не удалось активировать или деактивировать интеграцию",
+ "disable_restart_confirm": "Перезапустите Home Assistant, чтобы завершить деактивацию этой интеграции.",
+ "disabled_polling": "Автоматический опрос для получения обновленных данных отключен",
+ "documentation": "Документация",
+ "download_diagnostics": "Скачать диагностические данные",
+ "enable_restart_confirm": "Перезапустите Home Assistant, чтобы завершить подключение этой интеграции.",
+ "entities": "{count} {count, plural,\n one {объект}\n few {объекта}\n many {объектов}\n other {объектов}\n}",
+ "entity_unavailable": "Объект недоступен",
+ "firmware": "Версия программного обеспечения: {version}",
+ "hardware": "Версия аппаратного обеспечения: {version}",
+ "hub": "Подключено через",
+ "known_issues": "Известные проблемы",
+ "manuf": "{manufacturer}",
+ "no_area": "Не указано",
+ "not_loaded": "Не загружено",
+ "open_configuration_url": "Перейти на страницу устройства",
+ "provided_by_custom_integration": "Предоставляется кастомной интеграцией",
+ "reload": "Перезагрузить",
+ "reload_confirm": "Перезагрузка интеграции выполнена",
+ "reload_restart_confirm": "Перезапустите Home Assistant, чтобы завершить перезагрузку этой интеграции",
+ "rename": "Переименовать",
+ "restart_confirm": "Перезапустите Home Assistant, чтобы завершить удаление этой интеграции",
+ "services": "{count} {count, plural,\n one {служба}\n few {службы}\n many {служб}\n other {служб}\n}",
+ "state": {
+ "failed_unload": "Не удалось выгрузить",
+ "loaded": "Загружено",
+ "migration_error": "Ошибка при миграции",
+ "not_loaded": "Не загружено",
+ "setup_error": "Не удалось настроить",
+ "setup_retry": "Повторная настройка"
+ },
+ "system_options": "Настройки интеграции",
+ "unknown_via_device": "Неизвестное устройство",
+ "unnamed_entry": "Без названия",
+ "via": "Подключено через"
+ },
+ "config_flow": {
+ "aborted": "Отменено",
+ "close": "Закрыть",
+ "could_not_load": "Не удалось загрузить мастер настройки",
+ "created_config": "Создана запись конфигурации {name}",
+ "dismiss": "Закрыть",
+ "error": "Ошибка",
+ "error_saving_area": "Ошибка при сохранении: {error}",
+ "external_step": {
+ "description": "Для завершения этого шага требуется посетить внешний веб-сайт.",
+ "open_site": "Открыть веб-сайт"
+ },
+ "finish": "Готово",
+ "loading": {
+ "fallback_title": "интеграция",
+ "loading_flow": "Подождите, пока завершится настройка {integration}",
+ "loading_step": "Загрузка следующего шага настройки {integration}"
+ },
+ "next": "Далее",
+ "not_all_required_fields": "Не все обязательные поля заполнены.",
+ "not_loaded": "Не удалось загрузить интеграцию, попробуйте перезапустить Home Assistant.",
+ "pick_flow_step": {
+ "new_flow": "Нет, настроить другой экземпляр {integration}",
+ "title": "Это обнаружено автоматически, начать настройку?"
+ },
+ "submit": "Подтвердить"
+ },
+ "configure": "Настроить",
+ "configured": "Настроено",
+ "confirm_new": "Хотите начать настройку интеграции {integration}?",
+ "description": "Добавление и настройка интеграций",
+ "details": "Детали интеграции",
+ "disable": {
+ "disabled_integrations": "Деактивировано: {number}",
+ "show": "Показать",
+ "show_disabled": "Деактивированные интеграции"
+ },
+ "discovered": "Обнаружено",
+ "home_assistant_website": "сайте Home Assistant",
+ "ignore": {
+ "confirm_delete_ignore": "Эта интеграция станет доступна для обнаружения системой. Обнаружение произойдёт автоматически в течении некоторого времени, либо после перезапуска системы.",
+ "confirm_delete_ignore_title": "Прекратить игнорировать {name}?",
+ "confirm_ignore": "Вы сможете снова включить обнаружение этой интеграции. Для этого откройте меню в правом верхнем углу и нажмите «Игнорируемые интеграции».",
+ "confirm_ignore_title": "Игнорировать обнаружение интеграции {name}?",
+ "ignore": "Игнорировать",
+ "ignored": "Игнорируется",
+ "show_ignored": "Игнорируемые интеграции",
+ "stop_ignore": "Прекратить игнорировать"
+ },
+ "integration": "интеграции",
+ "integration_not_found": "Интеграция не найдена.",
+ "new": "Интеграции",
+ "no_integrations": "Похоже, у Вас ещё нет настроенных интеграций. Нажмите на кнопку в правом нижнем углу, чтобы добавить свою первую интеграцию!",
+ "none": "Пока ничего не настроено",
+ "none_found": "Интеграции не найдены",
+ "none_found_detail": "Измените критерии поиска",
+ "note_about_integrations": "Не найдено соответствий по Вашему запросу. Интеграция, которую Вы хотели бы настроить, может быть недоступна для настройки через пользовательский интерфейс.",
+ "note_about_website_reference": "Все доступные интеграции Вы можете найти на ",
+ "reconfigure": "Перенастроить",
+ "rename_dialog": "Название интеграции",
+ "rename_input_label": "Название",
+ "search": "Поиск интеграций"
+ },
+ "introduction": "Здесь можно настроить Home Assistant. Пока что не все настройки доступны из пользовательского интерфейса, но мы работаем над этим.",
+ "logs": {
+ "caption": "Журнал сервера",
+ "clear": "Очистить",
+ "copy": "Копировать эту запись журнала",
+ "custom_integration": "кастомная интеграция",
+ "description": "Журналы работы сервера",
+ "details": "Уровень: {level}",
+ "error_from_custom_integration": "Эта ошибка возникла в кастомной интеграции.",
+ "level": {
+ "critical": "КРИТИЧЕСКАЯ ОШИБКА",
+ "debug": "ОТЛАДКА",
+ "error": "ОШИБКА",
+ "info": "ИНФОРМАЦИЯ",
+ "warning": "ПРЕДУПРЕЖДЕНИЕ"
+ },
+ "load_full_log": "Показать весь журнал",
+ "loading_log": "Загрузка журнала…",
+ "multiple_messages": "первое сообщение получено {time} и повторялось {counter} раз",
+ "no_errors": "Нет сообщений об ошибках",
+ "no_issues": "Нет сообщений о проблемах.",
+ "refresh": "Обновить"
+ },
+ "lovelace": {
+ "caption": "Панели Lovelace",
+ "dashboards": {
+ "cant_edit_default": "Панель Lovelace ''Обзор'', используемая по умолчанию, не может быть отредактирована из пользовательского интерфейса. Вы можете скрыть её, установив другую панель по умолчанию.",
+ "cant_edit_yaml": "Панели, определенные в YAML, нельзя редактировать из пользовательского интерфейса. Вы можете изменить их в файле configuration.yaml.",
+ "caption": "Панели",
+ "conf_mode": {
+ "storage": "Интерфейс",
+ "yaml": "Файл YAML"
+ },
+ "confirm_delete": "Вы уверены, что хотите удалить эту панель?",
+ "confirm_delete_text": "Эта панель будет удалена без возможности восстановления.",
+ "confirm_delete_title": "Удалить {dashboard_title}?",
+ "default_dashboard": "Эта панель используется по умолчанию",
+ "detail": {
+ "create": "Создать",
+ "delete": "Удалить",
+ "dismiss": "Закрыть",
+ "edit_dashboard": "Редактировать панель",
+ "icon": "Иконка",
+ "new_dashboard": "Добавить новую панель",
+ "remove_default": "Не использовать по умолчанию на этом устройстве",
+ "require_admin": "Только для администраторов",
+ "set_default": "Использовать по умолчанию на этом устройстве",
+ "show_sidebar": "Показывать на боковой панели",
+ "title": "Название",
+ "title_required": "Обязательное поле",
+ "update": "Обновить",
+ "url": "URL-адрес",
+ "url_error_msg": "URL должен содержать - и не может содержать пробелов или специальных символов, за исключением _ и -"
+ },
+ "picker": {
+ "add_dashboard": "Добавить панель",
+ "headers": {
+ "conf_mode": "Способ управления",
+ "default": "По умолчанию",
+ "filename": "Имя файла",
+ "require_admin": "Только для администраторов",
+ "sidebar": "Показывать на боковой панели",
+ "title": "Название"
+ },
+ "open": "Открыть"
+ }
+ },
+ "description": "Настройка панелей Lovelace",
+ "resources": {
+ "cant_edit_yaml": "Вы используете Lovelace в режиме YAML, поэтому невозможно управление ресурсами через пользовательский интерфейс. В данном режиме управление осуществляется через файл configuration.yaml.",
+ "caption": "Ресурсы",
+ "confirm_delete": "Вы уверены, что хотите удалить этот ресурс?",
+ "detail": {
+ "create": "Создать",
+ "delete": "Удалить",
+ "dismiss": "Закрыть",
+ "new_resource": "Добавить новый ресурс",
+ "type": "Тип ресурса",
+ "update": "Обновить",
+ "url": "URL-адрес",
+ "url_error_msg": "Обязательное поле",
+ "warning_header": "Будьте осторожны!",
+ "warning_text": "Добавление ресурсов может быть опасным. Убедитесь, что Вы знаете источник ресурса и доверяете ему. Плохие ресурсы могут нанести серьёзный вред Вашей системе."
+ },
+ "picker": {
+ "add_resource": "Добавить ресурс",
+ "headers": {
+ "type": "Тип",
+ "url": "URL-адрес"
+ },
+ "no_resources": "Нет ресурсов"
+ },
+ "refresh_body": "Для завершения удаления нужно обновить страницу. Обновить сейчас?",
+ "refresh_header": "Обновить страницу?",
+ "types": {
+ "css": "Таблица стилей",
+ "html": "HTML (устарело)",
+ "js": "Файл JavaScript (устарело)",
+ "module": "Модуль JavaScript"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Подписаться на топик",
+ "description_publish": "Опубликовать данные",
+ "listening_to": "Подписано на",
+ "message_received": "Сообщение {id} получено в {time} из {topic}:",
+ "payload": "Значение (включая шаблоны)",
+ "publish": "Опубликовать",
+ "start_listening": "Подписаться",
+ "stop_listening": "Отписаться",
+ "subscribe_to": "Топик",
+ "title": "MQTT",
+ "topic": "Топик"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Контроллер",
+ "instance": "Экземпляр",
+ "network": "Сеть",
+ "node_id": "ID узла",
+ "ozw_instance": "Экземпляр OpenZWave",
+ "query_stage": "Стадия запроса",
+ "wakeup_instructions": "Инструкции по пробуждению",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Ошибка узла",
+ "stage": "Этап",
+ "zwave_info": "Информация о Z-Wave"
+ },
+ "navigation": {
+ "network": "Сеть",
+ "node": {
+ "config": "Конфигурация",
+ "dashboard": "Панель"
+ },
+ "nodes": "Узлы",
+ "select_instance": "Выбор экземпляра"
+ },
+ "network": {
+ "header": "Управление сетью",
+ "introduction": "Управление сетевыми функциями.",
+ "node_count": "{count} узлов"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "Все узлы опрошены",
+ "driverallnodesqueriedsomedead": "Все узлы опрошены. В сети обнаружены мертвые узлы",
+ "driverawakenodesqueries": "Все активные узлы опрошены",
+ "driverfailed": "Не удалось подключиться к контроллеру Z-Wave",
+ "driverready": "Инициализация контроллера Z-Wave",
+ "driverremoved": "Драйвер удален",
+ "driverreset": "Драйвер сброшен",
+ "offline": "OZWDaemon не в сети",
+ "ready": "Готов к подключению",
+ "started": "Подключен к MQTT",
+ "starting": "Подключение к MQTT",
+ "stopped": "OpenZWave остановлен"
+ },
+ "offline": "Не в сети",
+ "online": "В сети",
+ "starting": "Запускается",
+ "unknown": "Неизвестно"
+ },
+ "node": {
+ "button": "Подробности об узле",
+ "not_found": "Узел не найден"
+ },
+ "node_config": {
+ "header": "Конфигурация узла",
+ "help_source": "Описания параметров конфигурации и текст справки предоставлены проектом OpenZWave.",
+ "introduction": "Управление различными параметрами конфигурации узла сети Z-Wave.",
+ "wakeup_help": "Узлы с питанием от батареи должны быть активными, чтобы изменить свою конфигурацию. Если узел не активен, OpenZWave попытается обновить конфигурацию узла в следующий раз, когда он проснется, что может произойти через несколько часов (или дней). Выполните следующие действия, чтобы вывести устройство из спящего режима:"
+ },
+ "node_metadata": {
+ "product_manual": "Руководство пользователя"
+ },
+ "node_query_stages": {
+ "associations": "Обновление ассоциативных групп и членства",
+ "cacheload": "Загрузка информации из кеш-файла OpenZWave. Узлы батареи останутся на этом этапе, пока узел не проснется.",
+ "complete": "Процесс интервьюирования завершен",
+ "configuration": "Получение значений конфигурации от узла",
+ "dynamic": "Получение часто меняющихся значений от узла",
+ "instances": "Получение сведений о том, какие экземпляры или каналы поддерживает устройство",
+ "manufacturerspecific1": "Получение идентификационных кодов производителя и продукта от узла",
+ "manufacturerspecific2": "Получение дополнительных кодов производителя и идентификатора продукта от узла",
+ "neighbors": "Получение списка соседних узлов",
+ "nodeinfo": "Получение поддерживаемых классов команд от узла",
+ "nodeplusinfo": "Получение информации Z-Wave+ от узла",
+ "probe": "Проверка активности узла",
+ "protocolinfo": "Получение базовых возможностей этого узла от контроллера",
+ "session": "Получение редко меняющихся значений от узла",
+ "static": "Получение статических значений от устройства",
+ "versions": "Получение информации о версиях прошивки и классов команд",
+ "wakeup": "Настройка поддержки очередей пробуждения и сообщений"
+ },
+ "nodes_table": {
+ "failed": "Сбой",
+ "id": "ID",
+ "manufacturer": "Производитель",
+ "model": "Модель",
+ "query_stage": "Стадия запроса",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Если узел работает от батареи, обязательно разбудите его, прежде чем продолжить",
+ "button": "Обновить узел",
+ "complete": "Обновление узла завершено",
+ "description": "Повторный опрос узла и обновление классов команд, возможностей и значений узла.",
+ "node_status": "Статус узла",
+ "refreshing_description": "Обновление информации об узле …",
+ "start_refresh_button": "Начать обновление",
+ "step": "Шаг",
+ "title": "Обновить информацию об узле",
+ "wakeup_header": "Инструкции по пробуждению для",
+ "wakeup_instructions_source": "Инструкции по пробуждению взяты из базы данных устройств сообщества OpenZWave."
+ },
+ "select_instance": {
+ "header": "Выберите экземпляр OpenZWave",
+ "introduction": "У Вас работает более одного экземпляра OpenZWave. Каким экземпляром Вы хотите управлять?",
+ "none_found": "Не удалось найти экземпляр OpenZWave. Проверьте настройки OpenZWave и MQTT и убедитесь, что Home Assistant может связываться с Вашим брокером MQTT."
+ },
+ "services": {
+ "add_node": "Добавить узел",
+ "cancel_command": "Отменить команду",
+ "remove_node": "Удалить узел"
+ }
+ },
+ "person": {
+ "add_person": "Добавить персону",
+ "caption": "Люди",
+ "confirm_delete": "Вы уверены, что хотите удалить эту персону?",
+ "confirm_delete2": "Все устройства, связанные с этой персоной, станут не назначенными.",
+ "create_person": "Добавить персону",
+ "description": "Люди, которых может отслеживать Home Assistant",
+ "detail": {
+ "admin": "Администратор",
+ "allow_login": "Разрешить вход в систему",
+ "confirm_delete_user": "Вы уверены, что хотите удалить учётную запись пользователя {name}? Отслеживание будет работать как прежде, но вход в систему для него будет закрыт.",
+ "create": "Создать",
+ "delete": "Удалить",
+ "device_tracker_intro": "Выберите устройства, отслеживающие этого человека.",
+ "device_tracker_pick": "Выберите устройство для отслеживания",
+ "device_tracker_picked": "Устройство для отслеживания",
+ "link_integrations_page": "Страница интеграций",
+ "link_presence_detection_integrations": "Интеграции обнаружения присутствия",
+ "linked_user": "Связанный пользователь",
+ "local_only": "Разрешить вход в систему только из локальной сети",
+ "name": "Имя",
+ "name_error_msg": "Обязательное поле",
+ "new_person": "Новая персона",
+ "no_device_tracker_available_intro": "Если у Вас есть отслеживающие устройства, Вы можете назначить их этому человеку. Вы можете добавить Ваше первое устройство, добавив интеграцию обнаружения присутствия со страницы интеграции.",
+ "update": "Обновить"
+ },
+ "introduction": "Этот раздел позволяет добавлять в Home Assistant интересующих Вас людей.",
+ "learn_more": "Узнать больше",
+ "no_persons_created_yet": "У Вас еще нет добавленных персон.",
+ "note_about_persons_configured_in_yaml": "Примечание:\nПерсоны, настроенные с помощью configuration.yaml, нельзя редактировать с помощью пользовательского интерфейса.",
+ "person_not_found": "Нам не удалось найти персону, которую Вы пытались редактировать.",
+ "person_not_found_title": "Персона не найдена"
+ },
+ "scene": {
+ "activated": "Активирована сцена {name}.",
+ "caption": "Сцены",
+ "description": "Управление сценами",
+ "editor": {
+ "area": "Пространство",
+ "default_name": "Новая сцена",
+ "devices": {
+ "add": "Добавить устройство",
+ "delete": "Удалить устройство",
+ "header": "Устройства",
+ "introduction": "Добавьте устройства, которые Вы хотите задействовать в этой сцене, установите для них желаемое состояние."
+ },
+ "entities": {
+ "add": "Добавить объект",
+ "delete": "Удалить объект",
+ "device_entities": "Если Вы добавите объект, который связан с устройством, то будет добавлено это устройство.",
+ "header": "Объекты",
+ "introduction": "Объекты, которые не связаны с каким-либо устройством, могут быть указаны здесь.",
+ "without_device": "Объекты без устройств"
+ },
+ "icon": "Иконка",
+ "introduction": "Используйте сцены, чтобы оживить Ваш дом.",
+ "load_error_not_editable": "Доступны для редактирования только сцены из scenes.yaml.",
+ "load_error_unknown": "Ошибка загрузки сцены ({err_no}).",
+ "name": "Название",
+ "save": "Сохранить",
+ "unsaved_confirm": "У вас есть несохраненные изменения. Вы уверены, что хотите выйти?"
+ },
+ "picker": {
+ "add_scene": "Добавить сцену",
+ "delete_confirm": "Вы уверены, что хотите удалить эту сцену?",
+ "delete_scene": "Удалить сцену",
+ "duplicate": "Дублировать",
+ "duplicate_scene": "Дублировать сцену",
+ "edit_scene": "Редактировать сцену",
+ "header": "Редактор сцен",
+ "headers": {
+ "name": "Название"
+ },
+ "introduction": "Этот редактор позволяет создавать и редактировать сцены.\nПожалуйста, ознакомьтесь с инструкциями по указанной ниже ссылке и убедитесь, что правильно настроили Home Assistant.",
+ "learn_more": "Узнайте больше о сценах",
+ "no_scenes": "Сцены не найдены",
+ "only_editable": "Доступны для редактирования только сцены из scenes.yaml.",
+ "pick_scene": "Выберите сцену для редактирования",
+ "show_info_scene": "Показать информацию о сцене"
+ }
+ },
+ "script": {
+ "caption": "Скрипты",
+ "description": "Управление скриптами",
+ "editor": {
+ "alias": "Название",
+ "default_name": "Новый скрипт",
+ "delete_confirm": "Вы уверены, что хотите удалить этот скрипт?",
+ "delete_script": "Удалить скрипт",
+ "header": "Скрипт: {name}",
+ "icon": "Иконка",
+ "id": "ID объекта",
+ "id_already_exists": "Этот ID уже существует",
+ "id_already_exists_save_error": "ID объекта не уникален, укажите другой ID или оставьте поле пустым, чтобы автоматически сгенерировать его.",
+ "introduction": "Используйте скрипты для запуска последовательности действий.",
+ "link_available_actions": "Узнайте больше о действиях",
+ "load_error_not_editable": "Доступны для редактирования только скрипты из scripts.yaml.",
+ "max": {
+ "parallel": "Максимальное количество параллельных запусков",
+ "queued": "Длина очереди"
+ },
+ "modes": {
+ "description": "Режим управляет тем, что происходит при выполнении скрипта, когда он всё ещё выполняются с предыдущего вызова. Ознакомьтесь с {documentation_link} для получения дополнительной информации.",
+ "documentation": "документацией",
+ "label": "Режим",
+ "parallel": "Параллельный",
+ "queued": "Очередь",
+ "restart": "Рестарт",
+ "single": "Одиночный (по умолчанию)"
+ },
+ "save_script": "Сохранить скрипт",
+ "sequence": "Последовательность",
+ "sequence_sentence": "Последовательность действий этого скрипта.",
+ "show_trace": "Показать трассировку"
+ },
+ "picker": {
+ "add_script": "Добавить скрипт",
+ "dev_script": "Отладка скрипта",
+ "duplicate": "Дублировать",
+ "duplicate_script": "Дублировать",
+ "edit_script": "Редактировать скрипт",
+ "header": "Редактор скриптов",
+ "headers": {
+ "name": "Название"
+ },
+ "introduction": "Этот редактор позволяет создавать и редактировать скрипты.\nПожалуйста, ознакомьтесь с инструкциями по указанной ниже ссылке и убедитесь, что правильно настроили Home Assistant.",
+ "learn_more": "Узнайте больше о скриптах",
+ "no_scripts": "Скрипты не найдены",
+ "run_script": "Запустить скрипт",
+ "show_info": "Показать информацию о скрипте"
+ }
+ },
+ "server_control": {
+ "caption": "Сервер",
+ "description": "Проверка конфигурации и перезапуск сервера Home Assistant.",
+ "section": {
+ "reloading": {
+ "automation": "Автоматизации",
+ "command_line": "Объекты интеграции \"Command Line\"",
+ "core": "Местоположение и кастомизация",
+ "filesize": "Объекты интеграции \"File Size\"",
+ "filter": "Объекты интеграции \"Filter\"",
+ "generic": "Объекты интеграции \"Generic IP Camera\"",
+ "generic_thermostat": "Объекты интеграции \"Generic Thermostat\"",
+ "group": "Группы, объекты групп и службы уведомлений",
+ "heading": "Перезагрузка конфигурации YAML",
+ "history_stats": "Объекты интеграции \"History Stats\"",
+ "homekit": "HomeKit",
+ "input_boolean": "Вспомогательные переключатели",
+ "input_button": "Вспомогательные кнопки",
+ "input_datetime": "Вспомогательные элементы ввода даты и времени",
+ "input_number": "Вспомогательные элементы ввода чисел",
+ "input_select": "Вспомогательные выпадающие списки",
+ "input_text": "Вспомогательные элементы ввода текста",
+ "introduction": "Некоторые компоненты Home Assistant можно перезагрузить без необходимости перезапуска всей системы. При нажатии на одну из приведенных ниже опций выгружается текущая конфигурация YAML этой опции и загружается новая.",
+ "min_max": "Объекты интеграции \"Min/Max\"",
+ "mqtt": "Объекты интеграции \"MQTT\", настроенные вручную",
+ "person": "Люди",
+ "ping": "Объекты интеграции \"Ping (ICMP)\"",
+ "reload": "{domain}",
+ "rest": "Объекты и службы уведомлений интеграции \"REST\"",
+ "rpi_gpio": "Объекты интеграции \"Raspberry Pi GPIO\"",
+ "scene": "Сцены",
+ "script": "Скрипты",
+ "smtp": "Службы уведомлений SMTP",
+ "statistics": "Объекты интеграции \"Statistics\"",
+ "telegram": "Службы уведомлений Telegram",
+ "template": "Объекты шаблонов",
+ "themes": "Темы",
+ "timer": "Таймеры",
+ "trend": "Объекты интеграции \"Trend\"",
+ "universal": "Объекты интеграции \"Universal Media Player\"",
+ "zone": "Зоны"
+ },
+ "server_management": {
+ "confirm_restart": "Вы уверены, что хотите перезапустить Home Assistant?",
+ "confirm_stop": "Вы уверены, что хотите остановить Home Assistant?",
+ "heading": "Управление сервером",
+ "introduction": "Управляйте Вашим сервером Home Assistant.",
+ "restart": "Перезапустить",
+ "stop": "Остановить"
+ },
+ "validation": {
+ "check_config": "Начать проверку",
+ "heading": "Проверка конфигурации",
+ "introduction": "Выполните проверку конфигурации, если в неё были внесены изменения и Вы хотите убедиться в её работоспособности.",
+ "invalid": "Ошибка в конфигурации",
+ "valid": "Конфигурация выполнена верно"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Добавить метку",
+ "automation_title": "Считана метка {name}",
+ "caption": "Метки",
+ "confirm_remove": "Вы уверены, что хотите удалить метку {tag}?",
+ "confirm_remove_title": "Удалить метку?",
+ "create_automation": "Создать автоматизацию с меткой",
+ "description": "Управление метками NFC, QR-кодами",
+ "detail": {
+ "companion_apps": "приложения-компаньоны",
+ "create": "Добавить",
+ "create_and_write": "Добавить и записать",
+ "delete": "Удалить",
+ "description": "Описание",
+ "name": "Название",
+ "new_tag": "Новая метка",
+ "tag_id": "ID метки",
+ "tag_id_placeholder": "Если не указан, создается автоматически",
+ "update": "Обновить",
+ "usage": "Метку можно использовать для запуска автоматизации. Поддерживаются метки NFC, QR-коды и любые другие метки. Используйте наши {companion_link} для записи программируемых меток NFC, или создайте QR-код ниже."
+ },
+ "edit": "Изменить",
+ "headers": {
+ "last_scanned": "Последнее считывание",
+ "name": "Название"
+ },
+ "learn_more": "Узнайте больше о метках",
+ "never_scanned": "Сканирование ещё не выполнялось",
+ "no_tags": "Нет меток",
+ "write": "Записать"
+ },
+ "updates": {
+ "check_unavailable": {
+ "description": "Проверка наличия и установка обновлений из пользовательского интерфейса доступна только для Home Assistant Operating System.",
+ "title": "Не удалось проверить наличие обновлений"
+ },
+ "check_updates": "Проверить наличие обновлений",
+ "more_updates": "+ {count} {count, plural,\n one {обновление}\n few {обновления}\n many {обновлений}\n other {обновлений}\n}",
+ "review": "обзор",
+ "show": "показать",
+ "show_all_updates": "Показать все обновления",
+ "title": "{count} {count, plural,\n one {обновление}\n few {обновления}\n many {обновлений}\n other {обновлений}\n}",
+ "unable_to_fetch": "Не удалось загрузить обновления",
+ "version_available": "Доступна версия {version_available}"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Добавить пользователя",
+ "create": "Добавить",
+ "local_only": "Только локальный",
+ "password": "Пароль",
+ "password_confirm": "Подтвердите пароль",
+ "password_not_match": "Пароли не совпадают"
+ },
+ "caption": "Пользователи",
+ "description": "Учётные записи пользователей Home Assistant",
+ "editor": {
+ "activate_user": "Активировать",
+ "active": "Активировать",
+ "active_tooltip": "Разрешает или запрещает пользователю доступ к системе",
+ "admin": "Администратор",
+ "caption": "Просмотр пользователя",
+ "change_password": "Изменить пароль",
+ "confirm_user_deletion": "Вы уверены, что хотите удалить {name}?",
+ "deactivate_user": "Деактивировать",
+ "delete_user": "Удалить",
+ "group": "Группа",
+ "id": "ID",
+ "local_only": "Разрешить вход в систему только из локальной сети",
+ "name": "Отображаемое имя",
+ "new_password": "Новый пароль",
+ "owner": "Владелец",
+ "password_changed": "Пароль изменен",
+ "system_generated": "Системный пользователь",
+ "system_generated_users_not_editable": "Системные пользователи защищены от редактирования.",
+ "system_generated_users_not_removable": "Невозможно удалить системных пользователей.",
+ "unnamed_user": "Безымянный пользователь",
+ "update_user": "Обновить",
+ "username": "Имя пользователя"
+ },
+ "is_local": "Локальный пользователь",
+ "is_not_active": "Деактивирован",
+ "is_owner": "Владелец",
+ "is_system": "Системный пользователь",
+ "picker": {
+ "add_user": "Добавить пользователя",
+ "headers": {
+ "group": "Группа",
+ "is_active": "Доступ",
+ "is_owner": "Владелец",
+ "local": "Локальный",
+ "name": "Отображаемое имя",
+ "system": "Системный",
+ "username": "Имя пользователя"
+ }
+ },
+ "users_privileges_note": "Функционал пользователей всё ещё в стадии разработки. В дальнейшем пользователи не смогут администрировать сервер через пользовательский интерфейс. Мы все еще проверяем все конечные точки API управления, чтобы убедиться, что они правильно ограничивают доступ."
+ },
+ "zha": {
+ "add_device": "Добавить устройство",
+ "add_device_page": {
+ "discovered_text": "Устройства появятся здесь, когда будут обнаружены.",
+ "no_devices_found": "Устройства не найдены, убедитесь, что они находятся в режиме сопряжения, и держите их активными во время обнаружения.",
+ "pairing_mode": "Убедитесь, что подключаемые устройства находятся в режиме сопряжения. Чтобы узнать, как активировать режим сопряжения, ознакомьтесь с инструкциями для Вашего устройства.",
+ "search_again": "Повторный поиск",
+ "spinner": "Поиск Zigbee устройств…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Атрибуты выбранного кластера",
+ "get_zigbee_attribute": "Получить атрибут Zigbee",
+ "header": "Атрибуты кластера",
+ "help_attribute_dropdown": "Выберите атрибут для просмотра или установите его значение.",
+ "help_get_zigbee_attribute": "Получить значение для выбранного атрибута.",
+ "help_set_zigbee_attribute": "Установите значение атрибута для указанного кластера на указанном объекте.",
+ "introduction": "Просмотр и редактирование атрибутов кластера.",
+ "set_zigbee_attribute": "Установить атрибут Zigbee"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Команды выбранного кластера",
+ "header": "Команды кластера",
+ "help_command_dropdown": "Выберите команду для взаимодействия.",
+ "introduction": "Просмотр и выдача команд кластеров.",
+ "issue_zigbee_command": "Выдать команду Zigbee"
+ },
+ "clusters": {
+ "header": "Кластеры",
+ "help_cluster_dropdown": "Выберите кластер для просмотра атрибутов и команд.",
+ "introduction": "Кластеры – это блоки, из которых состоит функциональность устройства Zigbee. В структуре кластера существуют элементы клиента и сервера, которые состоят из атрибутов и команд."
+ },
+ "common": {
+ "clusters": "Кластеры",
+ "manufacturer_code_override": "Переназначить код производителя",
+ "value": "Значение"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Ярлыки",
+ "update_button": "Обновить конфигурацию"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Настройка завершена",
+ "CONFIGURED_status_text": "Инициализация",
+ "INITIALIZED": "Инициализация завершена",
+ "INITIALIZED_status_text": "Устройство готово к использованию",
+ "INTERVIEW_COMPLETE": "Опрос завершен",
+ "INTERVIEW_COMPLETE_status_text": "Настройка",
+ "PAIRED": "Найдено устройство",
+ "PAIRED_status_text": "Опрос начат"
+ },
+ "group_binding": {
+ "bind_button_help": "Привяжите выбранную группу к выбранным кластерам устройств.",
+ "bind_button_label": "Привязать группу",
+ "cluster_selection_help": "Выберите кластеры для привязки к выбранной группе.",
+ "group_picker_help": "Выберите группу, чтобы выполнить команду привязки.",
+ "group_picker_label": "Связываемые группы",
+ "header": "Привязка групп",
+ "introduction": "Привязывайте и отвязывайте группы.",
+ "unbind_button_help": "Отвяжите выбранную группу от выбранных кластеров устройств.",
+ "unbind_button_label": "Отвязать группу"
+ },
+ "groups": {
+ "add_group": "Добавить группу",
+ "add_members": "Добавить участников",
+ "caption": "Группы",
+ "create": "Создать группу",
+ "create_group": "Создание новой группы",
+ "create_group_details": "Укажите необходимые данные для создания новой группы Zigbee",
+ "creating_group": "Создание группы",
+ "delete": "Удалить группу",
+ "group_details": "Здесь приведена вся доступная информация о выбранной группе Zigbee.",
+ "group_id": "ID группы",
+ "group_info": "Информация о группе",
+ "group_name_placeholder": "Название группы",
+ "group_not_found": "Группа не найдена!",
+ "groups": "Группы",
+ "members": "Участники",
+ "remove_members": "Удалить участников",
+ "removing_members": "Удаление участников"
+ },
+ "network": {
+ "caption": "Сеть"
+ },
+ "visualization": {
+ "auto_zoom": "Автоматическое приближение",
+ "caption": "Визуализация",
+ "enable_physics": "Включить физику",
+ "header": "Визуализация сети",
+ "highlight_label": "Выделить устройства",
+ "refresh_topology": "Обновить топологию",
+ "zoom_label": "Показать устройство"
+ }
+ },
+ "zone": {
+ "add_zone": "Добавить зону",
+ "caption": "Зоны",
+ "configured_in_yaml": "Зоны, настроенные с помощью configuration.yaml, нельзя редактировать с помощью пользовательского интерфейса.",
+ "confirm_delete": "Вы уверены, что хотите удалить эту зону?",
+ "create_zone": "Создать зону",
+ "description": "Зоны, в которых Вы хотите отслеживать людей",
+ "detail": {
+ "create": "Создать",
+ "delete": "Удалить",
+ "icon": "Иконка",
+ "icon_error_msg": "Параметр должен быть в формате \"prefix:iconname\" (например: \"mdi:home\")",
+ "latitude": "Широта",
+ "longitude": "Долгота",
+ "name": "Название",
+ "new_zone": "Новая зона",
+ "passive": "Пассивная",
+ "passive_note": "Пассивные зоны могут использоваться только в автоматизациях. Они не отображаются на карте в пользовательском интерфейсе и не используются в качестве местоположения для устройств отслеживания.",
+ "radius": "Радиус",
+ "required_error_msg": "Обязательное поле",
+ "update": "Обновить"
+ },
+ "edit_home_zone": "Радиус домашней зоны изменить в пользовательском интерфейсе в настоящее время невозможно. Чтобы изменить местоположение домашней зоны, переместите маркер на карте.",
+ "edit_home_zone_narrow": "Местоположение домашней зоны может быть изменено в разделе настроек \"Общие\". Радиус домашней зоны изменить в пользовательском интерфейсе в настоящее время невозможно.",
+ "edit_zone": "Редактировать зону",
+ "go_to_core_config": "Перейти в раздел \"Общие\"?",
+ "home_zone_core_config": "Местоположение домашней зоны может быть изменено в разделе настроек \"Общие\". Радиус домашней зоны изменить в пользовательском интерфейсе в настоящее время невозможно. Перейти в раздел настроек \"Общие\"?",
+ "introduction": "Зоны позволяют указывать определенные области на земле. Когда отслеживаемая персона находится в назначенной зоне, её состоянием будет название зоны. Зоны также могут использоваться в качестве триггера или условия в автоматизациях.",
+ "no_zones_created_yet": "У Вас еще нет добавленных зон."
+ },
+ "zwave": {
+ "common": {
+ "index": "Индекс",
+ "instance": "Экземпляр",
+ "unknown": "неизвестно",
+ "value": "Значение",
+ "wakeup_interval": "Интервал пробуждения"
+ },
+ "description": "Управление сетью Z-Wave",
+ "learn_more": "Узнайте больше о Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "Переход на OpenZWave",
+ "introduction": "Этот мастер поможет Вам перейти от устаревшей интеграции Z-Wave к интеграции с OpenZWave, которая в настоящее время находится в стадии бета-тестирования."
+ },
+ "zwave_js": {
+ "header": "Переход на Z-Wave JS",
+ "introduction": "Эта интеграция больше не поддерживается, и мы предлагаем Вам воспользоваться мастером настройки для перехода на новую интеграцию Z-Wave JS."
+ }
+ },
+ "network_management": {
+ "header": "Управление сетью Z-Wave",
+ "introduction": "Управляйте сетью Z-Wave с помощью представленных команд. Информацию о результате выполненных команд Вы можете получить в журнале OZW."
+ },
+ "network_status": {
+ "network_started": "Сеть Z-Wave работает",
+ "network_started_note_all_queried": "Все узлы были опрошены.",
+ "network_started_note_some_queried": "Активные узлы были опрошены. Спящие узлы будут опрошены, когда выйдут из режима сна.",
+ "network_starting": "Запуск сети Z-Wave…",
+ "network_starting_note": "Это может занять некоторое время в зависимости от размера Вашей сети.",
+ "network_stopped": "Сеть Z-Wave отключена"
+ },
+ "node_config": {
+ "config_parameter": "Параметр конфигурации",
+ "config_value": "Значение конфигурации",
+ "false": "Ложь",
+ "header": "Параметры конфигурации узла",
+ "seconds": "секунд",
+ "set_config_parameter": "Установить параметр конфигурации",
+ "set_wakeup": "Установить интервал пробуждения",
+ "true": "Истина"
+ },
+ "node_management": {
+ "add_to_group": "Добавить в группу",
+ "entities": "Объекты этого узла",
+ "entity_info": "Информация об объекте",
+ "exclude_entity": "Исключить этот объект из Home Assistant",
+ "group": "Группа",
+ "header": "Управление узлами Z-Wave",
+ "introduction": "Команды Z-Wave, которые влияют на один узел. Выберите узел, чтобы увидеть список доступных команд.",
+ "max_associations": "Максимум ассоциаций:",
+ "node_group_associations": "Ассоциации групп узлов",
+ "node_protection": "Защита узла",
+ "node_to_control": "Узел для управления",
+ "nodes": "Узлы",
+ "nodes_hint": "Выберите узел для просмотра индивидуальных параметров.",
+ "nodes_in_group": "Другие узлы в этой группе:",
+ "pooling_intensity": "Интенсивность опроса",
+ "protection": "Защита",
+ "remove_broadcast": "Удалить трансляцию",
+ "remove_from_group": "Удалить из группы",
+ "set_protection": "Установить защиту"
+ },
+ "ozw_log": {
+ "header": "Журнал OZW",
+ "introduction": "Просмотр журнала событий. 0 - минимум (загружает весь журнал), 1000 - максимум. Журнал обновляется автоматически.",
+ "last_log_lines": "Количество последних строк журнала",
+ "load": "Загрузить",
+ "tail": "Конец"
+ },
+ "services": {
+ "add_node": "Добавить узел",
+ "add_node_secure": "Добавить защищенный узел",
+ "cancel_command": "Отменить команду",
+ "heal_network": "Перенастройка сети",
+ "heal_node": "Перенастроить узел",
+ "node_info": "Информация об узле",
+ "print_node": "Показать узел",
+ "refresh_entity": "Обновить объект",
+ "refresh_node": "Обновить узел",
+ "remove_failed_node": "Удалить неисправный узел",
+ "remove_node": "Удалить узел",
+ "replace_failed_node": "Заменить неисправный узел",
+ "save_config": "Сохранить конфигурацию",
+ "soft_reset": "Сброс",
+ "start_network": "Включить",
+ "stop_network": "Отключить",
+ "test_network": "Тестировать",
+ "test_node": "Тестировать узел"
+ },
+ "values": {
+ "header": "Значения узлов"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Отменить подключение",
+ "check_logs": "Проверьте журналы для получения дополнительной информации.",
+ "choose_inclusion_strategy": "Как Вы хотите добавить свое устройство",
+ "controller_in_inclusion_mode": "Ваш контроллер Z-Wave находится в режиме подключения.",
+ "enter_qr_code": "Введите значение QR-кода",
+ "follow_device_instructions": "Следуйте инструкциям к подключаемому устройству, чтобы инициировать сопряжение.",
+ "inclusion_failed": "Не удалось добавить устройство.",
+ "inclusion_finished": "Устройство добавлено.",
+ "interview_failed": "Опрос устройства не удался. Дополнительная информация может быть получена в журналах.",
+ "interview_started": "Устройство опрашивается, это может занять некоторое время.",
+ "introduction": "Этот мастер поможет Вам добавить узел в Вашу сеть Z-Wave.",
+ "provisioning_finished": "Устройство добавлено. Как только Вы включите его, оно станет доступным.",
+ "qr_code": "QR код",
+ "qr_code_paragraph": "Если Ваше устройство поддерживает SmartStart, Вы можете отсканировать QR-код для упрощения сопряжения.",
+ "scan_qr_code": "Сканирование QR-кода",
+ "searching_device": "Поиск устройства",
+ "secure_inclusion_warning": "Для защищенных устройств требуется дополнительная пропускная способность. Слишком много таких устройств может замедлить работу Вашей сети Z-Wave. Мы рекомендуем использовать безопасное подключение только для устройств, которым требуется дополнительная защита, например, для замков или открывателей гаражных ворот.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Например: устаревшие дверные замки без поддержки S2",
+ "title": "Устаревший S0"
+ },
+ "S2_AccessControl": {
+ "description": "Например: дверные замки и гаражные ворота",
+ "title": "Контроль доступа S2"
+ },
+ "S2_Authenticated": {
+ "description": "Например: освещение, датчики и системы безопасности",
+ "title": "Аутентифицированный S2"
+ },
+ "S2_Unauthenticated": {
+ "description": "То же, что и аутентифицированный S2, но без верификации устройства",
+ "title": "Не аутентифицированный S2"
+ }
+ },
+ "select_camera": "Выберите камеру",
+ "start_inclusion": "Начать подключение",
+ "start_secure_inclusion": "Начать безопасное подключение",
+ "title": "Добавить устройство Z-Wave",
+ "use_secure_inclusion": "Использовать безопасное подключение",
+ "view_device": "Просмотр устройства"
+ },
+ "common": {
+ "add_node": "Добавить устройство",
+ "back": "Назад",
+ "close": "Закрыть",
+ "heal_network": "Перенастройка сети",
+ "home_id": "ID дома",
+ "network": "Сеть",
+ "node_id": "ID устройства",
+ "reconfigure_server": "Перенастроить сервер",
+ "remove_node": "Удалить устройство",
+ "source": "Источник"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n one {устройство}\n few {устройства}\n many {устройств}\n other {устройств}\n}",
+ "driver_version": "Версия драйвера",
+ "dump_dead_nodes_text": "Некоторые из устройств в сети не отвечают и считаются мертвыми. Они не будут полностью экспортированы.",
+ "dump_dead_nodes_title": "Некоторые из устройств в сети мертвы",
+ "dump_debug": "Загрузить данные",
+ "dump_not_ready_confirm": "Скачать",
+ "dump_not_ready_text": "Если продолжить экспорт, пока не все устройства готовы, Вы можете упустить нужные данные. Дайте Вашей сети некоторое время, чтобы опросить все устройства. Хотите продолжить экспорт дампа?",
+ "dump_not_ready_title": "Ещё не все устройства готовы",
+ "header": "Управление сетью Z-Wave",
+ "home_id": "ID дома",
+ "introduction": "Управление всей сетью и отдельными устройствами Z-Wave",
+ "nodes_ready": "Устройства готовы к работе",
+ "not_ready": "{count} не готово",
+ "provisioned_devices": "Подготовленные устройства",
+ "server_url": "URL-адрес сервера",
+ "server_version": "Версия сервера"
+ },
+ "device_info": {
+ "device_config": "Настроить устройство",
+ "heal_node": "Перенастроить устройство",
+ "highest_security": "Высочайшая безопасность",
+ "is_secure": "Безопасно",
+ "node_ready": "Устройство готово к работе",
+ "node_status": "Состояние устройства",
+ "reinterview_device": "Повторный опрос устройства",
+ "remove_failed": "Удалить неисправное устройство",
+ "unknown": "Неизвестно",
+ "zwave_info": "Информация о Z-Wave",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Версия {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "Перенастройка сети была отменена.",
+ "healing_complete": "Перенастройка сети завершена.",
+ "healing_failed": "Не удалось завершить перенастройку сети. Дополнительная информация может быть доступна в журналах.",
+ "in_progress": "Идет перенастройка сети. Это займет некоторое время.",
+ "introduction": "Перенастройка сети заставит все устройства пересчитать свои маршруты к контроллеру. Эта процедура рекомендуется, если Вы переместили в другое место устройства или контроллер.",
+ "run_in_background": "Вы можете закрыть это диалоговое окно, перенастройка сети продолжится в фоновом режиме.",
+ "start_heal": "Начать перенастройку",
+ "stop_heal": "Остановить перенастройку",
+ "title": "Перенастройка сети Z-Wave",
+ "traffic_warning": "Во время перенастройки генерируется большой объем трафика в сети Z-Wave. В связи с этим, устройства могут отвечать с задержками (или вообще не отвечать)."
+ },
+ "heal_node": {
+ "healing_complete": "Перенастройка устройства {device} завершена успешно.",
+ "healing_failed": "Устройство {device} не может быть перенастроено.",
+ "healing_failed_check_logs": "Дополнительная информация может быть доступна в журналах.",
+ "in_progress": "Выполняется перенастройка устройства {device}.",
+ "introduction": "Устройство {device} начнёт повторное вычисление маршрутов к контроллеру. Это может помочь решить проблемы со связью, если Вы переместили в другое место устройство или контроллер.",
+ "network_heal_in_progress": "Выполняется перенастройка сети Z-Wave. Дождитесь её завершения, прежде чем начать перенастройку отдельного устройства.",
+ "start_heal": "Перенастроить устройство",
+ "title": "Перенастройка устройства Z-Wave",
+ "traffic_warning": "Во время перенастройки генерируется большой объем трафика в сети Z-Wave. В связи с этим, устройства могут отвечать с задержками (или вообще не отвечать)."
+ },
+ "logs": {
+ "download_logs": "Скачать журналы",
+ "log_level": "Уровень",
+ "log_level_changed": "Уровень журнала изменен на: {level}",
+ "subscribed_to_logs": "Подписано на сообщения журнала Z-Wave JS…",
+ "title": "Журналы Z-Wave JS"
+ },
+ "navigation": {
+ "logs": "Журналы",
+ "network": "Сеть"
+ },
+ "network_status": {
+ "connected": "Подключен",
+ "connecting": "Подключение",
+ "unknown": "Неизвестно"
+ },
+ "node_config": {
+ "attribution": "Параметры конфигурации устройства и описания предоставлены {device_database}",
+ "battery_device_notice": "Чтобы обновить конфигурацию устройства с питанием от батареи, оно должно находиться в активном состоянии. Обратитесь к руководству Вашего устройства для получения инструкций о том, как вывести его из спящего режима.",
+ "error_device_not_found": "Устройство не найдено.",
+ "header": "Настройки устройства Z-Wave",
+ "introduction": "Настройка параметров конфигурации выбранного устройства.",
+ "parameter": "Параметр",
+ "parameter_is_read_only": "Этот параметр доступен только для чтения.",
+ "set_param_accepted": "Параметр обновлен",
+ "set_param_error": "Произошла ошибка",
+ "set_param_queued": "Изменение параметра поставлено в очередь и будет обновлено, когда устройство выйдет из спящего режима",
+ "zwave_js_device_database": "базой данных устройств Z-Wave JS"
+ },
+ "node_status": {
+ "alive": "Живой",
+ "asleep": "Спит",
+ "awake": "Проснулся",
+ "dead": "Мертвый",
+ "unknown": "Неизвестно"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "Если Вы отмените подготовку устройства, оно не будет добавлено в Home Assistant при подачи питания. Если устройство уже добавлено в Home Assistant, удаление подготовленного устройства не приведет к его удалению из Home Assistant.",
+ "confirm_unprovision_title": "Вы уверены, что хотите отменить подготовку устройства?",
+ "dsk": "DSK",
+ "included": "Включает",
+ "not_included": "Не включает",
+ "security_classes": "Классы безопасности",
+ "unprovison": "Отменить"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "Перед повторным опросом устройства с батарейным питанием необходимо вывести из спящего режима. О том, как это сделать, Вы можете узнать из инструкций к Вашему устройству.",
+ "in_progress": "Устройство опрашивается, это может занять некоторое время.",
+ "interview_complete": "Опрос устройства завершен.",
+ "interview_failed": "Опрос устройства не удался. Дополнительная информация может быть получена в журналах.",
+ "introduction": "Повторный опрос устройства в сети Z-Wave. Используйте эту функцию, если это устройство не работает или работает неправильно.",
+ "run_in_background": "Вы можете закрыть это диалоговое окно, опрос продолжится в фоновом режиме.",
+ "start_reinterview": "Начать повторный опрос",
+ "title": "Повторный опрос устройства Z-Wave"
+ },
+ "remove_failed_node": {
+ "in_progress": "Выполняется удаление устройства.",
+ "introduction": "Удаление неисправного устройства из сети Z-Wave. Используйте эту функцию, если Вы не можете исключить устройство из сети штатными средствами.",
+ "removal_failed": "Не удалось удалить устройство из сети Z-Wave.",
+ "removal_finished": "Устройство {id} удалено из сети Z-Wave.",
+ "remove_device": "Удалить устройство",
+ "title": "Удаление неисправного устройства Z-Wave"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Отменить отключение",
+ "controller_in_exclusion_mode": "Ваш контроллер Z-Wave находится в режиме отключения.",
+ "exclusion_failed": "Не удалось удалить устройство. Проверьте журналы для получения дополнительной информации.",
+ "exclusion_finished": "Устройство {id} удалено из сети Z-Wave.",
+ "follow_device_instructions": "Следуйте инструкциям к подключаемому устройству, чтобы инициировать отключение.",
+ "introduction": "Удалить устройство и связанные объекты из сети Z-Wave и из Home Assistant.",
+ "start_exclusion": "Начать отключение",
+ "title": "Удалить устройство Z-Wave"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Отсутствует"
+ },
+ "S0_Legacy": {
+ "description": "Например: устаревшие дверные замки без поддержки S2",
+ "title": "Устаревший S0"
+ },
+ "S2_AccessControl": {
+ "description": "Например: дверные замки и гаражные ворота",
+ "title": "Контроль доступа S2"
+ },
+ "S2_Authenticated": {
+ "description": "Например: освещение, датчики и системы безопасности",
+ "title": "Аутентифицированный S2"
+ },
+ "S2_Unauthenticated": {
+ "description": "То же, что и аутентифицированный S2, но без верификации устройства",
+ "title": "Не аутентифицированный S2"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Подтверждая, Вы предоставите для панели доступ ко всем данным в Home Assistant.",
+ "hide_message": "Ознакомьтесь с инструкциями к компоненту Panel Custom, чтобы узнать как скрыть это сообщение.",
+ "question_trust": "Доверяете ли Вы сторонней панели {name} адресу {link} ?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Активные обработчики",
+ "alert_event_type": "Укажите событие.",
+ "available_events": "Доступные события",
+ "count_listeners": " (подписано: {count})",
+ "data": "Данные события в формате YAML (необязательно)",
+ "description": "Здесь Вы можете создать и отправить событие в Home Assistant.",
+ "documentation": "Узнайте больше о событиях.",
+ "event_fired": "Событие {name} произошло в",
+ "fire_event": "Создать событие",
+ "listen_to_events": "Подписаться на событие",
+ "listening_to": "Подписано на",
+ "notification_event_fired": "Событие {type} создано успешно",
+ "start_listening": "Подписаться",
+ "stop_listening": "Отписаться",
+ "subscribe_to": "Событие",
+ "title": "События",
+ "type": "Событие"
+ },
+ "services": {
+ "accepts_target": "Эта служба принимает целевой объект, например: `entity_id: light.bed_light`",
+ "all_parameters": "Все доступные параметры",
+ "call_service": "Вызвать службу",
+ "column_description": "Описание",
+ "column_example": "Пример",
+ "column_parameter": "Параметр",
+ "description": "Здесь Вы можете вызвать любую службу Home Assistant из списка доступных.",
+ "fill_example_data": "Заполнить данными из примера",
+ "no_template_ui_support": "Пользовательский интерфейс не поддерживает шаблоны, используйте текстовый редактор YAML.",
+ "title": "Службы",
+ "ui_mode": "Перейти в режим формы ввода",
+ "yaml_mode": "Перейти в режим YAML",
+ "yaml_parameters": "Параметры доступны только в режиме YAML"
+ },
+ "states": {
+ "alert_entity_field": "Укажите объект.",
+ "attributes": "Атрибуты",
+ "copy_id": "Скопировать ID в буфер обмена",
+ "current_entities": "Список объектов",
+ "description1": "Здесь Вы можете вручную изменить отображение текущего состояния объекта в Home Assistant.",
+ "description2": "Если этот объект связан с устройством, фактической передачи состояния на это устройство осуществляться не будет.",
+ "entity": "Объект",
+ "filter_attributes": "Поиск",
+ "filter_entities": "Поиск",
+ "filter_states": "Поиск",
+ "last_changed": "Последнее изменение",
+ "last_updated": "Последнее обновление",
+ "more_info": "Подробнее",
+ "no_entities": "Не найдено",
+ "set_state": "Задать состояние",
+ "state": "Состояние",
+ "state_attributes": "Атрибуты состояния в формате YAML (необязательно)",
+ "title": "Состояния"
+ },
+ "statistics": {
+ "entity": "Объект",
+ "fix_issue": {
+ "fix": "Исправить",
+ "units_changed": {
+ "clear": "Удалить все сохранённые статистические данные этого объекта",
+ "fix": "Исправить проблему",
+ "title": "Изменилась единица измерения этого объекта",
+ "update": "Изменить единицы измерения сохранённых статистических значений с ''{metadata_unit}'' на ''{state_unit}''"
+ }
+ },
+ "issue": "Проблема",
+ "issues": {
+ "entity_no_longer_recorded": "Состояния этого объекта больше не записываются в базу данных",
+ "entity_not_recorded": "Recorder не сохраняет в базе данных состояния этого объекта",
+ "no_state": "У этого объекта нет состояния",
+ "units_changed": "Единица измерения этого объекта изменилась с ''{metadata_unit}'' на ''{state_unit}''",
+ "unsupported_state_class": "Класс состояния ''{state_class}'' этого объекта не поддерживается",
+ "unsupported_unit": "Единица измерения этого объекта (''{state_unit}'') не соответствует единице измерения класса устройства ''{device_class}''",
+ "unsupported_unit_metadata": "Единица измерения записанной статистики (''{metadata_unit}'') не соответствует поддерживаемой единице измерения ''{supported_unit}'' класса устройства ''{device_class}''",
+ "unsupported_unit_state": "Единица измерения этого объекта (''{state_unit}'') не соответствует единице измерения класса устройства ''{device_class}''"
+ },
+ "no_issue": "Проблем нет",
+ "title": "Статистика"
+ },
+ "templates": {
+ "all_listeners": "Этот шаблон отслеживает все события изменения состояния.",
+ "description": "Здесь Вы можете протестировать поведение шаблонов. В Home Assistant используется шаблонизатор Jinja2 с некоторыми специальными расширениями.",
+ "domain": "Домен",
+ "editor": "Редактор шаблонов",
+ "entity": "Объект",
+ "jinja_documentation": "Узнайте больше о шаблонизаторе Jinja2",
+ "listeners": "Этот шаблон отслеживает следующие события изменения состояния:",
+ "no_listeners": "Этот шаблон не отслеживает никаких событий и не будет обновляться автоматически.",
+ "reset": "Вернуться к демонстрационному шаблону",
+ "result_type": "Тип результата",
+ "template_extensions": "Узнайте больше о шаблонах Home Assistant",
+ "time": "Этот шаблон обновляется в начале каждой минуты.",
+ "title": "Шаблоны",
+ "unknown_error_template": "Неизвестная ошибка при визуализации шаблона."
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Устройства",
+ "energy_distribution_title": "Распределение энергии",
+ "energy_gas_graph_title": "Потребление природного газа",
+ "energy_solar_graph_title": "Генерация электроэнергии",
+ "energy_sources_table_title": "Источники",
+ "energy_usage_graph_title": "Использование энергии"
+ },
+ "charts": {
+ "by_device": "Потребление по устройствам",
+ "solar": "Солнечная",
+ "stat_house_energy_meter": "Общее потребление электроэнергии"
+ },
+ "setup": {
+ "back": "Назад",
+ "done": "Показать панель управления энергопотреблением",
+ "next": "Далее"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Эту функцию можно использовать только после получения контроля над пользовательским интерфейсом Lovelace.",
+ "saving_failed": "Не удалось сохранить конфигурацию пользовательского интерфейса.",
+ "yaml_unsupported": "Вы не можете использовать эту функцию, если пользовательский интерфейс Lovelace работает в режиме YAML."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Вы уверены, что хотите запустить действие ''{action}''?",
+ "no_entity_more_info": "Не указан объект для диалогового окна с дополнительной информацией",
+ "no_entity_toggle": "Не указан объект для переключения состояния",
+ "no_navigation_path": "Не указан путь навигации",
+ "no_service": "Не указана служба для запуска",
+ "no_url": "Не указан URL-адрес"
+ },
+ "confirm_delete": "Вы уверены, что хотите удалить эту карточку?",
+ "empty_state": {
+ "go_to_integrations_page": "Перейти на страницу интеграций",
+ "no_devices": "На этой странице можно управлять Вашими устройствами, однако похоже, что ни одно устройство еще не добавлено. Для начала перейдите на страницу интеграций.",
+ "title": "Добро пожаловать домой"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "Эта карточка показывает, какая часть потребляемой Вашим домом энергии была произведена с использованием неископаемого топлива, такого как солнечная энергия, ветер и ядерная энергия. Чем выше это число, тем лучше!",
+ "non_fossil_energy_consumed": "Потребление энергии, произведенной из неископаемого топлива",
+ "non_fossil_energy_not_calculated": "Невозможно рассчитать потребление энергии, произведенной из неископаемого топлива"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Потребление"
+ },
+ "energy_distribution": {
+ "battery": "Батарея",
+ "gas": "Газ",
+ "go_to_energy_dashboard": "Перейти на панель управления энергопотреблением",
+ "grid": "Сеть",
+ "home": "Дом",
+ "non_fossil": "Неископаемая",
+ "solar": "Солнечная",
+ "title_today": "Распределение энергии за сегодня"
+ },
+ "energy_solar_graph": {
+ "forecast": "Прогноз {name}",
+ "production": "Генерация {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Всего по аккумуляторной батарее",
+ "cost": "Расходы",
+ "energy": "Энергия",
+ "grid_total": "Всего по электросети",
+ "source": "Источник",
+ "total_costs": "Итого"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Потреблено из сети",
+ "consumed_battery": "Потреблено из батареи",
+ "consumed_solar": "Потреблено от панелей",
+ "total_consumed": "Всего получено {num} kWh",
+ "total_returned": "Всего передано {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Если стрелка в фиолетовой зоне, значит Вы произвели и передали в сеть больше энергии, чем получили из неё. Если в синей — значит большая часть электроэнергии была получена из сети.",
+ "energy_dependency": "Эта карточка показывает баланс переданной и полученной электроэнергии.",
+ "grid_neutrality_not_calculated": "Невозможно рассчитать независимость от сети.",
+ "net_consumed_grid": "Получено из сети",
+ "net_returned_grid": "Передано в сеть",
+ "red_green_color_explain": "Если стрелка в зелёной зоне, значит Вы произвели и передали в сеть больше энергии, чем получили из неё. Если в красной — значит большая часть электроэнергии была получена из сети."
+ },
+ "loading": "Загрузка...",
+ "no_data": "Нет данных. Новые данные поступят в течение 2 часов после настройки панели управления энергопотреблением.",
+ "no_data_period": "Нет данных за этот период.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "Эта карточка показывает, какая часть произведенной Вашими солнечными панелями электроэнергии была использована Вашим домом.",
+ "card_indicates_solar_energy_used_charge_home_bat": "Если обычно это число очень низкое (что указывает на избыточное производство электроэнергии солнечными панелями), Вы можете рассмотреть возможность использования излишков генерации для зарядки домашней аккумуляторной батареи или электромобиля в периоды высокой солнечной активности.",
+ "not_produced_solar_energy": "Отсутствует генерация электроэнергии солнечными панелями",
+ "self_consumed_solar_could_not_calc": "Невозможно рассчитать потребление энергии, произведенной Вашими солнечными панелями",
+ "self_consumed_solar_energy": "Потребление энергии от солнечных панелей"
+ }
+ },
+ "entities": {
+ "never_triggered": "Запуска не было"
+ },
+ "iframe": {
+ "error_secure_context": "Невозможно загрузить фреймы веб-сайтов, использующих {target_protocol}, если Ваш Home Assistant использует {context_protocol}."
+ },
+ "map": {
+ "reset_focus": "Сбросить фокус"
+ },
+ "picture-elements": {
+ "call_service": "Вызвать службу {name}",
+ "hold": "Удержание:",
+ "more_info": "Показать окно с дополнительной информацией: {name}",
+ "navigate_to": "Перейти к {location}",
+ "tap": "Нажатие:",
+ "toggle": "Переключить {name}",
+ "url": "Открыть окно {url_path}"
+ },
+ "safe-mode": {
+ "description": "Home Assistant столкнулся с проблемой при загрузке Вашей конфигурации и теперь работает в безопасном режиме. Ознакомьтесь с журналом работы сервера, чтобы увидеть что пошло не так.",
+ "header": "Безопасный режим"
+ },
+ "shopping-list": {
+ "add_item": "Добавить элемент",
+ "checked_items": "Отмеченные элементы",
+ "clear_items": "Очистить отмеченные элементы",
+ "drag_and_drop": "Перетаскивание",
+ "reorder_items": "Изменить порядок"
+ },
+ "show_more_info": "Показать дополнительную информацию",
+ "starting": {
+ "description": "Home Assistant запускается, пожалуйста, подождите…"
+ }
+ },
+ "changed_toast": {
+ "message": "Конфигурация этой панели Lovelace была изменена, обновить страницу?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "День",
+ "month": "Месяц",
+ "next": "Следующий",
+ "previous": "Предыдущий",
+ "today": "Текущий период",
+ "week": "Неделя",
+ "year": "Год"
+ },
+ "timestamp-display": {
+ "invalid": "Неверная временная метка",
+ "invalid_format": "Неверный формат отображения"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Вызов службы",
+ "default_action": "Действие по умолчанию",
+ "more-info": "Дополнительная информация",
+ "navigate": "Навигация",
+ "none": "Без действий",
+ "toggle": "Переключить",
+ "url": "URL-адрес"
+ },
+ "navigation_path": "Путь навигации",
+ "url_path": "URL-адрес"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Доступные состояния",
+ "description": "Позволяет управлять панелью сигнализации, ставить объект на охрану и снимать с неё.",
+ "name": "Панель сигнализации"
+ },
+ "area": {
+ "description": "Отображает объекты, привязанные к определенному пространству.",
+ "name": "Пространство",
+ "show_camera": "Показывать изображение с камеры"
+ },
+ "button": {
+ "default_action_help": "Действие по умолчанию зависит от возможностей объекта. Это может быть переключение состояния, либо отображение диалогового окна с дополнительной информацией.",
+ "description": "Позволяет добавлять кнопки для выполнения каких-либо задач.",
+ "name": "Кнопка"
+ },
+ "calendar": {
+ "calendar_entities": "Объекты",
+ "description": "Отображает календарь, включая день, неделю и списки задач.",
+ "inital_view": "Начальный вид",
+ "name": "Календарь",
+ "views": {
+ "dayGridDay": "День",
+ "dayGridMonth": "Месяц",
+ "listWeek": "Список"
+ }
+ },
+ "conditional": {
+ "card": "Карточка",
+ "change_type": "Изменить тип",
+ "condition_explanation": "Карточка будет показана, если будут выполнены ВСЕ указанные ниже условия.",
+ "conditions": "Условия",
+ "current_state": "текущее",
+ "description": "Отображает другую карточку в зависимости от состояния объекта.",
+ "name": "Условия",
+ "state_equal": "Состояние равно",
+ "state_not_equal": "Состояние не равно"
+ },
+ "config": {
+ "optional": "необязательно",
+ "required": "обязательно"
+ },
+ "entities": {
+ "description": "Самая распространённая карточка. Она группирует объекты в виде списка.",
+ "edit_special_row": "Нажмите кнопку редактирования для просмотра свойств этой строки",
+ "entity_row": {
+ "attribute": "Атрибут",
+ "button": "Кнопка",
+ "buttons": "Кнопки",
+ "call-service": "Вызов службы",
+ "cast": "Cast",
+ "conditional": "Условия",
+ "divider": "Разделитель",
+ "section": "Раздел",
+ "weblink": "Ссылка на веб-страницу"
+ },
+ "entity_row_editor": "Редактор строки",
+ "name": "Объекты",
+ "secondary_info_values": {
+ "brightness": "Яркость",
+ "entity-id": "ID объекта",
+ "last-changed": "Последнее изменение",
+ "last-triggered": "Последний запуск",
+ "last-updated": "Последнее обновление",
+ "none": "Без дополнительной информации",
+ "position": "Положение",
+ "tilt-position": "Наклон"
+ },
+ "show_header_toggle": "Переключатель в заголовке",
+ "special_row": "(специальная строка)",
+ "toggle": "Переключить объекты"
+ },
+ "entity-filter": {
+ "description": "Позволяет определить список объектов, которые Вы хотите отображать только когда они находятся в определенном состоянии.",
+ "name": "Фильтр объектов"
+ },
+ "entity": {
+ "description": "Быстрый обзор состояния выбранного объекта.",
+ "name": "Объект"
+ },
+ "gauge": {
+ "description": "Базовая карточка, которая позволяет отобразить данные сенсора в виде шкалы.",
+ "name": "Шкала",
+ "needle_gauge": "Отображать текущее значение стрелкой",
+ "severity": {
+ "define": "Задать оттенок для значений",
+ "green": "Зелёный",
+ "red": "Красный",
+ "yellow": "Желтый"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Соотношение сторон",
+ "attribute": "Атрибут",
+ "camera_image": "Объект Камеры",
+ "camera_view": "Вид Камеры",
+ "days_to_show": "Количество дней",
+ "double_tap_action": "При двойном нажатии",
+ "entities": "Объекты",
+ "entity": "Объект",
+ "hold_action": "При длительном нажатии",
+ "hours_to_show": "Количество часов",
+ "icon": "Иконка",
+ "icon_height": "Высота иконки",
+ "image": "Путь к изображению",
+ "manual": "Ручная настройка",
+ "manual_description": "Нужно добавить кастомную карточку или просто хотите написать YAML вручную?",
+ "maximum": "Максимум",
+ "minimum": "Минимум",
+ "name": "Название",
+ "no_theme": "Нет темы",
+ "refresh_interval": "Интервал обновления",
+ "search": "Поиск",
+ "secondary_info_attribute": "Дополнительная информация",
+ "show_icon": "Иконка",
+ "show_name": "Название",
+ "show_state": "Состояние",
+ "state": "Состояние",
+ "state_color": "Изменять цвет иконки в зависимости от состояния",
+ "tap_action": "При нажатии",
+ "theme": "Тема",
+ "title": "Название",
+ "unit": "Единица измерения",
+ "url": "URL-адрес"
+ },
+ "glance": {
+ "columns": "Столбцы",
+ "description": "Компактно группирует несколько объектов. Рекомендуется для сенсоров.",
+ "name": "Glance"
+ },
+ "grid": {
+ "columns": "Столбцы",
+ "description": "Позволяет отображать несколько карточек в виде сетки.",
+ "name": "Сетка",
+ "square": "Квадратные карточки"
+ },
+ "history-graph": {
+ "description": "Позволяет отображать графики для выбранных объектов.",
+ "name": "График истории"
+ },
+ "horizontal-stack": {
+ "description": "Позволяет сгруппировать несколько карточек так, чтобы они всегда находились рядом друг с другом в пределах одного столбца.",
+ "name": "Горизонтальный стек"
+ },
+ "humidifier": {
+ "description": "Позволяет контролировать увлажнитель воздуха, изменять влажность и режим работы.",
+ "name": "Увлажнитель"
+ },
+ "iframe": {
+ "description": "Позволяет встроить веб-страницу в интерфейс Home Assistant.",
+ "name": "Веб-страница"
+ },
+ "light": {
+ "description": "Позволяет контролировать источник света, изменять яркость.",
+ "name": "Освещение"
+ },
+ "logbook": {
+ "description": "Отображает список событий для объектов.",
+ "name": "Журнал событий"
+ },
+ "map": {
+ "dark_mode": "Тёмная тема",
+ "default_zoom": "Масштаб по умолчанию",
+ "description": "Позволяет отображать объекты на карте.",
+ "geo_location_sources": "Источники геолокации",
+ "hours_to_show": "Количество часов",
+ "name": "Карта",
+ "source": "Источник"
+ },
+ "markdown": {
+ "content": "Содержание",
+ "description": "Используется для визуализации разметки Markdown.",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "description": "Используется для отображения в интерфейсе медиаплеера с простыми в использовании элементами управления.",
+ "name": "Медиаплеер"
+ },
+ "picture-elements": {
+ "description": "Позволяет на основании координат позиционировать на изображении иконки, текст или службы. Один из самых универсальных типов карточек.",
+ "name": "Picture Elements"
+ },
+ "picture-entity": {
+ "description": "Объект отображается вместе с изображением. Можно использовать изображения из URL-адреса, либо изображение с камеры.",
+ "name": "Picture Entity"
+ },
+ "picture-glance": {
+ "description": "Показывает изображение и состояния объектов в виде иконок. Объекты в правой стороне позволяют выполнять действия, остальные объекты при нажатии отображают диалоговое окно с дополнительной информацией.",
+ "name": "Picture Glance",
+ "state_entity": "Объект, определяющий состояние изображения"
+ },
+ "picture": {
+ "description": "Позволяет установить изображение, которое будет использоваться для навигации по различным путям в Вашем интерфейсе или для вызова службы.",
+ "name": "Picture"
+ },
+ "plant-status": {
+ "description": "Полезный инструмент для ухода за растениями.",
+ "name": "Растение"
+ },
+ "sensor": {
+ "description": "Дает быстрый обзор состояния сенсоров. Дополнительно может отображать график для визуализации изменений во времени.",
+ "graph_type": "Тип графика",
+ "name": "Сенсор",
+ "show_more_detail": "Больше деталей на графике"
+ },
+ "shopping-list": {
+ "description": "Позволяет добавлять, редактировать, отмечать и удалять элементы в списке покупок.",
+ "integration_not_loaded": "Для работы этой карточки необходимо настроить интеграцию `shopping_list`.",
+ "name": "Список покупок"
+ },
+ "statistics-graph": {
+ "description": "Позволяет отображать график статистики для каждого из указанных объектов.",
+ "name": "График статистики",
+ "period": "Период",
+ "periods": {
+ "5minute": "5 минут",
+ "day": "День",
+ "hour": "Час",
+ "month": "Месяц"
+ }
+ },
+ "thermostat": {
+ "description": "Позволяет контролировать виртуальный термостат, изменять температуру и режим работы.",
+ "name": "Термостат"
+ },
+ "vertical-stack": {
+ "description": "Позволяет сгруппировать несколько карточек так, чтобы они всегда находились в одном столбце.",
+ "name": "Вертикальный стек"
+ },
+ "weather-forecast": {
+ "description": "Отображает погоду. Может быть полезна на устройствах, размещаемых на стене.",
+ "name": "Прогноз погоды",
+ "show_both": "Текущая погода и прогноз",
+ "show_forecast": "Показывать прогноз",
+ "show_only_current": "Только текущая погода",
+ "show_only_forecast": "Только прогноз"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Карточки",
+ "by_entity": "Объекты",
+ "custom_card": "Custom",
+ "domain": "Домен",
+ "entity": "Объект",
+ "no_description": "Описание недоступно."
+ },
+ "common": {
+ "add": "Добавить",
+ "clear": "Очистить",
+ "edit": "Изменить",
+ "none": "Не выбрано"
+ },
+ "edit_badges": {
+ "panel_mode": "В режиме панели значки на вкладке отображаться не будут.",
+ "view_no_badges": "Этот тип вкладки не поддерживает отображение значков."
+ },
+ "edit_card": {
+ "add": "Добавить карточку",
+ "clear": "Очистить",
+ "confirm_cancel": "Вы уверены, что хотите отменить?",
+ "delete": "Удалить",
+ "duplicate": "Дублировать",
+ "edit": "Изменить",
+ "header": "Настройка карточки",
+ "move": "Переместить",
+ "move_after": "Переместить карточку после",
+ "move_before": "Переместить карточку до",
+ "move_down": "Переместить карточку вниз",
+ "move_up": "Переместить карточку вверх",
+ "options": "Больше параметров",
+ "pick_card": "Какую карточку Вы хотели бы добавить?",
+ "pick_card_view_title": "Какую карточку Вы хотели бы добавить на вкладку {name}?",
+ "search_cards": "Поиск карточек",
+ "show_code_editor": "Текстовый редактор",
+ "show_visual_editor": "Форма ввода",
+ "toggle_editor": "Переключить редактор",
+ "typed_header": "Настройка карточки {type}",
+ "unsaved_changes": "У вас есть несохраненные изменения"
+ },
+ "edit_lovelace": {
+ "edit_title": "Изменить заголовок",
+ "explanation": "Этот заголовок будет показан над всеми Вашими карточками и вкладками.",
+ "header": "Заголовок для Lovelace",
+ "title": "Заголовок"
+ },
+ "edit_view": {
+ "add": "Добавить вкладку",
+ "delete": "Удалить вкладку",
+ "edit": "Изменить вкладку",
+ "header": "Настройки вкладки",
+ "header_name": "Настройки вкладки \"{name}\"",
+ "move_left": "Переместить вкладку влево",
+ "move_right": "Переместить вкладку вправо",
+ "tab_badges": "Значки",
+ "tab_settings": "Настройки",
+ "tab_visibility": "Видимость",
+ "type": "Тип вкладки",
+ "types": {
+ "masonry": "С автоматической раскладкой (по умолчанию)",
+ "panel": "Панель (одна карточка на весь экран)",
+ "sidebar": "С боковой панелью"
+ },
+ "visibility": {
+ "select_users": "Выберите, какие пользователи должны видеть эту вкладку"
+ }
+ },
+ "header": "Редактирование интерфейса",
+ "header-footer": {
+ "choose_header_footer": "Выберите {type}",
+ "footer": "Footer",
+ "header": "Header",
+ "types": {
+ "buttons": {
+ "name": "Кнопки"
+ },
+ "graph": {
+ "name": "График"
+ },
+ "picture": {
+ "name": "Изображение"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Управление панелями",
+ "manage_resources": "Управление ресурсами",
+ "open": "Открыть меню пользовательского интерфейса Lovelace",
+ "raw_editor": "Текстовый редактор"
+ },
+ "migrate": {
+ "header": "Конфигурация несовместима",
+ "migrate": "Перенести настройки",
+ "para_migrate": "Home Assistant может автоматически добавить ID для всех карточек и вкладок, если нажать кнопку 'Перенести настройки'.",
+ "para_no_id": "Этот элемент не имеет ID. Добавьте ID для этого элемента в 'ui-lovelace.yaml'."
+ },
+ "move_card": {
+ "header": "На какую вкладку нужно переместить карточку?"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Если Вы очистите конфигурацию этой панели Lovelace, карточки с Вашими устройствами и пространствами будут создаваться автоматически.",
+ "confirm_remove_config_title": "Вы уверены, что хотите очистить конфигурацию пользовательского интерфейса Lovelace?",
+ "confirm_unsaved_changes": "У вас есть несохраненные изменения. Вы уверены, что хотите выйти?",
+ "confirm_unsaved_comments": "Возможно, Ваша конфигурация содержит комментарии. Они не будут сохранены. Вы хотите продолжить?",
+ "error_invalid_config": "Конфигурация недействительна: {error}",
+ "error_parse_yaml": "Ошибка при разборе синтаксиса YAML: {error}",
+ "error_remove": "Не удалось удалить конфигурацию: {error}",
+ "error_save_yaml": "Не удалось сохранить YAML: {error}",
+ "header": "Редактирование конфигурации",
+ "lovelace_changed": "Конфигурация Lovelace была обновлена, Вы хотите загрузить в редактор обновленную конфигурацию? Внимание, текущие изменения будут потеряны!",
+ "reload": "Перезагрузить",
+ "resources_moved": "Ресурсы не должны более добавляться в конфигурацию Lovelace, но их можно добавить на панели конфигурации Lovelace.",
+ "save": "Сохранить",
+ "saved": "Сохранено",
+ "unsaved_changes": "Несохраненные изменения"
+ },
+ "save_config": {
+ "close": "Закрыть",
+ "empty_config": "Начать с нуля",
+ "header": "Получение контроля над пользовательским интерфейсом",
+ "para": "В настоящее время эту панель Lovelace обслуживает Home Assistant, автоматически добавляя новые объекты и новые компоненты, если они доступны. Если Вы получите контроль над этой панелью, Home Assistant не сможет изменять её автоматически. Вы всегда сможете вернуть контроль Home Assistant, очистив конфигурацию этой панели, либо создав новую панель.",
+ "para_sure": "Вы уверены, что хотите самостоятельно контролировать пользовательский интерфейс?",
+ "save": "Получить контроль",
+ "yaml_config": "Вы можете использовать текущую конфигурацию этой панели как основу для редактирования:",
+ "yaml_control": "Чтобы получить контроль в режиме YAML, создайте файл с именем, указанным в настройках этой панели (по умолчанию 'ui-lovelace.yaml').",
+ "yaml_mode": "Эта панель Lovelace используется в режиме YAML. В этом режиме невозможно использовать визуальный редактор интерфейса. Если Вы всё же хотите редактировать конфигурацию этой панели из пользовательского интерфейса, удалите строку 'mode: yaml' из раздела Lovelace в файле configuration.yaml."
+ },
+ "select_view": {
+ "dashboard_label": "Панель",
+ "header": "Выберите вкладку",
+ "views_label": "Вкладка"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Footer",
+ "header": "Header",
+ "row": "Редактор строки"
+ }
+ },
+ "suggest_card": {
+ "add": "Подтвердить",
+ "create_own": "Изменить",
+ "header": "Вариант отображения в пользовательском интерфейсе"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "На этой вкладке несколько карточек. В режиме панели может отображаться только одна карточка."
+ }
+ }
+ },
+ "menu": {
+ "close": "Закрыть",
+ "configure_ui": "Изменить панель",
+ "exit_edit_mode": "Готово",
+ "help": "Справка",
+ "reload_resources": "Перезагрузить ресурсы",
+ "start_conversation": "Начать диалог"
+ },
+ "reload_lovelace": "Перезагрузить пользовательский интерфейс",
+ "reload_resources": {
+ "refresh_body": "Для завершения перезагрузки нужно обновить страницу. Обновить сейчас?",
+ "refresh_header": "Обновить страницу?"
+ },
+ "unused_entities": {
+ "available_entities": "Здесь представлен список объектов, которые не используются в Вашем пользовательском интерфейсе Lovelace.",
+ "domain": "Домен",
+ "entity": "Объект",
+ "entity_id": "ID объекта",
+ "last_changed": "Последнее изменение",
+ "no_data": "Неиспользуемые объекты не найдены",
+ "search": "Поиск объектов",
+ "select_to_add": "Выберите объекты, которые Вы хотели бы использовать в интерфейсе, затем нажмите кнопку Добавить.",
+ "title": "Неиспользуемые объекты"
+ },
+ "views": {
+ "confirm_delete": "Удалить эту вкладку?",
+ "confirm_delete_existing_cards": "Удалить вкладку и находящиеся в ней карточки?",
+ "confirm_delete_existing_cards_text": "Вы уверены, что хотите удалить вкладку \"{name}\"? Эта вкладка содержит {number} {number, plural,\n one {карточку, которая также будет удалена}\n few {карточки, которые также будут удалены}\n many {карточек, которые также будут удалены}\n other {карточек, которые также будут удалены}\n}. Удаление отменить будет невозможно.",
+ "confirm_delete_text": "Вы уверены, что хотите удалить вкладку \"{name}\"?"
+ },
+ "warning": {
+ "attribute_not_found": "Атрибут {attribute} недоступен в {entity}",
+ "entity_non_numeric": "Объект не является числом: {entity}",
+ "entity_not_found": "Объект {entity} недоступен.",
+ "entity_unavailable": "Объект \"{entity}\" сейчас недоступен",
+ "starting": "Home Assistant запускается…"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Удалить",
+ "delete_prompt": "Удалить это сообщение?",
+ "empty": "У вас нет сообщений",
+ "playback_title": "Воспроизвести сообщение"
+ },
+ "map": {
+ "edit_zones": "Редактировать зоны"
+ },
+ "my": {
+ "component_not_loaded": "Это перенаправление не поддерживается Вашим Home Assistant. Настройте интеграцию \"{integration}\" для использования этого перенаправления.",
+ "documentation": "документацией",
+ "error": "Произошла неизвестная ошибка",
+ "faq_link": "часто задаваемыми вопросами по My Home Assistant",
+ "no_supervisor": "Это перенаправление не поддерживается Вашим Home Assistant. Оно предназначено только для Home Assistant OS или Home Assistant Supervised. Для получения дополнительной информации ознакомьтесь с {docs_link}.",
+ "not_supported": "Это перенаправление не поддерживается Вашим Home Assistant. Ознакомьтесь с {link}, чтобы узнать поддерживаемые перенаправления и версии, в которых они были добавлены."
+ },
+ "page-authorize": {
+ "abort_intro": "Вход прерван",
+ "authorizing_client": "Получение доступа к {clientId}.",
+ "form": {
+ "error": "Ошибка: {error}",
+ "next": "Войти",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Время сеанса истекло, пожалуйста войдите в систему снова."
+ },
+ "error": {
+ "invalid_auth": "Неверное имя пользователя или пароль",
+ "invalid_code": "Неверный код аутентификации"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Пароль",
+ "username": "Имя пользователя"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Код двухфакторной аутентификации"
+ },
+ "description": "Введите код двухфакторной аутентификации, полученный от **{mfa_module_name}**:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Время сеанса истекло, пожалуйста войдите в систему снова."
+ },
+ "error": {
+ "invalid_auth": "Неверное имя пользователя или пароль",
+ "invalid_code": "Неверный код аутентификации"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Пароль",
+ "username": "Имя пользователя"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Код двухфакторной аутентификации"
+ },
+ "description": "Введите код двухфакторной аутентификации, полученный от **{mfa_module_name}**:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Время сеанса истекло, пожалуйста войдите в систему снова.",
+ "no_api_password_set": "Вы не настроили пароль для API."
+ },
+ "error": {
+ "invalid_auth": "Неверный пароль API",
+ "invalid_code": "Неверный код аутентификации"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Пароль API"
+ },
+ "description": "Пожалуйста, введите пароль API, указанный в Вашей конфигурации http:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Код двухфакторной аутентификации"
+ },
+ "description": "Введите код двухфакторной аутентификации, полученный от **{mfa_module_name}**:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Доступ с этого устройства запрещён"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Пользователь"
+ },
+ "description": "Пожалуйста, выберите пользователя для авторизации:"
+ }
+ }
+ }
+ },
+ "start_over": "Начать сначала",
+ "unknown_error": "Что-то пошло не так",
+ "working": "Пожалуйста, подождите"
+ },
+ "initializing": "Инициализация",
+ "logging_in_to_with": "Вход в **{locationName}** с помощью **{authProviderName}**.",
+ "logging_in_with": "Провайдер аутентификации: **{authProviderName}**.",
+ "pick_auth_provider": "Или войти с помощью",
+ "store_token": "Запомнить"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "автор: {name}",
+ "introduction": "Добро пожаловать! Здесь Вы можете увидеть лучшие пользовательские интерфейсы, созданные нашим сообществом.",
+ "learn_more": "Узнайте больше о Home Assistant",
+ "next_demo": "Далее"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Процесс",
+ "air": "Воздух",
+ "commute_home": "Поездка домой",
+ "entertainment": "Развлечения",
+ "hdmi_input": "Вход HDMI",
+ "hdmi_switcher": "Переключатель HDMI",
+ "information": "Информация",
+ "lights": "Освещение",
+ "morning_commute": "Утренняя поездка",
+ "total_tv_time": "Общее время ТВ",
+ "turn_tv_off": "Выключить телевизор",
+ "volume": "Громкость"
+ },
+ "names": {
+ "family_room": "Гостиная",
+ "hallway": "Прихожая",
+ "kitchen": "Кухня",
+ "left": "Левая сторона",
+ "master_bedroom": "Спальная",
+ "mirror": "Зеркало",
+ "patio": "Внутренний дворик",
+ "right": "Правая сторона",
+ "temperature_study": "Температура в кабинете",
+ "upstairs": "Второй этаж"
+ },
+ "unit": {
+ "minutes_abbr": "мин.",
+ "watching": "наблюдение"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "analytics": {
+ "finish": "Далее"
+ },
+ "core-config": {
+ "button_detect": "Заполнить",
+ "finish": "Далее",
+ "intro": "Добро пожаловать, {name}! Как Вы хотите назвать свой Home Assistant?",
+ "intro_location": "Мы хотели бы знать, где Вы живете. Это поможет нам правильно отображать информацию и позволит Вам настраивать автоматизацию на основе данных о рассвете и закате. Эти данные никогда не будут переданы за пределы Вашей локальной сети.",
+ "intro_location_detect": "Мы можем помочь Вам заполнить эту информацию, сделав однократный запрос во внешнюю службу.",
+ "location_name": "Название для Вашего Home Assistant",
+ "location_name_default": "Home Assistant"
+ },
+ "finish": "Готово",
+ "integration": {
+ "finish": "Готово",
+ "intro": "Устройства и службы представлены в Home Assistant как интеграции. Вы можете добавить их сейчас или сделать это позже в разделе настроек.",
+ "more_integrations": "Ещё"
+ },
+ "intro": "Готовы ли Вы разбудить свой дом, вернуть свою конфиденциальность и присоединиться к всемирному сообществу?",
+ "next": "Далее",
+ "restore": {
+ "addons": "Дополнения",
+ "confirm_password": "Подтверждение пароля",
+ "description": "Восстановить систему из резервной копии",
+ "folders": "Папки",
+ "full_backup": "Полная резервная копия",
+ "hide_log": "Скрыть журнал",
+ "in_progress": "Восстановление системы",
+ "partial_backup": "Частичная резервная копия",
+ "password": "Пароль",
+ "password_protection": "Защитить паролем",
+ "select_type": "Выберите что нужно восстановить:",
+ "show_log": "Показать журнал",
+ "type": "Тип резервной копии:",
+ "upload_backup": "Загрузить резервную копию на сервер"
+ },
+ "user": {
+ "create_account": "Создать учётную запись",
+ "data": {
+ "name": "Имя",
+ "password": "Пароль",
+ "password_confirm": "Подтвердите пароль",
+ "username": "Имя пользователя"
+ },
+ "error": {
+ "password_not_match": "Пароли не совпадают",
+ "required_fields": "Заполните все обязательные поля"
+ },
+ "intro": "Давайте начнём с создания учётной записи пользователя.",
+ "required_field": "Обязательное поле"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Разблокирует дополнительные возможности для настройки.",
+ "link_promo": "Узнать больше",
+ "title": "Расширенный режим"
+ },
+ "change_password": {
+ "confirm_new_password": "Подтвердите новый пароль",
+ "current_password": "Текущий пароль",
+ "error_new_is_old": "Новый пароль должен отличаться от текущего",
+ "error_new_mismatch": "Введенный новый пароль не совпадает",
+ "error_required": "Обязательное поле",
+ "header": "Изменить пароль",
+ "new_password": "Новый пароль",
+ "submit": "Подтвердить",
+ "success": "Пароль успешно изменён"
+ },
+ "current_user": "Добро пожаловать, {fullName}! Вы вошли в систему.",
+ "customize_sidebar": {
+ "button": "Изменить",
+ "description": "Режим редактирования можно включить, нажав и удерживая заголовок боковой панели",
+ "header": "Изменить элементы боковой панели"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Обзор (по умолчанию)",
+ "description": "Панель, используемая по умолчанию для этого устройства",
+ "dropdown_label": "Панель",
+ "header": "Панель Lovelace UI"
+ },
+ "enable_shortcuts": {
+ "description": "Сочетания клавиш для выполнения различных действий в пользовательском интерфейсе.",
+ "header": "Горячие клавиши"
+ },
+ "force_narrow": {
+ "description": "Боковая панель будет скрыта, аналогично мобильному интерфейсу",
+ "header": "Скрывать боковую панель"
+ },
+ "is_owner": "Вы являетесь владельцем.",
+ "language": {
+ "dropdown_label": "Язык",
+ "header": "Язык",
+ "link_promo": "Помочь в переводе"
+ },
+ "logout": "Выйти",
+ "logout_text": "Вы уверены, что хотите выйти из системы?",
+ "logout_title": "Выйти из системы?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Вы уверены, что хотите удалить токен доступа для {name}?",
+ "create": "Создать токен",
+ "create_failed": "Не удалось создать токен доступа.",
+ "created": "Создан {date}",
+ "delete_failed": "Не удалось удалить токен доступа.",
+ "description": "Создайте долгосрочные токены доступа, чтобы Ваши скрипты могли взаимодействовать с Home Assistant. Каждый токен будет действителен в течение 10 лет с момента создания. Ниже Вы можете просмотреть долгосрочные токены доступа, которые в настоящее время активны.",
+ "empty_state": "У Вас еще нет долгосрочных токенов доступа.",
+ "header": "Долгосрочные токены доступа",
+ "learn_auth_requests": "Узнайте, как выполнять аутентифицированные запросы.",
+ "name": "Название",
+ "prompt_copy_token": "Скопируйте Ваш токен доступа. Он больше не будет показан.",
+ "prompt_name": "Название токена"
+ },
+ "mfa": {
+ "confirm_disable": "Вы уверены, что хотите отключить {name}?",
+ "disable": "Отключить",
+ "enable": "Включить",
+ "header": "Модули многофакторной аутентификации"
+ },
+ "mfa_setup": {
+ "close": "Закрыть",
+ "step_done": "Настройка выполнена для {step}",
+ "submit": "Подтвердить",
+ "title_aborted": "Отменено",
+ "title_success": "Выполнено успешно!"
+ },
+ "number_format": {
+ "description": "Отображение чисел в пользовательском интерфейсе",
+ "dropdown_label": "Формат чисел",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Автоматически (определять из настроек языка)",
+ "none": "Не выбрано",
+ "space_comma": "1 234 567,89",
+ "system": "Использовать локализацию системы"
+ },
+ "header": "Формат чисел"
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Название устройства",
+ "title": "Как следует называть это устройство?"
+ },
+ "description": "Отправлять уведомления на это устройство",
+ "error_load_platform": "Настроить notify.html5.",
+ "error_use_https": "Требуется SSL для веб-интерфейса.",
+ "header": "Push-уведомления",
+ "link_promo": "Узнать больше",
+ "push_notifications": "Push-уведомления"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Вы уверены, что хотите удалить токен обновления для {name}?",
+ "created_at": "Создан {date}",
+ "current_token_tooltip": "Не удалось удалить текущий токен обновления",
+ "delete_failed": "Не удалось удалить токен обновления.",
+ "description": "Каждый токен обновления означает выполненный вход в систему. Токен обновления текущего сеанса пользователя будет автоматически удалён при нажатии кнопки выхода из системы. Ниже Вы можете просмотреть токены обновления, которые в настоящее время активны для Вашей учётной записи.",
+ "header": "Токены обновления",
+ "last_used": "Последнее использование {date} из {location}",
+ "not_used": "Никогда не использовался",
+ "token_title": "Токен обновления для {clientId}"
+ },
+ "suspend": {
+ "description": "Закрыть соединение с сервером, если окно было скрыто в течении пяти и более минут",
+ "header": "Закрывать соединение автоматически"
+ },
+ "themes": {
+ "accent_color": "Цвет акцента",
+ "dark_mode": {
+ "auto": "Авто",
+ "dark": "Тёмная",
+ "light": "Светлая"
+ },
+ "dropdown_label": "Тема",
+ "error_no_theme": "Нет доступных тем.",
+ "header": "Тема",
+ "link_promo": "Узнать о темах",
+ "primary_color": "Основной цвет",
+ "reset": "Сбросить"
+ },
+ "time_format": {
+ "description": "Отображение времени в пользовательском интерфейсе",
+ "dropdown_label": "Формат времени",
+ "formats": {
+ "12": "12-часовой (AM/PM)",
+ "24": "24-часовой",
+ "language": "Автоматически (определять из настроек языка)",
+ "system": "Использовать локализацию системы"
+ },
+ "header": "Формат времени"
+ },
+ "vibrate": {
+ "description": "Получать тактильный отклик при управлении устройствами",
+ "header": "Вибрация"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Начать диалог"
+ }
+ },
+ "sidebar": {
+ "done": "Готово",
+ "external_app_configuration": "Настройки приложения",
+ "hide_panel": "Скрыть панель",
+ "show_panel": "Показать панель",
+ "sidebar_toggle": "Переключатель в боковой панели"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/sk.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/sk.json
new file mode 100644
index 00000000..105a114b
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/sk.json
@@ -0,0 +1,3954 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Položka konfigurácie",
+ "device": "Zariadenie",
+ "integration": "integrácia",
+ "user": "Používateľ"
+ }
+ },
+ "groups": {
+ "owner": "Vlastník",
+ "system-admin": "Správcovia",
+ "system-read-only": "Používatelia len na čítanie",
+ "system-users": "Používatelia"
+ },
+ "panel": {
+ "calendar": "Kalendár",
+ "config": "Nastavenia",
+ "developer_tools": "Vývojárske nástroje",
+ "energy": "Energia",
+ "history": "História",
+ "logbook": "Denník",
+ "mailbox": "Poštová schránka",
+ "map": "Mapa",
+ "media_browser": "Prehliadač médií",
+ "profile": "Profil",
+ "shopping_list": "Nákupný zoznam",
+ "states": "Prehľad"
+ },
+ "state": {
+ "default": {
+ "off": "Vypnutý",
+ "on": "Zapnutý",
+ "unavailable": "Nedostupný",
+ "unknown": "Neznámy"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Automatika",
+ "off": "Neaktívny",
+ "on": "Aktívny"
+ },
+ "hvac_action": {
+ "cooling": "Chladenie",
+ "drying": "Sušenie",
+ "fan": "Ventilátor",
+ "heating": "Kúrenie",
+ "idle": "Nečinný",
+ "off": "Vypnutý"
+ },
+ "preset_mode": {
+ "activity": "Aktívny",
+ "away": "Preč",
+ "boost": "Turbo",
+ "comfort": "Komfort",
+ "eco": "Eko",
+ "home": "Doma",
+ "none": "Žiadna",
+ "sleep": "Spánok"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Auto",
+ "away": "Preč",
+ "comfort": "Komfort",
+ "eco": "Útlm"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Zakód",
+ "armed_away": "Zakód",
+ "armed_custom_bypass": "Zakód",
+ "armed_home": "Zakód",
+ "armed_night": "Zakód",
+ "armed_vacation": "Pripravený",
+ "arming": "Aktivácia",
+ "disarmed": "Odkód",
+ "disarming": "Deakt",
+ "pending": "Čaká",
+ "triggered": "Alarm"
+ },
+ "default": {
+ "entity_not_found": "Entita nebola nájdená",
+ "error": "Chyba",
+ "unavailable": "Nedost",
+ "unknown": "Nezn"
+ },
+ "device_tracker": {
+ "home": "Doma",
+ "not_home": "Preč"
+ },
+ "person": {
+ "home": "Doma",
+ "not_home": "Preč"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Predvolený",
+ "header": "Audio",
+ "input": "Vstup",
+ "output": "Výstup"
+ },
+ "network": {
+ "container": "Kontajner",
+ "disabled": "Vypnuté",
+ "header": "Sieť",
+ "host": "hostiteľ"
+ },
+ "no_configuration": "Tento doplnok nemá konfiguráciu, ktorú môžete upraviť…",
+ "options": {
+ "edit_in_ui": "Upraviť v UI",
+ "edit_in_yaml": "Upraviť v YAML",
+ "header": "Možnosti",
+ "invalid_yaml": "Neplatný YAML",
+ "show_unused_optional": "Zobraziť nepoužité voliteľné možnosti konfigurácie"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Nepodarilo sa získať zoznam zmien doplnku",
+ "go_to_config": "Spustenie doplnku zlyhalo - overenie konfigurácie zlyhalo!",
+ "install": "Inštalácia doplnku zlyhala",
+ "restart": "Reštart doplnku zlyhal",
+ "start": "Spustenie doplnku zlyhalo",
+ "start_invalid_config": "Prejsť na konfiguráciu",
+ "stop": "Zastavenie doplnku zlyhalo",
+ "uninstall": "Odinštalácia doplnku zlyhala",
+ "validate_config": "Nepodarilo sa overiť konfiguráciu doplnku"
+ },
+ "capability": {
+ "apparmor": {
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "Doplnok môže používateľov autentifikovať pomocou aplikácie Home Assistant, ktorá doplnkom umožňuje používateľom prihlásiť sa do aplikácií bežiacich v doplnkoch pomocou používateľského mena a hesla Home Assistant. Tento odznak označuje, či autor doplnku požaduje túto funkciu.",
+ "title": "Home assistant Overenie"
+ },
+ "docker_api": {
+ "title": "Plný prístup Dockera"
+ },
+ "host_network": {
+ "title": "Hostiteľská sieť"
+ },
+ "ingress": {
+ "description": "Tento doplnok používa vniknutie na bezpečné vloženie svojho rozhrania do Home Assistant.",
+ "title": "Vniknutie"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "auth",
+ "core": "Jadro",
+ "docker": "docker",
+ "hardware": "hardvér",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "hostiteľ",
+ "host_pid": "pid hostiteľa",
+ "ingress": "vniknutie",
+ "rating": "hodnotenie",
+ "stage": "etapa"
+ },
+ "rating": {
+ "title": "Hodnotenie bezpečnosti doplnku"
+ },
+ "role": {
+ "admin": "admin",
+ "backup": "záloha",
+ "default": "predvolené",
+ "homeassistant": "homeassistant",
+ "manager": "správca"
+ },
+ "stages": {
+ "experimental": "Experimentálne"
+ }
+ },
+ "changelog": "Zoznam zmien",
+ "cpu_usage": "Využitie CPU doplnkom",
+ "hostname": "Meno hostiteľa",
+ "install": "nainštalovať",
+ "new_update_available": "{name} {version} je dostupná",
+ "not_available_arch": "Tento doplnok nie je kompatibilný s procesorom vášho zariadenia alebo operačným systémom, ktorý máte nainštalovaný na svojom zariadení.",
+ "not_available_version": "Používate službu Home Assistant {core_version_installed} , na aktualizáciu na túto verziu doplnku potrebujete minimálne verziu {core_version_needed} aplikácie Home Assistant",
+ "open_web_ui": "Otvoriť web UI",
+ "option": {
+ "auto_update": {
+ "description": "Automaticky aktualizovať doplnok, keď je k dispozícii nová verzia",
+ "title": "Automatická aktualizácia"
+ },
+ "boot": {
+ "description": "Spustenie doplnku spolu so systémom",
+ "title": "Spustiť pri štarte systému"
+ },
+ "ingress_panel": {
+ "description": "Pridajte tento doplnok na svoj bočný panel",
+ "title": "Zobraziť v bočnom paneli"
+ },
+ "protected": {
+ "title": "Chránený režim"
+ },
+ "watchdog": {
+ "description": "Toto spustí doplnok ak zlyhá",
+ "title": "Watchdog"
+ }
+ },
+ "protection_mode": {
+ "title": "Varovanie: Chraný režim vypnutý!"
+ },
+ "ram_usage": "Využitie RAM doplnkom",
+ "rebuild": "Prestavať",
+ "restart": "reštartovať",
+ "start": "Spustiť",
+ "stop": "zastaviť",
+ "uninstall": "odinštalovať",
+ "visit_addon_page": "Ďalšie podrobnosti nájdete na stránke {name}"
+ },
+ "documentation": {
+ "get_documentation": "Nepodarilo sa získať dokumentáciu k doplnku, {error}"
+ },
+ "failed_to_reset": "Obnovenie konfigurácie doplnku zlyhalo, {error}",
+ "failed_to_save": "Uloženie konfigurácie doplnku zlyhalo, {error}",
+ "logs": {
+ "get_logs": "Nepodarili sa získať protokoly doplnku, {error}"
+ },
+ "panel": {
+ "configuration": "Konfigurácia",
+ "documentation": "Dokumentácia",
+ "info": "Info",
+ "log": "Log"
+ },
+ "state": {
+ "installed": "Doplnok je nainštalovaný",
+ "not_available": "Doplnok nie je pre váš systém k dispozícii",
+ "not_installed": "Doplnok nie je nainštalovaný"
+ }
+ },
+ "backup": {
+ "addons": "Doplnky",
+ "confirm_password": "Potvrdiť heslo zálohy",
+ "could_not_create": "Nepodarilo sa vytvoriť zálohu",
+ "create": "Vytvoriť",
+ "create_backup": "Vytvoriť zálohu",
+ "create_blocked_not_running": "Nieje možné vytvoriť zálohu pretože systém je v stave {state}",
+ "created": "Vytvorené",
+ "delete_backup_confirm": "odstrániť",
+ "delete_backup_text": "Chcete vymazať {number} {number, plural,\n one {zálohu}\n other {zálohy}\n}?",
+ "delete_backup_title": "Odstrániť zálohu",
+ "delete_selected": "Odstrániť vybrané zálohy",
+ "enter_password": "Prosím napíšte heslo.",
+ "failed_to_delete": "Nepodarilo sa odstrániť",
+ "folders": "Priečinky",
+ "full_backup": "Úplná záloha",
+ "name": "Názov zálohy",
+ "no_backups": "Zatiaľ nemáte žiadne zálohy.",
+ "partial_backup": "Čiastočná záloha",
+ "password": "Heslo",
+ "password_protection": "Ochrana Heslom",
+ "passwords_not_matching": "Heslá sa nezhodujú",
+ "type": "Typ zálohy",
+ "upload_backup": "Nahrať zálohu"
+ },
+ "common": {
+ "cancel": "Zrušiť",
+ "close": "Zavrieť",
+ "description": "Popis",
+ "error": {
+ "unknown": "Neznáma chyba",
+ "update_failed": "Aktualizácia zlyhala"
+ },
+ "failed_to_restart_name": "Reštartovanie aplikácie {name} zlyhalo",
+ "failed_to_update_name": "Aktualizácia {name} zlyhala",
+ "learn_more": "Zistiť viac",
+ "new_version_available": "K dispozícii je nová verzia",
+ "newest_version": "Najnovšia verzia",
+ "no": "Nie",
+ "refresh": "Obnoviť",
+ "release_notes": "Poznámky k vydaniu",
+ "reload": "Znova načítať",
+ "reset_defaults": "Obnoviť predvolené nastavenia",
+ "reset_options": "Obnoviť nastavenia",
+ "restart": "Reštartovať",
+ "restart_name": "Reštartovať {name}",
+ "running_version": "Momentálne používate verziu {version}",
+ "save": "Uložiť",
+ "show": "zobraziť",
+ "show_more": "Zobraziť viac informácií o tomto",
+ "update": "Aktualizovať",
+ "version": "Verzia",
+ "yes": "Áno"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Naozaj chcete resetovať všetky svoje nastavenia?",
+ "title": "Obnoviť nastavenia"
+ },
+ "restart": {
+ "text": "Naozaj chcete reštartovať {name} ?",
+ "title": "Reštartovať {name}"
+ },
+ "update": {
+ "text": "Naozaj chcete aktualizovať {name} na verziu {version} ?",
+ "title": "Aktualizovať {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "K dispozícii je nová verzia",
+ "addon_running": "Doplnok je spustený",
+ "addon_stopped": "Doplnok je zastavený",
+ "addons": "Nainštalované doplnky",
+ "no_addons": "Zatiaľ nemáte nainštalované žiadne doplnky. Choďte do obchodu s doplnkami, aby ste mohli začať!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Zrušiť",
+ "description": "Aktuálne používate \"{current_path}\" ako datadisk. Presunutím datadiskov sa zariadenie reštartuje a odhaduje sa, že to bude trvať {time} minút. Počas tohto procesu nebude vaša inštalácia Home Assistant dostupná. Počas tohto procesu neodpájajte napájanie!",
+ "loading_devices": "Načítavam zariadenia",
+ "move": "Presunúť",
+ "moving": "Presúva sa datadisk",
+ "moving_desc": "Reštartovanie a presun datadisku. Prosím čakajte",
+ "no_devices": "Nenašli sa žiadne zodpovedajúce zariadenia",
+ "select_device": "Vyberte nový datadisk",
+ "title": "Presunúť datadisk"
+ },
+ "hardware": {
+ "attributes": "Atribúty",
+ "device_path": "Cesta k zariadeniu",
+ "id": "ID",
+ "search": "Vyhľadať zariadenia",
+ "subsystem": "Subsystém",
+ "title": "Hardvér"
+ },
+ "network": {
+ "connected_to": "Pripojiť na {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Vypnuté",
+ "dns_servers": "DNS Servery",
+ "failed_to_change": "Nepodarilo sa zmeniť sieťové nastavenia",
+ "gateway": "Adresa brány",
+ "ip_netmask": "IP adresa/maska",
+ "open": "Otvorené",
+ "scan_ap": "Skenovať prístupové body",
+ "static": "Statické",
+ "title": "Sieťové nastavenia",
+ "unsaved": "Máte neuložené zmeny, tieto zmeny sa stratia, chcete pokračovať?",
+ "warning": "Ak zmeníte nastavenie Wi-Fi, adresy IP alebo bránu, stratíte pripojenie!",
+ "wep": "WEP",
+ "wpa": "wpa-psk"
+ },
+ "registries": {
+ "add_new_registry": "Pridať nový register",
+ "add_registry": "Pridať register",
+ "failed_to_add": "Nepodarilo sa pridať register",
+ "failed_to_remove": "Nepodarilo sa vytvoriť register",
+ "no_registries": "Žiadne nakonfigurované registre",
+ "password": "Heslo",
+ "registry": "Register",
+ "remove": "Odstrániť",
+ "title_add": "Pridať nový kontajnerový register",
+ "title_manage": "Spravovať kontajnerové registre",
+ "username": "Užívateľské meno"
+ },
+ "repositories": {
+ "add": "Pridať",
+ "remove": "Odstrániť",
+ "title": "Spravovať repozitáre doplnkov"
+ },
+ "restart_addon": {
+ "confirm_text": "Reštartovať doplnok",
+ "text": "Skutočne chcete reštartovať doplnok so zmenami?"
+ },
+ "update": {
+ "backup": "Záloha",
+ "create_backup": "Vytvoriť zálohu {name} pred aktualizáciou",
+ "creating_backup": "Vytváram zálohu {name}",
+ "updating": "Aktualizácia {name} na verziu {version}"
+ }
+ },
+ "my": {
+ "error": "Vyskytla sa neznáma chyba",
+ "error_addon_not_found": "Doplnok sa nenašiel",
+ "faq_link": "Najčastejšie otázky a odpovede o Home Assistant",
+ "not_supported": "Vaša inštancia Home Assistant toto presmerovanie nepodporuje. Na stránke {link} nájdete podporované presmerovania a verziu."
+ },
+ "panel": {
+ "addons": "Doplnky",
+ "backups": "Zálohy",
+ "dashboard": "Dashboard",
+ "store": "Obchod s doplnkami",
+ "system": "Systém"
+ },
+ "store": {
+ "missing_addons": "Chýbajú doplnky? Povoľte rozšírený režim na stránke profilu.",
+ "no_results_found": "V {repository} sa nenašli žiadne výsledky.",
+ "registries": "Registre",
+ "repositories": "Repozitáre"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Využitie jadra CPU",
+ "ram_usage": "Využitie jadra RAM"
+ },
+ "host": {
+ "change": "Zmeniť",
+ "change_hostname": "Zmeniť meno hostiteľa",
+ "confirm_reboot": "Naozaj chcete reštartovať hostiteľa?",
+ "confirm_shutdown": "Naozaj chcete vypnúť hostiteľa?",
+ "deployment": "Nasadenie",
+ "docker_version": "Verzia Dockera",
+ "emmc_lifetime_used": "Použitá životnosť eMMC",
+ "failed_to_get_hardware_list": "Nepodarilo sa získať zoznam hardvéru",
+ "failed_to_import_from_usb": "Nepodarilo sa importovať z USB",
+ "failed_to_move": "Nepodarilo presunúť datadisk",
+ "failed_to_reboot": "Nepodarilo sa reštartovať hostiteľa",
+ "failed_to_set_hostname": "Nastavenie mena hostiteľa zlyhalo",
+ "failed_to_shutdown": "Nepodarilo sa vypnúť hostiteľa",
+ "hardware": "Hardvér",
+ "hostname": "Meno hostiteľa",
+ "import_from_usb": "Importovať z USB",
+ "ip_address": "IP adresa",
+ "move_datadisk": "Presunúť datadisk",
+ "new_hostname": "Prosím napíšte nové meno hostiteľa",
+ "operating_system": "Operačný systém",
+ "reboot_host": "Reštartovať hostiteľa",
+ "shutdown_host": "Vypnúť hostiteľa",
+ "used_space": "Použité miesto"
+ },
+ "log": {
+ "get_logs": "Nepodarilo sa získať protokoly {provider}, {error}",
+ "log_provider": "Protokol poskytovateľa"
+ },
+ "supervisor": {
+ "beta_backup": "Pred aktiváciou tejto funkcie si nezabudnite zálohovať svoje dáta.",
+ "beta_join_confirm": "Chcete sa pripojiť k beta programu?",
+ "beta_release_items": "Zahŕňa to verzie beta pre:",
+ "beta_warning": "Verzie Beta sú určené pre testerov a môžu obsahovať nestabilné zmeny kódu",
+ "channel": "Kanál",
+ "cpu_usage": "Využitie CPU supervízorom",
+ "failed_to_reload": "Nepodarilo sa znova načítať Supervízora",
+ "failed_to_set_option": "Nepodarilo sa nastaviť možnosť supervízora",
+ "failed_to_update": "Nepodarilo sa aktualizovať Supervízora",
+ "join_beta_action": "Pripojiť sa k beta programu?",
+ "join_beta_description": "Získanie beta aktualizácií pre Home Assistant (RCs), Supervízora a hostiteľa",
+ "leave_beta_action": "Opustiť program beta",
+ "leave_beta_description": "Získajte aktualizácie stabilnej verzie pre Home Assistant, supervízora a hostiteľa",
+ "ram_usage": "Využitie RAM supervízorom",
+ "reload_supervisor": "Znova načítať supervízora",
+ "search": "Hľadať",
+ "share_diagnostics": "Zdieľajte diagnostiku",
+ "share_diagnostics_description": "Zdieľajte správy o zlyhaní a diagnostické informácie.",
+ "share_diagonstics_description": "Chceli by ste automaticky zdieľať správy o zlyhaní a diagnostické informácie, keď sa Supervízor stretne s neočakávanými chybami? {line_break} Umožní nám to vyriešiť problémy, informácie sú prístupné iba tímu Home Assistant Core a nebudú sa zdieľať s ostatnými. {line_break} Údaje neobsahujú žiadne súkromné ani citlivé informácie, ktoré môžete kedykoľvek deaktivovať v nastaveniach.",
+ "share_diagonstics_title": "Pomôžte vylepšiť Home Assistant",
+ "unhealthy_description": "Spustenie nezdravej inštalácie spôsobí problémy. Nižšie je uvedený zoznam problémov zistených pri inštalácii. Kliknutím na odkazy sa dozviete, ako ich vyriešiť.",
+ "unhealthy_reason": {
+ "docker": "Prostredie Docker nefunguje správne",
+ "privileged": "Supervízor nie je privilegovaný",
+ "setup": "Nastavenie supervízora zlyhalo",
+ "supervisor": "Supervízor sa nemohol aktualizovať"
+ },
+ "unhealthy_title": "Vaša inštalácia nieje bezpečná",
+ "unsupported_description": "Nižšie je uvedený zoznam problémov zistených pri inštalácii. Kliknutím na odkazy sa dozviete, ako ich vyriešiť.",
+ "unsupported_reason": {
+ "container": "Kontajnery, o ktorých je známe, že spôsobujú problémy",
+ "content_trust": "Overovanie dôveryhodnosti obsahu je vypnuté",
+ "dbus": "DBUS",
+ "docker_configuration": "Konfigurácia Dockera",
+ "docker_version": "Verzia Dockera",
+ "job_conditions": "Ignorované pracovné podmienky",
+ "lxc": "LXC",
+ "network_manager": "Správca siete",
+ "os": "Operačný systém",
+ "os_agent": "Agent operačného systému",
+ "privileged": "Supervízor nie je privilegovaný",
+ "source_mods": "Úpravy zdroja",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Používate nepodporovanú inštaláciu",
+ "update_supervisor": "Aktualizovať supervízora",
+ "warning": "VAROVANIE"
+ }
+ },
+ "update_available": {
+ "core_note": "Ak sa vaša inštancia po aktualizácii nespustí, supervízor sa vráti na verziu {version}.",
+ "creating_backup": "Vytváram zálohu {name}",
+ "description": "Máte nainštalovanú {version} Kliknutím na tlačidlo aktualizovať aktualizujte na verziu {newest_version}",
+ "updating": "Aktualizácia {name} na verziu {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Chcete tieto prihlasovacie údaje uložiť?",
+ "confirm": "Áno",
+ "decline": "Nie"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Zakódovať odchod",
+ "arm_custom_bypass": "Prispôsobené vylúčenie",
+ "arm_home": "Zakódovať doma",
+ "arm_night": "Zakódovať na noc",
+ "arm_vacation": "Zakódovať dovolenku",
+ "clear_code": "Zrušiť",
+ "code": "Kód",
+ "disarm": "Odkódovať"
+ },
+ "area": {
+ "area_not_found": "Oblasť sa nenašla."
+ },
+ "automation": {
+ "last_triggered": "Naposledy spustené",
+ "trigger": "Spustiť akcie"
+ },
+ "button": {
+ "press": "stlač"
+ },
+ "camera": {
+ "not_available": "Obrázok nie je k dispozícii"
+ },
+ "climate": {
+ "aux_heat": "Prídavné kúrenie",
+ "away_mode": "Režim neprítomnosti",
+ "cooling": "{name} chladenie",
+ "currently": "Aktuálne",
+ "fan_mode": "Režim ventilátora",
+ "heating": "{name} kúrenie",
+ "high": "vysoká",
+ "low": "nízka",
+ "on_off": "Zapnúť / vypnúť",
+ "operation": "Prevádzka",
+ "preset_mode": "Predvoľba",
+ "swing_mode": "Vejárový režim",
+ "target_humidity": "Cieľová vlhkosť",
+ "target_temperature": "Cieľová teplota",
+ "target_temperature_entity": "{name} cieľová teplota",
+ "target_temperature_mode": "{name} cieľová teplota {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "úbytok",
+ "increment": "prírastok",
+ "reset": "resetovať"
+ }
+ },
+ "cover": {
+ "position": "Poloha",
+ "tilt_position": "Poloha sklonu"
+ },
+ "fan": {
+ "direction": "Smer",
+ "forward": "Dopredu",
+ "oscillate": "Pohyblivý smer",
+ "preset_mode": "Prednastavený Režim",
+ "reverse": "Reverzný",
+ "speed": "Rýchlosť"
+ },
+ "humidifier": {
+ "humidity": "Cieľová vlhkosť",
+ "mode": "Režim"
+ },
+ "light": {
+ "brightness": "Jas",
+ "color_brightness": "Jas farby",
+ "color_temperature": "Teplota farby",
+ "effect": "Efekt",
+ "white_value": "Hodnota bielej"
+ },
+ "lock": {
+ "code": "Kód",
+ "lock": "Zamknúť",
+ "unlock": "Odomknúť"
+ },
+ "media_player": {
+ "media_pause": "Pozastaviť",
+ "media_stop": "Zastaviť",
+ "media_volume_down": "Znížiť hlasitosť",
+ "media_volume_mute": "Stlmiť hlasitosť",
+ "media_volume_unmute": "Zrušiť stlmenie hlasitosti",
+ "media_volume_up": "Zvýšiť hlasitosť",
+ "sound_mode": "Režim zvuku",
+ "source": "Zdroj",
+ "text_to_speak": "Text, ktorý chcete hovoriť",
+ "turn_off": "Vypnúť",
+ "turn_on": "Zapnúť"
+ },
+ "persistent_notification": {
+ "dismiss": "Zrušiť"
+ },
+ "scene": {
+ "activate": "Aktivovať"
+ },
+ "script": {
+ "cancel": "Zrušiť",
+ "run": "Spustiť"
+ },
+ "service": {
+ "run": "Spustiť"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "Zrušiť",
+ "finish": "Dokončiť",
+ "pause": "Pozastaviť",
+ "start": "Štart"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Pokračovať v čistení",
+ "return_to_base": "Návrat do doku",
+ "start_cleaning": "Začať čistenie",
+ "turn_off": "Vypnúť",
+ "turn_on": "Zapnúť"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Režim neprítomnosti",
+ "currently": "Aktuálne",
+ "on_off": "Zapnúť / vypnúť",
+ "operation": "V prevádzke",
+ "target_temperature": "Cieľová teplota"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Tlak vzduchu",
+ "humidity": "Vlhkosť",
+ "precipitation": "zrážky",
+ "temperature": "Teplota",
+ "visibility": "Viditeľnosť",
+ "wind_speed": "Rýchlosť vetra"
+ },
+ "cardinal_direction": {
+ "e": "V",
+ "ene": "VSV",
+ "ese": "VJV",
+ "n": "S",
+ "ne": "SV",
+ "nne": "SSV",
+ "nnw": "SSZ",
+ "nw": "SZ",
+ "s": "J",
+ "se": "JV",
+ "sse": "JJV",
+ "ssw": "JJZ",
+ "sw": "JZ",
+ "w": "Z",
+ "wnw": "ZSZ",
+ "wsw": "ZJZ"
+ },
+ "day": "Deň",
+ "forecast": "Predpoveď",
+ "night": "Noc"
+ }
+ },
+ "common": {
+ "and": "a",
+ "back": "Späť",
+ "cancel": "Zrušiť",
+ "close": "Zavrieť",
+ "continue": "Pokračovať",
+ "copied": "Skopírované",
+ "copied_clipboard": "Skopírované do schránky",
+ "delete": "Odstrániť",
+ "disable": "Zakázať",
+ "enable": "Povoliť",
+ "help": "Pomoc",
+ "leave": "Opustiť",
+ "loading": "Načítava sa",
+ "move": "Presunúť",
+ "next": "Ďalej",
+ "no": "Nie",
+ "not_now": "Teraz nie",
+ "refresh": "Obnoviť",
+ "remove": "Odstrániť",
+ "rename": "Premenovať",
+ "save": "Uložiť",
+ "stay": "Zostať",
+ "successfully_deleted": "Úspešne odstránené",
+ "successfully_saved": "Úspešne uložené",
+ "undo": "Vrátiť späť",
+ "yes": "Áno"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Doplnok",
+ "error": {
+ "fetch_addons": {
+ "description": "Doplnky sa nenačítali kvôli chybe.",
+ "title": "Chyba pri načítaní doplnkov"
+ },
+ "no_supervisor": {
+ "description": "Nenašiel sa žiadny supervízor, takže doplnky sa nepodarilo načítať.",
+ "title": "Žiadny supervízor"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Pridať",
+ "failed_create_area": "Nepodarilo sa vytvoriť oblasť.",
+ "name": "Názov",
+ "text": "Zadajte názov novej oblasti.",
+ "title": "Pridať novú oblasť"
+ },
+ "add_new": "Pridať novú oblasť …",
+ "area": "Oblasť",
+ "clear": "Vyčistiť",
+ "no_areas": "Nemáte definované žiadne oblasti",
+ "no_match": "Nenašli sa žiadne zodpovedajúce oblasti",
+ "show_areas": "Zobraziť oblasti"
+ },
+ "attributes": {
+ "expansion_header": "Atribúty"
+ },
+ "blueprint-picker": {
+ "add_user": "Pridať používateľa",
+ "remove_user": "Odstrániť používateľa",
+ "select_blueprint": "Vyberte plán"
+ },
+ "calendar": {
+ "my_calendars": "Moje kalendáre",
+ "today": "Dnes"
+ },
+ "data-table": {
+ "clear": "Vyčistiť",
+ "filtering_by": "Filtrovanie podľa",
+ "hidden": "{number} skryté",
+ "no-data": "Žiadne údaje",
+ "search": "Hľadať"
+ },
+ "date-range-picker": {
+ "end_date": "Dátum konca",
+ "ranges": {
+ "last_week": "Minulý týždeň",
+ "this_week": "Tento týždeň",
+ "today": "Dnes",
+ "yesterday": "Včera"
+ },
+ "select": "Výber",
+ "start_date": "Dátum začiatku"
+ },
+ "device-picker": {
+ "clear": "Vyčistiť",
+ "device": "Zariadenie",
+ "no_area": "Žiadna oblasť",
+ "no_devices": "Nemáte žiadne zariadenia",
+ "no_match": "Nenašli sa žiadne zodpovedajúce zariadenia",
+ "show_devices": "Zobraziť zariadenia",
+ "toggle": "Prepínač"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Atribút",
+ "show_attributes": "Zobraziť atribúty"
+ },
+ "entity-picker": {
+ "clear": "Vyčistiť",
+ "edit": "Upraviť",
+ "entity": "Entita",
+ "no_match": "Nenašli sa žiadne zodpovedajúce entity",
+ "show_entities": "Zobraziť entity"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "Integrácia histórie je deaktivovaná",
+ "loading_history": "Načítavam históriu stavov",
+ "no_history_found": "Nenašla sa žiadna história stavov"
+ },
+ "logbook": {
+ "by_service": "službou",
+ "entries_not_found": "Nenašli sa žiadne záznamy v denníku.",
+ "messages": {
+ "became_unavailable": "sa stal nedostupným",
+ "changed_to_state": "zmenené na {state}",
+ "is_closing": "sa zatvára",
+ "is_opening": "sa otvára",
+ "turned_off": "vypnuté",
+ "turned_on": "zapnuté",
+ "was_at_home": "bol doma",
+ "was_at_state": "bol zistený v {state}",
+ "was_away": "bol preč",
+ "was_closed": "boli zavreté",
+ "was_connected": "bol pripojený",
+ "was_disconnected": "bol odpojený",
+ "was_locked": "bol zamknutý",
+ "was_opened": "boli otvorené",
+ "was_plugged_in": "bol zapojený",
+ "was_unlocked": "bol odomknutý",
+ "was_unplugged": "bol odpojený"
+ },
+ "retrieval_error": "Chyba pri načítaní záznamu z denníka",
+ "show_trace": "Zobraziť cestu"
+ },
+ "media-browser": {
+ "audio_not_supported": "Váš prehliadač nepodporuje zvukový prvok.",
+ "choose_player": "Vyberte prehrávač",
+ "class": {
+ "album": "Album",
+ "app": "App",
+ "artist": "Umelec",
+ "channel": "Kanál",
+ "composer": "Skladateľ",
+ "contributing_artist": "Prispievajúci umelec",
+ "directory": "Knižnica",
+ "episode": "Epizóda",
+ "game": "Hra",
+ "genre": "Žáner",
+ "image": "Obrázok",
+ "movie": "Film",
+ "music": "Hudba",
+ "playlist": "Zoznam k prehratiu",
+ "podcast": "Podcast",
+ "season": "Sezóna",
+ "track": "Sledovať",
+ "tv_show": "Televízna relácia",
+ "url": "URL",
+ "video": "Video"
+ },
+ "documentation": "dokumentácia",
+ "learn_adding_local_media": "Ďalšie informácie o pridávaní médií nájdete v dokumentácii {documentation}.",
+ "local_media_files": "Umiestnite videosúbory, zvukové a obrazové súbory do mediálneho adresára, aby ste ich mohli prehľadávať a prehrávať v prehliadači alebo v podporovaných prehrávačoch médií.",
+ "media-player-browser": "Prehliadač prehrávača médií",
+ "media_browsing_error": "Chyba prehľadávania médií",
+ "media_not_supported": "Prehrávač médií prehliadača nepodporuje tento typ médií",
+ "media_player": "Prehrávač médií",
+ "no_items": "Žiadne položky",
+ "no_local_media_found": "Nenašli sa žiadne lokálne médiá",
+ "no_media_folder": "Zdá sa, že ste ešte nevytvorili adresár médií.",
+ "pick-media": "Vybrať médiá",
+ "play-media": "Prehrať médiá",
+ "setup_local_help": "Informácie o nastavení lokálnych médií nájdete v dokumentácii {documentation}.",
+ "video_not_supported": "Váš prehliadač nepodporuje video prvok.",
+ "web-browser": "Webový prehliadač"
+ },
+ "picture-upload": {
+ "label": "Obrázok",
+ "unsupported_format": "Nepodporovaný formát, vyberte obrázok JPEG, PNG alebo GIF."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Zadajte hodnotu QR kódu",
+ "not_supported": "Váš prehliadač nepodporuje skenovanie QR kódov."
+ },
+ "related-filter-menu": {
+ "filter": "Filter"
+ },
+ "related-items": {
+ "area": "Oblasť",
+ "automation": "Súčasťou nasledujúcich automatizácií",
+ "device": "Zariadenie",
+ "entity": "Súvisiace entity",
+ "group": "Súčasťou nasledujúcich skupín",
+ "integration": "Integrácia",
+ "no_related_found": "Nenašli sa žiadne súvisiace položky.",
+ "scene": "Súčasťou nasledujúcich scén",
+ "script": "Súčasťou nasledujúcich skriptov"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\none {deň}\nother {dní}\n}",
+ "hour": "{count} {count, plural,\n one {hodina}\n other {hodiny}\n}",
+ "minute": "{count} {count, plural,\none {minúta}\nother {minút}\n}",
+ "second": "{count} {count, plural,\none {sekunda}\nother {sekúnd}\n}",
+ "week": "{count} {count, plural,\none {týždeň}\nother {týždne}\n}"
+ },
+ "future_duration": {
+ "day": "Za {count} {count, plural,\n one {deň}\n other {dní}\n}",
+ "week": "Za {count} {count, plural,\n one {týždeň}\n other {týždňov}\n}"
+ },
+ "just_now": "Práve teraz",
+ "never": "Nikdy",
+ "past_duration": {
+ "day": "Pred {count} {count, plural,\none {dňom}\nother {dňami}\n}",
+ "hour": "Pred {count} {count, plural,\n one {hodinou}\n other {hodinami}\n}",
+ "minute": "Pred {count} {count, plural,\none {minútou}\nother {minútami}\n}",
+ "second": "Pred {count} {count, plural,\none {sekundou}\nother {sekundami}\n}",
+ "week": "Pred {count} {count, plural,\none {týždňom}\nother {týždňami}\n}"
+ }
+ },
+ "service-control": {
+ "required": "Toto pole je povinné",
+ "service_data": "Dáta služby",
+ "target": "Ciele",
+ "target_description": "Čo by mala táto služba používať ako cieľové oblasti, zariadenia alebo entity."
+ },
+ "service-picker": {
+ "service": "Služba"
+ },
+ "statistic-picker": {
+ "learn_more": "Zistite viac informácií o štatistikách",
+ "missing_entity": "Prečo nie je moja entita uvedená v zozname?",
+ "no_match": "Nenašli sa žiadne zodpovedajúce štatistiky",
+ "no_statistics": "Nemáte žiadne štatistiky",
+ "statistic": "Štatistika"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Načítavam štatistiky…",
+ "no_statistics_found": "Nenašli sa žiadne štatistiky.",
+ "statistic_types": {
+ "max": "maximum",
+ "mean": "priemer",
+ "min": "minimum",
+ "sum": "súčet"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Vybrať oblasť",
+ "add_device_id": "Vybrať zariadenie",
+ "add_entity_id": "Vybrať entitu",
+ "expand": "Rozbaliť",
+ "expand_area_id": "Rozbaliť túto oblasť na samostatné zariadenia a entity, ktoré obsahuje. Po rozbalení sa nebudú pri zmene oblasti aktualizovať zariadenia a entity.",
+ "expand_device_id": "Rozbaliť toto zariadenie na samostatné entity, ktoré obsahuje. Po rozbalení sa nebudú pri zmene zariadenia aktualizovať entity.",
+ "remove": "Odstrániť",
+ "remove_area_id": "Odstrániť oblasť",
+ "remove_device_id": "Odstrániť zariadenie",
+ "remove_entity_id": "Odstrániť entitu"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Ak je zakázaná, novoobjavené entity pre {integration} nebudú automaticky pridané do domáceho asistenta.",
+ "enable_new_entities_label": "Povoliť novo pridané entity.",
+ "title": "Systémové možnosti pre {integration}",
+ "update": "Aktualizovať"
+ },
+ "entity_registry": {
+ "control": "Ovládanie",
+ "customize_link": "prispôsobenia entít",
+ "dismiss": "Zrušiť",
+ "editor": {
+ "advanced": "Rozšírené nastavenia",
+ "area": "Nastaviť iba oblasť entity",
+ "area_note": "Predvolene sú entity zariadenia v rovnakej oblasti ako zariadenie. Ak zmeníte oblasť tejto entity, nebude už sledovať oblasť zariadenia.",
+ "change_device_area": "Zmeniť oblasť zariadenia",
+ "confirm_delete": "Naozaj chcete odstrániť túto entitu?",
+ "delete": "VYMAZAŤ",
+ "device_class": "Zobraziť ako",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Dvere",
+ "garage_door": "Garážové dvere",
+ "opening": "Iné",
+ "window": "Okno"
+ },
+ "cover": {
+ "door": "Dvere",
+ "garage": "Garážové dvere",
+ "window": "Okno"
+ }
+ },
+ "device_disabled": "Zariadenie tejto entity je vypnuté.",
+ "enabled_cause": "Zakázané {cause}",
+ "enabled_delay_confirm": "Povolené entity budú do Home Assistant pridané o {delay} sekúnd",
+ "enabled_description": "Zakázané entity nebudú pridané do Home Assistanta",
+ "enabled_label": "Povoliť entitu",
+ "enabled_restart_confirm": "Reštartovať Home Assistant a dokončiť povolenie entít",
+ "entity_id": "Entity ID",
+ "follow_device_area": "Sledovať oblasť zariadenia",
+ "icon": "Ikona",
+ "icon_error": "Ikony by mali byť vo formáte 'prefix:iconname', napr 'mdi:home'",
+ "name": "Názov",
+ "note": "Poznámka: Toto nemusí zatiaľ fungovať so všetkými integráciami.",
+ "open_device_settings": "Otvoriť nastavenia zariadenia",
+ "unavailable": "Táto entita nie je momentálne k dispozícii.",
+ "update": "AKTUALIZOVAŤ"
+ },
+ "faq": "dokumentácia",
+ "info_customize": "Niektoré atribúty môžete prepísať v sekcii {customize_link}.",
+ "no_unique_id": "Táto entita (\"{entity_id}\") nemá jedinečné ID, preto jej nastavenia nie je možné spravovať z používateľského rozhrania. Viac podrobností nájdete na {faq_link}.",
+ "related": "Súvisiace",
+ "settings": "Nastavenia"
+ },
+ "generic": {
+ "cancel": "Zrušiť",
+ "close": "zavrieť",
+ "default_confirmation_title": "Ste si istý?",
+ "ok": "OK"
+ },
+ "helper_settings": {
+ "generic": {
+ "icon": "Ikona",
+ "name": "Názov"
+ },
+ "input_datetime": {
+ "date": "Dátum",
+ "datetime": "Dátum a čas",
+ "mode": "Čo chcete zadať",
+ "time": "Čas"
+ },
+ "input_number": {
+ "box": "Vstupné pole",
+ "max": "Maximálna hodnota",
+ "min": "Minimálna hodnota",
+ "mode": "Režim zobrazenia",
+ "slider": "Slider",
+ "step": "Veľkosť kroku",
+ "unit_of_measurement": "Meracia jednotka"
+ },
+ "input_select": {
+ "add": "Pridať",
+ "add_option": "Pridať možnosť",
+ "no_options": "Zatiaľ nie sú k dispozícii žiadne možnosti.",
+ "options": "Možnosti"
+ },
+ "input_text": {
+ "max": "Maximálna dĺžka",
+ "min": "Minimálna dĺžka",
+ "mode": "Režim zobrazenia",
+ "password": "Heslo",
+ "pattern": "Vzor regexu na overenie na strane klienta",
+ "text": "Text"
+ },
+ "platform_not_loaded": "Integrácia {platform} sa nenačítala. Pridajte ju do svojej konfigurácie buď pridaním 'default_config:' alebo ''{platform}:''.",
+ "required_error_msg": "Toto pole je povinné",
+ "yaml_not_editable": "Nastavenia tejto entity nie je možné upravovať z UI. Iba entity nastavené z UI sú konfigurovateľné z UI."
+ },
+ "image_cropper": {
+ "crop": "Orezať"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Zavrieť rolety",
+ "close_tile_cover": "Zavrieť sklon krytu",
+ "open_cover": "Otvoriť rolety",
+ "open_tilt_cover": "Otvoriť sklon krytu",
+ "stop_cover": "Zastaviť rolety v pohybe"
+ },
+ "details": "Podrobnosti",
+ "dismiss": "Zrušiť dialógové okno",
+ "edit": "Upraviť entitu",
+ "history": "História",
+ "last_updated": "Posledná aktualizácia",
+ "person": {
+ "create_zone": "Vytvoriť zónu z aktuálnej polohy"
+ },
+ "remote": {
+ "activity": "Aktuálne entity"
+ },
+ "restored": {
+ "confirm_remove_text": "Naozaj chcete odstrániť túto entitu?",
+ "confirm_remove_title": "Odstrániť entitu?",
+ "not_provided": "Táto entita je momentálne nedostupná a je pozostatkom po odstránenej, zmenenej alebo nefunkčnej integrácii alebo zariadení.",
+ "remove_action": "Odstrániť entitu",
+ "remove_intro": "Ak sa entita už nepoužíva, môžete ju odstrániť."
+ },
+ "script": {
+ "last_action": "Posledná akcia",
+ "last_triggered": "Naposledy spustené"
+ },
+ "settings": "Nastavenie entity",
+ "show_more": "Zobraziť viac",
+ "sun": {
+ "elevation": "Výška nad horizontom",
+ "rising": "Vychádzajúce",
+ "setting": "Zapadajúce"
+ },
+ "updater": {
+ "title": "Pokyny pre aktualizáciu"
+ },
+ "vacuum": {
+ "commands": "Príkazy vysávača:",
+ "fan_speed": "Rýchlosť ventilátora",
+ "locate": "lokalizovať",
+ "pause": "Pozastaviť",
+ "return_home": "Návrat domov",
+ "start": "Štart",
+ "start_pause": "Štart/pauza",
+ "status": "Stav",
+ "stop": "Zastaviť"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Pokus interpretovať správy MQTT ako JSON",
+ "entities": "Entity",
+ "no_entities": "Žiadne entity",
+ "no_triggers": "Žiadne spúšťače",
+ "recent_messages": "{n} naposledy prijaté správy",
+ "show_as_yaml": "Zobraziť ako YAML",
+ "title": "Informácie o ladení {device}",
+ "triggers": "Spúšťače"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Možnosti"
+ },
+ "loading": {
+ "loading_flow": "Počkajte, kým sa načítajú možnosti pre {integration}",
+ "loading_step": "Načítavam ďalší krok pre {integration}"
+ },
+ "success": {
+ "description": "Možnosti boli úspešne uložené."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Oblasti",
+ "automation": "Automatizácie",
+ "blueprint": "Plán",
+ "core": "Všeobecné",
+ "customize": "Prispôsobenia",
+ "devices": "Zariadenia",
+ "energy": "Energia",
+ "entities": "Entity",
+ "helpers": "Pomocníci",
+ "info": "Info",
+ "integrations": "Integrácie",
+ "logs": "Denníky",
+ "lovelace": "Lovelace Prehľady",
+ "person": "Ľudia",
+ "scene": "Scény",
+ "script": "Skripty",
+ "server_control": "Ovládacie prvky servera",
+ "tag": "Značky",
+ "users": "Používatelia",
+ "zone": "Zóny"
+ },
+ "reload": {
+ "automation": "Znova načítať automatizácie",
+ "command_line": "Znova načítať Command line entity",
+ "input_boolean": "Znova načítať pomocníkov - prepínače",
+ "input_select": "Znova načítať pomocníkov - výbery",
+ "mqtt": "Znova načítať MQTT entity",
+ "person": "Znova načítať osoby",
+ "rpi_gpio": "Znova načítať Raspberry Pi GPIO entity",
+ "scene": "Znova načítať scény",
+ "script": "Znova načítať skripty",
+ "smtp": "Znova načítať notifikačné služby SMTP",
+ "telegram": "Znova načítať notifikačné služby telegram",
+ "themes": "Témy",
+ "zone": "Znova načítať zóny"
+ },
+ "types": {
+ "navigation": "Navigovať",
+ "reload": "Znova načítať",
+ "server_control": "Server"
+ }
+ },
+ "filter_placeholder": "Filter entít"
+ },
+ "voice_command": {
+ "label": "Zadajte otázku a stlačte \"Enter\"",
+ "label_voice": "Zadajte a stlačte \"Enter\" alebo kliknite na mikrofón pre hlasové ovládanie"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Pridanie zariadení cez toto zariadenie",
+ "device_children": "Zobraziť deti",
+ "reconfigure": "Prekonfigurovať zariadenie",
+ "remove": "Odstrániť zariadenie",
+ "view_in_visualization": "Zobraziť vo vizualizácii",
+ "zigbee_information": "Informácie o Zigbee"
+ },
+ "confirmations": {
+ "remove": "Naozaj chcete odstrániť zariadenie?"
+ },
+ "device_children": "Zigbee zariadenie deti",
+ "device_signature": "Podpis zariadenia Zigbee",
+ "last_seen": "Naposledy videný",
+ "manuf": "od {manufacturer}",
+ "no_area": "Žiadna oblasť",
+ "power_source": "Zdroj napájania",
+ "services": {
+ "reconfigure": "Znovu nakonfigurujte ZHA zariadenie (opravte zariadenie). Použite, ak máte problémy so zariadením. Ak ide o zariadenie napájané z batérie, skontrolujte, či je pri používaní tejto služby hore a či prijíma príkazy.",
+ "remove": "Odstráňte zariadenie zo siete Zigbee.",
+ "updateDeviceName": "Nastaviť vlastný názov pre toto zariadenie v registri zariadení.",
+ "zigbee_information": "Zobraziť informácie o ZigBee pre zariadenie."
+ },
+ "unknown": "Neznámy",
+ "zha_device_card": {
+ "device_name_placeholder": "Zmeniť názov zariadenia"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Atribút"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\n one {deň}\n other {dní}\n}",
+ "hour": "{count} {count, plural,\n one {hodina}\n other {hodiny}\n}",
+ "minute": "{count} {count, plural,\none {minúta}\nother {minút}\n}",
+ "second": "{count} {count, plural,\n one {sekunda}\n other {sekúnd}\n}",
+ "week": "{count} {count, plural,\n one {týždeň}\n other {týždňov}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Stále môžete upravovať svoju konfiguráciu v YAML.",
+ "editor_not_available": "Pre typ \"{type}\" nie je k dispozícii žiadny vizuálny editor.",
+ "editor_not_supported": "Vizuálny editor nie je pre túto konfiguráciu podporovaný",
+ "error_detected": "Zistili sa chyby v konfigurácii",
+ "key_missing": "Chýba požadovaný kľúč \"{key}\".",
+ "key_not_expected": "Kľúč \"{key}\" sa neočakáva alebo ho vizuálny editor nepodporuje.",
+ "key_wrong_type": "Vizuálny editor nepodporuje zadanú hodnotu pre \"{key}\". Podporujeme ({type_correct}), ale dostali sme ({type_wrong}).",
+ "no_template_editor_support": "Vizuálny editor nepodporuje šablóny",
+ "no_type_provided": "Nie je uvedený žiadny typ."
+ }
+ },
+ "login-form": {
+ "log_in": "Prihlásiť sa",
+ "password": "Heslo",
+ "remember": "Zapamätať"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Kliknutím na tlačidlo nakonfigurujete {entity}",
+ "close": "Zavrieť",
+ "empty": "Žiadne upozornenia",
+ "title": "Upozornenia"
+ },
+ "notification_toast": {
+ "connection_lost": "Prerušené spojenie. Opätovné pripájanie…",
+ "service_call_failed": "Nepodarilo sa zavolať službu {service}.",
+ "started": "Home Assistant je spustený!",
+ "triggered": "Spustené {name}"
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "link_profile_page": "vaša profilová stránka"
+ },
+ "areas": {
+ "add_picture": "Pridať obrázok",
+ "assigned_to_area": "Priradené k tejto oblasti",
+ "caption": "Register oblastí",
+ "data_table": {
+ "area": "Oblasť",
+ "devices": "Zariadenia",
+ "entities": "Entity"
+ },
+ "delete": {
+ "confirmation_text": "Všetky zariadenia v tejto oblasti ostanú nepriradené.",
+ "confirmation_title": "Naozaj chcete odstrániť túto oblasť?"
+ },
+ "description": "Zoskupte zariadenia a entity do oblastí",
+ "edit_settings": "Nastavenia oblasti",
+ "editor": {
+ "area_id": "ID oblasti",
+ "create": "VYTVORIŤ",
+ "default_name": "Nová oblasť",
+ "delete": "VYMAZAŤ",
+ "linked_entities_caption": "Entity",
+ "name": "Názov",
+ "name_required": "Názov je povinný",
+ "unknown_error": "Neznáma chyba",
+ "update": "AKTUALIZOVAŤ"
+ },
+ "picker": {
+ "create_area": "Vytvoriť oblasť",
+ "header": "Register oblastí",
+ "integrations_page": "Stránka Integrácií",
+ "introduction": "Oblasti sa používajú na usporiadanie zariadení. Tieto informácie sa použijú v službe Home Assistant, aby vám pomohli pri organizovaní rozhrania, povolení a integrácií s inými systémami.",
+ "introduction2": "Ak chcete umiestniť zariadenia do oblasti, pomocou odkazu nižšie prejdite na stránku integrácií a potom kliknite na nakonfigurovanú integráciu a prejdite na karty zariadení.",
+ "no_areas": "Vyzerá to, že ešte nemáte žiadne oblasti!"
+ }
+ },
+ "automation": {
+ "caption": "Automatizácie",
+ "description": "Vytvorte si vlastné pravidlá správania pre svoj domov",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Použiť plán"
+ },
+ "header": "Vytvoriť novú automatizáciu",
+ "how": "Ako chcete vytvoriť novú automatizáciu?",
+ "start_empty": "Začať s prázdnou automatizáciou",
+ "thingtalk": {
+ "create": "Vytvoriť",
+ "header": "Popíšte automatizáciu, ktorú chcete vytvoriť",
+ "input_label": "Čo by mala robiť táto automatizácia?",
+ "intro": "A pokúsime sa to pre vás vytvoriť. Napríklad: Keď odchádzam, vypnúť svetlá."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Pridať akciu",
+ "delete": "Odstrániť",
+ "delete_confirm": "Ste si istý odstránením ? ",
+ "duplicate": "Duplikovať",
+ "header": "Akcie",
+ "introduction": "Akcie predstavujú činnosti, ktoré Home Assistant vykoná po spustení automatizácie.",
+ "learn_more": "Získajte viac informácií o akciách",
+ "name": "Akcia",
+ "type": {
+ "choose": {
+ "add_option": "Pridať možnosť",
+ "conditions": "Podmienky",
+ "remove_option": "Odstrániť možnosť",
+ "sequence": "Akcie"
+ },
+ "condition": {
+ "label": "Podmienka"
+ },
+ "delay": {
+ "delay": "Oneskorenie",
+ "label": "Oneskorenie"
+ },
+ "device_id": {
+ "action": "Akcia",
+ "extra_fields": {
+ "brightness_pct": "Jas",
+ "code": "Kód",
+ "humidity": "Vlhkosť",
+ "message": "Správa",
+ "mode": "Režim",
+ "position": "pozícia",
+ "title": "Názov",
+ "value": "Hodnota"
+ },
+ "label": "Zariadenie"
+ },
+ "event": {
+ "event": "Udalosť:",
+ "label": "Odpáliť udalosť",
+ "service_data": "Dáta služby"
+ },
+ "repeat": {
+ "sequence": "Akcie"
+ },
+ "scene": {
+ "label": "Aktivovať scénu"
+ },
+ "service": {
+ "label": "Zavolať službu"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Pokračovať po vypršaní času",
+ "label": "Počkať na spúšťač",
+ "timeout": "Timeout (voliteľne)"
+ },
+ "wait_template": {
+ "continue_timeout": "Pokračovať v časovom limite",
+ "label": "Čakať",
+ "timeout": "Časový limit (voliteľné)",
+ "wait_template": "Šablóna čakania"
+ }
+ },
+ "type_select": "Typ akcie",
+ "unsupported_action": "Žiadna podpora používateľského rozhrania pre akciu: {action}"
+ },
+ "alias": "Názov",
+ "blueprint": {
+ "blueprint_to_use": "Plán na použitie",
+ "header": "Plán",
+ "no_blueprints": "Nemáte žiadne plány",
+ "no_inputs": "Tento plán nemá žiadne vstupy."
+ },
+ "conditions": {
+ "add": "Pridať podmienku",
+ "delete": "Odstrániť",
+ "delete_confirm": "Ste si istý odstránením ? ",
+ "duplicate": "Duplikovať",
+ "header": "Podmienky",
+ "introduction": "Podmienky sú voliteľné a zabránia spusteniu automatizácie, pokiaľ nie sú splnené všetky podmienky.",
+ "learn_more": "Získajte viac informácií o podmienkach",
+ "name": "Podmienka",
+ "type": {
+ "and": {
+ "label": "a"
+ },
+ "device": {
+ "extra_fields": {
+ "above": "Nad",
+ "below": "Pod",
+ "for": "Trvanie",
+ "hvac_mode": "Režim HVAC",
+ "preset_mode": "Vyber režim"
+ },
+ "label": "Zariadenie"
+ },
+ "numeric_state": {
+ "above": "Nad",
+ "below": "Pod",
+ "label": "Číselná hodnota",
+ "value_template": "Šablóna hodnoty (voliteľné)"
+ },
+ "or": {
+ "label": "alebo"
+ },
+ "state": {
+ "label": "Stav",
+ "state": "Stav"
+ },
+ "sun": {
+ "after": "Po:",
+ "after_offset": "Oneskorenie po (voliteľné)",
+ "before": "Pred:",
+ "before_offset": "Predstih pred (voliteľné)",
+ "label": "Slnko",
+ "sunrise": "Východ slnka",
+ "sunset": "Západ slnka"
+ },
+ "template": {
+ "label": "Šablóna",
+ "value_template": "Šablóna hodnoty"
+ },
+ "time": {
+ "after": "Po",
+ "before": "Pred",
+ "label": "Čas",
+ "type_value": "Pevný čas",
+ "weekdays": {
+ "fri": "Piatok",
+ "mon": "Pondelok",
+ "sat": "Sobota",
+ "sun": "Nedeľa",
+ "thu": "Štvrtok",
+ "tue": "Utorok",
+ "wed": "Streda"
+ }
+ },
+ "trigger": {
+ "id": "ID spúšťača",
+ "label": "Spúšťač",
+ "no_triggers": "Nie sú k dispozícii žiadne spúšťače"
+ },
+ "zone": {
+ "entity": "Entita s umiestnením",
+ "label": "Zóna",
+ "zone": "Zóna"
+ }
+ },
+ "type_select": "Typ podmienky",
+ "unsupported_condition": "Žiadna podpora používateľského rozhrania pre podmienku: {condition}"
+ },
+ "default_name": "Nová automatizácia",
+ "description": {
+ "label": "Popis",
+ "placeholder": "Voliteľný popis"
+ },
+ "edit_ui": "Upraviť pomocou používateľského rozhrania",
+ "edit_yaml": "Upraviť pomocou YAML",
+ "enable_disable": "Povoliť/zakázať automatizáciu",
+ "introduction": "Použite automatizácie, aby váš domov ožil",
+ "load_error_not_editable": "Len automatizácie v automations.yaml je možné upravovať.",
+ "load_error_unknown": "Chyba pri načítaní automatizácie ({err_no}).",
+ "max": {
+ "queued": "Dĺžka fronty"
+ },
+ "modes": {
+ "documentation": "dokumentácia automatizácie",
+ "label": "Režim",
+ "parallel": "Paralelne",
+ "queued": "Fronta",
+ "restart": "Reštart"
+ },
+ "move_down": "Posunúť dole",
+ "move_up": "Posunúť hore",
+ "save": "Uložiť",
+ "show_trace": "Zobraziť cestu",
+ "triggers": {
+ "add": "Pridať spúšťač",
+ "delete": "Odstrániť",
+ "delete_confirm": "Naozaj to chcete odstrániť?",
+ "duplicate": "Duplikovať",
+ "header": "Spúšťače",
+ "id": "ID spúšťača (používa sa podmienkou spustenia)",
+ "introduction": "Spúšťače spúšťajú spracovanie pravidla automatizácie. Pre rovnaké pravidlo je možné určiť viac spúšťačov. Po spustení spúšťača aplikácia Home Assistant overí prípadné podmienky a zavolá akciu. \n\n [Viac informácií o spúšťačov.](https://home-assistant.io/docs/automation/trigger/)",
+ "learn_more": "Získajte viac informácií o spúšťačoch",
+ "name": "Spúšťač",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Nad",
+ "below": "Pod",
+ "for": "Trvanie",
+ "zone": "Zóna"
+ },
+ "label": "Zariadenie"
+ },
+ "event": {
+ "context_user_pick": "Vybrať používateľa",
+ "context_user_picked": "Udalosť spustenia používateľa",
+ "event_data": "Dáta udalosti",
+ "event_type": "Typ udalosti",
+ "label": "Udalosť"
+ },
+ "geo_location": {
+ "enter": "Vstup",
+ "event": "Udalosť:",
+ "label": "Geolokácia",
+ "leave": "Opustiť",
+ "source": "Zdroj",
+ "zone": "Zóna"
+ },
+ "homeassistant": {
+ "event": "Udalosť:",
+ "label": "Home Assistant",
+ "shutdown": "Vypnutie",
+ "start": "Štart"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Správa (voliteľné)",
+ "topic": "Topic"
+ },
+ "numeric_state": {
+ "above": "Nad",
+ "below": "Pod",
+ "label": "Číselná hodnota",
+ "value_template": "Šablóna hodnoty (voliteľné)"
+ },
+ "state": {
+ "attribute": "Atribút (voliteľný)",
+ "for": "Trvanie stavu",
+ "from": "Z",
+ "label": "Stav",
+ "to": "Na"
+ },
+ "sun": {
+ "event": "Udalosť:",
+ "label": "Slnko",
+ "offset": "Kompenzácia (voliteľné)",
+ "sunrise": "Východ slnka",
+ "sunset": "Západ slnka"
+ },
+ "template": {
+ "label": "Šablóna",
+ "value_template": "Šablóna hodnoty"
+ },
+ "time": {
+ "at": "V čase",
+ "label": "Čas",
+ "type_value": "Pevný čas"
+ },
+ "time_pattern": {
+ "hours": "Hodín",
+ "label": "Časový vzor",
+ "minutes": "Minút",
+ "seconds": "Sekúnd"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook ID"
+ },
+ "zone": {
+ "enter": "Vstúpenie",
+ "entity": "Entita s umiestnením",
+ "event": "Udalosť:",
+ "label": "Zóna",
+ "leave": "Opustenie",
+ "zone": "Zóna"
+ }
+ },
+ "type_select": "Typ spúšťača",
+ "unsupported_platform": "Žiadna podpora používateľského rozhrania pre platformu: {platform}"
+ },
+ "unsaved_confirm": "Máte neuložené zmeny. Naozaj chcete odísť?"
+ },
+ "picker": {
+ "add_automation": "Pridať automatizáciu",
+ "delete_automation": "Odstrániť automatizáciu",
+ "delete_confirm": "Naozaj chcete odstrániť túto automatizáciu?",
+ "dev_automation": "Automatizácia ladenia",
+ "dev_only_editable": "Sledovateľné sú iba automatizácie, ktoré majú priradené jedinečné ID.",
+ "duplicate": "Duplikovať",
+ "duplicate_automation": "Duplikovať automatizáciu",
+ "edit_automation": "Upraviť automatizáciu",
+ "header": "Editor automatizácií",
+ "headers": {
+ "name": "Názov"
+ },
+ "introduction": "Editor automatizácií vám umožňuje vytvárať a upravovať automatizácie. Prečítajte si prosím [pokyny](https://home-assistant.io/docs/automation/editor/), aby ste sa uistili, že ste nakonfigurovali Home Assistant správne.",
+ "learn_more": "Získajte viac informácií o automatizáciách",
+ "no_automations": "Nepodarilo sa nájsť žiadne editovateľné automatizácie",
+ "only_editable": "Iba automatizácie definované v automations.yaml je možné upravovať.",
+ "pick_automation": "Vyberte automatizáciu, ktorú chcete upraviť",
+ "show_info_automation": "Zobraziť informácie o automatizácii"
+ },
+ "trace": {
+ "edit_automation": "Upraviť automatizáciu"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "komunitné fóra",
+ "error_no_url": "Zadajte URL adresu plánu.",
+ "file_name": "Cesta k plánu",
+ "header": "Importovať plán",
+ "import_btn": "Ukážka plánu",
+ "import_header": "Plán \"{name}\"",
+ "import_introduction_link": "Môžete importovať plány ďalších používateľov z Githubu a {community_link} . Nižšie zadajte adresu URL plánu.",
+ "importing": "Načítava sa plán...",
+ "raw_blueprint": "Obsah plánu",
+ "save_btn": "Importovať plán",
+ "saving": "Importuje sa plán…",
+ "unsupported_blueprint": "Plán nieje podporovaný",
+ "url": "URL adresa plánu"
+ },
+ "caption": "Plány",
+ "description": "Spravovať plány",
+ "overview": {
+ "add_blueprint": "Importovať plán",
+ "confirm_delete_header": "Odstrániť tento plán?",
+ "confirm_delete_text": "Naozaj chcete odstrániť tento plán?",
+ "create_automation": "Vytvoriť automatizáciu",
+ "create_script": "Vytvoriť skript",
+ "delete_blueprint": "Odstrániť Plán",
+ "discover_more": "Objavte viac plánov",
+ "header": "Editor plánov",
+ "headers": {
+ "domain": "Doména",
+ "file_name": "Názov súboru",
+ "name": "Meno",
+ "type": "Typ"
+ },
+ "introduction": "Konfigurácia plánu vám umožňuje importovať a spravovať svoje plány.",
+ "learn_more": "Získajte viac informácií o používaní plánov",
+ "share_blueprint": "Zdieľať plán",
+ "share_blueprint_no_url": "Nie je možné zdieľať plán: žiadna zdrojová adresa URL",
+ "types": {
+ "automation": "Automatizácia",
+ "script": "Skript"
+ },
+ "use_blueprint": "Vytvoriť automatizáciu"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Dokumentácia konfigurácie",
+ "enable_ha_skill": "Povoliť Home Assistant skill pre Alexu",
+ "enable_state_reporting": "Povoliť hlásenie stavu",
+ "info": "Vďaka integrácii Alexa pre Home Assistant Cloud budete môcť ovládať všetky svoje zariadenia Home Assistant pomocou akéhokoľvek zariadenia s podporou Alexa.",
+ "info_state_reporting": "Ak povolíte hlásenie stavu, Home Assistant odošle všetky zmeny stavov vystavených entít do Amazonu. To vám umožní vždy vidieť najnovšie stavy v aplikácii Alexa a pomocou zmien stavov vytvárať rutiny.",
+ "manage_entities": "Spravovať entity",
+ "sync_entities": "Synchronizovať entity s Amazonom",
+ "title": "Alexa"
+ },
+ "connected": "Pripojené",
+ "connecting": "Pripája sa",
+ "connection_status": "Stav cloudového pripojenia",
+ "fetching_subscription": "Načítava sa predplatné…",
+ "google": {
+ "config_documentation": "Dokumentácia konfigurácie",
+ "enter_pin_hint": "Ak chcete používať bezpečnostné zariadenia, zadajte kód PIN",
+ "manage_entities": "Spravovať entity",
+ "security_devices": "Zabezpečovacie zariadenia",
+ "sync_entities": "Synchronizovať entity so službou Google",
+ "sync_entities_404_message": "Nepodarilo sa synchronizovať entity so službou Google. Prikážte Googlu, aby synchronizoval vaše entity príkazom: 'Hey Google, sync my devices'.",
+ "title": "Google Assistant"
+ },
+ "integrations": "Integrácie",
+ "integrations_introduction": "Integrácia Home Assistant Cloud vám umožňuje pripojiť sa k službám v cloude bez toho, aby ste museli verejne publikovať inštanciu Home Assistant do internetu.",
+ "integrations_introduction2": "Pozrite si webovú stránku ",
+ "integrations_link_all_features": " všetky dostupné funkcie ",
+ "manage_account": "Spravovať účet",
+ "nabu_casa_account": "Účet Nabu Casa",
+ "not_connected": "Nepripojené",
+ "remote": {
+ "access_is_being_prepared": "Pripravuje sa vzdialený prístup. Budeme vás informovať, keď bude pripravený.",
+ "certificate_info": "Informácie o certifikáte",
+ "connected": "Pripojené",
+ "info": "Home Assistant Cloud poskytuje zabezpečené vzdialené pripojenie k vašej inštancií kým ste mimo domova.",
+ "instance_is_available": "Vaša inštancia je k dispozícii na stránke",
+ "instance_will_be_available": "Vaša inštancia bude k dispozícii na adrese",
+ "link_learn_how_it_works": "Zistite, ako to funguje",
+ "not_connected": "Nepripojené",
+ "reconnecting": "Nepripojené. Pokúšam sa znovu pripojiť.",
+ "remote_enabled": {
+ "caption": "Automaticky pripojiť"
+ },
+ "title": "Diaľkové ovládanie"
+ },
+ "sign_out": "Odhlásiť sa",
+ "thank_you_note": "Ďakujeme, že ste sa stali súčasťou Home Assistant Cloudu. Vďaka ľuďom, ako ste vy, sme schopní urobiť skvelý zážitok z automatizácie domácnosti pre každého. Ďakujeme!",
+ "tts": {
+ "default_language": "Predvolený jazyk, ktorý sa má použiť",
+ "dialog": {
+ "example_message": "Dobrý deň, {name}, môžete prehrávať ľubovoľný text v ľubovoľnom podporovanom prehrávači médií!",
+ "header": "Vyskúšať prevod textu na reč",
+ "play": "Prehrať",
+ "target": "Cieľ",
+ "target_browser": "Prehliadač"
+ },
+ "female": "Žena",
+ "info": "Preneste osobnosť do vášho domova tým, že s vami bude hovoriť pomocou našich služieb prevodu textu na reč. Môžete to použiť v automatizáciách a skriptoch pomocou {service} .",
+ "male": "Muž",
+ "title": "Prevod textu na reč",
+ "try": "Vyskúšať"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Nepodarilo sa deaktivovať webhook:",
+ "info": "Čokoľvek, čo je nakonfigurované na spúšťanie webhookom, môže dostať verejne prístupnú adresu URL, ktorá vám umožní odosielať údaje späť Home Assistant odkiaľkoľvek bez toho, aby ste svoju inštanciu vystavili na internete.",
+ "link_learn_more": "Prečítajte si viac informácií o vytváraní automatizácií na báze Webhook.",
+ "loading": "Načítava sa …",
+ "manage": "Spravovať",
+ "no_hooks_yet": "Zdá sa, že ešte nemáte žiadne webhooky. Začnite konfiguráciou",
+ "no_hooks_yet2": "alebo vytvorením ",
+ "no_hooks_yet_link_automation": "automatizácia webhookov",
+ "no_hooks_yet_link_integration": "integrácia založená na webhook",
+ "title": "Webhooky"
+ }
+ },
+ "alexa": {
+ "banner": "Úprava týchto entít cez toto používateľské rozhranie je zakázaná, pretože ste nakonfigurovali filtre entít v súbore Configuration.yaml.",
+ "expose": "Sprístupniť pre Alexa",
+ "exposed_entities": "Sprístupnené entity",
+ "not_exposed_entities": "Nezverejnené entity",
+ "title": "Alexa"
+ },
+ "description_features": "Ovládajte svoj domov, keď ste preč, a integrujte ho s Alexa a Google Assistant",
+ "description_login": "Prihlásený ako {email}",
+ "description_not_login": "Neprihlásený",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Dátum vypršania platnosti certifikátu:",
+ "certificate_information": "Informácie o certifikáte",
+ "close": "Zavrieť",
+ "fingerprint": "Odtlačok certifikátu:",
+ "will_be_auto_renewed": "bude automaticky obnovený"
+ },
+ "dialog_cloudhook": {
+ "available_at": "Webhook je k dispozícii na tejto URL adrese:",
+ "close": "Zavrieť",
+ "confirm_disable": "Naozaj chcete zakázať tento webhook?",
+ "copied_to_clipboard": "Skopírované do schránky",
+ "info_disable_webhook": "Ak už nechcete používať tento webhook, môžete",
+ "link_disable_webhook": "zakázať to",
+ "managed_by_integration": "Tento webhook je riadený integráciou a nemožno ho zakázať.",
+ "view_documentation": "Pozrieť dokumentáciu",
+ "webhook_for": "Webhook pre {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "Pokyny na obnovenie hesla nájdete vo svojom e-maile.",
+ "email": "Emailová adresa",
+ "email_error_msg": "Neplatný email",
+ "instructions": "Zadajte svoju e-mailovú adresu a my vám pošleme odkaz na obnovenie hesla.",
+ "send_reset_email": "Poslať resetovací e-mail",
+ "subtitle": "Zabudli ste heslo",
+ "title": "Zabudnuté heslo"
+ },
+ "google": {
+ "banner": "Úprava týchto entít cez toto používateľské rozhranie je zakázaná, pretože ste nakonfigurovali filtre entít v súbore Configuration.yaml.",
+ "dont_expose_entity": "Nevystavovať entitu",
+ "expose": "Sprístupniť pre Google Assistant",
+ "expose_entity": "Vystaviť entitu",
+ "exposed": "{selected} vystavená",
+ "exposed_entities": "Zverejnené entity",
+ "follow_domain": "Sledovanie domény",
+ "manage_domains": "Správa domén",
+ "not_exposed": "{selected} nevystavená",
+ "not_exposed_entities": "Nezverejnené entity",
+ "sync_to_google": "Synchronizujú sa zmeny v službe Google.",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Pred prihlásením musíte potvrdiť svoj email.",
+ "alert_password_change_required": "Pred prihlásením musíte zmeniť svoje heslo.",
+ "dismiss": "Zrušiť",
+ "email": "E-mail",
+ "email_error_msg": "Neplatný email",
+ "forgot_password": "Zabudnuté heslo?",
+ "introduction": "Home Assistant Cloud vám poskytuje zabezpečené vzdialené pripojenie k vašej inštancii. Umožňuje tiež pripojiť sa do cloudových služieb Amazon Alexa a Google Assistant.",
+ "introduction2": "Túto službu poskytuje náš partner",
+ "introduction2a": ", spoločnosť založená zakladateľmi Home Assistant a Hass.io.",
+ "introduction3": "Cloud Home Assistant je predplatená služba s bezplatnou mesačnou skúšobnou verziou. Nie sú potrebné žiadne platobné informácie.",
+ "learn_more_link": "Získajte viac informácií o Home Assistant Cloud",
+ "password": "Heslo",
+ "password_error_msg": "Heslá majú najmenej 8 znakov",
+ "sign_in": "Prihlásiť sa",
+ "start_trial": "Začnite bezplatnú 1-mesačnú skúšobnú verziu",
+ "title": "Prihlásenie do cloudu",
+ "trial_info": "Nie sú potrebné žiadne platobné informácie"
+ },
+ "register": {
+ "account_created": "Účet vytvorený! Inštrukcie na jeho aktiváciu nájdete v e-maile.",
+ "create_account": "Vytvoriť účet",
+ "email_address": "Emailová adresa",
+ "email_error_msg": "Neplatný email",
+ "feature_amazon_alexa": "Integrácia s Amazon Alexa",
+ "feature_google_home": "Integrácia s Google Assistant",
+ "feature_remote_control": "Vzdialené ovládanie domáceho asistenta",
+ "feature_webhook_apps": "Jednoduchá integrácia s webovými aplikáciami, ako napríklad OwnTracks",
+ "headline": "Spusťte bezplatnú skúšobnú verziu",
+ "information": "Vytvorte si účet a začnite bezplatnú mesačnú skúšobnú verziu s cloudom Home Assistant. Nie sú potrebné žiadne platobné informácie.",
+ "information2": "Skúšobná verzia vám umožní prístup ku všetkým výhodám cloudu Home Assistant vrátane:",
+ "information3": "Túto službu poskytuje náš partner",
+ "information3a": ", spoločnosť založená zakladateľmi Home Assistant a Hass.io.",
+ "information4": "Registráciou účtu súhlasíte s nasledujúcimi zmluvnými podmienkami.",
+ "link_privacy_policy": "Zásady ochrany osobných údajov",
+ "link_terms_conditions": "Zmluvné podmienky",
+ "password": "Heslo",
+ "password_error_msg": "Heslá majú najmenej 8 znakov",
+ "resend_confirm_email": "Znova odoslať potvrdzovací e-mail",
+ "start_trial": "Spustiť skúšobnú verziu",
+ "title": "Registrovať účet"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Máte neuložené zmeny. Naozaj chcete odísť?"
+ },
+ "learn_more": "Zistiť viac"
+ },
+ "core": {
+ "caption": "Všeobecné",
+ "description": "Jednotkový systém, umiestnenie, časové pásmo a ďalšie všeobecné parametre",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Mena",
+ "edit_requires_storage": "Editor je zablokovaný, pretože konfigurácia je uložená v configuration.yaml",
+ "elevation": "Nadmorská výška",
+ "elevation_meters": "metrov",
+ "external_url": "Externá adresa URL",
+ "find_currency_value": "Nájdite svoju hodnotu",
+ "imperial_example": "Fahrenheita, libry",
+ "internal_url": "Interná adresa URL",
+ "latitude": "Zemepisná šírka",
+ "location_name": "Názov vašej Home Assistant inštalácie",
+ "longitude": "Zemepisná dĺžka",
+ "metric_example": "Celsia, kilogramy",
+ "save_button": "Uložiť",
+ "time_zone": "Časové pásmo",
+ "unit_system": "Jednotková sústava",
+ "unit_system_imperial": "Imperiálny",
+ "unit_system_metric": "Metrický"
+ },
+ "header": "Všeobecná konfigurácia",
+ "introduction": "Zmena konfigurácie môže byť ťažkým procesom. My vieme. Táto sekcia sa Vám pokúsi zjednodušiť život."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Nasledujúce atribúty sú už nastavené v customize.yaml",
+ "attributes_not_set": "Nasledujúce atribúty neboli nastavené. Ak chcete, nastavte ich.",
+ "attributes_outside": "Nasledujúce atribúty sú prispôsobené mimo customize.yaml",
+ "attributes_override": "Ak chcete, môžete ich prepísať.",
+ "attributes_set": "Nasledujúce atribúty entity sa nastavujú programovo.",
+ "caption": "Prispôsobenie",
+ "description": "Prispôsobte svoje entity",
+ "pick_attribute": "Vyberte atribút, ktorý chcete prepísať",
+ "picker": {
+ "header": "Prispôsobenie",
+ "introduction": "Upravujte atribúty v rámci entity. Pridané / upravené prispôsobenia sa prejavia okamžite. Odstránené prispôsobenia sa prejavia po aktualizácii entity."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "title": "Automatizácie a scény"
+ },
+ "blueprints": {
+ "title": "Plány"
+ },
+ "companion": {
+ "description": "Poloha a upozornenia"
+ },
+ "devices": {
+ "title": "Zariadenia a služby"
+ },
+ "people": {
+ "title": "Ľudia a zóny"
+ },
+ "settings": {
+ "title": "Nastavenia"
+ },
+ "tags": {
+ "title": "Značky"
+ }
+ },
+ "devices": {
+ "add_prompt": "Pomocou tohto zariadenia zatiaľ nebolo pridané žiadne {name} . Jeden môžete pridať kliknutím na tlačidlo + vyššie.",
+ "automation": {
+ "actions": {
+ "caption": "Keď sa niečo spustí…"
+ },
+ "automations": "Automatizácie",
+ "conditions": {
+ "caption": "Urob niečo len vtedy, ak …"
+ },
+ "create": "Vytvorte automatizáciu so zariadením",
+ "create_disable": "Nie je možné vytvoriť automatizáciu s vypnutým zariadením",
+ "no_automations": "Žiadne automatizácie",
+ "no_device_automations": "Pre toto zariadenie nie sú k dispozícii žiadne automatizácie.",
+ "triggers": {
+ "caption": "Urob niečo, keď ..."
+ }
+ },
+ "cant_edit": "Môžete upravovať iba položky, ktoré sú vytvorené v používateľskom rozhraní.",
+ "caption": "Zariadenia",
+ "confirm_delete": "Naozaj chcete odstrániť toto zariadenie?",
+ "confirm_disable_config_entry": "Pre položku konfigurácie {entry_name} už neexistujú žiadne zariadenia, chcete namiesto toho vypnúť položku konfigurácie?",
+ "confirm_rename_entity_ids": "Chcete tiež premenovať ID entít svojich entít?",
+ "confirm_rename_entity_ids_warning": "To nezmení žiadnu konfiguráciu (napríklad automatizácie, skripty, scény, dashboardy), ktorá momentálne používa tieto entity! Aby ste mohli používať nové ID entít, budete si ich musieť sami aktualizovať!",
+ "data_table": {
+ "area": "Oblasť",
+ "battery": "Batérie",
+ "device": "Zariadenie",
+ "integration": "Integrácia",
+ "manufacturer": "Výrobca",
+ "no_devices": "Žiadne zariadenia"
+ },
+ "delete": "Odstrániť",
+ "description": "Spravujte nakonfigurované zariadenia",
+ "device_info": "Informácie o zariadení",
+ "disabled": "Vypnuté",
+ "disabled_by": {
+ "config_entry": "Položka konfigurácie",
+ "integration": "Integrácia",
+ "user": "Používateľ"
+ },
+ "edit_settings": "Upraviť nastavenia",
+ "enabled_cause": "Zariadenie je vypnuté {cause}.",
+ "enabled_description": "Zakázané zariadenia sa nebudú zobrazovať a entity patriace k danému zariadeniu budú deaktivované a nebudú pridané do aplikácie Home Assistant.",
+ "enabled_label": "Povoliť zariadenie",
+ "entities": {
+ "add_entities_lovelace": "Pridať do Lovelace",
+ "config": "Konfigurácia",
+ "control": "Ovládacie prvky",
+ "diagnostic": "Diagnostika",
+ "entities": "Entity",
+ "none": "Toto zariadenie nemá žiadne entity",
+ "sensor": "Senzory",
+ "state": "Stav"
+ },
+ "name": "Názov",
+ "no_devices": "Žiadne zariadenia",
+ "open_configuration_url_device": "Navštíviť zariadenie",
+ "open_configuration_url_service": "Navštíviť službu",
+ "picker": {
+ "filter": {
+ "filter": "Filter",
+ "hidden_devices": "{number} skryté {number, plural,\n one {zariadenie}\n other {zariadenia}\n}",
+ "show_all": "Zobraziť všetko",
+ "show_disabled": "Zobraziť vypnuté zariadenia"
+ },
+ "search": "Vyhľadať zariadenia"
+ },
+ "scene": {
+ "create": "Vytvorte scénu pomocou zariadenia",
+ "create_disable": "Nie je možné vytvoriť scénu s vypnutým zariadením",
+ "no_scenes": "Žiadne scény",
+ "scenes": "Scény"
+ },
+ "scenes": "Scény",
+ "script": {
+ "create": "Vytvorte skript pomocou zariadenia",
+ "create_disable": "Nie je možné vytvoriť script s vypnutým zariadením",
+ "no_scripts": "Žiadne skripty",
+ "scripts": "Skripty"
+ },
+ "scripts": "Skripty",
+ "update": "Aktualizovať"
+ },
+ "energy": {
+ "battery": {
+ "learn_more": "Viac informácií o tom, ako začať.",
+ "sub": "Ak máte batériový systém, môžete ho nakonfigurovať tak, aby monitoroval, koľko energie sa do vašej batérie uložilo a koľko sa z nej spotrebovalo.",
+ "title": "Domáce úložisko batérií"
+ },
+ "caption": "Energia",
+ "description": "Sledovať svoju produkciu a spotrebu energie",
+ "device_consumption": {
+ "add_device": "Pridať zariadenie",
+ "devices": "Zariadenia",
+ "dialog": {
+ "device_consumption_energy": "Spotreba energie zariadením (kWh)",
+ "header": "Pridať zariadenie",
+ "selected_stat_intro": "Vyberte entitu, ktorá predstavuje spotrebu energie zariadenia."
+ },
+ "learn_more": "Viac informácií o tom, ako začať.",
+ "selected_stat": "Sledovanie energie pre",
+ "sub": "Sledovanie spotreby energie jednotlivých zariadení umožňuje aplikácii Home Assistant analyzovať vašu spotrebu energie podľa zariadenia.",
+ "title": "Jednotlivé zariadenia"
+ },
+ "gas": {
+ "add_gas_source": "Pridať zdroj plynu",
+ "dialog": {
+ "cost_entity": "Použite entitu s aktuálnou cenou",
+ "cost_entity_input": "Entita s aktuálnou cenou za {unit}",
+ "cost_number": "Použiť konštantnú cenu",
+ "cost_number_input": "Cena za {unit}",
+ "cost_number_suffix": "{mena}/m³",
+ "cost_para": "Vyberte, ako má Home Assistant sledovať náklady na spotrebovanú energiu.",
+ "cost_stat": "Použiť entitu sledujúcu celkové náklady",
+ "cost_stat_input": "Celkové náklady na entitu",
+ "energy_stat": "Spotreba energie (m³)",
+ "gas_usage": "Spotreba plynu",
+ "header": "Nastaviť spotrebu plynu",
+ "m3_or_kWh": "ft³, m³, Wh, kWh alebo MWh",
+ "no_cost": "Nesledovať náklady",
+ "paragraph": "Spotreba plynu je objem plynu, ktorý prúdi do vášho domu."
+ },
+ "gas_consumption": "Spotreba plynu",
+ "learn_more": "Viac informácií o tom, ako začať.",
+ "sub": "Nechať Home Assistant monitorovať vašu spotrebu plynu.",
+ "title": "Spotreba plynu"
+ },
+ "grid": {
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Použiť entitu s aktuálnou cenou",
+ "cost_entity_input": "Entita s aktuálnou cenou",
+ "cost_number": "Použite statickú cenu",
+ "cost_number_input": "Cena za kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Vyberte, ako má Home Assistant sledovať náklady na spotrebovanú energiu.",
+ "cost_stat": "Použiť entitu sledujúcu celkové náklady",
+ "cost_stat_input": "Entita celkových nákladov",
+ "energy_stat": "Spotrebovaná energia (kWh)",
+ "header": "Konfigurácia sieťovej spotreby",
+ "no_cost": "Nesledovať náklady",
+ "paragraph": "Spotreba siete je energia, ktorá prúdi z energetickej siete do vášho domu."
+ },
+ "to": {
+ "cost_entity": "Použiť entitu s aktuálnou sadzbou",
+ "cost_entity_input": "Entita s aktuálnou sadzbou",
+ "cost_number": "Použiť konštantnú cenu",
+ "cost_number_input": "Sadzba za kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Dostanete peniaze späť, keď vrátite energiu do siete?",
+ "cost_stat": "Použiť entitu sledujúcu celkové prijaté peniaze",
+ "cost_stat_input": "Celková kompenzačná entita",
+ "energy_stat": "Energia vrátená do siete v kWh",
+ "header": "Konfigurácia výroby sieťovej energie",
+ "no_cost": "Nedostanem peniaze späť",
+ "paragraph": "Produkovaná sieťová energia je energia, ktorá prúdi z vašich solárnych panelov do siete."
+ }
+ },
+ "learn_more": "Viac informácií o tom, ako začať.",
+ "sub": "Nakonfigurujte množstvo energie, ktoré spotrebujete zo siete, a ak energiu vyrábate, vráťte ju do siete. Vďaka tomu môže Home Assistant sledovať celú vašu domácu spotrebu energie.",
+ "title": "Elektrická sieť"
+ },
+ "solar": {
+ "dialog": {
+ "add_forecast": "Pridať predpoveď",
+ "forecast_production": "Predpoveď producie"
+ },
+ "learn_more": "Viac informácií o tom, ako začať.",
+ "stat_production": "Vaša výroba solárnej energie",
+ "sub": "Nechajte Home Assistant monitorovať vaše solárne panely a poskytne vám prehľad o ich výkone.",
+ "title": "Solárne panely"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "Nasledujúce entity majú záporný stav, pričom sa očakáva kladný stav:",
+ "title": "Entita má záporný stav"
+ },
+ "entity_not_defined": {
+ "description": "Skontrolujte integráciu alebo konfiguráciu, ktorá poskytuje:",
+ "title": "Entita nie je definovaná"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "Nasledujúce entity majú stavovú triedu \"measurement\", ale \"last_reset\" chýba:",
+ "title": "Chýba posledný reset"
+ },
+ "entity_state_non_numeric": {
+ "description": "Nasledujúce entity majú stav, ktorý nemožno analyzovať ako číslo:",
+ "title": "Entita má nenumerický stav"
+ },
+ "entity_unavailable": {
+ "description": "Stav týchto nakonfigurovaných entít momentálne nie je k dispozícii:",
+ "title": "Entita nie je k dispozícii"
+ },
+ "entity_unexpected_device_class": {
+ "description": "Nasledujúce entity nepatria do očakávanej triedy zariadení:",
+ "title": "Nesprávna trieda zariadenia"
+ },
+ "entity_unexpected_state_class": {
+ "description": "Nasledujúce entity nepatria do očakávanej stavovej triedy:",
+ "title": "Nesprávna stavová trieda"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "Nasledujúce entity nemajú správnu triedu stavu \"total_increasing\"",
+ "title": "Nesprávna stavová trieda"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "Nasledujúce entity nemajú správne merné jednotky \"kWh\" alebo \"Wh\":",
+ "title": "Nesprávna merná jednotka"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "Nasledujúce entity nemajú správne merné jednotky \"{currency}/kWh\" alebo \"{currency}/Wh\":",
+ "title": "Nesprávna merná jednotka"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "Nasledujúce entity nemajú správne jednotky merania \"kWh\", \"m³\" alebo \"ft³\":",
+ "title": "Nesprávna merná jednotka"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "Nasledujúce entity nemajú očakávané merné jednotky \"{currency}/kWh\", \"{currency}/Wh\", \"{currency}/m³ \" alebo \"{currency} /ft³ \":",
+ "title": "Nesprávna merná jednotka"
+ },
+ "recorder_untracked": {
+ "description": "Záznamník bol nastavený tak, aby vylúčil tieto nakonfigurované entity:",
+ "title": "Entita nie je sledovaná"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Register entít",
+ "description": "Spravujte všetky známe entity.",
+ "picker": {
+ "disable_selected": {
+ "button": "Zrušiť vybraté",
+ "confirm_text": "Zakázané entity nebudú pridané do Home Assistanta",
+ "confirm_title": "Chcete zakázať {number} {number, plural,\n one {entita}\n other {entity}\n}?"
+ },
+ "enable_selected": {
+ "button": "Povoliť vybrané",
+ "confirm_text": "Ak sú teraz deaktivované, budú v Home Assistant opäť sprístupnené.",
+ "confirm_title": "Chcete povoliť {number} {number, plural,\n one {entita}\n other {entity}\n}?"
+ },
+ "filter": {
+ "filter": "Filter",
+ "show_all": "Zobraziť všetko",
+ "show_disabled": "Zobraziť zakázané entity",
+ "show_readonly": "Zobraziť entity len na čítanie",
+ "show_unavailable": "Zobraziť nedostupné entity"
+ },
+ "header": "Register entít",
+ "headers": {
+ "area": "Oblasť",
+ "disabled_by": "Vypnuté",
+ "entity_id": "ID entity",
+ "integration": "Integrácia",
+ "name": "Názov",
+ "status": "Stav"
+ },
+ "introduction": "Home Assistant vedie register všetkých subjektov, ktoré kedy videl a ktoré môžu byť jednoznačne identifikované. Každá z týchto entít bude mať pridelené ID, ktoré bude vyhradené len pre tento subjekt.",
+ "introduction2": "Použite register entít na prepísanie mena, zmenu ID entity alebo odstránenie položky z Home Assistant. Poznámka: Odstránenie položky databázy entít neodstráni entitu. Postupujte podľa nižšie uvedeného odkazu a odstráňte ho z integračnej stránky.",
+ "remove_selected": {
+ "button": "Odstrániť vybraté",
+ "confirm_partly_title": "Iba {number} {number, plural,\n one {vybraná entita}\n other {vybrané entity}\n} môžu byť odstránené.",
+ "confirm_text": "Mali by ste ich odstrániť z Lovelace konfigurácie a automatizácií, ak obsahujú tieto entity.",
+ "confirm_title": "Chcete odstrániť {number} {number, plural,\n one {entita}\n other {entity}\n}?"
+ },
+ "search": "Vyhľadať entity",
+ "selected": "{number} vybrané",
+ "status": {
+ "ok": "Ok",
+ "readonly": "Len na čítanie",
+ "unavailable": "Nedostupné"
+ }
+ }
+ },
+ "header": "Konfigurovať Home Assistant",
+ "helpers": {
+ "caption": "Pomocníci",
+ "description": "Prvky, ktoré pomáhajú pri vytváraní automatizácií",
+ "dialog": {
+ "add_helper": "Pridať pomocníka",
+ "add_platform": "Pridať {platform}",
+ "create": "Vytvoriť"
+ },
+ "picker": {
+ "add_helper": "Pridať pomocníka",
+ "headers": {
+ "editable": "Editovateľné",
+ "entity_id": "Entity ID",
+ "name": "Názov",
+ "type": "Typ"
+ }
+ },
+ "types": {
+ "input_boolean": "Prepínač",
+ "input_button": "Tlačidlo",
+ "input_datetime": "Dátum a/alebo čas",
+ "input_number": "Číslo",
+ "input_select": "Rozbaľovací zoznam",
+ "input_text": "Text"
+ }
+ },
+ "info": {
+ "built_using": "Postavené pomocou",
+ "copy_github": "Pre GitHub",
+ "copy_raw": "Raw Text",
+ "custom_uis": "Vlastné používateľské rozhrania:",
+ "description": "Verzia, stav systému a odkazy na dokumentáciu",
+ "developed_by": "Vyvinuté partiou úžasných ľudí.",
+ "documentation": "Dokumentácia",
+ "frontend": "frontend-ui",
+ "frontend_version": "Verzia frontendu: {version} - {type}",
+ "home_assistant_logo": "Home Assistant logo",
+ "icons_by": "Ikony od",
+ "integrations": "Integrácie",
+ "license": "Publikované pod licenciou Apache 2.0",
+ "path_configuration": "Cesta k configuration.yaml: {path}",
+ "server": "server",
+ "setup_time": "Nastaviť čas",
+ "source": "Zdroj:",
+ "system_health": {
+ "manage": "Spravovať",
+ "more_info": "viac informácií"
+ },
+ "system_health_error": "Súčasť System Health nie je načítaná. Pridajte 'system_health:' do súboru configuration.yaml"
+ },
+ "integrations": {
+ "add_integration": "Pridať integráciu",
+ "attention": "Vyžaduje sa pozornosť",
+ "caption": "Integrácie",
+ "config_entry": {
+ "area": "V {area}",
+ "delete": "Odstrániť",
+ "delete_confirm": "Naozaj chcete odstrániť túto integráciu?",
+ "device_unavailable": "Zariadenie nie je k dispozícii",
+ "disable": {
+ "disable_confirm": "Naozaj chcete vypnúť túto položku konfigurácie? Jeho zariadenia a entity budú vypnuté.",
+ "disabled": "Vypnuté",
+ "disabled_by": {
+ "device": "zariadenie",
+ "integration": "integrácia",
+ "user": "používateľ"
+ },
+ "disabled_cause": "Vypnuté {cause}"
+ },
+ "disable_restart_confirm": "Reštartujte asistenta domácnosti a dokončite deaktiváciu tejto integrácie",
+ "documentation": "Dokumentácia",
+ "enable_restart_confirm": "Reštartujte Home Assistant a dokončite povolenie tejto integrácie",
+ "entity_unavailable": "Entita nie je k dispozícii",
+ "firmware": "Firmvér: {version}",
+ "hardware": "Hardvér: {version}",
+ "hub": "Pripojené cez",
+ "manuf": "od {manufacturer}",
+ "no_area": "Žiadna oblasť",
+ "open_configuration_url": "Navštíviť zariadenie",
+ "reload": "Znova načítať",
+ "reload_confirm": "Integrácia bola opätovne načítaná",
+ "rename": "Premenovať",
+ "restart_confirm": "Ak chcete dokončiť odstránenie tejto integrácie, reštartujte Home Assistant",
+ "system_options": "Možnosti systému",
+ "unknown_via_device": "Neznáme zariadenie",
+ "via": "Pripojené cez"
+ },
+ "config_flow": {
+ "aborted": "Prerušené",
+ "close": "Zavrieť",
+ "could_not_load": "Nepodarilo sa načítať konfiguračný tok",
+ "created_config": "Vytvorená konfigurácia pre {name}.",
+ "dismiss": "Zrušiť dialógové okno",
+ "error": "Chyba",
+ "error_saving_area": "Chyba pri ukladaní oblasti: {error}",
+ "external_step": {
+ "description": "Tento krok vyžaduje, aby ste navštívili externú webovú stránku, ktorá dokončí proces.",
+ "open_site": "Otvoriť webovú stránku"
+ },
+ "finish": "Dokončiť",
+ "loading": {
+ "fallback_title": "integrácia",
+ "loading_flow": "Počkajte, kým sa nastaví {integration}",
+ "loading_step": "Načítavam ďalší krok pre {integration}"
+ },
+ "next": "Ďalej",
+ "not_all_required_fields": "Nie sú vyplnené všetky povinné polia.",
+ "pick_flow_step": {
+ "new_flow": "Nie, nastaviť inú inštanciu {integration}",
+ "title": "Objavili sme ich, chcete ich nastaviť?"
+ },
+ "submit": "Odoslať"
+ },
+ "configure": "Konfigurovať",
+ "configured": "Nakonfigurovaný",
+ "confirm_new": "Chcete nastaviť {integration}?",
+ "description": "Spravujte integrácie so službami, zariadeniami, …",
+ "details": "Podrobnosti o integrácii",
+ "disable": {
+ "disabled_integrations": "{number} deaktivované",
+ "show": "Ukázať",
+ "show_disabled": "Zobraziť vypnuté integrácie"
+ },
+ "discovered": "Objavené",
+ "home_assistant_website": "webovej stránke Home Assistant",
+ "ignore": {
+ "confirm_delete_ignore": "Potom, ako bude integrácia automaticky objavená (discovered), sa opäť ukáže medzi objavenými (discovered) integráciami. Môže to chvíľu trvať, alebo vyžadovať reštart.",
+ "confirm_delete_ignore_title": "Prestať ignorovať {name} ?",
+ "confirm_ignore": "Naozaj nechcete nastaviť túto integráciu? Túto akciu môžete vrátiť späť kliknutím na položku 'Zobraziť ignorované integrácie' v ponuke v pravom hornom rohu.",
+ "confirm_ignore_title": "Ignorovať objavenie (discovery) {name}?",
+ "ignore": "Ignorovať",
+ "ignored": "Ignorované",
+ "show_ignored": "Zobraziť ignorované integrácie",
+ "stop_ignore": "Zastaviť ignorovanie"
+ },
+ "integration": "Integrácia",
+ "new": "Nastaviť novú integráciu",
+ "no_integrations": "Vyzerá to, že ešte nemáte nakonfigurované žiadne integrácie. Kliknutím na tlačidlo nižšie pridáte svoju prvú integráciu!",
+ "none": "Nič zatiaľ nebolo nakonfigurované",
+ "none_found": "Nenašli sa žiadne integrácie",
+ "none_found_detail": "Upravte kritériá vyhľadávania.",
+ "note_about_integrations": "Nie všetky integrácie je možné nakonfigurovať pomocou používateľského rozhrania.",
+ "note_about_website_reference": "Viac informácií je k dispozícii na ",
+ "reconfigure": "Prekonfigurovať",
+ "search": "Vyhľadať integrácie"
+ },
+ "introduction": "Tu je možné konfigurovať vaše komponenty a Home Assistant. Aktuálne sa z používateľského rozhrania nedá konfigurovať všetko, ale pracujeme na tom.",
+ "logs": {
+ "clear": "Vyčistiť",
+ "description": "Prezrite si logy v Home Assistant",
+ "details": "Podrobnosti denníka ( {level} )",
+ "load_full_log": "Načítať celý denník denníka asistenta",
+ "loading_log": "Načítava sa denník chýb...",
+ "multiple_messages": "správa sa prvýkrát vyskytla o {time} a opakuje sa {counter} krát",
+ "no_errors": "Neboli hlásené žiadne chyby.",
+ "no_issues": "Žiadne nové chyby!",
+ "refresh": "Obnoviť"
+ },
+ "lovelace": {
+ "caption": "Lovelace dashboardy",
+ "dashboards": {
+ "cant_edit_default": "Štandardný dashboard Lovelace nie je možné upravovať z používateľského rozhrania. Môžete ho skryť nastavením iného dashboardu ako predvoleného nastavenia.",
+ "cant_edit_yaml": "Dashboardy definované v YAML nie je možné upravovať z používateľského rozhrania. Zmeňte ich v súbore configuration.yaml.",
+ "caption": "Dashboardy",
+ "conf_mode": {
+ "storage": "Ovládané cez UI",
+ "yaml": "Súbor YAML"
+ },
+ "confirm_delete": "Naozaj chcete odstrániť tento dashboard?",
+ "confirm_delete_text": "Váš panel bude natrvalo odstránený.",
+ "confirm_delete_title": "Naozaj chcete odstrániť {dashboard_title}?",
+ "default_dashboard": "Toto je predvolený dashboard",
+ "detail": {
+ "create": "Vytvoriť",
+ "delete": "Vymazať",
+ "dismiss": "Zavrieť",
+ "edit_dashboard": "Upraviť dashboard",
+ "icon": "Ikona",
+ "new_dashboard": "Pridať nový dashboard",
+ "remove_default": "Odstrániť ako predvolené na tomto zariadení",
+ "require_admin": "Len pre správcov",
+ "set_default": "Nastaviť ako predvolené na tomto zariadení",
+ "show_sidebar": "Zobraziť v bočnom paneli",
+ "title": "Názov",
+ "title_required": "Názov je povinný.",
+ "update": "Aktualizovať",
+ "url": "URL",
+ "url_error_msg": "Adresa URL by mala obsahovať znak - a nemôže obsahovať medzery ani špeciálne znaky, s výnimkou písmen _ a -"
+ },
+ "picker": {
+ "add_dashboard": "Pridať dashboard",
+ "headers": {
+ "conf_mode": "Metóda konfigurácie",
+ "default": "Predvolený",
+ "filename": "Názov súboru",
+ "require_admin": "Len pre správcov",
+ "sidebar": "Zobraziť v bočnom paneli",
+ "title": "Názov"
+ },
+ "open": "Otvoriť"
+ }
+ },
+ "description": "Vytvárajte si prispôsobené sady kariet na ovládanie svojho domova",
+ "resources": {
+ "cant_edit_yaml": "Používate Lovelace v režime YAML, preto nemôžete spravovať svoje prostriedky cez používateľské rozhranie. Spravujte ich v configuration.yaml.",
+ "caption": "Prostriedky",
+ "confirm_delete": "Naozaj chcete odstrániť tento prostriedok?",
+ "detail": {
+ "create": "Vytvoriť",
+ "delete": "Vymazať",
+ "dismiss": "Zavrieť",
+ "new_resource": "Pridajte nový prostriedok",
+ "type": "Typ prostriedku",
+ "update": "Aktualizovať",
+ "url": "URL",
+ "url_error_msg": "Adresa URL je povinné pole",
+ "warning_header": "Buďte opatrní!",
+ "warning_text": "Pridávanie prostriedkov môže byť nebezpečné, uistite sa, že poznáte zdroj prostriedku a že mu dôverujete. Zlé prostriedky môžu vážne poškodiť váš systém."
+ },
+ "picker": {
+ "add_resource": "Pridať prostriedok",
+ "headers": {
+ "type": "Typ",
+ "url": "URL"
+ },
+ "no_resources": "Žiadne prostriedky"
+ },
+ "refresh_body": "Ak chcete dokončiť odstránenie, musíte stránku aktualizovať. Chcete ju teraz obnoviť?",
+ "refresh_header": "Chcete obnoviť?",
+ "types": {
+ "css": "Stylesheet",
+ "html": "HTML (zastarané)",
+ "js": "JavaScript súbor (zastarané)",
+ "module": "JavaScript modul"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Počúvať tému",
+ "description_publish": "Publikovať paket",
+ "listening_to": "Počúvam",
+ "message_received": "Správa {id} prijatá v {topic} o {time} :",
+ "payload": "Obsah (šablóny sú povolené)",
+ "publish": "Publikovať",
+ "start_listening": "Začať počúvať",
+ "stop_listening": "Zastaviť počúvanie",
+ "subscribe_to": "Téma na odber",
+ "title": "MQTT",
+ "topic": "téma"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Radič",
+ "instance": "Inštancia",
+ "network": "Sieť"
+ },
+ "navigation": {
+ "network": "Sieť"
+ },
+ "network": {
+ "header": "Správa siete",
+ "introduction": "Spravovať funkcie v celej sieti.",
+ "node_count": "{count} uzlov"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "Všetky uzly boli dotazované",
+ "driverallnodesqueriedsomedead": "Všetky uzly boli dotazované. Niektoré uzly boli nájdené mŕtve",
+ "driverawakenodesqueries": "Všetky bdelé uzly boli dotazované",
+ "driverfailed": "Nepodarilo sa pripojiť k radiču Z-Wave",
+ "driverready": "Inicializácia radiča Z-Wave",
+ "driverremoved": "Ovládač bol odstránený",
+ "driverreset": "Ovládač bol resetovaný",
+ "ready": "Pripravené na pripojenie",
+ "stopped": "OpenZWave zastavené"
+ },
+ "offline": "Offline",
+ "online": "Online",
+ "starting": "Štartuje",
+ "unknown": "Neznámy"
+ },
+ "node": {
+ "button": "Podrobnosti uzla",
+ "not_found": "Uzol sa nenašiel"
+ },
+ "nodes_table": {
+ "failed": "Zlyhalo",
+ "id": "ID",
+ "manufacturer": "Výrobca",
+ "model": "Model",
+ "query_stage": "Fáza dopytu",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "button": "Obnoviť uzol",
+ "node_status": "Stav uzla",
+ "refreshing_description": "Obnovujú sa informácie o uzle…",
+ "start_refresh_button": "Spustiť obnovenie",
+ "step": "Krok"
+ },
+ "select_instance": {
+ "introduction": "Máte spustených viac ako jednu inštanciu OpenZWave. Ktorú inštanciu chcete spravovať?"
+ },
+ "services": {
+ "add_node": "Pridať uzol",
+ "remove_node": "Odstrániť uzol"
+ }
+ },
+ "person": {
+ "add_person": "Pridať osobu",
+ "caption": "Ľudia",
+ "confirm_delete": "Naozaj chcete túto osobu odstrániť?",
+ "confirm_delete2": "Všetky zariadenia patriace k tejto osobe sa stanú nepriradené.",
+ "create_person": "Vytvoriť osobu",
+ "description": "Spravujte ľudí, ktorých Home Assistant sleduje",
+ "detail": {
+ "admin": "Administrator",
+ "allow_login": "Povoliť osobe prihlásiť sa",
+ "confirm_delete_user": "Naozaj chcete odstrániť používateľský účet pre {name} ? Stále môžete sledovať používateľa, ale osoba sa už nebude môcť prihlásiť.",
+ "create": "Vytvoriť",
+ "delete": "Odstrániť",
+ "device_tracker_intro": "Vyberte zariadenia, ktoré patria tejto osobe.",
+ "device_tracker_pick": "Vyberte zariadenie na sledovanie",
+ "device_tracker_picked": "Sledovať zariadenie",
+ "link_integrations_page": "Stránka Integrácií",
+ "link_presence_detection_integrations": "Integrácie detekcie prítomnosti",
+ "linked_user": "Prepojený používateľa",
+ "name": "Meno",
+ "name_error_msg": "Meno je povinné",
+ "new_person": "Nová osoba",
+ "no_device_tracker_available_intro": "Ak máte zariadenia, ktoré zisťujú prítomnosť osoby, budete ich môcť priradiť tu. Prvé zariadenie môžete pridať pridaním integrácie na zisťovanie prítomnosti zo stránky integrácií.",
+ "update": "Aktualizovať"
+ },
+ "introduction": "Tu môžete definovať každú osobu, ktorá vás zaujíma v Home Assistant.",
+ "learn_more": "Získajte viac informácií o osobách",
+ "no_persons_created_yet": "Zdá sa, že ste ešte nevytvorili žiadne osoby.",
+ "note_about_persons_configured_in_yaml": "Poznámka: Osoby konfigurované prostredníctvom configuration.yaml nie je možné upravovať prostredníctvom používateľského rozhrania.",
+ "person_not_found": "Nemohli sme nájsť osobu, ktorú ste sa snažili upraviť.",
+ "person_not_found_title": "Osoba sa nenašla"
+ },
+ "scene": {
+ "activated": "Aktivovaná scéna {name}.",
+ "caption": "Scény",
+ "description": "Zachyťte stavy zariadenia a ľahko si ich neskôr vyvolajte",
+ "editor": {
+ "area": "Oblasť",
+ "default_name": "Nová scéna",
+ "devices": {
+ "add": "Pridať zariadenie",
+ "delete": "Odstrániť zariadenie",
+ "header": "Zariadenia",
+ "introduction": "Pridajte zariadenia, ktoré chcete zahrnúť do svojej scény. Nastavte všetky zariadenia do stavu, ktorý chcete pre túto scénu."
+ },
+ "entities": {
+ "add": "Pridať entitu",
+ "delete": "Odstrániť entitu",
+ "device_entities": "Ak pridáte entitu, ktorá patrí k zariadeniu, zariadenie sa pridá.",
+ "header": "Entity",
+ "introduction": "Entity, ktoré nepatria zariadeniu, môžete nastaviť tu.",
+ "without_device": "Entity bez zariadenia"
+ },
+ "icon": "Ikona",
+ "introduction": "Využite scény na oživenie vášho domova.",
+ "load_error_not_editable": "Upraviť je možné iba scény zo scenes.yaml.",
+ "load_error_unknown": "Chyba pri načítaní scény ({err_no}).",
+ "name": "Názov",
+ "save": "Uložiť",
+ "unsaved_confirm": "Máte neuložené zmeny. Naozaj chcete odísť?"
+ },
+ "picker": {
+ "add_scene": "Pridať scénu",
+ "delete_confirm": "Naozaj chcete odstrániť túto scénu?",
+ "delete_scene": "Odstrániť scénu",
+ "duplicate": "Duplikovať",
+ "edit_scene": "Upraviť scénu",
+ "header": "Editor scén",
+ "headers": {
+ "name": "Názov"
+ },
+ "introduction": "Editor scén vám umožňuje vytvárať a upravovať scény. Postupujte podľa odkazu nižšie a prečítajte si pokyny, aby ste sa uistili, že ste Home Assistant nakonfigurovali správne.",
+ "learn_more": "Získajte viac informácií o scénach",
+ "no_scenes": "Nemohli sme nájsť žiadne editovateľné scény",
+ "only_editable": "Upraviť je možné iba scény zo scenes.yaml.",
+ "pick_scene": "Vyberte scénu, ktorú chcete upraviť",
+ "show_info_scene": "Zobraziť informácie o scéne"
+ }
+ },
+ "script": {
+ "caption": "Skripty",
+ "description": "Spustite sekvencie akcií",
+ "editor": {
+ "alias": "Názov",
+ "default_name": "Nový skript",
+ "delete_confirm": "Naozaj chcete odstrániť tento skript?",
+ "delete_script": "Odstrániť skript",
+ "header": "Skript: {name}",
+ "icon": "Ikona",
+ "id": "Entity ID",
+ "id_already_exists": "Toto ID už existuje",
+ "introduction": "Pomocou skriptov môžete spustiť postupnosť akcií.",
+ "link_available_actions": "Získajte viac informácií o dostupných akciách.",
+ "load_error_not_editable": "Iba skripty zo súboru scripts.yaml sú editovateľné.",
+ "max": {
+ "queued": "Dĺžka fronty"
+ },
+ "modes": {
+ "documentation": "dokumentácia skriptu",
+ "label": "Režim",
+ "parallel": "Paralelne",
+ "queued": "Fronta",
+ "restart": "Reštart"
+ },
+ "save_script": "Uložiť skript",
+ "sequence": "Sekvencia",
+ "sequence_sentence": "Sled akcií tohto skriptu",
+ "show_trace": "Zobraziť trace"
+ },
+ "picker": {
+ "add_script": "Pridať skript",
+ "dev_script": "Ladiť skript",
+ "duplicate": "Duplikovať",
+ "duplicate_script": "Duplikovať skript",
+ "header": "Editor skriptov",
+ "headers": {
+ "name": "Názov"
+ },
+ "introduction": "Editor skriptov vám umožňuje vytvárať a upravovať skripty. Postupujte podľa odkazu nižšie a prečítajte si pokyny, aby ste sa uistili, že ste Home Assistant nakonfigurovali správne.",
+ "learn_more": "Viac informácií o skriptoch",
+ "no_scripts": "Nenašli sa žiadne editovateľné skripty",
+ "run_script": "Spustiť skript",
+ "show_info": "Zobraziť informácie o skripte"
+ }
+ },
+ "server_control": {
+ "caption": "Správa servera",
+ "description": "Reštartujte a zastavte server Home Assistant",
+ "section": {
+ "reloading": {
+ "automation": "Znova načítať automatizácie",
+ "command_line": "Znova načítať entity príkazového riadku",
+ "core": "Znova načítať polohu a prispôsobenia",
+ "filesize": "Znova načítať entity veľkosti súboru",
+ "filter": "Znova načítať entity filtra",
+ "generic": "Znova načítať entity generických IP kamier",
+ "generic_thermostat": "Znova načítať entity generického termostatu",
+ "group": "Znova načítať skupiny, skupiny entít a skupiny notifikačných služieb",
+ "heading": "Načítavanie novej konfigurácie",
+ "history_stats": "Znova načítať entity štatistiky histórie",
+ "homekit": "Znova načítať HomeKit",
+ "input_boolean": "Znova načítať pomocníkov - prepínače",
+ "input_datetime": "Znova načítať pomocníkov - dátumy, časy",
+ "input_number": "Znova načítať pomocníkov - čísla",
+ "input_select": "Znova načítať pomocníkov - výbery",
+ "input_text": "Znova načítať pomocníkov - texty",
+ "introduction": "Niektoré časti aplikácie Home Assistant sa môžu načítať bez nutnosti reštartovania. Opätovným načítaním sa zahodí aktuálna konfigurácia a načíta sa nová.",
+ "min_max": "Znova načítať min/max entity",
+ "mqtt": "Znova načítať ručne nakonfigurované MQTT entity",
+ "person": "Znova načítať osoby",
+ "ping": "Znova načítať entity binárneho snímača ping",
+ "reload": "Znova načítať {domain}",
+ "rest": "Znova načítať rest entity a rest notifikačné služby",
+ "rpi_gpio": "Znova načítať Raspberry Pi GPIO entity",
+ "scene": "Znova načítať scény",
+ "script": "Znova načítať skripty",
+ "smtp": "Znova načítať notifikačné služby SMTP",
+ "statistics": "Znova načítať štatistické entity",
+ "telegram": "Znova načítať notifikačné služby telegram",
+ "template": "Znova načítať entity šablóny",
+ "themes": "Témy",
+ "timer": "Časovače",
+ "trend": "Znova načítať entity trendov",
+ "universal": "Znova načítať entity univerzálneho prehrávača médií",
+ "zone": "Znova načítať zóny"
+ },
+ "server_management": {
+ "confirm_restart": "Naozaj chcete reštartovať Home Assistanta?",
+ "confirm_stop": "Naozaj chcete zastaviť Home Assistanta?",
+ "heading": "Správa servera",
+ "introduction": "Ovládajte Váš Home Assistant server... z aplikácie Home Assistant.",
+ "restart": "Reštartovať",
+ "stop": "Zastaviť"
+ },
+ "validation": {
+ "check_config": "Skontrolovať konfiguráciu",
+ "heading": "Kontrola konfigurácie",
+ "introduction": "Overte svoju konfiguráciu, ak ste nedávno vykonali nejaké zmeny v konfigurácii a chcete sa uistiť, že je to všetko v poriadku",
+ "invalid": "Konfigurácia je neplatná",
+ "valid": "Konfigurácia je platná!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Pridať značku",
+ "caption": "Značky",
+ "confirm_remove": "Naozaj chcete odstrániť značku {tag} ?",
+ "confirm_remove_title": "Odstrániť značku?",
+ "description": "Spustiť automatizácie pri naskenovaní značky NFC, QR kódu atď.",
+ "detail": {
+ "companion_apps": "sprievodné aplikácie",
+ "create": "Vytvoriť",
+ "delete": "Odstrániť",
+ "name": "Názov",
+ "tag_id": "ID značky",
+ "update": "Aktualizovať"
+ },
+ "headers": {
+ "last_scanned": "Naposledy naskenované",
+ "name": "Názov"
+ },
+ "never_scanned": "Nikdy neskenované",
+ "no_tags": "Žiadne značky",
+ "write": "Zapísať"
+ },
+ "updates": {
+ "show": "zobraziť"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Pridať používateľa",
+ "create": "Vytvoriť",
+ "password": "Heslo",
+ "password_confirm": "Potvrdiť heslo",
+ "password_not_match": "Heslá sa nezhodujú"
+ },
+ "caption": "Používatelia",
+ "description": "Spravujte používateľské účty Home Assistant",
+ "editor": {
+ "activate_user": "Aktivovať používateľa",
+ "active": "Aktívny",
+ "active_tooltip": "Určuje, či sa môže používateľ prihlásiť",
+ "admin": "správca",
+ "caption": "Zobraziť používateľa",
+ "change_password": "Zmeniť heslo",
+ "confirm_user_deletion": "Naozaj chcete odstrániť {name}?",
+ "deactivate_user": "Deaktivovať používateľa",
+ "delete_user": "Vymazať používateľa",
+ "group": "Skupina",
+ "id": "ID",
+ "name": "Zobraziť meno",
+ "new_password": "Nové heslo",
+ "owner": "Vlastník",
+ "password_changed": "Heslo bolo úspešne zmenené",
+ "system_generated": "Systémom vytvorený",
+ "system_generated_users_not_editable": "Nie je možné aktualizovať používateľov generovaných systémom.",
+ "system_generated_users_not_removable": "Nie je možné odstrániť používateľov generovaných systémom.",
+ "unnamed_user": "Nepomenovaný používateľ",
+ "update_user": "Aktualizovať",
+ "username": "Užívateľské meno"
+ },
+ "picker": {
+ "add_user": "Pridať používateľa",
+ "headers": {
+ "group": "Skupina",
+ "is_active": "Aktívny",
+ "is_owner": "Vlastník",
+ "name": "Zobraziť meno",
+ "system": "Systémom vytvorený",
+ "username": "Užívateľské meno"
+ }
+ },
+ "users_privileges_note": "Funkcia skupiny používateľov je vo vývoji. Používateľ nebude môcť spravovať inštanciu prostredníctvom používateľského rozhrania. Stále kontrolujeme všetky koncové body rozhrania API na správu, aby sme sa uistili, že správne obmedzujú prístup na správcov."
+ },
+ "zha": {
+ "add_device": "Pridať zariadenie",
+ "add_device_page": {
+ "no_devices_found": "Neboli nájdené žiadne zariadenia, uistite sa, že sú v režime párovania a udržujte ich pri prebudené počas zisťovania.",
+ "search_again": "Hľadať znova",
+ "spinner": "Vyhľadávanie ZHA Zigbee zariadení …"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Atribúty vybraného klastra",
+ "get_zigbee_attribute": "Získať atribút Zigbee",
+ "header": "Atribúty klastra",
+ "help_attribute_dropdown": "Vyberte atribút, ktorý chcete zobraziť alebo nastaviť jeho hodnotu.",
+ "help_get_zigbee_attribute": "Získajte hodnotu vybratého atribútu.",
+ "help_set_zigbee_attribute": "Nastavte hodnotu atribútu pre určený klaster na určenej entite.",
+ "introduction": "Zobraziť a upraviť atribúty klastra.",
+ "set_zigbee_attribute": "Nastaviť atribút ZigBee"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Príkazy vybraného klastra",
+ "header": "Príkazy klastra",
+ "help_command_dropdown": "Vyberte príkaz, s ktorým chcete pracovať.",
+ "introduction": "Zobrazenie a vydávanie príkazov klastra.",
+ "issue_zigbee_command": "Vydanie príkazu Zigbee"
+ },
+ "clusters": {
+ "header": "Zoskupenia",
+ "help_cluster_dropdown": "Vyberte klaster na zobrazenie atribútov a príkazov.",
+ "introduction": "Klastre sú stavebnými kameňmi pre funkčnosť Zigbee. Rozdeľujú funkčnosť na logické jednotky. Existujú typy klientov a serverov, ktoré pozostávajú z atribútov a príkazov."
+ },
+ "common": {
+ "clusters": "Zoskupenia",
+ "manufacturer_code_override": "Prepísanie kódu výrobcu",
+ "value": "Hodnota"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Konfigurácia dokončená",
+ "CONFIGURED_status_text": "Inicializácia",
+ "INITIALIZED": "Inicializácia dokončená",
+ "INITIALIZED_status_text": "Zariadenie je pripravené na použitie",
+ "INTERVIEW_COMPLETE": "Rozhovor dokončený",
+ "INTERVIEW_COMPLETE_status_text": "Konfigurácia",
+ "PAIRED": "Nájdené zariadenie",
+ "PAIRED_status_text": "Začína sa rozhovor"
+ },
+ "group_binding": {
+ "bind_button_help": "Prepojte vybranú skupinu na vybrané zoskupenia zariadení.",
+ "unbind_button_help": "Odpojte vybratú skupinu z vybratých zoskupení zariadení."
+ },
+ "groups": {
+ "add_group": "Pridať skupinu",
+ "add_members": "Pridať členov",
+ "caption": "Skupiny",
+ "create": "Vytvoriť skupinu",
+ "create_group": "Zigbee Home Automation - Vytvoriť skupinu",
+ "create_group_details": "Zadajte požadované údaje na vytvorenie novej skupiny ZigBee",
+ "creating_group": "Vytvorenie skupiny",
+ "delete": "Odstrániť skupinu",
+ "group_details": "Tu sú všetky podrobnosti o vybranej skupine Zigbee.",
+ "group_id": "ID skupiny",
+ "group_info": "Informácie o skupine",
+ "group_name_placeholder": "Názov skupiny",
+ "group_not_found": "Skupina sa nenašla!",
+ "groups": "Skupiny",
+ "members": "členovia",
+ "remove_members": "Odstrániť členov",
+ "removing_members": "Odstránenie členov"
+ },
+ "network": {
+ "caption": "Sieť"
+ },
+ "visualization": {
+ "auto_zoom": "Automatické zväčšenie",
+ "caption": "Vizualizácia",
+ "header": "Sieťová vizualizácia",
+ "highlight_label": "Zvýrazniť zariadenia",
+ "refresh_topology": "Obnoviť topológiu",
+ "zoom_label": "Priblížiť na zariadenie"
+ }
+ },
+ "zone": {
+ "add_zone": "Pridať zónu",
+ "caption": "Zóny",
+ "configured_in_yaml": "Zóny vytvorené prostredníctvom configuration.yaml nie je možné upravovať pomocou používateľského rozhrania.",
+ "confirm_delete": "Naozaj chcete odstrániť túto zónu?",
+ "create_zone": "Vytvoriť zónu",
+ "description": "Spravujte zóny, v ktorých chcete sledovať osoby.",
+ "detail": {
+ "create": "Vytvoriť",
+ "delete": "Odstrániť",
+ "icon": "Ikona",
+ "icon_error_msg": "Ikona by mala byť vo formáte \"predpona:názov-ikony\", napríklad: \"mdi:home\"",
+ "latitude": "Zemepisná šírka",
+ "longitude": "Zemepisná dĺžka",
+ "name": "Názov",
+ "new_zone": "Nová zóna",
+ "passive": "Pasívne",
+ "passive_note": "Pasívne zóny sú skryté vo frontende a nie sú používané ako umiestnenia pre sledovacie zariadenia. Toto je užitočné, ak chcete používať zóny len pre automatizácie.",
+ "radius": "Okruh",
+ "required_error_msg": "Toto pole je povinné",
+ "update": "Aktualizovať"
+ },
+ "edit_home_zone": "Okruh domovskej zóny zatiaľ nie je možné upravovať z frontendu. Presunutím značky na mape presuniete domácu zónu.",
+ "edit_home_zone_narrow": "Okruh domovskej zóny zatiaľ nie je možné upravovať z frontendu. Poloha sa dá zmeniť zo všeobecnej konfigurácie.",
+ "edit_zone": "Upraviť zónu",
+ "go_to_core_config": "Prejsť na všeobecnú konfiguráciu?",
+ "home_zone_core_config": "Umiestnenie vašej domácej zóny je možné upravovať na stránke so všeobecnou konfiguráciou. Okruh domovskej zóny zatiaľ nie je možné upravovať z frontendu. Chcete prejsť na všeobecnú konfiguráciu?",
+ "introduction": "Zóny vám umožňujú vybrať špecifické oblasti na mape. Ak sa osoba nachádza v nejakej zóne, v stavoch sa zobrazí názov konkrétnej zóny. Zóny môžu byť tiež použité ako spúšťač alebo podmienka v rámci automatizácií.",
+ "no_zones_created_yet": "Zdá sa, že ste ešte nevytvorili žiadne zóny."
+ },
+ "zwave": {
+ "common": {
+ "index": "Index",
+ "instance": "Inštancie",
+ "unknown": "Neznámy",
+ "value": "Hodnota",
+ "wakeup_interval": "Interval prebudenia"
+ },
+ "description": "Spravujte svoju Z-Wave sieť",
+ "learn_more": "Viac informácií o Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "Prejdite na OpenZWave",
+ "introduction": "Tento sprievodca vám pomôže prejsť zo staršej integrácie Z-Wave na integráciu OpenZWave, ktorá je momentálne v beta verzii."
+ },
+ "zwave_js": {
+ "header": "Migrovať na Z-Wave JS",
+ "introduction": "Táto integrácia už nie je podporovaná a odporúčame vám prejsť na novú integráciu Z-Wave JS. Tento sprievodca vám pomôže migrovať zo staršej integrácie Z-Wave na novú integráciu Z-Wave JS."
+ }
+ },
+ "network_management": {
+ "header": "Správa siete Z-Wave",
+ "introduction": "Spúšťajte príkazy, ktoré ovplyvňujú sieť Z-Wave. Nebudete mať spätnú väzbu o tom, či väčšina príkazov bola úspešná, ale môžete skontrolovať protokol OZW a pokúsiť sa to zistiť."
+ },
+ "network_status": {
+ "network_started": "Sieť Z-Wave bola spustena",
+ "network_started_note_all_queried": "Všetky uzly boli kontaktované.",
+ "network_started_note_some_queried": "Bdelé uzly boli kontaktované. Spiace uzly budú kontaktované, keď sa prebudia.",
+ "network_starting": "Spúšťa sa sieť Z-Wave …",
+ "network_starting_note": "Môže to chvíľu trvať v závislosti od veľkosti siete.",
+ "network_stopped": "Sieť Z-Wave bola zastavená"
+ },
+ "node_config": {
+ "config_parameter": "Konfigurovať parameter",
+ "config_value": "Konfiguračná hodnota",
+ "false": "False",
+ "header": "Možnosti konfigurácie uzla",
+ "seconds": "Sekúnd",
+ "set_config_parameter": "Nastavte konfiguračný parameter",
+ "set_wakeup": "Nastaviť interval prebudenia",
+ "true": "True"
+ },
+ "node_management": {
+ "add_to_group": "Pridať do skupiny",
+ "nodes_in_group": "Ostatné uzly v tejto skupine:",
+ "remove_from_group": "Odstrániť zo skupiny"
+ },
+ "ozw_log": {
+ "introduction": "Zobraziť denník. 0 je minimum (načíta celý protokol) a 1000 je maximum. Načítanie zobrazí statický protokol a posledný riadok sa automaticky aktualizuje s určeným počtom riadkov protokolu."
+ },
+ "services": {
+ "add_node": "Pridať zariadenie",
+ "add_node_secure": "Bezpečne pridať zariadenie",
+ "cancel_command": "Zrušiť príkaz",
+ "heal_network": "Vyliečiť sieť",
+ "refresh_entity": "Obnoviť entitu",
+ "remove_node": "Odstrániť zariadenie",
+ "save_config": "Uložiť konfiguráciu",
+ "soft_reset": "Softvérový reset",
+ "start_network": "Spustiť sieť",
+ "stop_network": "Zastaviť sieť",
+ "test_network": "Otestovať sieť"
+ },
+ "values": {
+ "header": "Hodnoty zariadenia"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Zrušiť zahrnutie",
+ "controller_in_inclusion_mode": "Váš ovládač Z-Wave je teraz v režime zaradenia.",
+ "enter_qr_code": "Zadajte hodnotu QR kódu",
+ "follow_device_instructions": "Podľa pokynov dodaných so zariadením spustíte párovanie v zariadení.",
+ "inclusion_failed": "Uzol sa nepodarilo pridať. Ďalšie informácie nájdete v denníkoch.",
+ "inclusion_finished": "Uzol bol pridaný. Môže trvať niekoľko minút, kým sa všetky entity zobrazia, keď dokončíme nastavenie uzla na pozadí.",
+ "introduction": "Tento sprievodca vás prevedie pridaním uzla do vašej siete Z-Wave.",
+ "qr_code": "QR kód",
+ "scan_qr_code": "Naskenujte QR kód",
+ "secure_inclusion_warning": "Zabezpečené zariadenia vyžadujú ďalšiu šírku pásma; príliš veľa zabezpečených zariadení môže spomaliť vašu sieť Z-Wave. Bezpečné začlenenie odporúčame použiť iba pre zariadenia, ktoré to vyžadujú, ako sú zámky alebo otvárače garážových brán.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Príklad: Staršie dverné zámky bez podpory S2",
+ "title": "S0 Legacy"
+ },
+ "S2_AccessControl": {
+ "description": "Príklad: zámky dverí a garážové brány",
+ "title": "Kontrola prístupu S2"
+ },
+ "S2_Authenticated": {
+ "description": "Príklad: osvetlenie, senzory a zabezpečovacie systémy",
+ "title": "S2 Overené"
+ },
+ "S2_Unauthenticated": {
+ "description": "Ako S2 overené, ale bez overenia, či je zahrnuté správne zariadenie",
+ "title": "Neoverené S2"
+ }
+ },
+ "start_inclusion": "Spustiť začleňovanie",
+ "start_secure_inclusion": "Spustiť bezpečné začlenenie",
+ "title": "Pridajte uzol Z-Wave",
+ "use_secure_inclusion": "Použite bezpečné zahrnutie",
+ "view_device": "Zobraziť zariadenie"
+ },
+ "common": {
+ "add_node": "Pridať uzol",
+ "back": "Späť",
+ "close": "Zavrieť",
+ "home_id": "ID domu",
+ "network": "Sieť",
+ "node_id": "ID uzla",
+ "reconfigure_server": "Prekonfigurovať server",
+ "remove_node": "Odstrániť uzol",
+ "source": "Zdroj"
+ },
+ "dashboard": {
+ "driver_version": "Verzia ovládača",
+ "dump_dead_nodes_text": "Niektoré z vašich uzlov neodpovedali a predpokladá sa, že sú mŕtve. Tieto sa nebudú úplne exportovať.",
+ "dump_dead_nodes_title": "Niektoré z vašich uzlov sú mŕtve",
+ "dump_debug": "Stiahnutie výpisu siete na diagnostiku problémov",
+ "dump_not_ready_confirm": "Stiahnuť",
+ "dump_not_ready_text": "Ak vytvoríte export, hoci nie všetky uzly sú pripravené, mohli by ste prísť o potrebné údaje. Poskytnite svojej sieti čas na dopytovanie všetkých uzlov. Chcete pokračovať s výpisom?",
+ "dump_not_ready_title": "Nie všetky uzly sú pripravené",
+ "header": "Spravujte svoju sieť Z-Wave",
+ "home_id": "ID domu",
+ "introduction": "Spravujte svoju sieť Z-Wave a uzly Z-Wave",
+ "nodes_ready": "Uzly pripravené",
+ "server_url": "URL servera",
+ "server_version": "Verzia servera"
+ },
+ "device_info": {
+ "highest_security": "Najvyššie zabezpečenie",
+ "is_secure": "Zabezpečiť",
+ "node_ready": "Uzol pripravený",
+ "node_status": "Stav uzla",
+ "remove_failed": "Odstrániť nefunkčné zariadenie",
+ "unknown": "Neznáme",
+ "zwave_info": "Z-Wave Info",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Verzia {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "Obnovenie siete bolo zrušené.",
+ "healing_complete": "Obnova siete je dokončené.",
+ "healing_failed": "Opravenie zlyhalo. V záznamoch môžu byť k dispozícii ďalšie informácie.",
+ "stop_heal": "Zastaviť opravu"
+ },
+ "navigation": {
+ "network": "Sieť"
+ },
+ "network_status": {
+ "connected": "Pripojené",
+ "connecting": "Pripája sa",
+ "unknown": "Neznámy"
+ },
+ "node_config": {
+ "parameter": "Parameter"
+ },
+ "node_status": {
+ "alive": "Nažive",
+ "asleep": "Spánok",
+ "awake": "Prebudiť",
+ "dead": "Nereaguje",
+ "unknown": "Neznámy"
+ },
+ "remove_failed_node": {
+ "in_progress": "Prebieha odstraňovanie zariadenia.",
+ "introduction": "Odstráňte chybné zariadenie zo siete Z-Wave. Použite túto možnosť, ak nemôžete normálne vylúčiť zariadenie, pretože je poškodené alebo nefunkčné.",
+ "removal_failed": "Nepodarilo sa odstrániť zariadenie z vašej siete Z-Wave.",
+ "removal_finished": "Zariadenie {id} bolo odstránené z vašej siete Z-Wave.",
+ "remove_device": "Odstrániť zariadenie",
+ "title": "Odstrániť nefunkčné zariadenie Z-Wave"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Zrušiť vylúčenie",
+ "controller_in_exclusion_mode": "Váš Z-Wave kontrolér je teraz v režime vylúčenia.",
+ "exclusion_failed": "Uzol sa nepodarilo odstrániť. Ďalšie informácie nájdete v denníkoch.",
+ "exclusion_finished": "Uzol {id} bol odstránený z vašej siete Z-Wave.",
+ "introduction": "Odstráňte uzol zo Z-Wave siete, priradené zariadenie a entity z Home Assistanta.",
+ "start_exclusion": "Spustiť vylúčenie",
+ "title": "Odstráňte uzol Z-Wave"
+ }
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Aktívni poslucháči",
+ "alert_event_type": "Typ udalosti je povinné pole",
+ "available_events": "Dostupné udalosti",
+ "count_listeners": " ({count} poslucháčov)",
+ "data": "Údaje o udalosti (YAML, voliteľné)",
+ "description": "Spustite udalosť na zbernicu udalostí.",
+ "documentation": "Dokumentácia udalostí.",
+ "event_fired": "Udalosť {name} sa spustila",
+ "fire_event": "Odpáliť udalosť",
+ "listen_to_events": "Počúvanie udalostí",
+ "listening_to": "Počúvanie",
+ "notification_event_fired": "Udalosť {type} úspešne spustená!",
+ "start_listening": "Začať počúvať",
+ "stop_listening": "Zastaviť počúvanie",
+ "subscribe_to": "Udalosť na ktorú čakať",
+ "title": "Udalosti",
+ "type": "Typ udalosti"
+ },
+ "services": {
+ "accepts_target": "Príklad použitia tejto služby: `entity_id: light.bed_light`",
+ "all_parameters": "Všetky dostupné parametre",
+ "call_service": "Zavolať službu",
+ "column_description": "Popis",
+ "column_example": "Príklad",
+ "column_parameter": "Parameter",
+ "description": "Vývojársky nástroj vám umožňuje zavolať akúkoľvek dostupnú službu v Home Assistant.",
+ "fill_example_data": "Vyplniť vzorové údaje",
+ "title": "Služby",
+ "ui_mode": "Prejdite do režimu používateľského rozhrania",
+ "yaml_mode": "Prejdite do režimu YAML",
+ "yaml_parameters": "Parametre dostupné len v móde YAML"
+ },
+ "states": {
+ "attributes": "Atribúty",
+ "copy_id": "Kopírovať ID do schránky",
+ "current_entities": "Aktuálne entity",
+ "description1": "Nastavte zobrazenie zariadenia v Home Assistant",
+ "description2": "Toto nebude komunikovať so skutočným zariadením.",
+ "entity": "Entita",
+ "filter_attributes": "Filtrovať atribúty",
+ "filter_entities": "Filtrovať entity",
+ "filter_states": "Filtrovať stavy",
+ "last_changed": "Posledná zmena",
+ "last_updated": "Posledná aktualizácia",
+ "more_info": "Viac informácií",
+ "set_state": "Nastaviť stav",
+ "state": "Stav",
+ "state_attributes": "Atribúty stavu (YAML, voliteľné)",
+ "title": "Stavy"
+ },
+ "statistics": {
+ "entity": "Entita",
+ "fix_issue": {
+ "fix": "Opraviť problém",
+ "units_changed": {
+ "clear": "Odstrániť všetky staré štatistické údaje pre túto entitu",
+ "fix": "Opraviť problém",
+ "title": "Merná jednotka tejto entity sa zmenila",
+ "update": "Aktualizovať historické štatistické hodnoty z \"{metadata_unit}\" na \"{state_unit}\""
+ }
+ },
+ "issue": "Problém",
+ "issues": {
+ "entity_not_recorded": "Táto entita je vylúčená zo zaznamenávania.",
+ "units_changed": "Jednotka tejto entity sa zmenila z \"{metadata_unit}\" na \"{state_unit}\".",
+ "unsupported_state_class": "Stavová trieda \"{state_class}\" tejto entity nie je podporovaná.",
+ "unsupported_unit": "Merná jednotka (\"{state_unit}\") tejto entity sa nezhoduje s jednotkou triedy zariadenia \"{device_class}\".",
+ "unsupported_unit_metadata": "Jednotka (\"{metadata_unit}\") zaznamenaných štatistík sa nezhoduje s podporovanou jednotkou \"{supported_unit}\" triedy zariadenia \"{device_class}\".",
+ "unsupported_unit_state": "Jednotka (\"{state_unit}\") tejto entity sa nezhoduje s jednotkou triedy zariadenia \"{device_class}\"."
+ },
+ "no_issue": "Žiadny problém",
+ "title": "Štatistika"
+ },
+ "templates": {
+ "all_listeners": "Táto šablóna počúva všetky udalosti zmenené stavom.",
+ "description": "Šablóny sa vykresľujú pomocou nástroja šablóny Jinja2 s niektorými špecifickými rozšíreniami pre Home Assistant.",
+ "domain": "Doména",
+ "editor": "Editor šablóna",
+ "entity": "Entita",
+ "listeners": "Táto šablóna počúva nasledujúce udalosti zmenené stavom:",
+ "no_listeners": "Táto šablóna nepočúva žiadne udalosti a nebude sa automaticky aktualizovať.",
+ "result_type": "Typ výsledku",
+ "template_extensions": "Rozšírenia šablóny Home Assistant",
+ "time": "Táto šablóna sa aktualizuje na začiatku každej minúty.",
+ "title": "Šablóny"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_distribution_title": "Distribúcia energie",
+ "energy_gas_graph_title": "Spotreba plynu",
+ "energy_sources_table_title": "Zdroje",
+ "energy_usage_graph_title": "Spotreba energie"
+ },
+ "charts": {
+ "solar": "Solárne",
+ "stat_house_energy_meter": "Celková spotreba energie"
+ },
+ "setup": {
+ "back": "Späť",
+ "next": "Ďalej"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Túto funkciu môžete použiť, iba ak ste prevzali kontrolu nad používateľským rozhraním Lovelace.",
+ "saving_failed": "Uloženie konfigurácie Lovelace UI zlyhalo.",
+ "yaml_unsupported": "Túto funkciu nemôžete použiť, keď používate používateľské rozhranie Lovelace v režime YAML."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Naozaj chcete vykonať akciu \"{action}\"?",
+ "no_entity_more_info": "Pre ďalšie informačné dialógy nieje žiadna entita",
+ "no_entity_toggle": "Žiadna entita na prepínanie",
+ "no_navigation_path": "Žiadna navigačná cesta",
+ "no_service": "Žiadna služba na spustenie",
+ "no_url": "Žiadna adresa URL na otvorenie"
+ },
+ "confirm_delete": "Naozaj chcete odstrániť túto kartu?",
+ "empty_state": {
+ "go_to_integrations_page": "Prejsť na stránku integrácií",
+ "no_devices": "Táto stránka vám umožňuje ovládať vaše zariadenia, zdá sa však, že ešte nemáte nastavené žiadne zariadenia. Ak chcete začať, choďte na stránku integrácií.",
+ "title": "Vitajte doma"
+ },
+ "energy": {
+ "energy_devices_graph": {
+ "energy_usage": "Spotreba energie"
+ },
+ "energy_distribution": {
+ "battery": "Batéria",
+ "gas": "Plyn",
+ "grid": "Distribučná sieť",
+ "home": "Doma",
+ "solar": "Solárna"
+ },
+ "energy_solar_graph": {
+ "forecast": "Predpoveď {name}",
+ "production": "Produkcia {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Batéria (celkom)",
+ "cost": "Náklady",
+ "energy": "Energia",
+ "grid_total": "Distribučná sieť (celkom)",
+ "source": "Zdroj",
+ "total_costs": "Celkové náklady"
+ },
+ "loading": "Načítava sa..."
+ },
+ "entities": {
+ "never_triggered": "Nikdy nespustené"
+ },
+ "picture-elements": {
+ "call_service": "Zavolať službu {name}",
+ "hold": "Držať:",
+ "more_info": "Zobraziť viac informácií: {name}",
+ "navigate_to": "Navigovať do {location}",
+ "tap": "Ťuknite:",
+ "toggle": "Prepnúť {name}",
+ "url": "Otvoriť okno na {url_path}"
+ },
+ "safe-mode": {
+ "description": "Pri načítaní vašej konfigurácie sa Home Assistant dostal do problémov a teraz beží v núdzovom režime. Prezrite si denník chýb a zistite, čo sa stalo.",
+ "header": "Núdzový režim je aktivovaný"
+ },
+ "shopping-list": {
+ "add_item": "Pridať položku",
+ "checked_items": "Označené položky",
+ "clear_items": "Vymazať označené položky",
+ "drag_and_drop": "Presuňte myšou",
+ "reorder_items": "Zmena poradia položiek"
+ },
+ "show_more_info": "Zobraziť viac informácií",
+ "starting": {
+ "description": "Home Assistant sa spúšťa, čakajte prosím…"
+ }
+ },
+ "changed_toast": {
+ "message": "Konfigurácia používateľského rozhrania Lovelace pre tento dashboard bola aktualizovaná. Obnoviť a zobraziť zmeny?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Deň",
+ "month": "Mesiac",
+ "today": "Dnes",
+ "week": "Týždeň",
+ "year": "Rok"
+ },
+ "timestamp-display": {
+ "invalid_format": "Neplatný formát zobrazenia"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Zavolať službu",
+ "default_action": "Predvolená akcia",
+ "more-info": "Viac informácií",
+ "navigate": "Navigovať",
+ "none": "Žiadna akcia",
+ "toggle": "Prepnúť",
+ "url": "URL"
+ },
+ "navigation_path": "Navigačná cesta",
+ "url_path": "Cesta adresy URL"
+ },
+ "card": {
+ "alarm-panel": {
+ "name": "Ovládací panel alarmu"
+ },
+ "area": {
+ "description": "Karta Oblasť automaticky zobrazuje entity konkrétnej oblasti.",
+ "name": "Oblasť"
+ },
+ "button": {
+ "default_action_help": "Predvolená akcia závisí od schopností entity, bude buď prepnutá, alebo sa zobrazí viac informácií.",
+ "description": "Karta Button umožňuje pridávať tlačidlá na vykonávanie úloh.",
+ "name": "Tlačidlo"
+ },
+ "calendar": {
+ "calendar_entities": "Entity kalendára",
+ "description": "Na karte Kalendár sa zobrazuje kalendár vrátane zobrazení dňa, týždňa a zoznamu",
+ "inital_view": "Počiatočné zobrazenie",
+ "name": "Kalendár",
+ "views": {
+ "dayGridDay": "Deň",
+ "dayGridMonth": "Mesiac",
+ "listWeek": "Zoznam"
+ }
+ },
+ "conditional": {
+ "card": "Karta",
+ "change_type": "Zmeniť typ",
+ "condition_explanation": "Karta sa zobrazí, keď budú splnené VŠETKY nižšie uvedené podmienky.",
+ "conditions": "Podmienky",
+ "description": "Karta Podmienka zobrazuje ďalšiu kartu na základe stavu entity"
+ },
+ "config": {
+ "optional": "Voliteľné",
+ "required": "Požadované"
+ },
+ "entities": {
+ "description": "Karta Entity je najbežnejším typom karty. Zoskupuje položky do zoznamov.",
+ "edit_special_row": "Kliknutím na tlačidlo upraviť zobrazíte podrobnosti tohto riadku",
+ "entity_row": {
+ "attribute": "Atribút",
+ "button": "Tlačidlo",
+ "buttons": "Tlačidlá",
+ "cast": "Obsadenie",
+ "conditional": "Podmienené",
+ "divider": "Delič",
+ "section": "Sekcia",
+ "weblink": "Internetový odkaz"
+ },
+ "entity_row_editor": "Editor riadkov entít",
+ "name": "Entity",
+ "secondary_info_values": {
+ "brightness": "Jas",
+ "entity-id": "ID entity",
+ "last-changed": "Posledná zmena",
+ "last-triggered": "Naposledy spustené",
+ "last-updated": "Posledná aktualizácia",
+ "none": "Žiadne sekundárne informácie",
+ "position": "Pozícia",
+ "tilt-position": "Pozícia dlaždice"
+ },
+ "show_header_toggle": "Zobraziť prepínač hlavičky?",
+ "toggle": "Prepnúť entity."
+ },
+ "entity-filter": {
+ "description": "Karta Entity Filter vám umožňuje definovať zoznam entít, ktoré chcete sledovať, iba ak sú v určitom stave.",
+ "name": "Filter entít"
+ },
+ "entity": {
+ "description": "Karta Entity vám poskytne rýchly prehľad o stave vašej entity.",
+ "name": "Entita"
+ },
+ "gauge": {
+ "description": "Karta Gauge je základná karta, ktorá umožňuje vizuálne vidieť údaje senzora.",
+ "needle_gauge": "Zobraziť ako ručičkový ukazovateľ?",
+ "severity": {
+ "green": "zelená",
+ "red": "červená",
+ "yellow": "žltá"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Pomer strán",
+ "attribute": "atribút",
+ "camera_image": "Entita fotoaparátu",
+ "camera_view": "Zobrazenie kamery",
+ "days_to_show": "Zobraziť dni",
+ "entities": "Entity",
+ "entity": "Entita",
+ "hold_action": "Akcia podržania",
+ "hours_to_show": "Hodín ukázať",
+ "icon": "ikona",
+ "icon_height": "Výška ikony",
+ "image": "Cesta k obrázku",
+ "manual": "Ručne",
+ "manual_description": "Potrebujete pridať vlastnú kartu alebo chcete iba ručne napísať YAML?",
+ "maximum": "Maximum",
+ "minimum": "Minimum",
+ "name": "Názov",
+ "no_theme": "Žiadna téma",
+ "refresh_interval": "Interval obnovenia",
+ "search": "Hľadať",
+ "show_icon": "Zobraziť ikonu?",
+ "show_name": "Zobraziť názov?",
+ "show_state": "Zobraziť stav?",
+ "state": "Stav",
+ "tap_action": "Akcia pri stlačení",
+ "theme": "Téma",
+ "title": "Názov",
+ "unit": "Jednotka",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Stĺpce",
+ "description": "Karta Glance je užitočná na zoskupenie viacerých senzorov do kompaktného prehľadu.",
+ "name": "Náhľad"
+ },
+ "grid": {
+ "columns": "Stĺpce",
+ "square": "Vykresliť karty ako štvorce"
+ },
+ "history-graph": {
+ "description": "Karta Graf histórie umožňuje zobraziť graf pre každú z uvedených entít.",
+ "name": "Graf Histórie"
+ },
+ "horizontal-stack": {
+ "description": "Karta Horizontal Stack vám umožňuje spojiť viac kariet, takže vždy sedia vedľa seba v priestore jedného stĺpca.",
+ "name": "Horizontálne zarovnanie"
+ },
+ "humidifier": {
+ "name": "Zvlhčovač"
+ },
+ "iframe": {
+ "name": "Web stránka"
+ },
+ "light": {
+ "description": "Karta Svetlo umožňuje zmeniť jas svetla.",
+ "name": "Svetlo"
+ },
+ "logbook": {
+ "description": "Karta denníka zobrazuje zoznam udalostí pre entity.",
+ "name": "Denník"
+ },
+ "map": {
+ "dark_mode": "Tmavý režim?",
+ "default_zoom": "Predvolený zoom",
+ "description": "Karta Mapa umožňuje zobraziť entity na mape.",
+ "geo_location_sources": "Zdroje geolokácie",
+ "name": "Mapa",
+ "source": "Zdroj"
+ },
+ "markdown": {
+ "content": "Obsah",
+ "description": "Karta Markdown sa používa na vykreslenie Markdown.",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "description": "Karta Ovládanie médií sa používa na zobrazenie entít prehrávača médií na rozhraní s ľahko použiteľnými ovládacími prvkami.",
+ "name": "Ovládanie médií"
+ },
+ "picture-elements": {
+ "description": "Karta Entita obrázka je jedným z najuniverzálnejších typov kariet. Karty umožňujú umiestňovať ikony alebo text a dokonca aj služby! Na obrázku na základe súradníc.",
+ "name": "Entita obrázka"
+ },
+ "picture-entity": {
+ "description": "Karta Entita obrázka zobrazuje entitu vo forme obrázka. Namiesto obrázkov z adresy URL môže zobraziť aj obrázok entít fotoaparátu.",
+ "name": "Entita obrázka"
+ },
+ "picture-glance": {
+ "description": "Karta Picture Glance zobrazuje obrázok a príslušné stavy entity ako ikonu. Entity na pravej strane umožňujú prepínať akcie, iné zobrazujú dialógové okno s ďalšími informáciami.",
+ "name": "Náhľad obrázka",
+ "state_entity": "Stav entity"
+ },
+ "picture": {
+ "description": "Karta Obrázok vám umožňuje nastaviť obrázok, ktorý je možné použiť na navigáciu vo vašom rozhraní alebo na volanie služby.",
+ "name": "Obrázok"
+ },
+ "plant-status": {
+ "description": "Karta Stav rastlín je určená všetkým nadšeným botanikom.",
+ "name": "Stav rastlín"
+ },
+ "sensor": {
+ "description": "Karta Senzor poskytuje rýchly prehľad o stave senzorov s voliteľným grafom na vizualizáciu zmien v priebehu času.",
+ "graph_type": "Typ grafu",
+ "name": "Snímač",
+ "show_more_detail": "Zobraziť viac podrobností"
+ },
+ "shopping-list": {
+ "description": "Karta Nákupný zoznam umožňuje pridávať, upravovať, odškrtávať a vymazávať položky z nákupného zoznamu.",
+ "integration_not_loaded": "Táto karta vyžaduje nastavenie integrácie \"shopping_list\".",
+ "name": "Zoznam nákupov"
+ },
+ "statistics-graph": {
+ "description": "Karta Štatistický graf vám umožňuje zobraziť graf štatistík pre každú z uvedených entít.",
+ "name": "Štatistický graf",
+ "period": "Obdobie",
+ "periods": {
+ "5minute": "5 minút",
+ "day": "Deň",
+ "hour": "Hodina",
+ "month": "Mesiac"
+ }
+ },
+ "thermostat": {
+ "description": "Karta Termostat poskytuje kontrolu nad vašou klimatizačnou jednotkou. Umožní vám zmeniť teplotu a režim entity.",
+ "name": "Termostat"
+ },
+ "vertical-stack": {
+ "description": "Karta Zvislé zarovnanie umožňuje zoskupiť viac kariet tak, aby vždy sedeli v rovnakom stĺpci.",
+ "name": "Zvislé zarovnanie"
+ },
+ "weather-forecast": {
+ "description": "Karta Predpoveď počasia zobrazuje počasie. Je veľmi užitočné ju zahrnúť do rozhrania, ktoré ľudia zobrazujú na stene.",
+ "name": "Predpoveď počasia",
+ "show_both": "Zobraziť aktuálne počasie a predpoveď",
+ "show_forecast": "Zobraziť predpoveď",
+ "show_only_current": "Zobraziť iba aktuálne počasie",
+ "show_only_forecast": "Zobraziť iba predpoveď"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Podľa karty",
+ "by_entity": "Podľa entity",
+ "custom_card": "Vlastná karta",
+ "domain": "Doména",
+ "entity": "Entita",
+ "no_description": "Popis nie je k dispozícii."
+ },
+ "common": {
+ "add": "Pridať",
+ "clear": "Vyčistiť",
+ "edit": "Upraviť",
+ "none": "Žiadny"
+ },
+ "edit_badges": {
+ "view_no_badges": "Odznaky nie sú podporované aktuálnym typom zobrazenia."
+ },
+ "edit_card": {
+ "add": "Pridať kartu",
+ "clear": "Vyčistiť",
+ "delete": "Odstrániť kartu",
+ "duplicate": "Duplikovať kartu",
+ "edit": "Upraviť",
+ "header": "Konfigurácia karty",
+ "move": "Presunúť",
+ "move_after": "Presunúť kartu za",
+ "move_before": "Presunúť kartu pred",
+ "move_down": "Posunúť kartu nadol",
+ "move_up": "Posunúť kartu nahor",
+ "options": "Viac možností",
+ "pick_card": "Ktorú kartu chcete pridať?",
+ "pick_card_view_title": "Ktorú kartu chcete pridať do svojho zobrazenia {name} ?",
+ "search_cards": "Vyhľadať karty",
+ "show_code_editor": "Zobraziť editor kódu",
+ "show_visual_editor": "Zobraziť vizuálny editor",
+ "toggle_editor": "Prepnúť editor",
+ "unsaved_changes": "Máte neuložené zmeny"
+ },
+ "edit_lovelace": {
+ "edit_title": "Upraviť názov",
+ "explanation": "Tento názov sa zobrazuje nad všetkými vašimi zobrazeniami v Lovelace.",
+ "header": "Názov vášho Lovelace UI",
+ "title": "Názov"
+ },
+ "edit_view": {
+ "add": "Pridať zobrazenie",
+ "delete": "Odstrániť zobrazenie",
+ "edit": "Upraviť zobrazenie",
+ "header": "Konfigurácia zobrazenia",
+ "header_name": "{name} Zobraziť konfiguráciu",
+ "move_left": "Presunúť zobrazenie doľava",
+ "move_right": "Presunúť zobrazenie doprava",
+ "tab_badges": "Odznaky",
+ "tab_settings": "Nastavenia",
+ "tab_visibility": "Viditeľnosť",
+ "type": "Typ zobrazenia",
+ "types": {
+ "masonry": "Konštrukcia (predvolená)",
+ "panel": "Panel (1 karta)",
+ "sidebar": "Bočný panel"
+ },
+ "visibility": {
+ "select_users": "Vyberte, ktorí používatelia môžu vidieť toto zobrazenie v navigácii"
+ }
+ },
+ "header": "Upraviť používateľské rozhranie",
+ "header-footer": {
+ "choose_header_footer": "Vybrať {type}",
+ "footer": "Päta",
+ "header": "Hlavička",
+ "types": {
+ "buttons": {
+ "name": "Tlačidlá"
+ },
+ "graph": {
+ "name": "Graf"
+ },
+ "picture": {
+ "name": "Obrázok"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Spravujte dashboardy",
+ "manage_resources": "Spravujte prostriedky",
+ "open": "Otvoriť Lovelace menu",
+ "raw_editor": "Raw editor konfigurácie"
+ },
+ "migrate": {
+ "header": "Nekompatibilná konfigurácia",
+ "migrate": "Migrovať konfiguráciu",
+ "para_migrate": "Home Assistant môže automaticky pridávať ID na všetky vaše karty a zobrazenia stlačením tlačidla 'Migrovať konfiguráciu'.",
+ "para_no_id": "Tento prvok nemá žiadne ID. Doplňte, prosím, ID pre tento prvok v súbore 'ui-lovelace.yaml'."
+ },
+ "move_card": {
+ "header": "Vyberte zobrazenie, do ktorého chcete kartu presunúť"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Ak odstránite svoju konfiguráciu používateľského rozhrania Lovelace, automaticky vygenerujeme vaše zobrazenia používateľského rozhrania Lovelace s vašimi oblasťami a zariadeniami.",
+ "confirm_remove_config_title": "Naozaj chcete odstrániť svoju konfiguráciu používateľského rozhrania Lovelace?",
+ "confirm_unsaved_changes": "Máte neuložené zmeny. Naozaj chcete odísť?",
+ "confirm_unsaved_comments": "Vaša konfigurácia môže obsahovať komentár(e), ktoré sa neuložia. Chcete pokračovať?",
+ "error_invalid_config": "Vaša konfigurácia je neplatná: {error}",
+ "error_remove": "Konfiguráciu sa nepodarilo odstrániť: {error}",
+ "error_save_yaml": "Nepodarilo sa uložiť YAML: {error}",
+ "header": "Upraviť konfiguráciu",
+ "lovelace_changed": "Konfigurácia Lovelace bola aktualizovaná. Chcete načítať aktualizovanú konfiguráciu do editora a stratiť aktuálne zmeny?",
+ "reload": "Znova načítať",
+ "resources_moved": "Prostriedky by už nemali byť pridané do konfigurácie Lovelace, ale môžu byť pridané v konfiguračnom paneli Lovelace.",
+ "save": "Uložiť",
+ "saved": "Uložené",
+ "unsaved_changes": "Neuložené zmeny"
+ },
+ "save_config": {
+ "close": "Zavrieť",
+ "empty_config": "Začnite s prázdnou tabuľou",
+ "header": "Prevziať kontrolu rozhrania Lovelace",
+ "para": "Štandardne bude Home Assistant udržiavať vaše používateľské rozhranie a aktualizovať ho, keď budú k dispozícii nové entity alebo komponenty rozhrania Lovelace. Ak prevezmete kontrolu, už za vás nebudeme automaticky robiť zmeny.",
+ "para_sure": "Skutočne chcete prevziať kontrolu vášho používateľského rozhrania?",
+ "save": "Prevziať kontrolu",
+ "yaml_config": "Na začiatok vám pomôžeme so súčasnou konfiguráciou tohto dashboardu:",
+ "yaml_control": "Ak chcete prevziať kontrolu v režime YAML, vytvorte súbor YAML s názvom, ktorý ste uviedli vo svojej konfigurácii pre tento dashboard alebo predvolený súbor 'ui-lovelace.yaml'.",
+ "yaml_mode": "Používate režim YAML, čo znamená, že nemôžete zmeniť konfiguráciu Lovelace z UI. Ak chcete zmeniť Lovelace z UI, odstráňte 'mode: yaml' z vašej konfigurácie Lovelace v 'configuration.yaml.'"
+ },
+ "select_view": {
+ "dashboard_label": "Dashboard",
+ "header": "Vyberte zobrazenie",
+ "views_label": "Zobraziť"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Editor päty",
+ "header": "Editor hlavičky",
+ "row": "Editor riadkov entít"
+ }
+ },
+ "suggest_card": {
+ "add": "Pridať do používateľského rozhrania Lovelace",
+ "create_own": "Vyberte inú kartu",
+ "header": "Vytvorili sme pre vás návrh"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Toto zobrazenie obsahuje viac ako jednu kartu, ale na panelovom zobrazení môže byť iba jedna karta."
+ }
+ }
+ },
+ "menu": {
+ "close": "Zavrieť",
+ "configure_ui": "Upraviť Dashboard",
+ "exit_edit_mode": "Skončiť režim úprav používateľského rozhrania",
+ "help": "Pomoc",
+ "reload_resources": "Znova načítať prostriedky",
+ "start_conversation": "Začať konverzáciu"
+ },
+ "reload_lovelace": "Znova načítať UI",
+ "reload_resources": {
+ "refresh_body": "Ak chcete dokončiť načítanie, musíte stránku obnoviť. Chcete ju obnoviť teraz?",
+ "refresh_header": "Chcete obnoviť?"
+ },
+ "unused_entities": {
+ "available_entities": "Toto sú entity, ktoré máte k dispozícii, ale ešte nie sú vo vašom používateľskom rozhraní Lovelace.",
+ "domain": "Doména",
+ "entity": "Entita",
+ "entity_id": "Entity ID",
+ "last_changed": "Posledná zmena",
+ "search": "Vyhľadať entity",
+ "select_to_add": "Vyberte entity, ktoré chcete pridať na kartu, a potom kliknite na tlačidlo Pridať kartu.",
+ "title": "Nepoužité entity"
+ },
+ "views": {
+ "confirm_delete": "Odstrániť zobrazenie?",
+ "confirm_delete_existing_cards": "Odstránením tohto zobrazenia sa odstránia aj karty",
+ "confirm_delete_existing_cards_text": "Naozaj chcete odstrániť zobrazenie ''{name}''? Toto zobrazenie obsahuje {number} kariet, ktoré budú odstránené. Túto akciu nie je možné vrátiť späť.",
+ "confirm_delete_text": "Naozaj chcete odstrániť zobrazenie ''{name}''?"
+ },
+ "warning": {
+ "attribute_not_found": "Atribút {attribute} nie je k dispozícii v: {entity}",
+ "entity_non_numeric": "Entita je nečíselná: {entity}",
+ "entity_not_found": "Entita nie je k dispozícií {entity}",
+ "entity_unavailable": "Entita je momentálne nedostupná: {entity}",
+ "starting": "Home Assistant sa spúšťa, zatiaľ nemusí byť všetko k dispozícii"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Vymazať",
+ "delete_prompt": "Vymazať túto správu?",
+ "empty": "Nemáte žiadne správy",
+ "playback_title": "Prehrávanie správ"
+ },
+ "map": {
+ "edit_zones": "Upraviť zóny"
+ },
+ "my": {
+ "component_not_loaded": "Inštancia Home Assistant toto presmerovanie nepodporuje. Na použitie tohto presmerovania potrebujete integráciu {integration}.",
+ "documentation": "dokumentácia",
+ "error": "Vyskytla sa neznáma chyba",
+ "faq_link": "Home Assistant otázky a odpovede",
+ "no_supervisor": "Vaša inštalácia Home Assistant nepodporuje toto presmerovanie. Potrebujete buď Home Assistant OS alebo Home Assistant Supervised. Ďalšie informácie nájdete v téme {docs_link}.",
+ "not_supported": "Toto presmerovanie nie je podporované inštanciou vášho Home Asistenta. Skontrolujte {link} pre podporované presmerovania a verziu."
+ },
+ "page-authorize": {
+ "abort_intro": "Prihlásenie bolo zrušené",
+ "authorizing_client": "Chystáte sa poskytnúť {clientId} prístup k vašej inštancii Home Assistantu.",
+ "form": {
+ "next": "Ďalej",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Relácia vypršala, prihláste sa prosím znova"
+ },
+ "error": {
+ "invalid_auth": "Nesprávne používateľské meno alebo heslo",
+ "invalid_code": "Nesprávny autentifikačný kód"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Heslo",
+ "username": "Používateľské meno"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "2-faktorový autentifikačný kód"
+ },
+ "description": "Otvorte **{mfa_module_name}** v zariadení, aby ste si pozreli svoj dvojfaktorový autentifikačný kód a overili svoju totožnosť:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Platnosť relácie skončila, prosím prihláste znova."
+ },
+ "error": {
+ "invalid_auth": "Nesprávne používateľské meno alebo heslo",
+ "invalid_code": "Neplatný overovací kód"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Heslo",
+ "username": "Používateľské meno"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Kód dvojfaktorovej autentifikácie"
+ },
+ "description": "Otvorte **{mfa_module_name}** v zariadení, aby ste si pozreli svoj dvojfaktorový autentifikačný kód a overili svoju totožnosť:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Relácia vypršala, prosím prihláste sa znova.",
+ "no_api_password_set": "Nemáte nakonfigurované heslo rozhrania API."
+ },
+ "error": {
+ "invalid_auth": "Neplatné heslo rozhrania API",
+ "invalid_code": "Neplatný autentifikačný kód"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Heslo API rozhrania"
+ },
+ "description": "Prosím zadajte heslo API rozhrania v konfigurácií http:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Kód dvojfaktorovej autentifikácie"
+ },
+ "description": "Otvorte **{mfa_module_name}** v zariadení, aby ste si pozreli svoj dvojfaktorový autentifikačný kód a overili svoju totožnosť:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "step": {
+ "init": {
+ "data": {
+ "user": "Používateľ"
+ },
+ "description": "Välj en användare att logga in som:"
+ }
+ }
+ }
+ },
+ "unknown_error": "Niečo sa pokazilo",
+ "working": "Prosím čakajte"
+ },
+ "initializing": "Inicializácia",
+ "logging_in_to_with": "Prihlasujete sa do **{locationName}** pomocou **{authProviderName}**.",
+ "logging_in_with": "Prihlasovanie pomocou **{authProviderName}**.",
+ "pick_auth_provider": "Alebo sa prihláste prostredníctvom"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "od {name}",
+ "introduction": "Vitaj ! Dostali ste sa na demo Home Assistant, kde prezentujeme najlepšie používateľské rozhrania vytvorené našou komunitou.",
+ "learn_more": "Získajte viac informácií o Home Assistant",
+ "next_demo": "Ďalšie demo"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Aktivita",
+ "air": "Vzduch",
+ "commute_home": "Dochádzanie domov",
+ "entertainment": "Zábava",
+ "hdmi_input": "Vstup HDMI",
+ "hdmi_switcher": "HDMI prepínač",
+ "information": "Informácie",
+ "lights": "Svetlá",
+ "morning_commute": "Ranné dochádzanie",
+ "total_tv_time": "Celkový čas sledovanie TV",
+ "turn_tv_off": "Vypnúť TV",
+ "volume": "Hlasitosť"
+ },
+ "names": {
+ "family_room": "Obývacia izba",
+ "hallway": "Chodba",
+ "kitchen": "Kuchyňa",
+ "left": "Vľavo",
+ "master_bedroom": "Spálňa",
+ "mirror": "Zrkadlenie",
+ "patio": "Terasa",
+ "right": "Vpravo",
+ "temperature_study": "Teplotná štúdia",
+ "upstairs": "Poschodie"
+ },
+ "unit": {
+ "minutes_abbr": "Min",
+ "watching": "Sledovanie"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "core-config": {
+ "button_detect": "Zistiť",
+ "finish": "Ďalej",
+ "intro": "Dobrý deň, {name}, vitajte v Home Assistant. Ako by ste chceli pomenovať svoj domov?",
+ "intro_location": "Radi by sme vedeli, kde žijete. Tieto informácie vám pomôžu pri zobrazovaní informácií a nastavovaní automatizácie na základe slnka. Tieto údaje sa nikdy nezdieľajú mimo vašej siete.",
+ "intro_location_detect": "Môžeme vám pomôcť vyplniť tieto informácie jednorazovou žiadosťou o externú službu.",
+ "location_name": "Názov vašej inštalácie Home Assistant",
+ "location_name_default": "Domov"
+ },
+ "integration": {
+ "finish": "Dokončiť",
+ "intro": "Zariadenia a služby sú v systéme Home Assistant zobrazené ako integrácie. Môžete ich nastaviť teraz alebo to urobiť neskôr z konfiguračnej obrazovky.",
+ "more_integrations": "Viac"
+ },
+ "intro": "Ste pripravení prebudiť váš domov, získať vaše súkromie a pripojiť sa k celosvetovej komunite bastličov?",
+ "restore": {
+ "addons": "Doplnky",
+ "confirm_password": "Potvrdiť heslo zálohy",
+ "description": "Prípadne môžete obnoviť z predchádzajúcej snímky.",
+ "folders": "Priečinky",
+ "full_backup": "Úplná záloha",
+ "hide_log": "Skryť celý denník",
+ "in_progress": "Prebieha obnovenie",
+ "partial_backup": "Čiastočná záloha",
+ "password": "Heslo zálohy",
+ "password_protection": "Ochrana Heslom",
+ "select_type": "Vyberte, čo chcete obnoviť",
+ "show_log": "Zobraziť celý denník",
+ "type": "Typ zálohy"
+ },
+ "user": {
+ "create_account": "Vytvoriť účet",
+ "data": {
+ "name": "Meno",
+ "password": "Heslo",
+ "password_confirm": "Potvrďte nové heslo",
+ "username": "Používateľské meno"
+ },
+ "error": {
+ "password_not_match": "Heslá sa nezhodujú",
+ "required_fields": "Vyplňte všetky povinné polia"
+ },
+ "intro": "Poďme začať vytvorením používateľského konta.",
+ "required_field": "Požadované"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Odomkne pokročilé funkcie.",
+ "link_promo": "Viac informácií",
+ "title": "Rozšírený režim"
+ },
+ "change_password": {
+ "confirm_new_password": "Potvrďte nové heslo",
+ "current_password": "Aktuálne heslo",
+ "error_new_is_old": "Nové heslo sa musí líšiť od aktuálneho hesla",
+ "error_new_mismatch": "Zadané nové hodnoty hesla sa nezhodujú",
+ "error_required": "Požadované",
+ "header": "Zmena hesla",
+ "new_password": "Nové heslo",
+ "submit": "Odoslať",
+ "success": "Heslo bolo úspešne zmenené"
+ },
+ "current_user": "Momentálne ste prihlásený ako {fullName}.",
+ "customize_sidebar": {
+ "button": "Upraviť",
+ "description": "Režim úprav môžete aktivovať aj stlačením a podržaním hlavičky bočného panela.",
+ "header": "Zmena poradia a skrytie položiek z bočného panela"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Prehľad (predvolené)",
+ "description": "Vyberte predvolený dashboard pre toto zariadenie.",
+ "dropdown_label": "Dashboard",
+ "header": "Dashboard"
+ },
+ "force_narrow": {
+ "description": "Predvolene sa skryje bočný panel, podobne ako v prípade mobilných zariadení.",
+ "header": "Vždy skryť bočný panel"
+ },
+ "is_owner": "Ste vlastníkom.",
+ "language": {
+ "dropdown_label": "Jazyk",
+ "header": "Jazyk",
+ "link_promo": "Pomôžte s prekladom"
+ },
+ "logout": "Odhlásiť sa",
+ "logout_text": "Naozaj sa chcete odhlásiť?",
+ "logout_title": "Odhlásiť sa?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Naozaj chcete odstrániť prístupový token pre {name}?",
+ "create": "Vytvoriť Token",
+ "create_failed": "Nepodarilo sa vytvoriť prístupový token.",
+ "created": "Vytvorené {date}",
+ "delete_failed": "Nepodarilo sa odstrániť prístupový token.",
+ "description": "Vytvorte prístupové tokeny s dlhou životnosťou, ktoré umožnia vašim skriptom komunikovať s vašou inštanciou Home Assistant. Každý token bude platný 10 rokov od vytvorenia. Nasledujúce prístupové tokeny s dlhou životnosťou sú v súčasnosti aktívne.",
+ "empty_state": "Nemáte žiadne prístupové tokeny s dlhou životnosťou.",
+ "header": "Prístupové tokeny s dlhou životnosťou",
+ "learn_auth_requests": "Zistite, ako vytvárať overené požiadavky.",
+ "name": "Názov",
+ "prompt_copy_token": "Skopírujte svoj nový prístupový token. Znova sa nezobrazí.",
+ "prompt_name": "Pomenujte token"
+ },
+ "mfa": {
+ "confirm_disable": "Naozaj chcete zakázať {name}?",
+ "disable": "Zakázať",
+ "enable": "Povoliť",
+ "header": "Multifaktorové autentifikačné moduly"
+ },
+ "mfa_setup": {
+ "close": "Zavrieť",
+ "step_done": "Nastavenie dokončené krok {step}",
+ "submit": "Odoslať",
+ "title_aborted": "Prerušené",
+ "title_success": "Úspech!"
+ },
+ "number_format": {
+ "description": "Vyberte spôsob formátovania čísiel.",
+ "dropdown_label": "Formát čísla",
+ "formats": {
+ "comma_decimal": "1,234,567.89",
+ "decimal_comma": "1.234.567,89",
+ "language": "Automaticky (použiť nastavenie jazyka)",
+ "none": "Žiadny",
+ "space_comma": "1 234 567,89"
+ },
+ "header": "Formát čísla"
+ },
+ "push_notifications": {
+ "description": "Posielať upozornenia na toto zariadenie.",
+ "error_load_platform": "Konfigurujte upozornenia notify.html5.",
+ "error_use_https": "Vyžaduje zapnuté SSL pre rozhranie.",
+ "header": "Push upozornenia",
+ "link_promo": "Viac informácií",
+ "push_notifications": "Push upozornenia"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Naozaj chcete odstrániť obnovovací token pre {name}?",
+ "created_at": "Vytvorený {date}",
+ "current_token_tooltip": "Nedá sa odstrániť aktuálny obnovovací token",
+ "delete_failed": "Nepodarilo sa odstrániť obnovovací token",
+ "description": "Každý obnovovací token predstavuje prihlásenú reláciu. Obnovovacie tokeny sa po kliknutí na tlačidlo Odhlásiť sa automaticky odstránia. Pre váš účet sú aktívne nasledovné obnovovacie tokeny.",
+ "header": "Obnovovacie Tokeny",
+ "last_used": "Naposledy použitý {date} z {location}",
+ "not_used": "Nikdy nebol použitý",
+ "token_title": "Obnovovací token pre {clientId}"
+ },
+ "suspend": {
+ "header": "Automaticky ukončiť pripojenie"
+ },
+ "themes": {
+ "accent_color": "Farba zvýraznenia",
+ "dark_mode": {
+ "auto": "Automaticky",
+ "dark": "Tmavá",
+ "light": "Svetlá"
+ },
+ "dropdown_label": "Téma",
+ "error_no_theme": "Nie sú k dispozícii žiadne témy.",
+ "header": "Téma",
+ "link_promo": "Získajte viac informácií o témach",
+ "primary_color": "Primárna farba",
+ "reset": "Reset"
+ },
+ "time_format": {
+ "dropdown_label": "Formát času",
+ "formats": {
+ "12": "12 hodín (AM / PM)",
+ "24": "24 hodín",
+ "language": "Automaticky (použiť nastavenie jazyka)"
+ },
+ "header": "Formát času"
+ },
+ "vibrate": {
+ "description": "Pri ovládaní zariadení povoľte alebo zakážte vibrácie tohto zariadenia.",
+ "header": "Vibrácie"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Začať konverzáciu"
+ }
+ },
+ "sidebar": {
+ "done": "Hotovo",
+ "external_app_configuration": "Konfigurácia aplikácie",
+ "hide_panel": "Skryť panel",
+ "show_panel": "Zobraziť panel",
+ "sidebar_toggle": "Prepínač bočného panela"
+ }
+ }
+}
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/sl.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/sl.json
new file mode 100644
index 00000000..22ad668c
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/sl.json
@@ -0,0 +1,4232 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Vnos konfiguracije",
+ "device": "Naprave",
+ "integration": "Integracija",
+ "user": "Uporabnik"
+ }
+ },
+ "groups": {
+ "owner": "Lastnik",
+ "system-admin": "Skrbniki",
+ "system-read-only": "Uporabniki \"samo za branje\"",
+ "system-users": "Uporabniki"
+ },
+ "panel": {
+ "calendar": "Koledar",
+ "config": "Nastavitve",
+ "developer_tools": "Orodja za razvijalce",
+ "energy": "Energija",
+ "history": "Zgodovina",
+ "logbook": "Dnevnik",
+ "mailbox": "Nabiralnik",
+ "map": "Zemljevid",
+ "media_browser": "Brskalnik po medijskih vsebinah",
+ "profile": "Profil",
+ "shopping_list": "Nakupovalni seznam",
+ "states": "Pregled"
+ },
+ "state": {
+ "default": {
+ "off": "Izključen",
+ "on": "Vključen",
+ "unavailable": "Ni na voljo",
+ "unknown": "Neznano"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Samodejno",
+ "off": "Izključen",
+ "on": "Vklopljen"
+ },
+ "hvac_action": {
+ "cooling": "Hlajenje",
+ "drying": "Sušenje",
+ "fan": "Ventilator",
+ "heating": "Ogrevanje",
+ "idle": "V pripravljenosti",
+ "off": "Izključen"
+ },
+ "preset_mode": {
+ "activity": "Dejavnost",
+ "away": "Odsoten",
+ "boost": "Povečanje",
+ "comfort": "Udobje",
+ "eco": "Eko",
+ "home": "Doma",
+ "none": "Noben",
+ "sleep": "Spanje"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Samodejno",
+ "away": "Odsoten",
+ "baby": "Otrok",
+ "boost": "Povečanje",
+ "comfort": "Udobje",
+ "eco": "Eko",
+ "home": "Doma",
+ "normal": "Normalno",
+ "sleep": "Spanje"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Aktiven",
+ "armed_away": "Aktiven",
+ "armed_custom_bypass": "Aktiven",
+ "armed_home": "Aktiven",
+ "armed_night": "Aktiven",
+ "armed_vacation": "Aktiven",
+ "arming": "Vklapljam",
+ "disarmed": "Off",
+ "disarming": "Izklopi",
+ "pending": "V teku",
+ "triggered": "Sprožen"
+ },
+ "default": {
+ "entity_not_found": "Entiteta ni bila najdena",
+ "error": "Napaka",
+ "unavailable": "N/A",
+ "unknown": "Neznano"
+ },
+ "device_tracker": {
+ "home": "Doma",
+ "not_home": "Odsoten"
+ },
+ "person": {
+ "home": "Doma",
+ "not_home": "Odsoten"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Privzeto",
+ "header": "Zvok",
+ "input": "Vhod",
+ "output": "Izhod"
+ },
+ "network": {
+ "container": "vsebnik",
+ "disabled": "Onemogočeno",
+ "header": "Omrežje",
+ "host": "Gostitelj"
+ },
+ "no_configuration": "Ta dodatek ne izpostavlja konfiguracije, s katero bi se lahko ukvarjali…",
+ "options": {
+ "edit_in_ui": "Urejanje v uporabniškem vmesniku",
+ "edit_in_yaml": "Urejanje v storitvi YAML",
+ "header": "Možnosti",
+ "invalid_yaml": "Neveljaven YAML",
+ "show_unused_optional": "Prikaži neuporabljene izbirne možnosti konfiguracije"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "uninstall": "Odstranitev dodatka ni uspela"
+ },
+ "capability": {
+ "hassio_api": {
+ "title": "Dostop do API-ja nadzornika"
+ },
+ "ingress": {
+ "title": "Vhod"
+ },
+ "label": {
+ "auth": "avtentikacija",
+ "core": "Jedro",
+ "ingress": "vhod"
+ },
+ "role": {
+ "admin": "admin",
+ "backup": "varnostna kopija"
+ },
+ "stage": {
+ "description": "Dodatki imajo lahko eno od treh stopenj:\n\n{icon_stable} **Stabilna**: To so dodatki, ki so pripravljeni za uporabo v produkciji.\n\n{icon_experimental} **eksperimentalni**: Ti dodatki lahko vsebujejo napake in so nedokončani.\n\n{icon_deprecated} **Odpravljeno**: Ti dodatki ne bodo več prejemali posodobitev."
+ },
+ "stages": {
+ "deprecated": "Zastarelo",
+ "experimental": "Eksperimentalno"
+ }
+ },
+ "changelog": "Dnevnik sprememb",
+ "cpu_usage": "poraba procesorja za delovanje dodatkov",
+ "install": "namesti",
+ "open_web_ui": "Odprite spletni uporabniški vmesnik",
+ "option": {
+ "boot": {
+ "title": "Zaženi ob zagonu"
+ },
+ "ingress_panel": {
+ "description": "Dodajte ta dodatek v stransko vrstico",
+ "title": "Pokaži v stranski vrstici"
+ },
+ "protected": {
+ "title": "Način zaščite"
+ },
+ "watchdog": {
+ "description": "To bo zagnalo dodatek, če se sesuje.",
+ "title": "Watchdog"
+ }
+ },
+ "protection_mode": {
+ "enable": "Omogoči",
+ "title": "Način zaščite je onemogočen!"
+ },
+ "ram_usage": "porabljen RAM za delovanje dodatkov",
+ "rebuild": "obnoviti",
+ "restart": "ponovni zagon",
+ "start": "zagon",
+ "stop": "zaustavitev",
+ "uninstall": "odstranitev",
+ "visit_addon_page": "Za več podrobnosti obiščite stran {name}"
+ },
+ "documentation": {
+ "get_documentation": "Ni uspelo pridobiti dokumentacije dodatka, {error}"
+ },
+ "failed_to_reset": "Ni uspelo ponastaviti konfiguracije dodatka, {error}",
+ "failed_to_save": "Ni uspelo shraniti konfiguracije dodatka, {error}",
+ "logs": {
+ "get_logs": "Ni uspelo pridobiti dnevnikov dodatka, {error}"
+ },
+ "panel": {
+ "configuration": "Konfiguracija",
+ "documentation": "Dokumentacija",
+ "log": "Dnevnik"
+ },
+ "state": {
+ "installed": "Dodatek je nameščen",
+ "not_available": "Dodatek ni na voljo v vašem sistemu",
+ "not_installed": "Dodatek ni nameščen"
+ }
+ },
+ "backup": {
+ "addons": "Dodatki",
+ "confirm_password": "Potrdite geslo za varnostno kopiranje",
+ "could_not_create": "Varnostne kopije ni bilo mogoče ustvariti",
+ "create": "Ustvari",
+ "create_backup": "Ustvari varnostno kopijo",
+ "create_blocked_not_running": "Ustvarjanje varnostne kopije trenutno ni mogoče, ker je sistem v stanju {state}.",
+ "created": "Ustvarjeno",
+ "delete_backup_confirm": "izbriši",
+ "delete_backup_title": "Izbriši varnostno kopijo",
+ "delete_selected": "Brisanje izbranih varnostnih kopij",
+ "enter_password": "Prosimo vnesite geslo.",
+ "failed_to_delete": "Brisanje ni uspelo",
+ "folders": "Mape",
+ "full_backup": "Popolna varnostna kopija",
+ "name": "Ime varnostne kopije",
+ "no_backups": "Nimate še nobenih varnostnih kopij.",
+ "partial_backup": "Delno varnostno kopiranje",
+ "password": "Geslo za varnostno kopiranje",
+ "passwords_not_matching": "Gesla se ne ujemajo",
+ "select_type": "Izberite, kaj želite obnoviti",
+ "selected": "{number} izbrana/ih",
+ "type": "Vrsta varnostne kopije",
+ "upload_backup": "Naložite varnostno kopijo"
+ },
+ "common": {
+ "cancel": "Prekliči",
+ "close": "Zapri",
+ "error": {
+ "unknown": "Neznana napaka",
+ "update_failed": "Posodobitev ni uspela"
+ },
+ "failed_to_update_name": "Posodobitev {ime} ni uspela",
+ "learn_more": "Preberite več",
+ "menu": "Meni",
+ "no": "Ne",
+ "refresh": "Osveži",
+ "release_notes": "Opombe ob izdaji",
+ "reload": "Znova naloži",
+ "reset_defaults": "Ponastavi na privzete nastavitve",
+ "reset_options": "Ponastavitev možnosti",
+ "restart": "Ponovni zagon",
+ "restart_name": "Ponovni zagon {name}",
+ "review": "pregled",
+ "running_version": "Trenutno uporabljate različico {version}",
+ "save": "Shrani",
+ "show": "Prikaži",
+ "show_more": "Pokaži več informacij o tem",
+ "update": "Posodobitev",
+ "yes": "Da"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Ali ste prepričani, da želite ponastaviti vse možnosti?",
+ "title": "Ponastavitev možnosti"
+ },
+ "restart": {
+ "text": "Ali ste prepričani, da želite znova zagnati {name} ?",
+ "title": "Ponovni zagon {name}"
+ },
+ "update": {
+ "title": "Posodobi {name}"
+ }
+ },
+ "dashboard": {
+ "addon_stopped": "Dodatek je ustavljen",
+ "addons": "Nameščeni dodatki",
+ "no_addons": "Nimate nameščenih še nobenih dodatkov. Pojdite v trgovino z dodatki in začnite!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Prekliči",
+ "loading_devices": "Nalaganje naprav",
+ "move": "Premakni",
+ "moving": "Premikanje podatkovnega diska",
+ "moving_desc": "Ponovni zagon in premikanje podatkovnega diska. Prosimo za potrpežljivost",
+ "select_device": "Izberite nov podatkovni disk",
+ "title": "Premakni podatkovni disk"
+ },
+ "hardware": {
+ "attributes": "Lastnosti",
+ "device_path": "Pot naprave",
+ "id": "ID",
+ "search": "Iskanje naprav",
+ "subsystem": "Podsistem",
+ "title": "Strojna oprema"
+ },
+ "network": {
+ "gateway": "Naslov prehoda",
+ "scan_ap": "Iskanje dostopnih točk",
+ "static": "Statičen",
+ "unsaved": "Imate nezapisane spremembe, ki se bodo izgubile, če zamenjate zavihek, ali želite nadaljevati?",
+ "warning": "Če spreminjate naslove Wi-Fi, IP ali prehoda, lahko izgubite povezavo!"
+ },
+ "update": {
+ "backup": "Varnostna kopija",
+ "create_backup": "Pred posodabljanjem ustvarite varnostno kopijo {name}",
+ "creating_backup": "Ustvarjanje varnostne kopije {name}",
+ "updating": "Posodabljanje {name} na različico {version}"
+ }
+ },
+ "my": {
+ "error": "Prišlo je do neznane napake",
+ "error_addon_not_found": "Dodatek ni bil najden",
+ "error_addon_not_installed": "Zahtevani dodatek ni nameščen. Prosimo, da ga najprej namestite.",
+ "error_addon_not_started": "Zahtevani dodatek ni zagnan. Prosimo, da ga najprej zaženete.",
+ "faq_link": "Pogosta vprašanja o Home Assistant"
+ },
+ "panel": {
+ "addons": "Dodatki",
+ "backups": "Varnostne kopije",
+ "dashboard": "Nadzorna plošča",
+ "store": "Trgovina z dodatki",
+ "system": "Sistem"
+ },
+ "store": {
+ "registries": "Registri",
+ "repositories": "Repozitoriji"
+ },
+ "system": {
+ "host": {
+ "change": "Spremeni",
+ "change_hostname": "Spremeni ime gostitelja",
+ "confirm_shutdown": "Ali ste prepričani, da želite zaustaviti gostitelja?",
+ "docker_version": "Docker različica",
+ "failed_to_get_hardware_list": "Seznama strojne opreme ni bilo mogoče pridobiti",
+ "failed_to_move": "Premikanje podatkovnega diska ni uspelo",
+ "failed_to_set_hostname": "Nastavitev imena gostitelja ni uspela",
+ "failed_to_shutdown": "Gostitelja ni bilo mogoče zaustaviti",
+ "hardware": "Strojna oprema",
+ "hostname": "Ime gostitelja",
+ "import_from_usb": "Uvoz iz USB-ja",
+ "ip_address": "IP naslov",
+ "move_datadisk": "Premakni podatkovni disk",
+ "new_hostname": "Vnesite novo ime gostitelja:",
+ "operating_system": "Operacijski sistem",
+ "shutdown_host": "Zaustavi gostitelja",
+ "used_space": "Uporabljen prostor"
+ },
+ "log": {
+ "get_logs": "Dnevnikov {provider} ni bilo mogoče pridobiti {error}",
+ "log_provider": "Ponudnik dnevnika"
+ },
+ "supervisor": {
+ "beta_join_confirm": "Ali se želite pridružiti beta kanalu?",
+ "beta_release_items": "To vključuje beta različice za:",
+ "beta_warning": "Beta različice so namenjene preizkuševalcem in zgodnjim uporabnikom ter lahko vsebujejo nestabilne spremembe kode.",
+ "channel": "Kanal",
+ "failed_to_update": "Nadzornika ni bilo mogoče posodobiti",
+ "join_beta_action": "Pridružite se beta kanalu",
+ "join_beta_description": "Pridobite beta posodobitve za Home Assistant (RC), nadzornika in gostitelja",
+ "leave_beta_action": "Zapusti beta kanal",
+ "leave_beta_description": "Pridobite stabilne posodobitve za Home Assistant, Supervisor in gostitelja",
+ "reload_supervisor": "Ponovno naloži nadzornika",
+ "search": "Iskanje",
+ "share_diagnostics": "Delite diagnostiko",
+ "share_diagnostics_description": "Delite poročila o zrušitvah in diagnostične informacije.",
+ "share_diagonstics_title": "Pomagajte izboljšati Home Assistant",
+ "unhealthy_title": "Vaša namestitev je nezdrava",
+ "unsupported_reason": {
+ "container": "Kontejnerji, za katere je znano, da povzročajo težave",
+ "docker_configuration": "Konfiguracija Dockerja",
+ "docker_version": "Različica Dockerja",
+ "network_manager": "Upravitelj omrežja",
+ "os": "Operacijski sistem",
+ "os_agent": "OS agent",
+ "software": "Zaznana nepodprta programska oprema",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Uporabljate nepodprto namestitev",
+ "update_supervisor": "Posodobite nadzornika",
+ "warning": "OPOZORILO"
+ }
+ },
+ "update_available": {
+ "core_note": "Nadzornik se bo vrnil na različico {version}, če se vaša instanca po posodobitvi ne bo vzpostavila.",
+ "create_backup": "Pred posodabljanjem ustvari varnostno kopijo",
+ "creating_backup": "Ustvarjanje varnostne kopije {name}",
+ "description": "Nameščena je {version}. Kliknite posodobitev, če želite posodobiti različico {newest_version}",
+ "open_release_notes": "Odprite opombe ob izdaji",
+ "update_name": "Posodobi {name}",
+ "updating": "Posodabljanje {name} na različico {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Ali želite ostati prijavljeni?",
+ "confirm": "Da",
+ "decline": "Ne"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Vklopi odsoten",
+ "arm_custom_bypass": "Izjeme po meri",
+ "arm_home": "Vklopi doma",
+ "arm_night": "Vklopi nočni način",
+ "clear_code": "Počisti",
+ "code": "Koda",
+ "disarm": "Izklopi"
+ },
+ "area": {
+ "area_not_found": "Območja ni bilo mogoče najti."
+ },
+ "automation": {
+ "last_triggered": "Nazadnje sprožen",
+ "trigger": "Zaženi"
+ },
+ "button": {
+ "press": "Pritisnite"
+ },
+ "camera": {
+ "not_available": "Slika ni na voljo"
+ },
+ "climate": {
+ "aux_heat": "Dodatna toplota",
+ "away_mode": "Način odsotnosti",
+ "cooling": "{name} hlajenje",
+ "current_temperature": "{name} trenutna temperatura",
+ "currently": "Trenutno",
+ "fan_mode": "Način ventilatorja",
+ "heating": "{name} ogrevanje",
+ "high": "visoka",
+ "low": "nizka",
+ "on_off": "Vključen / izključen",
+ "operation": "Delovanje",
+ "preset_mode": "Prednastavitev",
+ "swing_mode": "Način Swing",
+ "target_humidity": "Ciljna vlažnost",
+ "target_temperature": "Ciljna temperatura",
+ "target_temperature_entity": "{name} ciljna temperatura",
+ "target_temperature_mode": "{name} ciljna temperatura {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "pojemek",
+ "increment": "prirastek",
+ "reset": "ponastavi"
+ }
+ },
+ "cover": {
+ "position": "Položaj",
+ "tilt_position": "Položaj nagiba"
+ },
+ "fan": {
+ "direction": "Smer",
+ "forward": "Naprej",
+ "oscillate": "Nihanje",
+ "reverse": "Obratno",
+ "speed": "Hitrost"
+ },
+ "humidifier": {
+ "humidity": "Ciljna vlažnost",
+ "mode": "Način",
+ "on_entity": "{name} vklopljeno",
+ "target_humidity_entity": "{name} ciljna vlažnost"
+ },
+ "light": {
+ "brightness": "Svetlost",
+ "cold_white_value": "Hladna bela svetlost",
+ "color_brightness": "Svetlost barve",
+ "color_temperature": "Temperatura barve",
+ "effect": "Učinek",
+ "warm_white_value": "Topla bela svetlost",
+ "white_value": "Bela svetlost"
+ },
+ "lock": {
+ "code": "Koda",
+ "lock": "Zakleni",
+ "unlock": "Odkleni"
+ },
+ "media_player": {
+ "browse_media": "Brskaj po vsebini",
+ "media_next_track": "Naslednji",
+ "media_play": "Predvajaj",
+ "media_play_pause": "Predvajanje / premor",
+ "media_previous_track": "Prejšnji",
+ "sound_mode": "Zvočni način",
+ "source": "Vir",
+ "text_to_speak": "Besedilo v govor",
+ "turn_off": "Izklopi",
+ "turn_on": "Vklopi"
+ },
+ "persistent_notification": {
+ "dismiss": "Opusti"
+ },
+ "scene": {
+ "activate": "Aktiviraj"
+ },
+ "script": {
+ "cancel": "Prekliči",
+ "cancel_multiple": "Prekliči {number}",
+ "run": "Poženi"
+ },
+ "service": {
+ "run": "Poženi"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "Prekliči",
+ "finish": "Dokončaj",
+ "pause": "pavza",
+ "start": "Zagon"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Nadaljuj s čiščenjem",
+ "return_to_base": "Vrni se na postajo",
+ "start_cleaning": "Začni čiščenje",
+ "turn_off": "Izklopite",
+ "turn_on": "Vklopite"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Način odsotnosti",
+ "currently": "Trenutno",
+ "on_off": "Vključen / izključen",
+ "operation": "Delovanje",
+ "target_temperature": "Ciljna temperatura"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Zračni tlak",
+ "humidity": "Vlažnost",
+ "precipitation": "Padavine",
+ "temperature": "Temperatura",
+ "visibility": "Vidljivost",
+ "wind_speed": "Hitrost vetra"
+ },
+ "cardinal_direction": {
+ "e": "Vzhod",
+ "ene": "Vzhodno-severovzhod",
+ "ese": "Vzhodno-jugovzhod",
+ "n": "Sever",
+ "ne": "Severovzhod",
+ "nne": "Severo-severovzhod",
+ "nnw": "Severo-severozahod",
+ "nw": "Severozahod",
+ "s": "Jug",
+ "se": "Jugovzhod",
+ "sse": "Jugo-juhovzhod",
+ "ssw": "Jugo-jugozahod",
+ "sw": "Jugozahod",
+ "w": "Zahod",
+ "wnw": "Zahod-severozahod",
+ "wsw": "Zahod-jugozahod"
+ },
+ "day": "Dan",
+ "forecast": "Napoved",
+ "high": "Visoko",
+ "low": "Nizko",
+ "night": "Noč"
+ }
+ },
+ "common": {
+ "and": "in",
+ "back": "Nazaj",
+ "cancel": "Prekliči",
+ "clear": "Počisti",
+ "close": "Zapri",
+ "continue": "Nadaljuj",
+ "copied": "Kopirano",
+ "copied_clipboard": "Kopirano v odložišče",
+ "delete": "Izbriši",
+ "disable": "Onemogoči",
+ "enable": "Omogoči",
+ "error_required": "Zahtevano",
+ "help": "Pomoč",
+ "leave": "Zapusti",
+ "loading": "Nalaganje",
+ "menu": "Meni",
+ "move": "Premakni",
+ "next": "Naslednji",
+ "no": "Ne",
+ "not_now": "Ne zdaj",
+ "overflow_menu": "Prelivni meni",
+ "previous": "Prejšnji",
+ "refresh": "Osveži",
+ "remove": "Odstrani",
+ "rename": "Preimenuj",
+ "save": "Shrani",
+ "skip": "Preskoči",
+ "stay": "Ostani",
+ "successfully_deleted": "Uspešno odstranjeno",
+ "successfully_saved": "Shranjeno",
+ "undo": "Razveljavi",
+ "yes": "Da"
+ },
+ "components": {
+ "addon-picker": {
+ "error": {
+ "fetch_addons": {
+ "description": "Pri nalaganju dodatkov je prišlo do napake.",
+ "title": "Napaka pri nalaganju dodatkov"
+ },
+ "no_supervisor": {
+ "description": "Dodatki niso podprti."
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Dodaj",
+ "failed_create_area": "Območja ni bilo mogoče ustvariti.",
+ "name": "Ime",
+ "text": "Vnesite ime novega območja.",
+ "title": "Dodajte novo območje"
+ },
+ "add_new": "Dodajanje novega območja…",
+ "area": "Območje",
+ "clear": "Počisti",
+ "no_areas": "Nimate območji",
+ "no_match": "Ni ustreznih območji",
+ "show_areas": "Prikaži območja"
+ },
+ "attributes": {
+ "expansion_header": "Lastnosti"
+ },
+ "blueprint-picker": {
+ "add_user": "Dodaj uporabnika",
+ "remove_user": "Odstrani uporabnika",
+ "select_blueprint": "Izberite načrt"
+ },
+ "calendar": {
+ "my_calendars": "Moji koledarji"
+ },
+ "data-table": {
+ "clear": "Počisti",
+ "filtering_by": "Filtriranje po",
+ "hidden": "{number} skrito",
+ "no-data": "Ni podatkov",
+ "search": "Iskanje"
+ },
+ "date-range-picker": {
+ "end_date": "Končni datum",
+ "ranges": {
+ "last_week": "Prejšnji teden",
+ "this_week": "Ta teden",
+ "today": "Danes",
+ "yesterday": "Včeraj"
+ },
+ "select": "Izberite",
+ "start_date": "Začetni datum"
+ },
+ "device-picker": {
+ "clear": "Počisti",
+ "device": "Naprava",
+ "no_area": "Brez območja",
+ "no_devices": "Nimate naprav",
+ "no_match": "Ni ustreznih naprav",
+ "show_devices": "Pokažite naprave",
+ "toggle": "Preklopite"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Atribut",
+ "show_attributes": "Pokaži atribute"
+ },
+ "entity-picker": {
+ "clear": "Počisti",
+ "edit": "Uredi",
+ "entity": "Entiteta",
+ "no_match": "Ni ustreznih entitet",
+ "show_entities": "Pokaži entitete"
+ }
+ },
+ "history_charts": {
+ "loading_history": "Nalagam zgodovino stanj …",
+ "no_history_found": "Ni najdene zgodovine stanj."
+ },
+ "logbook": {
+ "by": "od",
+ "by_service": "od storitve",
+ "entries_not_found": "Ni bilo najdenih vnosov v dnevnik.",
+ "messages": {
+ "became_unavailable": "postal nedosegljiv",
+ "changed_to_state": "je spremenil stanje v {state}",
+ "cleared_device_class": "počiščeno ( {device_class} ni najdeno)",
+ "detected_device_class": "najdeno {device_class}",
+ "detected_tampering": "zaznano nedovoljeno poseganje",
+ "is_closing": "se zapira",
+ "rose": "naraslo",
+ "set": "nastavljeno",
+ "turned_off": "izklopljen",
+ "turned_on": "vklopljeno",
+ "was_at_home": "je bil/-a doma",
+ "was_at_state": "je bilo zaznano v {state}",
+ "was_away": "je bilo odsotno",
+ "was_closed": "je bil zaprto",
+ "was_connected": "je bil povezan",
+ "was_disconnected": "je bil odklopljeno",
+ "was_locked": "je bil zaklenjeno",
+ "was_low": "je bilo nizko",
+ "was_normal": "je bil normalno",
+ "was_opened": "je bil odprt",
+ "was_plugged_in": "je bil priključeno",
+ "was_safe": "je bilo varno",
+ "was_unlocked": "je bil odklenjeno",
+ "was_unplugged": "je bilo izključeno",
+ "was_unsafe": "ni bilo varno"
+ },
+ "retrieval_error": "Dnevnika ni bilo mogoče naložiti",
+ "show_trace": "Pokaži sled"
+ },
+ "media-browser": {
+ "audio_not_supported": "Vaš brskalnik ne podpira zvočnega elementa.",
+ "choose_player": "Izberi predvajalnik",
+ "class": {
+ "album": "Album",
+ "app": "Aplikacija",
+ "artist": "Avtor",
+ "channel": "Kanal",
+ "composer": "Skladatelj",
+ "contributing_artist": "Soavtor",
+ "directory": "Knjižnica",
+ "episode": "Epizoda",
+ "game": "Igra",
+ "genre": "Zvrst",
+ "image": "Slika",
+ "movie": "Film",
+ "music": "Glasba",
+ "playlist": "Seznam predvajanja",
+ "podcast": "Poddaja",
+ "season": "Sezona",
+ "track": "Vsebina",
+ "tv_show": "Televizijska oddaja",
+ "url": "URL",
+ "video": "Video"
+ },
+ "documentation": "dokumentacija",
+ "learn_adding_local_media": "Več o dodajanju medijskih vsebin preberite v {documentation}.",
+ "local_media_files": "V mapo medijskih vsebin dodajte video, zvočne in slikovne datoteke, ki jih lahko pregledujete ali predvajate v brskalniku oz podprtih predvajalnikih.",
+ "media-player-browser": "Brskalnik za medijski predvajalnik",
+ "media_browsing_error": "Napaka pri brskanju po vsebinah",
+ "media_not_supported": "Predvajalnik ne podpira te vrste vsebin",
+ "media_player": "Medijski predvajalnik",
+ "no_items": "Ni predmetov",
+ "no_local_media_found": "Ni bilo najdenega lokalnih medijskih vsebin",
+ "no_media_folder": "Videti je, da še niste ustvarili mape medijskih vsebin",
+ "pick": "Izberi",
+ "pick-media": "Izberi vsebino",
+ "play": "Predvajaj",
+ "play-media": "Predvajaj vsebino",
+ "setup_local_help": "Preverite {documentation} o tem, kako nastaviti lokalni medij.",
+ "video_not_supported": "Vaš brskalnik ne podpira video elementa.",
+ "web-browser": "Spletni brskalnik"
+ },
+ "picture-upload": {
+ "label": "Slika",
+ "unsupported_format": "Nepodprta oblika, izberite sliko JPEG, PNG ali GIF."
+ },
+ "related-filter-menu": {
+ "filter_by_area": "Filtriranje po območju",
+ "filter_by_device": "Filtriranje po napravi"
+ },
+ "related-items": {
+ "area": "Območje",
+ "automation": "Del naslednjih avtomatizacij",
+ "device": "Naprava",
+ "entity": "Sorodne entitete",
+ "group": "Del naslednjih skupin",
+ "integration": "Integracija",
+ "no_related_found": "Najden ni bil noben povezan element.",
+ "scene": "Del naslednjih prizorov",
+ "script": "Del naslednjih skript"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\n one {dan}\n other {dni}\n}",
+ "hour": "{count} {count, plural,\n one {ura}\n two {uri}\n three {ure}\n four {ure}\n other {ur}\n}",
+ "minute": "{count} {count, plural,\n one {minuta}\n other {minut}\n}",
+ "second": "{count} {count, plural,\none {sekunda}\nother {sekund}\n}",
+ "week": "{count} {count, plural,\none {Teden}\ntwo {Tedna}\nthree {Tedne}\nfour {Tedne}\nother {Tednov}\n}"
+ },
+ "future_duration": {
+ "day": "V {count} {count, plural,\n one {dnevu}\n other {dnevih}\n}",
+ "hour": "V {count} {count, plural,\n one {uri}\n other {urah}\n}",
+ "minute": "V {count} {count, plural,\n one {minuti}\n other {minutah}\n}",
+ "second": "V {count} {count, plural,\n one {sekundi}\n other {sekundah}\n}",
+ "week": "V {count} {count, plural,\n one {tednu}\n other {tednih}\n}"
+ },
+ "just_now": "Ravnokar",
+ "never": "Nikoli",
+ "past_duration": {
+ "day": "Pred {count} {count, plural,\n one {dnevom}\n two {dnevoma}\n other {dnevi}\n}",
+ "hour": "Pred {count} {count, plural,\n one {uro}\n two {urama}\n other {urami}\n}",
+ "minute": "Pred {count} {count, plural,\n one {minuto}\n two {minutama}\n other {minutami}\n}",
+ "second": "Pred {count} {count, plural,\n one {sekundo}\n two {sekundama}\n other {sekundami}\n}",
+ "week": "Pred {count} {count, plural,\n one {tednom}\n two {tednoma}\n other {tedni}\n}"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Dokumentacija o integraciji",
+ "service_data": "Servisni podatki"
+ },
+ "service-picker": {
+ "service": "Storitev"
+ },
+ "statistic-picker": {
+ "learn_more": "Preberite več o statistiki",
+ "missing_entity": "Zakaj moja entiteta ni navedena?",
+ "no_match": "Ni bilo najdenih ujemajočih se statističnih podatkov",
+ "no_statistics": "Nimaš statistike.",
+ "statistic": "Statistika"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Nalaganje statističnih podatkov...",
+ "no_statistics_found": "Statističnih podatkov ni bilo mogoče najti.",
+ "statistic_types": {
+ "max": "maks",
+ "mean": "povprečje",
+ "min": "min",
+ "sum": "vsota"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Izberite območje",
+ "add_device_id": "Izberite napravo",
+ "add_entity_id": "Izberite entiteto",
+ "expand": "Razširi",
+ "expand_area_id": "Razširite to območje v ločene naprave in entitete, ki jih vsebuje. Po razšritivi naprave in entitete ne bodo posodobljene ob spremembi območja.",
+ "expand_device_id": "Razdelite to napravo na ločene entitete.",
+ "remove": "Odstrani",
+ "remove_area_id": "Odstranite območje",
+ "remove_device_id": "Odstranite napravo",
+ "remove_entity_id": "Odstranite entiteto"
+ },
+ "user-picker": {
+ "add_user": "Dodaj uporabnika",
+ "no_user": "Brez uporabnika",
+ "remove_user": "Odstrani uporabnika"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Če je onemogočeno, novo odkrite entitete za {integration} ne bodo samodejno dodane v Home Assistant.",
+ "enable_new_entities_label": "Omogoči novo dodane entitete.",
+ "restart_home_assistant": "Da bodo spremembe začele veljati, morate znova zagnati Home Assistant.",
+ "title": "Sistemske možnosti za {integration}",
+ "update": "Posodobite"
+ },
+ "domain_toggler": {
+ "reset_entities": "Ponastavi entitete",
+ "title": "Preklopi domene"
+ },
+ "entity_registry": {
+ "control": "Nadzor",
+ "dismiss": "Opusti",
+ "editor": {
+ "area_note": "Privzeto so entitete naprave na istem območju kot naprava. Če spremenite območje te entitete, ne bo več sledila območju naprave.",
+ "change_device_area": "Spremenite območje naprave",
+ "confirm_delete": "Ali ste prepričani, da želite izbrisati to entiteto?",
+ "delete": "Izbriši",
+ "device_class": "Prikaži kot",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Vrata",
+ "garage_door": "Garažna vrata",
+ "opening": "Drugo",
+ "window": "Okno"
+ },
+ "cover": {
+ "door": "Vrata",
+ "garage": "Garažna vrata",
+ "window": "Okno"
+ }
+ },
+ "device_disabled": "Naprava za to entiteto je onemogočena",
+ "enabled_cause": "Onemogočeno zaradi {cause}.",
+ "enabled_delay_confirm": "Omogočene entitete bodo v Home Assistant dodane v {delay} sekundah",
+ "enabled_description": "Onemogočene entitete ne bodo dodane v Home Assistant.",
+ "enabled_label": "Omogoči entiteto",
+ "enabled_restart_confirm": "Znova zaženi Home Assistant, da dokončaš omogočanje entitet",
+ "entity_id": "ID entitete",
+ "icon": "Ikona",
+ "icon_error": "Ikone morajo biti v obliki 'prefix:iconname', npr. 'mid:home'",
+ "name": "Ime",
+ "note": "Opomba: to morda še ne deluje z vsemi integracijami.",
+ "open_device_settings": "Odpri nastavitve naprave",
+ "unavailable": "Ta entiteta trenutno ni na voljo.",
+ "update": "Posodobi"
+ },
+ "faq": "dokumentacija",
+ "no_unique_id": "Ta entiteta (\"{entity_id}\") nima enoličnega ID-ja, zato njenih nastavitev ni mogoče upravljati iz uporabniškega vmesnika. Za več podrobnosti glejte {faq_link} .",
+ "related": "Povezano",
+ "settings": "Nastavitve"
+ },
+ "generic": {
+ "cancel": "Prekliči",
+ "close": "Zapri",
+ "default_confirmation_title": "Ste prepričani?",
+ "ok": "OK"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Začetna vrednost",
+ "maximum": "Najvišja vrednost",
+ "minimum": "Najnižja vrednost",
+ "restore": "Obnovi zadnjo znano vrednost ob naslednjem zagonu Home Assistant",
+ "step": "Velikost koraka"
+ },
+ "generic": {
+ "icon": "Ikona",
+ "name": "Ime"
+ },
+ "input_datetime": {
+ "date": "Datum",
+ "datetime": "Datum in čas",
+ "mode": "Kaj želite vnesti?",
+ "time": "Čas"
+ },
+ "input_number": {
+ "box": "Vnosno polje",
+ "max": "Najvišja vrednost",
+ "min": "Najmanjša vrednost",
+ "mode": "Način prikaza",
+ "slider": "Drsnik",
+ "step": "Velikost koraka",
+ "unit_of_measurement": "Merska enota"
+ },
+ "input_select": {
+ "add": "Dodaj",
+ "add_option": "Dodaj možnost",
+ "no_options": "Še ni možnosti.",
+ "options": "Možnosti"
+ },
+ "input_text": {
+ "max": "Najdaljša dolžina",
+ "min": "Najkrajša dolžina",
+ "mode": "Način prikaza",
+ "password": "Geslo",
+ "pattern": "Regex vzorec za preverjanje veljavnosti na strani odjemalca",
+ "text": "Besedilo"
+ },
+ "platform_not_loaded": "Integracija {platform} ni naložena. Prosimo, dodajte ga v svojo konfiguracijo tako, da dodate 'default_config: 'ali' ' {platform} :' '.",
+ "required_error_msg": "To polje je obvezno",
+ "timer": {
+ "duration": "Trajanje"
+ },
+ "yaml_not_editable": "Nastavitev te entitete ni mogoče urejati iz uporabniškega vmesnika. Od tam se lahko konfigurirajo samo entitete, nastavljene iz uporabniškega vmesnika."
+ },
+ "image_cropper": {
+ "crop": "Izreži"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Zapri pokrov",
+ "close_tile_cover": "Zapri nagib pokrova",
+ "open_cover": "Odpri pokrov",
+ "open_tilt_cover": "Odpri nagib pokrova",
+ "stop_cover": "Zaustavite premikanje pokrova"
+ },
+ "details": "Podrobnosti",
+ "dismiss": "Opusti pogovorno okno",
+ "edit": "Uredi entiteto",
+ "history": "Zgodovina",
+ "last_changed": "Zadnja sprememba",
+ "last_updated": "Zadnja posodobitev",
+ "logbook": "Dnevnik",
+ "person": {
+ "create_zone": "Ustvari območje iz trenutne lokacije"
+ },
+ "restored": {
+ "confirm_remove_text": "Ali ste prepričani, da želite odstraniti to entiteto?",
+ "confirm_remove_title": "Ali želite odstraniti entiteto?",
+ "not_provided": "Ta entiteta trenutno ni na voljo in je osirotelo odstranjene, spremenjene ali nefunkcionalne integracije ali naprave.",
+ "remove_action": "Odstranite entiteto",
+ "remove_intro": "Če entiteta ni več v uporabi, jo lahko očistite tako, da jo odstranite."
+ },
+ "script": {
+ "last_action": "Zadnje Dejanje",
+ "last_triggered": "Nazadnje sproženo"
+ },
+ "settings": "Nastavitve entitete",
+ "show_more": "Pokaži več",
+ "sun": {
+ "elevation": "Nadmorska višina",
+ "rising": "Naraščajoče",
+ "setting": "Nastavitve"
+ },
+ "updater": {
+ "title": "Navodila za posodabitev"
+ },
+ "vacuum": {
+ "clean_spot": "Očisti točko",
+ "commands": "Ukazi sesalnika:",
+ "fan_speed": "Hitrost ventilatorja",
+ "locate": "Poiščite",
+ "pause": "Premor",
+ "return_home": "Vrni se domov",
+ "start": "Zagon",
+ "start_pause": "Začetek/Premor",
+ "status": "Stanje",
+ "stop": "Ustavi"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Poskus razčlenitve sporočil MQTT kot JSON",
+ "entities": "Entitete",
+ "no_entities": "Brez entitet",
+ "no_triggers": "Brez sprožilcev",
+ "payload_display": "Prikaz koristnega tovora",
+ "recent_messages": "{n} zadnjih prejetih sporočil",
+ "show_as_yaml": "Pokaži kot YAML",
+ "title": "{Device} debug info",
+ "triggers": "Sprožilci"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Možnosti"
+ },
+ "loading": {
+ "loading_step": "Nalaganje naslednjega koraka za {integration}"
+ },
+ "success": {
+ "description": "Možnosti so uspešno shranjene."
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Območja",
+ "automation": "Avtomatizacije",
+ "blueprint": "Načrti",
+ "core": "Splošno",
+ "customize": "Prilagoditve",
+ "devices": "Naprave",
+ "energy": "Energija",
+ "entities": "Entitete",
+ "helpers": "Pomočniki",
+ "info": "Informacije",
+ "integrations": "Integracije",
+ "logs": "Dnevniki",
+ "lovelace": "Nadzorne plošče Lovelace",
+ "person": "Osebe",
+ "scene": "Scene",
+ "script": "Skripti",
+ "server_control": "Nadzor strežnika",
+ "tag": "Značke",
+ "users": "Uporabniki",
+ "zone": "Območja"
+ },
+ "reload": {
+ "automation": "Znova naloži avtomatizacije",
+ "command_line": "Znova naloži entitete ukazne vrstice",
+ "core": "Znova naloži lokacijo in prilagoditve",
+ "filesize": "Znova naloži entitete za velikost datotek",
+ "filter": "Znova naloži entitete za filter",
+ "generic": "Znova naloži entitete za generične IP kamere",
+ "generic_thermostat": "Znova naloži entitete za generične termostate",
+ "group": "Znova naloži skupine, skupinske entitete in storitve obveščanja",
+ "history_stats": "Znova naloži entitete statistike zgodovine",
+ "homekit": "Znova naloži HomeKit",
+ "input_boolean": "Znova naloži vhodne logične vrednosti",
+ "input_datetime": "Znova naloži vhodne datume",
+ "input_number": "Znova naloži vhodne številke",
+ "input_select": "Znova naloži izbor vhodov",
+ "input_text": "Znova naloži vhodna besedila",
+ "min_max": "Znova naloži entitete min/maks.",
+ "mqtt": "Znova naloži ročno nastavljene MQTT entitete",
+ "person": "Znova naloži osebe",
+ "ping": "Znova naloži entitete za pinganje binarnega senzorja.",
+ "reload": "Znova naloži {domain}",
+ "rest": "Znova naloži entitete za REST in storitve obveščanja",
+ "rpi_gpio": "Znova naloži Raspberry Pi GPIO entitete",
+ "scene": "Znova naloži scene",
+ "script": "Znova naloži skripte",
+ "smtp": "Znova naloži storitve za SMTP obvestila",
+ "statistics": "Znova naloži statistične entitete",
+ "telegram": "Znova naloži storitve za telegram obestila",
+ "template": "Znova naloži entitete predlog",
+ "trend": "Znova naloži entitete trendov",
+ "universal": "Znova naloži entitete univerzalnega predvajalnika",
+ "zone": "Območja"
+ },
+ "server_control": {
+ "perform_action": "{action} strežnik",
+ "restart": "Znova zaženi",
+ "stop": "Zaustavi"
+ },
+ "types": {
+ "server_control": "Strežnik"
+ }
+ },
+ "filter_placeholder": "Filter entitet"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant ni slišal ničesar",
+ "error": "Ups, prišlo je do napake",
+ "found": "Za vas sem našel naslednje:",
+ "how_can_i_help": "Kako lahko pomagam?",
+ "label": "Vnesite vprašanje in pritisnite »Enter«",
+ "label_voice": "Vnesite in pritisnite »Enter« ali tapnite mikrofon in spregovorite"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Dodajte naprave prek te naprave",
+ "clusters": "Upravljanje gruč",
+ "reconfigure": "Znova konfiguriraj napravo",
+ "remove": "Odstranite napravo",
+ "view_in_visualization": "Ogled v vizualizaciji",
+ "zigbee_information": "Podpis naprave Zigbee"
+ },
+ "confirmations": {
+ "remove": "Ali ste prepričani, da želite odstraniti napravo?"
+ },
+ "device_signature": "Podpis naprave Zigbee",
+ "last_seen": "Nazadnje viden",
+ "manuf": "naredil: {manufacturer}",
+ "no_area": "Brez območja",
+ "power_source": "Vir napajanja",
+ "quirk": "Posebnost",
+ "services": {
+ "reconfigure": "Znova konfiguriraj napravo ZHA (\"pozdravite\" napravo). To uporabite, če imate z njo težave. Če ta naprava deluje na baterije, se prepričajte, da je budna in sprejema ukaze pri uporabi te storitve.",
+ "remove": "Odstranite napravo iz omrežja Zigbee.",
+ "updateDeviceName": "Nastavite ime po meri za to napravo v registru naprav.",
+ "zigbee_information": "Oglejte si informacije Zigbee za to napravo."
+ },
+ "unknown": "Neznano",
+ "zha_device_card": {
+ "device_name_placeholder": "Spremenite ime naprave"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Atribut",
+ "button_hide": "Skrij podrobnosti",
+ "button_show": "Pokaži podrobnosti",
+ "configuration_complete": "Ponovna konfiguracija naprave je končana.",
+ "configuration_failed": "Ponovna konfiguracija naprave ni uspela. Dodatne informacije so lahko na voljo v dnevnikih.",
+ "configuring_alt": "Konfiguriranje",
+ "heading": "Ponovno konfiguriranje naprave",
+ "in_progress": "Naprava se ponovno konfigurira. To bo morda trajalo nekaj časa.",
+ "min_max_change": "min/max/sprememba",
+ "start_reconfiguration": "Zaženi ponovno konfiguracijo"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\none {dan}\nother {dni}\n}",
+ "hour": "{count} {count, plural,\n one {ura}\n two {uri}\n three {ure}\n four {ure}\n other {ur}\n}",
+ "minute": "{count} {count, plural,\n one {minuta}\n two {minuti}\n three {minute}\n four {minute}\n other {minut}\n}",
+ "second": "{count} {count, plural,\none {sekunda}\ntwo {sekundi}\nthree {sekunde}\nfour {sekunde}\nother {sekund}\n}",
+ "week": "{count} {count, plural,\none {Teden}\nother {Tednov}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Konfiguracijo lahko še vedno urejate v YAML.",
+ "editor_not_available": "Za tip ''{type}'' ni na voljo vizualni urejevalnik.",
+ "key_missing": "Manjka zahtevani ključ \"{key} \".",
+ "key_not_expected": "Ključ ''{key}'' ni pričakovan ali ga vizualni urejevalnik ne podpira.",
+ "no_state_array_support": "Več vrednosti stanja ni podprtih v vizualnem urejevalniku"
+ },
+ "supervisor": {
+ "reboot": "Poskusite ponovni zagon gostitelja",
+ "system_health": "Preverite zdravje sistema",
+ "title": "Nadzorne plošče ni bilo mogoče naložiti!",
+ "wait": "Če ste šele začeli, se prepričajte, da ste nadzorniku dali dovolj časa za začetek."
+ }
+ },
+ "login-form": {
+ "log_in": "Prijavi se",
+ "password": "Geslo",
+ "remember": "Zapomni si"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Kliknite gumb, da konfigurirate {entity}",
+ "close": "Zapri",
+ "dismiss_all": "Zavrzi vse",
+ "empty": "Ni obvestil",
+ "title": "Obvestila"
+ },
+ "notification_toast": {
+ "connection_lost": "Povezava prekinjena. Vnovično vzpostavljanje povezave …",
+ "dismiss": "Opusti",
+ "service_call_failed": "Storitve ni bilo mogoče poklicati {service}.",
+ "started": "Home Assistant se je zagnal!",
+ "starting": "Home Assistant se zaganja, vse ne bo na voljo, dokler se zagon ne konča.",
+ "triggered": "Sproženo {name}"
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Ali manjkajo možnosti konfiguracije? Vključi napredni način",
+ "link_profile_page": "stran profila"
+ },
+ "areas": {
+ "add_picture": "Dodajte sliko",
+ "caption": "Območja",
+ "data_table": {
+ "area": "Območje",
+ "devices": "Naprave",
+ "entities": "Entitete"
+ },
+ "delete": {
+ "confirmation_text": "Vse naprave na tem območju bodo postale nedodeljene.",
+ "confirmation_title": "Ali ste prepričani, da želite izbrisati to območje?"
+ },
+ "description": "Združevanje naprav in entitet v območja",
+ "edit_settings": "Nastavitve območja",
+ "editor": {
+ "area_id": "ID območja",
+ "create": "Ustvari",
+ "default_name": "Novo območje",
+ "delete": "Izbriši",
+ "linked_entities_caption": "Entitete",
+ "name": "Ime",
+ "name_required": "Ime je obvezno",
+ "no_linked_entities": "S tem področjem ni povezanih entitet.",
+ "unknown_error": "Neznana napaka",
+ "update": "Posodobi"
+ },
+ "picker": {
+ "create_area": "Ustvari območje",
+ "header": "Območja",
+ "integrations_page": "Stran za integracije",
+ "introduction": "Področja se uporabljajo za organizacijo področja naprav. Te informacije bodo uporabljene v celotnem Home Assistant-u in vam bodo pomagale pri organizaciji vašega vmesnika, dovoljenj in integracij z drugimi sistemi.",
+ "introduction2": "Če želite napravo postaviti na neko območje, uporabite spodnjo povezavo, da odprete stran za integracije, nato pa kliknite na nastavljeno integracijo, da pridete do kartic naprave.",
+ "no_areas": "Videti je, da še nimate območij!"
+ }
+ },
+ "automation": {
+ "caption": "Avtomatizacije",
+ "description": "Ustvarite pravila obnašanja po meri za svoj dom",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Uporabite načrt"
+ },
+ "header": "Ustvarite novo avtomatizacijo",
+ "how": "Kako želite ustvariti svojo novo avtomatizacijo?",
+ "start_empty": "Začnite s prazno avtomatizacijo",
+ "start_empty_description": "Ustvarjanje nove avtomatizacije od začetka",
+ "thingtalk": {
+ "create": "Ustvari",
+ "header": "Opišite avtomatizacijo, ki jo želite ustvariti",
+ "input_label": "Kaj naj ta avtomatizacija počne?",
+ "intro": "In poskusili ga bomo ustvariti za vas. Na primer: ugasni luči, ko odidem."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Dodaj akcijo",
+ "delete": "Izbriši",
+ "delete_confirm": "Ali ste prepričani, da želite to izbrisati?",
+ "duplicate": "Podvoji",
+ "header": "Akcije",
+ "introduction": "Dejanja so tisto, kar bo Home Assistant izvedel, ko se sproži avtomatizacija.",
+ "learn_more": "Preberite več o dejanjih",
+ "name": "Akcija",
+ "type": {
+ "choose": {
+ "add_option": "Dodaj možnost",
+ "conditions": "Pogoji",
+ "default": "Privzeta dejanja",
+ "label": "Izberite",
+ "option": "Možnost {number}",
+ "remove_option": "Odstranite možnost",
+ "sequence": "Akcije"
+ },
+ "condition": {
+ "label": "Stanje"
+ },
+ "delay": {
+ "delay": "Trajanje",
+ "label": "Zamik"
+ },
+ "device_id": {
+ "action": "Akcija",
+ "extra_fields": {
+ "brightness_pct": "Svetlost",
+ "code": "Koda",
+ "message": "Sporočilo",
+ "position": "Položaj",
+ "title": "Naslov",
+ "value": "Vrednost"
+ },
+ "label": "Naprava"
+ },
+ "event": {
+ "event": "Dogodek",
+ "label": "Požarni dogodek",
+ "service_data": "Podatki storitve"
+ },
+ "repeat": {
+ "label": "Ponovite",
+ "sequence": "Akcije",
+ "type": {
+ "count": {
+ "label": "Števec"
+ },
+ "until": {
+ "conditions": "Dokler pogoji",
+ "label": "Dokler"
+ },
+ "while": {
+ "conditions": "Medtem pogoji",
+ "label": "Medtem"
+ }
+ },
+ "type_select": "Vrsta ponovite"
+ },
+ "scene": {
+ "label": "Aktivirajte sceno"
+ },
+ "service": {
+ "label": "Kliči storitev"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Nadaljuj ob časovni omejitvi",
+ "label": "Čakaj na sprožilec",
+ "timeout": "Časovna omejitev (izbirno)"
+ },
+ "wait_template": {
+ "continue_timeout": "Nadaljuj ob časovni omejitvi",
+ "label": "počakajte",
+ "timeout": "Časovna omejitev (neobvezno)",
+ "wait_template": "Čakalna predloga"
+ }
+ },
+ "type_select": "Vrsta ukrepa",
+ "unsupported_action": "Ni podpore za UI za dejanje: {action}"
+ },
+ "alias": "Ime",
+ "blueprint": {
+ "blueprint_to_use": "Načrt za uporabo",
+ "header": "Načrt",
+ "no_blueprints": "Nimate načrtov",
+ "no_inputs": "Ta načrt nima vhodov."
+ },
+ "conditions": {
+ "add": "Dodaj pogoj",
+ "delete": "Izbriši",
+ "delete_confirm": "Ali ste prepričani, da želite to izbrisati?",
+ "duplicate": "Podvoji",
+ "header": "Pogoji",
+ "introduction": "Pogoji so izbirni in bodo preprečili nadaljnjo izvedbo, razen če so izpolnjeni vsi pogoji.",
+ "learn_more": "Preberite več o pogojih",
+ "name": "Stanje",
+ "type": {
+ "and": {
+ "label": "In"
+ },
+ "device": {
+ "condition": "Stanje",
+ "extra_fields": {
+ "above": "Nad",
+ "below": "Pod",
+ "for": "Trajanje"
+ },
+ "label": "Naprava"
+ },
+ "not": {
+ "label": "Ne"
+ },
+ "numeric_state": {
+ "above": "Nad",
+ "below": "Pod",
+ "label": "Numerično stanje",
+ "value_template": "Vrednostna predloga (neobvezno)"
+ },
+ "or": {
+ "label": "Ali"
+ },
+ "state": {
+ "label": "Stanje",
+ "state": "Stanje"
+ },
+ "sun": {
+ "after": "Po:",
+ "after_offset": "Po odmiku (neobvezno)",
+ "before": "Pred:",
+ "before_offset": "Pred odmikom (neobvezno)",
+ "label": "Sonce",
+ "sunrise": "sončni vzhod",
+ "sunset": "Sončni zahod"
+ },
+ "template": {
+ "label": "Predloga",
+ "value_template": "Vrednostna predloga"
+ },
+ "time": {
+ "after": "Po",
+ "before": "Pred",
+ "label": "Čas",
+ "type_input": "Vrednost pomočnika za datum/čas",
+ "type_value": "Fiksni čas",
+ "weekdays": {
+ "fri": "petek",
+ "mon": "ponedeljek",
+ "sat": "sobota",
+ "sun": "nedelja",
+ "thu": "četrtek",
+ "tue": "torek",
+ "wed": "sreda"
+ }
+ },
+ "trigger": {
+ "label": "Sprožilec",
+ "no_triggers": "Na voljo ni nobenega sprožilca"
+ },
+ "zone": {
+ "entity": "Entitete z lokacijo",
+ "label": "Območje",
+ "zone": "Območje"
+ }
+ },
+ "type_select": "Vrsta pogoja",
+ "unsupported_condition": "Brez podpore za UI za pogoj: {condition}"
+ },
+ "copy_to_clipboard": "Kopiraj v odložišče",
+ "default_name": "Nova avtomatizacija",
+ "description": {
+ "label": "Opis",
+ "placeholder": "Izbirni opis"
+ },
+ "edit_ui": "Uredi v uporabniškem vmesniku",
+ "edit_yaml": "Uredi kot YAML",
+ "enable_disable": "Omogoči / onemogoči avtomatizacijo",
+ "introduction": "Uporabite avtomatizacije za oživitev vašega doma.",
+ "load_error_not_editable": "Urejati je mogoče le avtomatizacije v automations.yaml.",
+ "load_error_unknown": "Napaka pri nalaganju avtomatizacije ({err_no}).",
+ "max": {
+ "parallel": "Največje število vzporednih tokov",
+ "queued": "Dolžina čakalne vrste"
+ },
+ "modes": {
+ "description": "Način nadzoruje, kaj se zgodi, ko se avtomatizacija sproži, medtem, ko dejanja od prejšnjega sprožilca še vedno tečejo. Oglejte si {documentation_link} za več informacij.",
+ "documentation": "dokumentacija za avtomatizacijo",
+ "label": "Način",
+ "parallel": "Vzporedno",
+ "queued": "V čakalni vrsti",
+ "restart": "Ponovni zagon",
+ "single": "Enojno (privzeta nastavitev)"
+ },
+ "move_down": "Premakni navzdol",
+ "move_up": "Premakni navzgor",
+ "save": "Shrani",
+ "show_trace": "Pokaži sled",
+ "triggers": {
+ "add": "Dodaj sprožilec",
+ "delete": "Izbriši",
+ "delete_confirm": "Ali ste prepričani, da želite to izbrisati?",
+ "duplicate": "Podvoji",
+ "header": "Sprožilci",
+ "introduction": "Sprožilci so tisto, kar začne obdelavo pravila avtomatizacije. Za isto pravilo je mogoče določiti več sprožilcev. Ko se sprožilec sproži, bo Home Assistant preveril morebitne pogoje in izvedel dejanje.",
+ "learn_more": "Preberite več o sprožilcih",
+ "name": "Sprožilec",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Nad",
+ "below": "Pod",
+ "for": "Trajanje",
+ "zone": "Območje"
+ },
+ "label": "Naprava",
+ "trigger": "Sprožilec"
+ },
+ "event": {
+ "context_user_pick": "Izberite uporabnika",
+ "context_user_picked": "Uporabnikov dogodek sprožilca",
+ "context_users": "Omeji na dogodke, ki jih sproži",
+ "event_data": "Podatki o dogodku",
+ "event_type": "Vrsta dogodka",
+ "label": "Dogodek"
+ },
+ "geo_location": {
+ "enter": "Vnesite",
+ "event": "Dogodek:",
+ "label": "Geolokacija",
+ "leave": "Odidi",
+ "source": "Vir",
+ "zone": "Območje"
+ },
+ "homeassistant": {
+ "event": "Dogodek:",
+ "label": "Home Assistant",
+ "shutdown": "Zaustavitev",
+ "start": "Zagon"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Obremenitev (neobvezno)",
+ "topic": "Tema"
+ },
+ "numeric_state": {
+ "above": "Nad",
+ "below": "Pod",
+ "label": "Numerično stanje",
+ "value_template": "Vrednostna predloga (neobvezno)"
+ },
+ "state": {
+ "attribute": "Atribut (izbirno)",
+ "for": "Za",
+ "from": "Od",
+ "label": "Stanje",
+ "to": "Za"
+ },
+ "sun": {
+ "event": "Dogodek:",
+ "label": "Sonce",
+ "offset": "Odmik (neobvezno)",
+ "sunrise": "Sončni vzhod",
+ "sunset": "Sončni zahod"
+ },
+ "tag": {
+ "label": "Značka"
+ },
+ "template": {
+ "label": "Predloga",
+ "value_template": "Vrednostna predloga"
+ },
+ "time": {
+ "at": "Ob",
+ "label": "Čas",
+ "type_input": "Vrednost pomočnika za datum/čas",
+ "type_value": "Fiksni čas"
+ },
+ "time_pattern": {
+ "hours": "Ur",
+ "label": "Časovni vzorec",
+ "minutes": "Minut",
+ "seconds": "Sekund"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook ID"
+ },
+ "zone": {
+ "enter": "Vnesite",
+ "entity": "Entitete z lokacijo",
+ "event": "Dogodek:",
+ "label": "Območje",
+ "leave": "Odhod",
+ "zone": "Območje"
+ }
+ },
+ "type_select": "Tip sprožilca",
+ "unsupported_platform": "Brez podpore za UI za platformo: {platform}"
+ },
+ "unsaved_confirm": "Imate neshranjene spremembe. Ste prepričani, da želite zapustiti stran?"
+ },
+ "picker": {
+ "add_automation": "Dodaj avtomatizacijo",
+ "delete_automation": "Izbriši avtomatizacijo",
+ "delete_confirm": "Ali ste prepričani, da želite izbrisati to avtomatizacijo?",
+ "dev_automation": "Odpravite napake pri avtomatizaciji",
+ "duplicate": "Podvoji",
+ "duplicate_automation": "Podvoji avtomatizacijo",
+ "edit_automation": "Urejanje avtomatizacije",
+ "header": "Urejevalnik avtomatizacije",
+ "headers": {
+ "name": "Ime"
+ },
+ "introduction": "Urejevalnik za avtomatizacijo vam omogoča ustvarjanje in urejanje avtomatizacij. Prosimo, da preberete [navodila] (https://home-assistant.io/docs/automation/editor/), da preverite, ali ste pravilno nastavili Home Assistant-a.",
+ "learn_more": "Preberite več o avtomatizacijah",
+ "no_automations": "Ne moremo najti nobene avtomatizacije za urejanje",
+ "only_editable": "Urejajo se lahko samo avtomatizacije, definirane v automations.yaml.",
+ "pick_automation": "Izberite avtomatizacijo za urejanje",
+ "show_info_automation": "Prikaži informacije o avtomatizaciji"
+ },
+ "thingtalk": {
+ "create": "Ustvari avtomatizacijo",
+ "link_devices": {
+ "ambiguous_entities": "Ena ali več naprav ima več entitet, ki se ujemajo, izberite tisto, ki jo želite uporabiti.",
+ "header": "Krasno! Zdaj moramo povezati nekaj naprav",
+ "unknown_placeholder": "Neznano rezervirano mesto"
+ },
+ "task_selection": {
+ "error_empty": "Vnesite ukaz ali tapnite preskoči.",
+ "error_unsupported": "Za to (še?) nismo mogli ustvariti avtomatizacije.",
+ "for_example": "Na primer:",
+ "header": "Ustvari novo avtomatizacijo",
+ "introduction": "Spodaj vnesite, kaj naj naredi ta avtomatizacija, mi pa jo bomo poskušali pretvoriti v Home Assistant avtomatizacijo.",
+ "language_note": "Opomba: Za zdaj je podprta le angleščina."
+ }
+ },
+ "trace": {
+ "download_trace": "Prenesi sled",
+ "edit_automation": "Urejanje avtomatizacije",
+ "newer_trace": "Novejša sled",
+ "older_trace": "Starejša sled",
+ "refresh": "Osveži"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "forumi skupnosti",
+ "error_no_url": "Vnesite URL naslov načrta.",
+ "file_name": "Pot do načrta",
+ "header": "Uvozite načrt",
+ "import_btn": "Predogled načrta",
+ "import_header": "Načrt \"{name}\"",
+ "import_introduction_link": "Načrte je mogoče uvoziti od drugih Github uporabnikov ali {community_link}. Spodaj vnesite URL naslov načrta.",
+ "importing": "Nalaganje načrta ...",
+ "raw_blueprint": "Vsebina načrta",
+ "save_btn": "Uvozi načrt",
+ "saving": "Uvažanje načrta …",
+ "unsupported_blueprint": "Ta načrt ni podprt",
+ "url": "URL načrta"
+ },
+ "caption": "Načrti",
+ "description": "Upravljanje načrtov",
+ "overview": {
+ "add_blueprint": "Uvozi načrt",
+ "confirm_delete_header": "Želite izbrisati ta načrt?",
+ "confirm_delete_text": "Ali ste prepričani, da želite izbrisati ta načrt",
+ "create_automation": "Ustvari avtomatizacijo",
+ "create_script": "Ustvari skripto",
+ "delete_blueprint": "Izbriši načrt",
+ "discover_more": "Odkrijte več načrtov",
+ "header": "Urejevalnik načrtov",
+ "headers": {
+ "domain": "Domena",
+ "file_name": "Ime datoteke",
+ "name": "Ime",
+ "type": "Tip"
+ },
+ "introduction": "Konfiguracija načrta omogoča uvažanje in urejanje načrtov.",
+ "learn_more": "Preberite več o načrtih",
+ "share_blueprint": "Delite načrt",
+ "types": {
+ "automation": "Avtomatizacija",
+ "script": "Skripta"
+ },
+ "use_blueprint": "Ustvari avtomatizacijo"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Konfiguracijska dokumentacija",
+ "disable": "onemogočiti",
+ "enable": "omogočiti",
+ "enable_ha_skill": "Omogoči Home Assistant spretnost za Alexo",
+ "enable_state_reporting": "Omogoči poročanje o stanju",
+ "info": "Z integracijo Alexa za Home Assistant cloud boste lahko nadzirali vse svoje naprave s pomočjo katere koli naprave, ki podpira Alexa.",
+ "info_state_reporting": "Če omogočite poročanje o stanju, bo Home Assistant Amazonu poslal vse spremembe stanja izpostavljenih entitet. To vam omogoča, da vedno vidite najnovejša stanja v aplikaciji Alexa.",
+ "manage_entities": "Upravljaj entitete",
+ "state_reporting_error": "Stanja poročila ni mogoče {enable_disable}.",
+ "sync_entities": "Sinhroniziranje entitet",
+ "sync_entities_error": "Sinhroniziranje entitet ni uspelo:",
+ "title": "Alexa"
+ },
+ "connected": "Povezan",
+ "connecting": "Povezovanje …",
+ "connection_status": "Stanje povezave v oblaku",
+ "fetching_subscription": "Pridobivam naročnino…",
+ "google": {
+ "config_documentation": "Konfiguracijska dokumentacija",
+ "devices_pin": "Pin koda za varnostne naprave",
+ "enable_ha_skill": "Aktivirajte spretnost Home Assistant za Pomočnika Google",
+ "enable_state_reporting": "Omogoči poročanje o stanju",
+ "enter_pin_error": "PIN-a ni mogoče shraniti:",
+ "enter_pin_hint": "Vnesite kodo PIN za uporabo varnostnih naprav",
+ "enter_pin_info": "Prosimo vnesite kodo pin za interakcijo z varnostnimi napravami. Varnostne naprave so vrata, garažna vrata in ključavnice. Med interakcijo s takšnimi napravami prek Googlovega pomočnika boste morali povedati / vnesti ta pin.",
+ "info": "Z integracijo Pomočnik Google za Home Assistant cloud boste lahko nadzirali vse svoje naprave s pomočjo katere koli naprave, ki ga podpirajo.",
+ "info_state_reporting": "Če omogočite poročanje o stanju, bo Home Assistant Googlu poslal vse spremembe stanja izpostavljenih entitet. To vam omogoča, da vedno vidite najnovejša stanja v aplikaciji Google.",
+ "manage_entities": "Upravljaj entitete",
+ "security_devices": "Varnostne naprave",
+ "sync_entities": "Sinhronizirajte entitete z Googlom",
+ "sync_entities_404_message": "Ni bilo mogoče sinhronizirati vaših entitet z Googlom, prosite Google »Hej Google, sinhroniziraj moje naprave«, da bi sinhroniziral vaše entitete.",
+ "title": "Pomočnik Google"
+ },
+ "integrations": "Integracije",
+ "integrations_introduction": "Integracija za Home Assistant Cloud vam omogoča povezovanje s storitvami v oblaku, ne da bi vam bilo treba Home Assistant javno izpostavljati po internetu.",
+ "integrations_introduction2": "Preverite spletno stran za ",
+ "integrations_link_all_features": "vse razpoložljive funkcije",
+ "manage_account": "Upravljaj račun",
+ "nabu_casa_account": "Račun Nabu Casa",
+ "not_connected": "Brez povezave",
+ "remote": {
+ "access_is_being_prepared": "Oddaljeni dostop se pripravlja. Obvestili vas bomo, ko bo pripravljen.",
+ "certificate_info": "Informacije o potrdilu",
+ "connected": "Povezan",
+ "info": "Home Assistant Cloud zagotavlja varno oddaljeno povezavo do vašega primerka, medtem ko ste zunaj doma.",
+ "instance_is_available": "Vaš primerek je na voljo na",
+ "instance_will_be_available": "Vaš primerek bo na voljo na",
+ "link_learn_how_it_works": "Naučite se, kako deluje",
+ "not_connected": "Brez povezave",
+ "reconnecting": "Brez povezave. Poskušam ponovno vzpostaviti povezavo.",
+ "remote_enabled": {
+ "description": "Omogočite to možnost, da zagotovite, da bo vaša instanca Home Assistant vedno dostopena na daljavo."
+ },
+ "title": "Oddaljeno upravljanje"
+ },
+ "sign_out": "Izpis",
+ "thank_you_note": "Zahvaljujemo se vam za to, da ste del Home Assistant Cloud-a. Zaradi ljudi, kot ste vi, smo sposobni narediti dobro izkušnjo avtomatizacije doma za vsakogar. hvala!",
+ "tts": {
+ "default_language": "Privzeti jezik za uporabo",
+ "dialog": {
+ "example_message": "Pozdravljeni, {name} , poljubno besedilo lahko predvajate na katerem koli podprtem predvajalniku medijev!",
+ "header": "Preizkusite pretvorbo besedila v govor",
+ "play": "Predvajaj",
+ "target": "Cilj",
+ "target_browser": "Brskalnik"
+ },
+ "female": "Ženska",
+ "male": "Moški",
+ "title": "Besedilo v govor",
+ "try": "Poskusi"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Ni uspelo onemogočiti webhook:",
+ "info": "Vsemu, kar je nastavljeno tako, da se sproži webhook je mogoče dati javno dostopen URL, kar jim omogoča, pošljanje podatkov nazaj na Home Assistant od kjerkoli, ne da bi izpostavili vaš primerek na internetu.",
+ "link_learn_more": "Preberite več o ustvarjanju avtomatizacij, ki jih poganjajo webhook-i.",
+ "loading": "Nalaganje",
+ "manage": "Upravljanje",
+ "no_hooks_yet": "Izgleda, da še nimate webhooks-ov. Začnite s konfiguracijo ",
+ "no_hooks_yet2": " ali z ustvarjanjem ",
+ "no_hooks_yet_link_automation": "webhook avtomatizacije",
+ "no_hooks_yet_link_integration": "integracijo, ki temelji na Webhook-u",
+ "title": "Webhooks"
+ }
+ },
+ "alexa": {
+ "banner": "Urejanje entitet, ki so izpostavljeni prek tega uporabniškega vmesnika, je onemogočeno, ker ste v config.yaml konfigurirali filtre entitet.",
+ "dont_expose_entity": "Ne izpostavljaj entitete",
+ "expose": "Izpostavite Alexi",
+ "expose_entity": "Izpostavi entiteto",
+ "exposed": "izpostavljeno: {selected}",
+ "exposed_entities": "Izpostavljene entitete",
+ "follow_domain": "Sledi domeni",
+ "manage_domains": "Upravljaj z domenami",
+ "not_exposed": "ni izpostavljeno: {selected}",
+ "not_exposed_entities": "Entitete, ki niso izpostavljene",
+ "title": "Alexa"
+ },
+ "description_features": "Imejte nadzor nad domom tudi, ko vas ni doma, povežite z Alexa in Google Asistentom.",
+ "description_login": "Prijavljen kot {email}",
+ "description_not_login": "Niste prijavljeni",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Datum poteka certifikata",
+ "certificate_information": "Podatki o certifikatu",
+ "close": "Zapri",
+ "fingerprint": "Prstni odtis certifikata:",
+ "will_be_auto_renewed": "Bo samodejno obnovljen"
+ },
+ "dialog_cloudhook": {
+ "available_at": "Webhook je na voljo na naslednjem URL-ju:",
+ "close": "Zapri",
+ "confirm_disable": "Ali ste prepričani, da želite onemogočiti ta webhook?",
+ "copied_to_clipboard": "Kopirano v odložišče",
+ "info_disable_webhook": "Če ne želite več uporabljati tega webhook-a, ga lahko",
+ "link_disable_webhook": "onemogoče",
+ "managed_by_integration": "Ta webhook upravlja integracija in je ni mogoče onemogočiti.",
+ "view_documentation": "Oglejte si dokumentacijo",
+ "webhook_for": "Webhook za {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "Preverite vaš e-poštni za navodila za ponastavitev gesla.",
+ "email": "E-poštni naslov",
+ "email_error_msg": "Neveljavna e-pošta",
+ "instructions": "Vnesite svoj e-poštni naslov in poslali vam bomo povezavo za ponastavitev gesla.",
+ "send_reset_email": "Pošljite email za ponastavitev",
+ "subtitle": "Ste pozabili geslo",
+ "title": "Pozabljeno geslo"
+ },
+ "google": {
+ "banner": "Urejanje entitet, ki so izpostavljeni prek tega uporabniškega vmesnika, je onemogočeno, ker ste v config.yaml konfigurirali filtre entitet.",
+ "disable_2FA": "Onemogočite dvofaktorsko preverjanje pristnosti",
+ "dont_expose_entity": "Ne izpostavi entitete",
+ "expose": "Izpostavite Pomočniku Google",
+ "expose_entity": "Izpostavi entiteto",
+ "exposed": "izpostavljeno: {selected}",
+ "exposed_entities": "Izpostavljene entitete",
+ "follow_domain": "Sledi domeni",
+ "manage_domains": "Upravljaj z domenami",
+ "not_exposed": "ni izpostavljeno: {selected}",
+ "not_exposed_entities": "Entitete, ki niso izpostavljene",
+ "sync_to_google": "Sinhroniziranje sprememb z Googlom.",
+ "title": "Pomočnik Google"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Pred prijavo morate potrditi svojo e-pošto.",
+ "alert_password_change_required": "Pred prijavo morate spremeniti geslo.",
+ "dismiss": "Opustite",
+ "email": "E-poštni naslov",
+ "email_error_msg": "Neveljaven e-poštni naslov",
+ "forgot_password": "Pozabljeno geslo",
+ "introduction": "Home Assistant Cloud vam tudi takrat, ko vas ni doma zagotavlja varno oddaljeno povezavo do vašega Home Assistant-a. Prav tako vam omogoča, da se povežete z ostalimi oblačnimi storitvami Amazon Alexa in Google Assistant.",
+ "introduction2": "To storitev upravlja naš partner ",
+ "introduction2a": ", podjetje, ki so ga ustanovili ustanovitelji Home Assistant-a.",
+ "introduction3": "Home Assistant Cloud je naročniška storitev z enomesečno brezplačno poizkusno dobo. Podatki o plačilnih karticah niso potrebni.",
+ "learn_more_link": "Preberite več o Home Assistant Cloud-u",
+ "password": "Geslo",
+ "password_error_msg": "Gesla morajo biti dolga vsaj 8 znakov",
+ "sign_in": "Vpišite se",
+ "start_trial": "Začnite brezplačno 1 mesečno preskusno različico",
+ "title": "Prijava v oblak",
+ "trial_info": "Podatki o plačilu niso potrebni"
+ },
+ "register": {
+ "account_created": "Račun ustvarjen! Preverite vašo e-pošto za navodila o tem, kako aktivirate vaš račun.",
+ "create_account": "Ustvarite račun",
+ "email_address": "E-poštni naslov",
+ "email_error_msg": "Neveljavna e-pošta",
+ "feature_amazon_alexa": "Integracija z Amazon Alexo",
+ "feature_google_home": "Integracijo z Googlovim asistentom",
+ "feature_remote_control": "Nadzor Home assistant-a zunaj doma",
+ "feature_webhook_apps": "Enostavna integracija s spletnimi aplikacijami, kot je OwnTracks",
+ "headline": "Začnite brezplačno preskusno različico",
+ "information": "Ustvarite račun, če želite začeti brezplačno enomesečno preskušanje Home Assistant Cloud-a. Podatki o plačilu niso potrebni.",
+ "information2": "Preizkus vam bo omogočil dostop do vseh prednosti Home Assistant Cloud, vključno z:",
+ "information3": "To storitev upravlja naš partner ",
+ "information3a": ", podjetje, ki so ga ustanovili ustanovitelji Home Assistant-a.",
+ "information4": "Z registracijo računa se strinjate z naslednjimi pravili in pogoji.",
+ "link_privacy_policy": "Politika zasebnosti",
+ "link_terms_conditions": "Pravila in Pogoji",
+ "password": "Geslo",
+ "password_error_msg": "Gesla morajo biti dolga vsaj 8 znakov",
+ "resend_confirm_email": "Znova pošlji potrditveno e-poštno sporočilo",
+ "start_trial": "Začnite preizkus",
+ "title": "Registrirajte račun"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Imate neshranjene spremembe. Ste prepričani, da želite zapustiti?"
+ },
+ "learn_more": "Preberite več"
+ },
+ "core": {
+ "caption": "Splošno",
+ "description": "Sistem enot, lokacija, časovni pas in drugi splošni parametri",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "valuta",
+ "edit_requires_storage": "Urejevalnik je onemogočen, ker so nastavitve shranjene v configuration.yaml.",
+ "elevation": "Nadmorska višina",
+ "elevation_meters": "metrov",
+ "external_url": "Zunanji URL",
+ "find_currency_value": "Poiščite svojo vrednost",
+ "imperial_example": "Fahrenheit, funtov",
+ "internal_url": "Notranji URL",
+ "latitude": "Zemljepisna širina",
+ "location_name": "Ime vašega instalacije vašega Home Assistant-a.",
+ "longitude": "Zemljepisna dolžina",
+ "metric_example": "Celzija, kilogramov",
+ "save_button": "Shrani",
+ "time_zone": "Časovni pas",
+ "unit_system": "Sistem enot",
+ "unit_system_imperial": "Imperial",
+ "unit_system_metric": "Metrično"
+ },
+ "header": "Nastavitve in nadzor strežnika",
+ "introduction": "Spreminjanje konfiguracije je lahko zapleten proces. Vemo. Ta del bo poskušal narediti vaše življenje malo lažje."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Naslednji atributi so že nastavljeni v customize.yaml",
+ "attributes_not_set": "Naslednji atributi niso bili nastavljeni. Nastavite jih, če želite.",
+ "attributes_outside": "Naslednji atributi so prilagojeni zunaj customize.yaml",
+ "attributes_override": "Če jih želite, jih lahko preglasite.",
+ "attributes_set": "Naslednji atributi entitete so nastavljeni programsko.",
+ "caption": "Prilagoditve",
+ "description": "Prilagodite svoje entitete",
+ "different_include": "Mogoče prek domene, globusa ali drugačne vsebovanosti.",
+ "pick_attribute": "Izberite atribut, ki ga želite preglasiti",
+ "picker": {
+ "documentation": "Dokumentacija o prilagoditvah",
+ "header": "Prilagoditve",
+ "introduction": "Prilagajanja atributov na entiteti. Dodane/spremenjene prilagoditve začnejo veljati takoj. Odstranjene pa po posodobitvi entitete."
+ },
+ "warning": {
+ "include_link": "vsebuje pravilno customize.yaml",
+ "include_sentence": "Zdi se, da vaš configuration.yaml ne",
+ "not_applied": "Spremembe bodo vpisane, vendar ne bodo prikazane po ponovnem nalaganju konfiguracije, razen, če je pravilno nastavljeno vsebovanje."
+ }
+ },
+ "devices": {
+ "add_prompt": "{name} še niso bile dodana za to napravo. Lahko jih dodaš s klikom na gumb + spodaj.",
+ "automation": {
+ "actions": {
+ "caption": "Ko se nekaj sproži …",
+ "no_actions": "Ni dejanj",
+ "unknown_action": "Neznano dejanje"
+ },
+ "automations": "Avtomatizacije",
+ "conditions": {
+ "caption": "Naredite nekaj, samo če …",
+ "no_conditions": "Brez pogojev",
+ "unknown_condition": "Neznan pogoj"
+ },
+ "create": "Ustvarjanje avtomatizacije z napravo",
+ "create_disable": "Z onemogočeno napravo ni mogoče ustvariti avtomatizacije",
+ "no_automations": "Ni avtomatizacij",
+ "no_device_automations": "Za to napravo ni na voljo nobenih avtomatizacij.",
+ "triggers": {
+ "caption": "Naredi nekaj, ko ...",
+ "no_triggers": "Ni sprožilcev",
+ "unknown_trigger": "Neznan sprožilec"
+ },
+ "unknown_automation": "Neznana avtomatizacija"
+ },
+ "cant_edit": "Urejate lahko samo elemente, ki so ustvarjeni v uporabniškem vmesniku.",
+ "caption": "Naprave",
+ "confirm_delete": "Ali ste prepričani, da želite odstraniti to napravo?",
+ "confirm_rename_entity_ids": "Ali želite tudi preimenovati ID-je entitet?",
+ "confirm_rename_entity_ids_warning": "To ne bo spremenilo nobene konfiguracije (kot so avtomatizacije, skripti, prizori, nadzorne plošče), ki trenutno uporabljajo te entitete! Sami jih boste morali posodobiti, da boste uporabili nove ID-je entitet!",
+ "data_table": {
+ "area": "Območje",
+ "battery": "Baterija",
+ "device": "Naprava",
+ "integration": "Integracija",
+ "manufacturer": "Proizvajalec",
+ "model": "Model",
+ "no_devices": "Brez naprav"
+ },
+ "delete": "Izbriši",
+ "description": "Upravljanje povezanih naprav",
+ "device_info": "Informacije o napravi",
+ "device_not_found": "Naprave ni bilo mogoče najti",
+ "disabled": "Onemogočeno",
+ "disabled_by": {
+ "config_entry": "Vnos v konfiguracijo",
+ "integration": "Integracija",
+ "user": "Uporabnik"
+ },
+ "edit_settings": "Urejanje nastavitev",
+ "enabled_cause": "Naprava je onmogočena zaradi {cause}",
+ "enabled_description": "Onemogočene naprave ne bodo prikazane, entitete, ki pripadajo napravi, pa bodo onemogočene in ne bodo dodane v Home Assistant.",
+ "enabled_label": "Omogoči napravo",
+ "entities": {
+ "add_entities_lovelace": "Dodaj v Lovelace",
+ "config": "Konfiguracija",
+ "control": "Kontrole",
+ "diagnostic": "Diagnostika",
+ "disabled_entities": "+{count} {count, plural,\n one {Onemogočena entiteta}\n other {onemogočene entitete}\n}",
+ "entities": "Entitete",
+ "hide_disabled": "Skrij onemogočene",
+ "none": "Ta naprava nima entitet",
+ "sensor": "Senzorji",
+ "state": "Stanje"
+ },
+ "name": "Ime",
+ "no_devices": "Brez naprav",
+ "open_configuration_url_device": "Obiščite napravo",
+ "open_configuration_url_service": "Obiščite storitev",
+ "picker": {
+ "filter": {
+ "filter": "Filter",
+ "hidden_devices": "{number} {number, plural,\n one {skrita naprava}\n two {skriti napravi}\n few {skrite naprave}\n other {skritih naprav}\n}",
+ "show_all": "Prikaži vse",
+ "show_disabled": "Prikaži onemogočene naprave"
+ },
+ "search": "Iskanje naprav"
+ },
+ "scene": {
+ "create": "Ustvarjanje scen z napravo",
+ "create_disable": "Z onemogočeno napravo ni mogoče ustvariti scene",
+ "no_scenes": "Ni scen",
+ "scenes": "Scene"
+ },
+ "scenes": "Scene",
+ "script": {
+ "create": "Ustvarjanje skript z napravo",
+ "create_disable": "Z onemogočeno napravo ni mogoče ustvariti skripta",
+ "no_scripts": "Brez skriptov",
+ "scripts": "Skripte"
+ },
+ "scripts": "Skripte",
+ "unknown_error": "Neznana napaka",
+ "unnamed_device": "Neimenovana naprava",
+ "update": "Posodobite",
+ "update_device_error": "Posodabljanje naprave ni uspelo"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Dodajte baterijski sistem",
+ "battery_systems": "Baterijski sistemi",
+ "dialog": {
+ "energy_into_battery": "Energija, ki gre v baterijo (kWh)",
+ "energy_out_of_battery": "Energija, ki prihaja iz baterije (kWh)",
+ "header": "Konfiguracija baterijskega sistema"
+ },
+ "learn_more": "Več informacij o tem, kako začeti.",
+ "title": "Domača shramba za baterije"
+ },
+ "caption": "Energija",
+ "delete_integration": "Ali ste prepričani, da želite izbrisati to integracijo? Odstranil bo entitete, ki jih zagotavlja",
+ "delete_source": "Ali ste prepričani, da želite izbrisati ta vir?",
+ "description": "Spremljajte proizvodnjo in porabo energije",
+ "device_consumption": {
+ "add_device": "Dodajte napravo",
+ "devices": "Naprave",
+ "dialog": {
+ "device_consumption_energy": "Poraba energije naprave (kWh)",
+ "header": "Dodajte napravo",
+ "selected_stat_intro": "Izberite entiteto, ki predstavlja porabo energije naprave."
+ },
+ "learn_more": "Več informacij o tem, kako začeti.",
+ "selected_stat": "Sledenje energiji za",
+ "sub": "Sledenje porabi energije posameznih naprav omogoča Home Assistantu, da razčleni vašo porabo energije glede na napravo.",
+ "title": "Posamezne naprave"
+ },
+ "gas": {
+ "add_gas_source": "Dodajte vir plina",
+ "dialog": {
+ "cost_entity": "Uporabite entiteto s trenutno ceno",
+ "cost_entity_input": "Entiteta s trenutno ceno na {unit}",
+ "cost_number": "Uporaba statične cene",
+ "cost_number_input": "Cena na {unit}",
+ "cost_number_suffix": "{currency}/m³",
+ "cost_stat": "Uporaba entitete, ki spremlja skupne stroške",
+ "cost_stat_input": "Entiteta skupnih stroškov",
+ "energy_stat": "Porabljena energija (m³)",
+ "gas_usage": "Poraba plina",
+ "header": "Konfiguracija porabe plina",
+ "m3_or_kWh": "m³ ali kWh",
+ "no_cost": "Ne spremljaj stroškov",
+ "paragraph": "Poraba plina je količina plina, ki priteče v vaš dom."
+ },
+ "gas_consumption": "Poraba plina",
+ "learn_more": "Več informacij o tem, kako začeti.",
+ "sub": "Naj Home Assistant spremlja vašo porabo plina.",
+ "title": "Poraba plina"
+ },
+ "grid": {
+ "add_co2_signal": "Dodajte integracijo signala CO2",
+ "add_consumption": "Dodajte porabo",
+ "add_return": "Dodaj vrnitev",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Uporabite entiteto s trenutno ceno",
+ "cost_entity_input": "Entiteta s trenutno ceno",
+ "cost_number": "Uporaba statične cene",
+ "cost_number_input": "Cena na kWh",
+ "cost_number_suffix": "{valuta}/kWh",
+ "cost_stat": "Uporaba entitete, ki spremlja skupne stroške",
+ "cost_stat_input": "Entiteta skupnih stroškov",
+ "energy_stat": "Porabljena energija (kWh)",
+ "header": "Konfiguracija porabe omrežja",
+ "no_cost": "Ne spremljajte stroškov"
+ },
+ "to": {
+ "cost_entity": "Uporabite entiteto s trenutno stopnjo",
+ "cost_entity_input": "Entiteta s trenutno stopnjo",
+ "cost_number": "uporabi statično vrednost",
+ "cost_number_input": "Cena na kWh",
+ "cost_number_suffix": "{valuta}/kWh",
+ "cost_para": "Ali dobite denar nazaj, ko vrnete energijo v omrežje?",
+ "cost_stat": "Uporabite entiteto, ki sledi skupnemu znesku prejetega denarja.",
+ "cost_stat_input": "Entiteta skupnega nadomestila",
+ "energy_stat": "Energija, vrnjena v omrežje (kWh)",
+ "header": "Konfiguracija proizvodnje energije v omrežje",
+ "no_cost": "Ne dobim nazaj denarja",
+ "paragraph": "Proizvodnja v omrežje je energija, ki se izvaših sončnih kolektorjev pretaka v električno omrežje."
+ }
+ },
+ "grid_carbon_footprint": "Ogljični odtis omrežja",
+ "grid_consumption": "Poraba omrežja",
+ "learn_more": "Več informacij o tem, kako začeti.",
+ "return_to_grid": "Vrnitev v omrežje",
+ "title": "Električno omrežje"
+ },
+ "solar": {
+ "add_solar_production": "Dodaj sončno proizvodnjo",
+ "dialog": {
+ "add_forecast": "Dodaj napoved",
+ "dont_forecast_production": "Ne napoveduj proizvodnje",
+ "forecast_production": "Napoved proizvodnje",
+ "header": "Konfiguracija solarnih panelov",
+ "solar_production_energy": "Sončna proizvodnja energije (kWh)",
+ "solar_production_forecast": "Napoved proizvodnje sončne energije",
+ "solar_production_forecast_description": "Če dodate informacije o napovedi sončne proizvodnje, boste lahko hitro videli pričakovano proizvodnjo za danes."
+ },
+ "learn_more": "Več informacij o tem, kako začeti.",
+ "solar_production": "Sončna proizvodnja",
+ "stat_predicted_production": "Napoved vaše proizvodnje sončne energije",
+ "stat_production": "Vaša proizvodnja sončne energije",
+ "stat_return_to_grid": "Sončna energija, vrnjena v omrežje",
+ "sub": "Dovolite da Home Assistant spremlja vaše sončne kolektorje in vam omogoči vpogled v njihovo delovanje.",
+ "title": "Sončni kolektorji"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "Naslednje entitete imajo negativno stanje, medtem ko se pričakuje pozitivno stanje:",
+ "title": "Entiteta ima negativno stanje"
+ },
+ "entity_not_defined": {
+ "title": "Entiteta ni opredeljena"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "title": "Manjka zadnja ponastavitev"
+ },
+ "entity_state_non_numeric": {
+ "description": "Naslednje entitete imajo stanje, katero ni mogoče razčleniti kot število:",
+ "title": "Entiteta ima neštevilčno stanje"
+ },
+ "entity_unavailable": {
+ "description": "Stanje teh konfiguriranih entitet trenutno ni na voljo:",
+ "title": "Entiteta ni na voljo"
+ },
+ "entity_unexpected_device_class": {
+ "description": "Naslednje entitete nimajo pričakovanega razreda naprave:",
+ "title": "Nepričakovan razred naprave"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "Naslednje entitete nimajo pričakovanega razreda stanja 'total_increasing'",
+ "title": "Nepričakovan razred stanja"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "Naslednje entitete nimajo pričakovanih merskih enot \"kWh\" ali \"Wh\":",
+ "title": "Nepričakovana merska enota"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "Naslednje entitete nimajo pričakovanih merskih enot '' {currency} /kWh'' ali '' {currency} /Wh'':",
+ "title": "Nepričakovana merska enota"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "Naslednje entitete nimajo pričakovanih merskih enot \"kWh\", \"m³\" ali \"ft³\":",
+ "title": "Nepričakovana merska enota"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "Naslednje entitete nimajo pričakovanih merskih enot ''{currency}/kWh'', ''{currency}/Wh'', ''{currency}/m³'' ali ''{currency}/ft³'':",
+ "title": "Nepričakovana merska enota"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Entitete",
+ "description": "Upravljanje znanih entitet",
+ "picker": {
+ "disable_selected": {
+ "button": "Onemogoči izbrane",
+ "confirm_text": "Onemogočene entitete ne bodo dodane v Home Assistant.",
+ "confirm_title": "Ali želite odstraniti {number} {number, plural,\n one {entiteto}\n two {entiteti}\n other {entitete}\n}?"
+ },
+ "enable_selected": {
+ "button": "Omogoči izbrane",
+ "confirm_text": "Naprave bodo znova na voljo v Home Assistant-u, če so zdaj onemogočene.",
+ "confirm_title": "Ali želite omogočiti {number} {number, plural,\n one {entiteto}\n two {entiteti}\n other {entitete}\n}?"
+ },
+ "filter": {
+ "filter": "Filter",
+ "hidden_entities": "{number} {number, plural,\n one {skrita entiteta}\n two {skriti entiteti}\n few {skrite entitete}\n other {skritih entitet}\n}",
+ "show_all": "Pokaži vse",
+ "show_disabled": "Pokaži onemogočene entitete",
+ "show_readonly": "Prikaži entitete \"samo za branje\"",
+ "show_unavailable": "Pokaži nerazpoložljive entitete"
+ },
+ "header": "Entitete",
+ "headers": {
+ "area": "Območje",
+ "disabled_by": "Onemogočeno s strani",
+ "entity_id": "ID entitete",
+ "integration": "Integracija",
+ "name": "Ime",
+ "status": "Stanje"
+ },
+ "introduction": "Home Assistant vodi register vseh entitet, ki jih je kdajkoli videl in jih je mogoče enolično identificirati. Vsak od teh entitet ima dodeljen ID entitete, ki bo rezerviran samo za to entiteto.",
+ "introduction2": "Z registrom entitet lahko nadomestite ime, spremenite ID entitete ali odstranite vnos iz programa Home Assistant.",
+ "remove_selected": {
+ "button": "Odstrani izbrane",
+ "confirm_partly_text": "Lahko odstranite le {removable} izbranih {selected} entitet. Entitete je mogoče odstraniti le, če integracija ne zagotavlja več entitet. Včasih morate znova zagnati Home Assistant, preden lahko odstranite entitete odstranjene integracije. Ali ste prepričani, da želite odstraniti odstranljive entitete?",
+ "confirm_partly_title": "Samo {number} {number, plural,\n one {izbrana entiteta}\n two {izbrani entiteti}\n tree {izbrane entitete}\n four {izbrane entitete}\n other {izbranih entitet}\n} je lahko odstranjenih.",
+ "confirm_text": "Če vsebujejo te entitete, bi jih morali odstraniti iz vašega Lovelace config-a in avtomatizacije.",
+ "confirm_title": "Ali želite odstraniti {number} {number, plural,\n one {entiteto}\n two {entiteti}\n other {entitete}\n}?"
+ },
+ "search": "Iskanje entitet",
+ "selected": "{številka} izbrana/ih",
+ "status": {
+ "disabled": "Onemogočeno",
+ "ok": "V redu",
+ "readonly": "Samo za branje",
+ "restored": "Obnovljeno",
+ "unavailable": "Ni na voljo"
+ }
+ }
+ },
+ "header": "Konfiguriraj Home Assistant",
+ "helpers": {
+ "caption": "Pomočniki",
+ "description": "Upravljanje elementov, s katerimi si lahko pomagate pri gradnji avtomatizacij.",
+ "dialog": {
+ "add_helper": "Dodajte pomočnika",
+ "add_platform": "Dodaj {platform}",
+ "create": "Ustvari"
+ },
+ "picker": {
+ "add_helper": "Dodajte pomočnika",
+ "headers": {
+ "editable": "Za urejanje",
+ "entity_id": "ID entitete",
+ "name": "Ime",
+ "type": "Vrsta"
+ },
+ "no_helpers": "Zdi se, da še nimate pomočnikov!"
+ },
+ "types": {
+ "counter": "Števec",
+ "input_boolean": "Preklopite",
+ "input_datetime": "Datum in/ali čas",
+ "input_number": "Številka",
+ "input_select": "Spustni",
+ "input_text": "Besedilo",
+ "timer": "Časovnik"
+ }
+ },
+ "info": {
+ "built_using": "Zgrajen z uporabo",
+ "caption": "Info",
+ "copy_github": "Za GitHub",
+ "copy_menu": "Kopiraj meni",
+ "copy_raw": "Surovo besedilo",
+ "custom_uis": "Uporabniški vmesniki po meri:",
+ "description": "Ogled informacij o namestitvi Home Assistant",
+ "developed_by": "Razvija ga kup osupljivih ljudi.",
+ "documentation": "Dokumentacija",
+ "frontend": "frontend-ui",
+ "frontend_version": "Frontend različica: {version} - {type}",
+ "home_assistant_logo": "Home Assistant logotip",
+ "icons_by": "Ikone ustvarili z",
+ "integrations": "Integracije",
+ "issues": "Težave",
+ "license": "Objavljeno pod licenco Apache 2.0",
+ "path_configuration": "Pot do configuration.yaml: {path}",
+ "server": "strežnik",
+ "setup_time": "Čas nastavitve",
+ "source": "Vir:",
+ "system_health": {
+ "manage": "Upravljaj",
+ "more_info": "več informacij"
+ },
+ "system_health_error": "Komponenta \"system health\" ni naložena. Dodajte \"system_health:\" v svoj configuration.yaml"
+ },
+ "integrations": {
+ "add_integration": "Dodaj integracijo",
+ "attention": "Zahtevana je pozornost",
+ "caption": "Integracije",
+ "config_entry": {
+ "area": "V {area}",
+ "check_the_logs": "Preverite dnevnike",
+ "configure": "Nastavi",
+ "delete": "Izbriši",
+ "delete_confirm": "Ali ste prepričani, da želite izbrisati integracijo {title}?",
+ "device_unavailable": "naprava ni na voljo",
+ "devices": "{count} {count, plural,\n one {naprava}\n other {naprav}\n}",
+ "disable": {
+ "disable_confirm": "Ali ste prepričani, da želite onemogočiti ta vnos v konfiguraciji? Njegove naprave in entitete bodo onemogočene.",
+ "disabled": "Onemogočeno",
+ "disabled_by": {
+ "device": "naprava",
+ "integration": "integracija",
+ "user": "uporabnik"
+ }
+ },
+ "disable_restart_confirm": "Znova zaženite Home Assistant, da dokončate onemogočanje te integracije",
+ "documentation": "Dokumentacija",
+ "enable_restart_confirm": "Znova zaženite Home Assistant, da dokončate omogočanje te integracije",
+ "entities": "{count} {count, plural,\n one {entiteta}\n two {entiteti}\n other {entitete}\n}",
+ "entity_unavailable": "entiteta ni na voljo",
+ "firmware": "Firmware: {version}",
+ "hub": "Povezan prek",
+ "manuf": "naredil: {manufacturer}",
+ "no_area": "Brez območja",
+ "not_loaded": "Ni naloženo",
+ "provided_by_custom_integration": "Zagotovljeno z integracijo po meri",
+ "reload": "Znova naloži",
+ "reload_confirm": "Integracija je bila znova naložena",
+ "reload_restart_confirm": "Znova zaženi Home Assistant, da dokončate ponovno nalaganje te integracije",
+ "rename": "Preimenuj",
+ "restart_confirm": "Znova zaženite Home Assistant-a, da dokončate odstranitev te integracije",
+ "services": "{count} {count, plural,\n one {storitev}\n two {storitvi}\n other {storitve}\n}",
+ "state": {
+ "loaded": "Naloženo",
+ "migration_error": "Napaka pri migraciji",
+ "setup_retry": "Ponovni poskus nastavitve"
+ },
+ "system_options": "Sistemske možnosti",
+ "unknown_via_device": "Neznana naprava",
+ "unnamed_entry": "Neimenovani vnos",
+ "via": "Povezan prek"
+ },
+ "config_flow": {
+ "aborted": "Prekinjeno",
+ "close": "Zapri",
+ "created_config": "Ustvarjene nastavitve za {name}.",
+ "dismiss": "Opusti pogovorno okno",
+ "error_saving_area": "Napaka pri shranjevanju območja: {error}",
+ "external_step": {
+ "description": "Ta korak zahteva, da za končanje obiščete zunanjo spletno stran.",
+ "open_site": "Odprite spletno stran"
+ },
+ "finish": "Dokončaj",
+ "loading": {
+ "fallback_title": "integracija",
+ "loading_flow": "Prosimo, počakajte, dokler se {integration} ne nastavi",
+ "loading_step": "Nalaganje naslednjega koraka za {integration}"
+ },
+ "next": "Naslednji",
+ "not_all_required_fields": "Vsa zahtevana polja niso izpolnjena.",
+ "pick_flow_step": {
+ "title": "Odkrili smo jih, jih želite nastaviti?"
+ },
+ "submit": "Pošlji"
+ },
+ "configure": "Konfiguriraj",
+ "configured": "Konfigurirano",
+ "description": "Upravljanje integracij s storitvami ali napravami",
+ "details": "Podrobnosti integracije",
+ "disable": {
+ "disabled_integrations": "{number} onemogočeno"
+ },
+ "discovered": "Odkrito",
+ "home_assistant_website": "spletne strani Home Assistant",
+ "ignore": {
+ "confirm_delete_ignore": "Zaradi tega bo integracija spet prikazana v vaših odkritih integracijah, ko bodo odkrite. To lahko zahteva ponovni zagon ali traja nekaj časa.",
+ "confirm_delete_ignore_title": "Ali želite prenehati ignorirati {name}?",
+ "confirm_ignore": "Ali ste prepričani, da ne želite nastaviti te integracije? To lahko razveljavite s klikom na 'Prikaži prezrte integracije' v prelivnem meniju v zgornjem desnem kotu.",
+ "confirm_ignore_title": "Prezri odkritje {name}?",
+ "ignore": "Ignoriraj",
+ "ignored": "Ignorirano",
+ "show_ignored": "Pokaži prezrte integracije",
+ "stop_ignore": "Prenehajte ignorirati"
+ },
+ "integration": "integracija",
+ "integration_not_found": "Integracije ni mogoče najti.",
+ "new": "Nastavite novo integracijo",
+ "no_integrations": "Zdi se, da še nimate nobenih konfiguracij. Kliknite na spodnji gumb, da dodate svojo prvo integracijo!",
+ "none": "Nič še ni konfigurirano",
+ "none_found": "Ni najdenih integracij",
+ "none_found_detail": "Prilagodite iskalne kriterije.",
+ "note_about_integrations": "Vseh integracij še ni mogoče konfigurirati prek uporabniškega vmesnika.",
+ "note_about_website_reference": "Več jih je na voljo prek",
+ "reconfigure": "Prekonfiguracija",
+ "rename_dialog": "Uredite ime tega vnosa konfiguracije",
+ "rename_input_label": "Ime vnosa",
+ "search": "Iskanje integracij"
+ },
+ "introduction": "V tem pogledu je mogoče konfigurirati komponente in nastavitve za Home Assistant. Iz uporabniškega vmesnika še ni mogoče konfigurirati vsega, vendar delamo na tem.",
+ "logs": {
+ "caption": "Dnevniki",
+ "clear": "Počisti",
+ "copy": "Kopiraj vnos dnevnika",
+ "custom_integration": "integracija po meri",
+ "description": "Oglejte si Home Assistant dnevnike",
+ "details": "Podrobnosti dnevnika ({level})",
+ "load_full_log": "Naloži celoten dnevnik Home Assistant-a",
+ "loading_log": "Nalaganje dnevnika napak ...",
+ "multiple_messages": "sporočilo se je prvič pojavilo ob {time} in se prikaže {counter} krat",
+ "no_errors": "Ni prijavljenih napak.",
+ "no_issues": "Ni novih težav!",
+ "refresh": "Osveži"
+ },
+ "lovelace": {
+ "caption": "Nadzorne plošče Lovelace",
+ "dashboards": {
+ "cant_edit_default": "Standardne nadzorne plošče Lovelace ni mogoče urejati iz uporabniškega vmesnika. Lahko jo skrijete tako, da kot privzeto nastavite drugo nadzorno ploščo.",
+ "cant_edit_yaml": "Nadzorne plošče, definirane v YAML, ni mogoče urejati iz uporabniškega vmesnika. Spremenite jih v config.yaml.",
+ "caption": "Nadzorne plošče",
+ "conf_mode": {
+ "storage": "Pod nad UI-ja",
+ "yaml": "Datoteka YAML"
+ },
+ "confirm_delete": "Ali ste prepričani, da želite izbrisati to nadzorno ploščo?",
+ "confirm_delete_text": "Nadzorna plošča bo trajno izbrisana.",
+ "confirm_delete_title": "Ali želite izbrisati {dashboard_title}?",
+ "default_dashboard": "To je privzeta nadzorna plošča",
+ "detail": {
+ "create": "Ustvari",
+ "delete": "Izbriši",
+ "dismiss": "Zapri",
+ "edit_dashboard": "Urejanje nadzorne plošče",
+ "icon": "Ikona",
+ "new_dashboard": "Dodajte novo nadzorno ploščo",
+ "remove_default": "Odstrani kot privzeto v tej napravi",
+ "require_admin": "Samo skrbnik",
+ "set_default": "Nastavi kot privzeto na tej napravi",
+ "show_sidebar": "Pokaži v stranski vrstici",
+ "title": "Naslov",
+ "title_required": "Naslov je obvezen.",
+ "update": "Posodobi",
+ "url": "URL",
+ "url_error_msg": "URL mora vsebovati - in ne sme vsebovati presledkov ali posebnih znakov, razen za _ in -"
+ },
+ "picker": {
+ "add_dashboard": "Dodajte nadzorno ploščo",
+ "headers": {
+ "conf_mode": "Način konfiguracije",
+ "default": "Privzeto",
+ "filename": "Ime datoteke",
+ "require_admin": "Samo skrbnik",
+ "sidebar": "Pokaži v stranski vrstici",
+ "title": "Naslov"
+ },
+ "open": "Odpri"
+ }
+ },
+ "description": "Upravljanje nadzornih plošč Lovelace",
+ "resources": {
+ "cant_edit_yaml": "Lovelace uporabljate v načinu YAML, zato ne morete upravljati svojih virov prek uporabniškega vmesnika. Upravljajte jih v configuration.yaml.",
+ "caption": "Viri",
+ "confirm_delete": "Ali ste prepričani, da želite izbrisati ta vir?",
+ "detail": {
+ "create": "Ustvari",
+ "delete": "Izbriši",
+ "dismiss": "Zapri",
+ "new_resource": "Dodajte nov vir",
+ "type": "Vrsta vira",
+ "update": "Posodobi",
+ "url": "URL",
+ "url_error_msg": "URL je obvezno polje",
+ "warning_header": "Bodite previdni!",
+ "warning_text": "Dodajanje virov je lahko nevarno, prepričajte se, da poznate vir vira in jim zaupate. Slabi viri lahko resno škodijo vašemu sistemu."
+ },
+ "picker": {
+ "add_resource": "Dodaj vir",
+ "headers": {
+ "type": "Vrsta",
+ "url": "URL"
+ },
+ "no_resources": "Brez virov"
+ },
+ "refresh_body": "Če želite dokončati odstranitev, morate osvežiti stran. Jo morda želite osvežiti zdaj?",
+ "refresh_header": "Ali želite osvežiti?",
+ "types": {
+ "css": "Slogovna stran",
+ "html": "HTML (zastarelo)",
+ "js": "Datoteka JavaScript (zastarelo)",
+ "module": "JavaScript modul"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Poslušajte temi",
+ "description_publish": "Objavi paket",
+ "listening_to": "Poslušanje",
+ "message_received": "Sporočilo {id} prejeto v {topic} ob {time}:",
+ "payload": "Tovor (predloga je dovoljena)",
+ "publish": "Objavi",
+ "start_listening": "Začnite poslušati",
+ "stop_listening": "Nehajte poslušati",
+ "subscribe_to": "Tema, na katero se lahko naročite",
+ "title": "MQTT",
+ "topic": "tema"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Krmilnik",
+ "instance": "Instanca",
+ "network": "Omrežje",
+ "node_id": "ID vozlišča",
+ "ozw_instance": "OpenZWave primerek",
+ "query_stage": "Stopnja poizvedbe",
+ "wakeup_instructions": "Ukazi za prebujanje",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Vozlišče ni uspelo",
+ "stage": "Stopnja",
+ "zwave_info": "Z-Wave Informacije"
+ },
+ "navigation": {
+ "network": "Omrežje",
+ "node": {
+ "config": "Konfiguracija",
+ "dashboard": "Nadzorna plošča"
+ },
+ "nodes": "Vozlišča",
+ "select_instance": "Izberi instanco"
+ },
+ "network": {
+ "header": "Upravljanje omrežja",
+ "introduction": "Upravljajte omrežne funkcije.",
+ "node_count": "{count} vozlišč"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "Poizvedena so bila vsa vozlišča",
+ "driverallnodesqueriedsomedead": "Poizvedena so bila vsa vozlišča. Nekatera vozlišča so bila najdena mrtva.",
+ "driverawakenodesqueries": "Poizvedena so bila vsa budna vozlišča",
+ "driverfailed": "Povezava s krmilnikom Z-Wave ni uspela",
+ "driverready": "Inicializacija krmilnika Z-Wave",
+ "driverremoved": "Gonilnik je odstranjen",
+ "driverreset": "Gonilnik je bil ponastavljen",
+ "offline": "OZWDaemon nedosegljiv",
+ "ready": "Pripravljen za povezavo",
+ "started": "Povezan z MQTT",
+ "starting": "Povezovanje z MQTT",
+ "stopped": "Omrežje Z-Wave ustavljen"
+ },
+ "offline": "Brez povezave",
+ "online": "Povezan",
+ "starting": "Zaganja se",
+ "unknown": "Neznano"
+ },
+ "node": {
+ "button": "Podrobnosti o vozlišču",
+ "not_found": "Vozlišča ni mogoče najti"
+ },
+ "node_config": {
+ "header": "Konfiguracija vozlišča",
+ "help_source": "Opisi konfiguracijskih parametrov in besedilo pomoči zagotavlja projekt OpenZWave.",
+ "introduction": "Upravljanje različnih nastavitev za konfiguracijo vozlišča Z-Wave.",
+ "wakeup_help": "Vozlišča, ki jih napajajo baterije morajo biti budna, da lahko spreminjate njihovo konfiguracijo. Če vozlišče ni budno, bo OpenZWave poskusil posodobiti konfiguracijo vozlišča naslednjič, ko se zbudi, kar pa bi lahko bilo več ur (ali dni) kasneje. Sledite tem korakom, da zbudite napravo:"
+ },
+ "node_metadata": {
+ "product_manual": "Priročnik izdelka"
+ },
+ "node_query_stages": {
+ "associations": "Osveževanje pridružitvenih skupin in članstev",
+ "cacheload": "Nalaganje informacij iz datotek predpomnilnika OpenZWave. Vozlišča na bateriji bodo ostala na tej stopnji, dokler se vozlišče ne zbudi.",
+ "complete": "Postopek intervjuja je končan",
+ "configuration": "Pridobitev konfiguracijskih vrednosti iz vozlišča",
+ "dynamic": "Pridobivanje pogosto spreminjajočih se vrednosti iz vozlišča",
+ "instances": "Pridobivanje podatkov o tem, katere instance ali kanale naprava podpira",
+ "manufacturerspecific1": "Pridobivanje identifikacijskih kod proizvajalca in izdelka iz vozlišča",
+ "manufacturerspecific2": "Pridobivanje dodatnih identifikacijskih kod proizvajalca in izdelka iz vozlišča",
+ "neighbors": "Pridobivanje seznama sosedov",
+ "nodeinfo": "Pridobivanje podprtih razredov ukazov iz vozlišča",
+ "nodeplusinfo": "Pridobivanje informacij o Z-Wave + iz vozlišča",
+ "probe": "Preverjanje, ali je vozlišče budno / živo",
+ "protocolinfo": "Pridobivanje osnovnih zmožnosti Z-Wave tega vozlišča od krmilnika",
+ "session": "Pridobitev redko spreminjajočih se vrednosti iz vozlišča",
+ "static": "Pridobivanje statičnih vrednosti iz naprave.",
+ "versions": "Pridobivanje informacij o različicah vdelane programske opreme in o ukaznih razredov",
+ "wakeup": "Nastavljanje podpore za vrste in sporočila za prebujanje"
+ },
+ "nodes_table": {
+ "failed": "Neuspešno",
+ "id": "ID",
+ "manufacturer": "Proizvajalec",
+ "model": "Model",
+ "query_stage": "Stopnja poizvedbe",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Če vozlišče napaja baterijo, se pred nadaljevanjem prepričajte, da ga zbudite",
+ "button": "Osveži vozlišče",
+ "complete": "Osveževanje vozlišča je končano",
+ "description": "To bo OpenZWave-u sporočilo, naj znova vzpostavi komunikacijo s vozliščem in posodobi njegove ukazne razrede, zmožnosti in vrednosti vozlišča.",
+ "node_status": "Stanje vozlišča",
+ "refreshing_description": "Osveževanje informacij o vozlišču …",
+ "start_refresh_button": "Začni osveževanje",
+ "step": "Korak",
+ "title": "Osveži podatke o vozlišču",
+ "wakeup_header": "Navodila za bujenje za",
+ "wakeup_instructions_source": "Navodila za prebujanje so pridobljena iz podatkovne zbirke naprav OpenZWave."
+ },
+ "select_instance": {
+ "header": "Izberite OpenZWave instanco",
+ "introduction": "Izvaja se več kot ena OpenZWave instanca. S katero instanco bi radi upravljali?",
+ "none_found": "OpenZWave instance ni bilo mogoče najti. Če menite, da je prišlo do napake, preverite vašo OpenZWave in MQTT konfiguracijo in zagotovite, da Home Assistant lahko komunicira z vašim MQTT posrednikom."
+ },
+ "services": {
+ "add_node": "Dodaj vozlišče",
+ "cancel_command": "Prekliči ukaz",
+ "remove_node": "Odstrani vozlišče"
+ }
+ },
+ "person": {
+ "add_person": "Dodaj osebo",
+ "caption": "Osebe",
+ "confirm_delete": "Ali ste prepričani, da želite izbrisati to osebo?",
+ "confirm_delete2": "Vse naprave, ki pripadajo tej osebi, bodo postale nedodeljene.",
+ "create_person": "Ustvari osebo",
+ "description": "Upravljanje oseb, ki jim sledi Home Assistant.",
+ "detail": {
+ "admin": "Skrbnik",
+ "allow_login": "Dovoli osebi, da se prijavi",
+ "confirm_delete_user": "Ali ste prepričani, da želite izbrisati uporabniški račun za {name}? Uporabnika lahko še vedno spremljate, vendar se oseba ne bo več mogla prijaviti.",
+ "create": "Ustvarite",
+ "delete": "Izbriši",
+ "device_tracker_intro": "Izberite naprave, ki pripadajo tej osebi.",
+ "device_tracker_pick": "Izberite napravo za sledenje",
+ "device_tracker_picked": "Sledi napravi",
+ "link_integrations_page": "Stran za integracije",
+ "link_presence_detection_integrations": "Integracije zaznavanja prisotnosti",
+ "linked_user": "Povezani uporabnik",
+ "local_only": "Prijava je mogoča samo iz lokalnega omrežja",
+ "name": "Ime",
+ "name_error_msg": "Ime je obvezno",
+ "new_person": "Nova oseba",
+ "no_device_tracker_available_intro": "Ko imate naprave, ki kažejo na prisotnost osebe, jih boste lahko tukaj dodelili osebi. Svojo prvo napravo lahko dodate tako, da na strani z integracijami dodate zaznavanje prisotnosti.",
+ "update": "Posodobite"
+ },
+ "introduction": "Tu lahko določite vsako osebo (uporabnika) v Home Assistant-a.",
+ "learn_more": "Preberite več o osebah",
+ "no_persons_created_yet": "Videti je, da še niste ustvarili nobene osebe.",
+ "note_about_persons_configured_in_yaml": "Opomba: oseb, konfiguriranih prek config.yaml, ni mogoče urejati prek uporabniškega vmesnika.",
+ "person_not_found": "Nismo našli osebe, ki ste jo poskušali urediti.",
+ "person_not_found_title": "Oseba ni najdena"
+ },
+ "scene": {
+ "activated": "Aktivirana scena {name} .",
+ "caption": "Scene",
+ "description": "Upravljanje scen",
+ "editor": {
+ "area": "Območje",
+ "default_name": "Nova scena",
+ "devices": {
+ "add": "Dodajte napravo",
+ "delete": "Izbrišite napravo",
+ "header": "Naprave",
+ "introduction": "Dodajte naprave, ki jih želite vključiti v sceno. Nastavite vse naprave na stanje, ki ga želite za to sceno"
+ },
+ "entities": {
+ "add": "Dodajte entiteto",
+ "delete": "Izbrišite entiteto",
+ "device_entities": "Če dodate entiteto, ki pripada napravi, bo dodana naprava.",
+ "header": "Entitete",
+ "introduction": "Tu lahko nastavite entitete, ki ne pripadajo napravi.",
+ "without_device": "Entitete brez naprave"
+ },
+ "icon": "Ikona",
+ "introduction": "Uporabite scene, da oživite svoj dom.",
+ "load_error_not_editable": "Urejajo se lahko samo scene v scene.yaml.",
+ "load_error_unknown": "Napaka pri nalaganju scene ({err_no}).",
+ "name": "Ime",
+ "save": "Shrani",
+ "unsaved_confirm": "Imate neshranjene spremembe. Si prepričan, da želiš oditi?"
+ },
+ "picker": {
+ "add_scene": "Dodajanje scene",
+ "delete_confirm": "Ali ste prepričani, da želite izbrisati to sceno?",
+ "delete_scene": "Brisanje scene",
+ "duplicate": "Podvoji",
+ "duplicate_scene": "Podvojena scena",
+ "edit_scene": "Urejanje scene",
+ "header": "Urejevalnik scen",
+ "headers": {
+ "name": "Ime"
+ },
+ "introduction": "Urejevalnik scen vam omogoča njihovo ustvarjanje in urejanje. Upoštevajte spodnjo povezavo in si preberite navodila, da se prepričate, da ste pravilno konfigurirali Home Assistant.",
+ "learn_more": "Preberite več o scenah",
+ "no_scenes": "Nismo našli nobene scene za urejanje",
+ "only_editable": "Urejajo se lahko samo scene, definirane v scenes.yaml.",
+ "pick_scene": "Izberite sceno za urejanje",
+ "show_info_scene": "Pokaži informacije o sceni"
+ }
+ },
+ "script": {
+ "caption": "Skripte",
+ "description": "Upravljanje skriptov",
+ "editor": {
+ "alias": "Ime",
+ "default_name": "Nova Skripta",
+ "delete_confirm": "Ali ste prepričani, da želite izbrisati to skripto?",
+ "delete_script": "Izbriši skripto",
+ "header": "Skripta: {name}",
+ "icon": "Ikona",
+ "id": "ID entitete",
+ "id_already_exists": "Ta ID že obstaja",
+ "id_already_exists_save_error": "Te skripte ne morete shraniti, ker ID ni edinstven, izberite drug ID ali ga pustite prazno, da ga samodejno ustvari.",
+ "introduction": "Uporabite skripte za izvajanje zaporedij dejanj.",
+ "link_available_actions": "Preberite več o razpoložljivih dejanjih.",
+ "load_error_not_editable": "Urejati je mogoče le skripte znotraj scripts.yaml.",
+ "max": {
+ "parallel": "Največje število vzporednih tokov",
+ "queued": "Dolžina čakalne vrste"
+ },
+ "modes": {
+ "description": "Način nadzoruje, kaj se zgodi, ko se prikliče skripta, medtem ko še vedno teče iz enega ali več prejšnjih klicev. Oglejte si {documentation_link} za več informacij.",
+ "documentation": "skripta dokumentacija",
+ "label": "Način",
+ "parallel": "Vzporedno",
+ "queued": "V čakalni vrsti",
+ "restart": "Ponovni zagon",
+ "single": "Enojno (privzeta nastavitev)"
+ },
+ "save_script": "Shrani skript",
+ "sequence": "Zaporedje",
+ "sequence_sentence": "Zaporedje dejanj te skripte.",
+ "show_trace": "Pokaži sled"
+ },
+ "picker": {
+ "add_script": "Ustvari novo skripto",
+ "duplicate": "Podvoji",
+ "duplicate_script": "Podvoji skripto",
+ "edit_script": "Uredi skripto",
+ "header": "Urejevalnik skript",
+ "headers": {
+ "name": "Ime"
+ },
+ "introduction": "Urejevalnik skript vam omogoča njihovo ustvarjanje in urejanje. Upoštevajte spodnjo povezavo in si preberite navodila, da se prepričate, da ste pravilno konfigurirali Home Assistant-a.",
+ "learn_more": "Preberite več o skriptah",
+ "no_scripts": "Nismo našli nobene skripte za urejanje",
+ "run_script": "Zaženi skript",
+ "show_info": "Pokaži informacije o skripti"
+ }
+ },
+ "server_control": {
+ "caption": "Nadzor strežnika",
+ "description": "Znova zaženite in ustavite strežnik Home Assistant",
+ "section": {
+ "reloading": {
+ "automation": "Znova naloži avtomatizacije",
+ "command_line": "Znova naloži entitete ukazne vrstice",
+ "core": "Znova naloži lokacijo in prilagoditve",
+ "filesize": "Znova naloži entitete velikosti datoteke",
+ "filter": "Znova naloži entitete filtrov",
+ "generic": "Znova naloži entitete generičnih IP kamer",
+ "generic_thermostat": "Znova naloži entitete generičnih termostatov",
+ "group": "Znova naloži skupine, skupine entitete in storitve obveščanja",
+ "heading": "Konfiguracije YAML se znova nalaga",
+ "history_stats": "Znova naloži entitete statistike zgodovine",
+ "homekit": "Znova naloži HomeKit",
+ "input_boolean": "Ponovno naloži \"input booleans\"",
+ "input_datetime": "Ponovno naloži vhodne datumske čase",
+ "input_number": "Ponovno naloži vhodne številke",
+ "input_select": "Ponovno naloži izbirne vnose",
+ "input_text": "Ponovno naloži vhodna besedila",
+ "introduction": "Nekateri deli programa Home Assistant se lahko naložijo brez ponovnega zagona. S ponovnim nalaganjem se trenutna konfiguracija YAML zamenja in naloži nova.",
+ "min_max": "Znova naloži entitete min/max",
+ "mqtt": "Znova naložite ročno konfigurirane entitete MQTT",
+ "person": "Osebe",
+ "ping": "Znova naloži entitete binarnega senzorja PING",
+ "reload": "Znova naloži {domain}",
+ "rest": "Znova naloži entitete REST in storitve obveščanja",
+ "rpi_gpio": "Entitete GPIO za Raspberry Pi",
+ "scene": "Ponovno naloži scene",
+ "script": "Skripte",
+ "smtp": "Znova naloži storitve obveščanja SMTP",
+ "statistics": "Znova naloži statistične entitete",
+ "telegram": "Znova naloži storitve obveščanja Telegram",
+ "template": "Znova naloži entitete predlog",
+ "trend": "Znova naloži entitete trendov",
+ "universal": "Znova naloži entitete univerzalnega predvajalnika",
+ "zone": "Ponovno naloži območja"
+ },
+ "server_management": {
+ "confirm_restart": "Ali ste prepričani, da želite znova zagnati Home Assistant?",
+ "confirm_stop": "Ali ste prepričani, da želite za ustaviti Home Assistant?",
+ "heading": "Upravljanje strežnika",
+ "introduction": "Upravljajte pomočnika Home Assistant.",
+ "restart": "Ponovni zagon",
+ "stop": "Zaustavitev"
+ },
+ "validation": {
+ "check_config": "Preverite konfiguracijo",
+ "heading": "Preverjanje konfiguracije",
+ "introduction": "Potrdite svojo konfiguracijo, če ste nedavno spremenili svojo konfiguracijo in se prepričajte, da je vse veljavno.",
+ "invalid": "Nastavitve niso veljavne",
+ "valid": "Nastavitve so veljavne!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Dodaj značko",
+ "automation_title": "Značka {name} se prebira",
+ "caption": "Značke",
+ "confirm_remove": "Ali ste prepričani, da želite odstraniti oznako {tag} ?",
+ "confirm_remove_title": "Želiš odstraniti oznako?",
+ "create_automation": "Ustvarite avtomatizacijo z značko",
+ "description": "Upravljanje značk",
+ "detail": {
+ "companion_apps": "spremljevalne aplikacije",
+ "create": "Ustvari",
+ "create_and_write": "Ustvari in zapiši",
+ "delete": "Izbriši",
+ "description": "Opis",
+ "name": "Ime",
+ "new_tag": "Nova značka",
+ "tag_id": "ID značke",
+ "tag_id_placeholder": "Samodejno ustvarjeno, če ostane prazno",
+ "update": "Posodobi",
+ "usage": "Značka lahko sproži avtomatizacijo, ko je prebrana. Uporabite lahko značke NFC, QR kode ali katero koli drugo vrsto. Uporabite našo {companion_link} da to značko zapišete v programabilno oznako NFC ali spodaj ustvarite kodo QR."
+ },
+ "edit": "Uredi",
+ "headers": {
+ "last_scanned": "Zadnje branje",
+ "name": "Ime"
+ },
+ "learn_more": "Preberite več o značkah",
+ "never_scanned": "Nikoli pregledano",
+ "no_tags": "Brez značk",
+ "write": "Zapiši"
+ },
+ "updates": {
+ "more_updates": "+ {count} Posodobitve",
+ "review": "pregled",
+ "show": "Prikaži",
+ "show_all_updates": "Pokaži vse posodobitve",
+ "unable_to_fetch": "Razpoložljivih posodobitev ni mogoče pridobiti",
+ "version_available": "Različica {version_available} je na voljo"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Dodaj uporabnika",
+ "create": "Ustvari",
+ "local_only": "Samo lokalno",
+ "password": "Geslo",
+ "password_confirm": "Potrdi geslo",
+ "password_not_match": "Gesli se ne ujemata"
+ },
+ "caption": "Uporabniki",
+ "description": "Upravljanje uporabnikov",
+ "editor": {
+ "activate_user": "Aktiviraj uporabnika",
+ "active": "aktiven",
+ "active_tooltip": "Nadozruje, ali se lahko uporabnik prijavi",
+ "admin": "Skrbnik",
+ "caption": "Prikaži uporabnika",
+ "change_password": "Spremeni geslo",
+ "confirm_user_deletion": "Ali ste prepričani, da želite izbrisati {name}?",
+ "deactivate_user": "Deaktiviraj uporabnika",
+ "delete_user": "Izbriši uporabnika",
+ "group": "Skupina",
+ "id": "ID",
+ "local_only": "Prijava je mogoča samo iz lokalnega omrežja",
+ "name": "Ime",
+ "new_password": "Novo geslo",
+ "owner": "Lastnik",
+ "password_changed": "Geslo je bilo uspešno spremenjeno",
+ "system_generated": "Sistemsko generirano",
+ "system_generated_users_not_editable": "Sistemskih uporabnikov ni mogoče posodobiti.",
+ "system_generated_users_not_removable": "Sistemskih uporabnikov ni mogoče odstraniti.",
+ "unnamed_user": "Neimenovani uporabnik",
+ "update_user": "Posodobi",
+ "username": "Uporabniško ime"
+ },
+ "picker": {
+ "add_user": "Dodaj uporabnika",
+ "headers": {
+ "group": "Skupina",
+ "is_active": "Dejavno",
+ "is_owner": "Lastnik",
+ "local": "Samo lokalno",
+ "name": "Ime",
+ "system": "Sistem",
+ "username": "Uporabniško ime"
+ }
+ },
+ "users_privileges_note": "Zmožnosti skupin uporabnikov so delo v teku. Uporabnik ne bo mogel upravljati primerka prek uporabniškega vmesnika. Še vedno poteka revidiranje vseh končnih točk API-ja za upravljanje, da zagotovimo pravilno omejevanje dostopa do administratorjev."
+ },
+ "zha": {
+ "add_device": "Dodaj napravo",
+ "add_device_page": {
+ "discovered_text": "Naprave se bodo prikazale tukaj, ko jih odkrijemo.",
+ "no_devices_found": "Nobene naprave ni bilo mogoče najti, preverite, ali so v stanju pripravljenosti, in bodite budni, medtem ko odkritje teče.",
+ "pairing_mode": "Prepričajte se, da so vaše naprave v načinu združevanja. Preverite navodila svoje naprave, kako to storiti.",
+ "search_again": "Ponovno iskanje",
+ "spinner": "Iskanje ZHA Zigbee naprav …"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Atributi izbrane gruče",
+ "get_zigbee_attribute": "Pridobite Zigbee Atribute",
+ "header": "Atributi gruče",
+ "help_attribute_dropdown": "Izberite atribut, če si želite ogledati ali nastaviti njegovo vrednost.",
+ "help_get_zigbee_attribute": "Pridobite vrednost za izbrani atribut.",
+ "help_set_zigbee_attribute": "Nastavite vrednost atributa za določeno gručo v določeni entiteti.",
+ "introduction": "Oglejte si atribute gruče in jih uredite.",
+ "set_zigbee_attribute": "Nastavite Zigbee atribute"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Ukazi izbrane gruče",
+ "header": "Ukazi Gruče",
+ "help_command_dropdown": "Izberite ukaz za interakcijo.",
+ "introduction": "Oglejte si in izdajte ukaze gruče.",
+ "issue_zigbee_command": "Izdajte ukaz Zigbee"
+ },
+ "clusters": {
+ "header": "Gruče",
+ "help_cluster_dropdown": "Izberite gručo, če si želite ogledati njene atribute in ukaze.",
+ "introduction": "Gruče so sestavni del funkcionalnosti Zigbee. Funkcionalnost ločijo na logične enote. Obstajajo vrste odjemalcev in strežnikov, ki jih sestavljajo atributi in ukazi."
+ },
+ "common": {
+ "clusters": "Gruče",
+ "manufacturer_code_override": "Preglasitev kode proizvajalca",
+ "value": "Vrednost"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Bližnjice",
+ "update_button": "Posodobitev konfiguracije"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Konfiguriranje je končano",
+ "CONFIGURED_status_text": "Inicializacija",
+ "INITIALIZED": "Inicializacija končana",
+ "INITIALIZED_status_text": "Naprava je pripravljena za uporabo",
+ "INTERVIEW_COMPLETE": "Intervju je končan",
+ "INTERVIEW_COMPLETE_status_text": "Konfiguriranje",
+ "PAIRED": "Najdena naprava",
+ "PAIRED_status_text": "Intervju se začenja"
+ },
+ "group_binding": {
+ "bind_button_help": "Povežite izbrano skupino z izbranimi gručami naprave.",
+ "bind_button_label": "Združi skupino",
+ "cluster_selection_help": "Izberite gruče, ki se vežejo na izbrano skupino.",
+ "group_picker_help": "Izberite skupino, ki bo izdala ukaz vezanja.",
+ "group_picker_label": "Skupine za povezovanje",
+ "header": "Vezava skupin",
+ "introduction": "Povežite in razvezujte skupine.",
+ "unbind_button_help": "Odvežite izbrano skupino iz izbranih gruč naprav.",
+ "unbind_button_label": "Razdruži skupino"
+ },
+ "groups": {
+ "add_group": "Dodaj skupino",
+ "add_members": "Dodajte člane",
+ "caption": "Skupine",
+ "create": "Ustvari skupino",
+ "create_group": "Zigbee Home Automation - Ustvari skupino",
+ "create_group_details": "Da ustvarite novo skupino Zigbee vnesite zahtevane podrobnosti.",
+ "creating_group": "Ustvarjanje skupine",
+ "delete": "Izbriši skupino",
+ "group_details": "Tu so vse podrobnosti za izbrano skupino Zigbee.",
+ "group_id": "ID skupine",
+ "group_info": "Informacije o skupini",
+ "group_name_placeholder": "Ime skupine",
+ "group_not_found": "Skupine ni mogoče najti!",
+ "groups": "Skupine",
+ "members": "Člani",
+ "remove_members": "Odstranite člane",
+ "removing_members": "Odstranjevanje članov"
+ },
+ "network": {
+ "caption": "Omrežje"
+ },
+ "visualization": {
+ "caption": "Vizualizacija",
+ "header": "Prikaz omrežja",
+ "refresh_topology": "Osveži topologijo",
+ "zoom_label": "Povečaj na napravo"
+ }
+ },
+ "zone": {
+ "add_zone": "Dodaj območje",
+ "caption": "Območja",
+ "configured_in_yaml": "Območja, ki so konfigurirana preko config.yaml, ni mogoče urejati z uporabniškim vmesnikom.",
+ "confirm_delete": "Ali ste prepričani, da želite izbrisati to območje?",
+ "create_zone": "Ustvari območje",
+ "description": "Upravljajte območja, v katerih želite slediti osebam.",
+ "detail": {
+ "create": "Ustvari",
+ "delete": "Izbriši",
+ "icon": "Ikona",
+ "icon_error_msg": "Ikona mora biti v obliki \"predpona:ime\" ikone, na primer: \"mdi:home\"",
+ "latitude": "Zemljepisna širina",
+ "longitude": "Zemljepisna dolžina",
+ "name": "Ime",
+ "new_zone": "Novo območje",
+ "passive": "Pasivno",
+ "passive_note": "Pasivna območja so skrita v uporabniškem vmesniku in jih ne uporabljamo za sledenje napravam. Koristna so, če jih želite uporabiti samo za avtomatizacijo.",
+ "radius": "Polmer",
+ "required_error_msg": "To polje je obvezno",
+ "update": "Posodobitev"
+ },
+ "edit_home_zone": "Polmera domačega območja še ni mogoče urejati v uporabniškem vmesniku. Če želite premakniti domače območje, povlecite oznako na zemljevidu.",
+ "edit_home_zone_narrow": "Polmera domačega območja še ni mogoče urejati iz frontend-a. Lokacijo lahko spremenite iz splošne konfiguracije.",
+ "edit_zone": "Uredi območje",
+ "go_to_core_config": "Pojdi na splošno konfiguracijo?",
+ "home_zone_core_config": "Lokacijo domačega območja je mogoče urejati na strani splošne konfiguracije. Polmera domačega območja še ni mogoče urejati iz frontend-a. Ali želite iti na splošno konfiguracijo?",
+ "introduction": "Območja omogočajo določitev določenih regij na Zemlji. Ko je oseba znotraj tega območja, bo stanje prevzelo ime območja. Območja se lahko uporabljajo tudi kot sprožilec ali pogoj pri avtomatizacijah.",
+ "no_zones_created_yet": "Izgleda, da še niste ustvarili nobenih območji."
+ },
+ "zwave": {
+ "common": {
+ "index": "Indeks",
+ "instance": "Instanca",
+ "unknown": "Neznano",
+ "value": "Vrednost",
+ "wakeup_interval": "Interval bujenja"
+ },
+ "description": "Upravljajte Z-Wave omrežje",
+ "learn_more": "Preberite več o Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "Migracija na OpenZWave"
+ },
+ "zwave_js": {
+ "header": "Migracija na Z-Wave JS",
+ "introduction": "Ta integracija ni več vzdrževana, zato vam svetujemo, da preidete na novo integracijo Z-Wave JS. Ta čarovnik vam bo pomagal pri prehodu s starejše integracije Z-Wave na novo integracijo Z-Wave JS."
+ }
+ },
+ "network_management": {
+ "header": "Upravljanje z omrežjem Z-Wave",
+ "introduction": "Zaženite ukaze, ki vplivajo na omrežje Z-Wave. Ne boste dobili povratne informacije o tem, ali je večina ukazov uspela, vendar lahko preverite dnevnik OZW, da boste izvedeli več."
+ },
+ "network_status": {
+ "network_started": "Z-Wave omrežje zagnano",
+ "network_started_note_all_queried": "Vsa vozlišča so bila poizvedena.",
+ "network_started_note_some_queried": "Budna vozlišča so bila poizvedana. Speča bodo, ko se zbudijo.",
+ "network_starting": "Zaganjam Z-Wave Omrežje …",
+ "network_starting_note": "Odvisno od velikosti vašega omrežja, lahko to traja nekaj časa.",
+ "network_stopped": "Omrežje Z-Wave ustavljeno"
+ },
+ "node_config": {
+ "config_parameter": "Konfiguracijski parameter",
+ "config_value": "Vrednost konfiguracije",
+ "false": "Lažno",
+ "header": "Možnosti konfiguracije vozlišča",
+ "seconds": "Sekund",
+ "set_config_parameter": "Nastavite konfiguracijski parameter",
+ "set_wakeup": "Nastavite Interval bujenja",
+ "true": "Prav"
+ },
+ "node_management": {
+ "add_to_group": "Dodaj v skupino",
+ "entities": "Entitete tega vozlišča",
+ "entity_info": "Podatki o entiteti",
+ "exclude_entity": "Izključite to entiteto iz Home Assistant-a",
+ "group": "Skupina",
+ "header": "Upravljanje Z-Wave vozlišč",
+ "introduction": "Poženite ukaze Z-Wave, ki vplivajo na posamezno vozlišče. Izberite vozlišče in si oglejte seznam razpoložljivih ukazov.",
+ "max_associations": "Največ združenj:",
+ "node_group_associations": "Združenja skupin vozlišč",
+ "node_protection": "Zaščita vozlišča",
+ "node_to_control": "Vozlišče za nadzor",
+ "nodes": "Vozlišča",
+ "nodes_hint": "Izberite vozlišče za ogled njegovih možnosti",
+ "nodes_in_group": "Druga vozlišča v tej skupini:",
+ "pooling_intensity": "Intenzivnost osveževanja",
+ "protection": "Zaščita",
+ "remove_broadcast": "Odstrani oddajanje",
+ "remove_from_group": "Odstrani iz skupine",
+ "set_protection": "Nastavite zaščito"
+ },
+ "ozw_log": {
+ "header": "OZW dnevnik",
+ "introduction": "Oglejte si dnevnik. 0 je minimum (naloži celoten dnevnik), 1000 pa največ. Prikazan bo statični dnevnik, konec pa se bo samodejno posodobil z zadnjim določenim številom vrstic dnevnika.",
+ "last_log_lines": "Število zadnjih vrstic dnevnika",
+ "load": "Obremenitev",
+ "tail": "Rep"
+ },
+ "services": {
+ "add_node": "Dodaj vozlišče",
+ "add_node_secure": "Dodaj vozlišče varno",
+ "cancel_command": "Prekliči ukaz",
+ "heal_network": "Pozdravite omrežje",
+ "heal_node": "Pozdravi Vozlišče",
+ "node_info": "Informacije o vozlišču",
+ "print_node": "Podatki o vozlišču",
+ "refresh_entity": "Osveži entiteto",
+ "refresh_node": "Osveži vozlišče",
+ "remove_failed_node": "Odstranite neuspešno vozlišče",
+ "remove_node": "Odstrani vozlišče",
+ "replace_failed_node": "Zamenjaj neuspešno vozlišče",
+ "save_config": "Shrani konfiguracijo",
+ "soft_reset": "Resetiraj",
+ "start_network": "Zaženite omrežje",
+ "stop_network": "Ustavite omrežje",
+ "test_network": "Preizkusite omrežje",
+ "test_node": "Preizkusi vozlišče"
+ },
+ "values": {
+ "header": "Vrednosti vozlišča"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Prekliči vključitev",
+ "check_logs": "Za več informacij preverite dnevnike.",
+ "choose_inclusion_strategy": "Kako želite dodati svojo napravo",
+ "controller_in_inclusion_mode": "Vaš krmilnik Z-Wave je zdaj v načinu vklopa.",
+ "enter_qr_code": "Vnesite vrednost QR kode",
+ "inclusion_failed": "Naprave ni bilo mogoče dodati.",
+ "inclusion_finished": "Naprava je bila dodana.",
+ "provisioning_finished": "Naprava je bila dodana. Ko jo vklopite, bo na voljo.",
+ "qr_code": "QR koda",
+ "qr_code_paragraph": "Če vaša naprava podpira SmartStart, lahko skenirate QR kodo za enostavno seznanjanje.",
+ "scan_qr_code": "Skenirajte QR kodo",
+ "searching_device": "Iskanje naprave",
+ "security_classes": {
+ "S2_AccessControl": {
+ "description": "Primer: ključavnice in garažna vrata"
+ },
+ "S2_Authenticated": {
+ "description": "Primer: razsvetljava, senzorji in varnostni sistemi",
+ "title": "S2 overjeno"
+ }
+ },
+ "select_camera": "Izberite kamero",
+ "start_inclusion": "Začni vključitev",
+ "start_secure_inclusion": "Začni varno vključitev",
+ "title": "Dodajte napravo Z-Wave",
+ "use_secure_inclusion": "Uporabi varno vključitev",
+ "view_device": "Ogled naprave"
+ },
+ "common": {
+ "add_node": "Dodajte napravo",
+ "close": "Zapri",
+ "heal_network": "Pozdravite omrežje",
+ "home_id": "ID doma",
+ "network": "Omrežje",
+ "node_id": "ID naprave",
+ "reconfigure_server": "Ponovno konfiguriraj strežnik",
+ "remove_node": "Odstrani napravo",
+ "source": "Vir"
+ },
+ "dashboard": {
+ "driver_version": "Različica gonilnika",
+ "dump_dead_nodes_text": "Nekatera vaša vozlišča se niso odzvala in so domnevno mrtva. Ta ne bodo v celoti izvožena.",
+ "dump_dead_nodes_title": "Nekatere vaše naprave so mrtve",
+ "dump_debug": "Prenesite podatke",
+ "dump_not_ready_confirm": "Prenesi",
+ "dump_not_ready_title": "Vse naprave še niso pripravljene",
+ "header": "Upravljanje omrežja Z-Wave",
+ "home_id": "ID doma",
+ "introduction": "Upravljanje omrežja Z-Wave in naprav Z-Wave",
+ "nodes_ready": "Naprave so pripravljene",
+ "not_ready": "{count} ni pripravljen",
+ "provisioned_devices": "Naprave, ki so na voljo",
+ "server_url": "URL strežnika",
+ "server_version": "Različica strežnika"
+ },
+ "device_info": {
+ "device_config": "Konfigurirajte napravo",
+ "heal_node": "Pozdravi Vozlišče",
+ "highest_security": "Najvišja varnost",
+ "is_secure": "Varno",
+ "node_ready": "Naprava je pripravljena",
+ "node_status": "Stanje naprave",
+ "remove_failed": "Odstranite nedelujočo napravo",
+ "unknown": "Neznano",
+ "zwave_info": "Z-Wave Informacije",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Različica {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "Zdravljenje omrežja je bilo preklicano.",
+ "healing_complete": "Zdravljenje omrežja je končano.",
+ "start_heal": "Začnite zdraviti",
+ "stop_heal": "Ustavite zdravljenje",
+ "title": "Zacelite omrežje Z-Wave"
+ },
+ "heal_node": {
+ "healing_complete": "{naprava} je bila ozdravljena.",
+ "healing_failed": "{naprave} ni bilo mogoče ozdraviti.",
+ "healing_failed_check_logs": "Dodatne informacije so morebiti na voljo v dnevnikih.",
+ "in_progress": "Poteka zdravljenje naprave {naprava}.",
+ "introduction": "Sporočite napravi {device}, naj posodobi svoje poti nazaj v krmilnik. To lahko pomaga pri težavah s komunikacijo, če ste pred kratkim premaknili napravo ali krmilnik.",
+ "network_heal_in_progress": "Zdravljenje omrežja Z-Wave že poteka. Pred zdravljenjem posamezne naprave počakajte, da se zaključi.",
+ "start_heal": "Ozdravi napravo",
+ "title": "Zdravljenje naprave Z-Wave",
+ "traffic_warning": "Postopek zdravljenja ustvarja veliko prometa v omrežju Z-Wave. Zaradi tega se lahko naprave med zdravljenjem odzivajo počasi (ali se sploh ne odzivajo)."
+ },
+ "logs": {
+ "log_level": "Raven dnevnika",
+ "log_level_changed": "Raven dnevnika je spremenjena na: {level}",
+ "subscribed_to_logs": "Naročen na sporočila dnevnika Z-Wave JS…",
+ "title": "Dnevniki Z-Wave JS"
+ },
+ "navigation": {
+ "logs": "Dnevniki",
+ "network": "Omrežje"
+ },
+ "network_status": {
+ "connected": "Povezan",
+ "connecting": "Povezovanje",
+ "unknown": "Neznano"
+ },
+ "node_config": {
+ "error_device_not_found": "Naprave ni mogoče najti",
+ "parameter": "Parameter",
+ "set_param_accepted": "Parameter je bil posodobljen.",
+ "set_param_error": "Prišlo je do napake."
+ },
+ "node_status": {
+ "alive": "Živ",
+ "asleep": "Spi",
+ "awake": "Buden",
+ "dead": "Mrtev",
+ "unknown": "Neznano"
+ },
+ "provisioned": {
+ "confirm_unprovision_title": "Ali ste prepričani, da želite preklicati uporabo naprave?",
+ "dsk": "DSK",
+ "security_classes": "Varnostni razredi"
+ },
+ "remove_failed_node": {
+ "in_progress": "Odstranjevanje naprave je v teku.",
+ "introduction": "Odstranite nedelujočo napravo iz omrežja Z-Wave. To uporabite, če naprave ne morete normalno izključiti, ker je pokvarjena.",
+ "removal_failed": "Naprave ni bilo mogoče odstraniti iz vašega omrežja Z-Wave.",
+ "removal_finished": "Vozlišče {id} je bilo odstranjeno iz vašega Z-Wave omrežja.",
+ "remove_device": "Odstranite napravo",
+ "title": "Odstranite nedelujočo napravo Z-Wave"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Prekliči izključitev",
+ "controller_in_exclusion_mode": "Vaš krmilnik Z-Wave je zdaj v načinu izključitve.",
+ "exclusion_failed": "Vozlišča ni bilo mogoče odstraniti. Za več informacij preverite dnevnike.",
+ "exclusion_finished": "Vozlišče {id} je bilo odstranjeno iz vašega Z-Wave omrežja.",
+ "follow_device_instructions": "Sledite navodilom, ki ste jih dobili z napravo, da sprožite izključitev v napravi.",
+ "introduction": "Odstranite napravo iz omrežja Z-Wave ter odstranite povezano napravo in entitete iz Home Assistant.",
+ "start_exclusion": "Začni izključitev",
+ "title": "Odstrani Z-Wave vozlišče"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Noben"
+ },
+ "S0_Legacy": {
+ "description": "Primer: stare ključavnice vrat brez podpore S2"
+ },
+ "S2_AccessControl": {
+ "description": "Primer: ključavnice in garažna vrata",
+ "title": "S2 Kontrola dostopa"
+ },
+ "S2_Authenticated": {
+ "description": "Primer: razsvetljava, senzorji in varnostni sistemi",
+ "title": "S2 overjeno"
+ },
+ "S2_Unauthenticated": {
+ "description": "Podobno kot S2 overjeno, vendar brez preverjanja, ali je vključena prava naprava.",
+ "title": "S2 Ne-overjeno"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Imela bo dostop do vseh podatkov v Home Assistant-u.",
+ "hide_message": "Preverite dokumente za komponento panel_custom, da skrijete to sporočilo",
+ "question_trust": "Ali zaupate zunanji plošči {name} na {link} ?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Aktivni poslušalci",
+ "alert_event_type": "Vrsta dogodka je obvezno polje",
+ "available_events": "Razpoložljivi dogodki",
+ "count_listeners": " ({count} poslušalcev)",
+ "data": "Podatki o dogodku (YAML, neobvezno)",
+ "description": "Zaženite dogodek na \"event bus\".",
+ "documentation": "Dokumentacija o dogodkih.",
+ "event_fired": "Dogodek {name} zagnan",
+ "fire_event": "Zaženite dogodek",
+ "listen_to_events": "Prisluhnite dogodkom",
+ "listening_to": "Poslušanje",
+ "notification_event_fired": "Dogodek {type} uspešno zagnan!",
+ "start_listening": "Začnite poslušati",
+ "stop_listening": "Nehajte poslušati",
+ "subscribe_to": "Dogodek, na katerega se lahko naročite",
+ "title": "Dogodki",
+ "type": "Vrsta dogodka"
+ },
+ "services": {
+ "all_parameters": "Vsi razpoložljivi parametri",
+ "call_service": "Kliči Storitev",
+ "column_description": "Opis",
+ "column_example": "Primer",
+ "column_parameter": "Parameter",
+ "description": "Storitev dev orodje vam omogoča, da pokličete vse razpoložljive storitve v Home Assistant.",
+ "fill_example_data": "Izpolnite primer podatkov",
+ "title": "Storitve",
+ "yaml_mode": "Pojdi v način YAML"
+ },
+ "states": {
+ "alert_entity_field": "Entiteta je obvezno polje",
+ "attributes": "Lastnosti",
+ "current_entities": "Trenutne entitete",
+ "description1": "Nastavite predstavitev naprave v programu Home Assistant.",
+ "description2": "To ne bo komuniciralo z dejansko napravo.",
+ "entity": "Subjekt",
+ "filter_attributes": "Filter atributov",
+ "filter_entities": "Filter entitet",
+ "filter_states": "Filter stanj",
+ "last_changed": "Zadnja sprememba",
+ "last_updated": "Zadnja osvežitev",
+ "more_info": "Več informacij",
+ "no_entities": "Brez entitet",
+ "set_state": "Nastavi stanje",
+ "state": "Stanje",
+ "state_attributes": "Lastnosti stanja (YAML, neobvezno)",
+ "title": "Stanja"
+ },
+ "statistics": {
+ "entity": "Entiteta",
+ "fix_issue": {
+ "fix": "Odpravite težavo",
+ "units_changed": {
+ "clear": "Izbriši vse stare statistične podatke za to entiteto",
+ "fix": "Odpravite težavo",
+ "title": "Enota te entitete se je spremenila"
+ }
+ },
+ "issue": "Težava",
+ "issues": {
+ "entity_no_longer_recorded": "Ta entiteta se ne beleži več.",
+ "entity_not_recorded": "Ta entiteta je izključena iz snemanja.",
+ "no_state": "Za to entiteto ni na voljo nobenega stanja.",
+ "units_changed": "Enota te entitete se je spremenila iz '' {metadata_unit} '' v '' {state_unit} ''.",
+ "unsupported_state_class": "Razred stanja ''{state_class}'' te entitete ni podprt.",
+ "unsupported_unit": "Enota (''{state_unit}'') te entitete se ne ujema z enoto razreda naprave ''{device_class}''."
+ },
+ "no_issue": "Brez težav",
+ "title": "Statistika"
+ },
+ "templates": {
+ "all_listeners": "Ta predloga motri vse dogodke, ki so posledica spremembe stanja.",
+ "description": "Predloge so upodobljene s pomočjo mehanizma za predloge Jinja2 z nekaterimi posebnimi razširitvami Home Assistant.",
+ "domain": "Domena",
+ "editor": "Urejevalnik predlog",
+ "entity": "Entiteta",
+ "jinja_documentation": "Dokumentacija predloge Jinja2",
+ "listeners": "Ta predloga motri naslednje dogodke, ki so posledica spremembe stanja:",
+ "no_listeners": "Ta predloga ne motri nobenih dogodkov in se ne bo samodejno posodabljala.",
+ "reset": "Ponastavi na demo predlogo",
+ "result_type": "Vrsta rezultata",
+ "template_extensions": "Home Assistant razširitvene predloge",
+ "time": "Ta predloga se posodobi na začetku vsake minute.",
+ "title": "Predloge",
+ "unknown_error_template": "Neznana napaka upodabljanju predloge"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Spremljajte posamezne naprave",
+ "energy_distribution_title": "Porazdelitev energije",
+ "energy_gas_graph_title": "Poraba plina",
+ "energy_solar_graph_title": "Sončna proizvodnja",
+ "energy_sources_table_title": "Viri",
+ "energy_usage_graph_title": "Poraba energije"
+ },
+ "charts": {
+ "by_device": "Poraba naprave",
+ "solar": "Sončna",
+ "stat_house_energy_meter": "Skupna poraba energije"
+ },
+ "setup": {
+ "back": "Nazaj",
+ "done": "Pokaži mojo energetsko nadzorno ploščo!",
+ "next": "Naslednji"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "To funkcijo lahko uporabite le, ko ste prevzeli nadzor nad uporabniškim vmesnikom Lovelace.",
+ "saving_failed": "Shranjevanje konfiguracije uporabniškega vmesnika Lovelace ni uspelo.",
+ "yaml_unsupported": "Te funkcije ne morete uporabljati, če uporabniški vmesnik Lovelace uporabljate v načinu YAML."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Ali ste prepričani, da želite izvesti akcijo \" {action} \"?",
+ "no_entity_more_info": "Nobena entiteta ni na voljo za več informacij",
+ "no_entity_toggle": "Za preklop ni na voljo nobena entiteta",
+ "no_service": "Navedena ni nobena storitev, ki bi se lahko zagnala",
+ "no_url": "Ni URL-ja za odpiranje izbranega"
+ },
+ "confirm_delete": "Ali ste prepričani, da želite izbrisati to kartico?",
+ "empty_state": {
+ "go_to_integrations_page": "Pojdite na stran za integracije.",
+ "no_devices": "Ta stran vam omogoča nadzor nad napravami, vendar je videti, da še niste nastavili nobenih naprav. Pojdite na stran za integracije, da začnete.",
+ "title": "Dobrodošli Doma"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "Na tej kartici je navedeno, koliko energije, porabljene v vašem domu, je bilo proizvedene z uporabo nefosilnih goriv, kot so sonce, veter in jedrska energija. Čim več, tem bolje!",
+ "non_fossil_energy_consumed": "Porabljena nefosilna energija",
+ "non_fossil_energy_not_calculated": "Porabljene nefosilne energije ni bilo mogoče izračunati"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Poraba energije"
+ },
+ "energy_distribution": {
+ "battery": "Baterija",
+ "gas": "Plin",
+ "go_to_energy_dashboard": "Pojdite na nadzorno ploščo za energijo",
+ "grid": "Mreža",
+ "home": "Doma",
+ "non_fossil": "Nefosilni viri",
+ "solar": "Sončna",
+ "title_today": "Distribucija energije danes"
+ },
+ "energy_solar_graph": {
+ "forecast": "Napoved {name}",
+ "production": "Proizvodnja {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Skupna vrednost baterije",
+ "cost": "Stroški",
+ "energy": "Energija",
+ "grid_total": "Skupna vrednost mreže",
+ "source": "Vir",
+ "total_costs": "Skupni stroški"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Združeno iz omrežja",
+ "consumed_solar": "Porabljena sončna energija",
+ "total_consumed": "Skupno porabljeno {num} kWh",
+ "total_returned": "Skupaj vrnjenih {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Če je igla v vijolični barvi, ste v omrežje vrnili več energije, kot ste jo iz omrežja porabili. Če je igla v modri barvi, ste iz omrežja porabili več energije, kot ste vrnili.",
+ "energy_dependency": "Ta kartica označuje vašo neto porabo energije.",
+ "grid_neutrality_not_calculated": "Nevtralnosti omrežja ni bilo mogoče izračunati",
+ "net_consumed_grid": "Neto poraba iz omrežja",
+ "net_returned_grid": "Neto vrnjena v omrežje",
+ "red_green_color_explain": "Če je v zeleni, pomeni, da ste proizvedli več energije, kot ste jo porabili iz omrežja. Če je v rdečem, pa pomeni, da ste se pri porabi energije v vašem domu delno zanašali na omrežje."
+ },
+ "loading": "Nalaganje...",
+ "no_data_period": "Za to obdobje ni podatkov.",
+ "solar_consumed_gauge": {
+ "not_produced_solar_energy": "Niste proizvedli nobene sončne energije",
+ "self_consumed_solar_could_not_calc": "Samoporabljene sončne energije ni bilo mogoče izračunati",
+ "self_consumed_solar_energy": "Lastna poraba sončne energije"
+ }
+ },
+ "entities": {
+ "never_triggered": "Nikoli sprožen"
+ },
+ "map": {
+ "reset_focus": "Ponastavi fokus"
+ },
+ "picture-elements": {
+ "call_service": "Kličite storitev {name}",
+ "hold": "Pridržite:",
+ "more_info": "Pokaži več informacij: {name}",
+ "navigate_to": "Pojdite na {location}",
+ "tap": "Tapnite:",
+ "toggle": "Preklopi {name}",
+ "url": "Odprite okno za {url_path}"
+ },
+ "safe-mode": {
+ "description": "Home Assistant je med nalaganjem konfiguracije naletel na težave in zdaj deluje v varnem načinu. Oglejte si dnevnik napak in preverite kaj je šlo narobe.",
+ "header": "Aktiviran varni način"
+ },
+ "shopping-list": {
+ "add_item": "Dodaj element",
+ "checked_items": "Označeni predmeti",
+ "clear_items": "Počisti označene elemente",
+ "drag_and_drop": "Povleci in spusti",
+ "reorder_items": "Prerazporedite elemente"
+ },
+ "show_more_info": "Pokaži več informacij",
+ "starting": {
+ "description": "Home Assistant se zaganja, prosimo počakajte …"
+ }
+ },
+ "changed_toast": {
+ "message": "Nastavitve uporabniškega vmesnika Lovelace za to nadzorno ploščo so bile posodobljene. Če želite videti spremembe, jo osvežite."
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Dan",
+ "month": "Mesec",
+ "next": "Naslednji",
+ "previous": "Prejšnji",
+ "today": "Danes",
+ "week": "Teden",
+ "year": "Leto"
+ },
+ "timestamp-display": {
+ "invalid": "Neveljaven časovni žig",
+ "invalid_format": "Neveljavna oblika prikaza"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Klicna storitev",
+ "default_action": "Privzeto dejanje",
+ "more-info": "Več informacij",
+ "navigate": "Navigacija",
+ "none": "Brez akcije",
+ "toggle": "Preklop",
+ "url": "URL"
+ },
+ "navigation_path": "Navigacijska pot",
+ "url_path": "Pot URL-ja"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Stanja na voljo",
+ "description": "Kartica alarm panel vam omogoča, da vklopite in razorožite vaše integracije alarmov.",
+ "name": "Alarmna plošča"
+ },
+ "area": {
+ "name": "Območje"
+ },
+ "button": {
+ "default_action_help": "Privzeto dejanje je odvisno od zmožnosti entitete. Ali se bo preklopila, ali pa bo prikazanih več podatkov.",
+ "description": "Gumbna kartica vam omogoča, da dodate gumbe za opravljanje nalog.",
+ "name": "Gumb"
+ },
+ "calendar": {
+ "calendar_entities": "Entitete koledarja",
+ "description": "Kartica Koledar prikazuje koledar, ki vključuje poglede dneva, tedna in seznama",
+ "inital_view": "Začetni prikaz",
+ "name": "Koledar",
+ "views": {
+ "dayGridDay": "Dan",
+ "dayGridMonth": "Mesec",
+ "listWeek": "Seznam"
+ }
+ },
+ "conditional": {
+ "card": "Kartica",
+ "change_type": "Spremeni tip",
+ "condition_explanation": "Kartica bo prikazana, ko so izpolnjeni VSI pogoji spodaj.",
+ "conditions": "Pogoji",
+ "current_state": "trenutno",
+ "description": "Pogojna kartica prikazuje drugo kartico, ki temelji na stanjih entitet.",
+ "name": "Pogojno",
+ "state_equal": "Stanje je enako",
+ "state_not_equal": "Stanje ni enako"
+ },
+ "config": {
+ "optional": "neobvezno",
+ "required": "obvezno"
+ },
+ "entities": {
+ "description": "Kartica entitet je najpogostejša vrsta kartice. Predmete združuje v sezname.",
+ "edit_special_row": "Podrobnosti te vrstice si oglejte s klikom na gumb za urejanje",
+ "entity_row": {
+ "attribute": "Atribut",
+ "button": "Gumb",
+ "buttons": "Gumbi",
+ "call-service": "Kliči Storitev",
+ "cast": "Zasedba",
+ "conditional": "Pogojno",
+ "divider": "Razdelilnik",
+ "section": "Sekcija",
+ "weblink": "Spletna povezava"
+ },
+ "entity_row_editor": "Urejevalnik vrstic entitete",
+ "name": "Subjekti",
+ "secondary_info_values": {
+ "brightness": "Svetlost",
+ "entity-id": "ID entitete",
+ "last-changed": "Zadnja sprememba",
+ "last-triggered": "Zadnjič sproženo",
+ "last-updated": "Zadnja posodobitev",
+ "none": "Ni sekundarnih informacij",
+ "position": "Položaj",
+ "tilt-position": "Položaj nagiba"
+ },
+ "show_header_toggle": "Pokaži preklop glave?",
+ "special_row": "posebna vrstica",
+ "toggle": "Preklopi entitete."
+ },
+ "entity-filter": {
+ "description": "Kartica filter entitet vam omogoča, da določite seznam entitet, ki jih želite slediti samo, če so v določenem stanju.",
+ "name": "Filter entitet"
+ },
+ "entity": {
+ "description": "Kartica vam omogoča hiter pregled stanja vaše entitete.",
+ "name": "Entiteta"
+ },
+ "gauge": {
+ "description": "Gauge kartica je osnovna kartica, ki omogoča vizualno videnje podatkov senzorjev.",
+ "name": "Merilnik",
+ "needle_gauge": "Prikaz kot iglični merilnik?",
+ "severity": {
+ "define": "Določi resnost?",
+ "green": "Zelena",
+ "red": "Rdeča",
+ "yellow": "Rumena"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Razmerje Med Širino In Višino",
+ "attribute": "Atribut",
+ "camera_image": "Subjekt kamere",
+ "camera_view": "Pogled kamere",
+ "days_to_show": "Dnevi za prikaz",
+ "double_tap_action": "Dejanje dvojnega dotika",
+ "entities": "Subjekti",
+ "entity": "Subjekt",
+ "hold_action": "dejanje pridržanja",
+ "hours_to_show": "število ur za prikaz",
+ "icon": "Ikona",
+ "icon_height": "Višina ikone",
+ "image": "Pot slike",
+ "manual": "Ročno",
+ "manual_description": "Morate dodati kartico po meri ali samo želite ročno napisati yaml?",
+ "maximum": "Največ",
+ "minimum": "Najmanj",
+ "name": "Ime",
+ "no_theme": "Brez teme",
+ "refresh_interval": "Interval osveževanja",
+ "search": "Iskanje",
+ "secondary_info_attribute": "Atributi sekundarnih informacij",
+ "show_icon": "Prikaži ikono?",
+ "show_name": "Prikaži ime?",
+ "show_state": "Prikaži stanje?",
+ "state": "Stanje",
+ "state_color": "Barvne ikone glede na stanje?",
+ "tap_action": "Dejanje dotika",
+ "theme": "Tema",
+ "title": "Naslov",
+ "unit": "Enota",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Stolpci",
+ "description": "Kartica Glance je uporabna za združevanje več senzorjev v kompaktnem pregledu.",
+ "name": "Pregled"
+ },
+ "grid": {
+ "columns": "Stolpci",
+ "description": "Kartica Mreža omogoča prikaz več kartic v mreži.",
+ "name": "Mreža"
+ },
+ "history-graph": {
+ "description": "Kartica Zgodovinski grafikon omogoča prikaz grafa za vsako od naštetih entitet.",
+ "name": "Graf zgodovine"
+ },
+ "horizontal-stack": {
+ "description": "Kartica Horizontal stack vam omogoča, da skupaj zložite več kart, tako da vedno stojijo drug poleg drugega v razmaku enega stolpca.",
+ "name": "Vodoravni sklad"
+ },
+ "humidifier": {
+ "description": "Kartica \"humidifier\" omogoča nadzor nad vašo vlažilno enoto. Omogoča vam, da spremenite vlažnost in način dela entitete.",
+ "name": "Vlažilec"
+ },
+ "iframe": {
+ "description": "Kartica webpage vam omogoča, da svojo najljubšo spletno stran vdelate Home Assistant.",
+ "name": "Spletna stran"
+ },
+ "light": {
+ "description": "Kartica Light omogoča spreminjanje svetlosti luči.",
+ "name": "Luči"
+ },
+ "logbook": {
+ "description": "Na kartici Dnevnik je prikazan seznam dogodkov za entitete.",
+ "name": "Dnevnik"
+ },
+ "map": {
+ "dark_mode": "Temni način?",
+ "default_zoom": "Privzeta povečava",
+ "description": "Kartica Map omogoča prikazovanje entitet na zemljevidu.",
+ "geo_location_sources": "Geolokacijski viri",
+ "hours_to_show": "število ur za prikaz",
+ "name": "Zemljevid",
+ "source": "Vir"
+ },
+ "markdown": {
+ "content": "Vsebina",
+ "description": "Kartica Markdown se uporablja za upodabljanje označb.",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "description": "Kartica Media Control se uporablja za prikaz entitet predvajalnika na vmesniku s preprostimi kontrolniki.",
+ "name": "Nadzor predvajalnika"
+ },
+ "picture-elements": {
+ "description": "Kartica Picture Elements je ena najbolj vsestranskih vrst kartic. Kartica omogoča pozicioniranje ikon ali besedila in celo storitev! Na sliki, ki temelji na koordinatah.",
+ "name": "Slikovni elementi"
+ },
+ "picture-entity": {
+ "description": "Kartica Slika prikazuje entiteto v obliki slike. Namesto slik z URL-ja lahko prikaže tudi sliko kamer.",
+ "name": "Slika"
+ },
+ "picture-glance": {
+ "description": "Kartica Picture Glance prikazuje sliko in ustrezna stanja entitete kot ikono. Subjekti na desni strani omogočajo preklopna dejanja, drugi pa prikazujejo pogovorno okno z več informacijami.",
+ "name": "Pogled slike",
+ "state_entity": "Entiteta stanja"
+ },
+ "picture": {
+ "description": "Picture card omogoča nastavitev slike za navigacijo do različnih poti v vašem vmesniku ali za klicanje storitve.",
+ "name": "Slika"
+ },
+ "plant-status": {
+ "description": "Kartica stanje rastlin je za vse botanike tam zunaj.",
+ "name": "Stanje rastline"
+ },
+ "sensor": {
+ "description": "Kartica Sensor vam omogoča hiter pregled stanja vaših senzorjev z izbirnim grafom, s katerim lahko prikažete spremembe skozi čas.",
+ "graph_type": "Vrsta grafikona",
+ "name": "Senzor",
+ "show_more_detail": "Pokaži več podrobnosti"
+ },
+ "shopping-list": {
+ "description": "Kartica nakupovalni seznam omogoča dodajanje, urejanje in brisanje elementov s seznama nakupov.",
+ "integration_not_loaded": "Ta kartica zahteva nastavitev integracije `shopping_list`.",
+ "name": "Nakupovalni seznam"
+ },
+ "statistics-graph": {
+ "description": "Kartica Graf Statistike omogoča prikaz grafa statistike za vsako od navedenih entitet.",
+ "name": "Graf statistike"
+ },
+ "thermostat": {
+ "description": "Kartica Termostat omogoča nadzor nad vašo klimatsko enoto. Omogoča spreminjanje temperature in načina dela.",
+ "name": "Termostat"
+ },
+ "vertical-stack": {
+ "description": "Kartica Vertical Stack vam omogoča, da združite več kartic, tako da vedno sedijo v istem stolpcu.",
+ "name": "Navpični sklad"
+ },
+ "weather-forecast": {
+ "description": "Kartica Weather Forecast prikazuje vreme. Zelo koristno za vključiti na vmesnike, ki jih ljudje prikažejo na steni.",
+ "name": "Vremenska napoved",
+ "show_both": "Prikaži trenutno vreme in napoved",
+ "show_forecast": "Pokaži napoved",
+ "show_only_current": "Pokaži samo trenutno vreme",
+ "show_only_forecast": "Pokaži samo napoved"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Po kartici",
+ "by_entity": "Po entiteti",
+ "custom_card": "Po meri",
+ "domain": "Domena",
+ "entity": "Entiteta",
+ "no_description": "Opis ni na voljo."
+ },
+ "common": {
+ "add": "Dodaj",
+ "clear": "Počisti",
+ "edit": "Uredi",
+ "none": "Noben"
+ },
+ "edit_badges": {
+ "panel_mode": "Te značke ne bodo prikazane, ker je ta pogled v načinu \"Panel Mode\"."
+ },
+ "edit_card": {
+ "add": "Dodaj kartico",
+ "clear": "Počisti",
+ "confirm_cancel": "Ali ste prepričani, da želite preklicati?",
+ "delete": "Izbriši kartico",
+ "duplicate": "Podvoji kartico",
+ "edit": "Uredi",
+ "header": "Nastavitve kartice",
+ "move": "Premakni v pogled",
+ "move_after": "Premakni kartico za",
+ "move_before": "Premakni kartico pred",
+ "move_down": "Premaknite kartico navzdol",
+ "move_up": "Premaknite kartico navzgor",
+ "options": "Več možnosti",
+ "pick_card": "Katero kartico želite dodati?",
+ "pick_card_view_title": "Katero kartico želite dodati v pogled {name}?",
+ "search_cards": "Poišči kartice",
+ "show_code_editor": "Pokaži urejevalnik kode",
+ "show_visual_editor": "Pokaži vizualni urejevalnik",
+ "toggle_editor": "Preklop na urejevalnik",
+ "typed_header": "{type} Konfiguracija kartice",
+ "unsaved_changes": "Imate neshranjene spremembe"
+ },
+ "edit_lovelace": {
+ "edit_title": "Uredi naslov",
+ "explanation": "Ta naslov je prikazan predvsem nad vašimi pogledi v uporabniškem vmesniku Lovelace.",
+ "header": "Naslov vašega uporabniškega vmesnika Lovelace",
+ "title": "Naslov"
+ },
+ "edit_view": {
+ "add": "Dodaj pogled",
+ "delete": "Izbriši pogled",
+ "edit": "Uredi pogled",
+ "header": "Prikaži konfiguracijo",
+ "header_name": "{name} Prikaži konfiguracijo",
+ "move_left": "Premakni pogled levo",
+ "move_right": "Premakni pogled desno",
+ "tab_badges": "Značke",
+ "tab_settings": "Nastavitve",
+ "tab_visibility": "Vidljivost",
+ "type": "Vrsta pogleda",
+ "types": {
+ "masonry": "Masonry (privzeto)",
+ "panel": "Panel (1 kartica)",
+ "sidebar": "Stranska vrstica"
+ },
+ "visibility": {
+ "select_users": "Izberite, kateri uporabniki bi morali videti ta pogled v navigaciji"
+ }
+ },
+ "header": "Uredi UI",
+ "header-footer": {
+ "choose_header_footer": "Izberite {type}",
+ "footer": "Noga",
+ "header": "Glava",
+ "types": {
+ "buttons": {
+ "name": "Gumbi"
+ },
+ "graph": {
+ "name": "Graf"
+ },
+ "picture": {
+ "name": "Slika"
+ }
+ }
+ },
+ "menu": {
+ "manage_resources": "Upravljanje virov",
+ "open": "Odprite meni uporabniškega vmesnika Lovelace",
+ "raw_editor": "\"Surovi\" urejevalnik konfiguracije"
+ },
+ "migrate": {
+ "header": "Nastavitve so nezdružljiva",
+ "migrate": "Selitev konfiguracije",
+ "para_migrate": "Home Assistant lahko samodejno doda ID na vse vaše kartice in poglede s pritiskom na gumb »Preseli konfiguracijo«.",
+ "para_no_id": "Ta element nima ID-ja. Prosimo, dodajte ID tega elementa v 'ui-lovelace.yaml'."
+ },
+ "move_card": {
+ "header": "Izberite pogled, na katerega želite premakniti kartico"
+ },
+ "raw_editor": {
+ "confirm_remove_config_text": "Če odstranite konfiguracijo uporabniškega vmesnika Lovelace, bodo prikazi za uporabniški vmesnik Lovelace z vašimi območji in napravami samodejno ustvarjeni.",
+ "confirm_remove_config_title": "Ali ste prepričani, da želite odstraniti konfiguracijo uporabniškega vmesnika Lovelace?",
+ "confirm_unsaved_changes": "Imate neshranjene spremembe, ali ste prepričani, da želite zapreti?",
+ "confirm_unsaved_comments": "Vaša konfiguracija vsebuje komentarje, ki ne bodo shranjeni. Ali želite nadaljevati?",
+ "error_invalid_config": "Vaša konfiguracija ni veljavna: {error}",
+ "error_parse_yaml": "Ni mogoče razčleniti YAML: {error}",
+ "error_remove": "Konfiguracije ni mogoče odstraniti: {error}",
+ "error_save_yaml": "YAML-a ni mogoče shraniti: {error}",
+ "header": "Uredi konfiguracijo",
+ "resources_moved": "Virov ne bi smeli več dodajati v konfiguracijo Lovelace, lahko pa jih dodate na konfiguracijski plošči Lovelace.",
+ "save": "Shrani",
+ "saved": "Shranjeno",
+ "unsaved_changes": "Neshranjene spremembe"
+ },
+ "save_config": {
+ "close": "Zapri",
+ "empty_config": "Začnite s prazno nadzorno ploščo",
+ "header": "Prevzemite nadzor nad lovelace vmesnikom",
+ "para": "To nadzorno ploščo trenutno vzdržuje Home Assistant. Samodejno se posodobi, ko bodo na voljo nove entitete ali komponente Lovelace UI. Če prevzamete nadzor, se ta nadzorna plošča ne bo več samodejno posodabljala. Vedno lahko ustvarite novo nadzorno ploščo v konfiguraciji, s katero se lahko igrate.",
+ "para_sure": "Ali ste prepričani, da želite prevzeti nadzor nad vašim vmesnikom?",
+ "save": "Prevzemite nadzor",
+ "yaml_config": "Za začetek vam lahko pomaga trenutne nastavitve te nadzorne plošče:",
+ "yaml_control": "Če želite prevzeti nadzor v načinu YAML, ustvarite datoteko YAML z imenom, ki ste ga določili v konfiguraciji za to nadzorno ploščo, ali privzeto 'ui-lovelace.yaml'.",
+ "yaml_mode": "Za to nadzorno ploščo uporabljate način YAML, kar pomeni, da ne morete spremeniti konfiguracije Lovelace iz uporabniškega vmesnika. Če želite upravljati to nadzorno ploščo iz uporabniškega vmesnika, iz konfiguracije Lovelace v 'config.yaml.' Odstranite 'mode: yaml'."
+ },
+ "select_view": {
+ "dashboard_label": "Nadzorna plošča",
+ "header": "Izberite pogled",
+ "views_label": "Pogled"
+ },
+ "sub-element-editor": {
+ "types": {
+ "footer": "Urejevalnik noge",
+ "header": "Urejevalnik glave",
+ "row": "Urejevalnik vrstic entitete"
+ }
+ },
+ "suggest_card": {
+ "add": "Dodaj v uporabniški vmesnik Lovelace",
+ "create_own": "Izberite drugačno karto",
+ "header": "Za vas smo ustvarili predlog"
+ },
+ "view": {
+ "panel_mode": {
+ "warning_multiple_cards": "Ta pogled vsebuje več kartic, na plošči je lahko prikazana največ ena kartica."
+ }
+ }
+ },
+ "menu": {
+ "close": "Zapri",
+ "configure_ui": "Uredi nadzorno ploščo",
+ "exit_edit_mode": "Zapustite način urejanja iz uporabniškega vmesnika",
+ "help": "Pomoč",
+ "reload_resources": "Ponovno naloži vire",
+ "start_conversation": "Začni pogovor"
+ },
+ "reload_lovelace": "Ponovno naloži uporabniški vmesnik",
+ "reload_resources": {
+ "refresh_body": "Če želite dokončati ponovno nalaganje, morate osvežiti stran. Ali jo želite zdaj osvežiti?",
+ "refresh_header": "Ali želite osvežiti?"
+ },
+ "unused_entities": {
+ "available_entities": "To so entitete, ki so vam na voljo, vendar še niso v uporabniškem vmesniku Lovelace.",
+ "domain": "Domena",
+ "entity": "Subjekt",
+ "entity_id": "ID entitete",
+ "last_changed": "Zadnja sprememba",
+ "no_data": "Najdenih ni bilo neuporabljenih entitet",
+ "search": "Iskanje entitet",
+ "select_to_add": "Izberite entitete, ki jih želite dodati na kartico, in nato kliknite gumb Dodaj kartico.",
+ "title": "Neuporabljene entitete"
+ },
+ "views": {
+ "confirm_delete": "Želite izbrisati pogled?",
+ "confirm_delete_existing_cards": "Če izbrišete ta pogled, boste odstranili tudi kartice",
+ "confirm_delete_existing_cards_text": "Ali ste prepričani, da želite izbrisati svoj ''{name}'' pogled? Pogled vsebuje {number} kartice, ki bodo izbrisane. Tega ukrepa ni mogoče razveljaviti.",
+ "confirm_delete_text": "Ali ste prepričani, da želite izbrisati pogled ''{name}'' ?"
+ },
+ "warning": {
+ "attribute_not_found": "Atribut {attribute} ni na voljo v: {entity}",
+ "entity_non_numeric": "Entiteta je neštevilska: {entity}",
+ "entity_not_found": "Entiteta ni na voljo: {entity}",
+ "entity_unavailable": "{entity} trenutno ni na voljo",
+ "starting": "Home Assistant se zaganja, morda še ni vse na voljo"
+ }
+ },
+ "mailbox": {
+ "delete_button": "Izbriši",
+ "delete_prompt": "Želite izbrisati to sporočilo?",
+ "empty": "Nimate sporočil",
+ "playback_title": "Predvajaj sporočilo"
+ },
+ "map": {
+ "edit_zones": "Urejanje območij"
+ },
+ "my": {
+ "component_not_loaded": "Vaša instanca Home Assistant ne podpira te preusmeritve. Za uporabo te preusmeritve potrebujete integracijo {integration}",
+ "error": "Prišlo je do neznane napake",
+ "faq_link": "Pogosta vprašanja o Home Assistant",
+ "no_supervisor": "Vaša namestitev Home Assistant ne podpira te preusmeritve. Potrebuje bodisi operacijski sistem Home Assistant bodisi način namestitve Home Assistant Supervised. Za več informacij glejte {docs_link} ."
+ },
+ "page-authorize": {
+ "abort_intro": "Prijava prekinjena",
+ "authorizing_client": "Dali boste {clientId} dostop do vašega Home Assistanta.",
+ "form": {
+ "error": "Napaka: {error}",
+ "next": "Prijava",
+ "providers": {
+ "command_line": {
+ "abort": {
+ "login_expired": "Seja je potekla, prosimo, prijavite se znova."
+ },
+ "error": {
+ "invalid_auth": "Neveljavno uporabniško ime ali geslo",
+ "invalid_code": "Neveljavna avtorizacijska koda"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Geslo",
+ "username": "Uporabniško ime"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Dvofaktorska koda za avtorizacijo"
+ },
+ "description": "V svoji napravi odprite **{mfa_module_name}**, da si ogledate svojo dvofaktorsko kodo za preverjanje pristnosti in preverite svojo identiteto:"
+ }
+ }
+ },
+ "homeassistant": {
+ "abort": {
+ "login_expired": "Seja je potekla, prosimo, prijavite se znova."
+ },
+ "error": {
+ "invalid_auth": "Neveljavno uporabniško ime ali geslo",
+ "invalid_code": "Neveljavna avtorizacijska koda"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "Geslo",
+ "username": "Uporabniško ime"
+ }
+ },
+ "mfa": {
+ "data": {
+ "code": "Dvofaktorska koda za avtorizacijo"
+ },
+ "description": "V svoji napravi odprite **{mfa_module_name}**, da si ogledate svojo dvofaktorsko kodo za preverjanje pristnosti in preverite svojo identiteto:"
+ }
+ }
+ },
+ "legacy_api_password": {
+ "abort": {
+ "login_expired": "Seja je potekla, prosimo, prijavite se znova.",
+ "no_api_password_set": "Nimate nastavljenega gesla API-ja."
+ },
+ "error": {
+ "invalid_auth": "Neveljavna API geslo",
+ "invalid_code": "Neveljavna avtorizacijska koda"
+ },
+ "step": {
+ "init": {
+ "data": {
+ "password": "API Geslo"
+ },
+ "description": "Prosimo vnesite API geslo v vašo HTTP konfiguracijo:"
+ },
+ "mfa": {
+ "data": {
+ "code": "Dvofaktorska koda za avtorizacijo"
+ },
+ "description": "V svoji napravi odprite **{mfa_module_name}**, da si ogledate svojo dvofaktorsko kodo za preverjanje pristnosti in preverite svojo identiteto:"
+ }
+ }
+ },
+ "trusted_networks": {
+ "abort": {
+ "not_allowed": "Vaš računalnik ni dovoljen."
+ },
+ "step": {
+ "init": {
+ "data": {
+ "user": "Uporabnik"
+ },
+ "description": "Izberite uporabnika s katerim se želite prijaviti:"
+ }
+ }
+ }
+ },
+ "start_over": "Začeti znova",
+ "unknown_error": "Nekaj je šlo narobe",
+ "working": "Prosimo počakajte"
+ },
+ "initializing": "Inicializacija",
+ "logging_in_with": "Prijava z **{authProviderName}**.",
+ "pick_auth_provider": "Ali se prijavite z",
+ "store_token": "Pusti me prijavljenega"
+ },
+ "page-demo": {
+ "cards": {
+ "demo": {
+ "demo_by": "avtor: {name}",
+ "introduction": "Dobrodošli doma! Dosegli ste predstavitev Home Assistant-a, kjer smo predstavili najboljše uporabniške vmesnike, ki jih je ustvarila naša skupnost.",
+ "learn_more": "Preberite več o Home Assistant",
+ "next_demo": "Naslednja predstavitev"
+ }
+ },
+ "config": {
+ "arsaboo": {
+ "labels": {
+ "activity": "Dejavnost",
+ "air": "Zrak",
+ "commute_home": "Vožnja do doma",
+ "entertainment": "Zabava",
+ "hdmi_input": "HDMI vhod",
+ "hdmi_switcher": "HDMI stikalo",
+ "information": "Informacije",
+ "lights": "Luči",
+ "morning_commute": "Jutranja vožnja",
+ "total_tv_time": "Skupni TV čas",
+ "turn_tv_off": "Izklop televizije",
+ "volume": "Glasnost"
+ },
+ "names": {
+ "family_room": "Dnevna soba",
+ "hallway": "Hodnik",
+ "kitchen": "Kuhinja",
+ "left": "Levo",
+ "master_bedroom": "Glavna spalnica",
+ "mirror": "Ogledalo",
+ "patio": "Terasa",
+ "right": "Desno",
+ "temperature_study": "Študija temperature",
+ "upstairs": "Zgoraj"
+ },
+ "unit": {
+ "minutes_abbr": "min",
+ "watching": "gledam"
+ }
+ }
+ }
+ },
+ "page-onboarding": {
+ "core-config": {
+ "button_detect": "Odkrij",
+ "finish": "Naslednji",
+ "intro": "Pozdravljeni {name}, dobrodošli v Home Assistantu. Kako bi radi poimenovali vaš dom?",
+ "intro_location": "Radi bi vedeli, kje živite. Te informacije vam bodo pomagale pri prikazovanju informacij in postavitvi avtomatizacij, ki temeljijo na soncu. Ti podatki se nikoli ne delijo izven vašega omrežja.",
+ "intro_location_detect": "Lahko vam pomagamo izpolniti te informacije z enkratno zahtevo za zunanjo storitev.",
+ "location_name": "Ime namestitve Home Assistant",
+ "location_name_default": "Dom"
+ },
+ "integration": {
+ "finish": "Dokončaj",
+ "intro": "Naprave in storitve so v Home Assistantu predstavljene kot integracije. Zdaj jih lahko nastavite ali pa to storite kasneje iz konfiguracijske strani.",
+ "more_integrations": "Več"
+ },
+ "intro": "Ali ste pripravljeni prebuditi svoj dom, povrniti svojo zasebnost in se pridružiti svetovni skupnosti ustvarjalcev?",
+ "restore": {
+ "addons": "Dodatki",
+ "confirm_password": "Potrdite geslo za varnostno kopiranje",
+ "description": "Lahko pa obnovite tudi iz prejšnjega posnetka.",
+ "folders": "Mape",
+ "full_backup": "Popolna varnostna kopija",
+ "hide_log": "Skrij celoten dnevnik",
+ "in_progress": "Obnavljanje v teku",
+ "partial_backup": "Delno varnostno kopiranje",
+ "password": "Geslo za varnostno kopiranje",
+ "select_type": "Izberite, kaj želite obnoviti",
+ "show_log": "Prikaži celoten dnevnik",
+ "type": "Vrsta varnostne kopije"
+ },
+ "user": {
+ "create_account": "Ustvarite račun",
+ "data": {
+ "name": "Ime",
+ "password": "Geslo",
+ "password_confirm": "Potrdi Geslo",
+ "username": "Uporabniško ime"
+ },
+ "error": {
+ "password_not_match": "Gesli se ne ujemata",
+ "required_fields": "Izpolnite vsa zahtevana polja"
+ },
+ "intro": "Začnite tako, da ustvarite uporabniški račun.",
+ "required_field": "Zahtevano"
+ }
+ },
+ "profile": {
+ "advanced_mode": {
+ "description": "Odklene napredne funkcije.",
+ "link_promo": "Preberite več",
+ "title": "Napredni način"
+ },
+ "change_password": {
+ "confirm_new_password": "Potrdite novo geslo",
+ "current_password": "Trenutno geslo",
+ "error_new_is_old": "Novo geslo se mora razlikovati od trenutnega gesla",
+ "error_new_mismatch": "Gesli se ne ujemata",
+ "error_required": "Zahtevano",
+ "header": "Spremeni geslo",
+ "new_password": "Novo geslo",
+ "submit": "Pošlji",
+ "success": "Sprememba gesla je bila uspešna"
+ },
+ "current_user": "Trenutno ste prijavljeni kot {fullName}.",
+ "customize_sidebar": {
+ "button": "Uredi",
+ "description": "Urejanje je možno aktivirati z dolgim klikom glavo stranske vrstice.",
+ "header": "Spremeni vrstni red in skrij predmete v stranski vrstici"
+ },
+ "dashboard": {
+ "default_dashboard_label": "Pregled (privzeto)",
+ "description": "Izberite privzeto nadzorno ploščo za to napravo.",
+ "dropdown_label": "Nadzorna plošča",
+ "header": "Nadzorna plošča"
+ },
+ "enable_shortcuts": {
+ "description": "Omogočite ali onemogočite bližnjice na tipkovnici za izvajanje različnih dejanj v uporabniškem vmesniku.",
+ "header": "Bližnjice na tipkovnici"
+ },
+ "force_narrow": {
+ "description": "To bo privzeto skrilo stransko vrstico, podobno kot pri mobilnih napravah.",
+ "header": "Vedno skrij stransko vrstico"
+ },
+ "is_owner": "Ste lastnik.",
+ "language": {
+ "dropdown_label": "Jezik",
+ "header": "Jezik",
+ "link_promo": "Pomagajte pri prevodu"
+ },
+ "logout": "Odjava",
+ "logout_text": "Ali ste prepričani, da se želite odjaviti?",
+ "logout_title": "Odjava?",
+ "long_lived_access_tokens": {
+ "confirm_delete": "Ali ste prepričani, da želite izbrisati žeton za dostop za {name} ?",
+ "create": "Ustvari žeton",
+ "create_failed": "Ni bilo mogoče ustvariti žetona za dostop.",
+ "created": "Ustvarjeno {date}",
+ "delete_failed": "Ni bilo mogoče ustvariti žetona za dostop.",
+ "description": "Ustvarite dolgožive žetone dostopa, s katerimi lahko skripte komunicirajo z vašim primerkom Home Assistanta. Vsak žeton bo veljaven 10 let od nastanka. Trenutno so aktivni naslednji dolgotrajni dostopni žetoni.",
+ "empty_state": "Nimate dostopnih žetonov z daljšim rokom trajanja.",
+ "header": "Dolgotrajni dostopni žetoni",
+ "learn_auth_requests": "Naučite se, kako naredite preverjene zahteve.",
+ "name": "Ime",
+ "prompt_copy_token": "Kopirate žeton za dostop. Ta ne bo prikazan znova.",
+ "prompt_name": "Dajte žetonu ime"
+ },
+ "mfa": {
+ "confirm_disable": "Ali ste prepričani, da želite onemogočiti {name} ?",
+ "disable": "Onemogoči",
+ "enable": "Omogoči",
+ "header": "Večfaktorski moduli za preverjanje pristnosti"
+ },
+ "mfa_setup": {
+ "close": "Zapri",
+ "step_done": "Nastavitev je bila opravljena za {step}",
+ "submit": "Pošlji",
+ "title_aborted": "Prekinjeno",
+ "title_success": "Uspeh!"
+ },
+ "number_format": {
+ "description": "Izberite način oblikovanja številk.",
+ "formats": {
+ "none": "Noben"
+ }
+ },
+ "push_notifications": {
+ "add_device_prompt": {
+ "input_label": "Ime naprave",
+ "title": "Kako naj se imenuje ta naprava?"
+ },
+ "description": "Pošiljaj obvestila tej napravi",
+ "error_load_platform": "Konfiguriraj notify.html5 (push obvestila).",
+ "error_use_https": "Zahteva SSL za Frontend.",
+ "header": "Push obvestila",
+ "link_promo": "Preberite več",
+ "push_notifications": "Push obvestila"
+ },
+ "refresh_tokens": {
+ "confirm_delete": "Ali ste prepričani, da želite izbrisati žeton za osveževanje za {name} ?",
+ "created_at": "Ustvarjeno {date}",
+ "current_token_tooltip": "Trenutni žeton ni mogoče izbrisati",
+ "delete_failed": "Žetonov za osveževanje ni bilo mogoče izbrisati.",
+ "description": "Vsak osvežilni žeton predstavlja sejo za prijavo. Osvežilni žetoni se samodejno odstranijo, ko kliknete odjava. Za vaš račun so trenutno aktivni naslednji žetoni za osveževanje.",
+ "header": "Osvežilni žetoni",
+ "last_used": "Nazadnje uporabljen {date} iz {location}",
+ "not_used": "Nikoli ni bil uporabljen",
+ "token_title": "Žeton za osveževanje za {clientId}"
+ },
+ "suspend": {
+ "description": "Ali bi morali zapreti povezavo s strežnikom, potem ko je skrita za 5 minut?",
+ "header": "Samodejno zapri povezavo"
+ },
+ "themes": {
+ "accent_color": "Barva poudarkov",
+ "dark_mode": {
+ "auto": "Samodejno",
+ "dark": "Temni način",
+ "light": "Svetli način"
+ },
+ "dropdown_label": "Tema",
+ "error_no_theme": "Teme niso na voljo.",
+ "header": "Tema",
+ "link_promo": "Preberite več o temah",
+ "primary_color": "Primarna barva",
+ "reset": "Ponastavi"
+ },
+ "time_format": {
+ "dropdown_label": "Časovni format",
+ "formats": {
+ "12": "12 ur (AM / PM)",
+ "24": "24 ur",
+ "language": "Samodejno (uporabi nastavitev jezika)",
+ "system": "Uporabite področne nastavitve sistema"
+ },
+ "header": "Časovni format"
+ },
+ "vibrate": {
+ "description": "V tej napravi omogočite ali onemogočite vibracije pri krmiljenju naprav.",
+ "header": "Vibriraj"
+ }
+ },
+ "shopping_list": {
+ "start_conversation": "Začni pogovor"
+ }
+ },
+ "sidebar": {
+ "done": "Končano",
+ "external_app_configuration": "Nastavitve aplikacije",
+ "hide_panel": "Skrij ploščo",
+ "show_panel": "Prikaži ploščo",
+ "sidebar_toggle": "Preklop stranske vrstice"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/sr-Latn.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/sr-Latn.json
new file mode 100644
index 00000000..821ee146
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/sr-Latn.json
@@ -0,0 +1,799 @@
+{
+ "panel": {
+ "config": "Konfiguracija",
+ "history": "Istorija",
+ "logbook": "Dnevnik",
+ "mailbox": "Poštansko sanduče",
+ "map": "Mapa",
+ "shopping_list": "Lista za kupovinu",
+ "states": "Pregled"
+ },
+ "state": {
+ "default": {
+ "unavailable": "Nedostupan",
+ "unknown": "Nepoznat"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Automatski",
+ "off": "Isključen",
+ "on": "Uključen"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Naoruž",
+ "armed_away": "Naoruž",
+ "armed_night": "Naoruž"
+ },
+ "default": {
+ "unavailable": "Nedost",
+ "unknown": "Nedo"
+ },
+ "device_tracker": {
+ "home": "Kuća"
+ },
+ "person": {
+ "home": "Kuća"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "dashboard": {
+ "capability": {
+ "label": {
+ "core": "Jezgro"
+ },
+ "stages": {
+ "deprecated": "Zastarelo",
+ "experimental": "Eksperimentalni"
+ }
+ },
+ "install": "instaliraj",
+ "restart": "ponovo pokreni",
+ "start": "pokreni",
+ "stop": "zaustavi"
+ }
+ },
+ "dialog": {
+ "repositories": {
+ "used": "Skladište se koristi za instalirane dodatke i ne može se ukloniti."
+ }
+ },
+ "panel": {
+ "addons": "Dodaci"
+ },
+ "update_available": {
+ "create_backup": "Kreiraj rezervnu kopiju pre ažuriranja",
+ "no_update": "Nema dostupnih ažuriranja za {name}",
+ "open_release_notes": "Otvori napomene uz izdanje",
+ "update_name": "Ažuriraj {name}",
+ "updating": "Ažuriranje {name} na verziju {version}"
+ }
+ },
+ "ui": {
+ "card": {
+ "button": {
+ "press": "Pritisnite taster"
+ },
+ "media_player": {
+ "media_pause": "Pauziraj",
+ "media_stop": "Stop",
+ "media_volume_down": "Smanjivanje zvuka",
+ "media_volume_up": "Pojačavanje zvuka"
+ },
+ "scene": {
+ "activate": "Aktiviraj"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Vazdušni pritisak",
+ "humidity": "Vlažnost",
+ "temperature": "Temperatura",
+ "visibility": "Vidljivost",
+ "wind_speed": "Brzina vetra"
+ },
+ "cardinal_direction": {
+ "e": "I",
+ "ene": "ISI",
+ "ese": "IJI",
+ "n": "S",
+ "ne": "SI",
+ "nne": "SSI",
+ "nnw": "SSZ",
+ "nw": "SZ",
+ "s": "J",
+ "se": "JI",
+ "sse": "JJI",
+ "ssw": "JJZ",
+ "sw": "JZ",
+ "w": "Z",
+ "wnw": "ZSZ",
+ "wsw": "ZJZ"
+ },
+ "forecast": "Vremenska prognoza",
+ "high": "Visok",
+ "low": "Nizak"
+ }
+ },
+ "common": {
+ "delete": "Izbriši",
+ "help": "Pomoć",
+ "submit": "Prosledi",
+ "successfully_deleted": "Uspešno izbrisano"
+ },
+ "components": {
+ "entity": {
+ "entity-picker": {
+ "edit": "Uredi",
+ "entity": "Entitet"
+ }
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Unesi vrednost QR koda",
+ "manual_input": "QR kôd možete skenirati drugim QR skenerom i nalepiti kôd u donje polje za unos",
+ "not_supported": "Vaš pregledač ne podržava QR skeniranje.",
+ "only_https_supported": "Kameru možete koristiti za skeniranje QR koda samo prilikom korišćenja HTTPS veze.",
+ "select_camera": "Izaberi kameru"
+ },
+ "related-filter-menu": {
+ "filter": "Filter"
+ },
+ "service-picker": {
+ "service": "Usluga"
+ },
+ "target-picker": {
+ "expand": "Proširi",
+ "remove": "Ukloni"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "update": "Ažuriraj"
+ },
+ "entity_registry": {
+ "editor": {
+ "device_class": "Prikaži kao",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Vrata",
+ "garage_door": "Garažna vrata",
+ "opening": "Drugi",
+ "window": "Prozor"
+ },
+ "cover": {
+ "door": "Vrata",
+ "garage": "Garažna vrata",
+ "window": "Prozor"
+ }
+ },
+ "icon": "Ikona",
+ "icon_error": "Ikone bi trebalo da budu u formatu 'prefix:iconname', npr. 'mdi:home'"
+ }
+ },
+ "helper_settings": {
+ "generic": {
+ "icon": "Ikona",
+ "name": "Ime"
+ },
+ "input_number": {
+ "box": "Polje za unos",
+ "unit_of_measurement": "Jedinica mere"
+ },
+ "input_select": {
+ "add": "Dodaj",
+ "add_option": "Dodaj opciju",
+ "no_options": "Još uvek nema opcija.",
+ "options": "Opcije"
+ },
+ "input_text": {
+ "max": "Maksimalna dužina",
+ "min": "Minimalna dužina",
+ "mode": "Režim prikaza",
+ "password": "Lozinka",
+ "text": "Tekst"
+ },
+ "required_error_msg": "Ovo polje je obavezno"
+ },
+ "more_info_control": {
+ "logbook": "Evidencija",
+ "person": {
+ "create_zone": "Kreiraj zonu od trenutne lokacije"
+ },
+ "show_more": "Prikaži više",
+ "vacuum": {
+ "fan_speed": "Brzina ventilatora",
+ "locate": "Lociraj",
+ "pause": "Pauziraj",
+ "start": "Start",
+ "start_pause": "Započni/pauziraj",
+ "status": "Status",
+ "stop": "Stop"
+ }
+ }
+ },
+ "panel": {
+ "config": {
+ "areas": {
+ "add_picture": "Dodaj sliku",
+ "data_table": {
+ "area": "Područje",
+ "devices": "Uređaji"
+ },
+ "edit_settings": "Podešavanja oblasti"
+ },
+ "automation": {
+ "caption": "Automatizacije",
+ "description": "Kreiranje prilagođenih pravila ponašanja za vaš dom",
+ "dialog_new": {
+ "start_empty_description": "Kreiraj novu automatizaciju \"od nule\""
+ },
+ "editor": {
+ "actions": {
+ "add": "Dodaj radnju",
+ "header": "Radnje",
+ "introduction": "Radnje su ono što će Home Assistant uraditi kada se automatizacija pokrene.",
+ "type": {
+ "delay": {
+ "delay": "Trajanje",
+ "label": "Sačekajte da prođe vreme (odlaganje)"
+ },
+ "service": {
+ "label": "Pozovi uslugu"
+ },
+ "wait_template": {
+ "label": "Sačekaj na šablon",
+ "wait_template": "Sačekaj Šablon"
+ }
+ },
+ "type_select": "Tip radnje",
+ "unsupported_action": "Nema podrške vizuelnog uređivača za akciju: {action}"
+ },
+ "alias": "Ime",
+ "conditions": {
+ "add": "Dodaj uslov",
+ "header": "Uslovi",
+ "introduction": "Uslovi su opcionalni i sprečiće pokretanje automatizacije ukoliko svi uslovi ne budu zadovoljeni.",
+ "type": {
+ "sun": {
+ "after": "Posle:",
+ "before": "Pre:",
+ "sunrise": "Izlazak Sunca",
+ "sunset": "Zalazak Sunca"
+ },
+ "template": {
+ "label": "Šablon"
+ },
+ "time": {
+ "after": "Posle",
+ "before": "Pre",
+ "weekdays": {
+ "mon": "Ponedeljak"
+ }
+ }
+ }
+ },
+ "default_name": "Nova automatizacija",
+ "enable_disable": "Omogući/onemogući automatizaciju",
+ "introduction": "Koristite automatizacije da biste oživeli svoj dom.",
+ "save": "Sačuvaj",
+ "triggers": {
+ "add": "Dodaj okidač",
+ "delete": "Obriši",
+ "delete_confirm": "Da li ste sigurni da želite ovo da obrišete?",
+ "duplicate": "Duplikat",
+ "header": "Okidači",
+ "introduction": "Okidači su ono što započinje obradu pravila o automatizaciji. Moguće je navesti više okidača za isto pravilo. Kada se pokrene okidač, Home Assistant će validirati uslove, ako postoje, i pozvati radnju.",
+ "type": {
+ "event": {
+ "event_data": "Podaci o događaju",
+ "event_type": "Tip događaja",
+ "label": "Događaj"
+ },
+ "homeassistant": {
+ "event": "Događaj:",
+ "label": "Home Assistant",
+ "shutdown": "Isključivanje",
+ "start": "Start"
+ },
+ "mqtt": {
+ "topic": "Tema"
+ },
+ "numeric_state": {
+ "above": "Iznad",
+ "below": "Ispod",
+ "label": "Numeričko stanje",
+ "value_template": "Šablon vrednosti (opciono)"
+ },
+ "state": {
+ "from": "Od (opciono)",
+ "label": "Stanje",
+ "to": "Za (opciono)"
+ },
+ "sun": {
+ "label": "Sunce",
+ "offset": "Pomak (opcionalno)",
+ "sunrise": "Izlazak Sunca",
+ "sunset": "Zalazak Sunca"
+ },
+ "template": {
+ "label": "Šablon"
+ },
+ "time": {
+ "label": "Vreme"
+ },
+ "zone": {
+ "enter": "Ulazak",
+ "leave": "Izlazak"
+ }
+ },
+ "type_select": "Tip okidača",
+ "unsupported_platform": "Nema podrške za vizuelni uređivač za platformu: {platform}"
+ },
+ "unsaved_confirm": "Imate nesačuvane promene. Jeste li sigurni da želite da odete?"
+ },
+ "picker": {
+ "add_automation": "Dodaj automatizaciju",
+ "header": "Uređivač automatizacija",
+ "headers": {
+ "name": "Ime"
+ },
+ "introduction": "Uređivač automatizacija vam omogućava da kreirate i uređujete automatizacije. Molimo, sledite dole navedenu vezu da biste pročitali uputstva, kako bi ste se uverili da ste ispravno konfigurisali Home Assistant-a.",
+ "no_automations": "Nismo mogli da nađemo nikakve automatizacije",
+ "pick_automation": "Izaberite automatizaciju za uređivanje"
+ },
+ "trace": {
+ "edit_automation": "Uredi automatizaciju"
+ }
+ },
+ "blueprint": {
+ "overview": {
+ "create_automation": "Kreiraj automatizaciju",
+ "create_script": "Kreiraj skripte",
+ "headers": {
+ "type": "Tip"
+ },
+ "types": {
+ "automation": "Automatizacija",
+ "script": "Skripte"
+ }
+ }
+ },
+ "core": {
+ "section": {
+ "core": {
+ "introduction": "Upravljajte lokacijom, mrežom i analitikama."
+ }
+ }
+ },
+ "customize": {
+ "caption": "Prilagođavanja",
+ "description": "Prilagodite vaše entiteta"
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Upravljanje automatizacijama, scenama, skriptama i pomagačima",
+ "title": "Automatizacije & Scene"
+ },
+ "blueprints": {
+ "description": "Unapred napravljene automatizacije i skripte od strane zajednice"
+ },
+ "companion": {
+ "description": "Lokacija i obaveštenja",
+ "title": "Companion App"
+ },
+ "dashboards": {
+ "description": "Kreiranje prilagođenih skupova kartica za kontrolu doma",
+ "title": "Kontrolne table"
+ },
+ "devices": {
+ "description": "Integracije, uređaji, entiteti i oblasti",
+ "title": "Uređaji & Usluge"
+ },
+ "energy": {
+ "description": "Praćenje proizvodnje i potrošnje energije",
+ "title": "Energija"
+ },
+ "people": {
+ "description": "Upravljanje osobama i zonama koje Home Assistant prati",
+ "title": "Ljudi i Zone"
+ },
+ "settings": {
+ "description": "Osnovna podešavanja, kontrole servera, logovi i informacije",
+ "title": "Podešavanja"
+ },
+ "supervisor": {
+ "description": "Kreiranje rezervnih kopija, provera logova ili ponovno pokretanje sistema",
+ "title": "Dodaci, Rezervne kopije & Supervisor"
+ },
+ "tags": {
+ "description": "Aktivira automatizaciju kada se skenira NFC oznaka, QR kod itd.",
+ "title": "Oznake"
+ }
+ },
+ "devices": {
+ "delete": "Izbriši",
+ "edit_settings": "Izmena podešavanja",
+ "entities": {
+ "config": "Konfiguracija",
+ "control": "Kontrole",
+ "diagnostic": "Dijagnostika",
+ "sensor": "Senzori",
+ "state": "Stanje"
+ },
+ "open_configuration_url_device": "Posetite uređaj"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Dodajte sistem baterija",
+ "battery_systems": "Sistemi baterija",
+ "dialog": {
+ "energy_into_battery": "Energija koja odlazi u baterije (kWh)",
+ "energy_out_of_battery": "Energija koja dolazi iz baterija (kWh)",
+ "header": "Konfigurišite sistema baterija"
+ }
+ },
+ "device_consumption": {
+ "add_device": "Dodaj uređaj",
+ "devices": "Uređaji",
+ "dialog": {
+ "device_consumption_energy": "Utrošak energije uređaja (kWh)",
+ "header": "Dodaj uređaj"
+ }
+ },
+ "gas": {
+ "add_gas_source": "Dodaj izvor gasa",
+ "dialog": {
+ "gas_usage": "Upotreba gasa",
+ "m3_or_kWh": "ft³, m³, Wh, kWh ili MWh"
+ },
+ "gas_consumption": "Potrošnja gasa"
+ },
+ "solar": {
+ "dialog": {
+ "add_forecast": "Dodaj prognozu",
+ "dont_forecast_production": "Ne prognoziraj proizvodnju",
+ "forecast_production": "Prognoza proizvodnje"
+ }
+ }
+ },
+ "entities": {
+ "picker": {
+ "header": "Entiteter",
+ "status": {
+ "restored": "Vraćeno"
+ }
+ }
+ },
+ "helpers": {
+ "picker": {
+ "headers": {
+ "name": "Ime",
+ "type": "Tip"
+ }
+ },
+ "types": {
+ "input_datetime": "Datum i/ili vreme",
+ "input_text": "Tekst"
+ }
+ },
+ "info": {
+ "copy_menu": "Kopiraj meni"
+ },
+ "integrations": {
+ "config_entry": {
+ "hardware": "Hardver: {version}",
+ "unknown_via_device": "Nepoznat uređaj",
+ "via": "Povezano preko"
+ },
+ "home_assistant_website": "Home Assistant veb stranica",
+ "note_about_website_reference": "Više je dostupno na"
+ },
+ "logs": {
+ "copy": "Kopiraj unos loga"
+ },
+ "lovelace": {
+ "dashboards": {
+ "detail": {
+ "create": "Kreiraj",
+ "delete": "Izbriši",
+ "dismiss": "Zatvori",
+ "icon": "Ikona",
+ "remove_default": "Ukloni kao podrazumevanu vrednost na ovom uređaju",
+ "require_admin": "Samo administrator",
+ "set_default": "Postavi kao podrazumevanu vrednost na ovom uređaju",
+ "title": "Naslov",
+ "title_required": "Naslov je neophodan.",
+ "update": "Ažuriraj",
+ "url": "URL adresa"
+ },
+ "picker": {
+ "headers": {
+ "conf_mode": "Metod konfiguracije",
+ "default": "Podrazumevano",
+ "require_admin": "Samo administrator",
+ "title": "Naslov"
+ },
+ "open": "Otvori"
+ }
+ }
+ },
+ "mqtt": {
+ "title": "MQTT"
+ },
+ "ozw": {
+ "network_status": {
+ "unknown": "Nepoznat"
+ }
+ },
+ "person": {
+ "add_person": "Dodaj osobu",
+ "confirm_delete": "Želite li zaista da izbrišete ovu osobu?",
+ "create_person": "Kreiraj osobu",
+ "detail": {
+ "create": "Kreiraj",
+ "delete": "Izbriši",
+ "linked_user": "Povezani korisnik",
+ "name_error_msg": "Ime je obavezno",
+ "new_person": "Nova osoba",
+ "update": "Ažuriraj"
+ }
+ },
+ "scene": {
+ "editor": {
+ "area": "Područje"
+ }
+ },
+ "script": {
+ "caption": "Skripte",
+ "description": "Izvršavanje niza akcija"
+ },
+ "server_control": {
+ "section": {
+ "reloading": {
+ "themes": "Teme",
+ "timer": "Tajmeri"
+ }
+ }
+ },
+ "updates": {
+ "more_updates": "+ {count} ažuriranja",
+ "show": "prikaži",
+ "show_all_updates": "Prikaži sva ažuriranja",
+ "unable_to_fetch": "Nije moguće učitati ispravke"
+ },
+ "users": {
+ "add_user": {
+ "local_only": "Samo lokalno"
+ },
+ "editor": {
+ "active": "Aktivni",
+ "admin": "Administrator",
+ "group": "Grupa",
+ "id": "ID",
+ "local_only": "Može se prijaviti samo sa lokalne mreže",
+ "name": "Ime za prikaz",
+ "owner": "Vlasnik",
+ "system_generated_users_not_removable": "Nije moguće ukloniti sistemski generisane korisnike.",
+ "unnamed_user": "Neimenovani korisnik"
+ },
+ "picker": {
+ "headers": {
+ "local": "Samo lokalno"
+ }
+ }
+ },
+ "zha": {
+ "add_device_page": {
+ "search_again": "Pretraži ponovo"
+ },
+ "common": {
+ "value": "Vrednost"
+ },
+ "groups": {
+ "delete": "Izbriši grupu"
+ }
+ },
+ "zone": {
+ "edit_zone": "Uredi zonu",
+ "go_to_core_config": "Želite li da pređite na opštu konfiguraciju?"
+ },
+ "zwave": {
+ "description": "Upravljanje Z-Wave mrežom"
+ },
+ "zwave_js": {
+ "add_node": {
+ "check_logs": "Molim, proverite logove za više informacija",
+ "choose_inclusion_strategy": "Kako želite da dodate uređaj",
+ "enter_qr_code": "Unesite vrednost QR koda",
+ "qr_code": "QR kôd",
+ "qr_code_paragraph": "Ako uređaj podržava SmartStart, možete da skenirate QR kôd radi lakog uparivanja.",
+ "scan_qr_code": "Skeniraj QR kôd",
+ "searching_device": "Traženje uređaja",
+ "select_camera": "Izaberi kameru"
+ },
+ "common": {
+ "back": "Nazad"
+ },
+ "dashboard": {
+ "not_ready": "{count} nije spreman",
+ "server_url": "URL adresa servera"
+ },
+ "device_info": {
+ "highest_security": "Najviša bezbednost",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "logs": {
+ "download_logs": "Preuzmi logove"
+ },
+ "provisioned": {
+ "dsk": "DSK",
+ "included": "Uključeni",
+ "not_included": "Nije uključeno"
+ },
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Primer: Nasleđe Vrata Zaključana bez podrške za S2",
+ "title": "S0 Nasleđe"
+ },
+ "S2_AccessControl": {
+ "description": "Primer: Vrata zaključana i aražna vrata",
+ "title": "S2 kontrola pristupa"
+ },
+ "S2_Authenticated": {
+ "description": "Primer: Osvetljenje, senzori i bezbednosni sistemi"
+ }
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Nadgledanje pojedinačnih uređaja",
+ "energy_distribution_title": "Distribucija energije",
+ "energy_gas_graph_title": "Potrošnja gasa",
+ "energy_solar_graph_title": "Solarna proizvodnja",
+ "energy_sources_table_title": "Izvori",
+ "energy_usage_graph_title": "Korišćenje energije"
+ }
+ },
+ "lovelace": {
+ "cards": {
+ "energy": {
+ "carbon_consumed_gauge": {
+ "non_fossil_energy_not_calculated": "Potrošena ne-fosilna energija nije mogla biti izračunata"
+ },
+ "energy_distribution": {
+ "battery": "Baterija",
+ "home": "Kuća",
+ "title_today": "Distribucija energije danas"
+ },
+ "energy_solar_graph": {
+ "forecast": "Prognoza {name}",
+ "production": "Proizvodnja {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Ukupna baterija",
+ "cost": "Trošak",
+ "energy": "Energija",
+ "grid_total": "Mreža ukupno",
+ "source": "Izvor",
+ "total_costs": "Ukupni troškovi"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Kombinovano iz mreže",
+ "consumed_battery": "Potrošena baterija",
+ "consumed_solar": "Potrošena solarna",
+ "total_consumed": "Ukupno utrošeno {num} kWh",
+ "total_returned": "Ukupno vraćeno {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "energy_dependency": "Ova kartica ukazuje na korišćenje neto energije.",
+ "net_consumed_grid": "Neto potrošeno iz mreže",
+ "net_returned_grid": "Neto vraćeno u mrežu",
+ "red_green_color_explain": "Ako je zeleno, to znači da ste proizveli više energije nego što ste potrošili iz mreže. Ako je u crvenom, to znači da ste se oslanjali na mrežu za deo potrošnje energije vašeg doma."
+ },
+ "loading": "Učitavanje...",
+ "no_data": "Nema podataka za prikazivanje. Novim podacima može biti potrebno do 2 sata da stignu nakon što konfigurišete kontrolnu tablu za energiju.",
+ "no_data_period": "Nema podataka za ovaj period.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "Ova kartica pokazuje koliko je solarne energije, koju ste proizveli, koristio vaš dom umesto da bude vraćen u mrežu.",
+ "card_indicates_solar_energy_used_charge_home_bat": "Ako je ovaj broj obično veoma nizak, to ukazuje na višak solarne proizvodnje, možda bi trebalo da razmislite o punjenju kućne baterije ili električnog automobila iz solarnih panela u vreme velike solarne proizvodnje.",
+ "not_produced_solar_energy": "Uopšte niste proizveli solarnu energiju",
+ "self_consumed_solar_could_not_calc": "Ne može se izračunati samopotrošena solarna energija",
+ "self_consumed_solar_energy": "Samopotrošena solarna energija"
+ }
+ },
+ "map": {
+ "reset_focus": "Resetuj fokus"
+ },
+ "safe-mode": {
+ "description": "Kućni pomoćnik je naleteo na probleme prilikom učitavanja konfiguracije i sada radi u bezbednom režimu. Pogledajte log grešaka da biste videli šta je pošlo naopako.",
+ "header": "Aktiviran bezbedni režim"
+ },
+ "show_more_info": "Prikaži više informacija"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Dan",
+ "month": "Mesec",
+ "next": "Sledeći",
+ "previous": "Prethodni",
+ "today": "Danas",
+ "week": "Nedelja",
+ "year": "Godina"
+ }
+ },
+ "editor": {
+ "card": {
+ "button": {
+ "name": "Dugme"
+ },
+ "gauge": {
+ "name": "Merač"
+ },
+ "generic": {
+ "double_tap_action": "Radnja dvostrukog dodira"
+ },
+ "iframe": {
+ "name": "Web stranica"
+ },
+ "light": {
+ "name": "Svetlo"
+ },
+ "map": {
+ "name": "Mapa"
+ },
+ "sensor": {
+ "name": "Senzor"
+ },
+ "shopping-list": {
+ "name": "Lista za kupovinu"
+ },
+ "thermostat": {
+ "name": "Termostat"
+ },
+ "weather-forecast": {
+ "show_both": "Prikaži trenutnu vremensku prognozu i prognozu",
+ "show_only_current": "Prikaži samo trenutnu vremensku prognozu",
+ "show_only_forecast": "Prikaži samo prognozu"
+ }
+ },
+ "cardpicker": {
+ "custom_card": "Prilagođeno",
+ "no_description": "Opis nije dostupan."
+ },
+ "edit_card": {
+ "move_down": "Premesti karticu na dole",
+ "move_up": "Premesti karticu na gore"
+ },
+ "edit_view": {
+ "tab_settings": "Podešavanja",
+ "tab_visibility": "Vidljivost"
+ },
+ "save_config": {
+ "empty_config": "Počnite sa praznom kontrolnom tablom"
+ }
+ }
+ },
+ "map": {
+ "edit_zones": "Uredi zone"
+ },
+ "page-authorize": {
+ "store_token": "Drži me prijavljenog"
+ },
+ "profile": {
+ "dashboard": {
+ "dropdown_label": "Kontrolnu tabla",
+ "header": "Kontrolnu tabla"
+ }
+ }
+ },
+ "sidebar": {
+ "hide_panel": "Sakrij tablu",
+ "show_panel": "Prikaži tablu"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/sr.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/sr.json
new file mode 100644
index 00000000..0dc296ec
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/sr.json
@@ -0,0 +1,559 @@
+{
+ "panel": {
+ "calendar": "Kalendar",
+ "config": "Конфигурација",
+ "history": "Историја",
+ "logbook": "Дневник",
+ "mailbox": "Поштанско сандуче",
+ "map": "Мапа",
+ "shopping_list": "Листа за куповину",
+ "states": "Преглед"
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "arming": "Aktiviranje",
+ "disarming": "Deaktiviraj"
+ },
+ "default": {
+ "entity_not_found": "Вредност није пронађена",
+ "error": "Грешка"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "dashboard": {
+ "capability": {
+ "label": {
+ "core": "Core"
+ },
+ "stages": {
+ "deprecated": "Zastarelo",
+ "experimental": "Eksperimentalno"
+ }
+ }
+ }
+ },
+ "common": {
+ "menu": "Meni",
+ "review": "pregled",
+ "show": "Prikaži"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Otkaži",
+ "move": "Premesti"
+ },
+ "repositories": {
+ "used": "Skladište se koristi za instalirane dodatke i ne može se ukloniti."
+ }
+ },
+ "panel": {
+ "addons": "Dodaci"
+ },
+ "system": {
+ "supervisor": {
+ "unsupported_reason": {
+ "software": "Otkriven nepodržani softver"
+ }
+ }
+ },
+ "update_available": {
+ "core_note": "Supervizor će se vratiti na verziju {version} ako se vaša instanca ne pojavi nakon ažuriranja.",
+ "create_backup": "Kreiranje rezervne kopije pre ažuriranja",
+ "creating_backup": "Kreiranje rezervne kopije {name}",
+ "description": "Imate instaliranu {verziju}. Kliknite na dugme \"Ažuriraj\" da biste ažurirali verziju {newest_version}",
+ "no_update": "Nema dostupnih ažuriranja za {name}",
+ "open_release_notes": "Otvaranje napomena uz izdanje",
+ "update_name": "Ažuriraj {ime}",
+ "updating": "Ažuriranje {name} na verziju {version}"
+ }
+ },
+ "ui": {
+ "card": {
+ "area": {
+ "area_not_found": "Oblast nije pronađena."
+ },
+ "button": {
+ "press": "Pritisnite"
+ },
+ "lock": {
+ "lock": "Zaključaj",
+ "unlock": "Otključaj"
+ },
+ "media_player": {
+ "media_pause": "Pauza",
+ "media_stop": "Zaustavi",
+ "media_volume_down": "Smanji zvuk",
+ "media_volume_mute": "Isključi zvuk",
+ "media_volume_unmute": "Uključi zvuk",
+ "media_volume_up": "Pojačaj zvuk",
+ "sound_mode": "Režim zvuka",
+ "source": "Izvor"
+ }
+ },
+ "common": {
+ "clear": "Opozovite izbor",
+ "help": "Pomoć",
+ "move": "Premestite",
+ "submit": "Prosledi"
+ },
+ "components": {
+ "entity": {
+ "entity-picker": {
+ "edit": "Uređivanje"
+ }
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Unesite vrednost QR koda",
+ "manual_input": "QR kôd možete skenirati drugim QR skenerom i nalepiti kôd u dole navedeni unos",
+ "not_supported": "Vaš pretraživač ne podržava QR skeniranje.",
+ "only_https_supported": "Kameru možete koristiti samo za skeniranje QR koda prilikom korišćenja HTTPS-a.",
+ "select_camera": "Izaberite kameru"
+ },
+ "related-filter-menu": {
+ "filter": "Filter"
+ },
+ "target-picker": {
+ "expand": "Proširi",
+ "remove": "Ukloni"
+ }
+ },
+ "dialogs": {
+ "entity_registry": {
+ "editor": {
+ "device_class": "Prikaži kao",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Vrata",
+ "garage_door": "Garažna vrata",
+ "opening": "Ostalo",
+ "window": "Prozor"
+ },
+ "cover": {
+ "door": "Vrata",
+ "garage": "Garažna vrata",
+ "window": "Prozor"
+ }
+ }
+ }
+ },
+ "more_info_control": {
+ "logbook": "Evidencija",
+ "show_more": "Prikaži više"
+ }
+ },
+ "errors": {
+ "config": {
+ "no_state_array_support": "Više vrednosti stanja nije podržano u programu visual editor"
+ }
+ },
+ "panel": {
+ "config": {
+ "areas": {
+ "add_picture": "Dodavanje slike",
+ "edit_settings": "Postavke oblasti"
+ },
+ "automation": {
+ "dialog_new": {
+ "start_empty_description": "Kreiranje nove automatizacije od početka"
+ },
+ "editor": {
+ "conditions": {
+ "type": {
+ "time": {
+ "weekdays": {
+ "mon": "Понедељак"
+ }
+ }
+ }
+ },
+ "triggers": {
+ "learn_more": "Сазнајте више о окидачима",
+ "type": {
+ "mqtt": {
+ "label": "MQTT"
+ }
+ }
+ }
+ },
+ "picker": {
+ "learn_more": "Сазнајте више о аутоматизацијама"
+ },
+ "trace": {
+ "edit_automation": "Uređivanje automatizacije"
+ }
+ },
+ "blueprint": {
+ "overview": {
+ "create_automation": "Kreiraj automatizaciju",
+ "create_script": "Kreiranje skripte",
+ "headers": {
+ "type": "Tip"
+ },
+ "types": {
+ "automation": "Automatizacija",
+ "script": "Skripte"
+ }
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Upravljanje automatizacijama, scenama, skriptama i pomagačima",
+ "title": "Automatizacije i scene"
+ },
+ "blueprints": {
+ "description": "Unapred napravljene automatizacije i skripte od strane zajednice",
+ "title": "Nacrti"
+ },
+ "companion": {
+ "description": "Lokacija i obaveštenja"
+ },
+ "dashboards": {
+ "description": "Kreiranje prilagođenih skupova kartica za kontrolu kuće",
+ "title": "Kontrolne table"
+ },
+ "devices": {
+ "description": "Integracije, uređaji, entiteti i oblasti",
+ "title": "Uređaji i usluge"
+ },
+ "energy": {
+ "description": "Praćenje proizvodnje i potrošnje energije",
+ "title": "Energija"
+ },
+ "people": {
+ "description": "Upravljanje osobama i zonama koje Home Assistant prati",
+ "title": "Ljudi i zone"
+ },
+ "settings": {
+ "description": "Osnovne postavke, kontrole servera, evidencije i informacije",
+ "title": "Postavke"
+ },
+ "supervisor": {
+ "description": "Kreiranje rezervnih kopija, provera evidencija ili ponovno pokretanje sistema",
+ "title": "Dodaci, rezervne kopije i Supervisor"
+ },
+ "tags": {
+ "description": "Aktivirnje automatizacije kada se skenira NFC oznaka, QR kod itd.",
+ "title": "Oznake"
+ }
+ },
+ "devices": {
+ "edit_settings": "Uređivanje postavki",
+ "entities": {
+ "config": "Konfiguracija",
+ "control": "Kontrole",
+ "diagnostic": "Dijagnostika",
+ "sensor": "Senzori",
+ "state": "Stanje"
+ },
+ "open_configuration_url_device": "Posetite uređaj",
+ "open_configuration_url_service": "Posetite servis"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Dodavanje baterijskog sistema",
+ "battery_systems": "Baterijski sistemi",
+ "dialog": {
+ "energy_into_battery": "Energija koja ide u bateriju (kWh)",
+ "energy_out_of_battery": "Energija koja izlazi iz baterije (kWh)",
+ "header": "Konfigurisanje sistema baterije"
+ }
+ },
+ "device_consumption": {
+ "add_device": "Dodaj uređaj",
+ "devices": "Uređaji",
+ "dialog": {
+ "device_consumption_energy": "Energija potrošnje uređaja (kWh)",
+ "header": "Dodavanje uređaja"
+ }
+ },
+ "gas": {
+ "add_gas_source": "Dodaj izvor gasa",
+ "dialog": {
+ "gas_usage": "Upotreba gasa",
+ "m3_or_kWh": "ft³, m³, Wh, kWh ili MWh"
+ },
+ "gas_consumption": "Potrošnja gasa"
+ },
+ "solar": {
+ "dialog": {
+ "add_forecast": "Dodaj prognozu"
+ }
+ }
+ },
+ "info": {
+ "copy_menu": "Kopiraj meni"
+ },
+ "integrations": {
+ "config_entry": {
+ "hardware": "Hardver: {version}",
+ "unknown_via_device": "Nepoznat uređaj",
+ "via": "Povezano preko"
+ },
+ "config_flow": {
+ "external_step": {
+ "description": "Овај корак захтева да посетите екстерни веб-сајт да би био завршен.",
+ "open_site": "Отворите сајт"
+ }
+ }
+ },
+ "logs": {
+ "copy": "Kopiranje stavke evidencije"
+ },
+ "mqtt": {
+ "title": "MQTT"
+ },
+ "ozw": {
+ "network_status": {
+ "unknown": "Непознат"
+ }
+ },
+ "person": {
+ "detail": {
+ "local_only": "Može da se uloguje samo sa lokalne mreže"
+ }
+ },
+ "scene": {
+ "editor": {
+ "area": "Oblast"
+ }
+ },
+ "server_control": {
+ "section": {
+ "reloading": {
+ "timer": "Tajmeri"
+ }
+ }
+ },
+ "updates": {
+ "more_updates": "+ {count} ažuriranja",
+ "review": "pregled",
+ "show": "Prikaži",
+ "show_all_updates": "Prikaži sva ažuriranja",
+ "unable_to_fetch": "Nije moguće učitati ažuriranja",
+ "version_available": "Dostupna je verzija {version_available}"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Додај корисника",
+ "create": "Направите",
+ "local_only": "Samo lokalno",
+ "password": "Лозинка"
+ },
+ "editor": {
+ "caption": "Прикажи корисника"
+ },
+ "picker": {
+ "headers": {
+ "local": "Samo lokalno"
+ }
+ }
+ },
+ "zha": {
+ "groups": {
+ "delete": "Izbriši grupu"
+ }
+ },
+ "zone": {
+ "edit_zone": "Uredi zonu"
+ },
+ "zwave": {
+ "node_config": {
+ "set_config_parameter": "Подесите параметар Цонфиг"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "check_logs": "Više informacija potražite u evidencijama.",
+ "choose_inclusion_strategy": "Kako želite da dodate uređaj",
+ "enter_qr_code": "Unesite vrednost QR koda",
+ "provisioning_finished": "Uređaj je dodat. Kada ga uključite, postaće dostupan.",
+ "qr_code": "QR kôd",
+ "qr_code_paragraph": "Ako uređaj podržava SmartStart, možete da skenirate QR kôd radi lakog uparivanja.",
+ "scan_qr_code": "Skeniraj QR kôd",
+ "searching_device": "Traženje uređaja",
+ "select_camera": "Izaberite kameru"
+ },
+ "common": {
+ "back": "Nazad"
+ },
+ "dashboard": {
+ "not_ready": "{count} nije spremno",
+ "server_url": "URL adresa servera"
+ },
+ "device_info": {
+ "highest_security": "Najviša bezbednost",
+ "zwave_plus_version": "Verzija {verzija}"
+ },
+ "logs": {
+ "download_logs": "Preuzmi evidencije"
+ },
+ "provisioned": {
+ "included": "Uključeno",
+ "not_included": "Nije uključeno"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Nijedan"
+ }
+ }
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "statistics": {
+ "issues": {
+ "entity_no_longer_recorded": "Ovaj entitet se više ne snima.",
+ "no_state": "Nema dostupnog stanja za ovaj entitet."
+ }
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Nadgledanje pojedinačnih uređaja",
+ "energy_distribution_title": "Distribucija energije",
+ "energy_gas_graph_title": "Potrošnja gasa",
+ "energy_solar_graph_title": "Solarna proizvodnja",
+ "energy_sources_table_title": "Izvori",
+ "energy_usage_graph_title": "Korišćenje energije"
+ }
+ },
+ "lovelace": {
+ "cards": {
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "Ova kartica ukazuje na to koliko je energije koju je utrošio vaš dom generisano korišćenjem ne-fosilnih goriva kao što su solarna, vetar i nuklearna. Što više, to bolje!",
+ "non_fossil_energy_consumed": "Potrošena ne-fosilna energija",
+ "non_fossil_energy_not_calculated": "Potrošena ne-fosilna energija nije mogla biti izračunata"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Korišćenje energije"
+ },
+ "energy_distribution": {
+ "battery": "Baterija",
+ "gas": "Gas",
+ "go_to_energy_dashboard": "Idite na kontrolnu tablu za energiju",
+ "grid": "Mreža",
+ "home": "Kuća",
+ "non_fossil": "Ne-fosilna",
+ "solar": "Solarna",
+ "title_today": "Distribucija energije danas"
+ },
+ "energy_solar_graph": {
+ "forecast": "Prognoza {ime}",
+ "production": "Proizvodnja {ime}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Baterija ukupno",
+ "cost": "Cena",
+ "energy": "Energija",
+ "grid_total": "Mreža ukupno",
+ "source": "Izvor",
+ "total_costs": "Ukupna cena"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Kombinovano iz mreže",
+ "consumed_battery": "Potrošeno baterija",
+ "consumed_solar": "Potrošeno solarni",
+ "total_consumed": "Ukupno potrošeno {num} kWh",
+ "total_returned": "Ukupno vraćeno {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Ako je igla u ljubičastoj boji, vratili ste više energije u mrežu nego što ste konzumirali iz nje. Ako je u plavom, potrošili ste više energije iz mreže nego što ste vratili.",
+ "energy_dependency": "Ova kartica prikazuje vaše neto korišćenje energije.",
+ "grid_neutrality_not_calculated": "Nije moguće izračunati neutralnost mreže",
+ "net_consumed_grid": "Neto utrošeno iz mreže",
+ "net_returned_grid": "Neto vraćeno u mrežu",
+ "red_green_color_explain": "Ako je zelena, to znači da ste proizveli više energije nego što ste potrošili iz mreže. Ako je u crvenom, to znači da ste se oslanjali na mrežu za deo potrošnje energije vašeg doma."
+ },
+ "loading": "Učitavanje...",
+ "no_data": "Nema podataka za prikazivanje. Novim podacima može biti potrebno do 2 sata da stignu nakon što konfigurišete kontrolnu tablu za energiju.",
+ "no_data_period": "Nema podataka za ovaj period.",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "Ova kartica ukazuje na to koliko je solarne energije koju ste proizveli koristio vaš dom umesto da bude vraćen u mrežu.",
+ "card_indicates_solar_energy_used_charge_home_bat": "Ako je ovaj broj obično veoma nizak, što ukazuje na višak solarne proizvodnje, možda bi trebalo da razmislite o punjenju kućne baterije ili električnog automobila iz solarnih panela u vreme velike solarne proizvodnje.",
+ "not_produced_solar_energy": "Niste proizveli nikakvu solarnu energiju",
+ "self_consumed_solar_could_not_calc": "Samoutrošena solarna energija nije mogla biti izračunata",
+ "self_consumed_solar_energy": "Samoutrošena solarna energija"
+ }
+ },
+ "iframe": {
+ "error_secure_context": "Nije moguće učitati iframe koji pokazuju na Veb lokacije koristeći {target_protocol} ako je Home Assistant serviran preko {context_protocol}."
+ },
+ "map": {
+ "reset_focus": "Uspostavi početne vrednosti fokusa"
+ },
+ "picture-elements": {
+ "hold": "Придржи:",
+ "more_info": "Покажи више информација: {name}",
+ "navigate_to": "Отиђите на {location}",
+ "tap": "Додирни",
+ "toggle": "Укључи {name}"
+ },
+ "show_more_info": "Prikaži više informacija"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Dan",
+ "month": "Mesec",
+ "next": "Sledeći",
+ "previous": "Prethodni",
+ "today": "Danas",
+ "week": "Nedelja",
+ "year": "Godina"
+ }
+ },
+ "editor": {
+ "card": {
+ "area": {
+ "description": "Kartica \"Oblast\" automatski prikazuje entitete određene oblasti.",
+ "name": "Oblast",
+ "show_camera": "Prikaži snimak kamere umesto slike oblasti"
+ },
+ "weather-forecast": {
+ "show_both": "Prikaži trenutno vreme i prognozu",
+ "show_only_current": "Prikaži samo trenutno vreme",
+ "show_only_forecast": "Prikaži samo prognozu"
+ }
+ },
+ "edit_card": {
+ "move_down": "Premesti karticu nadole",
+ "move_up": "Premesti karticu na gore"
+ },
+ "select_view": {
+ "views_label": "Prikaz"
+ }
+ }
+ },
+ "map": {
+ "edit_zones": "Uredi zone"
+ },
+ "page-authorize": {
+ "store_token": "Drži me prijavljenog"
+ },
+ "page-onboarding": {
+ "integration": {
+ "finish": "Крај"
+ },
+ "user": {
+ "data": {
+ "password_confirm": "Потврда лозинке"
+ },
+ "error": {
+ "password_not_match": "Лозинке се не подударају"
+ }
+ }
+ },
+ "profile": {
+ "dashboard": {
+ "default_dashboard_label": "Pregled (podrazumevano)"
+ }
+ }
+ },
+ "sidebar": {
+ "hide_panel": "Sakrij tablu",
+ "show_panel": "Prikaži tablu"
+ }
+ }
+}
\ No newline at end of file
diff --git a/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/sv.json b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/sv.json
new file mode 100644
index 00000000..85999042
--- /dev/null
+++ b/nspanel-lovelace-ui/rootfs/usr/bin/mqtt-manager/libs/translations/frontend/sv.json
@@ -0,0 +1,4662 @@
+{
+ "config_entry": {
+ "disabled_by": {
+ "config_entry": "Konfigurationsvärde",
+ "device": "Enhet",
+ "integration": "Integration",
+ "user": "Användare"
+ }
+ },
+ "groups": {
+ "owner": "Ägare",
+ "system-admin": "Administratörer",
+ "system-read-only": "Användare med läsbehörighet",
+ "system-users": "Användare"
+ },
+ "panel": {
+ "calendar": "Kalender",
+ "config": "Konfiguration",
+ "developer_tools": "Utvecklarverktyg",
+ "energy": "Energi",
+ "history": "Historik",
+ "logbook": "Loggbok",
+ "mailbox": "Brevlåda",
+ "map": "Karta",
+ "media_browser": "Mediabläddrare",
+ "profile": "Profil",
+ "shopping_list": "Inköpslista",
+ "states": "Översikt"
+ },
+ "state": {
+ "default": {
+ "off": "Av",
+ "on": "På",
+ "unavailable": "Otillgänglig",
+ "unknown": "Okänd"
+ }
+ },
+ "state_attributes": {
+ "climate": {
+ "fan_mode": {
+ "auto": "Automatisk",
+ "off": "Av",
+ "on": "På"
+ },
+ "hvac_action": {
+ "cooling": "Kyler",
+ "drying": "Avfuktar",
+ "fan": "Fläkt",
+ "heating": "Värmer",
+ "idle": "Inaktiv",
+ "off": "Av"
+ },
+ "preset_mode": {
+ "activity": "Aktivitet",
+ "away": "Borta",
+ "boost": "Boost-läge",
+ "comfort": "Komfort",
+ "eco": "Eko",
+ "home": "Hemma",
+ "none": "Ingen",
+ "sleep": "Sover"
+ }
+ },
+ "humidifier": {
+ "mode": {
+ "auto": "Automatisk",
+ "away": "Borta",
+ "baby": "Baby",
+ "boost": "Boost-läge",
+ "comfort": "Komfort",
+ "eco": "Eco",
+ "home": "Hemma",
+ "normal": "Normal",
+ "sleep": "Viloläge"
+ }
+ }
+ },
+ "state_badge": {
+ "alarm_control_panel": {
+ "armed": "Larmat",
+ "armed_away": "Larmat",
+ "armed_custom_bypass": "Larmat",
+ "armed_home": "Larmat",
+ "armed_night": "Larmat",
+ "armed_vacation": "Larmat",
+ "arming": "Tillkopplar",
+ "disarmed": "Larma av",
+ "disarming": "Frånkopplar",
+ "pending": "Väntar",
+ "triggered": "Utlöst"
+ },
+ "default": {
+ "entity_not_found": "Entiteten hittades inte",
+ "error": "Fel",
+ "unavailable": "Otillgänglig",
+ "unknown": "Okänd"
+ },
+ "device_tracker": {
+ "home": "Hemma",
+ "not_home": "Borta"
+ },
+ "person": {
+ "home": "Hemma",
+ "not_home": "Borta"
+ }
+ },
+ "supervisor": {
+ "addon": {
+ "configuration": {
+ "audio": {
+ "default": "Standard",
+ "header": "Ljud",
+ "input": "Ingång",
+ "output": "Alternativ"
+ },
+ "network": {
+ "container": "Behållare",
+ "disabled": "Inaktiverad",
+ "header": "Nätverk",
+ "host": "Värd"
+ },
+ "no_configuration": "Det här tillägget exponerar ingen konfiguration som du kan pilla med...",
+ "options": {
+ "edit_in_ui": "Redigera i användargränssnittet",
+ "edit_in_yaml": "Redigera i YAML",
+ "header": "Alternativ",
+ "invalid_yaml": "Ogiltig YAML",
+ "show_unused_optional": "Visa oanvända valfria konfigurationsalternativ"
+ }
+ },
+ "dashboard": {
+ "action_error": {
+ "get_changelog": "Det gick inte att hämta ändringsloggen för tillägget",
+ "go_to_config": "Redigera konfiguration",
+ "install": "Kunde inte installera tillägg",
+ "restart": "Kunde inte starta om tillägg",
+ "start": "Kunde inte starta tillägg",
+ "start_invalid_config": "Gå till inställningar",
+ "stop": "Kunde inte stoppa tillägg",
+ "uninstall": "Kunde inte avinstallera tillägg",
+ "validate_config": "Det gick inte att verifiera tilläggskonfigurationen"
+ },
+ "capability": {
+ "apparmor": {
+ "description": "AppArmor (\"Application Armor\") är en säkerhetsmodul i Linux-kärnan som begränsar tilläggsfunktioner som nätverksåtkomst, obehandlad socketåtkomst och behörighet att läsa, skriva eller köra specifika filer.\n\nTilläggets skapare kan tillhandahålla sina säkerhetsprofiler, optimerade för tillägget eller begära att det inaktiveras. Om AppArmor inaktiveras kommer det att öka säkerhetsriskerna och har därför en negativ inverkan på säkerhetspoängen för tillägget.",
+ "title": "AppArmor"
+ },
+ "auth_api": {
+ "description": "Ett tillägg kan autentisera användare mot Home Assistant, vilket gör det möjligt för användare att logga in på program som körs inom tillägget med hjälp av deras användarnamn/lösenord för Home Assistant. Det här märket anger om tilläggets skapare begär den här funktionen.",
+ "title": "Home Assistant autentisering"
+ },
+ "docker_api": {
+ "description": "Tilläggets skapare har begärt att tillägget ska ha hanteringsåtkomst till Docker-instansen som körs på systemet. Det här läget ger tillägget full åtkomst och kontroll till hela Home Assistant-systemet, vilket medför säkerhetsrisker och kan skada ditt system om det missbrukas. På grund av detta påverkar den här funktionen tilläggets säkerhetspoäng negativt.\n\nDenna åtkomstnivå beviljas inte automatiskt och måste bekräftas av dig. För att göra detta måste du inaktivera skyddsläget på tillägget manuellt. Inaktivera bara skyddsläget om du känner till, behöver OCH litar på källan till det här tillägget.",
+ "title": "Full Docker-åtkomst"
+ },
+ "full_access": {
+ "description": "Det här tillägget får full åtkomst till maskinvaran i systemet på begäran av tilläggets skapare. Åtkomsten är jämförbar med det privilegierade läget i Docker. Eftersom detta öppnar upp möjliga säkerhetsrisker påverkar den här funktionen tilläggs säkerhetspoäng negativt.\n\nDenna åtkomstnivå beviljas inte automatiskt och måste bekräftas av dig. För att göra detta måste du inaktivera skyddsläget på tillägget manuellt. Inaktivera bara skyddsläget om du känner till, behöver OCH litar på källan till det här tillägget.",
+ "title": "Fullständig maskinvaruåtkomst"
+ },
+ "hassio_api": {
+ "description": "Tillägget gavs tillgång till Supervisor-API:et på begäran av tilläggets skapare. Som standard kan tillägget komma åt allmän versionsinformation i systemet. När tillägget begär åtkomst till API:et på \"chef\"- eller \"admin\"-nivå får det åtkomst till flera delar av Home Assistant-systemet. Den här behörigheten indikeras av det här märket och påverkar säkerhetspoängen för tillägget negativt.",
+ "title": "API-åtkomst för Supervisor"
+ },
+ "homeassistant_api": {
+ "description": "Det här tillägget får åtkomst till din pågående Home Assistant-instans direkt via API:et för Home Assistant. Det här läget hanterar också autentisering för tillägget, vilket gör att ett tillägg kan interagera med Home Assistant utan att behöva ytterligare autentiseringstoken.",
+ "title": "API-åtkomst för Home Assistant"
+ },
+ "host_network": {
+ "description": "Tillägg körs vanligtvis i sitt eget isolerade nätverkslager, vilket hindrar dem från att komma åt värdoperativsystemets nätverk. I vissa fall kan den här nätverksisoleringen begränsa tilläggen att tillhandahålla sina tjänster och därför kan isoleringen lyftas av tilläggets skapare, vilket ger tillägget full åtkomst till värddatorns nätverksfunktioner. Detta ger tillägget fler nätverksfunktioner men sänker säkerheten, därför sänks säkerhetsklassificeringen för tillägget när det här alternativet används av tillägget.",
+ "title": "Värdnätverk"
+ },
+ "host_pid": {
+ "description": "Vanligtvis är processerna som tillägget kör isolerade från alla andra systemprocesser. Tilläggets skapare har begärt att tillägget ska ha åtkomst till systemprocesserna som körs på värdsysteminstansen och även tillåta tillägget att skapa processer på värdsystemet. Det här läget ger tillägget full åtkomst och kontroll till hela Home Assistant-systemet, vilket ökar säkerhetsrisken och kan skada ditt system om det missbrukas. På grund av detta påverkar den här funktionen tilläggets säkerhetspoäng negativt.\n\nDenna åtkomstnivå beviljas inte automatiskt och måste bekräftas av dig. För att göra detta måste du inaktivera skyddsläget på tillägget manuellt. Inaktivera bara skyddsläget om du känner till, behöver OCH litar på källan till det här tillägget.",
+ "title": "Namnområde för värdprocesser"
+ },
+ "ingress": {
+ "description": "Det här tillägget använder Ingress för att på ett säkert sätt bädda in sitt gränssnitt i Home Assistant.",
+ "title": "Ingress"
+ },
+ "label": {
+ "apparmor": "apparmor",
+ "auth": "auth",
+ "core": "Inbyggt",
+ "docker": "docker",
+ "hardware": "hårdvara",
+ "hass": "hass",
+ "hassio": "hassio",
+ "host": "värd",
+ "host_pid": "värd pid",
+ "ingress": "ingress",
+ "rating": "poäng",
+ "stage": "läge"
+ },
+ "rating": {
+ "description": "Home Assistant ger en säkerhetsklassificering för vart och ett av tilläggen, vilket anger riskerna med att använda det här tillägget. Ju mer åtkomst ett tillägg kräver till ditt system, desto lägre poäng, vilket ökar de möjliga säkerhetsriskerna.\n\nEn poäng ges på en skala från 1 till 6, där 1 är den lägsta poängen (anses vara mest osäker och högst risk) och en poäng på 6 är den högsta poängen (anses vara säkrast och lägst risk).",
+ "title": "Tilläggets säkerhetsrating"
+ },
+ "role": {
+ "admin": "administratör",
+ "backup": "säkerhetskopia",
+ "default": "standard",
+ "homeassistant": "homeassistant",
+ "manager": "föreståndare"
+ },
+ "stage": {
+ "description": "Tillägg kan ha ett av tre lägen:\n\n{icon_stable} **Stabilt**: Det här är tillägg som är redo att användas i produktionen.\n\n{icon_experimental} **Experimentella**: Dessa kan innehålla buggar och kan vara ofärdiga.\n\n{icon_deprecated} **Inaktuella**: Dessa tillägg får inte längre några uppdateringar.",
+ "title": "Tilläggsläge"
+ },
+ "stages": {
+ "deprecated": "Utfasad",
+ "experimental": "Experimentell"
+ }
+ },
+ "changelog": "Ändringslogg",
+ "cpu_usage": "Tillägg CPU-användning",
+ "hostname": "Värdnamn",
+ "install": "installera",
+ "new_update_available": "{name} {version} är tillgänglig",
+ "not_available_arch": "Detta tillägg är inte kompatibelt med processorn eller operativsystemet som du har installerat i din enhet.",
+ "not_available_version": "Du kör Home Assistant {core_version_installed} , för att uppdatera till den här versionen av tillägget behöver du minst version {core_version_needed} av Home Assistant",
+ "open_web_ui": "Öppna webbgränssnitt",
+ "option": {
+ "auto_update": {
+ "description": "Uppdatera tillägget automatiskt när en ny version finns tillgänglig",
+ "title": "Uppdatera automatiskt"
+ },
+ "boot": {
+ "description": "Starta tillägget under en systemstart",
+ "title": "Starta vid systemstart"
+ },
+ "ingress_panel": {
+ "description": "Lägg till detta tillägg till ditt sidofält",
+ "title": "Visa i sidofältet"
+ },
+ "protected": {
+ "description": "Blockerar förhöjd systemåtkomst från tillägget",
+ "title": "Skyddsläge"
+ },
+ "watchdog": {
+ "description": "Detta kommer att starta tillägget om det kraschar",
+ "title": "Vakthund"
+ }
+ },
+ "protection_mode": {
+ "content": "Skyddsläget på det här tillägget är inaktiverat! Detta ger tillägget full åtkomst till hela systemet, vilket ökar säkerhetsriskerna och kan skada systemet när det används felaktigt. Inaktivera bara skyddsläget om du känner till, behöver OCH litar på källan till det här tillägget.",
+ "enable": "Aktivera",
+ "title": "Skyddsläget är inaktiverat!"
+ },
+ "ram_usage": "Tillägg RAM-användning",
+ "rebuild": "Bygg om",
+ "restart": "omstart",
+ "start": "starta",
+ "stop": "stoppa",
+ "uninstall": "avinstallera",
+ "visit_addon_page": "Besök sidan {name} för fler detaljer"
+ },
+ "documentation": {
+ "get_documentation": "Det gick inte att hämta tilläggsdokumentationen, {error}"
+ },
+ "failed_to_reset": "Det gick inte att återställa tilläggskonfigurationen, {error}",
+ "failed_to_save": "Det gick inte att spara tilläggskonfigurationen, {error}",
+ "logs": {
+ "get_logs": "Kunde inte hämta loggar för tillägg {error}"
+ },
+ "panel": {
+ "configuration": "Inställningar",
+ "documentation": "Dokumentation",
+ "info": "Info",
+ "log": "Logg"
+ },
+ "state": {
+ "installed": "Add-on är installerad",
+ "not_available": "Add-on är inte tillgänglig på ditt system",
+ "not_installed": "Add-on är inte installerad"
+ }
+ },
+ "backup": {
+ "addons": "Tillägg",
+ "confirm_password": "Bekräfta lösenord för säkerhetskopia",
+ "could_not_create": "Kunde inte skapa säkerhetskopia",
+ "create": "Skapa",
+ "create_backup": "Skapa säkerhetskopia",
+ "create_blocked_not_running": "Det är inte möjligt att skapa en säkerhetskopia just nu då systemet är i {state} läge.",
+ "created": "Skapad",
+ "delete_backup_confirm": "radera",
+ "delete_backup_text": "Vill du radera {number} {number, plural,\n one {säkerhetskopia}\n other {säkerhetskopior}\n}?",
+ "delete_backup_title": "Radera säkerhetskopia",
+ "delete_selected": "Ta bort valda säkerhetskopior",
+ "enter_password": "Vänligen ange ett lösenord.",
+ "failed_to_delete": "Misslyckades med radering",
+ "folders": "Mappar",
+ "full_backup": "Fullständig säkerhetskopia",
+ "name": "Namn",
+ "no_backups": "Du har inga säkerhetskopior ännu.",
+ "partial_backup": "Partiell säkerhetskopia",
+ "password": "Lösenord",
+ "password_protection": "Lösenordsskydd",
+ "passwords_not_matching": "Lösenorden matchar inte",
+ "select_type": "Välj vad som ska återställas",
+ "selected": "{number} valda",
+ "size": "Storlek",
+ "type": "Typ",
+ "upload_backup": "Ladda upp säkerhetskopia"
+ },
+ "common": {
+ "cancel": "Avbryt",
+ "close": "Stäng",
+ "description": "Beskrivning",
+ "error": {
+ "unknown": "Okänt fel",
+ "update_failed": "Uppdatering misslyckades"
+ },
+ "failed_to_restart_name": "Kunde inte starta om {name}",
+ "failed_to_update_name": "Kunde inte uppdatera {name}",
+ "learn_more": "Läs mer",
+ "menu": "Meny",
+ "new_version_available": "Ny version tillgänglig",
+ "newest_version": "Senaste version",
+ "no": "Nej",
+ "refresh": "Uppdatera",
+ "release_notes": "Versionsanteckningar",
+ "reload": "Ladda om",
+ "reset_defaults": "Nollställ till standard",
+ "reset_options": "Nollställ alternativ",
+ "restart": "Starta om",
+ "restart_name": "Starta om {name}",
+ "review": "granska",
+ "running_version": "Du kör för närvarande version {version}",
+ "save": "Spara",
+ "show": "visa",
+ "show_more": "Visa mer information om detta",
+ "update": "Uppdatera",
+ "update_available": "{count, plural,\n one {uppdatering}\n other {{count} uppdateringar}\n} väntar",
+ "version": "Version",
+ "yes": "Ja"
+ },
+ "confirm": {
+ "reset_options": {
+ "text": "Är du säker på att du vill nollställa alla alternativ?",
+ "title": "Nollställ alternativ"
+ },
+ "restart": {
+ "text": "Är du säker på att du vill starta om {name}",
+ "title": "Starta om {name}"
+ },
+ "update": {
+ "text": "Är du säker på att du vill uppdatera {name} till version {version}?",
+ "title": "Uppdatera {name}"
+ }
+ },
+ "dashboard": {
+ "addon_new_version": "Ny version tillgänglig",
+ "addon_running": "Add-on körs",
+ "addon_stopped": "Tillägget har stoppats",
+ "addons": "Installerade add-ons",
+ "no_addons": "Du har inga tillägg installerade ännu. Gå till tilläggsbutiken för att komma igång!"
+ },
+ "dialog": {
+ "datadisk_move": {
+ "cancel": "Avbryt",
+ "description": "Du använder för närvarande ''{current_path} '' som datadisk. Om du flyttar datadiskar startas din enhet om och det beräknas ta {time} minuter. Din Home Assistant-installation kommer inte att vara tillgänglig under denna period. Koppla inte bort strömmen under denna flytt!",
+ "loading_devices": "Laddar enheter",
+ "move": "Flytta",
+ "moving": "Flyttar datadisk",
+ "moving_desc": "Startar om och flyttar datadisk. Ha tålamod",
+ "no_devices": "Inga lämpliga anslutna enheter hittades",
+ "select_device": "Välj ny datadisk",
+ "title": "Flytta datadisk"
+ },
+ "hardware": {
+ "attributes": "Attribut",
+ "device_path": "Enhetens sökväg",
+ "id": "ID",
+ "search": "Sök efter hårdvara",
+ "subsystem": "Delsystem",
+ "title": "Hårdvara"
+ },
+ "network": {
+ "connected_to": "Ansluten till {ssid}",
+ "dhcp": "DHCP",
+ "disabled": "Inaktiverad",
+ "dns_servers": "DNS-servrar",
+ "failed_to_change": "Kunde inte ändra nätverksinställningar",
+ "gateway": "Gateway-adress",
+ "ip_netmask": "IP-adress/Nätmask",
+ "open": "Öppet",
+ "scan_ap": "Sök efter åtkomstpunkter",
+ "static": "Statisk",
+ "title": "Nätverksinställningar",
+ "unsaved": "Du har ändringar som inte sparats, dessa kommer gå förlorade om du byter tabbar, vill du fortsätta?",
+ "warning": "Om du ändrar Wi-Fi-, IP- eller gateway-adresserna kan du förlora anslutningen!",
+ "wep": "WEP",
+ "wpa": "wpa-psk"
+ },
+ "registries": {
+ "add_new_registry": "Lägg till nytt register",
+ "add_registry": "Lägg till register",
+ "failed_to_add": "Kunde inte lägga till register",
+ "failed_to_remove": "Kunde inte ta bort register",
+ "no_registries": "Inga register konfigurerade",
+ "password": "Lösenord",
+ "registry": "Register",
+ "remove": "Ta bort",
+ "title_add": "Lägg till nytt behållarregister",
+ "title_manage": "Hantera behållarregister",
+ "username": "Användarnamn"
+ },
+ "repositories": {
+ "add": "Lägg till",
+ "remove": "Ta bort",
+ "title": "Hantera resurser för tillägg",
+ "used": "Förrådet används för installerade tillägg och kan inte tas bort."
+ },
+ "restart_addon": {
+ "confirm_text": "Starta om tillägget",
+ "text": "Vill du starta om tillägget med dina ändringar?"
+ },
+ "update": {
+ "backup": "Säkerhetskopia",
+ "create_backup": "Skapa en säkerhetskopia av {name} före uppdatering",
+ "creating_backup": "Skapa säkerhetskopia av {name}",
+ "updating": "Uppdaterar {name} till version {version}"
+ }
+ },
+ "my": {
+ "error": "Ett okänt fel inträffade",
+ "error_addon_no_ingress": "Det begärda tillägget stöder inte ingress",
+ "error_addon_not_found": "Tillägget hittades inte",
+ "error_addon_not_installed": "Det begärda tillägget är inte installerat. Installera det först",
+ "error_addon_not_started": "Det begärda tillägget körs inte. Starta det först",
+ "faq_link": "Mitt Home Assistant FAQ",
+ "not_supported": "Denna omdirigering stöds inte av din Home Assistant-instans. Kontrollera {link} för vilka omdirigeringar som stöds och i vilken version de introducerades."
+ },
+ "panel": {
+ "addons": "Tillägg",
+ "backups": "Säkerhetskopior",
+ "dashboard": "Kontrollpanel",
+ "store": "Tilläggsbutik",
+ "system": "System"
+ },
+ "store": {
+ "check_updates": "Sök efter uppdateringar",
+ "missing_addons": "Saknar du tillägg? Aktivera avancerat läge på sidan för användarprofilen",
+ "no_results_found": "Inga resultat hittades i {repository}.",
+ "registries": "Register",
+ "repositories": "Resurser"
+ },
+ "system": {
+ "core": {
+ "cpu_usage": "Grundläggande CPU-användning",
+ "ram_usage": "Grundläggande RAM-användning"
+ },
+ "host": {
+ "change": "Ändra",
+ "change_hostname": "Ändra värdnamn",
+ "confirm_reboot": "Är du säker på att du vill starta om värden?",
+ "confirm_shutdown": "Är du säker på att du vill stänga ner värden?",
+ "deployment": "Distribution",
+ "docker_version": "Dockerversion",
+ "emmc_lifetime_used": "eMMC Livstid använd",
+ "failed_to_get_hardware_list": "Kunde inte hämta hårdvarulistan",
+ "failed_to_import_from_usb": "Kunde inte importera från USB",
+ "failed_to_move": "Flyttning av datadisk misslyckades",
+ "failed_to_reboot": "Kunde inte starta om värden",
+ "failed_to_set_hostname": "Kunde inte sätta värdnamn",
+ "failed_to_shutdown": "Kunde inte stänga ner värden",
+ "hardware": "Hårdvara",
+ "hostname": "Värdnamn",
+ "import_from_usb": "Importera från USB",
+ "ip_address": "IP-adress",
+ "move_datadisk": "Flytta datadisk",
+ "new_hostname": "Vänligen skriv in ett nytt värdnamn",
+ "operating_system": "Operativsystem",
+ "reboot_host": "Starta om värd",
+ "shutdown_host": "Stäng ner värd",
+ "used_space": "Använt utrymme"
+ },
+ "log": {
+ "get_logs": "Kunde inte hämta {provider} loggar, {error}",
+ "log_provider": "Loggleverantör"
+ },
+ "supervisor": {
+ "beta_backup": "Se till att du har säkerhetskopior av dina data innan du aktiverar den här funktionen.",
+ "beta_join_confirm": "Vill du gå med i betakanalen?",
+ "beta_release_items": "Detta inkluderar betaversioner för:",
+ "beta_warning": "Betaversioner är för testare och de som vill vara först med nya funktioner men kan innehålla instabila kodändringar",
+ "channel": "Kanal",
+ "cpu_usage": "Supervisor CPU-användning",
+ "failed_to_reload": "Kunde inte ladda om Supervisor",
+ "failed_to_set_option": "Det gick inte att ställa in Supervisor-alternativet",
+ "failed_to_update": "Kunde inte uppdatera Supervisor",
+ "join_beta_action": "Gå med i betakanalen",
+ "join_beta_description": "Få betauppdateringar för Home Assistant (RCs), Supervisor och värd",
+ "leave_beta_action": "Lämna betakanalen",
+ "leave_beta_description": "Få stabila uppdateringar för Home Assistant, Supervisor och värd",
+ "ram_usage": "Supervisor RAM-användning",
+ "reload_supervisor": "Ladda om Supervisor",
+ "search": "Sök",
+ "share_diagnostics": "Dela diagnostik",
+ "share_diagnostics_description": "Dela kraschrapporter och diagnostisk information.",
+ "share_diagonstics_description": "Vill du automatiskt dela kraschrapporter och diagnostikinformation när Supervisorn upptäcker oväntade fel? {line_break} Det hjälper oss att fixa problem. Informationen är bara åtkomlig för Home Assistants Core team och kommer inte delas med andra.{line_break} Datat inkluderar inte någon privat/känslig information och du kan stänga av delningen när du vill under inställningar.",
+ "share_diagonstics_title": "Hjälp till att förbättra Home Assistant",
+ "unhealthy_description": "Att köra en ohälsosam installation kan orsaka problem. Nedan är en lista med problem som hittats med din installation, klicka på länkarna för att lära dig hur du kan lösa problemen.",
+ "unhealthy_reason": {
+ "docker": "Docker-miljön fungerar inte korrekt",
+ "privileged": "Supervisor är inte privilegierad",
+ "setup": "Installationen av Supervisor misslyckades",
+ "supervisor": "Supervisor kunde inte uppdatera",
+ "untrusted": "Upptäckte opålitligt innehåll"
+ },
+ "unhealthy_title": "Din installation är ohälsosam",
+ "unsupported_description": "Nedan är en lista med problem som hittats med din installation, klicka på länkarna för att lära dig hur du kan lösa problemen.",
+ "unsupported_reason": {
+ "apparmor": "AppArmor är inte aktiverat på värden",
+ "container": "Behållare känd för att orsaka problem",
+ "content-trust": "Validering av innehållstillförlitlighet är inaktiverad",
+ "content_trust": "Validering av innehållstillförlitlighet är inaktiverad",
+ "dbus": "DBUS",
+ "docker_configuration": "Docker-konfiguration",
+ "docker_version": "Docker-version",
+ "job_conditions": "Ignorerade arbetsvillkor",
+ "lxc": "LXC",
+ "network_manager": "Nätverkshanteraren",
+ "os": "Operativsystem",
+ "os_agent": "OS-agent",
+ "privileged": "Supervisor är inte privilegierad",
+ "software": "Programvara som inte stöds har upptäckts",
+ "source_mods": "Källändringar",
+ "systemd": "Systemd"
+ },
+ "unsupported_title": "Du kör en installation som inte stöds",
+ "update_supervisor": "Uppdatera Supervisor",
+ "warning": "VARNING"
+ }
+ },
+ "update_available": {
+ "core_note": "Supervisor kommer att återgå till version {version} om din instans inte startar efter uppdateringen.",
+ "create_backup": "Skapa säkerhetskopia innan du uppdaterar",
+ "creating_backup": "Skapar säkerhetskopia av {name}",
+ "description": "Du har installerat {version}. Klicka på uppdatera för att uppdatera till version {newest_version}",
+ "no_update": "Ingen uppdatering tillgänglig för {name}",
+ "open_release_notes": "Öppna versionsanteckningar",
+ "update_name": "Uppdatera {name}",
+ "updating": "Uppdaterar {name} till version {version}"
+ }
+ },
+ "ui": {
+ "auth_store": {
+ "ask": "Vill du fortsätta vara inloggad?",
+ "confirm": "Ja",
+ "decline": "Nej"
+ },
+ "card": {
+ "alarm_control_panel": {
+ "arm_away": "Larma bortaläge",
+ "arm_custom_bypass": "Larm förbikopplat",
+ "arm_home": "Larma hemmaläge",
+ "arm_night": "Larma nattläge",
+ "arm_vacation": "Larma semesterläge",
+ "clear_code": "Rensa",
+ "code": "Kod",
+ "disarm": "Larma från"
+ },
+ "area": {
+ "area_not_found": "Området hittades inte."
+ },
+ "automation": {
+ "last_triggered": "Utlöstes senast",
+ "trigger": "Kör"
+ },
+ "button": {
+ "press": "Tryck"
+ },
+ "camera": {
+ "not_available": "Bilden är inte tillgänglig"
+ },
+ "climate": {
+ "aux_heat": "Underhållsvärme",
+ "away_mode": "Bortaläge",
+ "cooling": "{name} kyler",
+ "current_temperature": "{name} aktuell temperatur",
+ "currently": "Nuvarande",
+ "fan_mode": "Fläktläge",
+ "heating": "{name} värmer",
+ "high": "hög",
+ "low": "låg",
+ "on_off": "På / av",
+ "operation": "Driftläge",
+ "preset_mode": "Förinställning",
+ "swing_mode": "Svepläge",
+ "target_humidity": "Önskad luftfuktighet",
+ "target_temperature": "Önskad temperatur",
+ "target_temperature_entity": "{name} måltemperatur",
+ "target_temperature_mode": "{name} måltemperatur {mode}"
+ },
+ "counter": {
+ "actions": {
+ "decrement": "minska",
+ "increment": "öka",
+ "reset": "återställ"
+ }
+ },
+ "cover": {
+ "position": "Position",
+ "tilt_position": "Tilt position"
+ },
+ "fan": {
+ "direction": "Riktning",
+ "forward": "Framåt",
+ "oscillate": "Pendlar",
+ "preset_mode": "Förinställt läge",
+ "reverse": "Baklänges",
+ "speed": "Hastighet"
+ },
+ "humidifier": {
+ "humidity": "Målfuktighet",
+ "mode": "Läge",
+ "on_entity": "{name} på",
+ "target_humidity_entity": "{name} målfuktighet"
+ },
+ "light": {
+ "brightness": "Ljusstyrka",
+ "cold_white_value": "Kallvit ljusstyrka",
+ "color_brightness": "Färgens ljusstyrka",
+ "color_temperature": "Färgtemperatur",
+ "effect": "Effekt",
+ "warm_white_value": "Varmvit ljusstyrka",
+ "white_value": "Vitt värde"
+ },
+ "lock": {
+ "code": "Kod",
+ "lock": "Lås",
+ "unlock": "Lås upp"
+ },
+ "media_player": {
+ "browse_media": "Bläddra bland media",
+ "media_next_track": "Nästa",
+ "media_pause": "Pausa",
+ "media_play": "Spela",
+ "media_play_pause": "Spela/pausa",
+ "media_previous_track": "Föregående",
+ "media_stop": "Stoppa",
+ "media_volume_down": "Sänk volymen",
+ "media_volume_mute": "Volym avstängd",
+ "media_volume_unmute": "Slå på volymen",
+ "media_volume_up": "Höj volymen",
+ "nothing_playing": "Inget spelas",
+ "sound_mode": "Ljudläge",
+ "source": "Källa",
+ "text_to_speak": "Text till tal",
+ "turn_off": "Stäng av",
+ "turn_on": "Sätt på"
+ },
+ "persistent_notification": {
+ "dismiss": "Avfärda"
+ },
+ "scene": {
+ "activate": "Aktivera"
+ },
+ "script": {
+ "cancel": "Avbryt",
+ "cancel_multiple": "Avbryt {number}",
+ "run": "Kör"
+ },
+ "service": {
+ "run": "Kör"
+ },
+ "timer": {
+ "actions": {
+ "cancel": "avbryt",
+ "finish": "slutför",
+ "pause": "pausa",
+ "start": "starta"
+ }
+ },
+ "vacuum": {
+ "actions": {
+ "resume_cleaning": "Fortsätt städning",
+ "return_to_base": "Återgå till docka",
+ "start_cleaning": "Börja städning",
+ "turn_off": "Stäng av",
+ "turn_on": "Starta"
+ }
+ },
+ "water_heater": {
+ "away_mode": "Bortaläge",
+ "currently": "Nuvarande",
+ "on_off": "På / av",
+ "operation": "Operation",
+ "target_temperature": "Måltemperatur"
+ },
+ "weather": {
+ "attributes": {
+ "air_pressure": "Lufttryck",
+ "humidity": "Luftfuktighet",
+ "precipitation": "Prognos",
+ "temperature": "Temperatur",
+ "visibility": "Sikt",
+ "wind_speed": "Vindhastighet"
+ },
+ "cardinal_direction": {
+ "e": "O",
+ "ene": "ONO",
+ "ese": "OSO",
+ "n": "N",
+ "ne": "NO",
+ "nne": "NNO",
+ "nnw": "NNV",
+ "nw": "NV",
+ "s": "S",
+ "se": "SO",
+ "sse": "SSO",
+ "ssw": "SSV",
+ "sw": "SV",
+ "w": "V",
+ "wnw": "VNV",
+ "wsw": "VSV"
+ },
+ "day": "Dag",
+ "forecast": "Prognos",
+ "high": "Hög",
+ "low": "Låg",
+ "night": "Natt"
+ }
+ },
+ "common": {
+ "and": "och",
+ "back": "Tillbaka",
+ "cancel": "Avbryt",
+ "clear": "Rensa",
+ "close": "Stäng",
+ "continue": "Fortsätt",
+ "copied": "Kopierad",
+ "copied_clipboard": "Kopierat till urklipp",
+ "delete": "Radera",
+ "disable": "Inaktivera",
+ "enable": "Aktivera",
+ "error_required": "Krävs",
+ "help": "Hjälp",
+ "leave": "Lämna",
+ "loading": "Läser in",
+ "menu": "Meny",
+ "move": "Flytta",
+ "next": "Nästa",
+ "no": "Nej",
+ "not_now": "Inte nu",
+ "overflow_menu": "Överflödesmeny",
+ "previous": "Föregående",
+ "refresh": "Uppdatera",
+ "remove": "Ta bort",
+ "rename": "Döp om",
+ "save": "Spara",
+ "skip": "Hoppa över",
+ "stay": "Stanna kvar",
+ "submit": "Skicka in",
+ "successfully_deleted": "Har raderats",
+ "successfully_saved": "Inställningar sparades",
+ "undo": "Ångra",
+ "yes": "Ja"
+ },
+ "components": {
+ "addon-picker": {
+ "addon": "Add-on",
+ "error": {
+ "fetch_addons": {
+ "description": "Ett fel uppstod vid hämtning av tillägg.",
+ "title": "Fel vid hämtning av tillägg"
+ },
+ "no_supervisor": {
+ "description": "Tillägg stöds inte.",
+ "title": "Ingen Supervisor"
+ }
+ }
+ },
+ "area-picker": {
+ "add_dialog": {
+ "add": "Lägg till",
+ "failed_create_area": "Det gick inte att skapa område.",
+ "name": "Namn",
+ "text": "Ange namnet på det nya området.",
+ "title": "Lägg till nytt område"
+ },
+ "add_new": "Lägg till nytt område …",
+ "area": "Område",
+ "clear": "Rensa",
+ "no_areas": "Du har inga områden",
+ "no_match": "Inga matchande områden hittades",
+ "show_areas": "Visa områden"
+ },
+ "attributes": {
+ "expansion_header": "Attribut"
+ },
+ "blueprint-picker": {
+ "add_user": "Lägg till användare",
+ "remove_user": "Ta bort användare",
+ "select_blueprint": "Ta bort blueprint"
+ },
+ "calendar": {
+ "my_calendars": "Mina Kalendrar",
+ "today": "Idag"
+ },
+ "data-table": {
+ "clear": "Rensa",
+ "filtering_by": "Filtrera efter",
+ "hidden": "{nummer} dold",
+ "no-data": "Ingen data",
+ "search": "Sök"
+ },
+ "date-range-picker": {
+ "end_date": "Slutdatum",
+ "ranges": {
+ "last_week": "Föregående vecka",
+ "this_week": "Denna vecka",
+ "today": "Idag",
+ "yesterday": "Igår"
+ },
+ "select": "Välj",
+ "start_date": "Startdatum"
+ },
+ "device-picker": {
+ "clear": "Rensa",
+ "device": "Enhet",
+ "no_area": "Inget område",
+ "no_devices": "Du har inga enheter",
+ "no_match": "Inga matchande enheter hittades",
+ "show_devices": "Visa enheter",
+ "toggle": "Växla"
+ },
+ "entity": {
+ "entity-attribute-picker": {
+ "attribute": "Attribut",
+ "show_attributes": "Visa attribut"
+ },
+ "entity-picker": {
+ "clear": "Rensa",
+ "edit": "Redigera",
+ "entity": "Entitet",
+ "no_match": "Inga matchande entiteter hittades",
+ "show_entities": "Visa entiteter"
+ }
+ },
+ "history_charts": {
+ "history_disabled": "Integrationen Historik är inaktiverad",
+ "loading_history": "Laddar historik…",
+ "no_history_found": "Ingen historik hittad."
+ },
+ "logbook": {
+ "by": "av",
+ "by_service": "efter tjänst",
+ "entries_not_found": "Inga event hittades i loggboken.",
+ "messages": {
+ "became_unavailable": "blev otillgänglig",
+ "changed_to_state": "ändrades till {state}",
+ "cleared_device_class": "rensat (ingen {device_class} upptäckt)",
+ "cleared_tampering": "manipulering upphört",
+ "detected_device_class": "upptäckt {device_class}",
+ "detected_tampering": "upptäckte manipulering",
+ "is_closing": "stängs",
+ "is_opening": "öppnas",
+ "rose": "gick upp",
+ "set": "gick ned",
+ "turned_off": "slogs av",
+ "turned_on": "slogs på",
+ "was_at_home": "var hemma",
+ "was_at_state": "var vid {state}",
+ "was_away": "var borta",
+ "was_closed": "stängdes",
+ "was_connected": "anslöts",
+ "was_disconnected": "kopplades ifrån",
+ "was_locked": "låstes",
+ "was_low": "var låg",
+ "was_normal": "var normal",
+ "was_opened": "öppnades",
+ "was_plugged_in": "kopplades in",
+ "was_safe": "var säker",
+ "was_unlocked": "låstes upp",
+ "was_unplugged": "kopplades ur",
+ "was_unsafe": "var osäker"
+ },
+ "retrieval_error": "Kunde inte ladda loggboken",
+ "show_trace": "Visa spårning"
+ },
+ "media-browser": {
+ "audio_not_supported": "Mediaspelaren i webbläsaren stödjer inte denna typ av musikmedia.",
+ "choose_player": "Välj spelare",
+ "class": {
+ "album": "Album",
+ "app": "App",
+ "artist": "Artist",
+ "channel": "Kanal",
+ "composer": "Kompositör",
+ "contributing_artist": "Bidragande Artist",
+ "directory": "Bibliotek",
+ "episode": "Avsnitt",
+ "game": "Spel",
+ "genre": "Genre",
+ "image": "Bild",
+ "movie": "Film",
+ "music": "Musik",
+ "playlist": "Spellista",
+ "podcast": "Podcast",
+ "season": "Säsong",
+ "track": "Spår",
+ "tv_show": "TV program",
+ "url": "URL",
+ "video": "Video"
+ },
+ "documentation": "dokumentation",
+ "learn_adding_local_media": "Läs mer om hur du lägger till media i {documentation} .",
+ "local_media_files": "Placera dina video-, ljud- och bildfiler i mediekatalogen för att kunna bläddra och spela upp dem i webbläsaren eller på mediaspelare som stöds.",
+ "media-player-browser": "Bläddrare för mediaspelare",
+ "media_browsing_error": "Fel vid mediebläddring",
+ "media_not_supported": "Mediaspelaren i webbläsaren stödjer inte denna typ av media",
+ "media_player": "Mediaspelare",
+ "no_items": "Inga objekt",
+ "no_local_media_found": "Ingen lokal media hittades",
+ "no_media_folder": "Det verkar som att du ännu inte har skapat en mediekatalog.",
+ "pick": "Välj",
+ "pick-media": "Välj media",
+ "play": "Spela",
+ "play-media": "Spela media",
+ "setup_local_help": "Kontrollera {documentation} om hur du ställer in lokala medier.",
+ "video_not_supported": "Mediaspelaren i webbläsaren stödjer inte denna typ av videomedia.",
+ "web-browser": "Webbläsare"
+ },
+ "picture-upload": {
+ "label": "Bild",
+ "unsupported_format": "Formatet stöds inte, vänligen välj en JPEG, PNG eller GIF-bild."
+ },
+ "qr-scanner": {
+ "enter_qr_code": "Ange värdet för QR-koden",
+ "manual_input": "Du kan skanna QR-koden med en annan QR-skanner och klistra in koden i fältet nedan",
+ "not_supported": "Din webbläsare stöder inte QR-skanning.",
+ "only_https_supported": "Du kan bara använda din kamera för att skanna en QR-kod när du använder HTTPS.",
+ "select_camera": "Välj kamera"
+ },
+ "related-filter-menu": {
+ "filter": "Filtrera",
+ "filter_by_area": "Filtrera efter område",
+ "filter_by_device": "Filtrera efter enhet",
+ "filter_by_entity": "Filtrera efter entitet",
+ "filtered_by_area": "område: {area_name}",
+ "filtered_by_device": "enheter: {device_name}",
+ "filtered_by_entity": "entitet: {entity_name}"
+ },
+ "related-items": {
+ "area": "Område",
+ "automation": "Del av följande automatiseringar",
+ "device": "Enhet",
+ "entity": "Relaterade entiteter",
+ "group": "Del av följande grupper",
+ "integration": "Integration",
+ "no_related_found": "Inga relaterade objekt hittades.",
+ "scene": "Del av följande scenarier",
+ "script": "Del av följande skript"
+ },
+ "relative_time": {
+ "duration": {
+ "day": "{count} {count, plural,\none {dag}\nother {dagar}\n}",
+ "hour": "{count} {count, plural,\n one {timme}\n other {timmar}\n}",
+ "minute": "{count} {count, plural,\n one {minut}\n other {minuter}\n}",
+ "second": "{count} {count, plural,\n one {sekund}\n other {sekunder}\n}",
+ "week": "{count} {count, plural,\none {vecka}\nother {veckor}\n}"
+ },
+ "future_duration": {
+ "day": "Om {count} {count, plural,\n one {dag}\n other {dagar}\n}",
+ "hour": "Om {count} {count, plural,\n one {timme}\n other {timmar}\n}",
+ "minute": "Om {count} {count, plural,\n one {minut}\n other {minuter}\n}",
+ "second": "Om {count} {count, plural,\n one {sekund}\n other {sekunder}\n}",
+ "week": "Om {count} {count, plural,\n one {vecka}\n other {veckor}\n}"
+ },
+ "just_now": "Nyss",
+ "never": "Aldrig",
+ "past_duration": {
+ "day": "{count} {count, plural,\n one {dag}\n other {dagar}\n} sedan",
+ "hour": "{count} {count, plural,\n one {timme}\n other {timmar}\n} sedan",
+ "minute": "{count} {count, plural,\n one {minut}\n other {minuter}\n} sedan",
+ "second": "{count} {count, plural,\n one {sekund}\n other {sekunder}\n} sedan",
+ "week": "{count} {count, plural,\n one {vecka}\n other {veckor}\n} sedan"
+ }
+ },
+ "service-control": {
+ "integration_doc": "Dokumentation av integration",
+ "required": "Det här fältet krävs",
+ "service_data": "Servicedata",
+ "target": "Mål",
+ "target_description": "Vad ska denna tjänst använda som målområden, enheter eller entiteter?"
+ },
+ "service-picker": {
+ "service": "Tjänst"
+ },
+ "statistic-picker": {
+ "learn_more": "Lär dig mer om statistik",
+ "missing_entity": "Varför är min entitet inte listad?",
+ "no_match": "Ingen matchande statistik hittades",
+ "no_statistics": "Du har ingen statistik",
+ "statistic": "Statistisk"
+ },
+ "statistics_charts": {
+ "loading_statistics": "Läser in statistik …",
+ "no_statistics_found": "Ingen statistik hittades.",
+ "statistic_types": {
+ "max": "max",
+ "mean": "medel",
+ "min": "min",
+ "sum": "summa"
+ }
+ },
+ "target-picker": {
+ "add_area_id": "Välj område",
+ "add_device_id": "Välj enhet",
+ "add_entity_id": "Välj entitet",
+ "expand": "Expandera",
+ "expand_area_id": "Expandera detta område med de separata enheter och entiteter.",
+ "expand_device_id": "Expandera den här enheten i separata entiteter.",
+ "remove": "Ta bort",
+ "remove_area_id": "Ta bort området",
+ "remove_device_id": "Ta bort enheten",
+ "remove_entity_id": "Ta bort entiteten"
+ },
+ "user-picker": {
+ "add_user": "Lägg till användare",
+ "no_user": "Ingen användare",
+ "remove_user": "Ta bort användare"
+ }
+ },
+ "dialogs": {
+ "config_entry_system_options": {
+ "enable_new_entities_description": "Om nyupptäckta enheter för {integration} ska läggas till automatiskt.",
+ "enable_new_entities_label": "Aktivera nyligen tillagda enheter.",
+ "enable_polling_description": "Om Home Assistant automatiskt ska polla {integration}-entiteter efter uppdateringar.",
+ "enable_polling_label": "Aktivera polling efter uppdateringar.",
+ "restart_home_assistant": "Du måste starta om Home Assistant för att ändringarna ska träda i kraft.",
+ "title": "Systeminställningar för {integration}",
+ "update": "Uppdatera"
+ },
+ "domain_toggler": {
+ "reset_entities": "Återställ entiteter",
+ "title": "Växla domäner"
+ },
+ "entity_registry": {
+ "control": "Kontrollera",
+ "customize_link": "entitetsanpassningar",
+ "dismiss": "Avfärda",
+ "editor": {
+ "advanced": "Avancerade inställningar",
+ "area": "Ange endast entitetsområde",
+ "area_note": "Som standard har entiteterna som tillhör en enhet samma område som enheten. Om du ändrar området för denna entitet kommer den inte längre att använda enhetens område.",
+ "change_device_area": "Ändra område för enhet",
+ "confirm_delete": "Är du säker på att du vill ta bort den här entiteten?",
+ "delete": "Radera",
+ "device_class": "Visa som",
+ "device_classes": {
+ "binary_sensor": {
+ "door": "Dörr",
+ "garage_door": "Garageport",
+ "opening": "Övriga",
+ "window": "Fönster"
+ },
+ "cover": {
+ "door": "Dörr",
+ "garage": "Garageport",
+ "window": "Fönster"
+ }
+ },
+ "device_disabled": "Enheten för den här entiteten är inaktiverad.",
+ "enabled_cause": "Inaktiverad på grund av {cause}.",
+ "enabled_delay_confirm": "De aktiverade enheterna läggs till i Home Assistant om {delay} sekunder",
+ "enabled_description": "Inaktiverade entiteter kommer inte att läggas till i Home Assistant.",
+ "enabled_label": "Aktivera entitet",
+ "enabled_restart_confirm": "Starta om Home Assistant för att slutföra aktiveringen av enheterna",
+ "entity_id": "Entitets-ID",
+ "follow_device_area": "Följ enhets område",
+ "icon": "Ikon",
+ "icon_error": "Ikoner ska vara i formatet 'prefix:ikonnamn', t.ex. 'mdi:home'",
+ "name": "Namn",
+ "note": "Obs: detta kanske inte fungerar ännu med alla integrationer.",
+ "open_device_settings": "Öppna enhetsinställningar",
+ "unavailable": "Den här entiteten är otillgänglig.",
+ "update": "Uppdatera"
+ },
+ "faq": "dokumentation",
+ "info_customize": "Du kan skriva över vissa attribut i avsnittet {customize_link}.",
+ "no_unique_id": "Den här entiteten (\"{entity_id}\") har inget unikt ID, därför kan den inte hanteras från användargränssnittet.\nKlicka här {faq_link} för mer detaljer.",
+ "related": "Relaterade",
+ "settings": "Inställningar"
+ },
+ "generic": {
+ "cancel": "Avbryt",
+ "close": "stäng",
+ "default_confirmation_title": "Är du säker?",
+ "ok": "OK"
+ },
+ "helper_settings": {
+ "counter": {
+ "initial": "Initialt värde",
+ "maximum": "Maximalt värde",
+ "minimum": "Minsta värde",
+ "restore": "Återställ det senast kända värdet när Home Assistant startar",
+ "step": "Steglängd"
+ },
+ "generic": {
+ "icon": "Ikon",
+ "name": "Namn"
+ },
+ "input_datetime": {
+ "date": "Datum",
+ "datetime": "Datum och tid",
+ "mode": "Vad vill du mata in",
+ "time": "Tid"
+ },
+ "input_number": {
+ "box": "Inmatningsfält",
+ "max": "Maximalt värde",
+ "min": "Minsta värde",
+ "mode": "Visningsläge",
+ "slider": "Skjutreglage",
+ "step": "Steglängd",
+ "unit_of_measurement": "Måttenhet"
+ },
+ "input_select": {
+ "add": "Lägg till",
+ "add_option": "Lägg till alternativ",
+ "no_options": "Det finns inga alternativ ännu.",
+ "options": "Alternativ"
+ },
+ "input_text": {
+ "max": "Maximal längd",
+ "min": "Minsta längd",
+ "mode": "Visningsläge",
+ "password": "Lösenord",
+ "pattern": "Regex-mönster för validering på klientsidan",
+ "text": "Text"
+ },
+ "platform_not_loaded": "Integrationen {platform} har ej laddats in. Lägg till integrationen genom att lägga till 'default_config:' eller ''{platform}:''.",
+ "required_error_msg": "Det här fältet krävs",
+ "timer": {
+ "duration": "Varaktighet"
+ },
+ "yaml_not_editable": "Inställningar för denna entitet kan inte ändras från användargränssnittet. Enbart entiteter uppsatta från användargränssnittet är konfigurerbara från användargränssnittet."
+ },
+ "image_cropper": {
+ "crop": "Beskär"
+ },
+ "more_info_control": {
+ "cover": {
+ "close_cover": "Stäng rullgardin",
+ "close_tile_cover": "Stäng rullgardinsblad",
+ "close_tilt_cover": "Stäng rullgardinsblad",
+ "open_cover": "Öppna rullgardin",
+ "open_tilt_cover": "Öppna rullgardinsblad",
+ "stop_cover": "Stoppa rullgardin"
+ },
+ "details": "Detaljer",
+ "dismiss": "Avfärda",
+ "edit": "Redigera entitet",
+ "history": "Historik",
+ "last_changed": "Senast ändrad",
+ "last_updated": "Senast uppdaterad",
+ "logbook": "Loggbok",
+ "person": {
+ "create_zone": "Skapa zon från aktuell plats"
+ },
+ "remote": {
+ "activity": "Nuvarande aktivitet"
+ },
+ "restored": {
+ "confirm_remove_text": "Är du säker på att du vill ta bort den här entiteten?",
+ "confirm_remove_title": "Ta bort entitet?",
+ "not_provided": "Den här entiteten är för närvarande inte tillgänglig och är överbliven från en borttagen, ändrad eller dysfunktionell integration eller enhet.",
+ "remove_action": "Ta bort entitet",
+ "remove_intro": "Om entiteten inte längre används kan du rensa upp den genom att ta bort den."
+ },
+ "script": {
+ "last_action": "Senaste åtgärd",
+ "last_triggered": "Senast utlöst"
+ },
+ "settings": "Entitetsinställningar",
+ "show_more": "Visa mer",
+ "sun": {
+ "elevation": "Elevation",
+ "rising": "Soluppgång",
+ "setting": "Solnedgång"
+ },
+ "updater": {
+ "title": "Uppdateringsanvisningar"
+ },
+ "vacuum": {
+ "clean_spot": "Rengör plats",
+ "commands": "Dammsugarkommandon:",
+ "fan_speed": "Fläkthastighet",
+ "locate": "Lokalisera",
+ "pause": "Pausa",
+ "return_home": "Återvänd hem",
+ "start": "Starta",
+ "start_pause": "Starta/Pausa",
+ "status": "Status",
+ "stop": "Stoppa"
+ }
+ },
+ "mqtt_device_debug_info": {
+ "deserialize": "Försök att tolka MQTT-meddelanden som JSON",
+ "entities": "Entiteter",
+ "no_entities": "Inga entiteter",
+ "no_triggers": "Inga utlösare",
+ "payload_display": "Visning av nyttolast",
+ "recent_messages": "{n} senast mottagna meddelande(n)",
+ "show_as_yaml": "Visa som YAML",
+ "title": "{device} felsökningsinformation",
+ "triggers": "Utlösare"
+ },
+ "options_flow": {
+ "form": {
+ "header": "Inställningar"
+ },
+ "loading": {
+ "loading_flow": "Vänta medan alternativen för {integration} initieras",
+ "loading_step": "Laddar nästa steg för {integration}"
+ },
+ "success": {
+ "description": "Inställningar sparade"
+ }
+ },
+ "quick-bar": {
+ "commands": {
+ "navigation": {
+ "areas": "Områden",
+ "automation": "Automationer",
+ "blueprint": "Blueprint",
+ "core": "Allmänt",
+ "customize": "Anpassningar",
+ "devices": "Enheter",
+ "energy": "Energi",
+ "entities": "Entiteter",
+ "helpers": "Hjälpare",
+ "info": "Info",
+ "integrations": "Integrationer",
+ "logs": "Loggar",
+ "lovelace": "Lovelace kontrollpaneler",
+ "person": "Personer",
+ "scene": "Scener",
+ "script": "Skript",
+ "server_control": "Serverhantering",
+ "tag": "Taggar",
+ "users": "Användare",
+ "zone": "Zoner"
+ },
+ "reload": {
+ "automation": "Ladda om automationer",
+ "command_line": "Ladda om command line entiteter",
+ "core": "Ladda om plats och anpassningar",
+ "filesize": "Ladda om filstorleks ",
+ "filter": "Ladda om filter entiteter",
+ "generic": "Ladda om standard IP kamera entiteter",
+ "generic_thermostat": "Ladda om standard termostat entiteter",
+ "group": "Ladda om grupper, grupp entiteter och meddelandetjänster",
+ "history_stats": "Ladda om historisk statistik entiteter",
+ "homekit": "Ladda om HomeKit",
+ "input_boolean": "Ladda om input boolean",
+ "input_datetime": "Ladda om inmatningsdatum/tid",
+ "input_number": "Ladda om input nummer",
+ "input_select": "Ladda om input rullista",
+ "input_text": "Ladda om input texter",
+ "min_max": "Ladda om min/max entiteter",
+ "mqtt": "Ladda om mqtt entiteter",
+ "person": "Ladda om personer",
+ "ping": "Ladda om ping och binära sensor entiteter",
+ "reload": "Ladda om {domain}",
+ "rest": "Ladda om rest entiteter och ",
+ "rpi_gpio": "Ladda om Raspberry Pi GPIO entiteter",
+ "scene": "Ladda om scener",
+ "script": "Ladda om skripts",
+ "smtp": "Ladda om smtp aviseringstjänster",
+ "statistics": "Ladda om statistik entiteter",
+ "telegram": "Ladda om telegram aviseringstjänster",
+ "template": "Ladda om mallade entiteter",
+ "themes": "Teman",
+ "trend": "Ladda om trend entiteter",
+ "universal": "Ladda om universella mediaspelar entiteter",
+ "zone": "Ladda om zoner"
+ },
+ "server_control": {
+ "perform_action": "{action} server",
+ "restart": "Starta om",
+ "stop": "Stopp"
+ },
+ "types": {
+ "navigation": "Navigera",
+ "reload": "Ladda om",
+ "server_control": "Server"
+ }
+ },
+ "filter_placeholder": "Entitetsfilter",
+ "key_c_hint": "Tryck på 'c' på valfri sida för att öppna detta sökfält",
+ "title": "Snabbsökning"
+ },
+ "voice_command": {
+ "did_not_hear": "Home Assistant hörde ingenting",
+ "error": "Oj, ett fel har inträffat",
+ "found": "Jag hittade följande för dig:",
+ "how_can_i_help": "Hur kan jag hjälpa till?",
+ "label": "Skriv en fråga och tryck på 'Enter'",
+ "label_voice": "Skriv och tryck på \"Enter\" eller tryck på mikrofonen för att tala"
+ },
+ "zha_device_info": {
+ "buttons": {
+ "add": "Lägg till enheter via den här enheten",
+ "clusters": "Hantera kluster",
+ "device_children": "Visa underordnade",
+ "reconfigure": "Konfigurera om enheten",
+ "remove": "Ta bort enhet",
+ "view_in_visualization": "Visa i visualisering",
+ "zigbee_information": "Zigbee-enhetens signatur"
+ },
+ "confirmations": {
+ "remove": "Är du säker på att du vill ta bort enheten?"
+ },
+ "device_children": "Underordnade Zigbee-enhet",
+ "device_signature": "Zigbee-enhetens signatur",
+ "last_seen": "Senast sedd",
+ "manuf": "av {manufacturer}",
+ "no_area": "Inget område",
+ "power_source": "Strömkälla",
+ "quirk": "Quirk",
+ "services": {
+ "reconfigure": "Konfigurera om ZHA-enheten (läk enheten). Använd det här om du har problem med enheten. Om den aktuella enheten är en batteridriven enhet, se till att den är påslagen och accepterar kommandon när du använder den här tjänsten.",
+ "remove": "Ta bort en enhet från Zigbee-nätverket.",
+ "updateDeviceName": "Ange ett anpassat namn för den här enheten i entitetsregistret",
+ "zigbee_information": "Visa Zigbee-informationen för enheten."
+ },
+ "unknown": "Okänd",
+ "zha_device_card": {
+ "device_name_placeholder": "Ändra enhetsnamn"
+ }
+ },
+ "zha_reconfigure_device": {
+ "attribute": "Attribut",
+ "battery_device_warning": "Du måste väcka batteridrivna enheter innan du startar omkonfigurationen. Se enhetens manual för instruktioner om hur du väcker enheten.",
+ "bind_header": "Bindning",
+ "button_hide": "Dölj detaljer",
+ "button_show": "Visa detaljer",
+ "cluster_header": "Kluster",
+ "configuration_complete": "Enhetens omkonfigurering slutförd.",
+ "configuration_failed": "Omkonfigureringen av enheten misslyckades. Ytterligare information kan finnas i loggarna.",
+ "configuring_alt": "Konfigurerar",
+ "heading": "Konfigurerar om enheten",
+ "in_progress": "Enheten konfigureras om. Det kan ta lite tid.",
+ "introduction": "Konfigurera om en enhet på ditt Zigbee-nätverk. Använd den här funktionen om din enhet inte fungerar korrekt.",
+ "min_max_change": "min/max/förändring",
+ "reporting_header": "Rapportering",
+ "run_in_background": "Du kan stänga den här dialogrutan. Omkonfigureringen fortsätter i bakgrunden.",
+ "start_reconfiguration": "Påbörja omkonfiguration"
+ }
+ },
+ "duration": {
+ "day": "{count} {count, plural,\none {dag}\nother {dagar}\n}",
+ "hour": "{count} {count, plural,\n one {timme}\n other {timmar}\n}",
+ "minute": "{count} {count, plural,\n one {minut}\n other {minuter}\n}",
+ "second": "{count} {count, plural,\none {sekund}\nother {sekunder}\n}",
+ "week": "{count} {count, plural,\none {vecka}\nother {veckor}\n}"
+ },
+ "errors": {
+ "config": {
+ "edit_in_yaml_supported": "Du kan fortfarande redigera din konfiguration i YAML.",
+ "editor_not_available": "Ingen visuell redigerare tillgänglig för typen \"{type}\".",
+ "editor_not_supported": "Visuell redigerare stöds inte för den här konfigurationen",
+ "error_detected": "Konfigurationsfel upptäcktes",
+ "key_missing": "Nödvändig nyckel \"{key}\" saknas.",
+ "key_not_expected": "Nyckeln \"{key}\" förväntas inte eller stöds inte av den visuella redigeraren.",
+ "key_wrong_type": "Det angivna värdet för \"{key}\" stöds inte av den visuella redigeraren. Vi stöder ({type_correct}) men fick ({type_wrong}).",
+ "no_state_array_support": "Flera tillståndsvärden stöds inte i visuell redigerare",
+ "no_template_editor_support": "Mallar stöds inte i den visuella redigeraren",
+ "no_type_provided": "Ingen typ angiven."
+ },
+ "supervisor": {
+ "ask": "Be om hjälp",
+ "observer": "Kontrollera observatören",
+ "reboot": "Försök att starta om värden",
+ "system_health": "Kontrollera systemets hälsa",
+ "title": "Det gick inte att ladda Supervisor-panelen!",
+ "wait": "Om du precis börjat, se till att du har gett Supervisor tillräckligt med tid för att starta."
+ }
+ },
+ "login-form": {
+ "log_in": "Logga in",
+ "password": "Lösenord",
+ "remember": "Kom ihåg"
+ },
+ "notification_drawer": {
+ "click_to_configure": "Klicka på knappen för att konfigurera {entity}",
+ "close": "Stäng",
+ "dismiss_all": "Avfärda alla",
+ "empty": "Inga notiser",
+ "title": "Notiser"
+ },
+ "notification_toast": {
+ "connection_lost": "Anslutning tappad. Ansluter igen…",
+ "dismiss": "Avfärda",
+ "integration_starting": "Startar {integration}, allt är inte tillgängligt förrän uppstarten är klar.",
+ "service_call_failed": "Misslyckades med att anropa tjänsten {service}.",
+ "started": "Home Assistant har startat!",
+ "starting": "Home Assistant startar, allt är inte tillgängligt förrän uppstarten är klar.",
+ "triggered": "Utlöst {name}",
+ "wrapping_up_startup": "Avslutar starten, allt är inte tillgängligt förrän uppstarten är klar."
+ },
+ "panel": {
+ "config": {
+ "advanced_mode": {
+ "hint_enable": "Saknas konfigurationsalternativ? Aktivera avancerat läge på",
+ "link_profile_page": "din profilsida"
+ },
+ "areas": {
+ "add_picture": "Lägg till en bild",
+ "assigned_to_area": "Tilldelad till detta område",
+ "caption": "Områden",
+ "data_table": {
+ "area": "Område",
+ "devices": "Enheter",
+ "entities": "Entiteter"
+ },
+ "delete": {
+ "confirmation_text": "Alla enheter i denna zon kommer att bli utan tilldelning.",
+ "confirmation_title": "Är du säker på att du vill ta bort den här zonen?"
+ },
+ "description": "Översikt över alla områden i ditt hem",
+ "edit_settings": "Områdesinställningar",
+ "editor": {
+ "area_id": "Områdes-ID",
+ "create": "Skapa",
+ "default_name": "Nytt område",
+ "delete": "Radera",
+ "linked_entities_caption": "Entiteter",
+ "name": "Namn",
+ "name_required": "Namn krävs",
+ "no_linked_entities": "Det finns inga entiteter som är länkade till det här området.",
+ "unknown_error": "Okänt fel",
+ "update": "Uppdatera"
+ },
+ "picker": {
+ "create_area": "Skapa område",
+ "header": "Områden",
+ "integrations_page": "Integrationssidan",
+ "introduction": "Områden används för att organisera var enheter befinner sig. Denna information kommer att användas i hela Home Assistant för att hjälpa dig att organisera ditt gränssnitt, behörigheter och integreringar med andra system.",
+ "introduction2": "Om du vill placera enheter i ett område använder du länken nedan för att navigera till integrationssidan och klickar sedan på en konfigurerad integration för att komma till enhetskort.",
+ "no_areas": "Ser ut som du inte har några områden ännu!"
+ },
+ "targeting_area": "Riktar in sig på detta område"
+ },
+ "automation": {
+ "caption": "Automatiseringar",
+ "description": "Skapa anpassade beteenderegler för ditt hem",
+ "dialog_new": {
+ "blueprint": {
+ "use_blueprint": "Använd blueprint"
+ },
+ "header": "Skapa en ny automatisering",
+ "how": "Hur vill du skapa din nya automatisering?",
+ "start_empty": "Börja med en tom automation",
+ "start_empty_description": "Skapa en ny automatisering från grunden",
+ "thingtalk": {
+ "create": "Skapa",
+ "header": "Beskriv automatiseringen du vill skapa",
+ "input_label": "Vad ska denna automatisering göra?",
+ "intro": "Och vi kommer att försöka skapa det åt dig. Till exempel: Släck lamporna när jag går."
+ }
+ },
+ "editor": {
+ "actions": {
+ "add": "Lägg till åtgärd",
+ "delete": "Radera",
+ "delete_confirm": "Är du säker på att du vill radera?",
+ "duplicate": "Duplicera",
+ "header": "Åtgärder",
+ "introduction": "Åtgärderna är vad Home Assistant gör när automatiseringen triggas.",
+ "learn_more": "Lär dig mer om händelser",
+ "name": "Åtgärd",
+ "type": {
+ "choose": {
+ "add_option": "Lägg till alternativ",
+ "conditions": "Villkor",
+ "default": "Standardåtgärder",
+ "label": "Välj",
+ "option": "Alternativ {number}",
+ "remove_option": "Ta bort alternativ",
+ "sequence": "Åtgärder"
+ },
+ "condition": {
+ "label": "Villkor"
+ },
+ "delay": {
+ "delay": "Fördröjning",
+ "label": "Vänta tills tiden går (fördröjning)"
+ },
+ "device_id": {
+ "action": "Åtgärd",
+ "extra_fields": {
+ "brightness_pct": "Ljusstyrka",
+ "code": "Kod",
+ "flash": "Blinka",
+ "humidity": "Luftfuktighet",
+ "message": "Meddelande",
+ "mode": "Läge",
+ "position": "Position",
+ "title": "Titel",
+ "value": "Värde"
+ },
+ "label": "Enhet"
+ },
+ "event": {
+ "event": "Händelse",
+ "label": "Utlös händelse",
+ "service_data": "Tjänstedata"
+ },
+ "repeat": {
+ "label": "Upprepa",
+ "sequence": "Åtgärder",
+ "type": {
+ "count": {
+ "label": "Antal"
+ },
+ "until": {
+ "conditions": "Fram-tills-villkor",
+ "label": "Fram tills"
+ },
+ "while": {
+ "conditions": "Så-länge-villkor",
+ "label": "Så länge"
+ }
+ },
+ "type_select": "Typ av upprepning"
+ },
+ "scene": {
+ "label": "Aktivera scenario"
+ },
+ "service": {
+ "label": "Kör tjänst"
+ },
+ "wait_for_trigger": {
+ "continue_timeout": "Fortsätt vid paus",
+ "label": "Vänta på en utlösare",
+ "timeout": "Paus (valfritt)"
+ },
+ "wait_template": {
+ "continue_timeout": "Fortsätt vid paus",
+ "label": "Paus",
+ "timeout": "Timeout (valfritt)",
+ "wait_template": "paus mall"
+ }
+ },
+ "type_select": "Åtgärdstyp",
+ "unsupported_action": "Inget gränssnittsstöd för åtgärd: {action}"
+ },
+ "alias": "Namn",
+ "blueprint": {
+ "blueprint_to_use": "Blueprint att använda",
+ "header": "Blueprint",
+ "no_blueprints": "Du har inga blueprints",
+ "no_inputs": "Det här blueprint:et har inga input."
+ },
+ "conditions": {
+ "add": "Lägg till villkor",
+ "delete": "Ta bort",
+ "delete_confirm": "Är du säker på att du vill radera detta?",
+ "duplicate": "Duplicera",
+ "header": "Villkor",
+ "introduction": "Villkoren är valfria och kommer att förhindra ytterligare utförande såvida inte alla villkor är uppfyllda.",
+ "learn_more": "Lär dig mer om villkor",
+ "name": "Villkor",
+ "type": {
+ "and": {
+ "label": "Och"
+ },
+ "device": {
+ "condition": "Villkor",
+ "extra_fields": {
+ "above": "Över",
+ "below": "Under",
+ "for": "Varaktighet",
+ "hvac_mode": "VVS-läge",
+ "preset_mode": "Förvalt läge"
+ },
+ "label": "Enhet"
+ },
+ "not": {
+ "label": "Inte"
+ },
+ "numeric_state": {
+ "above": "Över",
+ "below": "Under",
+ "label": "Siffervärde",
+ "value_template": "Värdemall (valfritt)"
+ },
+ "or": {
+ "label": "Eller"
+ },
+ "state": {
+ "label": "Tillstånd",
+ "state": "Tillstånd"
+ },
+ "sun": {
+ "after": "Efter:",
+ "after_offset": "Förskjutning efter (valfritt)",
+ "before": "Före:",
+ "before_offset": "Förskjutning innan (valfritt)",
+ "label": "Solen",
+ "sunrise": "Soluppgång",
+ "sunset": "Solnedgång"
+ },
+ "template": {
+ "label": "Mall",
+ "value_template": "Värdemall"
+ },
+ "time": {
+ "after": "Efter",
+ "before": "Före",
+ "label": "Tid",
+ "type_input": "Värde för en datum-/tidhjälpare",
+ "type_value": "Satt tid",
+ "weekdays": {
+ "fri": "fredag",
+ "mon": "måndag",
+ "sat": "lördag",
+ "sun": "söndag",
+ "thu": "torsdag",
+ "tue": "tisdag",
+ "wed": "onsdag"
+ }
+ },
+ "trigger": {
+ "id": "ID för utlösare",
+ "label": "Utlösare",
+ "no_triggers": "Inga utlösare finns tillgängliga"
+ },
+ "zone": {
+ "entity": "Entitet med position",
+ "label": "Zon",
+ "zone": "Zon"
+ }
+ },
+ "type_select": "Villkorstyp",
+ "unsupported_condition": "Inget gränssnittsstöd för villkor: {condition}"
+ },
+ "copy_to_clipboard": "Kopiera till Urklipp",
+ "default_name": "Ny automation",
+ "description": {
+ "label": "Beskrivning",
+ "placeholder": "Valfri beskrivning"
+ },
+ "edit_ui": "Redigera i den visuella redigeraren",
+ "edit_yaml": "Redigera som YAML",
+ "enable_disable": "Aktivera/inaktivera automatisering",
+ "introduction": "Använd automatiseringar för väcka liv i ditt hem",
+ "load_error_not_editable": "Endast automatiseringar i automations.yaml kan redigeras.",
+ "load_error_unknown": "Fel vid inläsning av automatisering ({err_no}).",
+ "max": {
+ "parallel": "Max antal parallella körningar",
+ "queued": "Kölängd"
+ },
+ "modes": {
+ "description": "Läget styr vad som händer när automatiseringen triggas att starta medan den fortfarande kör. Mer information finns i {documentation_link}.",
+ "documentation": "Dokumentation av automatisering",
+ "label": "Läge",
+ "parallel": "Parallell",
+ "queued": "På kö",
+ "restart": "Starta om",
+ "single": "Enkel (standard)"
+ },
+ "move_down": "Flytta nedåt",
+ "move_up": "Flytta uppåt",
+ "save": "Spara",
+ "show_trace": "Visa spårning",
+ "triggers": {
+ "add": "Lägg till händelse",
+ "delete": "Ta bort",
+ "delete_confirm": "Är du säker på att du vill radera detta?",
+ "duplicate": "Duplicera",
+ "edit_id": "Redigera ID för utlösare",
+ "header": "Händelse",
+ "id": "Trigger-ID",
+ "introduction": "Triggers är det som startar en automation. Det är möjligt att ange flera triggers för samma regel. När en trigger inträffar kommer Home Assistant att validera eventuella villkor och sedan köra åtgärden.",
+ "learn_more": "Lär dig mer om utlösare",
+ "name": "Utlösare",
+ "type": {
+ "device": {
+ "extra_fields": {
+ "above": "Över",
+ "below": "Under",
+ "for": "Varaktighet (valfritt)",
+ "zone": "Zon"
+ },
+ "label": "Enhet",
+ "trigger": "Utlösare"
+ },
+ "event": {
+ "context_user_pick": "Välj användare",
+ "context_user_picked": "Användaravfyrning",
+ "context_users": "Begränsa till händelser som utlöses av",
+ "event_data": "Händelsedata",
+ "event_type": "Händelsetyp",
+ "label": "Händelse"
+ },
+ "geo_location": {
+ "enter": "Ankomma",
+ "event": "Händelse:",
+ "label": "Geolocation",
+ "leave": "Lämna",
+ "source": "Källa",
+ "zone": "Zon"
+ },
+ "homeassistant": {
+ "event": "Händelse:",
+ "label": "Home Assistant",
+ "shutdown": "Stoppa",
+ "start": "Starta"
+ },
+ "mqtt": {
+ "label": "MQTT",
+ "payload": "Nyttolast (tillval)",
+ "topic": "Ämne"
+ },
+ "numeric_state": {
+ "above": "Över",
+ "below": "Under",
+ "label": "Numeriskt tillstånd",
+ "value_template": "Värdesmall (valfritt)"
+ },
+ "state": {
+ "attribute": "Attribut (valfritt)",
+ "for": "För (valfritt)",
+ "from": "Från (valfritt)",
+ "label": "Tillstånd",
+ "to": "Till"
+ },
+ "sun": {
+ "event": "Händelse:",
+ "label": "Solen",
+ "offset": "Förskjutning (valfritt)",
+ "sunrise": "Soluppgång",
+ "sunset": "Solnedgång"
+ },
+ "tag": {
+ "label": "Tagg"
+ },
+ "template": {
+ "label": "Mall",
+ "value_template": "Värdemall"
+ },
+ "time": {
+ "at": "Tid",
+ "label": "Tid",
+ "type_input": "Värde för en datum-/tidhjälpare",
+ "type_value": "Satt tid"
+ },
+ "time_pattern": {
+ "hours": "Timmar",
+ "label": "Tidsmönster",
+ "minutes": "Minuter",
+ "seconds": "Sekunder"
+ },
+ "webhook": {
+ "label": "Webhook",
+ "webhook_id": "Webhook ID"
+ },
+ "zone": {
+ "enter": "Ankommer",
+ "entity": "Entitet med position",
+ "event": "Händelse:",
+ "label": "Zon",
+ "leave": "Lämnar",
+ "zone": "Zon"
+ }
+ },
+ "type_select": "Aktiveringstyp",
+ "unsupported_platform": "Inget gränssnittsstöd för plattformen: {platform}"
+ },
+ "unsaved_confirm": "Du har osparade ändringar. Är du säker på att du vill lämna?"
+ },
+ "picker": {
+ "add_automation": "Lägg till automatisering",
+ "delete_automation": "Radera automation",
+ "delete_confirm": "Är du säker på att du vill radera denna automatisering?",
+ "dev_automation": "Felsök automatisering",
+ "dev_only_editable": "Endast automatiseringar som har tilldelats ett unikt ID kan felsökas.",
+ "duplicate": "Dubblett",
+ "duplicate_automation": "Dubblett av en automatisering",
+ "edit_automation": "Redigera automation",
+ "header": "Automatiseringseditor",
+ "headers": {
+ "name": "Namn"
+ },
+ "introduction": "Automatiseringseditorn låter dig skapa och redigera automationer. Läs [instruktionerna](https://home-assistant.io/docs/automation/editor/) för att se till att du har konfigurerat Home Assistant korrekt.",
+ "learn_more": "Lär dig mer om automatiseringar",
+ "no_automations": "Vi kunde inte hitta några redigerbara automatiseringar",
+ "only_editable": "Endast automatiseringar i automations.yaml kan redigeras.",
+ "pick_automation": "Välj automation att redigera",
+ "show_info_automation": "Visa info om automation"
+ },
+ "thingtalk": {
+ "create": "Skapa automatisering",
+ "link_devices": {
+ "ambiguous_entities": "En eller flera enheter har mer än en matchande entitet. Välj den du vill använda.",
+ "header": "Bra! Nu måste vi länka några enheter",
+ "unknown_placeholder": "Okänd platshållare"
+ },
+ "task_selection": {
+ "error_empty": "Ange ett kommando eller tryck på hoppa över.",
+ "error_unsupported": "Vi kunde inte skapa en automatisering för det (ännu?).",
+ "for_example": "Till exempel:",
+ "header": "Skapa en ny automatisering",
+ "introduction": "Skriv nedan vad denna automatisering ska göra, så försöker vi konvertera den till en Home Assistant-automatisering.",
+ "language_note": "Obs! Endast engelska stöds för tillfället."
+ }
+ },
+ "trace": {
+ "download_trace": "Ladda ner spårning",
+ "edit_automation": "Redigera automatisering",
+ "newer_trace": "Nyare spårning",
+ "older_trace": "Äldre spårning",
+ "refresh": "Uppdatera"
+ }
+ },
+ "blueprint": {
+ "add": {
+ "community_forums": "forum",
+ "error_no_url": "Ange webbadressen till blueprint:et",
+ "file_name": "Blueprintsökväg",
+ "header": "Importera blueprint",
+ "import_btn": "Förhandsgranska blueprint",
+ "import_header": "Blueprint \"{name}\"",
+ "import_introduction_link": "Du kan importera blueprints från andra användare och {community_link}. Ange URL för blueprint nedan.",
+ "importing": "Laddar blueprint...",
+ "raw_blueprint": "Innehåll i blueprint",
+ "save_btn": "Importera blueprint",
+ "saving": "Importerar blueprint…",
+ "unsupported_blueprint": "Det här blueprint:et stöds ej",
+ "url": "Webbadressen till blueprint:et"
+ },
+ "caption": "Blueprints",
+ "description": "Hantera blueprints",
+ "overview": {
+ "add_blueprint": "Importera blueprint",
+ "confirm_delete_header": "Ta bort detta blueprint?",
+ "confirm_delete_text": "Är du säker på att du vill ta bort det här blueprint:et",
+ "create_automation": "Skapa automatisering",
+ "create_script": "Skapa skript",
+ "delete_blueprint": "Ta bort blueprint",
+ "discover_more": "Upptäck fler blueprints",
+ "header": "Blueprint Editor",
+ "headers": {
+ "domain": "Domän",
+ "file_name": "Filnamn",
+ "name": "Namn",
+ "type": "Typ"
+ },
+ "introduction": "Med Blueprint-configurationen kan du importera och hantera dina blueprints",
+ "learn_more": "Lär dig mer om blueprints",
+ "share_blueprint": "Dela blueprint",
+ "share_blueprint_no_url": "Det går inte att dela blueprint: ingen källadress",
+ "types": {
+ "automation": "Automatisering",
+ "script": "Skript"
+ },
+ "use_blueprint": "Skapa automation"
+ }
+ },
+ "cloud": {
+ "account": {
+ "alexa": {
+ "config_documentation": "Konfigurationsdokumentation",
+ "disable": "inaktivera",
+ "enable": "aktivera",
+ "enable_ha_skill": "Aktivera Home Assistant skill för Alexa",
+ "enable_state_reporting": "Aktivera tillståndsrapportering",
+ "info": "Med Alexa-integrationen för Home Assistant Cloud kan du styra alla dina Home Assistant-enheter via alla Alexa-aktiverade enheter.",
+ "info_state_reporting": "Om du aktiverar tillståndsrapportering skickar Home Assistant tillståndsändringar av exponerade entiteter till Amazon. På så sätt kan du alltid se de senaste tillstånden i Alexa-appen och använda tillståndsändringarna för att skapa rutiner.",
+ "manage_entities": "Hantera Entiteter",
+ "state_reporting_error": "Det går inte att {enable_disable} rapportera tillståndet.",
+ "sync_entities": "Synkronisera entiteter till Amazon",
+ "sync_entities_error": "Det gick inte att synkronisera entiteter:",
+ "title": "Alexa"
+ },
+ "connected": "Ansluten",
+ "connecting": "Ansluter…",
+ "connection_status": "Status för molnanslutning",
+ "fetching_subscription": "Hämtar prenumeration…",
+ "google": {
+ "config_documentation": "Dokumentation av Inställningar",
+ "devices_pin": "Säkerhetsenheter pinkod",
+ "enable_ha_skill": "Aktivera Home Assistant-färdigheten för Google Assistant",
+ "enable_state_reporting": "Aktivera tillståndsrapportering",
+ "enter_pin_error": "Det går inte att spara PIN-koden:",
+ "enter_pin_hint": "Ange en PIN-kod för att använda säkerhetsenheter",
+ "enter_pin_info": "Ange en pinkod för att interagera med säkerhetsenheter. Säkerhetsanordningar är dörrar, garagedörrar och lås. Du kommer att bli ombedd att säga/ange denna pinkod när du interagerar med sådana enheter via Google Assistent.",
+ "info": "Med Google Assistant-integreringen för Home Assistant Cloud kan du styra alla dina Home Assistant-enheter via alla Google Assistent-aktiverade enheter.",
+ "info_state_reporting": "Om du aktiverar tillståndsrapportering skickar Home Assistant alla tillståndsändringar av exponerade entiteter till Google. På så sätt kan du alltid se de senaste lägena i Google-appen.",
+ "manage_entities": "Hantera Entiteter",
+ "not_configured_text": "Innan du kan använda Google Assistant måste du aktivera Home Assistant Cloud-funktionen för Google Assistant i Google Home-appen.",
+ "not_configured_title": "Google Assistenten är inte aktiverad",
+ "security_devices": "Säkerhetsenheter",
+ "sync_entities": "Synkronisera Entiteter till Google",
+ "sync_entities_404_message": "Misslyckades med att synkronisera dina entiteter till Google, fråga Google \"Hej Google, synkronisera mina enheter\" för att synkronisera dina entiteter.",
+ "title": "Google Assistant"
+ },
+ "integrations": "Integrationer",
+ "integrations_introduction": "Integration med Home Assistant Cloud gör det möjligt för dig att koppla upp mot molntjänster utan att behöva exponera din egen installation av Home Assistant publikt på internet.",
+ "integrations_introduction2": "Kontrollera webbplatsen för ",
+ "integrations_link_all_features": " alla tillgängliga funktioner",
+ "manage_account": "Hantera konto",
+ "nabu_casa_account": "Nabu Casa-konto",
+ "not_connected": "Ej ansluten",
+ "remote": {
+ "access_is_being_prepared": "Fjärråtkomst förbereds. Vi meddelar dig när det är klart.",
+ "certificate_info": "Certifikatinfo",
+ "connected": "Ansluten",
+ "info": "Home Assistant Cloud ger en säker fjärranslutning till din instans när du är hemifrån.",
+ "instance_is_available": "Din instans är tillgänglig på",
+ "instance_will_be_available": "Din instans kommer att finnas tillgänglig på",
+ "link_learn_how_it_works": "Lär dig hur det fungerar",
+ "not_connected": "Ej ansluten",
+ "reconnecting": "Ej ansluten. Försöker återansluta.",
+ "remote_enabled": {
+ "caption": "Anslut automatiskt",
+ "description": "Aktivera det här alternativet för att se till att din Home Assistant-instans alltid är fjärråtkomlig."
+ },
+ "title": "Fjärrkontroll"
+ },
+ "sign_out": "Logga ut",
+ "thank_you_note": "Tack för att du är en del av Home Assistant Cloud. Det är tack vare människor som dig vi kan göra en fantastisk hemautomationsupplevelse för alla. Tack!",
+ "tts": {
+ "default_language": "Standardspråk att använda",
+ "dialog": {
+ "create_automation": "Skapa automatisering",
+ "example_message": "Hej {name} , du kan spela vilken text som helst, på vilken mediaspelare du vill!",
+ "header": "Prova Text till tal",
+ "play": "Spela",
+ "target": "Mål",
+ "target_browser": "Webbläsare"
+ },
+ "female": "Kvinna",
+ "info": "Gör ditt hem mer personligt genom att få det att prata med vår tjänst för text-till-tal.\nDu kan använda denna i automationer och skript genom att använda tjänsten {service}.",
+ "male": "Man",
+ "title": "Text till tal",
+ "try": "Prova"
+ },
+ "webhooks": {
+ "disable_hook_error_msg": "Det gick inte att inaktivera webhook:",
+ "info": "Allt som är konfigurerat för att utlösas av en webhook kan ges en offentligt tillgänglig URL för att låta dig skicka tillbaka data till Home Assistant var som helst, utan att exponera din instans för internet.",
+ "link_learn_more": "Läs mer om hur du skapar webhook-drivna automatiseringar.",
+ "loading": "Laddar…",
+ "manage": "Hantera",
+ "no_hooks_yet": "Det verkar som du inte har några webhooks ännu. Kom igång genom att konfigurera en ",
+ "no_hooks_yet2": " eller genom att skapa en ",
+ "no_hooks_yet_link_automation": "webhook automation",
+ "no_hooks_yet_link_integration": "webhook-baserad integration",
+ "title": "Webhooks"
+ }
+ },
+ "alexa": {
+ "banner": "Redigering av vilka entiteter som visas via det här användargränssnittet är inaktiverat eftersom du har konfigurerat entitetsfilter i configuration.yaml.",
+ "dont_expose_entity": "Visa inte entitet",
+ "expose": "Exponera för Alexa",
+ "expose_entity": "Exponera entitet",
+ "exposed": "{selected} är exponerad",
+ "exposed_entities": "Exponerade entiteter",
+ "follow_domain": "Följ domän",
+ "manage_domains": "Hantera domäner",
+ "not_exposed": "{selected} är inte exponerad",
+ "not_exposed_entities": "Ej exponerade entiteter",
+ "title": "Alexa"
+ },
+ "description_features": "Styr hemmet när du är borta och integrera med Alexa och Google Assistant.",
+ "description_login": "Inloggad som {email}",
+ "description_not_login": "Inte inloggad",
+ "dialog_certificate": {
+ "certificate_expiration_date": "Certifikatets utgångsdatum",
+ "certificate_information": "Certifikatinformation",
+ "close": "Stäng",
+ "fingerprint": "Certifikats-fingeravtryck:",
+ "will_be_auto_renewed": "kommer automatiskt att förnyas"
+ },
+ "dialog_cloudhook": {
+ "available_at": "Webbhooken är tillgänglig på följande url:",
+ "close": "Stäng",
+ "confirm_disable": "Är du säker på att du vill avaktivera denna webhook?",
+ "copied_to_clipboard": "Kopierat till urklipp",
+ "info_disable_webhook": "Om du inte längre vill använda denna webhook kan du",
+ "link_disable_webhook": "Inaktivera",
+ "managed_by_integration": "Denna webhook hanteras av en integration och kan inte inaktiveras.",
+ "view_documentation": "Visa dokumentation",
+ "webhook_for": "Webhook för {name}"
+ },
+ "forgot_password": {
+ "check_your_email": "Kontrollera din e-post för instruktioner om hur du återställer ditt lösenord.",
+ "email": "E-postadress",
+ "email_error_msg": "Felaktig e-postadress",
+ "instructions": "Ange din e-postadress så skickar vi en länk för att återställa ditt lösenord.",
+ "send_reset_email": "Skicka återställningsmail",
+ "subtitle": "Glömt lösenordet?",
+ "title": "Glömt lösenord"
+ },
+ "google": {
+ "banner": "Redigera vilka entiteter som visas via det här användargränssnittet är inaktiverat eftersom du har konfigurerat entitetsfilter i configuration.yaml.",
+ "disable_2FA": "Inaktivera tvåfaktorautentisering",
+ "dont_expose_entity": "Visa inte entitet",
+ "expose": "Exponera för Google Assistant",
+ "expose_entity": "Exponera entitet",
+ "exposed": "{selected} är exponerad",
+ "exposed_entities": "Exponerade entiteter",
+ "follow_domain": "Följ domän",
+ "manage_domains": "Hantera domäner",
+ "not_exposed": "{selected} är inte exponerad",
+ "not_exposed_entities": "Ej exponerade entiteter",
+ "sync_to_google": "Synkroniserar ändringar till Google.",
+ "title": "Google Assistant"
+ },
+ "login": {
+ "alert_email_confirm_necessary": "Du måste bekräfta din e-postadress innan du loggar in.",
+ "alert_password_change_required": "Du måste ändra ditt lösenord innan du loggar in.",
+ "dismiss": "Avfärda",
+ "email": "E-postadress",
+ "email_error_msg": "Ogiltig e-post",
+ "forgot_password": "Glömt lösenordet?",
+ "introduction": "Home Assistant Cloud ger dig en säker anslutning till din installation när du inte befinner dig hemma. Det låter dig också ansluta till tjänster med enbart molnstöd: Amazon Alexa och Google Assistant.",
+ "introduction2": "Denna tjänst drivs av vår partner ",
+ "introduction2a": ", ett företag grundat av grundarna av Home Assistant.",
+ "introduction3": "Home Assistant Cloud är en prenumerationstjänst med en kostnadsfri testperiod på en månad. Ingen betalningsinformation behövs.",
+ "learn_more_link": "Läs mer om Home Assistant Cloud",
+ "password": "Lösenord",
+ "password_error_msg": "Lösenord måste vara minst 8 tecken",
+ "sign_in": "Logga in",
+ "start_trial": "Starta din kostnadsfria 1-månads testperiod",
+ "title": "Molninloggning",
+ "trial_info": "Ingen betalningsinformation behövs"
+ },
+ "register": {
+ "account_created": "Konto skapat! Kontrollera din e-post för instruktioner om hur du aktiverar ditt konto.",
+ "create_account": "Skapa konto",
+ "email_address": "E-postadress",
+ "email_error_msg": "Ogiltig e-post",
+ "feature_amazon_alexa": "Integration med Amazon Alexa",
+ "feature_google_home": "Integration med Google Assistant",
+ "feature_remote_control": "Kontrollera Home Assistant när du inte är hemma",
+ "feature_webhook_apps": "Enkel integration med webbhookbaserade appar som OwnTracks",
+ "headline": "Starta din kostnadsfria testperiod",
+ "information": "Skapa ett konto för att starta en gratis provperiod på en månad med Home Assistant Cloud. Ingen betalningsinformation behövs.",
+ "information2": "Testet ger dig tillgång till alla fördelar med Home Assistant Cloud, inklusive:",
+ "information3": "Denna tjänst drivs av vår partner ",
+ "information3a": ", ett företag grundat av grundarna av Home Assistant.",
+ "information4": "Genom att registrera ett konto godkänner du följande villkor.",
+ "link_privacy_policy": "Integritetspolicy",
+ "link_terms_conditions": "Villkor",
+ "password": "Lösenord",
+ "password_error_msg": "Lösenord måste vara minst 8 tecken",
+ "resend_confirm_email": "Skicka bekräftelsebrev igen",
+ "start_trial": "Starta testperiod",
+ "title": "Skapa konto"
+ }
+ },
+ "common": {
+ "editor": {
+ "confirm_unsaved": "Du har ändringar som inte har sparats. Är du säker på att du vill lämna?"
+ },
+ "learn_more": "Läs mer"
+ },
+ "core": {
+ "caption": "Allmänt",
+ "description": "Ändra din grundkonfiguration för Home Assistant.",
+ "section": {
+ "core": {
+ "core_config": {
+ "currency": "Valuta",
+ "edit_requires_storage": "Redigeraren är inaktiverad eftersom konfigurationen lagras i configuration.yaml.",
+ "elevation": "Höjd över havet",
+ "elevation_meters": "meter",
+ "external_url": "Extern URL",
+ "find_currency_value": "Hitta ditt värde",
+ "imperial_example": "Fahrenheit, pounds",
+ "internal_url": "Intern URL",
+ "latitude": "Latitud",
+ "location_name": "Namn på din Home Assistant-installation",
+ "longitude": "Longitud",
+ "metric_example": "Celsius, kilogram",
+ "save_button": "Spara",
+ "time_zone": "Tidszon",
+ "unit_system": "Enhetssystem",
+ "unit_system_imperial": "Imperial",
+ "unit_system_metric": "Metrisk"
+ },
+ "header": "Konfiguration och serverhantering",
+ "introduction": "Att ändra din konfiguration kan vara en tröttsam process. Vi vet. Den här avdelningen försöker göra ditt liv lite enklare."
+ }
+ }
+ },
+ "customize": {
+ "attributes_customize": "Följande attribut har redan ställts in i customize.yaml",
+ "attributes_not_set": "Följande attribut har inte angetts. Ställ in dem om du vill.",
+ "attributes_outside": "Följande attribut är anpassade från utanför customize.yaml",
+ "attributes_override": "Du kan åsidosätta dem om du vill.",
+ "attributes_set": "Följande attribut för enheten ställs in programmatiskt.",
+ "caption": "Anpassningar",
+ "description": "Anpassa dina entiteter",
+ "different_include": "Möjligen via en domain, en glob eller en annan include.",
+ "pick_attribute": "Välj ett attribut att anpassa",
+ "picker": {
+ "documentation": "Anpassningsdokumentation",
+ "header": "Anpassningar",
+ "introduction": "Justera attribut per entitet. Tillagda och redigerade anpassningar kommer att ha omedelbar effekt. Borttagna anpassningar kommer att träda i kraft när entiteten uppdateras."
+ },
+ "warning": {
+ "include_link": "inkludera customize.yaml",
+ "include_sentence": "Det verkar som att din configuration.yaml inte korrekt",
+ "not_applied": "Ändringar som görs här skrivs i den, men kommer inte att tillämpas efter en konfiguration omlastning om inte inkludera är på plats."
+ }
+ },
+ "dashboard": {
+ "automations": {
+ "description": "Hantera automatiseringar, scener, script och hjälpare",
+ "title": "Automatisering och scener"
+ },
+ "blueprints": {
+ "description": "Färdiga automatiseringar och skript skapade av communityn",
+ "title": "Blueprints"
+ },
+ "companion": {
+ "description": "Plats och aviseringar",
+ "title": "Tillhörande app"
+ },
+ "dashboards": {
+ "description": "Skapa skräddarsydda kort för att kontrollera ditt hem",
+ "title": "Kontrollpaneler"
+ },
+ "devices": {
+ "description": "Integrationer, enheter, entiteter och områden",
+ "title": "Enheter och tjänster"
+ },
+ "energy": {
+ "description": "Övervaka din energiproduktion och förbrukning",
+ "title": "Energi"
+ },
+ "people": {
+ "description": "Hantera personerna och zonerna som Home Assistant spårar",
+ "title": "Människor & zoner"
+ },
+ "settings": {
+ "description": "Grundläggande inställningar, serverkontroller, loggar och information",
+ "title": "Inställningar"
+ },
+ "supervisor": {
+ "description": "Skapa säkerhetskopior, kontrollera loggar eller starta om ditt system",
+ "title": "Tillägg, säkerhetskopiering & Supervisor"
+ },
+ "tags": {
+ "description": "Utlös automatiseringar när en NFC-tagg, QR-kod etc. skannas",
+ "title": "Taggar"
+ }
+ },
+ "devices": {
+ "add_prompt": "Inga {name} har lagts till med hjälp av den här enheten ännu. Du kan lägga till genom att klicka på + knappen ovan.",
+ "automation": {
+ "actions": {
+ "caption": "När något utlöses…",
+ "no_actions": "Inga åtgärder",
+ "unknown_action": "Okänd åtgärd"
+ },
+ "automations": "Automatiseringar",
+ "conditions": {
+ "caption": "Utför endast om…",
+ "no_conditions": "Inga villkor",
+ "unknown_condition": "Okänt villkor"
+ },
+ "create": "Skapa automatisering med enheten",
+ "create_disable": "Det går inte att skapa automatisering med en inaktiverad enhet",
+ "no_automations": "Inga automatiseringar",
+ "no_device_automations": "Det finns inga automatiseringar tillgängliga för den här enheten.",
+ "triggers": {
+ "caption": "Gör något när ...",
+ "no_triggers": "Inga utlösare",
+ "unknown_trigger": "Okänd utlösare"
+ },
+ "unknown_automation": "Okänd automatisering"
+ },
+ "cant_edit": "Du kan bara redigera objekt som skapas i användargränssnittet.",
+ "caption": "Enheter",
+ "confirm_delete": "Är du säker på att du vill ta bort den här enheten?",
+ "confirm_disable_config_entry": "Det finns inga fler enheter för konfigurationsposten {entry_name} , vill du istället inaktivera konfigurationsposten?",
+ "confirm_rename_entity_ids": "Vill du också byta namn på dina entiteters entitets-ID?",
+ "confirm_rename_entity_ids_warning": "Detta kommer inte att ändra någon konfiguration (som automatiseringar, skript, scener, kontrollpaneler) som för närvarande använder dessa entiteter, du måste uppdatera dem själv för att använda nya eniteters id:n.",
+ "data_table": {
+ "area": "Område",
+ "battery": "Batteri",
+ "device": "Enhet",
+ "integration": "Integration",
+ "manufacturer": "Tillverkare",
+ "model": "Modell",
+ "no_devices": "Inga enheter",
+ "no_integration": "Ingen integration"
+ },
+ "delete": "Ta bort",
+ "description": "Hantera konfigurerade enheter",
+ "device_info": "Enhetsinformation",
+ "device_not_found": "Enheten hittades inte.",
+ "disabled": "Inaktiverad",
+ "disabled_by": {
+ "config_entry": "Konfigurationspost",
+ "integration": "Integration",
+ "user": "Användare"
+ },
+ "download_diagnostics": "Ladda ner diagnostik",
+ "edit_settings": "Ändra inställningar",
+ "enabled_cause": "Enheten inaktiverad av {cause} .",
+ "enabled_description": "Inaktiverade enheter kommer inte att visas och entiteter som tillhör enheten kommer att inaktiveras och inte läggas till i Home Assistant.",
+ "enabled_label": "Aktivera enhet",
+ "entities": {
+ "add_entities_lovelace": "Lägg till i Lovelace",
+ "config": "Konfiguration",
+ "control": "Kontroller",
+ "diagnostic": "Diagnostik",
+ "disabled_entities": "+{count} {count, plural,\n one {avaktiverad entitet}\n other {avaktiverade entiteter}\n}",
+ "entities": "Entiteter",
+ "hide_disabled": "Dölj inaktiverad",
+ "none": "Den här enheten har inga entiteter",
+ "sensor": "Sensorer",
+ "state": "Tillstånd"
+ },
+ "name": "Namn",
+ "no_devices": "Inga enheter",
+ "open_configuration_url_device": "Besök enheten",
+ "open_configuration_url_service": "Besök tjänsten",
+ "picker": {
+ "filter": {
+ "filter": "Filtrera",
+ "hidden_devices": "{number} {number, plural,\n one {dold enhet}\n other {dolda enheter}\n}",
+ "show_all": "Visa alla",
+ "show_disabled": "Visa inaktiverade enheter"
+ },
+ "search": "Sök efter enheter"
+ },
+ "scene": {
+ "create": "Skapa scenario med enhet",
+ "create_disable": "Det går inte att skapa scen med en inaktiverad enhet",
+ "no_scenes": "Inga scenarier",
+ "scenes": "Scenarier"
+ },
+ "scenes": "Scenarier",
+ "script": {
+ "create": "Skapa skript med enhet",
+ "create_disable": "Det går inte att skapa skript med en inaktiverad enhet",
+ "no_scripts": "Inga skript",
+ "scripts": "Skript"
+ },
+ "scripts": "Skript",
+ "unknown_error": "Okänt fel",
+ "unnamed_device": "Namnlös enhet",
+ "update": "Uppdatera",
+ "update_device_error": "Uppdateringen av enheten misslyckades"
+ },
+ "energy": {
+ "battery": {
+ "add_battery_system": "Lägg till batterisystem",
+ "battery_systems": "Batterisystem",
+ "dialog": {
+ "energy_into_battery": "Energi som skickats till batteriet (kWh)",
+ "energy_out_of_battery": "Energi som kommit från batteriet (kWh)",
+ "header": "Konfigurera batterisystemet"
+ },
+ "learn_more": "Mer information om hur du kommer igång.",
+ "sub": "Om du har ett batterisystem kan du konfigurera det för att övervaka hur mycket energi som lagrades och användes från batteriet.",
+ "title": "Batterilagring för hemmet"
+ },
+ "caption": "Energi",
+ "delete_integration": "Är du säker på att du vill ta bort denna integration? Det kommer att ta bort de enheter som det tillhandahåller",
+ "delete_source": "Är du säker på att du vill radera denna källa?",
+ "description": "Övervaka din energiproduktion och förbrukning",
+ "device_consumption": {
+ "add_device": "Lägg till enhet",
+ "add_stat": "Välj enhet att spåra energi för",
+ "devices": "Enheter",
+ "dialog": {
+ "device_consumption_energy": "Förbrukad energi för enheten (kWh)",
+ "header": "Lägg till en enhet",
+ "selected_stat_intro": "Välj den enhet som representerar enhetens energianvändning."
+ },
+ "learn_more": "Mer information om hur du kommer igång.",
+ "selected_stat": "Spårar energi för",
+ "sub": "Genom att spåra energianvändningen för enskilda enheter kan Home Assistant bryta ner din energianvändning per enhet.",
+ "title": "Enskilda enheter"
+ },
+ "gas": {
+ "add_gas_source": "Lägg till gaskälla",
+ "dialog": {
+ "cost_entity": "Använda en entitet med aktuellt pris",
+ "cost_entity_input": "Entitet med aktuellt pris per {unit}",
+ "cost_number": "Använd ett statiskt pris",
+ "cost_number_input": "Pris per {unit}",
+ "cost_number_suffix": "{currency}/m³",
+ "cost_para": "Välj hur Home Assistant ska hålla reda på kostnaderna för den förbrukade energin.",
+ "cost_stat": "Använd en entitet som spårar de totala kostnaderna",
+ "cost_stat_input": "Entitet för totala kostnader",
+ "energy_stat": "Förbrukad energi (m³)",
+ "gas_usage": "Gasanvändning",
+ "header": "Konfigurera gasförbrukning",
+ "m3_or_kWh": "ft³, m³, Wh, kWh eller MWh",
+ "no_cost": "Spåra inte kostnader",
+ "paragraph": "Gasförbrukning är den gasvolym som skickas till ditt hem."
+ },
+ "gas_consumption": "Gasförbrukning",
+ "learn_more": "Mer information om hur du kommer igång.",
+ "sub": "Låt Home Assistant övervaka din gasförbrukning.",
+ "title": "Gasförbrukning"
+ },
+ "grid": {
+ "add_co2_signal": "Lägg till integration för koldioxidsignal",
+ "add_consumption": "Lägg till förbrukning",
+ "add_return": "Lägg till elproduktion",
+ "flow_dialog": {
+ "from": {
+ "cost_entity": "Använda en entitet med aktuellt pris",
+ "cost_entity_input": "Entitet med aktuellt pris",
+ "cost_number": "Använd ett statiskt pris",
+ "cost_number_input": "Pris per kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Välj hur Home Assistant ska hålla reda på kostnaderna för den förbrukade energin.",
+ "cost_stat": "Använd en entitet som spårar de totala kostnaderna",
+ "cost_stat_input": "Enhet för totala kostnader",
+ "energy_stat": "Förbrukad energi (kWh)",
+ "header": "Konfigurera elnätsförbrukning",
+ "no_cost": "Spåra inte kostnader",
+ "paragraph": "Elnätsförbrukning är energin som strömmar från elnätet till ditt hem."
+ },
+ "to": {
+ "cost_entity": "Använda en entitet med aktuellt pris",
+ "cost_entity_input": "Entitet med aktuellt pris",
+ "cost_number": "Använd ett statiskt pris",
+ "cost_number_input": "Pris per kWh",
+ "cost_number_suffix": "{currency}/kWh",
+ "cost_para": "Får du pengar tillbaka när du återför energi till elnätet?",
+ "cost_stat": "Använd en entitet som spårar det totala mottagna beloppet",
+ "cost_stat_input": "Entitet för total kompensation",
+ "energy_stat": "Energi återförd till elnätet (kWh)",
+ "header": "Konfigurera elnätsproduktion",
+ "no_cost": "Jag får inte tillbaka pengar",
+ "paragraph": "Nätproduktion är energin som strömmar från dina solpaneler till elnätet."
+ }
+ },
+ "grid_carbon_footprint": "Elnätets koldioxidavtryck",
+ "grid_consumption": "Nätförbrukning",
+ "learn_more": "Mer information om hur du kommer igång.",
+ "return_to_grid": "Skicka till elnätet",
+ "sub": "Konfigurera mängden energi du förbrukar från nätet och, om du producerar energi, ger tillbaka till nätet. Detta gör att Home Assistant kan spåra hela din energiförbrukning i hemmet.",
+ "title": "Elnät"
+ },
+ "new_device_info": "Efter att du konfigurerat en ny enhet kan det ta upp till 2 timmar för ny data att komma in i din kontrollpanel för energi.",
+ "solar": {
+ "add_solar_production": "Lägg till solenergiproduktion",
+ "dialog": {
+ "add_forecast": "Lägg till prognos",
+ "dont_forecast_production": "Gör inga produktionsprognoser",
+ "forecast_production": "Prognostiserad produktion",
+ "header": "Konfigurera solpaneler",
+ "solar_production_energy": "Energi från solelproduktion (kWh)",
+ "solar_production_forecast": "Prognos för solproduktion",
+ "solar_production_forecast_description": "Genom att lägga till prognosinformation för solproduktion kan du snabbt se din förväntade produktion för idag."
+ },
+ "learn_more": "Mer information om hur du kommer igång.",
+ "solar_production": "Solpanelsproduktion",
+ "stat_predicted_production": "Förutsägelse av din solenergiproduktion",
+ "stat_production": "Din solenergiproduktion",
+ "stat_return_to_grid": "Solenergi återförd till elnätet",
+ "sub": "Låt Home Assistant övervaka dina solpaneler och ge dig inblick i deras prestanda.",
+ "title": "Solpaneler"
+ },
+ "validation": {
+ "issues": {
+ "entity_negative_state": {
+ "description": "Följande entiteter har ett negativt tillstånd medan ett positivt tillstånd förväntas:",
+ "title": "Enheten har ett negativt tillstånd"
+ },
+ "entity_not_defined": {
+ "description": "Kontrollera integreringen eller konfigurationen som tillhandahåller:",
+ "title": "Entiteten har inte definierats"
+ },
+ "entity_state_class_measurement_no_last_reset": {
+ "description": "Följande entiteter har tillståndsklassen 'measurement' men 'last_reset' saknas:",
+ "title": "Senaste återställning saknas"
+ },
+ "entity_state_non_numeric": {
+ "description": "Följande entiteter har ett tillstånd som inte kan tolkas som ett tal:",
+ "title": "Entiteten har icke-numeriskt värde"
+ },
+ "entity_unavailable": {
+ "description": "Tillståndet för dessa konfigurerade entiteter är för närvarande inte tillgängligt:",
+ "title": "Entiteten är inte tillgänglig"
+ },
+ "entity_unexpected_device_class": {
+ "description": "Följande entiteter har inte den förväntade enhetsklassen:",
+ "title": "Oväntad enhetsklass"
+ },
+ "entity_unexpected_state_class": {
+ "description": "Följande entiteter har inte den förväntade tillståndsklassen:",
+ "title": "Oväntad tillståndsklass"
+ },
+ "entity_unexpected_state_class_total_increasing": {
+ "description": "Följande entiteter har inte den förväntade tillståndsklassen 'total_increasing'",
+ "title": "Oväntad tillståndsklass"
+ },
+ "entity_unexpected_unit_energy": {
+ "description": "Följande entiteter har inte de förväntade måttenheterna 'Wh', 'kWh' eller 'MWh':",
+ "title": "Oväntad måttenhet"
+ },
+ "entity_unexpected_unit_energy_price": {
+ "description": "Följande entiteter har inte de förväntade måttenheterna ''{currency}/kWh'', ''{currency}/Wh'' eller ''{currency}/MWh'':",
+ "title": "Oväntad måttenhet"
+ },
+ "entity_unexpected_unit_gas": {
+ "description": "Följande entiteter har inte de förväntade måttenheterna 'Wh', 'kWh' eller 'MWh' för en energisensor eller 'm³'/'ft³' för en gassensor:",
+ "title": "Oväntad måttenhet"
+ },
+ "entity_unexpected_unit_gas_price": {
+ "description": "Följande entiteter har inte de förväntade måttenheterna ''{currency}/kWh'', ''{currency}/Wh'', ''{currency}/MWh'', ''{currency}/m³'' eller ''{currency}/ft³'':",
+ "title": "Oväntad måttenhet"
+ },
+ "recorder_untracked": {
+ "description": "Inspelaren har konfigurerats för att utesluta dessa konfigurerade entiteter:",
+ "title": "Entiteten spåras inte"
+ }
+ }
+ }
+ },
+ "entities": {
+ "caption": "Entiteter",
+ "description": "Översikt över alla kända entiteter",
+ "picker": {
+ "disable_selected": {
+ "button": "Inaktivera valda",
+ "confirm_text": "Inaktiverade entiteter kommer inte att läggas till i Home Assistant.",
+ "confirm_title": "Vill du inaktivera {number} {number, plural,\n one {entitet}\n other {entiteter}\n}?"
+ },
+ "enable_selected": {
+ "button": "Aktivera valda",
+ "confirm_text": "Detta kommer att göra dem tillgängliga i Home Assistant igen om de nu är inaktiverade.",
+ "confirm_title": "Vill du aktivera {number} {number, plural,\n one {entitet}\n other {entiteter}\n}?"
+ },
+ "filter": {
+ "filter": "Filter",
+ "hidden_entities": "{number} {number, plural,\n one {dold entitet}\n other {dolda entiteter}\n}",
+ "show_all": "Visa alla",
+ "show_disabled": "Visa inaktiverade entiteter",
+ "show_readonly": "Visa skrivskyddade entiteter",
+ "show_unavailable": "Visa otillgängliga entiteter"
+ },
+ "header": "Entiteter",
+ "headers": {
+ "area": "Område",
+ "disabled_by": "Inaktiverad av",
+ "entity_id": "Entitets-ID",
+ "integration": "Integration",
+ "name": "Namn",
+ "status": "Status"
+ },
+ "introduction": "Home Assistant har ett entitetsregister som innehåller samtliga identifierade entiteter som någonsin har setts. Var och en av dessa entiteter kommer att ha ett ID-nummer som är reserverat för bara den entiteten.",
+ "introduction2": "Använd entitetsregistret för att överskida namnet, ändra entitets-ID eller ta bort posten från Home Assistant.",
+ "remove_selected": {
+ "button": "Ta bort valda",
+ "confirm_partly_text": "Du kan bara ta bort {removable} av de valda {selected} enheterna. Enheter kan endast tas bort när integrationen inte längre tillhandahåller enheterna. Ibland måste du starta om Home Assistant innan du kan ta bort enheterna för en borttagen integration. Är du säker på att du vill ta bort de flyttbara enheterna?",
+ "confirm_partly_title": "Endast {number} {number, plural,\n one {vald entitet}\n other {valda entiteter}\n} kan tas bort.",
+ "confirm_text": "Du bör ta bort dem från din Lovelace-konfiguration och automatisering om de innehåller dessa entiteter.",
+ "confirm_title": "Vill du ta bort {number} {number, plural,\n one {entitet}\n other {entiteter}\n}?"
+ },
+ "search": "Sök entiteter",
+ "selected": "{number} valda",
+ "status": {
+ "disabled": "Inaktiverad",
+ "ok": "Ok",
+ "readonly": "Skrivskyddad",
+ "restored": "Återställd",
+ "unavailable": "Inte tillgänglig"
+ }
+ }
+ },
+ "header": "Konfigurera Home Assistant",
+ "helpers": {
+ "caption": "Hjälpare",
+ "description": "Hantera element som kan hjälpa till att bygga automatiseringar",
+ "dialog": {
+ "add_helper": "Lägg till hjälpare",
+ "add_platform": "Lägg till {platform}",
+ "create": "Skapa"
+ },
+ "picker": {
+ "add_helper": "Lägg till hjälpare",
+ "headers": {
+ "editable": "Redigerbar",
+ "entity_id": "Entitets-ID",
+ "name": "Namn",
+ "type": "Typ"
+ },
+ "no_helpers": "Det verkar som att du inte har några hjälpare än!"
+ },
+ "types": {
+ "counter": "Räknare",
+ "input_boolean": "Växla",
+ "input_button": "Knapp",
+ "input_datetime": "Datum och/eller tid",
+ "input_number": "Nummer",
+ "input_select": "Rullgardinsmenyn",
+ "input_text": "Text",
+ "timer": "Timer"
+ }
+ },
+ "info": {
+ "built_using": "Byggt med",
+ "caption": "Info",
+ "copy_github": "För GitHub",
+ "copy_menu": "Kopiera meny",
+ "copy_raw": "Rå text",
+ "custom_uis": "Anpassade användargränssnitt:",
+ "description": "Version, systemhälsa och länkar till dokumentation",
+ "developed_by": "Utvecklad av ett gäng grymma människor.",
+ "documentation": "Dokumentation",
+ "frontend": "frontend-UI",
+ "frontend_version": "Frontend-version: {version} - {type}",
+ "home_assistant_logo": "Home Assistant logotyp",
+ "icons_by": "Ikoner av",
+ "integrations": "Integrationer",
+ "issues": "Problem",
+ "license": "Publicerad under Apache 2.0-licensen",
+ "path_configuration": "Sökväg till configuration.yaml: {path}",
+ "server": "server",
+ "setup_time": "Installationstid",
+ "source": "Källkod:",
+ "system_health": {
+ "manage": "Hantera",
+ "more_info": "mer information"
+ },
+ "system_health_error": "Systemhälsokomponenten har inte lästs in. Lägg till 'system_health:' i configuration.yaml"
+ },
+ "integrations": {
+ "add_integration": "Lägg till integration",
+ "attention": "Uppmärksamhet krävs",
+ "caption": "Integrationer",
+ "config_entry": {
+ "area": "I {area}",
+ "check_the_logs": "Kontrollera loggarna",
+ "configure": "Konfigurera",
+ "delete": "Ta bort",
+ "delete_confirm": "Är du säker på att du vill radera {title}-integrationen?",
+ "depends_on_cloud": "Förlitar sig på molnet",
+ "device_unavailable": "Enhet otillgänglig",
+ "devices": "{count} {count, plural,\n one {enhet}\n other {enheter}\n}",
+ "disable": {
+ "disable_confirm": "Vill du inaktivera den här konfigurationsposten? Dess enheter och entiteter kommer att inaktiveras.",
+ "disabled": "Inaktiverad",
+ "disabled_by": {
+ "device": "enhet",
+ "integration": "integration",
+ "user": "användare"
+ },
+ "disabled_cause": "Inaktiverad på grund av {cause}"
+ },
+ "disable_error": "Aktivering eller inaktivering av integrationen misslyckades",
+ "disable_restart_confirm": "Starta om Home Assistant för att slutföra inaktiveringen av denna integration",
+ "disabled_polling": "Automatisk polling för uppdaterade data inaktiverad",
+ "documentation": "Dokumentation",
+ "download_diagnostics": "Ladda ner diagnostik",
+ "enable_restart_confirm": "Starta om Home Assistant för att slutföra aktiveringen av denna integration",
+ "entities": "{count} {count, plural,\n one {entitet}\n other {entiteter}\n}",
+ "entity_unavailable": "Entitet otillgänglig",
+ "firmware": "Firmware: {version}",
+ "hardware": "Hårdvara: {version}",
+ "hub": "Ansluten via",
+ "known_issues": "Kända problem",
+ "manuf": "av {manufacturer}",
+ "no_area": "Inget område",
+ "not_loaded": "Inte laddad",
+ "open_configuration_url": "Besök enhet",
+ "provided_by_custom_integration": "Tillhandahålls av en anpassad integration",
+ "reload": "Ladda om",
+ "reload_confirm": "Integrationen laddades om",
+ "reload_restart_confirm": "Starta om Home Assistant för att slutföra omladdningen av denna integration",
+ "rename": "Döp om",
+ "restart_confirm": "Starta om Home Assistant för att slutföra borttagningen av denna integration",
+ "services": "{count} {count, plural,\n one {tjänst}\n other {tjänster}\n}",
+ "state": {
+ "failed_unload": "Det gick inte att avlasta",
+ "loaded": "Laddad",
+ "migration_error": "Migreringsfel",
+ "not_loaded": "Inte laddad",
+ "setup_error": "Det gick inte att ställa in",
+ "setup_retry": "Försöker konfigurera igen"
+ },
+ "system_options": "Systemalternativ",
+ "unknown_via_device": "Okänd enhet",
+ "unnamed_entry": "Namnlös post",
+ "via": "Ansluten via"
+ },
+ "config_flow": {
+ "aborted": "Avbruten",
+ "close": "Stäng",
+ "could_not_load": "Konfigurationsflödet kunde inte laddas",
+ "created_config": "Skapad konfiguration för {name}.",
+ "dismiss": "Avfärda dialogrutan",
+ "error": "Fel",
+ "error_saving_area": "Fel vid sparande av område: {error}",
+ "external_step": {
+ "description": "Det här steget kräver att du besöker en extern webbplats för att slutföra.",
+ "open_site": "Öppna webbplats"
+ },
+ "finish": "Slutför",
+ "loading": {
+ "fallback_title": "integrationen",
+ "loading_flow": "Vänta medan {integration} konfigureras",
+ "loading_step": "Laddar nästa steg för {integration}"
+ },
+ "next": "Nästa",
+ "not_all_required_fields": "Alla obligatoriska fält har inte fyllts i.",
+ "not_loaded": "Integrationen kunde inte laddas, försök att starta om Home Assistant.",
+ "pick_flow_step": {
+ "new_flow": "Nej, skapa en annan instans av {integration}",
+ "title": "Vi upptäckte dessa, vill du konfigurera dem?"
+ },
+ "submit": "Spara"
+ },
+ "configure": "Konfigurera",
+ "configured": "Konfigurerad",
+ "confirm_new": "Vill du konfigurera {integration}?",
+ "description": "Hantera integrationer med tjänster, enheter, …",
+ "details": "Integrationsdetaljer",
+ "disable": {
+ "disabled_integrations": "{number} inaktiverad(e)",
+ "show": "Visa",
+ "show_disabled": "Visa inaktiverade integrationer"
+ },
+ "discovered": "Upptäckt",
+ "home_assistant_website": "Home Assistants hemsida",
+ "ignore": {
+ "confirm_delete_ignore": "Detta kommer att få integrationen att visas i dina upptäckta integrationer igen när den upptäcks. Detta kan kräva omstart eller ta lite tid.",
+ "confirm_delete_ignore_title": "Sluta ignorera {name}?",
+ "confirm_ignore": "Är du säker på att du inte vill konfigurera denna integration? Du kan ångra detta genom att klicka på 'Visa ignorerade integrationer' i menyn längst upp till höger.",
+ "confirm_ignore_title": "Ignorera upptäckten av {name}?",
+ "ignore": "Ignorera",
+ "ignored": "Ignorerad",
+ "show_ignored": "Visa ignorerade integrationer",
+ "stop_ignore": "Sluta ignorera"
+ },
+ "integration": "integration",
+ "integration_not_found": "Integration hittades inte.",
+ "new": "Skapa en ny integration",
+ "no_integrations": "Verkar som att du inte har konfigurerat några integrationer. Klicka på knappen nedan för att lägga till din första integration!",
+ "none": "Ingenting konfigurerat än",
+ "none_found": "Inga integrationer hittades",
+ "none_found_detail": "Justera dina sökkriterier.",
+ "note_about_integrations": "Inte alla integrationer kan konfigureras via användargränssnittet ännu.",
+ "note_about_website_reference": "Fler finns på ",
+ "reconfigure": "Konfigurera om",
+ "rename_dialog": "Redigera namnet på den här konfigurationsposten",
+ "rename_input_label": "Ange namn",
+ "search": "Sök integrationer"
+ },
+ "introduction": "Här går det att konfigurera dina komponenter och Home Assistant. Det är inte möjligt att ställa in allt från användargränssnittet ännu, men vi jobbar på det.",
+ "logs": {
+ "caption": "Loggar",
+ "clear": "Rensa",
+ "copy": "Kopiera loggpost",
+ "custom_integration": "anpassad integration",
+ "description": "Visa Home Assistant loggarna",
+ "details": "Logginformation ({level})",
+ "error_from_custom_integration": "Felet härrör från en anpassad integration.",
+ "level": {
+ "critical": "KRITISK",
+ "debug": "DEBUG",
+ "error": "FEL",
+ "info": "INFO",
+ "warning": "VARNING"
+ },
+ "load_full_log": "Ladda hela Home Assistant-loggen",
+ "loading_log": "Läser in fellogg...",
+ "multiple_messages": "Meddelandet inträffade först {time} och har hänt {counter} gånger",
+ "no_errors": "Inga fel har rapporterats.",
+ "no_issues": "Det finns inga nya problem!",
+ "refresh": "Uppdatera"
+ },
+ "lovelace": {
+ "caption": "Lovelace kontrollpaneler",
+ "dashboards": {
+ "cant_edit_default": "Det går inte att redigera standardkontrollpanelen för Lovelace från användargränssnittet. Du kan dölja den genom att ange en annan kontrollpanel som standard.",
+ "cant_edit_yaml": "Kontrollpaneler som definieras i YAML kan inte redigeras från användargränssnittet. Ändra dem i configuration.yaml.",
+ "caption": "Kontrollpaneler",
+ "conf_mode": {
+ "storage": "UI-kontrollerad",
+ "yaml": "YAML-fil"
+ },
+ "confirm_delete": "Är du säker på att du vill radera denna kontrollpanel?",
+ "confirm_delete_text": "Din kontrollpanel raderas permanent.",
+ "confirm_delete_title": "Radera {dashboard_title}?",
+ "default_dashboard": "Detta är standardkontrollpanelen",
+ "detail": {
+ "create": "Skapa",
+ "delete": "Ta bort",
+ "dismiss": "Stäng",
+ "edit_dashboard": "Redigera kontrollpanel",
+ "icon": "Ikon",
+ "new_dashboard": "Lägg till ny kontrollpanel",
+ "remove_default": "Ta bort som standard på den här enheten",
+ "require_admin": "Endast admin",
+ "set_default": "Ange som standard på den här enheten",
+ "show_sidebar": "Visa i sidofältet",
+ "title": "Titel",
+ "title_required": "Titel krävs.",
+ "update": "Uppdatera",
+ "url": "URL",
+ "url_error_msg": "URL adressen ska innehålla ett '-' och kan inte innehålla mellanslag eller specialtecken, med undantag för '_ ' och '-'"
+ },
+ "picker": {
+ "add_dashboard": "Lägg till kontrollpanel",
+ "headers": {
+ "conf_mode": "Konfigurationsmetod",
+ "default": "Standard",
+ "filename": "Filnamn",
+ "require_admin": "Endast admin",
+ "sidebar": "Visa i sidofältet",
+ "title": "Titel"
+ },
+ "open": "Öppna"
+ }
+ },
+ "description": "Skapa anpassade kortuppsättningar för att styra ditt hem",
+ "resources": {
+ "cant_edit_yaml": "Du använder Lovelace i YAML-läge, därför kan du inte sköta dina resurser genom användargränssnittet. Du får göra det i configuration.yaml istället.",
+ "caption": "Resurser",
+ "confirm_delete": "Är du säker på att du vill ta bort denna resurs?",
+ "detail": {
+ "create": "Skapa",
+ "delete": "Radera",
+ "dismiss": "Stäng",
+ "new_resource": "Lägg till ny resurs",
+ "type": "Resurstyp",
+ "update": "Uppdatera",
+ "url": "URL",
+ "url_error_msg": "URL är ett obligatoriskt fält",
+ "warning_header": "Var försiktig!",
+ "warning_text": "Att lägga till resurser kan vara farligt, var säker på att du känner till källan till resursen och litar på den. Dåliga resurser kan skada ditt system allvarligt."
+ },
+ "picker": {
+ "add_resource": "Lägg till resurs",
+ "headers": {
+ "type": "Typ",
+ "url": "URL"
+ },
+ "no_resources": "Inga resurser"
+ },
+ "refresh_body": "Du behöver uppdatera sidan för att fortsätta med borttagningen, vill du uppdatera nu?",
+ "refresh_header": "Vill du uppdatera?",
+ "types": {
+ "css": "Formatmall",
+ "html": "HTML (utgått)",
+ "js": "JavaScript-fil (utgått)",
+ "module": "JavaScript-modul"
+ }
+ }
+ },
+ "mqtt": {
+ "description_listen": "Lyssna på ett ämne",
+ "description_publish": "Publicera ett paket",
+ "listening_to": "Lyssnar på",
+ "message_received": "Meddelande {id} mottaget på {topic} vid {time} :",
+ "payload": "Payload (mall tillåten)",
+ "publish": "Publicera",
+ "start_listening": "Börja lyssna",
+ "stop_listening": "Sluta lyssna",
+ "subscribe_to": "Ämne att prenumerera på",
+ "title": "MQTT",
+ "topic": "ämne"
+ },
+ "ozw": {
+ "common": {
+ "controller": "Kontroller",
+ "instance": "Instans",
+ "network": "Nätverk",
+ "node_id": "Nod-ID",
+ "ozw_instance": "OpenZWave-instans",
+ "query_stage": "Frågestadium",
+ "wakeup_instructions": "Väckningsinstruktioner",
+ "zwave": "Z-Wave"
+ },
+ "device_info": {
+ "node_failed": "Noden misslyckades",
+ "stage": "Steg",
+ "zwave_info": "Z-Wave info"
+ },
+ "navigation": {
+ "network": "Nätverk",
+ "node": {
+ "config": "Konfiguration",
+ "dashboard": "Instrumentpanel"
+ },
+ "nodes": "Noder",
+ "select_instance": "Välj instans"
+ },
+ "network": {
+ "header": "Nätverkshantering",
+ "introduction": "Hantera nätverksövergripande funktioner.",
+ "node_count": "{count} noder"
+ },
+ "network_status": {
+ "details": {
+ "driverallnodesqueried": "Alla noder har frågats",
+ "driverallnodesqueriedsomedead": "Alla noder har ifrågasatts. Vissa noder hittades döda",
+ "driverawakenodesqueries": "Alla vakna noder har ifrågasatts",
+ "driverfailed": "Det gick inte att ansluta till Z-Wave-styrenheten",
+ "driverready": "Initierar Z-Wave-styrenheten",
+ "driverremoved": "Drivrutinen har tagits bort",
+ "driverreset": "Drivrutinen har återställts",
+ "offline": "OZWDaemon är offline",
+ "ready": "Redo att ansluta",
+ "started": "Ansluten till MQTT",
+ "starting": "Ansluter till MQTT",
+ "stopped": "OpenZWave har stoppats"
+ },
+ "offline": "Offline",
+ "online": "Online",
+ "starting": "Startar",
+ "unknown": "Okänd"
+ },
+ "node": {
+ "button": "Noddetaljer",
+ "not_found": "Noden hittades inte"
+ },
+ "node_config": {
+ "header": "Nodkonfiguration",
+ "help_source": "Konfig-parameterbeskrivningar och hjälptext tillhandahålls av OpenZWave-projektet.",
+ "introduction": "Hantera de olika konfigurationsparametrarna för en Z-Wave-nod.",
+ "wakeup_help": "Batteridrivna noder måste vara vaken för att ändra konfigurationen. Om noden inte är vaken kommer OpenZWave att försöka uppdatera nodens konfiguration nästa gång den vaknar, vilket kan vara flera timmar (eller dagar) senare. Följ dessa steg för att väcka enheten:"
+ },
+ "node_metadata": {
+ "product_manual": "Produktmanual"
+ },
+ "node_query_stages": {
+ "associations": "Uppdaterar associationsgrupper och medlemskap",
+ "cacheload": "Laddar information från OpenZWave-cachefilen. Batterinoder förblir i detta skede tills noden vaknar.",
+ "complete": "Intervjuprocessen är klar",
+ "configuration": "Hämtar konfigurationsvärden från noden",
+ "dynamic": "Hämtar värden som ofta ändras från noden",
+ "instances": "Inhämtar detaljer om vilka instanser eller kanaler en enhet stöder",
+ "manufacturerspecific1": "Inhämtar tillverkar- och produkt-ID-koder från noden",
+ "manufacturerspecific2": "Skaffa ytterligare tillverkar- och produkt-ID-koder från noden",
+ "neighbors": "Hämtar en lista över nodens grannar",
+ "nodeinfo": "Skaffa kommandoklasser som stöds från noden",
+ "nodeplusinfo": "Hämtar Z-Wave+-information från noden",
+ "probe": "Kontrollera om noden är vaken / levande",
+ "protocolinfo": "Hämta grundläggande Z-Wave-funktioner för denna nod från styrenheten",
+ "session": "Hämtar värden som sällan ändras från noden",
+ "static": "Hämtar statiska värden från enheten",
+ "versions": "Inhämtar information om firmware och kommandoklassversioner",
+ "wakeup": "Ställa in stöd för väckarköer och meddelanden"
+ },
+ "nodes_table": {
+ "failed": "Misslyckades",
+ "id": "ID",
+ "manufacturer": "Tillverkare",
+ "model": "Modell",
+ "query_stage": "Frågestadium",
+ "zwave_plus": "Z-Wave Plus"
+ },
+ "refresh_node": {
+ "battery_note": "Om noden är batteridriven, se till att väcka den innan du fortsätter",
+ "button": "Uppdatera nod",
+ "complete": "Uppdatering av noden är klar",
+ "description": "Detta kommer att be OpenZWave att åter intervjua en nod och uppdatera nodens kommandoklasser, förmågor och värden.",
+ "node_status": "Nodstatus",
+ "refreshing_description": "Uppdaterar information om noderna…",
+ "start_refresh_button": "Starta uppdatering",
+ "step": "Steg",
+ "title": "Uppdatera information om noderna",
+ "wakeup_header": "Väckningsinstruktioner för",
+ "wakeup_instructions_source": "Väckningsinstruktioner hämtas från OpenZWave community-databasen."
+ },
+ "select_instance": {
+ "header": "Välj en OpenZWave-instans",
+ "introduction": "Du har mer än en OpenZWave-instans som körs. Vilken instans vill du hantera?",
+ "none_found": "Vi kunde inte hitta en OpenZWave-instans. Om du tror detta är fel, kontrollera dina OpenZWave- och MQTT-inställningar och se till att Home Assistant kan kommunicera med din MQTT-broker."
+ },
+ "services": {
+ "add_node": "Lägg till nod",
+ "cancel_command": "Avbryt kommandot",
+ "remove_node": "Ta bort nod"
+ }
+ },
+ "person": {
+ "add_person": "Lägg till person",
+ "caption": "Personer",
+ "confirm_delete": "Är du säker på att du vill ta bort den här personen?",
+ "confirm_delete2": "Alla enheter som tillhör denna person kommer att bli bortkopplade.",
+ "create_person": "Skapa person",
+ "description": "Hantera personer som Home Assistant spårar",
+ "detail": {
+ "admin": "Adminstratör",
+ "allow_login": "Tillåt person att logga in",
+ "confirm_delete_user": "Vill du verkligen bort användarkontot för {name}? Du kan fortfarande spåra användaren men personen kommer inte längre att kunna logga in.",
+ "create": "Skapa",
+ "delete": "Ta bort",
+ "device_tracker_intro": "Välj de enheter som tillhör till den här personen.",
+ "device_tracker_pick": "Välj enhet att spåra",
+ "device_tracker_picked": "Spåra enheten",
+ "link_integrations_page": "Integrationssidan",
+ "link_presence_detection_integrations": "Närvarodetekteringsintegrationer",
+ "linked_user": "Kopplad användare",
+ "local_only": "Kan endast logga in från det lokala nätverket",
+ "name": "Namn",
+ "name_error_msg": "Namn krävs",
+ "new_person": "Ny person",
+ "no_device_tracker_available_intro": "När du har enheter som indikerar närvaron av en person, kommer du att kunna tilldela dem till en person här. Du kan lägga till din första enhet genom att lägga till en närvarodetekteringsintegration på sidan Integrationer.",
+ "update": "Uppdatera"
+ },
+ "introduction": "Här kan du definiera personer av intresse för Home Assistant.",
+ "learn_more": "Lär dig mer om personer",
+ "no_persons_created_yet": "Det verkar som att du inte har skapat några personer ännu.",
+ "note_about_persons_configured_in_yaml": "Observera: personer som konfigureras via configuration.yaml kan inte redigeras via det grafiska gränssnittet.",
+ "person_not_found": "Vi kunde inte hitta personen du försökte redigera.",
+ "person_not_found_title": "Personen hittades inte"
+ },
+ "scene": {
+ "activated": "Aktiverat scenario {name} .",
+ "caption": "Scenarier",
+ "description": "Fånga enhetstillstånd och återkalla dem lätt senare",
+ "editor": {
+ "area": "Område",
+ "default_name": "Nytt scenario",
+ "devices": {
+ "add": "Lägg till en enhet",
+ "delete": "Ta bort enhet",
+ "header": "Enheter",
+ "introduction": "Lägg till enheterna som du vill inkludera i ditt scenario. Sätt alla enheter till det tillstånd du vill ha för detta scenario."
+ },
+ "entities": {
+ "add": "Lägg till en entitet",
+ "delete": "Ta bort entitet",
+ "device_entities": "Om du lägger till en entitet som tillhör en enhet kommer enheten att läggas till.",
+ "header": "Entiteter",
+ "introduction": "Entiteter som inte tillhör en enhet kan ställas in här.",
+ "without_device": "Entiteter utan enhet"
+ },
+ "icon": "Ikon",
+ "introduction": "Använd scenarier för väcka liv i ditt hem.",
+ "load_error_not_editable": "Endast scenarier i scenes.yaml kan redigeras.",
+ "load_error_unknown": "Fel vid inläsning av scenario ({err_no}).",
+ "name": "Namn",
+ "save": "Spara",
+ "unsaved_confirm": "Du har osparade ändringar. Är du säker på att du vill lämna?"
+ },
+ "picker": {
+ "add_scene": "Lägg till scenario",
+ "delete_confirm": "Är du säker på att du vill radera detta scenario?",
+ "delete_scene": "Ta bort scenario",
+ "duplicate": "Duplicera",
+ "duplicate_scene": "Duplicera scen",
+ "edit_scene": "Redigera scenario",
+ "header": "Scenarieredigerare",
+ "headers": {
+ "name": "Namn"
+ },
+ "introduction": "Scenarieredigeraren låter dig skapa och redigera scenario. Följ länken nedan för att läsa instruktionerna för att se till att du har konfigurerat Home Assistant korrekt.",
+ "learn_more": "Läs dig mer om scenarier",
+ "no_scenes": "Vi kunde inte hitta några redigerbara scenarier",
+ "only_editable": "Endast scenarier definierade i scenes.yaml kan redigeras.",
+ "pick_scene": "Välj scenario att redigera",
+ "show_info_scene": "Visa info om scenario"
+ }
+ },
+ "script": {
+ "caption": "Skript",
+ "description": "Utför en sekvens av åtgärder",
+ "editor": {
+ "alias": "Namn",
+ "default_name": "Nytt skript",
+ "delete_confirm": "Är du säker på att du vill ta bort det här skriptet?",
+ "delete_script": "Ta bort skript",
+ "header": "Skript: {name}",
+ "icon": "Ikon",
+ "id": "Entitets-ID",
+ "id_already_exists": "Detta ID finns redan",
+ "id_already_exists_save_error": "Det går inte att spara detta skript eftersom nuvarande ID inte är unikt. Välj ett annat ID eller lämna tomt för att generera ett automatiskt.",
+ "introduction": "Använd skript för att utföra en sekvens.",
+ "link_available_actions": "Lär dig mer om tillgängliga händelser",
+ "load_error_not_editable": "Endast skript i scripts.yaml kan redigeras.",
+ "max": {
+ "parallel": "Max antal parallella körningar",
+ "queued": "Kölängd"
+ },
+ "modes": {
+ "description": "Läget styr vad som händer när skriptet anropas medan det fortfarande kör. Mer information finns i {documentation_link}.",
+ "documentation": "Skriptdokumentation",
+ "label": "Läge",
+ "parallel": "Parallell",
+ "queued": "På kö",
+ "restart": "Starta om",
+ "single": "Enkel (standard)"
+ },
+ "save_script": "Spara skript",
+ "sequence": "Sekvens",
+ "sequence_sentence": "Handlingssekvensen för detta skript.",
+ "show_trace": "Visa spårning"
+ },
+ "picker": {
+ "add_script": "Lägg till nytt skript",
+ "dev_script": "Felsökningsskript",
+ "duplicate": "Duplicera",
+ "duplicate_script": "Duplicera skript",
+ "edit_script": "Redigera skript",
+ "header": "Skript-redigerare",
+ "headers": {
+ "name": "Namn"
+ },
+ "introduction": "Skriptredigeraren låter dig skapa och redigera skript. Följ länken nedan för att läsa instruktionerna för att se till att du har konfigurerat Home Assistant korrekt.",
+ "learn_more": "Lär dig mer om skript",
+ "no_scripts": "Vi kunde inte hitta några redigerbara skript",
+ "run_script": "Kör skript",
+ "show_info": "Visa information om skript"
+ }
+ },
+ "server_control": {
+ "caption": "Serverhantering",
+ "description": "Starta om och stoppa Home Assistant-servern",
+ "section": {
+ "reloading": {
+ "automation": "Automatisering",
+ "command_line": "Ladda om command line entiteter",
+ "core": "Ladda om plats & anpassningar",
+ "filesize": "Ladda om filstorleks-entiteter",
+ "filter": "Ladda om filterentiteter",
+ "generic": "Ladda om generella IP kamera entiteter",
+ "generic_thermostat": "Ladda om standard termometer entiteter",
+ "group": "Ladda om grupper, gruppentiteter och aviseringstjänster",
+ "heading": "YAML-konfiguration laddas om",
+ "history_stats": "Ladda om historiskstatistik entiteter",
+ "homekit": "Ladda om HomeKit",
+ "input_boolean": "Ladda om inmatning av booleska värden",
+ "input_button": "Inmatningsknappar",
+ "input_datetime": "Ladda om inmatningsdatum/tid",
+ "input_number": "Ladda om inmatningsnummer",
+ "input_select": "Ladda om inmatningsväljare",
+ "input_text": "Ladda om inmatningstext",
+ "introduction": "Vissa delar av Home Assistant kan laddas om utan att en omstart krävs. Att trycka på \"ladda om\" innebär att den nuvarande konfiguration inaktiveras och den nya laddas.",
+ "min_max": "Min/max entiteter",
+ "mqtt": "Ladda om MQTT-entiteter",
+ "person": "Personer",
+ "ping": "Ladda om ping binära sensor-entiteter",
+ "reload": " {domain}",
+ "rest": "Ladda om rest entiteter och aviseringstjänster",
+ "rpi_gpio": "Raspberry Pi GPIO-entiteter",
+ "scene": "Scenarier",
+ "script": "Skript",
+ "smtp": "SMTP aviseringstjänster",
+ "statistics": "Ladda om statistik-entiteter",
+ "telegram": "Telegram aviseringstjänster",
+ "template": "Ladda om mallar för entiteter",
+ "themes": "Teman",
+ "timer": "Ladda om timers",
+ "trend": "Ladda om trend-entiteter",
+ "universal": "Ladda om universella mediespelare entiteter",
+ "zone": "Zoner"
+ },
+ "server_management": {
+ "confirm_restart": "Är du säker på att du vill starta om Home Assistant?",
+ "confirm_stop": "Är du säker på att du vill stoppa Home Assistant?",
+ "heading": "Serverhantering",
+ "introduction": "Kontrollera din Home Assistant.",
+ "restart": "Starta om",
+ "stop": "Stoppa"
+ },
+ "validation": {
+ "check_config": "Kontrollera konfigurationen",
+ "heading": "Validering av konfiguration",
+ "introduction": "Kontrollera din konfiguration om du nyligen gjort ändringar och du vill säkerställa att den är giltig",
+ "invalid": "Konfigurationen är inte giltig",
+ "valid": "Konfigurationen är giltig!"
+ }
+ }
+ },
+ "tag": {
+ "add_tag": "Lägg till tagg",
+ "automation_title": "Taggen {name} är skannad",
+ "caption": "Taggar",
+ "confirm_remove": "Är du säker på att du vill ta bort taggen {tag}?",
+ "confirm_remove_title": "Ta bort taggen?",
+ "create_automation": "Skapa automatisering med tagg",
+ "description": "Utlös automatiseringar när en NFC-tagg, QR-kod etc. skannas",
+ "detail": {
+ "companion_apps": "tillhörande appar",
+ "create": "Skapa",
+ "create_and_write": "Skapa och redigera",
+ "delete": "Ta bort",
+ "description": "Beskrivning",
+ "name": "Namn",
+ "new_tag": "Ny tagg",
+ "tag_id": "Tagg-ID",
+ "tag_id_placeholder": "Autogenereras när det lämnas tomt",
+ "update": "Uppdatera",
+ "usage": "En tagg kan utlösa en automatisering när den skannas, du kan använda NFC-taggar, QR-koder eller någon annan typ av tagg. Använd vår {companion_link} till att skriva den här taggen till en programmerbar NFC-tagg eller skapa en QR-kod nedan."
+ },
+ "edit": "Redigera",
+ "headers": {
+ "last_scanned": "Senast skannad",
+ "name": "Namn"
+ },
+ "learn_more": "Lär dig mer om utlösare",
+ "never_scanned": "Aldrig skannad",
+ "no_tags": "Inga taggar",
+ "write": "Redigera"
+ },
+ "updates": {
+ "more_updates": "+ {count} Uppdateringar",
+ "review": "granska",
+ "show": "visa",
+ "show_all_updates": "Visa alla uppdateringar",
+ "title": "{count} {count, plural,\n one {uppdatering}\n other {uppdateringar}\n}",
+ "unable_to_fetch": "Det gick inte att hämta tillgängliga uppdateringar",
+ "version_available": "Version {version_available} är tillgänglig"
+ },
+ "users": {
+ "add_user": {
+ "caption": "Lägg till användare",
+ "create": "Skapa",
+ "local_only": "Endast lokalt",
+ "password": "Lösenord",
+ "password_confirm": "Bekräfta lösenord",
+ "password_not_match": "Lösenorden överensstämmer inte"
+ },
+ "caption": "Användare",
+ "description": "Hantera användare",
+ "editor": {
+ "activate_user": "Aktivera användare",
+ "active": "Aktiva",
+ "active_tooltip": "Styr om en användare kan logga in",
+ "admin": "Administratör",
+ "caption": "Visa användare",
+ "change_password": "Ändra lösenord",
+ "confirm_user_deletion": "Är du säker på att du vill ta bort {name} ?",
+ "deactivate_user": "Avaktivera användare",
+ "delete_user": "Ta bort användare",
+ "group": "Grupp",
+ "id": "ID",
+ "local_only": "Kan endast logga in från det lokala nätverket",
+ "name": "Namn",
+ "new_password": "Nytt lösenord",
+ "owner": "Ägare",
+ "password_changed": "Lösenordet har ändrats!",
+ "system_generated": "Systemanvändare",
+ "system_generated_users_not_editable": "Det gick inte att uppdatera systemgenererade användare.",
+ "system_generated_users_not_removable": "Det går inte att ta bort systemanvändare.",
+ "unnamed_user": "Namnlös användare",
+ "update_user": "Uppdatera",
+ "username": "Användarnamn"
+ },
+ "is_local": "Lokal användare",
+ "is_not_active": "Inaktiverad",
+ "is_owner": "Ägare",
+ "is_system": "Systemanvändare",
+ "picker": {
+ "add_user": "Lägg till användare",
+ "headers": {
+ "group": "Grupp",
+ "is_active": "Aktiv",
+ "is_owner": "Ägare",
+ "local": "Endast lokalt",
+ "name": "Namn",
+ "system": "System",
+ "username": "Användarnamn"
+ }
+ },
+ "users_privileges_note": "Användargruppen är under konstruktion. Användaren kommer inte att kunna administrera instansen via användargränssnittet. Vi granskar fortfarande alla API-slutpunkter för att försäkra att de korrekt begränsar åtkomst till endast administratörer."
+ },
+ "zha": {
+ "add_device": "Lägg till en enhet",
+ "add_device_page": {
+ "discovered_text": "Enheterna kommer att dyka upp här när de upptäckts.",
+ "no_devices_found": "Inga enheter hittade, se till att dom är i parningsläge och håll dom aktiva medan sökning sker.",
+ "pairing_mode": "Se till att dina enheter är i parningsläge. Kontrollera instruktionerna för din enhet om hur du gör det.",
+ "search_again": "Sök Igen",
+ "spinner": "Söker efter ZHA Zigbee-enheter…"
+ },
+ "cluster_attributes": {
+ "attributes_of_cluster": "Attribut för det valda klustret",
+ "get_zigbee_attribute": "Hämta Zigbee-attribut",
+ "header": "Klusterattribut",
+ "help_attribute_dropdown": "Välj ett attribut för att visa eller ange dess värde.",
+ "help_get_zigbee_attribute": "Få värdet för det valda attributet.",
+ "help_set_zigbee_attribute": "Ange attributvärde för det angivna klustret på den angivna entiteten.",
+ "introduction": "Visa och redigera klusterattribut.",
+ "set_zigbee_attribute": "Ange zigbee-attribut"
+ },
+ "cluster_commands": {
+ "commands_of_cluster": "Kommandon för det valda klustret",
+ "header": "Klusterkommandon",
+ "help_command_dropdown": "Välj ett kommando att interagera med.",
+ "introduction": "Visa och utfärda klusterkommandon.",
+ "issue_zigbee_command": "Utfärda Zigbee-kommando"
+ },
+ "clusters": {
+ "header": "Kluster",
+ "help_cluster_dropdown": "Välj ett kluster om du vill visa attribut och kommandon.",
+ "introduction": "Kluster är byggstenarna för Zigbee-funktionalitet. De separerar funktionalitet i logiska enheter. Det finns klient- och servertyper som består av attribut och kommandon."
+ },
+ "common": {
+ "clusters": "Kluster",
+ "manufacturer_code_override": "Överskrid kod av tillverkare",
+ "value": "Värde"
+ },
+ "configuration_page": {
+ "shortcuts_title": "Genvägar",
+ "update_button": "Uppdatera konfigurationen"
+ },
+ "device_pairing_card": {
+ "CONFIGURED": "Konfigurationen är klar",
+ "CONFIGURED_status_text": "Initierar",
+ "INITIALIZED": "Initiering klar",
+ "INITIALIZED_status_text": "Enheten är redo att användas",
+ "INTERVIEW_COMPLETE": "Intervju klar",
+ "INTERVIEW_COMPLETE_status_text": "Konfigurerar",
+ "PAIRED": "Enheten hittades",
+ "PAIRED_status_text": "Startar intervju"
+ },
+ "group_binding": {
+ "bind_button_help": "Bind den valda gruppen till de valda enhetsklustren.",
+ "bind_button_label": "Bind grupp",
+ "cluster_selection_help": "Välj kluster för att binda till den valda gruppen.",
+ "group_picker_help": "Välj en grupp för att utfärda ett bind-kommando.",
+ "group_picker_label": "Bindbara grupper",
+ "header": "Gruppbindning",
+ "introduction": "Binda och avlasta grupper.",
+ "unbind_button_help": "Ta bort bindningen för den markerade gruppen från de valda enhetsklustren.",
+ "unbind_button_label": "Avlasta gruppen"
+ },
+ "groups": {
+ "add_group": "Lägg till grupp",
+ "add_members": "Lägg till medlemmar",
+ "caption": "Grupper",
+ "create": "Skapa grupp",
+ "create_group": "ZigBee Hemautomation - Skapa grupp",
+ "create_group_details": "Ange de uppgifter som krävs för att skapa en ny ZigBee-grupp",
+ "creating_group": "Skapar grupp",
+ "delete": "Ta bort grupp",
+ "group_details": "Här är alla detaljer för den valda Zigbee-gruppen.",
+ "group_id": "Grupp-ID",
+ "group_info": "Gruppinformation",
+ "group_name_placeholder": "Gruppnamn",
+ "group_not_found": "Gruppen hittades inte!",
+ "groups": "Grupper",
+ "members": "Medlemmar",
+ "remove_members": "Ta bort medlemmar",
+ "removing_members": "Tar bort medlemmar"
+ },
+ "network": {
+ "caption": "Nätverk"
+ },
+ "visualization": {
+ "auto_zoom": "Automatisk zoomning",
+ "caption": "Visualisering",
+ "enable_physics": "Aktivera fysik",
+ "header": "Visualisering av nätverk",
+ "highlight_label": "Markera enheter",
+ "refresh_topology": "Uppdatera topologi",
+ "zoom_label": "Zooma till enhet"
+ }
+ },
+ "zone": {
+ "add_zone": "Lägg till Zon",
+ "caption": "Zoner",
+ "configured_in_yaml": "Zoner konfigurerade via configuration.yaml kan inte redigeras via användargränssnittet.",
+ "confirm_delete": "Är du säker på att du vill ta bort den här zonen?",
+ "create_zone": "Skapa Zon",
+ "description": "Hantera zonerna som du vill följa personer i",
+ "detail": {
+ "create": "Skapa",
+ "delete": "Radera",
+ "icon": "Ikon",
+ "icon_error_msg": "Ikonen ska vara i format \"prefix:ikonnamn\", till exempel: \"mdi:home\"",
+ "latitude": "Latitud",
+ "longitude": "Longitud",
+ "name": "Namn",
+ "new_zone": "Ny Zon",
+ "passive": "Passiv",
+ "passive_note": "Passiva zoner är dolda i frontend och används inte som plats för enhetsspårare. Detta är användbart om du bara vill använda det för automatiseringar.",
+ "radius": "Radie",
+ "required_error_msg": "Det här fältet krävs",
+ "update": "Uppdatera"
+ },
+ "edit_home_zone": "Radien på Hemzonen kan inte redigeras från frontend ännu. Dra markören på kartan för att flytta hemzonen.",
+ "edit_home_zone_narrow": "Radien i hemzonen kan inte redigeras från frontend ännu. Platsen kan ändras från den allmänna konfigurationen.",
+ "edit_zone": "Redigera zon",
+ "go_to_core_config": "Gå till allmän konfiguration?",
+ "home_zone_core_config": "Platsen för din hemzon kan redigeras från den allmänna konfigurationssidan. Radien i hemzonen kan inte redigeras från frontend ännu. Vill du gå till den allmänna konfigurationen?",
+ "introduction": "Med zoner kan du ange vissa regioner på jorden. När en person befinner sig i en zon tar tillståndet namnet från zonen. Zoner kan också användas som utlösare eller villkor i automatiseringsinställningar.",
+ "no_zones_created_yet": "Det verkar som om du inte har skapat några zoner ännu."
+ },
+ "zwave": {
+ "common": {
+ "index": "Index",
+ "instance": "Instans",
+ "unknown": "okänt",
+ "value": "Värde",
+ "wakeup_interval": "Uppvakningsintervall"
+ },
+ "description": "Hantera ditt Z-Wave nätverk",
+ "learn_more": "Läs mer om Z-Wave",
+ "migration": {
+ "ozw": {
+ "header": "Migrera till OpenZWave",
+ "introduction": "Den här guiden hjälper dig att migrera från den äldre Z-Wave-integrationen till OpenZWave-integrationen som för närvarande finns i beta."
+ },
+ "zwave_js": {
+ "header": "Migrera till Z-Wave JS",
+ "introduction": "Denna integration upprätthålls inte längre och vi råder dig att gå över till den nya Z-Wave JS-integrationen. Den här guiden hjälper dig att migrera från den äldre Z-Wave-integrationen till den nya Z-Wave JS-integrationen."
+ }
+ },
+ "network_management": {
+ "header": "Hantering av Z-Wave-nätverk",
+ "introduction": "Kör kommandon som påverkar Z-Wave-nätverket. De flesta kommandon ger ingen bekräftelse om de lyckas men du kan kontrollera OZW-loggen för att försöka ta reda på det."
+ },
+ "network_status": {
+ "network_started": "Z-Wave nätverk startat",
+ "network_started_note_all_queried": "Alla noder har frågats.",
+ "network_started_note_some_queried": "Vakna noder har frågats. Vilande noder frågas när de vaknar.",
+ "network_starting": "Startar Z-Wave-nätverk...",
+ "network_starting_note": "Detta kan ta ett tag beroende på storleken på ditt nätverk.",
+ "network_stopped": "Z-Wave-nätverk stoppat"
+ },
+ "node_config": {
+ "config_parameter": "Konfigurationsparameter",
+ "config_value": "Konfigurationsvärde",
+ "false": "Falskt",
+ "header": "Alternativ för nodkonfiguration",
+ "seconds": "sekunder",
+ "set_config_parameter": "Ställ in konfigurationsparametrar",
+ "set_wakeup": "Ställ in uppvakningsintervall",
+ "true": "Sant"
+ },
+ "node_management": {
+ "add_to_group": "Lägg till i Gruppen",
+ "entities": "Enheter av denna nod",
+ "entity_info": "Entitetsinformation",
+ "exclude_entity": "Uteslut den här entiteten från Home Assistant",
+ "group": "Grupp",
+ "header": "Z-Wave nodhantering",
+ "introduction": "Kör Z-Wave-kommandon som påverkar en enda nod. Välj en nod för att se en lista över tillgängliga kommandon.",
+ "max_associations": "Max antal associationer:",
+ "node_group_associations": "Nodgruppsassociationer",
+ "node_protection": "Nodskydd",
+ "node_to_control": "Nod att styra",
+ "nodes": "Noder",
+ "nodes_hint": "Välj nod för att visa per-nod alternativ",
+ "nodes_in_group": "Andra Noder i denna grupp:",
+ "pooling_intensity": "Uppdateringshastighet",
+ "protection": "Skydd",
+ "remove_broadcast": "Ta bort Sändning",
+ "remove_from_group": "Ta bort från grupp",
+ "set_protection": "Ange skydd"
+ },
+ "ozw_log": {
+ "header": "OZW-logg",
+ "introduction": "Visa loggen. 0 är det minsta (laddar hela loggen) och 1000 är det maximala. Ladda visar en statisk logg och medan Följ uppdateras automatiskt med det sist angivna antalet rader i loggen.",
+ "last_log_lines": "Antal sista loggrader",
+ "load": "Ladda",
+ "tail": "Följ"
+ },
+ "services": {
+ "add_node": "Lägg till nod",
+ "add_node_secure": "Lägg till nod med säkerhet",
+ "cancel_command": "Avbryt kommandot",
+ "heal_network": "Reparera nätverk",
+ "heal_node": "Reparera nod",
+ "node_info": "Nodinformation",
+ "print_node": "Skriv ut nod",
+ "refresh_entity": "Uppdatera entitet",
+ "refresh_node": "Uppdatera nod",
+ "remove_failed_node": "Ta bort misslyckad nod",
+ "remove_node": "Ta bort nod",
+ "replace_failed_node": "Ersätt misslyckad nod",
+ "save_config": "Spara konfiguration",
+ "soft_reset": "Mjuk återställning",
+ "start_network": "Starta Nätverket",
+ "stop_network": "Stoppa nätverket",
+ "test_network": "Testa nätverk",
+ "test_node": "Testnod"
+ },
+ "values": {
+ "header": "Nodvärden"
+ }
+ },
+ "zwave_js": {
+ "add_node": {
+ "cancel_inclusion": "Avbryt inkludering",
+ "check_logs": "Kontrollera loggarna för mer information.",
+ "choose_inclusion_strategy": "Hur vill du lägga till enheten",
+ "controller_in_inclusion_mode": "Din Z-Wave-styrenhet är nu i inkluderingsläge.",
+ "enter_qr_code": "Ange värdet för QR-koden",
+ "follow_device_instructions": "Följ anvisningarna som följde med din enhet för att aktivera parning på enheten.",
+ "inclusion_failed": "Noden kunde inte läggas till. Kontrollera loggarna för mer information.",
+ "inclusion_finished": "Noden har lagts till. Det kan ta några minuter för alla entiteter att dyka upp när vi avslutar inställningen av noden i bakgrunden.",
+ "interview_failed": "Enhetsintervjun misslyckades. Ytterligare information kan finnas i loggarna.",
+ "interview_started": "Noden intervjuas. Detta kan ta lite tid.",
+ "introduction": "Denna guide guidar dig genom att lägga till en nod i ditt Z-Wave-nätverk.",
+ "provisioning_finished": "Enheten har lagts till. När du slår på den kommer den att bli tillgänglig.",
+ "qr_code": "QR-kod",
+ "qr_code_paragraph": "Om din enhet stöder SmartStart kan du skanna QR-koden för enkel parkoppling.",
+ "scan_qr_code": "Skanna QR-kod",
+ "searching_device": "Söker efter enhet",
+ "secure_inclusion_warning": "Säkra enheter kräver ytterligare bandbredd, för många säkra enheter kan göra ditt Z-Wave-nätverk långsammare. Vi rekommenderar att endast använda säker inkludering för enheter som kräver det, som lås eller dörröppnare för garage.",
+ "security_classes": {
+ "S0_Legacy": {
+ "description": "Exempel: äldre dörrlås utan S2-stöd",
+ "title": "S0 Arv"
+ },
+ "S2_AccessControl": {
+ "description": "Exempel: Dörrlås och garageportar",
+ "title": "S2 Åtkomstkontroll"
+ },
+ "S2_Authenticated": {
+ "description": "Exempel: Belysning, sensorer och säkerhetssystem",
+ "title": "S2 Autentiserad"
+ },
+ "S2_Unauthenticated": {
+ "description": "Som S2 Autentiserad, men utan verifiering att rätt enhet inkluderas",
+ "title": "S2 Oautentiserad"
+ }
+ },
+ "select_camera": "Välj kamera",
+ "start_inclusion": "Påbörja inkludering",
+ "start_secure_inclusion": "Påbörja säker inkludering",
+ "title": "Lägg till Z-Wave nod",
+ "use_secure_inclusion": "Använd säker inkludering",
+ "view_device": "Visa enhet"
+ },
+ "common": {
+ "add_node": "Lägg till enhet",
+ "back": "Tillbaka",
+ "close": "Stäng",
+ "heal_network": "Reparera nätverk",
+ "home_id": "Hem ID",
+ "network": "Nätverk",
+ "node_id": "Nod-ID",
+ "reconfigure_server": "Konfigurera om servern",
+ "remove_node": "Ta bort enhet",
+ "source": "Källa"
+ },
+ "dashboard": {
+ "devices": "{count} {count, plural,\n one {enhet}\n other {enheter}\n}",
+ "driver_version": "Drivrutinsversion",
+ "dump_dead_nodes_text": "Några av dina enheter svarade inte och antas vara döda. Dessa kommer inte att exporteras fullt ut.",
+ "dump_dead_nodes_title": "Några av dina enheter är döda",
+ "dump_debug": "Ladda ner en rapport från ditt nätverk för att diagnostisera problem",
+ "dump_not_ready_confirm": "Ladda ner",
+ "dump_not_ready_text": "Om du skapar en export när inte alla noder är klara, kan du missa data som behövs. Ge ditt nätverk lite tid att fråga alla noder. Vill du fortsätta med exporten?",
+ "dump_not_ready_title": "Alla enheter är inte redo ännu",
+ "header": "Hantera ditt Z-Wave-nätverk",
+ "home_id": "Hem ID",
+ "introduction": "Hantera ditt Z-Wave-nätverk och Z-Wave-enheter.",
+ "nodes_ready": "Noder redo",
+ "not_ready": "{count} inte redo",
+ "provisioned_devices": "Aktiverade enheter",
+ "server_url": "Server-URL",
+ "server_version": "Serverversion"
+ },
+ "device_info": {
+ "device_config": "Konfigurera enhet",
+ "heal_node": "Reparera enhet",
+ "highest_security": "Högsta säkerheten",
+ "is_secure": "Säker",
+ "node_ready": "Nod redo",
+ "node_status": "Nodstatus",
+ "reinterview_device": "Intervjua enheten på nytt",
+ "remove_failed": "Ta bort misslyckad enhet",
+ "unknown": "Okänd",
+ "zwave_info": "Z-Wave info",
+ "zwave_plus": "Z-Wave Plus",
+ "zwave_plus_version": "Version {version}"
+ },
+ "heal_network": {
+ "healing_cancelled": "Nätverksreparation har avbrutits.",
+ "healing_complete": "Nätverksreparationen är klar.",
+ "healing_failed": "Reparationen misslyckades. Ytterligare information kan finnas i loggarna.",
+ "in_progress": "Nätverksreparation pågår. Detta kommer att ta lite tid.",
+ "introduction": "Starta en nätverksreparation på ditt Z-Wave-nätverk. En nätverksreparation gör att alla enheter beräknar om sina rutter tillbaka till kontrollenheten och rekommenderas om du nyligen har flyttat enheter eller din kontrollenhet.",
+ "run_in_background": "Du kan stänga den här dialogrutan så fortsätter nätverksreparationen i bakgrunden.",
+ "start_heal": "Starta reparationen",
+ "stop_heal": "Avbryt reparationen",
+ "title": "Reparera ditt Z-Wave-nätverk",
+ "traffic_warning": "Reparationsprocessen genererar en stor mängd trafik i Z-Wave-nätverket. Detta kan leda till att enheterna reagerar långsamt (eller inte alls) medan reparationen pågår."
+ },
+ "heal_node": {
+ "healing_complete": "{device} har blivit helad.",
+ "healing_failed": "{device} kunde inte läkas.",
+ "healing_failed_check_logs": "Ytterligare information kan finnas i loggarna.",
+ "in_progress": "{device} -läkning pågår.",
+ "introduction": "Säg åt {device} att uppdatera sina rutter tillbaka till styrenheten. Detta kan hjälpa till med kommunikationsproblem om du nyligen har flyttat enheten eller styrenheten.",
+ "network_heal_in_progress": "En läkning av ett Z-Wave-nätverk pågår redan. Vänta tills den är klar innan du helar en enskild enhet.",
+ "start_heal": "Reparera enhet",
+ "title": "Reparera en Z-Wave-enhet",
+ "traffic_warning": "Reparationsprocessen genererar en stor mängd trafik i Z-Wave-nätverket. Detta kan leda till att enheterna reagerar långsamt (eller inte alls) medan reparationen pågår."
+ },
+ "logs": {
+ "download_logs": "Ladda ner loggar",
+ "log_level": "Loggnivå",
+ "log_level_changed": "Loggnivå ändrad till: {level}",
+ "subscribed_to_logs": "Prenumererar på Z-Wave JS loggmeddelanden...",
+ "title": "Z-Wave JS-loggar"
+ },
+ "navigation": {
+ "logs": "Loggar",
+ "network": "Nätverk"
+ },
+ "network_status": {
+ "connected": "Ansluten",
+ "connecting": "Ansluter",
+ "unknown": "Okänd"
+ },
+ "node_config": {
+ "attribution": "Enhetskonfigurationsparametrar och -beskrivningar tillhandahålls av {device_database}",
+ "battery_device_notice": "Batterienheterna måste vara vakna för att uppdatera sin konfiguration. I enhetens manual finns instruktioner om hur du väcker enheten.",
+ "error_device_not_found": "Enheten hittades inte",
+ "header": "Konfiguration av Z-Wave-enhet",
+ "introduction": "Hantera och justera enhetsspecifika konfigurationsparametrar för den valda enheten",
+ "parameter": "Parameter",
+ "parameter_is_read_only": "Denna parameter är skrivskyddad.",
+ "set_param_accepted": "Parametern har uppdaterats.",
+ "set_param_error": "Ett fel inträffade.",
+ "set_param_queued": "Parameterändringen har ställts i kö och uppdateras när enheten vaknar.",
+ "zwave_js_device_database": "Z-Wave JS-enhetsdatabas"
+ },
+ "node_status": {
+ "alive": "Levande",
+ "asleep": "Sovande",
+ "awake": "Vaken",
+ "dead": "Död",
+ "unknown": "Okänd"
+ },
+ "provisioned": {
+ "confirm_unprovision_text": "Om du avaktiverar enheten kommer den inte att läggas till i Home Assistant när den slås på. Om den redan har lagts till i Home Assistant tas den inte bort från Home Assistant om du tar bort den aktiverade enheten.",
+ "confirm_unprovision_title": "Är du säker på att du vill avaktivera enheten?",
+ "dsk": "DSK",
+ "included": "Inkluderad",
+ "not_included": "Inte inkluderad",
+ "security_classes": "Säkerhetsklasser",
+ "unprovison": "Avaktivera"
+ },
+ "reinterview_node": {
+ "battery_device_warning": "Du måste väcka batteridrivna enheter innan du startar intervjun på nytt. Se enhetens manual för instruktioner om hur du väcker enheten.",
+ "in_progress": "Enheten intervjuas. Det kan ta lite tid.",
+ "interview_complete": "Enhetsintervjun slutförd.",
+ "interview_failed": "Enhetsintervjun misslyckades. Ytterligare information kan finnas i loggarna.",
+ "introduction": "Intervjua om en enhet på ditt Z-Wave-nätverk. Använd den här funktionen om din enhet har saknad eller felaktig funktionalitet.",
+ "run_in_background": "Du kan stänga den här dialogrutan. Intervjun fortsätter i bakgrunden.",
+ "start_reinterview": "Starta intervju på nytt",
+ "title": "Intervjua en Z-Wave-enhet på nytt"
+ },
+ "remove_failed_node": {
+ "in_progress": "Enheten håller på att tas bort.",
+ "introduction": "Ta bort en misslyckad enhet från ditt Z-Wave-nätverk. Använd detta om du inte kan utesluta en enhet normalt eftersom den är trasig.",
+ "removal_failed": "Enheten kunde inte tas bort från ditt Z-Wave-nätverk.",
+ "removal_finished": "Enheten {id} har tagits bort från ditt Z-Wave-nätverk.",
+ "remove_device": "Ta bort enhet",
+ "title": "Ta bort en misslyckad Z-Wave-enhet"
+ },
+ "remove_node": {
+ "cancel_exclusion": "Avbryt exkludering",
+ "controller_in_exclusion_mode": "Din Z-Wave-styrenhet är nu i exkluderingsläge.",
+ "exclusion_failed": "Det gick inte att ta bort noden. Vänligen kontrollera loggarna för mer information.",
+ "exclusion_finished": "Noden {id} har tagits bort från ditt Z-Wave-nätverk.",
+ "follow_device_instructions": "Följ anvisningarna som följde med din enhet för att aktivera exkluderingen.",
+ "introduction": "Ta bort nod från ditt Z-Wave-nätverk samt ta bort tillhörande enhet och entiteter från Home Assistant.",
+ "start_exclusion": "Starta exkludering",
+ "title": "Ta bort en Z-Wave nod"
+ },
+ "security_classes": {
+ "None": {
+ "title": "Ingen"
+ },
+ "S0_Legacy": {
+ "description": "Exempel: äldre dörrlås utan S2-stöd",
+ "title": "Äldre S0"
+ },
+ "S2_AccessControl": {
+ "description": "Exempel: Dörrlås och garageportar",
+ "title": "S2 Åtkomstkontroll"
+ },
+ "S2_Authenticated": {
+ "description": "Exempel: Belysning, sensorer och säkerhetssystem",
+ "title": "S2 Autentiserad"
+ },
+ "S2_Unauthenticated": {
+ "description": "Som S2 Autentiserad, fast utan verifiering om att rätt enhet ingår",
+ "title": "S2 Ej autentiserad"
+ }
+ }
+ }
+ },
+ "custom": {
+ "external_panel": {
+ "complete_access": "Den kommer att ha tillgång till alla data i home assistant.",
+ "hide_message": "Läs dokumentationen om 'panel_custom'-komponenten för att dölja det här meddelandet",
+ "question_trust": "Litar du på den externa panelen {name} till {link}?"
+ }
+ },
+ "developer-tools": {
+ "tabs": {
+ "events": {
+ "active_listeners": "Aktiva lyssnare",
+ "alert_event_type": "Händelsetyp är ett obligatoriskt fält",
+ "available_events": "Tillgängliga händelser",
+ "count_listeners": " ({count} lyssnare)",
+ "data": "Händelsedata (YAML, valfritt)",
+ "description": "Kör händelse till händelsebuss",
+ "documentation": "Dokumentation om händelser.",
+ "event_fired": "Händelse {name} utlöst",
+ "fire_event": "Utlös händelse",
+ "listen_to_events": "Lyssna på händelser",
+ "listening_to": "Lyssnar på",
+ "notification_event_fired": "Händelse {type} utlöstes!",
+ "start_listening": "Börja lyssna",
+ "stop_listening": "Sluta lyssna",
+ "subscribe_to": "Ämne att prenumerera på",
+ "title": "Händelser",
+ "type": "Händelsetyp"
+ },
+ "services": {
+ "accepts_target": "Den här tjänsten accepterar ett mål, till exempel: `entity_id: lampa.sänglampa`",
+ "all_parameters": "Alla tillgängliga parametrar",
+ "call_service": "Anropa tjänst",
+ "column_description": "Beskrivning",
+ "column_example": "Exempel",
+ "column_parameter": "Parameter",
+ "description": "Utvecklarverktyget för tjänster låter dig anropa alla tillgängliga tjänster i Home Assistant.",
+ "fill_example_data": "Fyll på exempeldata",
+ "no_template_ui_support": "Användargränssnittet stöder inte mallar, du kan fortfarande använda YAML-redigeraren.",
+ "title": "Tjänster",
+ "ui_mode": "Gå till UI-läge",
+ "yaml_mode": "Gå till YAML-läge",
+ "yaml_parameters": "Parametrar endast tillgängliga i YAML-läge"
+ },
+ "states": {
+ "alert_entity_field": "Enhet är ett obligatoriskt fält",
+ "attributes": "Attribut",
+ "copy_id": "Kopiera ID till klippbordet",
+ "current_entities": "Nuvarande enheter",
+ "description1": "Ställ in den aktuella tillståndsrepresentationen för en entitet i Home Assistant.",
+ "description2": "Om entiteten tillhör en enhet kommer det inte att ske någon faktisk kommunikation med den enheten.",
+ "entity": "Entitet",
+ "filter_attributes": "Filterattribut",
+ "filter_entities": "Filtrera entiteter",
+ "filter_states": "Filtrera tillstånd",
+ "last_changed": "Senast ändrad",
+ "last_updated": "Senast uppdaterad",
+ "more_info": "Mer information",
+ "no_entities": "Inga enheter",
+ "set_state": "Ange tillstånd",
+ "state": "Tillstånd",
+ "state_attributes": "Tillståndsattribut (YAML, valfritt)",
+ "title": "Tillstånd"
+ },
+ "statistics": {
+ "entity": "Entitet",
+ "fix_issue": {
+ "fix": "Åtgärda problem",
+ "units_changed": {
+ "clear": "Ta bort alla gamla statistikdata för den här entiteten",
+ "fix": "Åtgärda problem",
+ "title": "Måttenheten för denna entitet har ändrats",
+ "update": "Uppdatera de historiska statistikvärdena från ''{metadata_unit}'' till ''{state_unit}''"
+ }
+ },
+ "issue": "Problem",
+ "issues": {
+ "entity_no_longer_recorded": "Den här entiteten registreras inte längre.",
+ "entity_not_recorded": "Den här entiteten är utesluten från att registreras.",
+ "no_state": "Det finns inget tillstånd tillgängligt för den här entiteten.",
+ "units_changed": "Måttenheten för denna entitet har ändrats från ''{metadata_unit}'' till ''{state_unit}''.",
+ "unsupported_state_class": "Den här entitetens tillståndsklass ''{state_class}'' stöds inte.",
+ "unsupported_unit": "Enheten (''{state_unit}'') för entiteten matchar inte en enhet i enhetsklassen ''{device_class}''.",
+ "unsupported_unit_metadata": "Enheten (''{metadata_unit}'') i den sparade statistiken matchar inte den enhet som stöds ''{supported_unit}'' för enhetsklassen ''{device_class}''.",
+ "unsupported_unit_state": "Enheten (''{state_unit}'') för entiteten matchar inte en enhet i enhetsklassen ''{device_class}''."
+ },
+ "no_issue": "Inga problem",
+ "title": "Statistik"
+ },
+ "templates": {
+ "all_listeners": "Den här mallen lyssnar efter alla tillståndsändrade händelser.",
+ "description": "Mallar tolkas med hjälp av Jinja2 template engine med vissa Home Assistant-specifika tillägg.",
+ "domain": "Domän",
+ "editor": "Mallredigerare",
+ "entity": "Entitet",
+ "jinja_documentation": "Malldokumentation för Jinja2",
+ "listeners": "Den här mallen lyssnar efter följande tillståndsändrade händelser:",
+ "no_listeners": "Den här mallen lyssnar inte efter några händelser och uppdateras inte automatiskt.",
+ "reset": "Återställ till demomall",
+ "result_type": "Resultattyp",
+ "template_extensions": "Mallutökningar för Home Assistant",
+ "time": "Den här mallen uppdateras i början av varje minut.",
+ "title": "Mallar",
+ "unknown_error_template": "Okänt fel vid rendering av mall"
+ }
+ }
+ },
+ "energy": {
+ "cards": {
+ "energy_devices_graph_title": "Övervaka enskilda enheter",
+ "energy_distribution_title": "Energidistribution",
+ "energy_gas_graph_title": "Gasförbrukning",
+ "energy_solar_graph_title": "Solpanelsproduktion",
+ "energy_sources_table_title": "Källor",
+ "energy_usage_graph_title": "Elförbrukning"
+ },
+ "charts": {
+ "by_device": "Förbrukning per enhet",
+ "solar": "Solenergi",
+ "stat_house_energy_meter": "Total energiförbrukning"
+ },
+ "setup": {
+ "back": "Tillbaka",
+ "done": "Visa mig min nya kontrollpanel för energi!",
+ "next": "Nästa"
+ }
+ },
+ "lovelace": {
+ "add_entities": {
+ "generated_unsupported": "Du kan bara använda den här funktionen när du har tagit kontroll över Lovelace UI.",
+ "saving_failed": "Det gick inte att spara Lovelace användargränssnittskonfigurationen.",
+ "yaml_unsupported": "Du kan inte använda den här funktionen när du använder Lovelace användargränssnitt i YAML-läge."
+ },
+ "cards": {
+ "actions": {
+ "action_confirmation": "Är du säker på att du vill utföra händelsen \"{action}\"?",
+ "no_entity_more_info": "Ingen entitet angiven för mer info dialog",
+ "no_entity_toggle": "Ingen entitet angiven för växla",
+ "no_navigation_path": "Ingen navigationsväg angiven",
+ "no_service": "Ingen tjänst för körning har angetts",
+ "no_url": "Ingen URL att öppna angiven"
+ },
+ "confirm_delete": "Är du säker på att du vill ta bort det här kortet?",
+ "empty_state": {
+ "go_to_integrations_page": "Gå till integrationssidan.",
+ "no_devices": "På den här sidan kan du styra dina enheter, men det ser ut som om du inte har några enheter ännu. Gå till integrationssidan för att komma igång.",
+ "title": "Välkommen hem"
+ },
+ "energy": {
+ "carbon_consumed_gauge": {
+ "card_indicates_energy_used": "Det här kortet visar hur mycket av den energi som förbrukas i ditt hem har genererats av icke-fossila bränslen som sol, vind och kärnkraft. Ju högre, desto bättre!",
+ "non_fossil_energy_consumed": "Förbrukad icke-fossil energi",
+ "non_fossil_energy_not_calculated": "Förbrukad icke-fossil energi kunde inte beräknas"
+ },
+ "energy_devices_graph": {
+ "energy_usage": "Energianvändning"
+ },
+ "energy_distribution": {
+ "battery": "Batteri",
+ "gas": "Gas",
+ "go_to_energy_dashboard": "Gå till kontrollpanelen för energi",
+ "grid": "Elnät",
+ "home": "Hem",
+ "non_fossil": "Icke-fossil",
+ "solar": "Solenergi",
+ "title_today": "Energidistribution idag"
+ },
+ "energy_solar_graph": {
+ "forecast": "Prognos {name}",
+ "production": "Produktion {name}"
+ },
+ "energy_sources_table": {
+ "battery_total": "Totalt batteri",
+ "cost": "Kostnad",
+ "energy": "Energi",
+ "grid_total": "Elnät totalt",
+ "source": "Källa",
+ "total_costs": "Total kostnad"
+ },
+ "energy_usage_graph": {
+ "combined_from_grid": "Kombinerat från elnätet",
+ "consumed_battery": "Förbrukat batteri",
+ "consumed_solar": "Förbrukad solenergi",
+ "total_consumed": "Total konsumtion {num} kWh",
+ "total_returned": "Totalt returnerat {num} kWh"
+ },
+ "grid_neutrality_gauge": {
+ "color_explain": "Om nålen är lila, tillförde du mer energi till nätet än du konsumerade från det. Om det är blått, förbrukade du mer energi från nätet än du tillförde.",
+ "energy_dependency": "Detta kort anger din nettoenergianvändning.",
+ "grid_neutrality_not_calculated": "Nätneutralitet kunde inte beräknas",
+ "net_consumed_grid": "Netto förbrukat från elnätet",
+ "net_returned_grid": "Netto skickat till elnätet",
+ "red_green_color_explain": "Om den är grön betyder det att du har producerat mer energi än du har förbrukat från nätet. Om den är röd betyder det att du har använt elnätet för en del av din energiförbrukning."
+ },
+ "loading": "Laddar...",
+ "no_data": "Det finns ingen data att visa. Det kan ta upp till 2 timmar för ny data att komma in efter att du konfigurerat din kontrollpanel för energi.",
+ "no_data_period": "Data saknas för denna period",
+ "solar_consumed_gauge": {
+ "card_indicates_solar_energy_used": "Detta kort anger hur mycket av solenergin du producerade som användes av ditt hem istället för att returneras till elnätet.",
+ "card_indicates_solar_energy_used_charge_home_bat": "Om detta nummer vanligtvis är mycket lågt, vilket indikerar överskott av solproduktion, kanske du vill överväga att ladda ett hembatteri eller elbil från dina solpaneler vid tider med hög solproduktion.",
+ "not_produced_solar_energy": "Du har inte producerat någon solenergi",
+ "self_consumed_solar_could_not_calc": "Självförbrukad solenergi kunde inte beräknas",
+ "self_consumed_solar_energy": "Självförbrukad solenergi"
+ }
+ },
+ "entities": {
+ "never_triggered": "Aldrig utlöst"
+ },
+ "iframe": {
+ "error_secure_context": "Kan inte ladda iframes som pekar på webbplatser som använder {target_protocol} om Home Assistant betjänas över {context_protocol}."
+ },
+ "map": {
+ "reset_focus": "Återställ fokus"
+ },
+ "picture-elements": {
+ "call_service": "Kör tjänst {name}",
+ "hold": "Håll:",
+ "more_info": "Visa mer-info: {name}",
+ "navigate_to": "Navigera till {location}",
+ "tap": "Tryck:",
+ "toggle": "Växla {name}",
+ "url": "Öppna fönster till {url_path}"
+ },
+ "safe-mode": {
+ "description": "Home Assistant stötte på problem när din konfiguration laddades och körs nu i felsäkert läge. Ta en titt i felloggen för att se vad som gick fel.",
+ "header": "Felsäkert läge aktiverat"
+ },
+ "shopping-list": {
+ "add_item": "Lägg till objekt",
+ "checked_items": "Markerade objekt",
+ "clear_items": "Rensa markerade objekt",
+ "drag_and_drop": "Dra och släpp",
+ "reorder_items": "Ändra ordning på objekt"
+ },
+ "show_more_info": "Visa mer information",
+ "starting": {
+ "description": "Home Assistant startar, var god vänta…"
+ }
+ },
+ "changed_toast": {
+ "message": "Lovelace-konfigurationen uppdaterades, vill du ladda om?"
+ },
+ "components": {
+ "energy_period_selector": {
+ "day": "Dag",
+ "month": "Månad",
+ "next": "Nästa",
+ "previous": "Föregående",
+ "today": "Idag",
+ "week": "Vecka",
+ "year": "År"
+ },
+ "timestamp-display": {
+ "invalid": "Ogiltig tidsstämpel",
+ "invalid_format": "Ogiltigt visningsformat"
+ }
+ },
+ "editor": {
+ "action-editor": {
+ "actions": {
+ "call-service": "Anropa tjänst",
+ "default_action": "Standardåtgärd",
+ "more-info": "Mer information",
+ "navigate": "Navigera",
+ "none": "Ingen åtgärd",
+ "toggle": "Växla",
+ "url": "URL"
+ },
+ "navigation_path": "Navigationsväg",
+ "url_path": "Sökväg till URL"
+ },
+ "card": {
+ "alarm-panel": {
+ "available_states": "Tillgängliga tillstånd",
+ "description": "Med larmpanelkortet kan du aktivera och avaktivera integrering av larmkontrollpanelen.",
+ "name": "Larmpanel"
+ },
+ "area": {
+ "description": "Områdeskortet visar automatiskt enheter för ett visst område.",
+ "name": "Område",
+ "show_camera": "Visa kameraflöde istället för områdesbild"
+ },
+ "button": {
+ "default_action_help": "Standardåtgärden beror på entitetens möjligheter, antingen växlas den på/av eller så visas en dialogruta med mer information.",
+ "description": "Knappkortet låter dig lägga till knappar för att utföra uppgifter.",
+ "name": "Knapp"
+ },
+ "calendar": {
+ "calendar_entities": "Kalenderentiteter",
+ "description": "Kalenderkortet visar en kalender med dag-, vecka- och listvyer",
+ "inital_view": "Ursprunglig vy",
+ "name": "Kalender",
+ "views": {
+ "dayGridDay": "Dag",
+ "dayGridMonth": "Månad",
+ "listWeek": "Lista"
+ }
+ },
+ "conditional": {
+ "card": "Kort",
+ "change_type": "Ändra typ",
+ "condition_explanation": "Kortet kommer att visas när ALLA villkor nedan är uppfyllda.",
+ "conditions": "Villkor",
+ "current_state": "nuvarande",
+ "description": "Villkorskortet visar ett annat kort baserat på entitetstillstånd.",
+ "name": "Villkorlig",
+ "state_equal": "Tillståndet är lika med",
+ "state_not_equal": "Tillståndet är inte lika med"
+ },
+ "config": {
+ "optional": "valfri",
+ "required": "krävs"
+ },
+ "entities": {
+ "description": "Entitetskortet är den vanligaste korttypen. Det grupperar objekt i listor.",
+ "edit_special_row": "Visa detaljerna för denna rad genom att klicka på redigeringsknappen",
+ "entity_row": {
+ "attribute": "Attribut",
+ "button": "Knapp",
+ "buttons": "Knappar",
+ "call-service": "Anropa tjänst",
+ "cast": "Casta",
+ "conditional": "Villkorlig",
+ "divider": "Avdelare",
+ "section": "Sektion",
+ "weblink": "Webbadress"
+ },
+ "entity_row_editor": "Redigerare för entitetsrader",
+ "name": "Enheter",
+ "secondary_info_values": {
+ "brightness": "Ljusstyrka",
+ "entity-id": "Entitets-ID",
+ "last-changed": "Senast ändrad",
+ "last-triggered": "Senast utlöst",
+ "last-updated": "Senast uppdaterad",
+ "none": "Ingen sekundärinformation",
+ "position": "Position",
+ "tilt-position": "Lutningsposition"
+ },
+ "show_header_toggle": "Visa rubrikväljare?",
+ "special_row": "speciell rad",
+ "toggle": "Växla entiteter."
+ },
+ "entity-filter": {
+ "description": "Med entitetsfilterkortet kan du definiera en lista över entiteter som du vill följa endast när de är i ett visst läge.",
+ "name": "Enhetsfilter"
+ },
+ "entity": {
+ "description": "Entitetskortet ger dig en snabb överblick över dina entiteters tillstånd.",
+ "name": "Entitet"
+ },
+ "gauge": {
+ "description": "Mätarkortet är ett grundläggande kort som möjliggör visuell visning av sensordata.",
+ "name": "Mätare",
+ "needle_gauge": "Visa som nålmätare?",
+ "severity": {
+ "define": "Definiera allvarlighetsgrad?",
+ "green": "Grön",
+ "red": "Röd",
+ "yellow": "Gul"
+ }
+ },
+ "generic": {
+ "aspect_ratio": "Bildförhållande",
+ "attribute": "Attribut",
+ "camera_image": "Kameraentitet",
+ "camera_view": "Kamerauppdatering",
+ "days_to_show": "Dagar att visa",
+ "double_tap_action": "Dubbeltrycksåtgärd",
+ "entities": "Entiteter",
+ "entity": "Entitet",
+ "hold_action": "Händelse vid nedtryckt",
+ "hours_to_show": "Timmar att visa",
+ "icon": "Ikon",
+ "icon_height": "Ikonhöjd",
+ "image": "Bildsökväg",
+ "manual": "Manuell",
+ "manual_description": "Behöver du lägga till ett anpassat kort eller vill du bara skriva yaml manuellt?",
+ "maximum": "Maximum",
+ "minimum": "Minimum",
+ "name": "Namn",
+ "no_theme": "Inget tema",
+ "refresh_interval": "Uppdateringsintervall",
+ "search": "Sök",
+ "secondary_info_attribute": "Sekundär informationsattribut",
+ "show_icon": "Visa ikon?",
+ "show_name": "Visa namn?",
+ "show_state": "Visa tillstånd?",
+ "state": "Tillstånd",
+ "state_color": "Färg på ikon baserat på läge?",
+ "tap_action": "Händelse vid klick",
+ "theme": "Tema",
+ "title": "Rubrik",
+ "unit": "Enhet",
+ "url": "URL"
+ },
+ "glance": {
+ "columns": "Kolumner",
+ "description": "Glance-kortet är användbart för att gruppera flera sensorer i en kompakt översikt.",
+ "name": "Blick"
+ },
+ "grid": {
+ "columns": "Kolumner",
+ "description": "Med Grid-kortet kan du visa flera kort i ett rutnät.",
+ "name": "Rutnät",
+ "square": "Återge kort som fyrkanter"
+ },
+ "history-graph": {
+ "description": "Historikdiagramkortet låter dig att visa en graf för varje listad enhet.",
+ "name": "Historikdiagram"
+ },
+ "horizontal-stack": {
+ "description": "Med Horizontal Stack-kortet kan du stapla ihop flera kort, så att de alltid sitter bredvid varandra i utrymmet av en kolumn.",
+ "name": "Vågrät trave"
+ },
+ "humidifier": {
+ "description": "Termostatkortet kontrollerar din klimatentitet så att du kan ändra luftfuktighet och läge.",
+ "name": "Luftfuktare"
+ },
+ "iframe": {
+ "description": "Webbsidekortet låter dig bädda in din favoritwebbplats direkt i Home Assistant.",
+ "name": "Webbsida"
+ },
+ "light": {
+ "description": "Med ljuskortet kan du ändra ljusets ljusstyrka.",
+ "name": "Lampa"
+ },
+ "logbook": {
+ "description": "Loggbokskortet visar en lista över händelser för entiteter.",
+ "name": "Loggbok"
+ },
+ "map": {
+ "dark_mode": "Mörkt läge?",
+ "default_zoom": "Standardzoom",
+ "description": "Kartkortet som gör att du kan visa entiteter på en karta.",
+ "geo_location_sources": "Geografiska källor",
+ "hours_to_show": "Timmar att Visa",
+ "name": "Karta",
+ "source": "Källa"
+ },
+ "markdown": {
+ "content": "Innehåll",
+ "description": "Markdown-kortet används för att återge Markdown.",
+ "name": "Markdown"
+ },
+ "media-control": {
+ "description": "Mediakontrollkortet används för att visa mediaspelarenheter på ett gränssnitt med lättanvända kontroller.",
+ "name": "Mediaspelare"
+ },
+ "picture-elements": {
+ "description": "Bildlementkortet är en av de mest mångsidiga typerna av kort. Korten låter dig placera ikoner eller text och till och med tjänster! På en bild baserad på koordinater.",
+ "name": "Bildelement"
+ },
+ "picture-entity": {
+ "description": "Bildentitetskortet visar en entitet i form av en bild. I stället för bilder från en URL kan den också visa bilder från kameraentiteter.",
+ "name": "Bildentitet"
+ },
+ "picture-glance": {
+ "description": "Picture Glance-kortet visar en bild och motsvarande entitetstillstånd som en ikon. Entiterna på höger sida tillåter att växlingsåtgärder, andra visar dialogrutan för mer information.",
+ "name": "Bildblick",
+ "state_entity": "Statusentitet"
+ },
+ "picture": {
+ "description": "Bildkortet låter dig ställa in en bild som ska användas för att navigera till olika banor i ditt gränssnitt eller för att ringa en tjänst.",
+ "name": "Bild"
+ },
+ "plant-status": {
+ "description": "Plant Status-kortet är för alla de härliga botanikerna där ute.",
+ "name": "Växtstatus"
+ },
+ "sensor": {
+ "description": "Sensorkortet ger dig en snabb överblick över dina sensortillstånd med en valfri graf för att visualisera förändring över tid.",
+ "graph_type": "Typ av kurva",
+ "name": "Sensor",
+ "show_more_detail": "Visa fler detaljer"
+ },
+ "shopping-list": {
+ "description": "Shopping List-kortet gör att du kan lägga till, redigera, checka av och rensa objekt från din inköpslista.",
+ "integration_not_loaded": "Detta kort kräver att \"shopping_list\" -integrationen konfigureras.",
+ "name": "Inköpslista"
+ },
+ "statistics-graph": {
+ "description": "Kortet Statistikgraf låter dig visa en graf över statistiken för var och en av de enheter som anges.",
+ "name": "Statistikdiagram",
+ "period": "Period",
+ "periods": {
+ "5minute": "5 minuter",
+ "day": "Dag",
+ "hour": "Timme",
+ "month": "Månad"
+ }
+ },
+ "thermostat": {
+ "description": "Termostatkortet kontrollerar din klimatentitet så att du kan ändra temperaturen och läge.",
+ "name": "Termostat"
+ },
+ "vertical-stack": {
+ "description": "Med Vertical Stack-kortet kan du gruppera flera kort så att de alltid sitter i samma kolumn.",
+ "name": "Vertikal trave"
+ },
+ "weather-forecast": {
+ "description": "Kortet Väderprognos visar vädret. Mycket användbart att inkludera på gränssnitt som man visar på väggen.",
+ "name": "Väderprognos",
+ "show_both": "Visa aktuellt väder och prognos",
+ "show_forecast": "Visa prognos",
+ "show_only_current": "Visa endast aktuellt väder",
+ "show_only_forecast": "Visa endast prognos"
+ }
+ },
+ "cardpicker": {
+ "by_card": "Efter Kort",
+ "by_entity": "Efter entitet",
+ "custom_card": "Anpassad",
+ "domain": "Domän",
+ "entity": "Entitet",
+ "no_description": "Ingen beskrivning finns tillgänglig."
+ },
+ "common": {
+ "add": "Lägg till",
+ "clear": "Rensa",
+ "edit": "Redigera",
+ "none": "Ingen"
+ },
+ "edit_badges": {
+ "panel_mode": "Dessa märken visas inte eftersom den här vyn är i \"Panelläge\".",
+ "view_no_badges": "Märken stöds inte av den aktuella vytypen."
+ },
+ "edit_card": {
+ "add": "Lägg till kort",
+ "clear": "Rensa",
+ "confirm_cancel": "Är du säker på att du vill avbryta?",
+ "delete": "Ta bort kort",
+ "duplicate": "Duplicera kort",
+ "edit": "Redigera",
+ "header": "Kortkonfiguration",
+ "move": "Flytta till vy",
+ "move_after": "Flytta kort efter",
+ "move_before": "Flytta kort innan",
+ "move_down": "Flytta kortet nedåt",
+ "move_up": "Flytta kortet uppåt",
+ "options": "Fler alternativ",
+ "pick_card": "Vilket kort vill du lägga till?",
+ "pick_card_view_title": "Vilket kort vill du lägga till i {name} -vyn?",
+ "search_cards": "Sök kort",
+ "show_code_editor": "Visa kodredigerare",
+ "show_visual_editor": "Visa visuell redigerare",
+ "toggle_editor": "Visa / Dölj redigerare",
+ "typed_header": "{type} Kortkonfiguration",
+ "unsaved_changes": "Du har osparade ändringar"
+ },
+ "edit_lovelace": {
+ "edit_title": "Redigera titel",
+ "explanation": "Den här titeln visas ovanför alla dina vyer i Lovelace UI.",
+ "header": "Titel på ditt Lovelace-gränssnitt",
+ "title": "Titel"
+ },
+ "edit_view": {
+ "add": "Lägg till vy",
+ "delete": "Radera vy",
+ "edit": "Redigera vy",
+ "header": "Visa konfiguration",
+ "header_name": "{name} Visa konfiguration",
+ "move_left": "Flytta vyn åt vänster",
+ "move_right": "Flytta vyn åt höger",
+ "tab_badges": "Märken",
+ "tab_settings": "Inställningar",
+ "tab_visibility": "Synlighet",
+ "type": "Vytyp",
+ "types": {
+ "masonry": "Murverk (standard)",
+ "panel": "Panel (1 kort)",
+ "sidebar": "Sidofält"
+ },
+ "visibility": {
+ "select_users": "Välj vilka användare som ska se den här vyn i navigeringen"
+ }
+ },
+ "header": "Ändra användargränssnittet",
+ "header-footer": {
+ "choose_header_footer": "Välj en {type}",
+ "footer": "Sidfot",
+ "header": "Sidhuvud",
+ "types": {
+ "buttons": {
+ "name": "Knappar"
+ },
+ "graph": {
+ "name": "Graf"
+ },
+ "picture": {
+ "name": "Bild"
+ }
+ }
+ },
+ "menu": {
+ "manage_dashboards": "Hantera kontrollpaneler",
+ "manage_resources": "Hantera resurser",
+ "open": "Öppna Lovelace-menyn",
+ "raw_editor": "Rå konfigurationsredigerare"
+ },
+ "migrate": {
+ "header": "Ogiltig konfiguration",
+ "mig