mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-28 11:46:42 +00:00
commit
00e9155546
@ -36,6 +36,7 @@ const TRANSLATION_FRAGMENTS = [
|
|||||||
"page-authorize",
|
"page-authorize",
|
||||||
"page-demo",
|
"page-demo",
|
||||||
"page-onboarding",
|
"page-onboarding",
|
||||||
|
"developer-tools",
|
||||||
];
|
];
|
||||||
|
|
||||||
const tasks = [];
|
const tasks = [];
|
||||||
|
2
setup.py
2
setup.py
@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="home-assistant-frontend",
|
name="home-assistant-frontend",
|
||||||
version="20190712.0",
|
version="20190715.0",
|
||||||
description="The Home Assistant frontend",
|
description="The Home Assistant frontend",
|
||||||
url="https://github.com/home-assistant/home-assistant-polymer",
|
url="https://github.com/home-assistant/home-assistant-polymer",
|
||||||
author="The Home Assistant Authors",
|
author="The Home Assistant Authors",
|
||||||
|
83
src/common/search/search-input.ts
Normal file
83
src/common/search/search-input.ts
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
import { TemplateResult, html } from "lit-html";
|
||||||
|
import {
|
||||||
|
css,
|
||||||
|
CSSResult,
|
||||||
|
customElement,
|
||||||
|
LitElement,
|
||||||
|
property,
|
||||||
|
} from "lit-element";
|
||||||
|
import { fireEvent } from "../dom/fire_event";
|
||||||
|
import "@polymer/iron-icon/iron-icon";
|
||||||
|
import "@polymer/paper-input/paper-input";
|
||||||
|
import "@polymer/paper-icon-button/paper-icon-button";
|
||||||
|
import "@material/mwc-button";
|
||||||
|
|
||||||
|
@customElement("search-input")
|
||||||
|
class SearchInput extends LitElement {
|
||||||
|
@property() private filter?: string;
|
||||||
|
|
||||||
|
protected render(): TemplateResult | void {
|
||||||
|
return html`
|
||||||
|
<div class="search-container">
|
||||||
|
<paper-input
|
||||||
|
autofocus
|
||||||
|
label="Search"
|
||||||
|
.value=${this.filter}
|
||||||
|
@value-changed=${this._filterInputChanged}
|
||||||
|
>
|
||||||
|
<iron-icon
|
||||||
|
icon="mdi:magnify"
|
||||||
|
slot="prefix"
|
||||||
|
class="prefix"
|
||||||
|
></iron-icon>
|
||||||
|
${this.filter &&
|
||||||
|
html`
|
||||||
|
<paper-icon-button
|
||||||
|
slot="suffix"
|
||||||
|
class="suffix"
|
||||||
|
@click=${this._clearSearch}
|
||||||
|
icon="mdi:close"
|
||||||
|
alt="Clear"
|
||||||
|
title="Clear"
|
||||||
|
></paper-icon-button>
|
||||||
|
`}
|
||||||
|
</paper-input>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
private async _filterChanged(value: string) {
|
||||||
|
fireEvent(this, "value-changed", { value: String(value) });
|
||||||
|
}
|
||||||
|
|
||||||
|
private async _filterInputChanged(e) {
|
||||||
|
this._filterChanged(e.target.value);
|
||||||
|
}
|
||||||
|
|
||||||
|
private async _clearSearch() {
|
||||||
|
this._filterChanged("");
|
||||||
|
}
|
||||||
|
|
||||||
|
static get styles(): CSSResult {
|
||||||
|
return css`
|
||||||
|
paper-input {
|
||||||
|
flex: 1 1 auto;
|
||||||
|
margin: 0 16px;
|
||||||
|
}
|
||||||
|
.search-container {
|
||||||
|
display: inline-flex;
|
||||||
|
width: 100%;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.prefix {
|
||||||
|
margin: 8px;
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
interface HTMLElementTagNameMap {
|
||||||
|
"search-input": SearchInput;
|
||||||
|
}
|
||||||
|
}
|
@ -72,7 +72,7 @@ class HaMenuButton extends LitElement {
|
|||||||
// on older frontends too, that don't have an always visible menu button
|
// on older frontends too, that don't have an always visible menu button
|
||||||
// in the sidebar.
|
// in the sidebar.
|
||||||
this._alwaysVisible =
|
this._alwaysVisible =
|
||||||
(Number((window.parent as any).frontendVersion) || 0) >= 20190710;
|
(Number((window.parent as any).frontendVersion) || 0) < 20190710;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected updated(changedProps) {
|
protected updated(changedProps) {
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
import {
|
import {
|
||||||
LitElement,
|
|
||||||
TemplateResult,
|
|
||||||
html,
|
|
||||||
css,
|
css,
|
||||||
customElement,
|
|
||||||
CSSResult,
|
CSSResult,
|
||||||
|
customElement,
|
||||||
|
html,
|
||||||
|
LitElement,
|
||||||
|
property,
|
||||||
|
TemplateResult,
|
||||||
} from "lit-element";
|
} from "lit-element";
|
||||||
import "@polymer/paper-spinner/paper-spinner-lite";
|
import "@polymer/paper-spinner/paper-spinner-lite";
|
||||||
import "@polymer/paper-item/paper-item";
|
import "@polymer/paper-item/paper-item";
|
||||||
@ -12,23 +13,62 @@ import "@polymer/paper-item/paper-item-body";
|
|||||||
import { HomeAssistant } from "../../types";
|
import { HomeAssistant } from "../../types";
|
||||||
import { createConfigFlow } from "../../data/config_entries";
|
import { createConfigFlow } from "../../data/config_entries";
|
||||||
import { fireEvent } from "../../common/dom/fire_event";
|
import { fireEvent } from "../../common/dom/fire_event";
|
||||||
|
import memoizeOne from "memoize-one";
|
||||||
|
import * as Fuse from "fuse.js";
|
||||||
|
|
||||||
import "../../components/ha-icon-next";
|
import "../../components/ha-icon-next";
|
||||||
|
import "../../common/search/search-input";
|
||||||
|
|
||||||
|
interface HandlerObj {
|
||||||
|
name: string;
|
||||||
|
slug: string;
|
||||||
|
}
|
||||||
|
|
||||||
@customElement("step-flow-pick-handler")
|
@customElement("step-flow-pick-handler")
|
||||||
class StepFlowPickHandler extends LitElement {
|
class StepFlowPickHandler extends LitElement {
|
||||||
public hass!: HomeAssistant;
|
@property() public hass!: HomeAssistant;
|
||||||
public handlers!: string[];
|
@property() public handlers!: string[];
|
||||||
|
@property() private filter?: string;
|
||||||
|
|
||||||
|
private _getHandlers = memoizeOne((h: string[], filter?: string) => {
|
||||||
|
const handlers: HandlerObj[] = h.map((handler) => {
|
||||||
|
return {
|
||||||
|
name: this.hass.localize(`component.${handler}.config.title`),
|
||||||
|
slug: handler,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
if (filter) {
|
||||||
|
const options: Fuse.FuseOptions<HandlerObj> = {
|
||||||
|
keys: ["name", "slug"],
|
||||||
|
caseSensitive: false,
|
||||||
|
minMatchCharLength: 2,
|
||||||
|
threshold: 0.2,
|
||||||
|
};
|
||||||
|
const fuse = new Fuse(handlers, options);
|
||||||
|
return fuse.search(filter);
|
||||||
|
}
|
||||||
|
return handlers.sort((a, b) =>
|
||||||
|
a.name.toUpperCase() < b.name.toUpperCase() ? -1 : 1
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
protected render(): TemplateResult | void {
|
protected render(): TemplateResult | void {
|
||||||
|
const handlers = this._getHandlers(this.handlers, this.filter);
|
||||||
|
|
||||||
return html`
|
return html`
|
||||||
<h2>${this.hass.localize("ui.panel.config.integrations.new")}</h2>
|
<h2>${this.hass.localize("ui.panel.config.integrations.new")}</h2>
|
||||||
<div>
|
<div>
|
||||||
${this.handlers.map(
|
<search-input
|
||||||
(handler) =>
|
.filter=${this.filter}
|
||||||
|
@value-changed=${this._filterChanged}
|
||||||
|
></search-input>
|
||||||
|
${handlers.map(
|
||||||
|
(handler: HandlerObj) =>
|
||||||
html`
|
html`
|
||||||
<paper-item @click=${this._handlerPicked} .handler=${handler}>
|
<paper-item @click=${this._handlerPicked} .handler=${handler}>
|
||||||
<paper-item-body>
|
<paper-item-body>
|
||||||
${this.hass.localize(`component.${handler}.config.title`)}
|
${handler.name}
|
||||||
</paper-item-body>
|
</paper-item-body>
|
||||||
<ha-icon-next></ha-icon-next>
|
<ha-icon-next></ha-icon-next>
|
||||||
</paper-item>
|
</paper-item>
|
||||||
@ -38,15 +78,20 @@ class StepFlowPickHandler extends LitElement {
|
|||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private async _filterChanged(e) {
|
||||||
|
this.filter = e.detail.value;
|
||||||
|
}
|
||||||
|
|
||||||
private async _handlerPicked(ev) {
|
private async _handlerPicked(ev) {
|
||||||
fireEvent(this, "flow-update", {
|
fireEvent(this, "flow-update", {
|
||||||
stepPromise: createConfigFlow(this.hass, ev.currentTarget.handler),
|
stepPromise: createConfigFlow(this.hass, ev.currentTarget.handler.slug),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
static get styles(): CSSResult {
|
static get styles(): CSSResult {
|
||||||
return css`
|
return css`
|
||||||
h2 {
|
h2 {
|
||||||
|
margin-bottom: 2px;
|
||||||
padding-left: 16px;
|
padding-left: 16px;
|
||||||
}
|
}
|
||||||
div {
|
div {
|
||||||
|
@ -41,8 +41,12 @@ export class CloudAlexaPref extends LitElement {
|
|||||||
control all your Home Assistant devices via any Alexa-enabled device.
|
control all your Home Assistant devices via any Alexa-enabled device.
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
To activate, search in the Alexa app for the Home Assistant Smart
|
<a
|
||||||
Home skill.
|
href="https://skills-store.amazon.com/deeplink/dp/B0772J1QKB?deviceType=app"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
Enable the Home Assistant skill for Alexa
|
||||||
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a
|
<a
|
||||||
|
@ -41,7 +41,7 @@ class PanelDeveloperTools extends LitElement {
|
|||||||
.hass=${this.hass}
|
.hass=${this.hass}
|
||||||
.narrow=${this.narrow}
|
.narrow=${this.narrow}
|
||||||
></ha-menu-button>
|
></ha-menu-button>
|
||||||
<div main-title>Developer Tools</div>
|
<div main-title>${this.hass.localize("panel.developer_tools")}</div>
|
||||||
</app-toolbar>
|
</app-toolbar>
|
||||||
<paper-tabs
|
<paper-tabs
|
||||||
scrollable
|
scrollable
|
||||||
@ -50,26 +50,36 @@ class PanelDeveloperTools extends LitElement {
|
|||||||
@iron-activate=${this.handlePageSelected}
|
@iron-activate=${this.handlePageSelected}
|
||||||
>
|
>
|
||||||
<paper-tab page-name="info">
|
<paper-tab page-name="info">
|
||||||
${this.hass.localize("panel.dev-info")}
|
${this.hass.localize("ui.panel.developer-tools.tabs.info.title")}
|
||||||
</paper-tab>
|
</paper-tab>
|
||||||
<paper-tab page-name="event">
|
<paper-tab page-name="event">
|
||||||
${this.hass.localize("panel.dev-events")}
|
${this.hass.localize(
|
||||||
|
"ui.panel.developer-tools.tabs.events.title"
|
||||||
|
)}
|
||||||
</paper-tab>
|
</paper-tab>
|
||||||
${isComponentLoaded(this.hass, "mqtt")
|
${isComponentLoaded(this.hass, "mqtt")
|
||||||
? html`
|
? html`
|
||||||
<paper-tab page-name="mqtt">
|
<paper-tab page-name="mqtt">
|
||||||
${this.hass.localize("panel.dev-mqtt")}
|
${this.hass.localize(
|
||||||
|
"ui.panel.developer-tools.tabs.mqtt.title"
|
||||||
|
)}
|
||||||
</paper-tab>
|
</paper-tab>
|
||||||
`
|
`
|
||||||
: ""}
|
: ""}
|
||||||
<paper-tab page-name="service">
|
<paper-tab page-name="service">
|
||||||
${this.hass.localize("panel.dev-services")}
|
${this.hass.localize(
|
||||||
|
"ui.panel.developer-tools.tabs.services.title"
|
||||||
|
)}
|
||||||
</paper-tab>
|
</paper-tab>
|
||||||
<paper-tab page-name="state">
|
<paper-tab page-name="state">
|
||||||
${this.hass.localize("panel.dev-states")}
|
${this.hass.localize(
|
||||||
|
"ui.panel.developer-tools.tabs.states.title"
|
||||||
|
)}
|
||||||
</paper-tab>
|
</paper-tab>
|
||||||
<paper-tab page-name="template">
|
<paper-tab page-name="template">
|
||||||
${this.hass.localize("panel.dev-templates")}
|
${this.hass.localize(
|
||||||
|
"ui.panel.developer-tools.tabs.templates.title"
|
||||||
|
)}
|
||||||
</paper-tab>
|
</paper-tab>
|
||||||
</paper-tabs>
|
</paper-tabs>
|
||||||
</app-header>
|
</app-header>
|
||||||
|
@ -38,20 +38,22 @@ class HaPanelDevMqtt extends PolymerElement {
|
|||||||
>
|
>
|
||||||
</app-localstorage-document>
|
</app-localstorage-document>
|
||||||
|
|
||||||
<ha-card header="Publish a packet">
|
<div class="content">
|
||||||
<div class="card-content">
|
<ha-card header="Publish a packet">
|
||||||
<paper-input label="topic" value="{{topic}}"></paper-input>
|
<div class="card-content">
|
||||||
|
<paper-input label="topic" value="{{topic}}"></paper-input>
|
||||||
|
|
||||||
<paper-textarea
|
<paper-textarea
|
||||||
always-float-label
|
always-float-label
|
||||||
label="Payload (template allowed)"
|
label="Payload (template allowed)"
|
||||||
value="{{payload}}"
|
value="{{payload}}"
|
||||||
></paper-textarea>
|
></paper-textarea>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-actions">
|
<div class="card-actions">
|
||||||
<mwc-button on-click="_publish">Publish</mwc-button>
|
<mwc-button on-click="_publish">Publish</mwc-button>
|
||||||
</div>
|
</div>
|
||||||
</ha-card>
|
</ha-card>
|
||||||
|
</div>
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -55,7 +55,10 @@ class HaPanelProfile extends EventsMixin(LocalizeMixin(PolymerElement)) {
|
|||||||
<app-header-layout has-scrolling-region>
|
<app-header-layout has-scrolling-region>
|
||||||
<app-header slot="header" fixed>
|
<app-header slot="header" fixed>
|
||||||
<app-toolbar>
|
<app-toolbar>
|
||||||
<ha-menu-button hass='[[hass]]' narrow='[[narrow]]'></ha-menu-button>
|
<ha-menu-button
|
||||||
|
hass="[[hass]]"
|
||||||
|
narrow="[[narrow]]"
|
||||||
|
></ha-menu-button>
|
||||||
<div main-title>[[localize('panel.profile')]]</div>
|
<div main-title>[[localize('panel.profile')]]</div>
|
||||||
</app-toolbar>
|
</app-toolbar>
|
||||||
</app-header>
|
</app-header>
|
||||||
@ -104,7 +107,7 @@ class HaPanelProfile extends EventsMixin(LocalizeMixin(PolymerElement)) {
|
|||||||
<ha-advanced-mode-card
|
<ha-advanced-mode-card
|
||||||
hass="[[hass]]"
|
hass="[[hass]]"
|
||||||
core-user-data="[[_coreUserData]]"
|
core-user-data="[[_coreUserData]]"
|
||||||
></ha-mfa-modules-card>
|
></ha-advanced-mode-card>
|
||||||
|
|
||||||
<ha-refresh-tokens-card
|
<ha-refresh-tokens-card
|
||||||
hass="[[hass]]"
|
hass="[[hass]]"
|
||||||
|
@ -52,12 +52,7 @@
|
|||||||
"history": "History",
|
"history": "History",
|
||||||
"mailbox": "Mailbox",
|
"mailbox": "Mailbox",
|
||||||
"shopping_list": "Shopping list",
|
"shopping_list": "Shopping list",
|
||||||
"dev-services": "Services",
|
"developer_tools": "Developer Tools",
|
||||||
"dev-states": "States",
|
|
||||||
"dev-events": "Events",
|
|
||||||
"dev-templates": "Templates",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Info",
|
|
||||||
"profile": "Profile"
|
"profile": "Profile"
|
||||||
},
|
},
|
||||||
"state": {
|
"state": {
|
||||||
@ -551,9 +546,7 @@
|
|||||||
"connection_lost": "Connection lost. Reconnecting…"
|
"connection_lost": "Connection lost. Reconnecting…"
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"developer_tools": "Developer tools",
|
"external_app_configuration": "App Configuration"
|
||||||
"external_app_configuration": "App Configuration",
|
|
||||||
"log_out": "Log out"
|
|
||||||
},
|
},
|
||||||
"panel": {
|
"panel": {
|
||||||
"config": {
|
"config": {
|
||||||
@ -1254,6 +1247,28 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"info": {
|
||||||
|
"title": "Info"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Events"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
},
|
||||||
|
"services": {
|
||||||
|
"title": "Services"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "States"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Template"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"page-onboarding": {
|
"page-onboarding": {
|
||||||
"intro": "Are you ready to awaken your home, reclaim your privacy and join a worldwide community of tinkerers?",
|
"intro": "Are you ready to awaken your home, reclaim your privacy and join a worldwide community of tinkerers?",
|
||||||
"user": {
|
"user": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Geskiedenis",
|
"history": "Geskiedenis",
|
||||||
"mailbox": "Posbus",
|
"mailbox": "Posbus",
|
||||||
"shopping_list": "Inkopielys",
|
"shopping_list": "Inkopielys",
|
||||||
"dev-services": "Dienste",
|
|
||||||
"dev-states": "State",
|
|
||||||
"dev-events": "Gebeure",
|
|
||||||
"dev-templates": "Template",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Info",
|
"dev-info": "Info",
|
||||||
|
"developer_tools": "Ontwikkelaar gereedskap",
|
||||||
"calendar": "Kalender",
|
"calendar": "Kalender",
|
||||||
"profile": "Profiel"
|
"profile": "Profiel"
|
||||||
},
|
},
|
||||||
@ -311,6 +307,25 @@
|
|||||||
"add_item": "Voeg item",
|
"add_item": "Voeg item",
|
||||||
"microphone_tip": "Druk die mikrofoon regs bo en sê \"Add candy to my shopping list\""
|
"microphone_tip": "Druk die mikrofoon regs bo en sê \"Add candy to my shopping list\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Dienste"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "State"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Gebeure"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Template"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Wys inskrywings vir",
|
"showing_entries": "Wys inskrywings vir",
|
||||||
"period": "Tydperk"
|
"period": "Tydperk"
|
||||||
@ -720,7 +735,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "U is tans aangemeld as {fullName} .",
|
"current_user": "U is tans aangemeld as {fullName} .",
|
||||||
"is_owner": "U is 'n eienaar.",
|
"is_owner": "U is 'n eienaar.",
|
||||||
"logout": "Meld af",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Verander Wagwoord",
|
"header": "Verander Wagwoord",
|
||||||
"current_password": "Huidige Wagwoord",
|
"current_password": "Huidige Wagwoord",
|
||||||
@ -933,7 +947,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Meld af",
|
"log_out": "Meld af",
|
||||||
"developer_tools": "Ontwikkelaar gereedskap",
|
|
||||||
"external_app_configuration": "App Konfigurasie"
|
"external_app_configuration": "App Konfigurasie"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "التاريخ",
|
"history": "التاريخ",
|
||||||
"mailbox": "البريد",
|
"mailbox": "البريد",
|
||||||
"shopping_list": "قائمة التسوق",
|
"shopping_list": "قائمة التسوق",
|
||||||
"dev-services": "الخدمات",
|
|
||||||
"dev-states": "الحالات",
|
|
||||||
"dev-events": "أحداث",
|
|
||||||
"dev-templates": "نماذج",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "معلومات",
|
"dev-info": "معلومات",
|
||||||
|
"developer_tools": "ادوات المطورين",
|
||||||
"calendar": "التقويم",
|
"calendar": "التقويم",
|
||||||
"profile": "الملف الشخصي"
|
"profile": "الملف الشخصي"
|
||||||
},
|
},
|
||||||
@ -294,6 +290,25 @@
|
|||||||
"add_item": "أضف عنصر",
|
"add_item": "أضف عنصر",
|
||||||
"microphone_tip": "اضغط على الميكروفون في أعلى اليمين وقل \"Add candy to my shopping list\""
|
"microphone_tip": "اضغط على الميكروفون في أعلى اليمين وقل \"Add candy to my shopping list\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "الخدمات"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "الحالات"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "أحداث"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "نماذج"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "عرض الأحداث لـ",
|
"showing_entries": "عرض الأحداث لـ",
|
||||||
"period": "المدة"
|
"period": "المدة"
|
||||||
@ -615,7 +630,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "أنت مسجّل الدخول حاليًا كـ {fullName} .",
|
"current_user": "أنت مسجّل الدخول حاليًا كـ {fullName} .",
|
||||||
"is_owner": "أنت مالك",
|
"is_owner": "أنت مالك",
|
||||||
"logout": "تسجيل الخروج",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "تغيير كلمة السر",
|
"header": "تغيير كلمة السر",
|
||||||
"current_password": "كلمة السر الحالية",
|
"current_password": "كلمة السر الحالية",
|
||||||
@ -688,8 +702,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "تسجيل الخروج",
|
"log_out": "تسجيل الخروج"
|
||||||
"developer_tools": "ادوات المطورين"
|
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"loading": "جار التحميل",
|
"loading": "جار التحميل",
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "История",
|
"history": "История",
|
||||||
"mailbox": "Пощенска кутия",
|
"mailbox": "Пощенска кутия",
|
||||||
"shopping_list": "Списък за пазаруване",
|
"shopping_list": "Списък за пазаруване",
|
||||||
"dev-services": "Услуги",
|
|
||||||
"dev-states": "Състояния",
|
|
||||||
"dev-events": "Събития",
|
|
||||||
"dev-templates": "Шаблони",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Информация",
|
"dev-info": "Информация",
|
||||||
|
"developer_tools": "Инструменти за разработчици",
|
||||||
"calendar": "Календар",
|
"calendar": "Календар",
|
||||||
"profile": "Профил"
|
"profile": "Профил"
|
||||||
},
|
},
|
||||||
@ -311,6 +307,25 @@
|
|||||||
"add_item": "Добави артикул",
|
"add_item": "Добави артикул",
|
||||||
"microphone_tip": "Докоснете микрофона горе вдясно и кажете \"Add candy to my shopping list\""
|
"microphone_tip": "Докоснете микрофона горе вдясно и кажете \"Add candy to my shopping list\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Услуги"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Състояния"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Събития"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Шаблони"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Показване на записите за",
|
"showing_entries": "Показване на записите за",
|
||||||
"period": "Период"
|
"period": "Период"
|
||||||
@ -744,7 +759,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "В момента сте влезли като {fullName}.",
|
"current_user": "В момента сте влезли като {fullName}.",
|
||||||
"is_owner": "Вие сте собственик.",
|
"is_owner": "Вие сте собственик.",
|
||||||
"logout": "Изход",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Смяна на парола",
|
"header": "Смяна на парола",
|
||||||
"current_password": "Настояща парола",
|
"current_password": "Настояща парола",
|
||||||
@ -1018,7 +1032,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Изход",
|
"log_out": "Изход",
|
||||||
"developer_tools": "Инструменти за разработчици",
|
|
||||||
"external_app_configuration": "Конфигурация на приложение"
|
"external_app_configuration": "Конфигурация на приложение"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Istorija",
|
"history": "Istorija",
|
||||||
"mailbox": "Poštansko sanduče",
|
"mailbox": "Poštansko sanduče",
|
||||||
"shopping_list": "Spisak za kupovinu",
|
"shopping_list": "Spisak za kupovinu",
|
||||||
"dev-services": "Usluge",
|
"dev-info": "Info",
|
||||||
"dev-states": "Statusi",
|
"developer_tools": "Alatke za razvoj"
|
||||||
"dev-events": "Događanja",
|
|
||||||
"dev-templates": "Predlošci",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Info"
|
|
||||||
},
|
},
|
||||||
"state": {
|
"state": {
|
||||||
"default": {
|
"default": {
|
||||||
@ -243,6 +239,25 @@
|
|||||||
"add_item": "Dodajte objekat",
|
"add_item": "Dodajte objekat",
|
||||||
"microphone_tip": "Dodirnite mikrofon u gornjem desnom uglu i recite “Add candy to my shopping list”"
|
"microphone_tip": "Dodirnite mikrofon u gornjem desnom uglu i recite “Add candy to my shopping list”"
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Usluge"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Statusi"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Događanja"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Predlošci"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Prikaži rezutate za",
|
"showing_entries": "Prikaži rezutate za",
|
||||||
"period": "Period"
|
"period": "Period"
|
||||||
@ -263,8 +278,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Izlaz",
|
"log_out": "Izlaz"
|
||||||
"developer_tools": "Alatke za razvoj"
|
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"loading": "Učitava",
|
"loading": "Učitava",
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Historial",
|
"history": "Historial",
|
||||||
"mailbox": "Bústia",
|
"mailbox": "Bústia",
|
||||||
"shopping_list": "Llista de la compra",
|
"shopping_list": "Llista de la compra",
|
||||||
"dev-services": "Serveis",
|
|
||||||
"dev-states": "Estats",
|
|
||||||
"dev-events": "Esdeveniments",
|
|
||||||
"dev-templates": "Plantilles",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Informació",
|
"dev-info": "Informació",
|
||||||
|
"developer_tools": "Eines per a desenvolupadors",
|
||||||
"calendar": "Calendari",
|
"calendar": "Calendari",
|
||||||
"profile": "Perfil"
|
"profile": "Perfil"
|
||||||
},
|
},
|
||||||
@ -312,6 +308,25 @@
|
|||||||
"add_item": "Afegir article",
|
"add_item": "Afegir article",
|
||||||
"microphone_tip": "Clica el micròfon a la part superior dreta i digues \"Add candy to my shopping list\""
|
"microphone_tip": "Clica el micròfon a la part superior dreta i digues \"Add candy to my shopping list\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Serveis"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Estats"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Esdeveniments"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Plantilles"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Mostrant entrades de",
|
"showing_entries": "Mostrant entrades de",
|
||||||
"period": "Període"
|
"period": "Període"
|
||||||
@ -572,7 +587,31 @@
|
|||||||
},
|
},
|
||||||
"zwave": {
|
"zwave": {
|
||||||
"caption": "Z-Wave",
|
"caption": "Z-Wave",
|
||||||
"description": "Gestiona la teva xarxa Z-Wave"
|
"description": "Gestiona la teva xarxa Z-Wave",
|
||||||
|
"network_management": {
|
||||||
|
"header": "Gestió de la xarxa Z-Wave",
|
||||||
|
"introduction": "Executa ordres a la xarxa Z-Wave. No es rebrà cap resposta si la majoria de les ordres han tingut èxit, però pots consultar el registre OZW."
|
||||||
|
},
|
||||||
|
"network_status": {
|
||||||
|
"network_stopped": "Xarxa Z-Wave aturada",
|
||||||
|
"network_starting": "Iniciant xarxa Z-Wave...",
|
||||||
|
"network_starting_note": "Això pot trigar una estona en funció de la mida de la teva xarxa.",
|
||||||
|
"network_started": "Xarxa Z-Wave iniciada",
|
||||||
|
"network_started_note_some_queried": "S'han consultat els nodes desperts. Els nodes adormits es consultaran quan es despertin.",
|
||||||
|
"network_started_note_all_queried": "S'han consultat tots els nodes."
|
||||||
|
},
|
||||||
|
"services": {
|
||||||
|
"start_network": "Inicia la xarxa",
|
||||||
|
"stop_network": "Atura la xarxa",
|
||||||
|
"heal_network": "Guareix la xarxa",
|
||||||
|
"test_network": "Prova la xarxa",
|
||||||
|
"soft_reset": "Reinici suau",
|
||||||
|
"save_config": "Desa la configuració",
|
||||||
|
"add_node_secure": "Afegeix node amb seguretat",
|
||||||
|
"add_node": "Afegeix node",
|
||||||
|
"remove_node": "Elimina node",
|
||||||
|
"cancel_command": "Cancel·lar ordre"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"users": {
|
"users": {
|
||||||
"caption": "Usuaris",
|
"caption": "Usuaris",
|
||||||
@ -745,7 +784,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Has iniciat la sessió com a {fullName}.",
|
"current_user": "Has iniciat la sessió com a {fullName}.",
|
||||||
"is_owner": "Ets propietari.",
|
"is_owner": "Ets propietari.",
|
||||||
"logout": "Tancar sessió",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Canvi de contrasenya",
|
"header": "Canvi de contrasenya",
|
||||||
"current_password": "Contrasenya actual",
|
"current_password": "Contrasenya actual",
|
||||||
@ -1019,7 +1057,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Desconnectar",
|
"log_out": "Desconnectar",
|
||||||
"developer_tools": "Eines per a desenvolupadors",
|
|
||||||
"external_app_configuration": "Configuració de l’aplicació"
|
"external_app_configuration": "Configuració de l’aplicació"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Historie",
|
"history": "Historie",
|
||||||
"mailbox": "Schránka",
|
"mailbox": "Schránka",
|
||||||
"shopping_list": "Nákupní seznam",
|
"shopping_list": "Nákupní seznam",
|
||||||
"dev-services": "Služby",
|
|
||||||
"dev-states": "Stavy",
|
|
||||||
"dev-events": "Události",
|
|
||||||
"dev-templates": "Šablony",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Informace",
|
"dev-info": "Informace",
|
||||||
|
"developer_tools": "Vývojářské nástroje",
|
||||||
"calendar": "Kalendář",
|
"calendar": "Kalendář",
|
||||||
"profile": "Profil"
|
"profile": "Profil"
|
||||||
},
|
},
|
||||||
@ -311,6 +307,25 @@
|
|||||||
"add_item": "Přidat položku",
|
"add_item": "Přidat položku",
|
||||||
"microphone_tip": "Klepněte na mikrofon vpravo nahoře a řekněte \"Add candy to my shopping list\""
|
"microphone_tip": "Klepněte na mikrofon vpravo nahoře a řekněte \"Add candy to my shopping list\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Služby"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Stavy"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Události"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Šablony"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Zobrazeny údaje pro",
|
"showing_entries": "Zobrazeny údaje pro",
|
||||||
"period": "Období"
|
"period": "Období"
|
||||||
@ -744,7 +759,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Nyní jste přihlášeni jako {fullName}.",
|
"current_user": "Nyní jste přihlášeni jako {fullName}.",
|
||||||
"is_owner": "Jste vlastník.",
|
"is_owner": "Jste vlastník.",
|
||||||
"logout": "Odhlásit se",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Změnit heslo",
|
"header": "Změnit heslo",
|
||||||
"current_password": "Současné heslo",
|
"current_password": "Současné heslo",
|
||||||
@ -1018,7 +1032,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Odhlásit se",
|
"log_out": "Odhlásit se",
|
||||||
"developer_tools": "Vývojářské nástroje",
|
|
||||||
"external_app_configuration": "Konfigurace aplikace"
|
"external_app_configuration": "Konfigurace aplikace"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Hanes",
|
"history": "Hanes",
|
||||||
"mailbox": "Blwch post",
|
"mailbox": "Blwch post",
|
||||||
"shopping_list": "Rhestr siopa",
|
"shopping_list": "Rhestr siopa",
|
||||||
"dev-services": "Gwasanaethau",
|
"dev-info": "Gwybodaeth",
|
||||||
"dev-states": "Cyflerau",
|
"developer_tools": "Offer datblygwr"
|
||||||
"dev-events": "Digwyddiadau",
|
|
||||||
"dev-templates": "Templedi",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Gwybodaeth"
|
|
||||||
},
|
},
|
||||||
"state": {
|
"state": {
|
||||||
"default": {
|
"default": {
|
||||||
@ -300,6 +296,25 @@
|
|||||||
"add_item": "Ychwanegu eitem",
|
"add_item": "Ychwanegu eitem",
|
||||||
"microphone_tip": "Tarwch y meicroffon ar dde uchaf a dweud \"Add candy to my shopping list\""
|
"microphone_tip": "Tarwch y meicroffon ar dde uchaf a dweud \"Add candy to my shopping list\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Gwasanaethau"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Cyflerau"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Digwyddiadau"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Templedi"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Dangos cofnodion ar gyfer",
|
"showing_entries": "Dangos cofnodion ar gyfer",
|
||||||
"period": "Cyfnod"
|
"period": "Cyfnod"
|
||||||
@ -849,7 +864,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Allgofnodi",
|
"log_out": "Allgofnodi",
|
||||||
"developer_tools": "Offer datblygwr",
|
|
||||||
"external_app_configuration": "Ffurfweddu App"
|
"external_app_configuration": "Ffurfweddu App"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Historik",
|
"history": "Historik",
|
||||||
"mailbox": "Postkasse",
|
"mailbox": "Postkasse",
|
||||||
"shopping_list": "Indkøbsliste",
|
"shopping_list": "Indkøbsliste",
|
||||||
"dev-services": "Services",
|
|
||||||
"dev-states": "Tilstand",
|
|
||||||
"dev-events": "Begivenheder",
|
|
||||||
"dev-templates": "Skabeloner",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Udvikler Information",
|
"dev-info": "Udvikler Information",
|
||||||
|
"developer_tools": "Udviklerværktøjer",
|
||||||
"calendar": "Kalender",
|
"calendar": "Kalender",
|
||||||
"profile": "Profil"
|
"profile": "Profil"
|
||||||
},
|
},
|
||||||
@ -311,6 +307,25 @@
|
|||||||
"add_item": "Tilføj element",
|
"add_item": "Tilføj element",
|
||||||
"microphone_tip": "Tryk på mikrofonen øverst til højre og sig “Add candy to my shopping list”"
|
"microphone_tip": "Tryk på mikrofonen øverst til højre og sig “Add candy to my shopping list”"
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Services"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Tilstand"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Begivenheder"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Skabeloner"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Viser emner for",
|
"showing_entries": "Viser emner for",
|
||||||
"period": "Periode"
|
"period": "Periode"
|
||||||
@ -740,7 +755,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Du er logget ind som {fullName} .",
|
"current_user": "Du er logget ind som {fullName} .",
|
||||||
"is_owner": "Du er ejer.",
|
"is_owner": "Du er ejer.",
|
||||||
"logout": "Log af",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Skift adgangskode",
|
"header": "Skift adgangskode",
|
||||||
"current_password": "Nuværende adgangskode",
|
"current_password": "Nuværende adgangskode",
|
||||||
@ -1013,7 +1027,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Log af",
|
"log_out": "Log af",
|
||||||
"developer_tools": "Udviklerværktøjer",
|
|
||||||
"external_app_configuration": "App Konfiguration"
|
"external_app_configuration": "App Konfiguration"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Verlauf",
|
"history": "Verlauf",
|
||||||
"mailbox": "Posteingang",
|
"mailbox": "Posteingang",
|
||||||
"shopping_list": "Einkaufsliste",
|
"shopping_list": "Einkaufsliste",
|
||||||
"dev-services": "Dienste",
|
|
||||||
"dev-states": "Zustände",
|
|
||||||
"dev-events": "Ereignisse",
|
|
||||||
"dev-templates": "Templates",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Info",
|
"dev-info": "Info",
|
||||||
|
"developer_tools": "Entwicklerwerkzeuge",
|
||||||
"calendar": "Kalender",
|
"calendar": "Kalender",
|
||||||
"profile": "Profil"
|
"profile": "Profil"
|
||||||
},
|
},
|
||||||
@ -312,6 +308,25 @@
|
|||||||
"add_item": "Artikel hinzufügen",
|
"add_item": "Artikel hinzufügen",
|
||||||
"microphone_tip": "Tippe oben rechts auf das Mikrofon und sage “Add candy to my shopping list”"
|
"microphone_tip": "Tippe oben rechts auf das Mikrofon und sage “Add candy to my shopping list”"
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Dienste"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Zustände"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Ereignisse"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Templates"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Zeige Einträge für",
|
"showing_entries": "Zeige Einträge für",
|
||||||
"period": "Zeitraum"
|
"period": "Zeitraum"
|
||||||
@ -572,7 +587,31 @@
|
|||||||
},
|
},
|
||||||
"zwave": {
|
"zwave": {
|
||||||
"caption": "Z-Wave",
|
"caption": "Z-Wave",
|
||||||
"description": "Z-Wave-Netzwerk verwalten"
|
"description": "Z-Wave-Netzwerk verwalten",
|
||||||
|
"network_management": {
|
||||||
|
"header": "Z-Wave Netzwerkverwaltung",
|
||||||
|
"introduction": "Führt Befehle aus, die das Z-Wave Netzwerk betreffen. Es wird keine Rückmeldung darüber geben, ob die meisten Befehle erfolgreich waren, aber das OZW-Protokoll kann Hinweise darauf enthalten."
|
||||||
|
},
|
||||||
|
"network_status": {
|
||||||
|
"network_stopped": "Z-Wave Netzwerk gestoppt",
|
||||||
|
"network_starting": "Z-Wave Netzwerk wird gestartet ...",
|
||||||
|
"network_starting_note": "Dies kann je nach Größe des Netzwerks eine Weile dauern.",
|
||||||
|
"network_started": "Z-Wave Netzwerk gestartet",
|
||||||
|
"network_started_note_some_queried": "Wache Knoten wurden abgefragt. Schlafende knoten werden abgefragt wenn sie aufwachen.",
|
||||||
|
"network_started_note_all_queried": "Alle Knoten wurden abgefragt."
|
||||||
|
},
|
||||||
|
"services": {
|
||||||
|
"start_network": "Netzwerk starten",
|
||||||
|
"stop_network": "Netzwerk stoppen",
|
||||||
|
"heal_network": "Netzwerk heilen",
|
||||||
|
"test_network": "Netzwerk testen",
|
||||||
|
"soft_reset": "Soft Reset",
|
||||||
|
"save_config": "Konfiguration speichern",
|
||||||
|
"add_node_secure": "Knoten verschlüsselt hinzufügen",
|
||||||
|
"add_node": "Knoten hinzufügen",
|
||||||
|
"remove_node": "Knoten entfernen",
|
||||||
|
"cancel_command": "Befehl abbrechen"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"users": {
|
"users": {
|
||||||
"caption": "Benutzer",
|
"caption": "Benutzer",
|
||||||
@ -745,7 +784,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Du bist derzeit als {fullName} angemeldet.",
|
"current_user": "Du bist derzeit als {fullName} angemeldet.",
|
||||||
"is_owner": "Du bist der Besitzer",
|
"is_owner": "Du bist der Besitzer",
|
||||||
"logout": "Abmelden",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Passwort ändern",
|
"header": "Passwort ändern",
|
||||||
"current_password": "Aktuelles Passwort",
|
"current_password": "Aktuelles Passwort",
|
||||||
@ -1019,7 +1057,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Abmelden",
|
"log_out": "Abmelden",
|
||||||
"developer_tools": "Entwicklerwerkzeuge",
|
|
||||||
"external_app_configuration": "App-Konfiguration"
|
"external_app_configuration": "App-Konfiguration"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Ιστορικό",
|
"history": "Ιστορικό",
|
||||||
"mailbox": "Γραμματοκιβώτιο",
|
"mailbox": "Γραμματοκιβώτιο",
|
||||||
"shopping_list": "Λίστα αγορών",
|
"shopping_list": "Λίστα αγορών",
|
||||||
"dev-services": "Υπηρεσίες",
|
|
||||||
"dev-states": "Καταστάσεις",
|
|
||||||
"dev-events": "Γεγονότα",
|
|
||||||
"dev-templates": "Πρότυπα",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Πληροφορίες",
|
"dev-info": "Πληροφορίες",
|
||||||
|
"developer_tools": "Εργαλεία προγραμματιστή",
|
||||||
"calendar": "Ημερολόγιο",
|
"calendar": "Ημερολόγιο",
|
||||||
"profile": "Προφίλ"
|
"profile": "Προφίλ"
|
||||||
},
|
},
|
||||||
@ -311,6 +307,25 @@
|
|||||||
"add_item": "Προσθήκη στοιχείου",
|
"add_item": "Προσθήκη στοιχείου",
|
||||||
"microphone_tip": "Πατήστε το μικρόφωνο στην επάνω δεξιά γωνία και πείτε \"Προσθήκη καραμελών στη λίστα αγορών μου\""
|
"microphone_tip": "Πατήστε το μικρόφωνο στην επάνω δεξιά γωνία και πείτε \"Προσθήκη καραμελών στη λίστα αγορών μου\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Υπηρεσίες"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Καταστάσεις"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Γεγονότα"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Πρότυπα"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Εμφανίζονται καταχωρήσεις για",
|
"showing_entries": "Εμφανίζονται καταχωρήσεις για",
|
||||||
"period": "Περίοδος"
|
"period": "Περίοδος"
|
||||||
@ -744,7 +759,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Αυτήν τη στιγμή είστε συνδεδεμένος ως {fullName} .",
|
"current_user": "Αυτήν τη στιγμή είστε συνδεδεμένος ως {fullName} .",
|
||||||
"is_owner": "Είστε ιδιοκτήτης.",
|
"is_owner": "Είστε ιδιοκτήτης.",
|
||||||
"logout": "Αποσύνδεση",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Αλλαγή Κωδικού",
|
"header": "Αλλαγή Κωδικού",
|
||||||
"current_password": "Τρέχων κωδικός",
|
"current_password": "Τρέχων κωδικός",
|
||||||
@ -1018,7 +1032,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Αποσύνδεση",
|
"log_out": "Αποσύνδεση",
|
||||||
"developer_tools": "Εργαλεία προγραμματιστή",
|
|
||||||
"external_app_configuration": "Διαμόρφωση Εφαρμογής"
|
"external_app_configuration": "Διαμόρφωση Εφαρμογής"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "History",
|
"history": "History",
|
||||||
"mailbox": "Mailbox",
|
"mailbox": "Mailbox",
|
||||||
"shopping_list": "Shopping list",
|
"shopping_list": "Shopping list",
|
||||||
"dev-services": "Services",
|
|
||||||
"dev-states": "States",
|
|
||||||
"dev-events": "Events",
|
|
||||||
"dev-templates": "Templates",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Info",
|
"dev-info": "Info",
|
||||||
|
"developer_tools": "Developer Tools",
|
||||||
"calendar": "Calendar",
|
"calendar": "Calendar",
|
||||||
"profile": "Profile"
|
"profile": "Profile"
|
||||||
},
|
},
|
||||||
@ -312,6 +308,25 @@
|
|||||||
"add_item": "Add item",
|
"add_item": "Add item",
|
||||||
"microphone_tip": "Tap the microphone on the top right and say “Add candy to my shopping list”"
|
"microphone_tip": "Tap the microphone on the top right and say “Add candy to my shopping list”"
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Services"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "States"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Events"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Templates"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Showing entries for",
|
"showing_entries": "Showing entries for",
|
||||||
"period": "Period"
|
"period": "Period"
|
||||||
@ -572,7 +587,31 @@
|
|||||||
},
|
},
|
||||||
"zwave": {
|
"zwave": {
|
||||||
"caption": "Z-Wave",
|
"caption": "Z-Wave",
|
||||||
"description": "Manage your Z-Wave network"
|
"description": "Manage your Z-Wave network",
|
||||||
|
"network_management": {
|
||||||
|
"header": "Z-Wave Network Management",
|
||||||
|
"introduction": "Run commands that affect the Z-Wave network. You won't get feedback on whether most commands succeeded, but you can check the OZW Log to try to find out."
|
||||||
|
},
|
||||||
|
"network_status": {
|
||||||
|
"network_stopped": "Z-Wave Network Stopped",
|
||||||
|
"network_starting": "Starting Z-Wave Network...",
|
||||||
|
"network_starting_note": "This may take a while depending on the size of your network.",
|
||||||
|
"network_started": "Z-Wave Network Started",
|
||||||
|
"network_started_note_some_queried": "Awake nodes have been queried. Sleeping nodes will be queried when they wake.",
|
||||||
|
"network_started_note_all_queried": "All nodes have been queried."
|
||||||
|
},
|
||||||
|
"services": {
|
||||||
|
"start_network": "Start Network",
|
||||||
|
"stop_network": "Stop Network",
|
||||||
|
"heal_network": "Heal Network",
|
||||||
|
"test_network": "Test Network",
|
||||||
|
"soft_reset": "Soft Reset",
|
||||||
|
"save_config": "Save Config",
|
||||||
|
"add_node_secure": "Add Node Secure",
|
||||||
|
"add_node": "Add Node",
|
||||||
|
"remove_node": "Remove Node",
|
||||||
|
"cancel_command": "Cancel Command"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"users": {
|
"users": {
|
||||||
"caption": "Users",
|
"caption": "Users",
|
||||||
@ -745,7 +784,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "You are currently logged in as {fullName}.",
|
"current_user": "You are currently logged in as {fullName}.",
|
||||||
"is_owner": "You are an owner.",
|
"is_owner": "You are an owner.",
|
||||||
"logout": "Log out",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Change Password",
|
"header": "Change Password",
|
||||||
"current_password": "Current Password",
|
"current_password": "Current Password",
|
||||||
@ -1019,7 +1057,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Log out",
|
"log_out": "Log out",
|
||||||
"developer_tools": "Developer tools",
|
|
||||||
"external_app_configuration": "App Configuration"
|
"external_app_configuration": "App Configuration"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "",
|
"history": "",
|
||||||
"mailbox": "",
|
"mailbox": "",
|
||||||
"shopping_list": "Lista de compras",
|
"shopping_list": "Lista de compras",
|
||||||
"dev-services": "Servicios",
|
|
||||||
"dev-states": "Estados",
|
|
||||||
"dev-events": "Eventos",
|
|
||||||
"dev-templates": "Plantillas",
|
|
||||||
"dev-mqtt": "",
|
|
||||||
"dev-info": "Información",
|
"dev-info": "Información",
|
||||||
|
"developer_tools": "Herramientas para desarrolladores",
|
||||||
"calendar": "Calendario",
|
"calendar": "Calendario",
|
||||||
"profile": "Perfil"
|
"profile": "Perfil"
|
||||||
},
|
},
|
||||||
@ -312,6 +308,25 @@
|
|||||||
"add_item": "Agregar elemento",
|
"add_item": "Agregar elemento",
|
||||||
"microphone_tip": "Toque el micrófono en la esquina superior derecha y diga \"Agregar dulces a mi lista de compras\""
|
"microphone_tip": "Toque el micrófono en la esquina superior derecha y diga \"Agregar dulces a mi lista de compras\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Servicios"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Estados"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Eventos"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Plantillas"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Mostrando registros del",
|
"showing_entries": "Mostrando registros del",
|
||||||
"period": "Período"
|
"period": "Período"
|
||||||
@ -745,7 +760,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Actualmente estás conectado como {fullName} .",
|
"current_user": "Actualmente estás conectado como {fullName} .",
|
||||||
"is_owner": "Eres propietario.",
|
"is_owner": "Eres propietario.",
|
||||||
"logout": "Cerrar sesión",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Cambiar contraseña",
|
"header": "Cambiar contraseña",
|
||||||
"current_password": "Contraseña actual",
|
"current_password": "Contraseña actual",
|
||||||
@ -1019,7 +1033,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Cerrar sesión",
|
"log_out": "Cerrar sesión",
|
||||||
"developer_tools": "Herramientas para desarrolladores",
|
|
||||||
"external_app_configuration": "Configuración de la aplicación"
|
"external_app_configuration": "Configuración de la aplicación"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Historial",
|
"history": "Historial",
|
||||||
"mailbox": "Buzón",
|
"mailbox": "Buzón",
|
||||||
"shopping_list": "Lista de la compra",
|
"shopping_list": "Lista de la compra",
|
||||||
"dev-services": "Servicios",
|
|
||||||
"dev-states": "Estados",
|
|
||||||
"dev-events": "Eventos",
|
|
||||||
"dev-templates": "Plantillas",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Información",
|
"dev-info": "Información",
|
||||||
|
"developer_tools": "Herramientas para desarrolladores",
|
||||||
"calendar": "Calendario",
|
"calendar": "Calendario",
|
||||||
"profile": "Perfil"
|
"profile": "Perfil"
|
||||||
},
|
},
|
||||||
@ -311,6 +307,25 @@
|
|||||||
"add_item": "Añadir artículo",
|
"add_item": "Añadir artículo",
|
||||||
"microphone_tip": "Pulsa el micrófono en la parte superior derecha y di \"Añadir caramelos a mi lista de la compra\"."
|
"microphone_tip": "Pulsa el micrófono en la parte superior derecha y di \"Añadir caramelos a mi lista de la compra\"."
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Servicios"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Estados"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Eventos"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Plantillas"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Mostrando entradas del",
|
"showing_entries": "Mostrando entradas del",
|
||||||
"period": "Periodo"
|
"period": "Periodo"
|
||||||
@ -744,7 +759,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Has iniciado sesión como {fullName} .",
|
"current_user": "Has iniciado sesión como {fullName} .",
|
||||||
"is_owner": "Eres propietario.",
|
"is_owner": "Eres propietario.",
|
||||||
"logout": "Cerrar sesión",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Cambiar contraseña",
|
"header": "Cambiar contraseña",
|
||||||
"current_password": "Contraseña actual",
|
"current_password": "Contraseña actual",
|
||||||
@ -1018,7 +1032,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Cerrar sesión",
|
"log_out": "Cerrar sesión",
|
||||||
"developer_tools": "Herramientas para desarrolladores",
|
|
||||||
"external_app_configuration": "Configuración de la aplicación"
|
"external_app_configuration": "Configuración de la aplicación"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Ajalugu",
|
"history": "Ajalugu",
|
||||||
"mailbox": "Postkast",
|
"mailbox": "Postkast",
|
||||||
"shopping_list": "Ostunimekiri",
|
"shopping_list": "Ostunimekiri",
|
||||||
"dev-services": "Teenused",
|
|
||||||
"dev-states": "Olekud",
|
|
||||||
"dev-events": "Sündmused",
|
|
||||||
"dev-templates": "Mallid",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Info",
|
"dev-info": "Info",
|
||||||
|
"developer_tools": "Arendaja tööriistad",
|
||||||
"calendar": "Kalender",
|
"calendar": "Kalender",
|
||||||
"profile": "Profiil"
|
"profile": "Profiil"
|
||||||
},
|
},
|
||||||
@ -310,6 +306,25 @@
|
|||||||
"add_item": "Lisa toode",
|
"add_item": "Lisa toode",
|
||||||
"microphone_tip": "Puudutage paremas ülanurgas asuvat mikrofoni ikooni ja öelge: \"Add candy to my shopping list\""
|
"microphone_tip": "Puudutage paremas ülanurgas asuvat mikrofoni ikooni ja öelge: \"Add candy to my shopping list\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Teenused"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Olekud"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Sündmused"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Mallid"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Näitan kuupäeva",
|
"showing_entries": "Näitan kuupäeva",
|
||||||
"period": "Periood"
|
"period": "Periood"
|
||||||
@ -711,7 +726,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Oled praegu sisse logitud kui {fullName}.",
|
"current_user": "Oled praegu sisse logitud kui {fullName}.",
|
||||||
"is_owner": "Oled omanik.",
|
"is_owner": "Oled omanik.",
|
||||||
"logout": "Logi välja",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Muuda salasõna",
|
"header": "Muuda salasõna",
|
||||||
"current_password": "Praegune salasõna",
|
"current_password": "Praegune salasõna",
|
||||||
@ -905,8 +919,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Logi välja",
|
"log_out": "Logi välja"
|
||||||
"developer_tools": "Arendaja tööriistad"
|
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"loading": "Laadimine",
|
"loading": "Laadimine",
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Historia",
|
"history": "Historia",
|
||||||
"mailbox": "Postontzia",
|
"mailbox": "Postontzia",
|
||||||
"shopping_list": "Erosketa zerrenda",
|
"shopping_list": "Erosketa zerrenda",
|
||||||
"dev-services": "Zerbitzuak",
|
|
||||||
"dev-states": "Egoerak",
|
|
||||||
"dev-events": "Gertaerak",
|
|
||||||
"dev-templates": "Txantiloiak",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Informazioa",
|
"dev-info": "Informazioa",
|
||||||
|
"developer_tools": "Garatzaileentzako tresnak",
|
||||||
"calendar": "Egutegia",
|
"calendar": "Egutegia",
|
||||||
"profile": "Profila"
|
"profile": "Profila"
|
||||||
},
|
},
|
||||||
@ -239,6 +235,25 @@
|
|||||||
"clear_completed": "Osatutakoak ezabatu",
|
"clear_completed": "Osatutakoak ezabatu",
|
||||||
"add_item": "Artikulua gehitu"
|
"add_item": "Artikulua gehitu"
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Zerbitzuak"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Egoerak"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Gertaerak"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Txantiloiak"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"mailbox": {
|
"mailbox": {
|
||||||
"empty": "Ez duzu mezurik",
|
"empty": "Ez duzu mezurik",
|
||||||
"delete_prompt": "Mezu hau ezabatu?",
|
"delete_prompt": "Mezu hau ezabatu?",
|
||||||
@ -553,7 +568,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "{fullName} moduan hasi duzu saioa.",
|
"current_user": "{fullName} moduan hasi duzu saioa.",
|
||||||
"is_owner": "Jabea zara",
|
"is_owner": "Jabea zara",
|
||||||
"logout": "Saioa itxi",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Pasahitza aldatu",
|
"header": "Pasahitza aldatu",
|
||||||
"current_password": "Egungo pasahitza",
|
"current_password": "Egungo pasahitza",
|
||||||
@ -726,7 +740,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Saioa itxi",
|
"log_out": "Saioa itxi",
|
||||||
"developer_tools": "Garatzaileentzako tresnak",
|
|
||||||
"external_app_configuration": "Aplikazioaren Konfigurazioa"
|
"external_app_configuration": "Aplikazioaren Konfigurazioa"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,11 +7,6 @@
|
|||||||
"history": "تاریخچه",
|
"history": "تاریخچه",
|
||||||
"mailbox": "صندوق پستی",
|
"mailbox": "صندوق پستی",
|
||||||
"shopping_list": "لیست خرید",
|
"shopping_list": "لیست خرید",
|
||||||
"dev-services": "خدمات",
|
|
||||||
"dev-states": "ایالت ها",
|
|
||||||
"dev-events": "رویدادها",
|
|
||||||
"dev-templates": "قالب ها",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "اطلاعات",
|
"dev-info": "اطلاعات",
|
||||||
"calendar": "تقویم"
|
"calendar": "تقویم"
|
||||||
},
|
},
|
||||||
@ -298,6 +293,25 @@
|
|||||||
"shopping-list": {
|
"shopping-list": {
|
||||||
"add_item": "اضافه کردن آیتم"
|
"add_item": "اضافه کردن آیتم"
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "خدمات"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "ایالت ها"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "رویدادها"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "قالب ها"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "نمایش نوشته ها برای"
|
"showing_entries": "نمایش نوشته ها برای"
|
||||||
},
|
},
|
||||||
@ -656,7 +670,6 @@
|
|||||||
"not_used": "هرگز استفاده نشده است"
|
"not_used": "هرگز استفاده نشده است"
|
||||||
},
|
},
|
||||||
"current_user": "شما در حال حاضر به عنوان {fullName} وارد شده اید.",
|
"current_user": "شما در حال حاضر به عنوان {fullName} وارد شده اید.",
|
||||||
"logout": "خروج",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "تغییر رمز عبور"
|
"header": "تغییر رمز عبور"
|
||||||
},
|
},
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Historia",
|
"history": "Historia",
|
||||||
"mailbox": "Postilaatikko",
|
"mailbox": "Postilaatikko",
|
||||||
"shopping_list": "Ostoslista",
|
"shopping_list": "Ostoslista",
|
||||||
"dev-services": "Palvelut",
|
|
||||||
"dev-states": "Tilat",
|
|
||||||
"dev-events": "Tapahtumat",
|
|
||||||
"dev-templates": "Mallit",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Tiedot",
|
"dev-info": "Tiedot",
|
||||||
|
"developer_tools": "Kehittäjän työkalut",
|
||||||
"calendar": "Kalenteri",
|
"calendar": "Kalenteri",
|
||||||
"profile": "Profiili"
|
"profile": "Profiili"
|
||||||
},
|
},
|
||||||
@ -311,6 +307,25 @@
|
|||||||
"add_item": "Lisää tavara",
|
"add_item": "Lisää tavara",
|
||||||
"microphone_tip": "Paina mikrofonia oikeassa yläkulmassa ja sano \"Lisää karkkipussi ostoslistalleni\""
|
"microphone_tip": "Paina mikrofonia oikeassa yläkulmassa ja sano \"Lisää karkkipussi ostoslistalleni\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Palvelut"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Tilat"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Tapahtumat"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Mallit"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Näytetään tapahtumat alkaen",
|
"showing_entries": "Näytetään tapahtumat alkaen",
|
||||||
"period": "aikajakso"
|
"period": "aikajakso"
|
||||||
@ -744,7 +759,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Olet tällä hetkellä kirjautuneena tunnuksella {fullName}.",
|
"current_user": "Olet tällä hetkellä kirjautuneena tunnuksella {fullName}.",
|
||||||
"is_owner": "Olet omistaja.",
|
"is_owner": "Olet omistaja.",
|
||||||
"logout": "Kirjaudu ulos",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Vaihda salasana",
|
"header": "Vaihda salasana",
|
||||||
"current_password": "Nykyinen salasana",
|
"current_password": "Nykyinen salasana",
|
||||||
@ -1018,7 +1032,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Kirjaudu ulos",
|
"log_out": "Kirjaudu ulos",
|
||||||
"developer_tools": "Kehittäjän työkalut",
|
|
||||||
"external_app_configuration": "Sovelluksen määritykset"
|
"external_app_configuration": "Sovelluksen määritykset"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Historique",
|
"history": "Historique",
|
||||||
"mailbox": "Boîtes aux lettres",
|
"mailbox": "Boîtes aux lettres",
|
||||||
"shopping_list": "Liste de courses",
|
"shopping_list": "Liste de courses",
|
||||||
"dev-services": "Services",
|
|
||||||
"dev-states": "États",
|
|
||||||
"dev-events": "Événements",
|
|
||||||
"dev-templates": "Templates",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Info",
|
"dev-info": "Info",
|
||||||
|
"developer_tools": "Outils de développement",
|
||||||
"calendar": "Calendrier",
|
"calendar": "Calendrier",
|
||||||
"profile": "Profil"
|
"profile": "Profil"
|
||||||
},
|
},
|
||||||
@ -312,6 +308,25 @@
|
|||||||
"add_item": "Ajouter un élément",
|
"add_item": "Ajouter un élément",
|
||||||
"microphone_tip": "Cliquez sur le microphone en haut à droite et dites “Ajouter des bonbons à ma liste d'achat”"
|
"microphone_tip": "Cliquez sur le microphone en haut à droite et dites “Ajouter des bonbons à ma liste d'achat”"
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Services"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "États"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Événements"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Templates"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Afficher les entrées pour",
|
"showing_entries": "Afficher les entrées pour",
|
||||||
"period": "Période"
|
"period": "Période"
|
||||||
@ -745,7 +760,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Vous êtes actuellement connecté tant que {fullName}.",
|
"current_user": "Vous êtes actuellement connecté tant que {fullName}.",
|
||||||
"is_owner": "Vous êtes propriétaire",
|
"is_owner": "Vous êtes propriétaire",
|
||||||
"logout": "Déconnexion",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Changer le mot de passe",
|
"header": "Changer le mot de passe",
|
||||||
"current_password": "Mot de passe actuel",
|
"current_password": "Mot de passe actuel",
|
||||||
@ -1019,7 +1033,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Déconnexion",
|
"log_out": "Déconnexion",
|
||||||
"developer_tools": "Outils de développement",
|
|
||||||
"external_app_configuration": "Configuration de l'application"
|
"external_app_configuration": "Configuration de l'application"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
"history": "Vrlouf",
|
"history": "Vrlouf",
|
||||||
"mailbox": "Postigang",
|
"mailbox": "Postigang",
|
||||||
"shopping_list": "Ichoufsliste",
|
"shopping_list": "Ichoufsliste",
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Info",
|
"dev-info": "Info",
|
||||||
"calendar": "Kaländer",
|
"calendar": "Kaländer",
|
||||||
"profile": "Profiu"
|
"profile": "Profiu"
|
||||||
@ -258,10 +257,14 @@
|
|||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Uslogge"
|
"log_out": "Uslogge"
|
||||||
},
|
},
|
||||||
"common": {
|
|
||||||
"loading": "Lade"
|
|
||||||
},
|
|
||||||
"panel": {
|
"panel": {
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"period": "Periode"
|
"period": "Periode"
|
||||||
},
|
},
|
||||||
@ -399,7 +402,6 @@
|
|||||||
"prompt_name": "Name?"
|
"prompt_name": "Name?"
|
||||||
},
|
},
|
||||||
"is_owner": "Du bisch dr Bsitzer",
|
"is_owner": "Du bisch dr Bsitzer",
|
||||||
"logout": "Uslogge",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Passwort wächsle",
|
"header": "Passwort wächsle",
|
||||||
"current_password": "Aktuells Passwort",
|
"current_password": "Aktuells Passwort",
|
||||||
@ -420,6 +422,9 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"common": {
|
||||||
|
"loading": "Lade"
|
||||||
|
},
|
||||||
"login-form": {
|
"login-form": {
|
||||||
"password": "Passwort"
|
"password": "Passwort"
|
||||||
},
|
},
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "היסטוריה",
|
"history": "היסטוריה",
|
||||||
"mailbox": "תיבת דואר",
|
"mailbox": "תיבת דואר",
|
||||||
"shopping_list": "רשימת קניות",
|
"shopping_list": "רשימת קניות",
|
||||||
"dev-services": "שירותים",
|
|
||||||
"dev-states": "מצבים",
|
|
||||||
"dev-events": "אירועים",
|
|
||||||
"dev-templates": "תבניות",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "מידע",
|
"dev-info": "מידע",
|
||||||
|
"developer_tools": "כלים למפתחים",
|
||||||
"calendar": "לוח שנה",
|
"calendar": "לוח שנה",
|
||||||
"profile": "פרופיל"
|
"profile": "פרופיל"
|
||||||
},
|
},
|
||||||
@ -311,6 +307,25 @@
|
|||||||
"add_item": "הוסף פריט",
|
"add_item": "הוסף פריט",
|
||||||
"microphone_tip": "לחץ על המיקרופון למעלה מצד ימין ותאמר \"הוסף סוכריה לרשימת הקניות שלי\""
|
"microphone_tip": "לחץ על המיקרופון למעלה מצד ימין ותאמר \"הוסף סוכריה לרשימת הקניות שלי\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "שירותים"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "מצבים"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "אירועים"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "תבניות"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "מציג רשומות עבור",
|
"showing_entries": "מציג רשומות עבור",
|
||||||
"period": "תקופה"
|
"period": "תקופה"
|
||||||
@ -744,7 +759,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "אתה מחובר כעת כ- {fullName} .",
|
"current_user": "אתה מחובר כעת כ- {fullName} .",
|
||||||
"is_owner": "אתה הבעלים.",
|
"is_owner": "אתה הבעלים.",
|
||||||
"logout": "התנתק",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "שינוי סיסמה",
|
"header": "שינוי סיסמה",
|
||||||
"current_password": "סיסמה נוכחית",
|
"current_password": "סיסמה נוכחית",
|
||||||
@ -1018,7 +1032,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "התנתק",
|
"log_out": "התנתק",
|
||||||
"developer_tools": "כלים למפתחים",
|
|
||||||
"external_app_configuration": "הגדרות היישום"
|
"external_app_configuration": "הגדרות היישום"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,11 +7,8 @@
|
|||||||
"history": "इतिहास",
|
"history": "इतिहास",
|
||||||
"mailbox": "मेलबॉक्स",
|
"mailbox": "मेलबॉक्स",
|
||||||
"shopping_list": "खरीदारी की सूची",
|
"shopping_list": "खरीदारी की सूची",
|
||||||
"dev-services": "सेवाएं",
|
"dev-info": "जानकारी",
|
||||||
"dev-events": "घटनाओं",
|
"developer_tools": "डेवलपर उपकरण"
|
||||||
"dev-templates": "टेम्पलेट्स",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "जानकारी"
|
|
||||||
},
|
},
|
||||||
"state": {
|
"state": {
|
||||||
"default": {
|
"default": {
|
||||||
@ -117,6 +114,22 @@
|
|||||||
"add_item": "आइटम जोड़ें",
|
"add_item": "आइटम जोड़ें",
|
||||||
"microphone_tip": "ऊपर दाईं ओर माइक्रोफ़ोन टैप करें और \"मेरी खरीदारी सूची में कैंडी जोड़ें\" कहें"
|
"microphone_tip": "ऊपर दाईं ओर माइक्रोफ़ोन टैप करें और \"मेरी खरीदारी सूची में कैंडी जोड़ें\" कहें"
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "सेवाएं"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "घटनाओं"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "टेम्पलेट्स"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"zwave": {
|
"zwave": {
|
||||||
"caption": "Z-Wave"
|
"caption": "Z-Wave"
|
||||||
@ -206,8 +219,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "लॉग आउट",
|
"log_out": "लॉग आउट"
|
||||||
"developer_tools": "डेवलपर उपकरण"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"domain": {
|
"domain": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Povijest",
|
"history": "Povijest",
|
||||||
"mailbox": "Pošta",
|
"mailbox": "Pošta",
|
||||||
"shopping_list": "Popis za kupovinu",
|
"shopping_list": "Popis za kupovinu",
|
||||||
"dev-services": "Usluge",
|
|
||||||
"dev-states": "Status",
|
|
||||||
"dev-events": "Događaji",
|
|
||||||
"dev-templates": "Predlošci",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Informacije",
|
"dev-info": "Informacije",
|
||||||
|
"developer_tools": "Razvojni alati",
|
||||||
"calendar": "Kalendar",
|
"calendar": "Kalendar",
|
||||||
"profile": "Profil"
|
"profile": "Profil"
|
||||||
},
|
},
|
||||||
@ -289,6 +285,25 @@
|
|||||||
"add_item": "Dodaj stavku",
|
"add_item": "Dodaj stavku",
|
||||||
"microphone_tip": "Dodirnite mikrofon u gornjem desnom kutu i recite “Add candy to my shopping list”"
|
"microphone_tip": "Dodirnite mikrofon u gornjem desnom kutu i recite “Add candy to my shopping list”"
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Usluge"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Status"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Događaji"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Predlošci"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Prikazivanje stavki za",
|
"showing_entries": "Prikazivanje stavki za",
|
||||||
"period": "Razdoblje"
|
"period": "Razdoblje"
|
||||||
@ -588,7 +603,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Trenutačno ste prijavljeni kao {fullName} .",
|
"current_user": "Trenutačno ste prijavljeni kao {fullName} .",
|
||||||
"is_owner": "Vi ste vlasnik.",
|
"is_owner": "Vi ste vlasnik.",
|
||||||
"logout": "Odjava",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Promijeni lozinku",
|
"header": "Promijeni lozinku",
|
||||||
"current_password": "Trenutna lozinka",
|
"current_password": "Trenutna lozinka",
|
||||||
@ -750,8 +764,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Odjava",
|
"log_out": "Odjava"
|
||||||
"developer_tools": "Razvojni alati"
|
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"loading": "Učitavam",
|
"loading": "Učitavam",
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Előzmények",
|
"history": "Előzmények",
|
||||||
"mailbox": "Postafiók",
|
"mailbox": "Postafiók",
|
||||||
"shopping_list": "Bevásárló lista",
|
"shopping_list": "Bevásárló lista",
|
||||||
"dev-services": "Szolgáltatások",
|
|
||||||
"dev-states": "Állapotok",
|
|
||||||
"dev-events": "Események",
|
|
||||||
"dev-templates": "Sablonok",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Infó",
|
"dev-info": "Infó",
|
||||||
|
"developer_tools": "Fejlesztői eszközök",
|
||||||
"calendar": "Naptár",
|
"calendar": "Naptár",
|
||||||
"profile": "Profil"
|
"profile": "Profil"
|
||||||
},
|
},
|
||||||
@ -312,6 +308,25 @@
|
|||||||
"add_item": "Tétel hozzáadása",
|
"add_item": "Tétel hozzáadása",
|
||||||
"microphone_tip": "Koppints a jobb felső sarokban található mikrofonra, és mondd ki: \"Add candy to my shopping list\""
|
"microphone_tip": "Koppints a jobb felső sarokban található mikrofonra, és mondd ki: \"Add candy to my shopping list\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Szolgáltatások"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Állapotok"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Események"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Sablonok"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Bejegyzések megjelenítése",
|
"showing_entries": "Bejegyzések megjelenítése",
|
||||||
"period": "Időtartam"
|
"period": "Időtartam"
|
||||||
@ -745,7 +760,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Jelenleg {fullName} felhasználóként vagy bejelentkezve.",
|
"current_user": "Jelenleg {fullName} felhasználóként vagy bejelentkezve.",
|
||||||
"is_owner": "Tulajdonos vagy.",
|
"is_owner": "Tulajdonos vagy.",
|
||||||
"logout": "Kijelentkezés",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Jelszó Módosítása",
|
"header": "Jelszó Módosítása",
|
||||||
"current_password": "Jelenlegi Jelszó",
|
"current_password": "Jelenlegi Jelszó",
|
||||||
@ -1019,7 +1033,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Kijelentkezés",
|
"log_out": "Kijelentkezés",
|
||||||
"developer_tools": "Fejlesztői eszközök",
|
|
||||||
"external_app_configuration": "App Konfiguráció"
|
"external_app_configuration": "App Konfiguráció"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Riwayat",
|
"history": "Riwayat",
|
||||||
"mailbox": "Kotak pesan",
|
"mailbox": "Kotak pesan",
|
||||||
"shopping_list": "Daftar belanja",
|
"shopping_list": "Daftar belanja",
|
||||||
"dev-services": "Layanan",
|
|
||||||
"dev-states": "Status",
|
|
||||||
"dev-events": "Event",
|
|
||||||
"dev-templates": "Template",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Info",
|
"dev-info": "Info",
|
||||||
|
"developer_tools": "Alat pengembang",
|
||||||
"calendar": "Kalender"
|
"calendar": "Kalender"
|
||||||
},
|
},
|
||||||
"state": {
|
"state": {
|
||||||
@ -303,6 +299,25 @@
|
|||||||
"add_item": "Tambah item",
|
"add_item": "Tambah item",
|
||||||
"microphone_tip": "Sentuh mikrofon di kanan atas dan ucapkan \"Tambahkan permen ke daftar belanjaku\""
|
"microphone_tip": "Sentuh mikrofon di kanan atas dan ucapkan \"Tambahkan permen ke daftar belanjaku\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Layanan"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Status"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Event"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Template"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Menampilkan daftar dari",
|
"showing_entries": "Menampilkan daftar dari",
|
||||||
"period": "Periode"
|
"period": "Periode"
|
||||||
@ -805,7 +820,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Keluar",
|
"log_out": "Keluar",
|
||||||
"developer_tools": "Alat pengembang",
|
|
||||||
"external_app_configuration": "Konfigurasi Aplikasi"
|
"external_app_configuration": "Konfigurasi Aplikasi"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Saga",
|
"history": "Saga",
|
||||||
"mailbox": "Pósthólf",
|
"mailbox": "Pósthólf",
|
||||||
"shopping_list": "Innkaupalisti",
|
"shopping_list": "Innkaupalisti",
|
||||||
"dev-services": "Þjónustur",
|
|
||||||
"dev-states": "Stöður",
|
|
||||||
"dev-events": "Viðburðir",
|
|
||||||
"dev-templates": "Skapalón",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Upplýsingar",
|
"dev-info": "Upplýsingar",
|
||||||
|
"developer_tools": "Þróunarverkfæri",
|
||||||
"calendar": "Dagatal",
|
"calendar": "Dagatal",
|
||||||
"profile": "Prófíll"
|
"profile": "Prófíll"
|
||||||
},
|
},
|
||||||
@ -265,6 +261,25 @@
|
|||||||
"add_item": "Bæta við hlut",
|
"add_item": "Bæta við hlut",
|
||||||
"microphone_tip": "Ýttu á hljóðnemann efst til hægri og segðu \"Add candy to my shopping list\""
|
"microphone_tip": "Ýttu á hljóðnemann efst til hægri og segðu \"Add candy to my shopping list\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Þjónustur"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Stöður"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Viðburðir"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Skapalón"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Sýni færslur fyrir",
|
"showing_entries": "Sýni færslur fyrir",
|
||||||
"period": "Tímabil"
|
"period": "Tímabil"
|
||||||
@ -664,7 +679,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Þú ert skráð(ur) inn sem {fullName}.",
|
"current_user": "Þú ert skráð(ur) inn sem {fullName}.",
|
||||||
"is_owner": "Þú ert eigandi.",
|
"is_owner": "Þú ert eigandi.",
|
||||||
"logout": "Skrá út",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Breyta lykilorði",
|
"header": "Breyta lykilorði",
|
||||||
"current_password": "Núverandi lykilorð",
|
"current_password": "Núverandi lykilorð",
|
||||||
@ -919,7 +933,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Skrá út",
|
"log_out": "Skrá út",
|
||||||
"developer_tools": "Þróunarverkfæri",
|
|
||||||
"external_app_configuration": "Stillingar forrits"
|
"external_app_configuration": "Stillingar forrits"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Storico",
|
"history": "Storico",
|
||||||
"mailbox": "Posta",
|
"mailbox": "Posta",
|
||||||
"shopping_list": "Lista della spesa",
|
"shopping_list": "Lista della spesa",
|
||||||
"dev-services": "Servizi",
|
|
||||||
"dev-states": "Stati",
|
|
||||||
"dev-events": "Eventi",
|
|
||||||
"dev-templates": "Modelli",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Informazioni",
|
"dev-info": "Informazioni",
|
||||||
|
"developer_tools": "Strumenti per gli sviluppatori",
|
||||||
"calendar": "Calendario",
|
"calendar": "Calendario",
|
||||||
"profile": "Profilo"
|
"profile": "Profilo"
|
||||||
},
|
},
|
||||||
@ -312,6 +308,25 @@
|
|||||||
"add_item": "Aggiungi articolo",
|
"add_item": "Aggiungi articolo",
|
||||||
"microphone_tip": "Tocca il microfono in alto a destra e dì \"Aggiungi caramelle alla mia lista della spesa\""
|
"microphone_tip": "Tocca il microfono in alto a destra e dì \"Aggiungi caramelle alla mia lista della spesa\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Servizi"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Stati"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Eventi"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Modelli"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Mostra registrazioni per",
|
"showing_entries": "Mostra registrazioni per",
|
||||||
"period": "Periodo"
|
"period": "Periodo"
|
||||||
@ -745,7 +760,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Sei attualmente connesso come {fullName} .",
|
"current_user": "Sei attualmente connesso come {fullName} .",
|
||||||
"is_owner": "Sei un proprietario.",
|
"is_owner": "Sei un proprietario.",
|
||||||
"logout": "Esci",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Cambia password",
|
"header": "Cambia password",
|
||||||
"current_password": "Password corrente",
|
"current_password": "Password corrente",
|
||||||
@ -1019,7 +1033,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Esci",
|
"log_out": "Esci",
|
||||||
"developer_tools": "Strumenti per gli sviluppatori",
|
|
||||||
"external_app_configuration": "Configurazione App"
|
"external_app_configuration": "Configurazione App"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,10 +7,7 @@
|
|||||||
"history": "履歴",
|
"history": "履歴",
|
||||||
"mailbox": "メールボックス",
|
"mailbox": "メールボックス",
|
||||||
"shopping_list": "買い物リスト",
|
"shopping_list": "買い物リスト",
|
||||||
"dev-services": "サービス",
|
"developer_tools": "開発者ツール",
|
||||||
"dev-events": "イベント",
|
|
||||||
"dev-templates": "テンプレート",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"calendar": "カレンダー"
|
"calendar": "カレンダー"
|
||||||
},
|
},
|
||||||
"state": {
|
"state": {
|
||||||
@ -175,6 +172,22 @@
|
|||||||
"clear_completed": "削除完了",
|
"clear_completed": "削除完了",
|
||||||
"add_item": "アイテムを追加"
|
"add_item": "アイテムを追加"
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "サービス"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "イベント"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "テンプレート"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"period": "期間"
|
"period": "期間"
|
||||||
},
|
},
|
||||||
@ -331,8 +344,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "ログアウト",
|
"log_out": "ログアウト"
|
||||||
"developer_tools": "開発者ツール"
|
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"loading": "読込中",
|
"loading": "読込中",
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "히스토리",
|
"history": "히스토리",
|
||||||
"mailbox": "메일함",
|
"mailbox": "메일함",
|
||||||
"shopping_list": "장보기목록",
|
"shopping_list": "장보기목록",
|
||||||
"dev-services": "서비스",
|
|
||||||
"dev-states": "상태",
|
|
||||||
"dev-events": "이벤트",
|
|
||||||
"dev-templates": "템플릿",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "정보",
|
"dev-info": "정보",
|
||||||
|
"developer_tools": "개발자도구",
|
||||||
"calendar": "캘린더",
|
"calendar": "캘린더",
|
||||||
"profile": "프로필"
|
"profile": "프로필"
|
||||||
},
|
},
|
||||||
@ -312,6 +308,25 @@
|
|||||||
"add_item": "항목추가",
|
"add_item": "항목추가",
|
||||||
"microphone_tip": "우상단 마이크를 탭하고 \"Add candy to my shopping list\"라고 말해보세요"
|
"microphone_tip": "우상단 마이크를 탭하고 \"Add candy to my shopping list\"라고 말해보세요"
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "서비스"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "상태"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "이벤트"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "템플릿"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "다음 날짜의 항목을 표시",
|
"showing_entries": "다음 날짜의 항목을 표시",
|
||||||
"period": "기간"
|
"period": "기간"
|
||||||
@ -745,7 +760,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "현재 {fullName} 로(으로) 로그인 한 상태 입니다.",
|
"current_user": "현재 {fullName} 로(으로) 로그인 한 상태 입니다.",
|
||||||
"is_owner": "관리자 계정 입니다.",
|
"is_owner": "관리자 계정 입니다.",
|
||||||
"logout": "로그아웃",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "비밀번호 변경",
|
"header": "비밀번호 변경",
|
||||||
"current_password": "현재 비밀번호",
|
"current_password": "현재 비밀번호",
|
||||||
@ -1019,7 +1033,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "로그아웃",
|
"log_out": "로그아웃",
|
||||||
"developer_tools": "개발자도구",
|
|
||||||
"external_app_configuration": "앱 구성"
|
"external_app_configuration": "앱 구성"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Verlaf",
|
"history": "Verlaf",
|
||||||
"mailbox": "Bréifkëscht",
|
"mailbox": "Bréifkëscht",
|
||||||
"shopping_list": "Akafslëscht",
|
"shopping_list": "Akafslëscht",
|
||||||
"dev-services": "Servicen",
|
|
||||||
"dev-states": "Zoustänn",
|
|
||||||
"dev-events": "Evenementer",
|
|
||||||
"dev-templates": "Modeller",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Info",
|
"dev-info": "Info",
|
||||||
|
"developer_tools": "Entwécklungsgeschir",
|
||||||
"calendar": "Kalenner",
|
"calendar": "Kalenner",
|
||||||
"profile": "Profil"
|
"profile": "Profil"
|
||||||
},
|
},
|
||||||
@ -311,6 +307,25 @@
|
|||||||
"add_item": "Objet dobäisetze",
|
"add_item": "Objet dobäisetze",
|
||||||
"microphone_tip": "Tipp uewe riets op de Mikro a so “Add candy to my shopping list”"
|
"microphone_tip": "Tipp uewe riets op de Mikro a so “Add candy to my shopping list”"
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Servicen"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Zoustänn"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Evenementer"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Modeller"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Weist Beiträg fir",
|
"showing_entries": "Weist Beiträg fir",
|
||||||
"period": "Zäitraum"
|
"period": "Zäitraum"
|
||||||
@ -744,7 +759,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Dir sidd aktuell ageloggt als {fullName}.",
|
"current_user": "Dir sidd aktuell ageloggt als {fullName}.",
|
||||||
"is_owner": "Dir sidd Proprietär.",
|
"is_owner": "Dir sidd Proprietär.",
|
||||||
"logout": "Ausloggen",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Passwuert änneren",
|
"header": "Passwuert änneren",
|
||||||
"current_password": "Aktuellt Passwuert",
|
"current_password": "Aktuellt Passwuert",
|
||||||
@ -1018,7 +1032,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Ausloggen",
|
"log_out": "Ausloggen",
|
||||||
"developer_tools": "Entwécklungsgeschir",
|
|
||||||
"external_app_configuration": "App Konfiguratioun"
|
"external_app_configuration": "App Konfiguratioun"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
"history": "Istorija",
|
"history": "Istorija",
|
||||||
"mailbox": "Pašto dėžutė",
|
"mailbox": "Pašto dėžutė",
|
||||||
"shopping_list": "Pirkinių sąrašas",
|
"shopping_list": "Pirkinių sąrašas",
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"profile": "Vartotojo profilis"
|
"profile": "Vartotojo profilis"
|
||||||
},
|
},
|
||||||
"state": {
|
"state": {
|
||||||
@ -159,12 +158,14 @@
|
|||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Atsijungti"
|
"log_out": "Atsijungti"
|
||||||
},
|
},
|
||||||
"duration": {
|
|
||||||
"day": "{count} {count, plural,\n one {diena}\n other {dienos}\n}",
|
|
||||||
"week": "count} {count, plural,\n one {savaitė}\n other {savaitės}\n}",
|
|
||||||
"second": "{count} {count, plural,\n one {sekundė}\n other {sekundės}\n}"
|
|
||||||
},
|
|
||||||
"panel": {
|
"panel": {
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"zwave": {
|
"zwave": {
|
||||||
"caption": "Z-Wave"
|
"caption": "Z-Wave"
|
||||||
@ -445,6 +446,11 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"duration": {
|
||||||
|
"day": "{count} {count, plural,\n one {diena}\n other {dienos}\n}",
|
||||||
|
"week": "count} {count, plural,\n one {savaitė}\n other {savaitės}\n}",
|
||||||
|
"second": "{count} {count, plural,\n one {sekundė}\n other {sekundės}\n}"
|
||||||
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"save": "Išsaugoti"
|
"save": "Išsaugoti"
|
||||||
},
|
},
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Vēsture",
|
"history": "Vēsture",
|
||||||
"mailbox": "Pastkaste",
|
"mailbox": "Pastkaste",
|
||||||
"shopping_list": "Iepirkumu saraksts",
|
"shopping_list": "Iepirkumu saraksts",
|
||||||
"dev-services": "Pakalpojumi",
|
|
||||||
"dev-states": "Stāvokļi",
|
|
||||||
"dev-events": "Notikumi",
|
|
||||||
"dev-templates": "Veidnes",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Info",
|
"dev-info": "Info",
|
||||||
|
"developer_tools": "Izstrādātāju rīki",
|
||||||
"calendar": "Kalendārs",
|
"calendar": "Kalendārs",
|
||||||
"profile": "Profils"
|
"profile": "Profils"
|
||||||
},
|
},
|
||||||
@ -296,6 +292,25 @@
|
|||||||
"add_item": "Pievienot vienumu",
|
"add_item": "Pievienot vienumu",
|
||||||
"microphone_tip": "Pieskarieties mikrofonam augšējā labajā stūrī un sakiet \"Pievienojiet konfektes manam iepirkumu sarakstam\""
|
"microphone_tip": "Pieskarieties mikrofonam augšējā labajā stūrī un sakiet \"Pievienojiet konfektes manam iepirkumu sarakstam\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Pakalpojumi"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Stāvokļi"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Notikumi"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Veidnes"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Rāda ierakstus par",
|
"showing_entries": "Rāda ierakstus par",
|
||||||
"period": "Periods"
|
"period": "Periods"
|
||||||
@ -630,7 +645,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Jūs šobrīd esat pieteicies kā {fullName}.",
|
"current_user": "Jūs šobrīd esat pieteicies kā {fullName}.",
|
||||||
"is_owner": "Jūs esat īpašnieks.",
|
"is_owner": "Jūs esat īpašnieks.",
|
||||||
"logout": "Atteikties",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Mainīt paroli",
|
"header": "Mainīt paroli",
|
||||||
"current_password": "Pašreizējā parole",
|
"current_password": "Pašreizējā parole",
|
||||||
@ -825,8 +839,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Iziet",
|
"log_out": "Iziet"
|
||||||
"developer_tools": "Izstrādātāju rīki"
|
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"loading": "Ielāde",
|
"loading": "Ielāde",
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Historie",
|
"history": "Historie",
|
||||||
"mailbox": "Postkasse",
|
"mailbox": "Postkasse",
|
||||||
"shopping_list": "Handleliste",
|
"shopping_list": "Handleliste",
|
||||||
"dev-services": "Tjenester",
|
|
||||||
"dev-states": "Statuser",
|
|
||||||
"dev-events": "Hendelser",
|
|
||||||
"dev-templates": "Maler",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Informasjon",
|
"dev-info": "Informasjon",
|
||||||
|
"developer_tools": "Utviklerverktøy",
|
||||||
"calendar": "Kalender",
|
"calendar": "Kalender",
|
||||||
"profile": "Profil"
|
"profile": "Profil"
|
||||||
},
|
},
|
||||||
@ -312,6 +308,25 @@
|
|||||||
"add_item": "Legg til",
|
"add_item": "Legg til",
|
||||||
"microphone_tip": "Aktiver mikrofonen øverst til høyre og si “Add candy to my shopping list”"
|
"microphone_tip": "Aktiver mikrofonen øverst til høyre og si “Add candy to my shopping list”"
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Tjenester"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Statuser"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Hendelser"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Maler"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Viser oppføringer for",
|
"showing_entries": "Viser oppføringer for",
|
||||||
"period": "Periode"
|
"period": "Periode"
|
||||||
@ -572,7 +587,31 @@
|
|||||||
},
|
},
|
||||||
"zwave": {
|
"zwave": {
|
||||||
"caption": "Z-Wave",
|
"caption": "Z-Wave",
|
||||||
"description": "Administrer ditt Z-Wave-nettverk"
|
"description": "Administrer ditt Z-Wave-nettverk",
|
||||||
|
"network_management": {
|
||||||
|
"header": "Z-Wave nettverksadministrasjon",
|
||||||
|
"introduction": "Kjør kommandoer som påvirker Z-Wave nettverket. Du får ikke tilbakemelding på om de fleste kommandoer lykkes, men du kan sjekke OZW-loggen for å prøve å finne det ut."
|
||||||
|
},
|
||||||
|
"network_status": {
|
||||||
|
"network_stopped": "Z-Wave nettverket stoppet",
|
||||||
|
"network_starting": "Starter Z-Wave nettverk...",
|
||||||
|
"network_starting_note": "Dette kan ta en stund, avhengig av størrelsen på nettverket ditt.",
|
||||||
|
"network_started": "Z-Wave nettverk startet",
|
||||||
|
"network_started_note_some_queried": "Våkne noder har blitt forespurt. Sovende noder vil bli spurt når de våkner.",
|
||||||
|
"network_started_note_all_queried": "Alle noder er forespurt."
|
||||||
|
},
|
||||||
|
"services": {
|
||||||
|
"start_network": "Start nettverk",
|
||||||
|
"stop_network": "Stopp nettverk",
|
||||||
|
"heal_network": "Helbrede nettverk",
|
||||||
|
"test_network": "Test nettverk",
|
||||||
|
"soft_reset": "Myk tilbakestilling",
|
||||||
|
"save_config": "Lagre konfigurasjon",
|
||||||
|
"add_node_secure": "Legg til sikker node",
|
||||||
|
"add_node": "Legg til node",
|
||||||
|
"remove_node": "Fjern node",
|
||||||
|
"cancel_command": "Avbryt kommando"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"users": {
|
"users": {
|
||||||
"caption": "Brukere",
|
"caption": "Brukere",
|
||||||
@ -745,7 +784,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Du er logget inn som {fullName}.",
|
"current_user": "Du er logget inn som {fullName}.",
|
||||||
"is_owner": "Du er en eier.",
|
"is_owner": "Du er en eier.",
|
||||||
"logout": "Logg ut",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Endre passord",
|
"header": "Endre passord",
|
||||||
"current_password": "Nåværende passord",
|
"current_password": "Nåværende passord",
|
||||||
@ -1019,7 +1057,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Logg ut",
|
"log_out": "Logg ut",
|
||||||
"developer_tools": "Utviklerverktøy",
|
|
||||||
"external_app_configuration": "Appkonfigurasjon"
|
"external_app_configuration": "Appkonfigurasjon"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Geschiedenis",
|
"history": "Geschiedenis",
|
||||||
"mailbox": "Postvak",
|
"mailbox": "Postvak",
|
||||||
"shopping_list": "Boodschappenlijst",
|
"shopping_list": "Boodschappenlijst",
|
||||||
"dev-services": "Services",
|
|
||||||
"dev-states": "Toestanden",
|
|
||||||
"dev-events": "Gebeurtenissen",
|
|
||||||
"dev-templates": "Sjablonen",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Info",
|
"dev-info": "Info",
|
||||||
|
"developer_tools": "Ontwikkelaarstools",
|
||||||
"calendar": "Kalender",
|
"calendar": "Kalender",
|
||||||
"profile": "Profiel"
|
"profile": "Profiel"
|
||||||
},
|
},
|
||||||
@ -312,6 +308,25 @@
|
|||||||
"add_item": "Item toevoegen",
|
"add_item": "Item toevoegen",
|
||||||
"microphone_tip": "Tik op de microfoon rechtsboven en zeg \"Add candy to my shopping list\""
|
"microphone_tip": "Tik op de microfoon rechtsboven en zeg \"Add candy to my shopping list\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Services"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Toestanden"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Gebeurtenissen"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Sjablonen"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Toon items voor",
|
"showing_entries": "Toon items voor",
|
||||||
"period": "Periode"
|
"period": "Periode"
|
||||||
@ -572,7 +587,31 @@
|
|||||||
},
|
},
|
||||||
"zwave": {
|
"zwave": {
|
||||||
"caption": "Z-Wave",
|
"caption": "Z-Wave",
|
||||||
"description": "Beheer je Z-Wave-netwerk"
|
"description": "Beheer je Z-Wave-netwerk",
|
||||||
|
"network_management": {
|
||||||
|
"header": "Z-Wave netwerkbeheer",
|
||||||
|
"introduction": "Voer opdrachten uit die van invloed zijn op het Z-Wave-netwerk. Je krijgt geen feedback of de meeste commando's gelukt zijn, maar je kunt wel het OZW Logboek raadplegen om te proberen uit te vinden of het gelukt is."
|
||||||
|
},
|
||||||
|
"network_status": {
|
||||||
|
"network_stopped": "Z-Wave netwerk gestopt",
|
||||||
|
"network_starting": "Z-Wave netwerk starten...",
|
||||||
|
"network_starting_note": "Dit kan een tijdje duren, afhankelijk van de grootte van uw netwerk.",
|
||||||
|
"network_started": "Z-Wave Netwerk gestart",
|
||||||
|
"network_started_note_some_queried": "Alle wakkere nodes zijn opgevraagd. Slapende nodes worden opgevraagd wanneer ze wakker worden.",
|
||||||
|
"network_started_note_all_queried": "Alle nodes zijn opgevraagd."
|
||||||
|
},
|
||||||
|
"services": {
|
||||||
|
"start_network": "Start netwerk",
|
||||||
|
"stop_network": "Stop Netwerk",
|
||||||
|
"heal_network": "Herstel Netwerk",
|
||||||
|
"test_network": "Test Netwerk",
|
||||||
|
"soft_reset": "Soft Reset",
|
||||||
|
"save_config": "Configuratie Opslaan",
|
||||||
|
"add_node_secure": "Toevoegen Node Secure",
|
||||||
|
"add_node": "Node toevoegen",
|
||||||
|
"remove_node": "Node verwijderen",
|
||||||
|
"cancel_command": "Opdracht annuleren"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"users": {
|
"users": {
|
||||||
"caption": "Gebruikers",
|
"caption": "Gebruikers",
|
||||||
@ -745,7 +784,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "U bent momenteel ingelogd als {fullName}.",
|
"current_user": "U bent momenteel ingelogd als {fullName}.",
|
||||||
"is_owner": "U bent eigenaar.",
|
"is_owner": "U bent eigenaar.",
|
||||||
"logout": "Uitloggen",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Wachtwoord wijzigen",
|
"header": "Wachtwoord wijzigen",
|
||||||
"current_password": "Huidige wachtwoord",
|
"current_password": "Huidige wachtwoord",
|
||||||
@ -1019,7 +1057,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Uitloggen",
|
"log_out": "Uitloggen",
|
||||||
"developer_tools": "Ontwikkelaarstools",
|
|
||||||
"external_app_configuration": "App configuratie"
|
"external_app_configuration": "App configuratie"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Historie",
|
"history": "Historie",
|
||||||
"mailbox": "Postkasse",
|
"mailbox": "Postkasse",
|
||||||
"shopping_list": "Handleliste",
|
"shopping_list": "Handleliste",
|
||||||
"dev-services": "Tenester",
|
|
||||||
"dev-states": "Statusar",
|
|
||||||
"dev-events": "Hendingar",
|
|
||||||
"dev-templates": "Malar",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Info",
|
"dev-info": "Info",
|
||||||
|
"developer_tools": "Utviklarverkty",
|
||||||
"calendar": "Kalendrar",
|
"calendar": "Kalendrar",
|
||||||
"profile": "Profil"
|
"profile": "Profil"
|
||||||
},
|
},
|
||||||
@ -311,6 +307,25 @@
|
|||||||
"add_item": "Legg til",
|
"add_item": "Legg til",
|
||||||
"microphone_tip": "Trykk på mikorfonen øvst til høgre og sei \"Add candy to my shopping list\""
|
"microphone_tip": "Trykk på mikorfonen øvst til høgre og sei \"Add candy to my shopping list\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Tenester"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Statusar"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Hendingar"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Malar"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Viser oppføringer for",
|
"showing_entries": "Viser oppføringer for",
|
||||||
"period": "Periode"
|
"period": "Periode"
|
||||||
@ -740,7 +755,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Du er for augeblinken logga inn som {fullName}.",
|
"current_user": "Du er for augeblinken logga inn som {fullName}.",
|
||||||
"is_owner": "Du er ein eigar",
|
"is_owner": "Du er ein eigar",
|
||||||
"logout": "Logg ut",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Bytt passord",
|
"header": "Bytt passord",
|
||||||
"current_password": "Noverande passord",
|
"current_password": "Noverande passord",
|
||||||
@ -986,8 +1000,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Logg ut",
|
"log_out": "Logg ut"
|
||||||
"developer_tools": "Utviklarverkty"
|
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"loading": "Lastar",
|
"loading": "Lastar",
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Historia",
|
"history": "Historia",
|
||||||
"mailbox": "Poczta",
|
"mailbox": "Poczta",
|
||||||
"shopping_list": "Lista zakupów",
|
"shopping_list": "Lista zakupów",
|
||||||
"dev-services": "Usługi",
|
|
||||||
"dev-states": "Stany",
|
|
||||||
"dev-events": "Zdarzenia",
|
|
||||||
"dev-templates": "Szablony",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Informacje",
|
"dev-info": "Informacje",
|
||||||
|
"developer_tools": "Narzędzia deweloperskie",
|
||||||
"calendar": "Kalendarz",
|
"calendar": "Kalendarz",
|
||||||
"profile": "Profil"
|
"profile": "Profil"
|
||||||
},
|
},
|
||||||
@ -312,6 +308,25 @@
|
|||||||
"add_item": "Dodaj element",
|
"add_item": "Dodaj element",
|
||||||
"microphone_tip": "Kliknij ikonę mikrofonu w prawym górnym rogu i powiedz “Add candy to my shopping list”"
|
"microphone_tip": "Kliknij ikonę mikrofonu w prawym górnym rogu i powiedz “Add candy to my shopping list”"
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Usługi"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Stany"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Zdarzenia"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Szablony"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Wyświetlanie rekordów dla",
|
"showing_entries": "Wyświetlanie rekordów dla",
|
||||||
"period": "Okres"
|
"period": "Okres"
|
||||||
@ -572,7 +587,31 @@
|
|||||||
},
|
},
|
||||||
"zwave": {
|
"zwave": {
|
||||||
"caption": "Z-Wave",
|
"caption": "Z-Wave",
|
||||||
"description": "Zarządzaj swoją siecią Z-Wave"
|
"description": "Zarządzaj swoją siecią Z-Wave",
|
||||||
|
"network_management": {
|
||||||
|
"header": "Zarządzanie siecią Z-Wave",
|
||||||
|
"introduction": "Uruchom polecenia sterujące siecią Z-Wave. Nie otrzymasz informacji o tym, czy wykonanie poleceń się powiodło, ale możesz szukać informacji na ten temat w logu OZW."
|
||||||
|
},
|
||||||
|
"network_status": {
|
||||||
|
"network_stopped": "Zatrzymano sieć Z-Wave",
|
||||||
|
"network_starting": "Uruchamianie sieci Z-Wave ...",
|
||||||
|
"network_starting_note": "Może to chwilę potrwać, w zależności od rozmiaru sieci.",
|
||||||
|
"network_started": "Uruchomiono sieć Z-Wave",
|
||||||
|
"network_started_note_some_queried": "Wybudzone węzły zostały odpytane. Niewybudzone węzły będą odpytane, kiedy się wybudzą.",
|
||||||
|
"network_started_note_all_queried": "Wszystkie węzły zostały odpytane."
|
||||||
|
},
|
||||||
|
"services": {
|
||||||
|
"start_network": "Uruchom sieć",
|
||||||
|
"stop_network": "Zatrzymaj sieć",
|
||||||
|
"heal_network": "Uzdrawiaj sieć",
|
||||||
|
"test_network": "Testuj sieć",
|
||||||
|
"soft_reset": "Miękki reset",
|
||||||
|
"save_config": "Zapisz konfigurację",
|
||||||
|
"add_node_secure": "Dodaj bezpieczny węzeł",
|
||||||
|
"add_node": "Dodaj węzeł",
|
||||||
|
"remove_node": "Usuń węzeł",
|
||||||
|
"cancel_command": "Anuluj polecenie"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"users": {
|
"users": {
|
||||||
"caption": "Użytkownicy",
|
"caption": "Użytkownicy",
|
||||||
@ -745,7 +784,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Jesteś obecnie zalogowany jako {fullName}.",
|
"current_user": "Jesteś obecnie zalogowany jako {fullName}.",
|
||||||
"is_owner": "Jesteś właścicielem.",
|
"is_owner": "Jesteś właścicielem.",
|
||||||
"logout": "Wyloguj",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Zmień hasło",
|
"header": "Zmień hasło",
|
||||||
"current_password": "Bieżące hasło",
|
"current_password": "Bieżące hasło",
|
||||||
@ -1019,7 +1057,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Wyloguj",
|
"log_out": "Wyloguj",
|
||||||
"developer_tools": "Narzędzia deweloperskie",
|
|
||||||
"external_app_configuration": "Konfiguracja aplikacji"
|
"external_app_configuration": "Konfiguracja aplikacji"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Histórico",
|
"history": "Histórico",
|
||||||
"mailbox": "Caixa de correio",
|
"mailbox": "Caixa de correio",
|
||||||
"shopping_list": "Lista de compras",
|
"shopping_list": "Lista de compras",
|
||||||
"dev-services": "Serviços",
|
|
||||||
"dev-states": "Estado",
|
|
||||||
"dev-events": "Eventos",
|
|
||||||
"dev-templates": "Modelos",
|
|
||||||
"dev-mqtt": "",
|
|
||||||
"dev-info": "Informações",
|
"dev-info": "Informações",
|
||||||
|
"developer_tools": "Ferramentas do desenvolvedor",
|
||||||
"calendar": "Calendário",
|
"calendar": "Calendário",
|
||||||
"profile": "Perfil"
|
"profile": "Perfil"
|
||||||
},
|
},
|
||||||
@ -311,6 +307,25 @@
|
|||||||
"add_item": "Adicionar item",
|
"add_item": "Adicionar item",
|
||||||
"microphone_tip": "Clique no microfone no canto superior direito e diga \"Adicionar doces à minha lista de compras\""
|
"microphone_tip": "Clique no microfone no canto superior direito e diga \"Adicionar doces à minha lista de compras\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Serviços"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Estado"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Eventos"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Modelos"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Exibindo entradas para",
|
"showing_entries": "Exibindo entradas para",
|
||||||
"period": "Período"
|
"period": "Período"
|
||||||
@ -744,7 +759,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Você está logado como {fullName} .",
|
"current_user": "Você está logado como {fullName} .",
|
||||||
"is_owner": "Você é um proprietário.",
|
"is_owner": "Você é um proprietário.",
|
||||||
"logout": "Sair",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Alterar senha",
|
"header": "Alterar senha",
|
||||||
"current_password": "Senha atual",
|
"current_password": "Senha atual",
|
||||||
@ -1018,7 +1032,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Sair",
|
"log_out": "Sair",
|
||||||
"developer_tools": "Ferramentas do desenvolvedor",
|
|
||||||
"external_app_configuration": "Configuração do aplicativo"
|
"external_app_configuration": "Configuração do aplicativo"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Histórico",
|
"history": "Histórico",
|
||||||
"mailbox": "Caixa de correio",
|
"mailbox": "Caixa de correio",
|
||||||
"shopping_list": "Lista de compras",
|
"shopping_list": "Lista de compras",
|
||||||
"dev-services": "Serviços",
|
|
||||||
"dev-states": "Estados",
|
|
||||||
"dev-events": "Eventos",
|
|
||||||
"dev-templates": "Modelos",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Informações",
|
"dev-info": "Informações",
|
||||||
|
"developer_tools": "Ferramentas de programação",
|
||||||
"calendar": "Calendário",
|
"calendar": "Calendário",
|
||||||
"profile": "Perfil"
|
"profile": "Perfil"
|
||||||
},
|
},
|
||||||
@ -311,6 +307,25 @@
|
|||||||
"add_item": "Adicionar item",
|
"add_item": "Adicionar item",
|
||||||
"microphone_tip": "Clique no microfone do canto superior direito e diga “Add candy to my shopping list”"
|
"microphone_tip": "Clique no microfone do canto superior direito e diga “Add candy to my shopping list”"
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Serviços"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Estados"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Eventos"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Modelos"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Mostrar valores para",
|
"showing_entries": "Mostrar valores para",
|
||||||
"period": "Período"
|
"period": "Período"
|
||||||
@ -744,7 +759,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Esta atualmente ligado como {fullName}",
|
"current_user": "Esta atualmente ligado como {fullName}",
|
||||||
"is_owner": "Você é um proprietário.",
|
"is_owner": "Você é um proprietário.",
|
||||||
"logout": "Sair",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Alterar palavra-passe",
|
"header": "Alterar palavra-passe",
|
||||||
"current_password": "Palavra-passe atual",
|
"current_password": "Palavra-passe atual",
|
||||||
@ -1018,7 +1032,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Sair",
|
"log_out": "Sair",
|
||||||
"developer_tools": "Ferramentas de programação",
|
|
||||||
"external_app_configuration": "Configuração da Aplicação"
|
"external_app_configuration": "Configuração da Aplicação"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Istoric",
|
"history": "Istoric",
|
||||||
"mailbox": "Cutie poștală",
|
"mailbox": "Cutie poștală",
|
||||||
"shopping_list": "Listă de cumpărături",
|
"shopping_list": "Listă de cumpărături",
|
||||||
"dev-services": "Servicii",
|
|
||||||
"dev-states": "Status",
|
|
||||||
"dev-events": "Evenimente",
|
|
||||||
"dev-templates": "Sabloane",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Info",
|
"dev-info": "Info",
|
||||||
|
"developer_tools": "Instrumente de dezvoltare",
|
||||||
"calendar": "Calendar",
|
"calendar": "Calendar",
|
||||||
"profile": "Profil"
|
"profile": "Profil"
|
||||||
},
|
},
|
||||||
@ -145,7 +141,8 @@
|
|||||||
"high_demand": "Consum mare",
|
"high_demand": "Consum mare",
|
||||||
"heat_pump": "Pompă de căldură",
|
"heat_pump": "Pompă de căldură",
|
||||||
"gas": "Gaz",
|
"gas": "Gaz",
|
||||||
"manual": "Manual"
|
"manual": "Manual",
|
||||||
|
"heat_cool": "Auto"
|
||||||
},
|
},
|
||||||
"configurator": {
|
"configurator": {
|
||||||
"configure": "Configurează",
|
"configure": "Configurează",
|
||||||
@ -265,12 +262,21 @@
|
|||||||
"on": "Pornit",
|
"on": "Pornit",
|
||||||
"paused": "Întrerupt",
|
"paused": "Întrerupt",
|
||||||
"returning": "În curs de întoarcere la doc"
|
"returning": "În curs de întoarcere la doc"
|
||||||
|
},
|
||||||
|
"timer": {
|
||||||
|
"active": "activ"
|
||||||
|
},
|
||||||
|
"person": {
|
||||||
|
"home": "Acasă",
|
||||||
|
"not_home": "Plecat"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"state_badge": {
|
"state_badge": {
|
||||||
"default": {
|
"default": {
|
||||||
"unknown": "Nec",
|
"unknown": "Nec",
|
||||||
"unavailable": "Indisp"
|
"unavailable": "Indisp",
|
||||||
|
"error": "Eroare",
|
||||||
|
"entity_not_found": "Entitatea nu a fost găsită"
|
||||||
},
|
},
|
||||||
"alarm_control_panel": {
|
"alarm_control_panel": {
|
||||||
"armed": "Armat",
|
"armed": "Armat",
|
||||||
@ -287,6 +293,10 @@
|
|||||||
"device_tracker": {
|
"device_tracker": {
|
||||||
"home": "Acasă",
|
"home": "Acasă",
|
||||||
"not_home": "Plecat"
|
"not_home": "Plecat"
|
||||||
|
},
|
||||||
|
"person": {
|
||||||
|
"home": "Acasa",
|
||||||
|
"not_home": "Plecat"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ui": {
|
"ui": {
|
||||||
@ -296,6 +306,25 @@
|
|||||||
"add_item": "Adaugare element",
|
"add_item": "Adaugare element",
|
||||||
"microphone_tip": "Atingeți microfonul din partea dreaptă sus și spuneți \"Add candy to my shopping list\""
|
"microphone_tip": "Atingeți microfonul din partea dreaptă sus și spuneți \"Add candy to my shopping list\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Servicii"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Status"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Evenimente"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Sabloane"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Se afișează intrările pentru",
|
"showing_entries": "Se afișează intrările pentru",
|
||||||
"period": "Perioadă"
|
"period": "Perioadă"
|
||||||
@ -339,13 +368,30 @@
|
|||||||
"introduction": "Controlează-ți serverul Home Assistant ... chiar din Home Assistant.",
|
"introduction": "Controlează-ți serverul Home Assistant ... chiar din Home Assistant.",
|
||||||
"restart": "Repornire",
|
"restart": "Repornire",
|
||||||
"stop": "Oprire"
|
"stop": "Oprire"
|
||||||
|
},
|
||||||
|
"core_config": {
|
||||||
|
"edit_requires_storage": "Editorul a fost dezactivat deoarece configurația a fost stocata în configuration.yaml.",
|
||||||
|
"location_name": "Numele instalarii Home Assistant",
|
||||||
|
"latitude": "Latitudine",
|
||||||
|
"longitude": "Longitudine",
|
||||||
|
"elevation": "Altitudine",
|
||||||
|
"elevation_meters": "metri",
|
||||||
|
"time_zone": "Fus orar",
|
||||||
|
"unit_system": "Unitatea De Sistem",
|
||||||
|
"unit_system_imperial": "Imperial",
|
||||||
|
"unit_system_metric": "Metric",
|
||||||
|
"metric_example": "Celsius, kilograme",
|
||||||
|
"save_button": "Salvați"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"customize": {
|
"customize": {
|
||||||
"caption": "Personalizare",
|
"caption": "Personalizare",
|
||||||
"description": "Personalizați-vă entitățile"
|
"description": "Personalizați-vă entitățile",
|
||||||
|
"picker": {
|
||||||
|
"header": "Personalizare"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"automation": {
|
"automation": {
|
||||||
"caption": "Automatizări",
|
"caption": "Automatizări",
|
||||||
@ -423,6 +469,11 @@
|
|||||||
"event": "Eveniment",
|
"event": "Eveniment",
|
||||||
"enter": "Intră",
|
"enter": "Intră",
|
||||||
"leave": "Ieși"
|
"leave": "Ieși"
|
||||||
|
},
|
||||||
|
"time_pattern": {
|
||||||
|
"hours": "Ore",
|
||||||
|
"minutes": "Minute",
|
||||||
|
"seconds": "Secunde"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -503,7 +554,8 @@
|
|||||||
"service_data": "Date serviciu"
|
"service_data": "Date serviciu"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"load_error_not_editable": "Numai automatizările din automations.yaml pot fi editate."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"script": {
|
"script": {
|
||||||
@ -512,7 +564,27 @@
|
|||||||
},
|
},
|
||||||
"zwave": {
|
"zwave": {
|
||||||
"caption": "Z-Wave",
|
"caption": "Z-Wave",
|
||||||
"description": "Gestionați-vă rețeaua Z-Wave"
|
"description": "Gestionați-vă rețeaua Z-Wave",
|
||||||
|
"network_management": {
|
||||||
|
"header": "Administrarea retelei Z-Wave"
|
||||||
|
},
|
||||||
|
"network_status": {
|
||||||
|
"network_stopped": "Rețeaua Z-Wave Oprita",
|
||||||
|
"network_starting": "Pornesc rețeaua Z-Wave ...",
|
||||||
|
"network_starting_note": "Acest lucru poate dura ceva timp, în funcție de dimensiunea rețelei dvs.",
|
||||||
|
"network_started": "Rețeaua Z-Wave a fost pornita"
|
||||||
|
},
|
||||||
|
"services": {
|
||||||
|
"start_network": "Porniți rețeaua",
|
||||||
|
"stop_network": "Opriți rețeaua",
|
||||||
|
"test_network": "Testati Reteaua",
|
||||||
|
"soft_reset": "Resetare soft",
|
||||||
|
"save_config": "Salvați Configurația",
|
||||||
|
"add_node_secure": "Adăugare nod securizat",
|
||||||
|
"add_node": "Adăugare nod",
|
||||||
|
"remove_node": "Eliminare nod",
|
||||||
|
"cancel_command": "Anulați comanda"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"users": {
|
"users": {
|
||||||
"caption": "Utilizatori",
|
"caption": "Utilizatori",
|
||||||
@ -525,7 +597,15 @@
|
|||||||
"change_password": "Schimbaţi parola",
|
"change_password": "Schimbaţi parola",
|
||||||
"activate_user": "Activați utilizatorul",
|
"activate_user": "Activați utilizatorul",
|
||||||
"deactivate_user": "Dezactivați utilizatorul",
|
"deactivate_user": "Dezactivați utilizatorul",
|
||||||
"delete_user": "Ștergeți utilizatorul"
|
"delete_user": "Ștergeți utilizatorul",
|
||||||
|
"caption": "Vizualizați utilizatorul"
|
||||||
|
},
|
||||||
|
"add_user": {
|
||||||
|
"caption": "Adăugați utilizator",
|
||||||
|
"name": "Nume",
|
||||||
|
"username": "Nume de utilizator",
|
||||||
|
"password": "Parola",
|
||||||
|
"create": "Creează"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"cloud": {
|
"cloud": {
|
||||||
@ -550,7 +630,61 @@
|
|||||||
"via": "Conectat prin",
|
"via": "Conectat prin",
|
||||||
"firmware": "Firmware: {version}",
|
"firmware": "Firmware: {version}",
|
||||||
"device_unavailable": "dispozitiv indisponibil",
|
"device_unavailable": "dispozitiv indisponibil",
|
||||||
"entity_unavailable": "Entitatea nu este disponibilă"
|
"entity_unavailable": "Entitatea nu este disponibilă",
|
||||||
|
"no_area": "Nici o zonă",
|
||||||
|
"hub": "Conectat prin"
|
||||||
|
},
|
||||||
|
"config_flow": {
|
||||||
|
"external_step": {
|
||||||
|
"description": "Acest pas necesită să vizitați un site web extern pentru a fi finalizat.",
|
||||||
|
"open_site": "Deschideți site-ul web"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"area_registry": {
|
||||||
|
"create_area": "CREARE ZONĂ",
|
||||||
|
"editor": {
|
||||||
|
"default_name": "Zonă nouă",
|
||||||
|
"delete": "ȘTERGEȚI",
|
||||||
|
"update": "ACTUALIZAȚI",
|
||||||
|
"create": "CREAȚI"
|
||||||
|
},
|
||||||
|
"picker": {
|
||||||
|
"no_areas": "Se pare că nu ai nici o zonă încă!",
|
||||||
|
"create_area": "CREARE ZONĂ"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity_registry": {
|
||||||
|
"picker": {
|
||||||
|
"header": "Registrul de entități",
|
||||||
|
"unavailable": "(indisponibil)"
|
||||||
|
},
|
||||||
|
"editor": {
|
||||||
|
"unavailable": "Această entitate nu este disponibilă momentan.",
|
||||||
|
"default_name": "Zonă nouă",
|
||||||
|
"delete": "ȘTERGE",
|
||||||
|
"update": "ACTUALIZAȚI"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"person": {
|
||||||
|
"caption": "Persoane",
|
||||||
|
"description": "Gestionează persoanele pe care Home Assistant le urmărește.",
|
||||||
|
"detail": {
|
||||||
|
"name": "Nume",
|
||||||
|
"device_tracker_intro": "Selectați dispozitivele care aparțin acestei persoane.",
|
||||||
|
"device_tracker_picked": "Urmăriți dispozitivul",
|
||||||
|
"device_tracker_pick": "Alegeți dispozitivul pentru a urmări"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"zha": {
|
||||||
|
"services": {
|
||||||
|
"updateDeviceName": "Setați un nume personalizat pentru acest dispozitiv în registrul de dispozitive.",
|
||||||
|
"remove": "Eliminați un dispozitiv din rețeaua ZigBee."
|
||||||
|
},
|
||||||
|
"device_card": {
|
||||||
|
"device_name_placeholder": "Nume dat de utilizator",
|
||||||
|
"area_picker_label": "Zonă",
|
||||||
|
"update_name_button": "Actualizați numele"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -602,7 +736,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "În prezent sunteți conectat ca {fullName} .",
|
"current_user": "În prezent sunteți conectat ca {fullName} .",
|
||||||
"is_owner": "Sunteți proprietar.",
|
"is_owner": "Sunteți proprietar.",
|
||||||
"logout": "Deconectați-vă",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Schimbaţi parola",
|
"header": "Schimbaţi parola",
|
||||||
"current_password": "Parola Curentă",
|
"current_password": "Parola Curentă",
|
||||||
@ -696,6 +829,24 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"command_line": {
|
"command_line": {
|
||||||
|
"step": {
|
||||||
|
"init": {
|
||||||
|
"data": {
|
||||||
|
"username": "Utilizator",
|
||||||
|
"password": "Parola"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"mfa": {
|
||||||
|
"data": {
|
||||||
|
"code": "Cod Autentificare in doi pasi"
|
||||||
|
},
|
||||||
|
"description": "Deschide **{mfa_module_name}** pe dispozitivul tau pentru a vedea codul autentificare in doi pasi si a confirma identitatea:"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"error": {
|
||||||
|
"invalid_auth": "Utilizator sau parola invalida",
|
||||||
|
"invalid_code": "Cod invalid pentru autentificare"
|
||||||
|
},
|
||||||
"abort": {
|
"abort": {
|
||||||
"login_expired": "Sesiunea a expirat, va rugam logati-va din nou."
|
"login_expired": "Sesiunea a expirat, va rugam logati-va din nou."
|
||||||
}
|
}
|
||||||
@ -711,18 +862,86 @@
|
|||||||
"data": {
|
"data": {
|
||||||
"name": "Nume",
|
"name": "Nume",
|
||||||
"username": "Nume de utilizator",
|
"username": "Nume de utilizator",
|
||||||
"password": "Parola"
|
"password": "Parola",
|
||||||
|
"password_confirm": "Confirmare parolă"
|
||||||
},
|
},
|
||||||
"create_account": "Creează cont",
|
"create_account": "Creează cont",
|
||||||
"error": {
|
"error": {
|
||||||
"required_fields": "Completați toate câmpurile obligatorii"
|
"required_fields": "Completați toate câmpurile obligatorii",
|
||||||
|
"password_not_match": "Parolele nu se potrivesc"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"core-config": {
|
||||||
|
"intro_location": "Am vrea să știm unde locuiți. Aceste informații vă vor ajuta să afișați informații și să configurați automatizări bazate pe soare. Aceste date nu sunt niciodată distribuite în afara rețelei dvs.",
|
||||||
|
"intro_location_detect": "Vă putem ajuta să completați aceste informații făcând o cerere unică unui serviciu extern.",
|
||||||
|
"location_name_default": "Acasă",
|
||||||
|
"button_detect": "Detecteaza",
|
||||||
|
"finish": "Următorul"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"lovelace": {
|
||||||
|
"editor": {
|
||||||
|
"edit_card": {
|
||||||
|
"move": "Muta"
|
||||||
|
},
|
||||||
|
"raw_editor": {
|
||||||
|
"header": "Editați configurația",
|
||||||
|
"save": "Salvați",
|
||||||
|
"unsaved_changes": "Modificări nesalvate",
|
||||||
|
"saved": "Salvat"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"cards": {
|
||||||
|
"picture-elements": {
|
||||||
|
"hold": "Țineți apăsat:",
|
||||||
|
"navigate_to": "Navigați la {location}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"changed_toast": {
|
||||||
|
"message": "Configurația Lovelace a fost actualizată, doriți să reîmprospătați?",
|
||||||
|
"refresh": "Reîmprospătare"
|
||||||
|
},
|
||||||
|
"reload_lovelace": "Reîncarcă Lovelace"
|
||||||
|
},
|
||||||
|
"page-demo": {
|
||||||
|
"cards": {
|
||||||
|
"demo": {
|
||||||
|
"demo_by": "dupa {name}",
|
||||||
|
"next_demo": "Următorul demo",
|
||||||
|
"introduction": "Bine ai venit acasa! Ați ajuns la demo-ul Home Assistant, unde prezentăm cele mai bune interfețe utilizator, create de comunitatea noastră."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"config": {
|
||||||
|
"arsaboo": {
|
||||||
|
"names": {
|
||||||
|
"hallway": "Hol",
|
||||||
|
"master_bedroom": "Dormitor Principal",
|
||||||
|
"left": "Stânga",
|
||||||
|
"right": "Dreapta",
|
||||||
|
"mirror": "Oglindă"
|
||||||
|
},
|
||||||
|
"labels": {
|
||||||
|
"lights": "Lumini",
|
||||||
|
"information": "informație",
|
||||||
|
"morning_commute": "Naveta De Dimineață",
|
||||||
|
"commute_home": "Naveta la domiciliu",
|
||||||
|
"entertainment": "Divertisment",
|
||||||
|
"activity": "Activitate",
|
||||||
|
"hdmi_input": "Intrare HDMI",
|
||||||
|
"hdmi_switcher": "Comutator HDMI",
|
||||||
|
"volume": "Volum",
|
||||||
|
"total_tv_time": "Timp total de televiziune",
|
||||||
|
"turn_tv_off": "Opriți televizorul"
|
||||||
|
},
|
||||||
|
"unit": {
|
||||||
|
"minutes_abbr": "min"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Deconectare",
|
"log_out": "Deconectare"
|
||||||
"developer_tools": "Instrumente de dezvoltare"
|
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"loading": "Se încarcă",
|
"loading": "Se încarcă",
|
||||||
@ -732,7 +951,7 @@
|
|||||||
"day": "{count}{count, plural,\n one { zi }\n other { zile }\n}",
|
"day": "{count}{count, plural,\n one { zi }\n other { zile }\n}",
|
||||||
"week": "{count}{count, plural,\n one { săptămână }\n other { săptămâni }\n}",
|
"week": "{count}{count, plural,\n one { săptămână }\n other { săptămâni }\n}",
|
||||||
"second": "{count} {count, plural,\none {secunda}\nother {secunde}\n}",
|
"second": "{count} {count, plural,\none {secunda}\nother {secunde}\n}",
|
||||||
"minute": "{count} {count, plural,\n one { minute }\n other { minutes }\n}",
|
"minute": "{count} {count, plural,\n one { minut }\n other { minute }\n}",
|
||||||
"hour": "{count}{count, plural,\n one { zi }\n other { zile }\n}"
|
"hour": "{count}{count, plural,\n one { zi }\n other { zile }\n}"
|
||||||
},
|
},
|
||||||
"login-form": {
|
"login-form": {
|
||||||
@ -786,7 +1005,8 @@
|
|||||||
"clear_code": "Şterge",
|
"clear_code": "Şterge",
|
||||||
"disarm": "Dezarmat",
|
"disarm": "Dezarmat",
|
||||||
"arm_home": "Armat acasă",
|
"arm_home": "Armat acasă",
|
||||||
"arm_away": "Armat plecat"
|
"arm_away": "Armat plecat",
|
||||||
|
"arm_custom_bypass": "Bypass personalizat"
|
||||||
},
|
},
|
||||||
"automation": {
|
"automation": {
|
||||||
"last_triggered": "Ultima declanșare",
|
"last_triggered": "Ultima declanșare",
|
||||||
@ -933,7 +1153,9 @@
|
|||||||
"weblink": "Legătură web",
|
"weblink": "Legătură web",
|
||||||
"zwave": "Z-Wave",
|
"zwave": "Z-Wave",
|
||||||
"vacuum": "Aspirator",
|
"vacuum": "Aspirator",
|
||||||
"system_health": "Stare Sistem"
|
"hassio": "Hass.io",
|
||||||
|
"system_health": "Stare Sistem",
|
||||||
|
"person": "Persoană"
|
||||||
},
|
},
|
||||||
"attribute": {
|
"attribute": {
|
||||||
"weather": {
|
"weather": {
|
||||||
@ -941,5 +1163,22 @@
|
|||||||
"visibility": "Vizibilitate",
|
"visibility": "Vizibilitate",
|
||||||
"wind_speed": "Viteza vântului"
|
"wind_speed": "Viteza vântului"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"groups": {
|
||||||
|
"system-admin": "Administratori",
|
||||||
|
"system-users": "Utilizatori",
|
||||||
|
"system-read-only": "Utilizatori cu drepturi de citire"
|
||||||
|
},
|
||||||
|
"state_attributes": {
|
||||||
|
"climate": {
|
||||||
|
"preset_mode": {
|
||||||
|
"none": "Nici unul",
|
||||||
|
"away": "Plecat",
|
||||||
|
"boost": "Boost",
|
||||||
|
"comfort": "Confort",
|
||||||
|
"home": "Acasă",
|
||||||
|
"activity": "Activitate"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -7,12 +7,8 @@
|
|||||||
"history": "История",
|
"history": "История",
|
||||||
"mailbox": "Почта",
|
"mailbox": "Почта",
|
||||||
"shopping_list": "Список покупок",
|
"shopping_list": "Список покупок",
|
||||||
"dev-services": "Службы",
|
|
||||||
"dev-states": "Состояния",
|
|
||||||
"dev-events": "События",
|
|
||||||
"dev-templates": "Шаблоны",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Информация",
|
"dev-info": "Информация",
|
||||||
|
"developer_tools": "Инструменты разработчика",
|
||||||
"calendar": "Календарь",
|
"calendar": "Календарь",
|
||||||
"profile": "Профиль"
|
"profile": "Профиль"
|
||||||
},
|
},
|
||||||
@ -312,6 +308,25 @@
|
|||||||
"add_item": "Добавить элемент",
|
"add_item": "Добавить элемент",
|
||||||
"microphone_tip": "Нажмите на микрофон в правом верхнем углу и скажите “Add candy to my shopping list”"
|
"microphone_tip": "Нажмите на микрофон в правом верхнем углу и скажите “Add candy to my shopping list”"
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Службы"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Состояния"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "События"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Шаблоны"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Отображение записей за",
|
"showing_entries": "Отображение записей за",
|
||||||
"period": "Период"
|
"period": "Период"
|
||||||
@ -572,7 +587,31 @@
|
|||||||
},
|
},
|
||||||
"zwave": {
|
"zwave": {
|
||||||
"caption": "Z-Wave",
|
"caption": "Z-Wave",
|
||||||
"description": "Управляйте Вашей сетью Z-Wave"
|
"description": "Управляйте Вашей сетью Z-Wave",
|
||||||
|
"network_management": {
|
||||||
|
"header": "Управление сетью Z-Wave",
|
||||||
|
"introduction": "Управляйте сетью Z-Wave с помощью представленных команд. Информацию о результате выполненных команд Вы можете получить в журнале OZW."
|
||||||
|
},
|
||||||
|
"network_status": {
|
||||||
|
"network_stopped": "Сеть Z-Wave отключена",
|
||||||
|
"network_starting": "Запуск сети Z-Wave...",
|
||||||
|
"network_starting_note": "Это может занять некоторое время в зависимости от размера Вашей сети.",
|
||||||
|
"network_started": "Сеть Z-Wave работает",
|
||||||
|
"network_started_note_some_queried": "Активные узлы были опрошены. Спящие узлы будут опрошены, когда выйдут из режима сна.",
|
||||||
|
"network_started_note_all_queried": "Все узлы были опрошены."
|
||||||
|
},
|
||||||
|
"services": {
|
||||||
|
"start_network": "Включить",
|
||||||
|
"stop_network": "Отключить",
|
||||||
|
"heal_network": "Исправить сеть",
|
||||||
|
"test_network": "Тестировать",
|
||||||
|
"soft_reset": "Сброс",
|
||||||
|
"save_config": "Сохранить конфигурацию",
|
||||||
|
"add_node_secure": "Добавить защищенный узел",
|
||||||
|
"add_node": "Добавить узел",
|
||||||
|
"remove_node": "Удалить узел",
|
||||||
|
"cancel_command": "Отменить команду"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"users": {
|
"users": {
|
||||||
"caption": "Пользователи",
|
"caption": "Пользователи",
|
||||||
@ -745,7 +784,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Добро пожаловать, {fullName}! Вы вошли в систему.",
|
"current_user": "Добро пожаловать, {fullName}! Вы вошли в систему.",
|
||||||
"is_owner": "Вы являетесь владельцем.",
|
"is_owner": "Вы являетесь владельцем.",
|
||||||
"logout": "Выйти",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Изменить пароль",
|
"header": "Изменить пароль",
|
||||||
"current_password": "Текущий пароль",
|
"current_password": "Текущий пароль",
|
||||||
@ -1019,7 +1057,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Выход",
|
"log_out": "Выход",
|
||||||
"developer_tools": "Инструменты разработчика",
|
|
||||||
"external_app_configuration": "Настройки приложения"
|
"external_app_configuration": "Настройки приложения"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "História",
|
"history": "História",
|
||||||
"mailbox": "Poštová schránka",
|
"mailbox": "Poštová schránka",
|
||||||
"shopping_list": "Nákupný zoznam",
|
"shopping_list": "Nákupný zoznam",
|
||||||
"dev-services": "Služby",
|
|
||||||
"dev-states": "Stavy",
|
|
||||||
"dev-events": "Udalosti",
|
|
||||||
"dev-templates": "Šablóny",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Info",
|
"dev-info": "Info",
|
||||||
|
"developer_tools": "Vývojárske nástroje",
|
||||||
"calendar": "Kalendár",
|
"calendar": "Kalendár",
|
||||||
"profile": "Profil"
|
"profile": "Profil"
|
||||||
},
|
},
|
||||||
@ -312,6 +308,25 @@
|
|||||||
"add_item": "Pridať položku",
|
"add_item": "Pridať položku",
|
||||||
"microphone_tip": "Kliknite na ikonu mikrofónu vpravo hore a povedzte “Add candy to my shopping list”"
|
"microphone_tip": "Kliknite na ikonu mikrofónu vpravo hore a povedzte “Add candy to my shopping list”"
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Služby"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Stavy"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Udalosti"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Šablóny"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Zobrazujú sa záznamy pre",
|
"showing_entries": "Zobrazujú sa záznamy pre",
|
||||||
"period": "Obdobie"
|
"period": "Obdobie"
|
||||||
@ -745,7 +760,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Momentálne ste prihlásení ako {fullName}.",
|
"current_user": "Momentálne ste prihlásení ako {fullName}.",
|
||||||
"is_owner": "Ste vlastníkom.",
|
"is_owner": "Ste vlastníkom.",
|
||||||
"logout": "Odhlásiť sa",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Zmena hesla",
|
"header": "Zmena hesla",
|
||||||
"current_password": "Aktuálne heslo",
|
"current_password": "Aktuálne heslo",
|
||||||
@ -1019,7 +1033,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Odhlásiť sa",
|
"log_out": "Odhlásiť sa",
|
||||||
"developer_tools": "Vývojárske nástroje",
|
|
||||||
"external_app_configuration": "Konfigurácia aplikácie"
|
"external_app_configuration": "Konfigurácia aplikácie"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Zgodovina",
|
"history": "Zgodovina",
|
||||||
"mailbox": "Nabiralnik",
|
"mailbox": "Nabiralnik",
|
||||||
"shopping_list": "Nakupovalni seznam",
|
"shopping_list": "Nakupovalni seznam",
|
||||||
"dev-services": "Storitve",
|
|
||||||
"dev-states": "Stanja",
|
|
||||||
"dev-events": "Dogodki",
|
|
||||||
"dev-templates": "Predloge",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Info",
|
"dev-info": "Info",
|
||||||
|
"developer_tools": "Orodja za razvijalce",
|
||||||
"calendar": "Koledar",
|
"calendar": "Koledar",
|
||||||
"profile": "Profil"
|
"profile": "Profil"
|
||||||
},
|
},
|
||||||
@ -312,6 +308,25 @@
|
|||||||
"add_item": "Dodaj potrebščino",
|
"add_item": "Dodaj potrebščino",
|
||||||
"microphone_tip": "Tapnite mikrofon zgoraj desno in recite (Le ANG) \"Add candy to my shopping list\""
|
"microphone_tip": "Tapnite mikrofon zgoraj desno in recite (Le ANG) \"Add candy to my shopping list\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Storitve"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Stanja"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Dogodki"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Predloge"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Prikaz vnosov za",
|
"showing_entries": "Prikaz vnosov za",
|
||||||
"period": "Obdobje"
|
"period": "Obdobje"
|
||||||
@ -572,7 +587,31 @@
|
|||||||
},
|
},
|
||||||
"zwave": {
|
"zwave": {
|
||||||
"caption": "Z-Wave",
|
"caption": "Z-Wave",
|
||||||
"description": "Upravljajte Z-Wave omrežje"
|
"description": "Upravljajte Z-Wave omrežje",
|
||||||
|
"network_management": {
|
||||||
|
"header": "Upravljanje z omrežjem Z-Wave",
|
||||||
|
"introduction": "Zaženite ukaze, ki vplivajo na omrežje Z-Wave. Ne boste dobili povratne informacije o tem, ali je večina ukazov uspela, vendar lahko preverite dnevnik OZW, da boste izvedeli več."
|
||||||
|
},
|
||||||
|
"network_status": {
|
||||||
|
"network_stopped": "Omrežje Z-Wave ustavljeno",
|
||||||
|
"network_starting": "Zaganjam Z-Wave Omrežje...",
|
||||||
|
"network_starting_note": "Odvisno od velikosti vašega omrežja, lahko to traja nekaj časa.",
|
||||||
|
"network_started": "Z-Wave omrežje zagnano",
|
||||||
|
"network_started_note_some_queried": "Budna vozlišča so bila poizvedana. Speča bodo, ko se zbudijo.",
|
||||||
|
"network_started_note_all_queried": "Vsa vozlišča so bila poizvedena."
|
||||||
|
},
|
||||||
|
"services": {
|
||||||
|
"start_network": "Zaženite omrežje",
|
||||||
|
"stop_network": "Ustavite omrežje",
|
||||||
|
"heal_network": "Pozdravite omrežje",
|
||||||
|
"test_network": "Preizkusite omrežje",
|
||||||
|
"soft_reset": "Resetiraj",
|
||||||
|
"save_config": "Shrani konfiguracijo",
|
||||||
|
"add_node_secure": "Dodaj vozlišče varno",
|
||||||
|
"add_node": "Dodaj vozlišče",
|
||||||
|
"remove_node": "Odstrani vozlišče",
|
||||||
|
"cancel_command": "Prekliči ukaz"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"users": {
|
"users": {
|
||||||
"caption": "Uporabniki",
|
"caption": "Uporabniki",
|
||||||
@ -745,7 +784,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Trenutno ste prijavljeni kot {fullName} .",
|
"current_user": "Trenutno ste prijavljeni kot {fullName} .",
|
||||||
"is_owner": "Ste lastnik.",
|
"is_owner": "Ste lastnik.",
|
||||||
"logout": "Odjava",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Spremeni geslo",
|
"header": "Spremeni geslo",
|
||||||
"current_password": "Trenutno geslo",
|
"current_password": "Trenutno geslo",
|
||||||
@ -1019,7 +1057,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Odjava",
|
"log_out": "Odjava",
|
||||||
"developer_tools": "Orodja za razvijalce",
|
|
||||||
"external_app_configuration": "Konfiguracija aplikacije"
|
"external_app_configuration": "Konfiguracija aplikacije"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -6,14 +6,20 @@
|
|||||||
"logbook": "Dnevnik",
|
"logbook": "Dnevnik",
|
||||||
"history": "Istorija",
|
"history": "Istorija",
|
||||||
"mailbox": "Poštansko sanduče",
|
"mailbox": "Poštansko sanduče",
|
||||||
"shopping_list": "Lista za kupovinu",
|
"shopping_list": "Lista za kupovinu"
|
||||||
"dev-mqtt": "MQTT"
|
|
||||||
},
|
},
|
||||||
"ui": {
|
"ui": {
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Odjaviti se"
|
"log_out": "Odjaviti se"
|
||||||
},
|
},
|
||||||
"panel": {
|
"panel": {
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"zwave": {
|
"zwave": {
|
||||||
"caption": "Z-Wave"
|
"caption": "Z-Wave"
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
"history": "Историја",
|
"history": "Историја",
|
||||||
"mailbox": "Поштанско сандуче",
|
"mailbox": "Поштанско сандуче",
|
||||||
"shopping_list": "Листа за куповину",
|
"shopping_list": "Листа за куповину",
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"calendar": "Kalendar"
|
"calendar": "Kalendar"
|
||||||
},
|
},
|
||||||
"state": {
|
"state": {
|
||||||
@ -55,6 +54,13 @@
|
|||||||
"log_out": "Одјавити се"
|
"log_out": "Одјавити се"
|
||||||
},
|
},
|
||||||
"panel": {
|
"panel": {
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"zwave": {
|
"zwave": {
|
||||||
"caption": "Z-Wave"
|
"caption": "Z-Wave"
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Historik",
|
"history": "Historik",
|
||||||
"mailbox": "Brevlåda",
|
"mailbox": "Brevlåda",
|
||||||
"shopping_list": "Inköpslista",
|
"shopping_list": "Inköpslista",
|
||||||
"dev-services": "Tjänster",
|
|
||||||
"dev-states": "Tillstånd",
|
|
||||||
"dev-events": "Händelser",
|
|
||||||
"dev-templates": "Mallar",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Info",
|
"dev-info": "Info",
|
||||||
|
"developer_tools": "Utvecklarverktyg",
|
||||||
"calendar": "Kalender",
|
"calendar": "Kalender",
|
||||||
"profile": "Profil"
|
"profile": "Profil"
|
||||||
},
|
},
|
||||||
@ -311,6 +307,25 @@
|
|||||||
"add_item": "Lägg till objekt",
|
"add_item": "Lägg till objekt",
|
||||||
"microphone_tip": "Tryck på mikrofonen längst upp till höger och säg \"Add candy to my shopping list\""
|
"microphone_tip": "Tryck på mikrofonen längst upp till höger och säg \"Add candy to my shopping list\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Tjänster"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Tillstånd"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Händelser"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Mallar"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Visar poster för",
|
"showing_entries": "Visar poster för",
|
||||||
"period": "Period"
|
"period": "Period"
|
||||||
@ -744,7 +759,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Du är inloggad som {fullName}.",
|
"current_user": "Du är inloggad som {fullName}.",
|
||||||
"is_owner": "Du är en ägare.",
|
"is_owner": "Du är en ägare.",
|
||||||
"logout": "Logga ut",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Ändra lösenord",
|
"header": "Ändra lösenord",
|
||||||
"current_password": "Nuvarande lösenord",
|
"current_password": "Nuvarande lösenord",
|
||||||
@ -1018,7 +1032,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Logga ut",
|
"log_out": "Logga ut",
|
||||||
"developer_tools": "Utvecklarverktyg",
|
|
||||||
"external_app_configuration": "Appkonfiguration"
|
"external_app_configuration": "Appkonfiguration"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -6,8 +6,7 @@
|
|||||||
"logbook": "பதிவேடுகள்",
|
"logbook": "பதிவேடுகள்",
|
||||||
"history": "வரலாறு",
|
"history": "வரலாறு",
|
||||||
"mailbox": "அஞ்சல் பெட்டி",
|
"mailbox": "அஞ்சல் பெட்டி",
|
||||||
"shopping_list": "பொருட்கள் பட்டியல்",
|
"shopping_list": "பொருட்கள் பட்டியல்"
|
||||||
"dev-mqtt": "MQTT"
|
|
||||||
},
|
},
|
||||||
"state": {
|
"state": {
|
||||||
"default": {
|
"default": {
|
||||||
@ -236,17 +235,24 @@
|
|||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "வெளியேறு"
|
"log_out": "வெளியேறு"
|
||||||
},
|
},
|
||||||
"login-form": {
|
|
||||||
"password": "கடவுச்சொல்",
|
|
||||||
"remember": "நினைவில் கொள்",
|
|
||||||
"log_in": "உள் நுழை"
|
|
||||||
},
|
|
||||||
"panel": {
|
"panel": {
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"zwave": {
|
"zwave": {
|
||||||
"caption": "Z-Wave"
|
"caption": "Z-Wave"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"login-form": {
|
||||||
|
"password": "கடவுச்சொல்",
|
||||||
|
"remember": "நினைவில் கொள்",
|
||||||
|
"log_in": "உள் நுழை"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"domain": {
|
"domain": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "చరిత్ర",
|
"history": "చరిత్ర",
|
||||||
"mailbox": "మెయిల్ బాక్స్",
|
"mailbox": "మెయిల్ బాక్స్",
|
||||||
"shopping_list": "షాపింగ్ జాబితా",
|
"shopping_list": "షాపింగ్ జాబితా",
|
||||||
"dev-services": "సేవలు",
|
|
||||||
"dev-states": "స్టేట్స్",
|
|
||||||
"dev-events": "సంఘటనలు",
|
|
||||||
"dev-templates": "టెంప్లేట్లు",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "సమాచారం",
|
"dev-info": "సమాచారం",
|
||||||
|
"developer_tools": "డెవలపర్ టూల్స్",
|
||||||
"calendar": "క్యాలెండర్"
|
"calendar": "క్యాలెండర్"
|
||||||
},
|
},
|
||||||
"state": {
|
"state": {
|
||||||
@ -286,6 +282,25 @@
|
|||||||
"add_item": "క్రొత్తది జోడించు",
|
"add_item": "క్రొత్తది జోడించు",
|
||||||
"microphone_tip": "కుడి వైపున మైక్రోఫోన్ను నొక్కి, “Add candy to my shopping list”"
|
"microphone_tip": "కుడి వైపున మైక్రోఫోన్ను నొక్కి, “Add candy to my shopping list”"
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "సేవలు"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "స్టేట్స్"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "సంఘటనలు"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "టెంప్లేట్లు"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"period": "కాలం"
|
"period": "కాలం"
|
||||||
},
|
},
|
||||||
@ -526,8 +541,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "లాగ్ అవుట్",
|
"log_out": "లాగ్ అవుట్"
|
||||||
"developer_tools": "డెవలపర్ టూల్స్"
|
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"loading": "లోడింగ్",
|
"loading": "లోడింగ్",
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "ประวัติการทำงาน",
|
"history": "ประวัติการทำงาน",
|
||||||
"mailbox": "กล่องจดหมาย",
|
"mailbox": "กล่องจดหมาย",
|
||||||
"shopping_list": "รายการซื้อของ",
|
"shopping_list": "รายการซื้อของ",
|
||||||
"dev-services": "บริการ",
|
|
||||||
"dev-states": "สถานะ",
|
|
||||||
"dev-events": "เหตุการณ์",
|
|
||||||
"dev-templates": "แม่แบบ",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "ข้อมูล",
|
"dev-info": "ข้อมูล",
|
||||||
|
"developer_tools": "เครื่องมือสำหรับนักพัฒนา",
|
||||||
"calendar": "ปฏิทิน",
|
"calendar": "ปฏิทิน",
|
||||||
"profile": "ข้อมูลส่วนตัว"
|
"profile": "ข้อมูลส่วนตัว"
|
||||||
},
|
},
|
||||||
@ -311,6 +307,25 @@
|
|||||||
"add_item": "เพิ่มรายการใหม่",
|
"add_item": "เพิ่มรายการใหม่",
|
||||||
"microphone_tip": "ลองแตะไมโครโฟนที่ด้านบนขวาและพูดว่า \"เพิ่มลูกอมลงในรายการช้อปปิ้งของฉัน\" ดูสิ!"
|
"microphone_tip": "ลองแตะไมโครโฟนที่ด้านบนขวาและพูดว่า \"เพิ่มลูกอมลงในรายการช้อปปิ้งของฉัน\" ดูสิ!"
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "บริการ"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "สถานะ"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "เหตุการณ์"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "แม่แบบ"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "วันที่ต้องการแสดง",
|
"showing_entries": "วันที่ต้องการแสดง",
|
||||||
"period": "ช่วงเวลา"
|
"period": "ช่วงเวลา"
|
||||||
@ -743,7 +758,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "ขณะนี้คุณเข้าสู่ระบบในชื่อ {fullName}",
|
"current_user": "ขณะนี้คุณเข้าสู่ระบบในชื่อ {fullName}",
|
||||||
"is_owner": "ในฐานะ \"เจ้าของ\"",
|
"is_owner": "ในฐานะ \"เจ้าของ\"",
|
||||||
"logout": "ชื่อผู้ใช้",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "เปลี่ยนรหัสผ่าน",
|
"header": "เปลี่ยนรหัสผ่าน",
|
||||||
"current_password": "รหัสผ่านปัจจุบัน",
|
"current_password": "รหัสผ่านปัจจุบัน",
|
||||||
@ -974,7 +988,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "ออกจากระบบ",
|
"log_out": "ออกจากระบบ",
|
||||||
"developer_tools": "เครื่องมือสำหรับนักพัฒนา",
|
|
||||||
"external_app_configuration": "การกำหนดค่าแอพ"
|
"external_app_configuration": "การกำหนดค่าแอพ"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Geçmiş",
|
"history": "Geçmiş",
|
||||||
"mailbox": "Posta kutusu",
|
"mailbox": "Posta kutusu",
|
||||||
"shopping_list": "Alışveriş listesi",
|
"shopping_list": "Alışveriş listesi",
|
||||||
"dev-services": "Servisler",
|
|
||||||
"dev-states": "Durumlar",
|
|
||||||
"dev-events": "Olaylar",
|
|
||||||
"dev-templates": "Taslaklar",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Bilgi",
|
"dev-info": "Bilgi",
|
||||||
|
"developer_tools": "Geliştirici araçları",
|
||||||
"calendar": "Takvim",
|
"calendar": "Takvim",
|
||||||
"profile": "Profil"
|
"profile": "Profil"
|
||||||
},
|
},
|
||||||
@ -290,6 +286,25 @@
|
|||||||
"add_item": "Öge Ekle",
|
"add_item": "Öge Ekle",
|
||||||
"microphone_tip": "Sağ üstteki mikrofona dokunun ve \"alışveriş listeme şeker ekle\" deyin"
|
"microphone_tip": "Sağ üstteki mikrofona dokunun ve \"alışveriş listeme şeker ekle\" deyin"
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Servisler"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Durumlar"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Olaylar"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Taslaklar"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Gösterilen girişler",
|
"showing_entries": "Gösterilen girişler",
|
||||||
"period": "Dönem"
|
"period": "Dönem"
|
||||||
@ -529,7 +544,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "{fullName} olarak giriş yaptınız.",
|
"current_user": "{fullName} olarak giriş yaptınız.",
|
||||||
"is_owner": "Sahipsiniz.",
|
"is_owner": "Sahipsiniz.",
|
||||||
"logout": "Çıkış yap",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Parolayı Değiştir",
|
"header": "Parolayı Değiştir",
|
||||||
"current_password": "Güncel Parola",
|
"current_password": "Güncel Parola",
|
||||||
@ -680,8 +694,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Çıkış yap",
|
"log_out": "Çıkış yap"
|
||||||
"developer_tools": "Geliştirici araçları"
|
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"loading": "Yükleniyor",
|
"loading": "Yükleniyor",
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Історія",
|
"history": "Історія",
|
||||||
"mailbox": "Поштова скринька",
|
"mailbox": "Поштова скринька",
|
||||||
"shopping_list": "Список покупок",
|
"shopping_list": "Список покупок",
|
||||||
"dev-services": "Послуги",
|
|
||||||
"dev-states": "Стан",
|
|
||||||
"dev-events": "Події",
|
|
||||||
"dev-templates": "Шаблони",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Інформація",
|
"dev-info": "Інформація",
|
||||||
|
"developer_tools": "Інструменти для розробників",
|
||||||
"calendar": "Календар",
|
"calendar": "Календар",
|
||||||
"profile": "Профіль"
|
"profile": "Профіль"
|
||||||
},
|
},
|
||||||
@ -310,6 +306,25 @@
|
|||||||
"add_item": "Додати елемент",
|
"add_item": "Додати елемент",
|
||||||
"microphone_tip": "Торкніться мікрофона у верхньому правому куті та скажіть \"Add candy to my shopping list\""
|
"microphone_tip": "Торкніться мікрофона у верхньому правому куті та скажіть \"Add candy to my shopping list\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Послуги"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Стан"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Події"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Шаблони"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Показані записи для",
|
"showing_entries": "Показані записи для",
|
||||||
"period": "Період"
|
"period": "Період"
|
||||||
@ -698,7 +713,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Ви ввійшли як {fullName}.",
|
"current_user": "Ви ввійшли як {fullName}.",
|
||||||
"is_owner": "Ви є власником.",
|
"is_owner": "Ви є власником.",
|
||||||
"logout": "Вийти",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Змінити пароль",
|
"header": "Змінити пароль",
|
||||||
"current_password": "Поточний пароль",
|
"current_password": "Поточний пароль",
|
||||||
@ -883,8 +897,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Вийти",
|
"log_out": "Вийти"
|
||||||
"developer_tools": "Інструменти для розробників"
|
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"loading": "Завантаження",
|
"loading": "Завантаження",
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "Lịch sử",
|
"history": "Lịch sử",
|
||||||
"mailbox": "Hộp thư",
|
"mailbox": "Hộp thư",
|
||||||
"shopping_list": "Danh sách mua sắm",
|
"shopping_list": "Danh sách mua sắm",
|
||||||
"dev-services": "Dịch vụ",
|
|
||||||
"dev-states": "Trạng thái",
|
|
||||||
"dev-events": "Sự kiện",
|
|
||||||
"dev-templates": "Mẫu sẵn",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "Thông tin",
|
"dev-info": "Thông tin",
|
||||||
|
"developer_tools": "Công cụ Nhà phát triển",
|
||||||
"calendar": "Lịch",
|
"calendar": "Lịch",
|
||||||
"profile": "Hồ sơ"
|
"profile": "Hồ sơ"
|
||||||
},
|
},
|
||||||
@ -309,6 +305,25 @@
|
|||||||
"add_item": "Thêm mục",
|
"add_item": "Thêm mục",
|
||||||
"microphone_tip": "Chạm vào micrô ở trên cùng bên phải và nói \"Thêm kẹo vào danh sách mua sắm của tôi\""
|
"microphone_tip": "Chạm vào micrô ở trên cùng bên phải và nói \"Thêm kẹo vào danh sách mua sắm của tôi\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "Dịch vụ"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "Trạng thái"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Sự kiện"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "Mẫu sẵn"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "Hiển thị mục cho",
|
"showing_entries": "Hiển thị mục cho",
|
||||||
"period": "Giai đoạn"
|
"period": "Giai đoạn"
|
||||||
@ -702,7 +717,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "Bạn hiện đang đăng nhập với tên {fullName} .",
|
"current_user": "Bạn hiện đang đăng nhập với tên {fullName} .",
|
||||||
"is_owner": "Bạn là chủ sở hữu.",
|
"is_owner": "Bạn là chủ sở hữu.",
|
||||||
"logout": "Đăng xuất",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "Đổi mật khẩu",
|
"header": "Đổi mật khẩu",
|
||||||
"current_password": "Mật khẩu hiện tại",
|
"current_password": "Mật khẩu hiện tại",
|
||||||
@ -904,8 +918,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "Đăng xuất",
|
"log_out": "Đăng xuất"
|
||||||
"developer_tools": "Công cụ Nhà phát triển"
|
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"loading": "Đang tải",
|
"loading": "Đang tải",
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "历史",
|
"history": "历史",
|
||||||
"mailbox": "邮箱",
|
"mailbox": "邮箱",
|
||||||
"shopping_list": "购物清单",
|
"shopping_list": "购物清单",
|
||||||
"dev-services": "服务",
|
|
||||||
"dev-states": "状态",
|
|
||||||
"dev-events": "事件",
|
|
||||||
"dev-templates": "模板",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "信息",
|
"dev-info": "信息",
|
||||||
|
"developer_tools": "开发者工具",
|
||||||
"calendar": "日历",
|
"calendar": "日历",
|
||||||
"profile": "用户资料"
|
"profile": "用户资料"
|
||||||
},
|
},
|
||||||
@ -312,6 +308,25 @@
|
|||||||
"add_item": "添加项目",
|
"add_item": "添加项目",
|
||||||
"microphone_tip": "点击右上角麦克风图标并说 “Add candy to my shopping list”"
|
"microphone_tip": "点击右上角麦克风图标并说 “Add candy to my shopping list”"
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "服务"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "状态"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "事件"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "模板"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "显示自以下日期的图表",
|
"showing_entries": "显示自以下日期的图表",
|
||||||
"period": "日期范围"
|
"period": "日期范围"
|
||||||
@ -745,7 +760,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "您目前以 {fullName} 的身份登录。",
|
"current_user": "您目前以 {fullName} 的身份登录。",
|
||||||
"is_owner": "您拥有所有者权限。",
|
"is_owner": "您拥有所有者权限。",
|
||||||
"logout": "退出",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "更改密码",
|
"header": "更改密码",
|
||||||
"current_password": "当前密码",
|
"current_password": "当前密码",
|
||||||
@ -1019,7 +1033,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "退出",
|
"log_out": "退出",
|
||||||
"developer_tools": "开发者工具",
|
|
||||||
"external_app_configuration": "应用配置"
|
"external_app_configuration": "应用配置"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
"history": "歷史",
|
"history": "歷史",
|
||||||
"mailbox": "郵箱",
|
"mailbox": "郵箱",
|
||||||
"shopping_list": "購物清單",
|
"shopping_list": "購物清單",
|
||||||
"dev-services": "服務",
|
|
||||||
"dev-states": "狀態",
|
|
||||||
"dev-events": "事件",
|
|
||||||
"dev-templates": "模板",
|
|
||||||
"dev-mqtt": "MQTT",
|
|
||||||
"dev-info": "資訊",
|
"dev-info": "資訊",
|
||||||
|
"developer_tools": "開發工具",
|
||||||
"calendar": "行事曆",
|
"calendar": "行事曆",
|
||||||
"profile": "個人設定"
|
"profile": "個人設定"
|
||||||
},
|
},
|
||||||
@ -312,6 +308,25 @@
|
|||||||
"add_item": "新加入清單",
|
"add_item": "新加入清單",
|
||||||
"microphone_tip": "點擊右上角的麥克風圖示,並說\"加入糖果到我的購物清單內\""
|
"microphone_tip": "點擊右上角的麥克風圖示,並說\"加入糖果到我的購物清單內\""
|
||||||
},
|
},
|
||||||
|
"developer-tools": {
|
||||||
|
"tabs": {
|
||||||
|
"services": {
|
||||||
|
"title": "服務"
|
||||||
|
},
|
||||||
|
"states": {
|
||||||
|
"title": "狀態"
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "事件"
|
||||||
|
},
|
||||||
|
"templates": {
|
||||||
|
"title": "模板"
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"title": "MQTT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"showing_entries": "選擇要查看的時間",
|
"showing_entries": "選擇要查看的時間",
|
||||||
"period": "期間長"
|
"period": "期間長"
|
||||||
@ -572,7 +587,31 @@
|
|||||||
},
|
},
|
||||||
"zwave": {
|
"zwave": {
|
||||||
"caption": "Z-Wave",
|
"caption": "Z-Wave",
|
||||||
"description": "管理 Z-Wave 網絡"
|
"description": "管理 Z-Wave 網絡",
|
||||||
|
"network_management": {
|
||||||
|
"header": "Z-Wave 網路管理",
|
||||||
|
"introduction": "執行令命將會影響 Z-Wave 網路。將無法獲得回饋或指令是否成功執行,但可透過 OZW 日誌進行查詢。"
|
||||||
|
},
|
||||||
|
"network_status": {
|
||||||
|
"network_stopped": "Z-Wave 網路已停止",
|
||||||
|
"network_starting": "正在啟用 Z-Wave 網路...",
|
||||||
|
"network_starting_note": "根據您的網路規模,啟用可能需要一點時間。",
|
||||||
|
"network_started": "Z-Wave 網路已啟用",
|
||||||
|
"network_started_note_some_queried": "已查詢喚醒之節點。睡眠中節點將於喚醒後進行查詢。",
|
||||||
|
"network_started_note_all_queried": "已查詢所有節點。"
|
||||||
|
},
|
||||||
|
"services": {
|
||||||
|
"start_network": "啟用網路",
|
||||||
|
"stop_network": "停止網路",
|
||||||
|
"heal_network": "修復網路",
|
||||||
|
"test_network": "測試網路",
|
||||||
|
"soft_reset": "重開機",
|
||||||
|
"save_config": "儲存設定",
|
||||||
|
"add_node_secure": "新增節點來源",
|
||||||
|
"add_node": "新增節點",
|
||||||
|
"remove_node": "移除節點",
|
||||||
|
"cancel_command": "取消命令"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"users": {
|
"users": {
|
||||||
"caption": "用戶",
|
"caption": "用戶",
|
||||||
@ -745,7 +784,6 @@
|
|||||||
},
|
},
|
||||||
"current_user": "目前登入身份:{fullName}。",
|
"current_user": "目前登入身份:{fullName}。",
|
||||||
"is_owner": "你為擁有者。",
|
"is_owner": "你為擁有者。",
|
||||||
"logout": "登出",
|
|
||||||
"change_password": {
|
"change_password": {
|
||||||
"header": "變更密碼",
|
"header": "變更密碼",
|
||||||
"current_password": "目前密碼",
|
"current_password": "目前密碼",
|
||||||
@ -1019,7 +1057,6 @@
|
|||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
"log_out": "登出",
|
"log_out": "登出",
|
||||||
"developer_tools": "開發工具",
|
|
||||||
"external_app_configuration": "App 設定"
|
"external_app_configuration": "App 設定"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user