Merge pull request #5641 from home-assistant/dev

This commit is contained in:
Bram Kragten 2020-04-27 12:31:02 +02:00 committed by GitHub
commit 58869677bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
127 changed files with 17986 additions and 452 deletions

View File

@ -16,6 +16,7 @@ gulp.task(
process.env.IS_CAST = "true";
},
"clean-cast",
"translations-enable-merge-backend",
gulp.parallel(
"gen-icons-app",
"gen-icons-mdi",
@ -34,6 +35,7 @@ gulp.task(
process.env.NODE_ENV = "production";
},
"clean-cast",
"translations-enable-merge-backend",
gulp.parallel("gen-icons-app", "gen-icons-mdi", "build-translations"),
"copy-static-cast",
"webpack-prod-cast",

View File

@ -16,6 +16,7 @@ gulp.task(
process.env.NODE_ENV = "development";
},
"clean-demo",
"translations-enable-merge-backend",
gulp.parallel(
"gen-icons-app",
"gen-icons-mdi",
@ -35,6 +36,8 @@ gulp.task(
process.env.NODE_ENV = "production";
},
"clean-demo",
// Cast needs to be backwards compatible and older HA has no translations
"translations-enable-merge-backend",
gulp.parallel(
"gen-icons-app",
"gen-icons-mdi",

View File

@ -2,7 +2,7 @@ const del = require("del");
const gulp = require("gulp");
const mapStream = require("map-stream");
const inDir = "translations";
const inDir = "translations/frontend";
const downloadDir = inDir + "/downloads";
const tasks = [];
@ -12,7 +12,7 @@ function hasHtml(data) {
}
function recursiveCheckHasHtml(file, data, errors, recKey) {
Object.keys(data).forEach(function(key) {
Object.keys(data).forEach(function (key) {
if (typeof data[key] === "object") {
const nextRecKey = recKey ? `${recKey}.${key}` : key;
recursiveCheckHasHtml(file, data[key], errors, nextRecKey);
@ -25,7 +25,7 @@ function recursiveCheckHasHtml(file, data, errors, recKey) {
function checkHtml() {
const errors = [];
return mapStream(function(file, cb) {
return mapStream(function (file, cb) {
const content = file.contents;
let error;
if (content) {
@ -42,19 +42,19 @@ function checkHtml() {
}
let taskName = "clean-downloaded-translations";
gulp.task(taskName, function() {
gulp.task(taskName, function () {
return del([`${downloadDir}/**`]);
});
tasks.push(taskName);
taskName = "check-translations-html";
gulp.task(taskName, function() {
gulp.task(taskName, function () {
return gulp.src(`${downloadDir}/*.json`).pipe(checkHtml());
});
tasks.push(taskName);
taskName = "move-downloaded-translations";
gulp.task(taskName, function() {
gulp.task(taskName, function () {
return gulp.src(`${downloadDir}/*.json`).pipe(gulp.dest(inDir));
});
tasks.push(taskName);

View File

@ -16,6 +16,7 @@ gulp.task(
process.env.NODE_ENV = "development";
},
"clean-gallery",
"translations-enable-merge-backend",
gulp.parallel("gen-icons-app", "gen-icons-mdi", "build-translations"),
"copy-static-gallery",
"gen-index-gallery-dev",
@ -30,6 +31,7 @@ gulp.task(
process.env.NODE_ENV = "production";
},
"clean-gallery",
"translations-enable-merge-backend",
gulp.parallel("gen-icons-app", "gen-icons-mdi", "build-translations"),
"copy-static-gallery",
"webpack-prod-gallery",

View File

@ -14,11 +14,18 @@ const { mapFiles } = require("../util");
const env = require("../env");
const paths = require("../paths");
const inDir = "translations";
const inFrontendDir = "translations/frontend";
const inBackendDir = "translations/backend";
const workDir = "build-translations";
const fullDir = workDir + "/full";
const coreDir = workDir + "/core";
const outDir = workDir + "/output";
let mergeBackend = false;
gulp.task("translations-enable-merge-backend", (done) => {
mergeBackend = true;
done();
});
String.prototype.rsplit = function (sep, maxsplit) {
var split = this.split(sep);
@ -171,20 +178,32 @@ gulp.task(
* the Lokalise update to translations/en.json will not happen immediately.
*/
gulp.task("build-master-translation", function () {
const src = [path.join(paths.translations_src, "en.json")];
if (mergeBackend) {
src.push(path.join(inBackendDir, "en.json"));
}
return gulp
.src(path.join(paths.translations_src, "en.json"))
.src(src)
.pipe(
transform(function (data, file) {
return lokaliseTransform(data, data, file);
})
)
.pipe(rename("translationMaster.json"))
.pipe(
merge({
fileName: "translationMaster.json",
})
)
.pipe(gulp.dest(workDir));
});
gulp.task("build-merged-translations", function () {
return gulp
.src([inDir + "/*.json", workDir + "/test.json"], { allowEmpty: true })
.src([inFrontendDir + "/*.json", workDir + "/test.json"], {
allowEmpty: true,
})
.pipe(
transform(function (data, file) {
return lokaliseTransform(data, data, file);
@ -207,7 +226,10 @@ gulp.task("build-merged-translations", function () {
if (lang === "test") {
src.push(workDir + "/test.json");
} else if (lang !== "en") {
src.push(inDir + "/" + lang + ".json");
src.push(inFrontendDir + "/" + lang + ".json");
if (mergeBackend) {
src.push(inBackendDir + "/" + lang + ".json");
}
}
}
return gulp

View File

@ -1,255 +0,0 @@
{
"state": {
"alarm_control_panel": {
"armed": "Armed",
"armed_away": "Armed away",
"armed_custom_bypass": "Armed custom bypass",
"armed_home": "Armed home",
"armed_night": "Armed night",
"arming": "Arming",
"disarmed": "Disarmed",
"disarming": "Disarming",
"pending": "Pending",
"triggered": "Triggered"
},
"automation": {
"off": "Off",
"on": "On"
},
"binary_sensor": {
"battery": {
"off": "Normal",
"on": "Low"
},
"cold": {
"off": "Normal",
"on": "Cold"
},
"connectivity": {
"off": "Disconnected",
"on": "Connected"
},
"default": {
"off": "Off",
"on": "On"
},
"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"
}
},
"calendar": {
"off": "Off",
"on": "On"
},
"camera": {
"idle": "Idle",
"recording": "Recording",
"streaming": "Streaming"
},
"climate": {
"auto": "Auto",
"cool": "Cool",
"dry": "Dry",
"fan_only": "Fan only",
"heat": "Heat",
"heat_cool": "Heat/Cool",
"off": "Off"
},
"configurator": {
"configure": "Configure",
"configured": "Configured"
},
"cover": {
"closed": "Closed",
"closing": "Closing",
"open": "Open",
"opening": "Opening",
"stopped": "Stopped"
},
"default": {
"off": "Off",
"on": "On",
"unavailable": "Unavailable",
"unknown": "Unknown"
},
"device_tracker": {
"home": "Home",
"not_home": "Away"
},
"fan": {
"off": "Off",
"on": "On"
},
"group": {
"closed": "Closed",
"closing": "Closing",
"home": "Home",
"locked": "Locked",
"not_home": "Away",
"off": "Off",
"ok": "OK",
"on": "On",
"open": "Open",
"opening": "Opening",
"problem": "Problem",
"stopped": "Stopped",
"unlocked": "Unlocked"
},
"input_boolean": {
"off": "Off",
"on": "On"
},
"light": {
"off": "Off",
"on": "On"
},
"lock": {
"locked": "Locked",
"unlocked": "Unlocked"
},
"media_player": {
"idle": "Idle",
"off": "Off",
"on": "On",
"paused": "Paused",
"playing": "Playing",
"standby": "Standby"
},
"person": {
"home": "Home",
"not_home": "Away"
},
"plant": {
"ok": "OK",
"problem": "Problem"
},
"remote": {
"off": "Off",
"on": "On"
},
"scene": {
"scening": "Scening"
},
"script": {
"off": "Off",
"on": "On"
},
"sensor": {
"off": "Off",
"on": "On"
},
"sun": {
"above_horizon": "Above horizon",
"below_horizon": "Below horizon"
},
"switch": {
"off": "Off",
"on": "On"
},
"timer": {
"active": "active",
"idle": "idle",
"paused": "paused"
},
"vacuum": {
"cleaning": "Cleaning",
"docked": "Docked",
"error": "Error",
"idle": "Idle",
"off": "Off",
"on": "On",
"paused": "Paused",
"returning": "Returning to dock"
},
"weather": {
"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"
},
"zwave": {
"default": {
"dead": "Dead",
"initializing": "Initializing",
"ready": "Ready",
"sleeping": "Sleeping"
},
"query_stage": {
"dead": "Dead ({query_stage})",
"initializing": "Initializing ({query_stage})"
}
}
}
}

View File

@ -1,7 +1,10 @@
import { MockHomeAssistant } from "../../../src/fake_data/provide_hass";
export const mockTranslations = (hass: MockHomeAssistant) => {
hass.mockWS("frontend/get_translations", () => ({
resources: {},
}));
hass.mockWS(
"frontend/get_translations",
(/* msg: {language: string, category: string} */) => {
return { resources: {} };
}
);
};

View File

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name="home-assistant-frontend",
version="20200424.0",
version="20200427.0",
description="The Home Assistant frontend",
url="https://github.com/home-assistant/home-assistant-polymer",
author="The Home Assistant Authors",

View File

@ -1,12 +1,3 @@
let curVersion: string | undefined;
export const setHAVersion = (version: string) => {
curVersion = version;
};
export const atLeastCachedVersion = (major: number, minor: number) =>
curVersion !== undefined && atLeastVersion(curVersion, major, minor);
export const atLeastVersion = (
version: string,
major: number,

View File

@ -1,101 +1,16 @@
import { HassEntity } from "home-assistant-js-websocket";
import { UNAVAILABLE, UNKNOWN } from "../../data/entity";
import { atLeastCachedVersion } from "../config/version";
import { formatDate } from "../datetime/format_date";
import { formatDateTime } from "../datetime/format_date_time";
import { formatTime } from "../datetime/format_time";
import { LocalizeFunc } from "../translations/localize";
import { computeStateDomain } from "./compute_state_domain";
const legacyComputeStateDisplay = (
localize: LocalizeFunc,
stateObj: HassEntity,
language: string
): string => {
let display: string | undefined;
const domain = computeStateDomain(stateObj);
if (domain === "binary_sensor") {
// Try device class translation, then default binary sensor translation
if (stateObj.attributes.device_class) {
display = localize(
`state.${domain}.${stateObj.attributes.device_class}.${stateObj.state}`
);
}
if (!display) {
display = localize(`state.${domain}.default.${stateObj.state}`);
}
} else if (
stateObj.attributes.unit_of_measurement &&
!["unknown", "unavailable"].includes(stateObj.state)
) {
display = stateObj.state + " " + stateObj.attributes.unit_of_measurement;
} else if (domain === "input_datetime") {
let date: Date;
if (!stateObj.attributes.has_time) {
date = new Date(
stateObj.attributes.year,
stateObj.attributes.month - 1,
stateObj.attributes.day
);
display = formatDate(date, language);
} else if (!stateObj.attributes.has_date) {
const now = new Date();
date = new Date(
// Due to bugs.chromium.org/p/chromium/issues/detail?id=797548
// don't use artificial 1970 year.
now.getFullYear(),
now.getMonth(),
now.getDay(),
stateObj.attributes.hour,
stateObj.attributes.minute
);
display = formatTime(date, language);
} else {
date = new Date(
stateObj.attributes.year,
stateObj.attributes.month - 1,
stateObj.attributes.day,
stateObj.attributes.hour,
stateObj.attributes.minute
);
display = formatDateTime(date, language);
}
} else if (domain === "zwave") {
if (["initializing", "dead"].includes(stateObj.state)) {
display = localize(
`state.zwave.query_stage.${stateObj.state}`,
"query_stage",
stateObj.attributes.query_stage
);
} else {
display = localize(`state.zwave.default.${stateObj.state}`);
}
} else {
display = localize(`state.${domain}.${stateObj.state}`);
}
// Fall back to default, component backend translation, or raw state if nothing else matches.
if (!display) {
display =
localize(`state.default.${stateObj.state}`) ||
localize(`component.${domain}.state.${stateObj.state}`) ||
stateObj.state;
}
return display;
};
export const computeStateDisplay = (
localize: LocalizeFunc,
stateObj: HassEntity,
language: string
): string => {
if (__BACKWARDS_COMPAT__ && !atLeastCachedVersion(0, 109)) {
return legacyComputeStateDisplay(localize, stateObj, language);
}
if (stateObj.state === UNKNOWN || stateObj.state === UNAVAILABLE) {
return localize(`state.default.${stateObj.state}`);
}

View File

@ -1,6 +1,5 @@
import "@polymer/app-route/app-location";
import { html, property, PropertyValues } from "lit-element";
import { setHAVersion } from "../common/config/version";
import { navigate } from "../common/navigate";
import { getStorageDefaultPanelUrlPath } from "../data/panel";
import "../resources/custom-card-support";
@ -70,9 +69,6 @@ export class HomeAssistantAppEl extends HassElement {
protected hassConnected() {
super.hassConnected();
if (__BACKWARDS_COMPAT__) {
setHAVersion(this.hass!.connection.haVersion);
}
// @ts-ignore
this._loadHassTranslations(this.hass!.language, "state");
}

View File

@ -11,6 +11,7 @@ import {
import { createCloseHeading } from "../../../../components/ha-dialog";
import "../../../../components/ha-icon-input";
import { HaSwitch } from "../../../../components/ha-switch";
import { slugify } from "../../../../common/string/slugify";
import {
LovelaceDashboard,
LovelaceDashboardCreateParams,
@ -230,10 +231,11 @@ export class DialogLovelaceDashboardDetail extends LitElement {
if ((this.hass.userData?.showAdvanced && this._urlPath) || !this._title) {
return;
}
const parts = this._title.toLowerCase().split(" ");
this._urlPath =
parts.length === 1 ? `lovelace-${parts[0]}` : parts.join("_");
const slugifyTitle = slugify(this._title);
this._urlPath = slugifyTitle.includes("-")
? slugifyTitle
: `lovelace-${slugifyTitle}`;
}
private _showSidebarChanged(ev: Event) {

View File

@ -184,7 +184,7 @@ class HuiAlarmPanelCard extends LitElement implements LovelaceCard {
@click="${this._handleActionClick}"
outlined
>
${this._stateDisplay(state)}
${this._actionDisplay(state)}
</mwc-button>
`;
})}
@ -234,6 +234,10 @@ class HuiAlarmPanelCard extends LitElement implements LovelaceCard {
: stateLabel;
}
private _actionDisplay(state: string): string {
return this.hass!.localize(`ui.card.alarm_control_panel.${state}`);
}
private _stateDisplay(state: string): string {
return this.hass!.localize(
`component.alarm_control_panel.state._.${state}`

View File

@ -129,6 +129,8 @@ export class HuiEntityCard extends LitElement implements LovelaceCard {
>${"attribute" in this._config
? stateObj.attributes[this._config.attribute!] ||
this.hass.localize("state.default.unknown")
: stateObj.attributes.unit_of_measurement
? stateObj.state
: computeStateDisplay(
this.hass.localize,
stateObj,

View File

@ -13,6 +13,8 @@
},
"state": {
"default": {
"on": "On",
"off": "Off",
"unknown": "Unknown",
"unavailable": "Unavailable"
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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} )"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -0,0 +1,3 @@
{
"component": {}
}

View File

@ -0,0 +1,349 @@
{
"component": {
"sensor": {
"state": {
"_": {
"off": "",
"on": ""
}
}
},
"zwave": {
"state": {
"_": {
"initializing": "Iniciando",
"dead": "Desconectado",
"sleeping": "Hibernacion",
"ready": "Listo"
},
"query_stage": {
"initializing": "Iniciando ( {query_stage} )",
"dead": "Desconectado ({query_stage})"
}
}
},
"ebusd": {
"state": {
"day": "D\u00eda",
"night": "Noche"
}
},
"light": {
"state": {
"_": {
"off": "Apagado",
"on": "Encendido"
}
}
},
"switch": {
"state": {
"_": {
"off": "",
"on": ""
}
}
},
"binary_sensor": {
"state": {
"_": {
"off": "Desactivado",
"on": "Encendido"
},
"battery": {
"off": "Normal",
"on": "Baja"
},
"cold": {
"off": "Normal",
"on": "Fr\u00edo"
},
"connectivity": {
"off": "Desconectado",
"on": "Conectado"
},
"door": {
"off": "Cerrada",
"on": "Abierta"
},
"garage_door": {
"off": "Cerrada",
"on": "Abierta"
},
"gas": {
"off": "Despejado",
"on": "Detectado"
},
"heat": {
"off": "Normal",
"on": "Caliente"
},
"lock": {
"off": "Bloqueado",
"on": "Desbloqueado"
},
"moisture": {
"off": "Seco",
"on": "Humedo"
},
"motion": {
"off": "Despejado",
"on": "Detectado"
},
"occupancy": {
"off": "Despejado",
"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": "Despejado",
"on": "Detectado"
},
"sound": {
"off": "Despejado",
"on": "Detectado"
},
"vibration": {
"off": "Despejado",
"on": "Detectado"
},
"window": {
"off": "Cerrada",
"on": "Abierta"
}
}
},
"alarm_control_panel": {
"state": {
"_": {
"armed": "Armado",
"disarmed": "Desarmado",
"armed_home": "Armado en Casa",
"armed_away": "Armado Fuera de Casa",
"armed_night": "Armado Nocturno",
"armed_custom_bypass": "Armada zona espec\u00edfica",
"pending": "Pendiente",
"arming": "Armando",
"disarming": "Desarmando",
"triggered": "Activado"
}
}
},
"device_tracker": {
"state": {
"_": {
"home": "En Casa",
"not_home": "Fuera de Casa"
}
}
},
"climate": {
"state": {
"_": {
"off": "Desactivar",
"heat": "Calentar",
"cool": "Enfriar",
"heat_cool": "Calentar/Enfriar",
"auto": "Automatico",
"dry": "Seco",
"fan_only": "S\u00f3lo ventilador"
}
}
},
"fan": {
"state": {
"_": {
"off": "Desactivado",
"on": "Encendido"
}
}
},
"automation": {
"state": {
"_": {
"off": "Desactivado",
"on": "Encendido"
}
}
},
"calendar": {
"state": {
"_": {
"off": "Desactivado",
"on": "Activado"
}
}
},
"camera": {
"state": {
"_": {
"recording": "Grabando",
"streaming": "Streaming",
"idle": "Inactivo"
}
}
},
"configurator": {
"state": {
"_": {
"configure": "Configurar",
"configured": "Configurado"
}
}
},
"cover": {
"state": {
"_": {
"open": "Abierto",
"opening": "Abriendo",
"closed": "Cerrado",
"closing": "Cerrando",
"stopped": "Detenido"
}
}
},
"group": {
"state": {
"_": {
"off": "Apagado",
"on": "Encendido",
"home": "En casa",
"not_home": "Fuera de Casa",
"open": "Abierto",
"closed": "Cerrado",
"locked": "Cerrado",
"unlocked": "Abierto",
"ok": "OK",
"problem": "Problema"
}
}
},
"input_boolean": {
"state": {
"_": {
"off": "Apagado",
"on": "Encendido"
}
}
},
"lock": {
"state": {
"_": {
"locked": "Cerrado",
"unlocked": "Abierto"
}
}
},
"media_player": {
"state": {
"_": {
"off": "Apagado",
"on": "Encendido",
"playing": "Reproduciendo",
"paused": "Pausado",
"idle": "Inactivo",
"standby": "Modo de espera"
}
}
},
"person": {
"state": {
"_": {
"home": "En 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"
}
}
},
"vacuum": {
"state": {
"_": {
"cleaning": "Limpiando",
"docked": "Acoplado",
"error": "Error",
"idle": "Inactivo",
"off": "Encendida",
"on": "Apagada",
"paused": "Pausado",
"returning": "Regresar al dock"
}
}
},
"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"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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} )"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -0,0 +1,3 @@
{
"component": {}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -0,0 +1,3 @@
{
"component": {}
}

View File

@ -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})"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -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"
}
}
}
}
}

View File

@ -341,11 +341,21 @@
"on_off": "إيقاف/تشغيل",
"operation": "تشغيل",
"target_temperature": "درجة الحرارة المستهدفة"
},
"weather": {
"attributes": {
"precipitation": "ترسب"
},
"high": "عالي",
"low": "منخفض"
}
},
"common": {
"cancel": "إلغاء",
"loading": "جار التحميل"
"delete": "حذف",
"loading": "جار التحميل",
"successfully_deleted": "تم الحذف بنجاح",
"undo": "تراجع"
},
"components": {
"entity": {
@ -361,10 +371,38 @@
}
},
"dialogs": {
"helper_settings": {
"input_datetime": {
"date": "تاريخ",
"datetime": "التاريخ والوقت",
"mode": "ما الذي تريد إدخاله",
"time": "الوقت"
}
},
"more_info_control": {
"sun": {
"setting": "ضبط"
}
},
"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": "محفزات"
},
"zha_device_info": {
"buttons": {
"zigbee_information": "معلومات Zigbee"
},
"device_signature": "توقيع جهاز Zigbee",
"services": {
"zigbee_information": "عرض معلومات Zigbee للجهاز."
}
}
},
"duration": {
@ -379,6 +417,16 @@
},
"panel": {
"config": {
"areas": {
"data_table": {
"area": "المنطقة",
"devices": "الأجهزة"
},
"delete": {
"confirmation_text": "سيتم إلغاء تعيين جميع الأجهزة في هذه المنطقة.",
"confirmation_title": "هل أنت متأكد أنك تريد حذف هذه المنطقة؟"
}
},
"automation": {
"caption": "التشغيل التلقائي",
"description": "إنشاء وتحرير التشغيل الألي",
@ -541,6 +589,9 @@
"picker": {
"add_automation": "أضف متحكم آلي",
"header": "محرر المتحكم الآلي",
"headers": {
"name": "الاسم"
},
"introduction": "محرر المتحكم الآلي يسمح لك بإنشاء وتحرير المتحكمات الآلية. يرجى قراءة [الإرشادات] (https://home-assistant.io/docs/automation/editor/) للتأكد من إعدادك Home Assistant بشكل صحيح.",
"learn_more": "معرفة المزيد عن التحكم الآلي",
"no_automations": "لم تعثر على أي متحكم آلي قابل للتعديل",
@ -566,19 +617,55 @@
"caption": "التخصيص",
"description": "تخصيص الكيانات الخاصة بك"
},
"devices": {
"confirm_delete": "هل أنت متأكد أنك تريد حذف هذا الجهاز؟",
"data_table": {
"no_devices": "لا توجد أجهزة"
},
"delete": "حذف",
"no_devices": "لا توجد أجهزة"
},
"entities": {
"picker": {
"status": {
"restored": "مستعاد"
}
}
},
"filtering": {
"clear": "محو",
"filtering_by": "التصفية حسب"
},
"header": "برمجة نظام مساعد البيت",
"helpers": {
"picker": {
"headers": {
"entity_id": "معرف الكيان"
}
}
},
"integrations": {
"add_integration": "أضف integration",
"caption": "تكاملات",
"config_entry": {
"delete": "حذف",
"delete_confirm": "هل تريد حقا حذف هذا التكامل؟",
"device_unavailable": "الجهاز غير متوفر",
"devices": "{count} {count, plural,\n one {جهاز}\n other {أجهزة}\n}",
"entities": "{count} {count, plural,\n one {كيان}\n other {كيانات}\n}",
"entity_unavailable": "العنصر غير متوفر",
"firmware": "نظام التشغيل {version}",
"manuf": "بواسطة {manufacturer}",
"no_area": "لا توجد منطقة",
"no_device": "عناصر بدون أجهزة",
"no_devices": "هذا التكامل لا يوجد لديه الأجهزة.",
"restart_confirm": "اعادة تشغيل هوم اسيستينت لإنهاء حذف هذه التكامل"
"options": "خيارات",
"rename": "إعادة تسمية",
"restart_confirm": "اعادة تشغيل هوم اسيستينت لإنهاء حذف هذه التكامل",
"system_options": "خيارات النظام"
},
"config_flow": {
"loading_first_time": "يرجى الانتظار بينما يتم تثبيت الـintegration"
},
"configure": "إعداد",
"configured": "تم الإعداد",
@ -591,12 +678,23 @@
"show_ignored": "Visa ",
"stop_ignore": "توقف عن التجاهل"
},
"integration": "integration",
"new": "إعداد تكامل جديد",
"none": "لم يتم الإعداد بعد"
"no_integrations": "يبدوأن ليس هناك أي integations بعد. انقر على الزر أدناه لإضافة واحدة!",
"none": "لم يتم الإعداد بعد",
"rename_dialog": "تعديل الاسم",
"rename_input_label": "الاسم"
},
"introduction": "يمكنك هنا برمجة المكونات الخاصة بك و إعداد نظام مساعد البيت. ليس كل شيء متاح للبرمجة من خلال واجهة المستخدم حتى الآن، ولكننا نعمل على ذلك.",
"lovelace": {
"dashboards": {
"cant_edit_default": "لا يمكن تعديل لوحة تحكم لوفليس القياسية من واجهة المستخدم. يمكنك إخفائه عن طريق تعيين لوحة تحكم أخرى كإعداد افتراضي.",
"default_dashboard": "هذه هي لوحة المعلومات الافتراضية",
"detail": {
"remove_default": "إزالة كإعداد افتراضي على هذا الجهاز",
"set_default": "تعيين إعداد افتراضي على هذا الجهاز",
"title_required": "العنوان مطلوب."
},
"picker": {
"headers": {
"default": "الافتراضي"
@ -607,8 +705,14 @@
"detail": {
"create": "إنشاء",
"delete": "حذف",
"dismiss": "اغلاق",
"type": "نوع الموارد",
"update": "تحديث",
"url": "عنوان url"
"url": "عنوان url",
"url_error_msg": "عنوان URL هو حقل مطلوب"
},
"picker": {
"no_resources": "لا توجد موارد"
}
}
},
@ -617,11 +721,24 @@
"device_tracker_pick": "اختر جهاز لتتبع"
}
},
"scene": {
"picker": {
"headers": {
"name": "الاسم"
}
}
},
"script": {
"caption": "السكريبت",
"description": "إنشاء و تحرير السكريبت",
"editor": {
"alias": "الاسم"
},
"picker": {
"headers": {
"name": "الاسم"
},
"show_info": "عرض معلومات حول السكربت"
}
},
"users": {
@ -636,10 +753,21 @@
"description": "ادارة المستخدمين",
"editor": {
"activate_user": "تفعيل المستخدم",
"admin": "مدير",
"caption": "عرض المستخدم",
"change_password": "تغيير كلمة السر",
"deactivate_user": "إلغاء تنشيط المستخدم",
"delete_user": "حذف المستخدم"
"delete_user": "حذف المستخدم",
"name": "الاسم",
"system_generated_users_not_editable": "غير قادر على تحديث المستخدمين الذين تم إنشاؤهم بواسطة النظام.",
"update_user": "تحديث"
},
"picker": {
"headers": {
"group": "مجموعة",
"name": "الاسم",
"system": "نظام"
}
}
},
"zwave": {
@ -679,18 +807,114 @@
"lovelace": {
"editor": {
"card": {
"alarm-panel": {
"description": "تسمح لك بطاقة لوحة الإنذار بتفعيل وتعطيل لوحة التحكم الخاصة بالانذار ."
},
"button": {
"description": "تتيح لك بطاقة الأزرار إضافة أزرار لأداء المهام."
},
"conditional": {
"card": "بطاقة",
"current_state": "الحالي"
"change_type": "نوع التغيير",
"condition_explanation": "ستظهر البطاقة عند استيفاء جميع الشروط أدناه.",
"conditions": "شروط",
"current_state": "الحالي",
"description": "تعرض البطاقة الشرطية بطاقة أخرى استنادًا إلى حالات الكيان.",
"state_equal": "الحالة تساوي",
"state_not_equal": "الحالة لا تساوي"
},
"entities": {
"description": "بطاقة الكيانات هي أكثر أنواع البطاقات شيوعًا. تقوم بتجميع العناصر معًا في قوائم."
},
"entity-filter": {
"description": "تتيح لك بطاقة تصفية الكيانات تحديد قائمة بالكيانات التي تريد تتبعها فقط عندما تكون في حالة معينة."
},
"entity": {
"description": "تمنحك بطاقة الكيان نظرة عامة سريعة عن حالة الكيان.",
"name": "الكيان"
},
"gauge": {
"description": "بطاقة القياس هي بطاقة أساسية تسمح برؤية بيانات الاستشعار بصريًا."
},
"generic": {
"attribute": "السمه",
"double_tap_action": "تأثير النقر المزدوج",
"manual": "يدويا",
"manual_description": "هل تريد إضافة بطاقة مخصصة أو ترغب فقط في كتابة yaml يدويًا؟",
"no_theme": "لا توجد تصاميم متاحة",
"state": "الحالة"
},
"glance": {
"description": "بطاقة اللمحة مفيدة لتجميع أجهزة استشعار متعددة في نظرة عامة مدمجة."
},
"history-graph": {
"description": "تسمح لك بطاقة الرسم البياني التاريخي بعرض رسم بياني لكل من الكيانات المذكورة."
},
"horizontal-stack": {
"description": "تتيح لك بطاقة التكديس الأفقي تجميع عدة بطاقات معًا ، بحيث تكون دائمًا بجانب بعضها البعض في مساحة عمود واحد."
},
"iframe": {
"description": "تسمح لك بطاقة صفحة الويب بتضمين صفحة ويب مباشرةً في Home Assistant."
},
"light": {
"description": "تسمح لك بطاقة الضوء بتغيير سطوع الضوء."
},
"map": {
"description": "بطاقة الخريطة التي تتيح لك عرض الكيانات على الخريطة.",
"hours_to_show": "ساعات للعرض"
},
"markdown": {
"description": "يتم استخدام بطاقة Markdown لعرض Markdown."
},
"media-control": {
"description": "يتم استخدام بطاقة التحكم بالوسائط لعرض كيانات مشغل الوسائط على واجهة مع عناصر تحكم سهلة الاستخدام."
},
"picture-elements": {
"description": "بطاقة عناصر الصورة هي واحدة من أكثر أنواع البطاقات تنوعا. تسمح لك البطاقات بوضع الرموز أو النص وحتى الخدمات! على صورة تستند إلى إحداثيات."
},
"picture-entity": {
"description": "تعرض بطاقة كيان الصورة كيانًا في شكل صورة. بدلاً من الصور من عنوان URL، يمكنه أيضًا عرض صورة كيانات الكاميرا."
},
"picture-glance": {
"description": "تعرض بطاقة \"لمحة الصورة\" صورة وحالات كيان مقابلة كرمز. تسمح الكيانات الموجودة على الجانب الأيمن بإجراءات التبديل ، بينما تظهر جهات أخرى حوار المعلومات أكثر."
},
"picture": {
"description": "تسمح لك بطاقة الصورة بتعيين صورة لاستخدامها في التنقل إلى مسارات مختلفة في واجهتك أو لاستدعاء خدمة."
},
"plant-status": {
"description": "بطاقة حالة النبات هي لجميع محبين النباتات."
},
"sensor": {
"description": "تمنحك بطاقة المستشعر لمحة عامة سريعة عن حالة المستشعرات الخاصة بك مع رسم بياني اختياري لتصور التغيير بمرور الوقت."
},
"shopping-list": {
"description": "تتيح لك بطاقة قائمة التسوق إضافة عناصر وتحريرها وإلغاء تحديدها ومسحها من قائمة التسوق الخاصة بك."
},
"thermostat": {
"description": "تتيح بطاقة الترموستات التحكم في كيان المناخ لديك. يسمح لك بتغيير درجة حرارة الكيان ووضعه."
},
"vertical-stack": {
"description": "تسمح لك بطاقة التكديس الرأسي بتجميع بطاقات متعددة بحيث تكون دائمًا في نفس العمود."
},
"weather-forecast": {
"description": "تعرض بطاقة توقعات الطقس حالة الطقس. من المفيد جدًا تضمينه في الواجهات التي يعرضها الأشخاص على الحائط."
}
},
"cardpicker": {
"custom_card": "معدل",
"no_description": "لا يوجد وصف متاح."
},
"edit_card": {
"delete": "حذف",
"duplicate": "بطاقة مكررة",
"edit": "تصحيح",
"move": "نقل"
},
"edit_view": {
"tab_visibility": "الرؤية"
"tab_visibility": "الرؤية",
"visibility": {
"select_users": "تحديد المستخدمين الذين يجب أن يروا طريقة العرض هذه في التنقل"
}
},
"raw_editor": {
"header": "تعديل",
@ -699,11 +923,31 @@
"unsaved_changes": "التغييرات غير محفوظة"
},
"save_config": {
"cancel": "لا يهم"
"cancel": "لا يهم",
"empty_config": "ابدأ بلوحة معلومات فارغة"
},
"view": {
"panel_mode": {
"warning_multiple_cards": "تحتوي طريقة العرض هذه على أكثر من بطاقة ، ولكن يمكن أن تعرض طريقة عرض اللوحة بطاقة واحدة فقط."
}
}
},
"menu": {
"reload_resources": "إعادة تحميل الموارد"
},
"reload_resources": {
"refresh_body": "يجب عليك تحديث الصفحة لإكمال إعادة التحميل ، هل تريد التحديث الآن؟",
"refresh_header": "هل تريد التحديث؟"
},
"views": {
"confirm_delete_existing_cards": "سيؤدي حذف هذا العرض إلى إزالة البطاقات أيضًا",
"confirm_delete_existing_cards_text": "هل أنت متأكد من أنك تريد حذف طريقة عرض '{name}'؟ تحتوي طريقة العرض على {number} بطاقات سيتم حذفها. لا يمكن التراجع عن هذا الإجراء.",
"confirm_delete_text": "هل أنت متأكد من أنك تريد حذف عرض \"{name}\" ؟"
},
"warning": {
"entity_not_found": "الجهاز غير متوفر: {entity}"
"attribute_not_found": "السمة {attribute} غير متاحة في: {entity}",
"entity_not_found": "الجهاز غير متوفر: {entity}",
"entity_unavailable": "العنصر غير متوفر"
}
},
"mailbox": {
@ -749,6 +993,11 @@
"submit": "إرسال"
},
"current_user": "أنت مسجّل الدخول حاليًا كـ {fullName} .",
"dashboard": {
"description": "اختر لوحة معلومات افتراضية لهذا الجهاز.",
"dropdown_label": "لوحة المعلومات",
"header": "لوحة المعلومات"
},
"is_owner": "أنت مالك",
"language": {
"dropdown_label": "اللغة",

View File

@ -214,7 +214,7 @@
},
"fan": {
"off": "Apagat",
"on": "Activat"
"on": "Engegat"
},
"group": {
"closed": "Tancat",
@ -246,7 +246,7 @@
"media_player": {
"idle": "Inactiu",
"off": "Desactivat",
"on": "Activat",
"on": "Encès",
"paused": "Pausat",
"playing": "Reproduint",
"standby": "En espera"
@ -260,7 +260,7 @@
},
"remote": {
"off": "Apagat",
"on": "Activat"
"on": "Encès"
},
"scene": {
"scening": "Escena activa"

View File

@ -654,6 +654,17 @@
"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"
@ -1294,6 +1305,10 @@
}
}
},
"filtering": {
"clear": "Ryd",
"filtering_by": "Filtrering efter"
},
"header": "Konfigurer Home Assistant",
"helpers": {
"caption": "Hjælpere",
@ -1321,9 +1336,11 @@
}
},
"integrations": {
"add_integration": "Tilføj integration",
"caption": "Integrationer",
"config_entry": {
"area": "I {area}",
"delete": "Slet",
"delete_button": "Slet {integration}",
"delete_confirm": "Er du sikker på, at du vil fjerne denne integration?",
"device_unavailable": "entitet utilgængelig",
@ -1334,8 +1351,11 @@
"no_area": "Intet område",
"no_device": "Entiteter uden enhed",
"no_devices": "Denne integration har ingen enheder",
"options": "Indstillinger",
"rename": "Omdøb",
"restart_confirm": "Genstart Home Assistant for at fuldføre fjernelsen af denne integration",
"settings_button": "Ret indstillinger for {integration}",
"system_options": "Systemindstillinger",
"system_options_button": "Systemindstillinger for {integration}"
},
"config_flow": {
@ -1370,11 +1390,15 @@
"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",
"note_about_integrations": "Ikke alle integrationer kan konfigureres via brugerfladen endnu.",
"note_about_website_reference": "Flere er tilgængelige på "
"note_about_website_reference": "Flere er tilgængelige på ",
"rename_dialog": "Rediger navnet på denne konfigurationspost",
"rename_input_label": "Navn på post"
},
"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.",
"lovelace": {
@ -2241,7 +2265,8 @@
"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_not_found": "Entitet ikke tilgængelig: {entity}",
"entity_unavailable": "{entity} er ikke tilgængelig i øjeblikket"
}
},
"mailbox": {

View File

@ -654,6 +654,15 @@
"stop": "Stoppen"
}
},
"mqtt_device_debug_info": {
"entities": "Entitäten",
"no_entities": "Keine Entitäten",
"no_triggers": "Keine Auslöser",
"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"
@ -1294,6 +1303,10 @@
}
}
},
"filtering": {
"clear": "Leeren",
"filtering_by": "Filtern nach"
},
"header": "Home Assistant konfigurieren",
"helpers": {
"caption": "Helfer",
@ -1321,12 +1334,16 @@
}
},
"integrations": {
"add_integration": "Integration hinzufügen",
"caption": "Integrationen",
"config_entry": {
"area": "In {area}",
"delete": "Löschen",
"delete_button": "{integration} löschen",
"delete_confirm": "Möchtest du diese Integration wirklich löschen?",
"device_unavailable": "Gerät nicht verfügbar",
"devices": "{count} {count, plural,\n one {Gerät}\n other {Geräte}\n}",
"entities": "{count} {count, plural,\none {Einheit}\nother {Einheiten}\n}",
"entity_unavailable": "Entität nicht verfügbar",
"firmware": "Firmware: {version}",
"hub": "Verbunden über",
@ -1334,8 +1351,11 @@
"no_area": "Kein Bereich",
"no_device": "Entitäten ohne Geräte",
"no_devices": "Diese Integration hat keine Geräte.",
"options": "Optionen",
"rename": "Umbenennen",
"restart_confirm": "Starte Home Assistant neu, um das Entfernen dieser Integration abzuschließen",
"settings_button": "Einstellungen für {integration} bearbeiten",
"system_options": "Systemoptionen",
"system_options_button": "Systemoptionen für {integration}"
},
"config_flow": {
@ -1370,11 +1390,15 @@
"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": "Sie haben anscheinend noch keine Integrationen konfiguriert. Klicken Sie auf die Schaltfläche unten, um Ihre erste Integration hinzuzufügen!",
"none": "Noch nichts konfiguriert",
"note_about_integrations": "Nicht alle Integrationen können über die Benutzeroberfläche konfiguriert werden.",
"note_about_website_reference": "Weitere Informationen finden Sie auf der "
"note_about_website_reference": "Weitere Informationen finden Sie auf der ",
"rename_dialog": "Bearbeiten Sie den Namen dieses Konfigurationseintrags",
"rename_input_label": "Eintragsname"
},
"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.",
"lovelace": {
@ -2190,12 +2214,12 @@
"close": "Schließen",
"empty_config": "Beginnen Sie mit einem leeren Dashboard",
"header": "Lovelace Userinterface selbst verwalten",
"para": "Standardmäßig verwaltet Home Assistant deine Benutzeroberfläche und aktualisiert sie, sobald neue Entitäten oder Lovelace-Komponenten verfügbar sind. Wenn du die Verwaltung selbst übernehmen möchtest, nehmen wir für dich keine Änderungen mehr vor.",
"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 Sie die Kontrolle übernehmen, wird dieses Dashboard nicht mehr automatisch aktualisiert. Sie können jederzeit ein neues Dashboard in der Konfiguration erstellen, mit dem Sie herumspielen können.",
"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, erstellen Sie eine YAML-Datei mit dem Namen, den Sie in Ihrer Konfiguration für dieses Dashboard angegeben haben, oder mit der Standardeinstellung 'ui-lovelace.yaml'.",
"yaml_mode": "Du verwendest den YAML-Modus. Daher kannst du deine Lovelace-Konfiguration nicht über die Benutzeroberfläche ändern. Wenn du Lovelace über die Benutzeroberfläche ändern möchtest, entferne den 'mode: yaml' aus deiner Lovelace-Konfiguration in 'configuration.yaml'."
"yaml_mode": "Sie verwenden den YAML-Modus für dieses Dashboard. Dies bedeutet, dass Sie Ihre Lovelace-Konfiguration nicht über die Benutzeroberfläche ändern können. Wenn Sie dieses Dashboard über die Benutzeroberfläche verwalten möchten, entfernen Sie \"mode: yaml\" aus Ihrer Lovelace-Konfiguration in \"configuration.yaml\"."
},
"suggest_card": {
"add": "Zu Lovelace hinzufügen",
@ -2241,7 +2265,8 @@
"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_not_found": "Entität nicht verfügbar: {entity}",
"entity_unavailable": "{entity} ist derzeit nicht verfügbar"
}
},
"mailbox": {

View File

@ -2216,12 +2216,12 @@
"close": "Close",
"empty_config": "Start with an empty dashboard",
"header": "Take control of your Lovelace UI",
"para": "By default Home Assistant will maintain your user interface, updating it when new entities or Lovelace UI components become available. If you take control we will no longer make changes automatically for you.",
"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, which means you cannot change your Lovelace config from the UI. If you want to change Lovelace from the UI, remove 'mode: yaml' from your Lovelace configuration in 'configuration.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.'."
},
"suggest_card": {
"add": "Add to Lovelace UI",

View File

@ -71,7 +71,7 @@
},
"device_tracker": {
"home": "En casa",
"not_home": "Fuera"
"not_home": "Fuera de casa"
},
"person": {
"home": "En casa",
@ -291,8 +291,8 @@
"docked": "En base",
"error": "Error",
"idle": "Inactivo",
"off": "Apagado",
"on": "Encendido",
"off": "Apagada",
"on": "Encendida",
"paused": "En pausa",
"returning": "Volviendo a la base"
},
@ -660,9 +660,9 @@
"no_entities": "No hay entidades",
"no_triggers": "No hay desencadenantes",
"payload_display": "Mostrar payload",
"recent_messages": "{n} mensaje(s) recibidos más recientemente",
"recent_messages": "{n} mensaje(s) recibido(s) más recientemente",
"show_as_yaml": "Mostrar como YAML",
"title": "{device} información de depuración",
"title": "Información de depuración de {device}",
"triggers": "Desencadenantes"
},
"options_flow": {

View File

@ -328,7 +328,7 @@
},
"ui": {
"auth_store": {
"ask": "Haluatko tallentaa tämän käyttäjätunnuksen?",
"ask": "Haluatko pysyä kirjautuneena sisään?",
"confirm": "Tallenna käyttäjätunnus",
"decline": "Ei kiitos"
},
@ -513,9 +513,13 @@
},
"related-items": {
"area": "Alue",
"automation": "Osa seuraavia automaatioita",
"device": "Laite",
"entity": "Liittyvät kohteet",
"integration": "Integraatio"
"group": "Osa seuraavia ryhmiä",
"integration": "Integraatio",
"scene": "Osa seuraavia tilanteita",
"script": "Osa seuraavia skriptejä"
},
"relative_time": {
"duration": {
@ -546,9 +550,14 @@
"editor": {
"confirm_delete": "Haluatko varmasti poistaa tämän kohteen?",
"delete": "Poista",
"enabled_cause": "{cause} on poistanut sen käytöstä.",
"enabled_description": "Käytöstä poistettuja kohteita ei lisätä Home Assistantiin.",
"enabled_label": "Ota kohte käyttöön",
"entity_id": "Kohde ID",
"icon": "Kuvakkeen yliajo",
"name": "Nimen yliajo",
"note": "Huomaa: tämä ei ehkä vielä toimi kaikissa integraatioissa.",
"unavailable": "Tämä kohde ei ole tällä hetkellä käytettävissä.",
"update": "Päivitä"
},
"related": "liittyvä",
@ -625,6 +634,12 @@
"stop": "Pysäytä"
}
},
"mqtt_device_debug_info": {
"no_triggers": "Ei laukaisimia",
"payload_display": "Tietosisältönäyttö",
"show_as_yaml": "Näytä YAML-muodossa",
"triggers": "Laukaisimet"
},
"options_flow": {
"form": {
"header": "Asetukset"
@ -658,7 +673,9 @@
"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",
@ -939,6 +956,7 @@
"picker": {
"add_automation": "Lisää automaatio",
"delete_automation": "Poista automaatio",
"delete_confirm": "Haluatko varmasti poistaa tämän automaation?",
"edit_automation": "Muokkaa automaatiota",
"header": "Automaatioeditori",
"headers": {
@ -947,6 +965,7 @@
"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"
}
@ -1014,6 +1033,8 @@
},
"alexa": {
"expose": "Julkista Alexalle",
"exposed_entities": "Julkistetut kohteet",
"not_exposed_entities": "eJulk",
"title": "Alexa"
},
"caption": "Home Assistant Cloud",
@ -1028,11 +1049,15 @@
"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ä",
"view_documentation": "Näytä dokumentaatio"
"managed_by_integration": "Tätä webhookia hallitsee integrointi, 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.",
@ -1047,6 +1072,7 @@
"disable_2FA": "Poista kaksivaiheinen tunnistautuminen",
"expose": "Julkista Google Assistantille",
"exposed_entities": "Julkistetut kohteet",
"not_exposed_entities": "Julkistamattomat kohteet",
"sync_to_google": "Synkronoidaan muutokset Googleen.",
"title": "Google Assistant"
},
@ -1125,8 +1151,10 @@
},
"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",
"pick_attribute": "Valitse yliajettava määrite",
@ -1156,6 +1184,7 @@
"cant_edit": "Voit muokata vain käyttöliittymässä luotuja kohteita.",
"caption": "Laitteet",
"confirm_delete": "Haluatko varmasti poistaa tämän laitteen?",
"confirm_rename_entity_ids": "Haluatko myös nimetä kohteiden ID:t uudelleen?",
"data_table": {
"area": "Alue",
"battery": "Akku",
@ -1196,7 +1225,8 @@
"description": "Yleiskuva kaikista tunnetuista entiteeteistä.",
"picker": {
"disable_selected": {
"button": "Poista valitut käytöstä"
"button": "Poista valitut käytöstä",
"confirm_text": "Käytöstä poistettuja kohteita ei lisätä Home Assistantiin."
},
"enable_selected": {
"button": "Ota valitut käyttöön",
@ -1218,7 +1248,9 @@
"introduction2": "Yksikkörekisterin avulla voit ohittaa nimeä, muuttaa yksikön tunnusta tai poistaa merkinnän Home Assistantista. Huomaa, että rekisterimerkinnän poistaminen ei poista yksikköä sinäänsä. Sitä voit seuraamalla alla olevaa linkkiä ja poistamalla sitä integrointisivulta.",
"remove_selected": {
"button": "Poista valitut",
"confirm_partly_title": "Vain {number} valittua entiteettiä voidaan poistaa."
"confirm_partly_title": "Vain {number} valittua entiteettiä 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} kohdetta?"
},
"selected": "{numero} valittuna",
"status": {
@ -1230,12 +1262,18 @@
}
}
},
"filtering": {
"clear": "Tyhjennä"
},
"header": "Säädä Home Assistanttia",
"helpers": {
"dialog": {
"add_helper": "Lisää apustin",
"add_platform": "Lisää {platform}",
"create": "Luo"
},
"picker": {
"add_helper": "Lisää apustin",
"headers": {
"editable": "Muokattavissa",
"entity_id": "Kohde ID",
@ -1244,13 +1282,17 @@
}
},
"types": {
"input_datetime": "Päivämäärä ja/tai kellonaika"
"input_boolean": "Kytkin",
"input_datetime": "Päivämäärä ja/tai kellonaika",
"input_select": "Alasvetovalikko"
}
},
"integrations": {
"add_integration": "Lisää integraatio",
"caption": "Integraatiot",
"config_entry": {
"area": "Alueessa {alue}",
"delete": "Poista",
"delete_button": "Poista {integration}",
"delete_confirm": "Haluatko varmasti poistaa tämän integraation?",
"device_unavailable": "laite ei saatavissa",
@ -1261,8 +1303,11 @@
"no_area": "Ei aluetta",
"no_device": "Kohteet ilman laitteita",
"no_devices": "Tällä integraatiolla ei ole laitteita.",
"options": "Asetukset",
"rename": "Nimeä uudelleen",
"restart_confirm": "Käynnistä Home Assistant uudellen viimeistelläksesi tämän integraation poistamisen",
"settings_button": "Muokkaa {Integration}-asetuksia",
"system_options": "Järjestelmäasetukset",
"system_options_button": "{Integration}-järjestelmän asetukset"
},
"config_flow": {
@ -1270,6 +1315,7 @@
"close": "Sulje",
"created_config": "Asetus luotu {name}",
"dismiss": "Sulje ikkuna",
"error_saving_area": "Virhe tallennettaessa aluetta: {error}",
"external_step": {
"description": "Tämä vaihe edellyttää, että vierailet ulkopuolisella verkkosivustolla.",
"open_site": "Avaa verkkosivusto"
@ -1292,21 +1338,26 @@
"show_ignored": "Näytä ohitetut integraatiot",
"stop_ignore": "Lopeta ohittaminen"
},
"integration": "integraatio",
"integration_not_found": "Integraatiota ei löydy.",
"new": "Määritä uusi integraatio",
"none": "Mitään ei ole vielä määritetty",
"note_about_integrations": "Kaikkia integraatioita ei voi vielä määrittää käyttöliittymän kautta.",
"note_about_website_reference": "Lisää saatavilla"
"note_about_website_reference": "Lisää saatavilla",
"rename_dialog": "Muokkaa tämän määritysmerkinnän nimeä",
"rename_input_label": "Merkinnän nimi"
},
"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.",
"lovelace": {
"caption": "Lovelace-kojelaudat",
"dashboards": {
"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?",
"default_dashboard": "Tämä on oletuskojelauta",
"detail": {
"create": "Luo",
@ -1315,7 +1366,9 @@
"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.",
@ -1336,8 +1389,11 @@
"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",
@ -1347,7 +1403,8 @@
"update": "Päivitä",
"url": "Url",
"url_error_msg": "URL on pakollinen kenttä",
"warning_header": "Ole varovainen!"
"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",
@ -1357,6 +1414,8 @@
},
"no_resources": "Ei resursseja"
},
"refresh_body": "Sinun on päivitettävä sivu suorittaaksesi poiston loppuun. Haluatko päivittää nyt?",
"refresh_header": "Haluatko päivittää?",
"types": {
"css": "Tyylitiedosto",
"html": "HTML (vanhentunut)",
@ -1387,6 +1446,7 @@
"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.",
"no_persons_created_yet": "Näyttää siltä, ettet ole vielä luonut yhtään henkilöä."
},
"scene": {
@ -1426,6 +1486,9 @@
"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"
}
@ -1439,8 +1502,11 @@
"delete_confirm": "Haluatko varmasti poistaa tämän skriptin?",
"delete_script": "Poista skripti",
"header": "Skripti: {name}",
"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.",
"sequence": "Järjestys"
"sequence": "Järjestys",
"sequence_sentence": "Skriptin toimintojen järjestys."
},
"picker": {
"add_script": "Lisää skripti",
@ -1449,6 +1515,7 @@
"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ä",
"show_info": "Näytä tietoja skriptistä",
@ -1553,7 +1620,8 @@
},
"clusters": {
"header": "Klusterit",
"help_cluster_dropdown": "Valitse klusteri tarkastellaksesi määritteitä ja komentoja."
"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": {
"add_devices": "Lisää laitteita",
@ -1568,6 +1636,7 @@
},
"group_binding": {
"bind_button_label": "Sido ryhmä",
"group_picker_help": "Valitse ryhmä, jos haluat antaa sidontakomennon.",
"group_picker_label": "Sidottavat ryhmät",
"header": "Ryhmäsidonta",
"introduction": "Sido ja pura ryhmiä",
@ -1579,6 +1648,7 @@
"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",
"description": "Luo ja muokkaa Zigbee-ryhmiä",
"group_details": "Tässä ovat kaikki valitun Zigbee-ryhmän tiedot.",
@ -1600,31 +1670,42 @@
"zha_zigbee_groups": "ZHA Zigbee -ryhmät"
},
"header": "Määritä Zigbee-kotiautomaatio",
"introduction": "Täällä on mahdollista määrittää ZHA-komponentti. Kaikkia ei ole vielä mahdollista määrittää käyttöliittymästä, mutta työskentelemme sen parissa.",
"network_management": {
"header": "Verkon hallinta",
"introduction": "Koko verkkoon vaikuttavat komennot"
},
"node_management": {
"header": "Laitehallinta",
"help_node_dropdown": "Valitse laite tarkastellaksesi laitekohtaisia vaihtoehtoja."
"help_node_dropdown": "Valitse laite tarkastellaksesi laitekohtaisia vaihtoehtoja.",
"introduction": "Suorita ZHA-komennot, jotka vaikuttavat yhteen laitteeseen. Valitse laite nähdäksesi luettelon käytettävissä olevista komennoista."
},
"title": "Zigbee-kotiautomaatio"
},
"zone": {
"add_zone": "Lisää vyöhyke",
"caption": "Alueet",
"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": "Voit asettaa kotisi sijainnin kohdasta Asetukset>Yleinen."
"edit_home_zone": "Voit asettaa kotisi sijainnin kohdasta Asetukset>Yleinen.",
"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": {
"caption": "Z-Wave",
@ -1683,14 +1764,20 @@
"developer-tools": {
"tabs": {
"events": {
"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"
},
@ -1721,9 +1808,12 @@
"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"
},
@ -1742,8 +1832,13 @@
},
"states": {
"attributes": "Määritteet",
"current_entities": "Nykyiset kohteet",
"entity": "Kohde",
"filter_attributes": "Suodata määritteitä",
"filter_entities": "Suodata kohteita",
"filter_states": "Suodata tiloja",
"more_info": "Lisätietoja",
"no_entities": "Ei kohteita",
"set_state": "Aseta tila",
"state": "Tila",
"title": "Tilat"
@ -1759,11 +1854,13 @@
"showing_entries": "Näytetään tapahtumat alkaen"
},
"logbook": {
"entries_not_found": "Lokikirjauksia ei löytynyt.",
"period": "aikajakso",
"showing_entries": "Näytetään kirjaukset ajalta"
},
"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."
},
@ -1796,7 +1893,7 @@
}
},
"changed_toast": {
"message": "Lovelace-asetukset päivitettiin, haluatko päivittää näkymän?",
"message": "Lovelace-asetukset päivitettiin. Haluatko päivittää näkymän?",
"refresh": "Päivitä"
},
"editor": {
@ -1832,6 +1929,7 @@
"name": "Kohde"
},
"gauge": {
"description": "Mittarikortti on peruskortti, jonka avulla anturitiedot voidaan nähdä visuaalisesti.",
"name": "Mittari",
"severity": {
"define": "Määritä vakavuus?",
@ -1954,6 +2052,7 @@
},
"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"
},
"edit_view": {
@ -2000,7 +2099,8 @@
"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"
"save": "Ota hallintaan",
"yaml_mode": "Käytät YAML-tilaa, mikä tarkoittaa, että et voi muuttaa Lovelace-kokoonpanoa käyttöliittymästä. Jos haluat muuttaa Lovelace-sovellusta käyttöliittymästä, poista 'mode: yaml' Lovelace-määrityksestäsi tiedostossa 'configuration.yaml'."
},
"suggest_card": {
"add": "Lisää Lovelace-käyttöliittymään",
@ -2025,6 +2125,7 @@
"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",
@ -2038,7 +2139,8 @@
},
"warning": {
"entity_non_numeric": "Yksikkö ei ole numeerinen: {entity}",
"entity_not_found": "Yksikkö ei ole käytettävissä: {entity}"
"entity_not_found": "Yksikkö ei ole käytettävissä: {entity}",
"entity_unavailable": "{entity} ei ole tällä hetkellä käytettävissä"
}
},
"mailbox": {
@ -2315,7 +2417,8 @@
}
},
"sidebar": {
"external_app_configuration": "Sovelluksen määritykset"
"external_app_configuration": "Sovelluksen määritykset",
"sidebar_toggle": "Sivupalkin kytkin"
}
}
}

View File

@ -656,6 +656,8 @@
},
"mqtt_device_debug_info": {
"entities": "Entités",
"no_entities": "Aucune entité",
"title": "{device} informations de débogage",
"triggers": "Déclencheurs"
},
"options_flow": {

View File

@ -654,6 +654,17 @@
"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": "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"
@ -752,7 +763,7 @@
"integrations_page": "Integrációk oldal",
"introduction": "A területekkel az eszközök elhelyezkedés szerint rendszerezhetők. Ezen információk felhasználásával a 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áld az alábbi linket az integrációs oldalra való navigáláshoz, majd kattints egy konfigurált integrációra az eszközkártyák eléréséhez.",
"no_areas": "Úgy tűnik, nem hoztál még létre egy területet sem!"
"no_areas": "Úgy tűnik, még nincs egy területed sem!"
}
},
"automation": {
@ -1294,6 +1305,10 @@
}
}
},
"filtering": {
"clear": "Törlés",
"filtering_by": "Szűrés"
},
"header": "Home Assistant beállítása",
"helpers": {
"caption": "Segítők",
@ -1321,12 +1336,16 @@
}
},
"integrations": {
"add_integration": "Integráció hozzáadása",
"caption": "Integrációk",
"config_entry": {
"area": "Terület: {area}",
"delete": "Törlés",
"delete_button": "Törlés: {integration}",
"delete_confirm": "Biztosan törölni szeretnéd ezt az integrációt?",
"device_unavailable": "eszköz nem érhető el",
"devices": "{count} {count, plural,\n one {eszköz}\n other {eszköz}\n}",
"entities": "{count} {count, plural,\n one {entitás}\n other {entitás}\n}",
"entity_unavailable": "entitás nem érhető el",
"firmware": "Firmware: {version}",
"hub": "Kapcsolódva",
@ -1334,8 +1353,11 @@
"no_area": "Nincs Terület",
"no_device": "Eszköz nélküli entitások",
"no_devices": "Ez az integráció nem rendelkezik eszközökkel.",
"options": "Opciók",
"rename": "Átnevezés",
"restart_confirm": "Indítsd újra a Home Assistant-ot az integráció törlésének befejezéséhez",
"settings_button": "{integration} beállításainak szerkesztése",
"system_options": "Rendszerbeállítások",
"system_options_button": "{integration} rendszerbeállításai"
},
"config_flow": {
@ -1370,11 +1392,15 @@
"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. Kattints az alábbi gombra az első integráció hozzáadásához!",
"none": "Még semmi sincs beállítva",
"note_about_integrations": "Még nem minden integráció konfigurálható a felhasználói felületen keresztül.",
"note_about_website_reference": "Továbbiak érhetőek el itt: "
"note_about_website_reference": "Továbbiak érhetőek el itt: ",
"rename_dialog": "A konfigurációs bejegyzés nevének szerkesztése",
"rename_input_label": "Bejegyzés neve"
},
"introduction": "Itt a komponenseket és a Home Assistant szervert lehet beállítani. Még nem lehet mindent a felületről, de dolgozunk rajta.",
"lovelace": {
@ -2241,7 +2267,8 @@
"warning": {
"attribute_not_found": "A(z) {attribute} attribútum nem érhető el a(z) {entity} entitásban.",
"entity_non_numeric": "Entitás nem numerikus: {entity}",
"entity_not_found": "Entitás nem elérhető: {entity}"
"entity_not_found": "Entitás nem elérhető: {entity}",
"entity_unavailable": "{entity} jelenleg nem elérhető"
}
},
"mailbox": {

Some files were not shown because too many files have changed in this diff Show More